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.
 
 
 

56296 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. "great-maccao": {
  2099. name: "Great Maccao",
  2100. parents: ["monster-hunter", "raptor"]
  2101. },
  2102. "shapeshifter": {
  2103. name: "shapeshifter",
  2104. parents: []
  2105. },
  2106. "obstagoon": {
  2107. name: "Obstagoon",
  2108. parents: ["zigzagoon"]
  2109. },
  2110. }
  2111. //species
  2112. function getSpeciesInfo(speciesList) {
  2113. let result = new Set();
  2114. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2115. result.add(entry)
  2116. });
  2117. return Array.from(result);
  2118. };
  2119. function getSpeciesInfoHelper(species) {
  2120. if (!speciesData[species]) {
  2121. console.warn(species + " doesn't exist");
  2122. return [];
  2123. }
  2124. if (speciesData[species].parents) {
  2125. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2126. } else {
  2127. return [species];
  2128. }
  2129. }
  2130. characterMakers.push(() => makeCharacter(
  2131. {
  2132. name: "Fen",
  2133. species: ["crux"],
  2134. description: {
  2135. title: "Bio",
  2136. text: "Very furry. Sheds on everything."
  2137. },
  2138. tags: [
  2139. "anthro",
  2140. "goo"
  2141. ]
  2142. },
  2143. {
  2144. front: {
  2145. height: math.unit(12, "feet"),
  2146. weight: math.unit(2400, "lb"),
  2147. preyCapacity: math.unit(1, "people"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/fen/front.svg",
  2151. extra: 1804/1562,
  2152. bottom: 205/2009
  2153. },
  2154. extraAttributes: {
  2155. pawSize: {
  2156. name: "Paw Size",
  2157. power: 2,
  2158. type: "area",
  2159. base: math.unit(0.35, "m^2")
  2160. }
  2161. }
  2162. },
  2163. diving: {
  2164. height: math.unit(4.9, "meters"),
  2165. weight: math.unit(2400, "lb"),
  2166. name: "Diving",
  2167. image: {
  2168. source: "./media/characters/fen/diving.svg"
  2169. }
  2170. },
  2171. sleeby: {
  2172. height: math.unit(3.45, "meters"),
  2173. weight: math.unit(2400, "lb"),
  2174. name: "Sleeby",
  2175. image: {
  2176. source: "./media/characters/fen/sleeby.svg"
  2177. }
  2178. },
  2179. goo: {
  2180. height: math.unit(12, "feet"),
  2181. weight: math.unit(3600, "lb"),
  2182. volume: math.unit(1000, "liters"),
  2183. preyCapacity: math.unit(6, "people"),
  2184. name: "Goo",
  2185. image: {
  2186. source: "./media/characters/fen/goo.svg",
  2187. extra: 1307/1071,
  2188. bottom: 134/1441
  2189. }
  2190. },
  2191. gooNsfw: {
  2192. height: math.unit(12, "feet"),
  2193. weight: math.unit(3750, "lb"),
  2194. volume: math.unit(1000, "liters"),
  2195. preyCapacity: math.unit(6, "people"),
  2196. name: "Goo (NSFW)",
  2197. image: {
  2198. source: "./media/characters/fen/goo-nsfw.svg",
  2199. extra: 1875/1734,
  2200. bottom: 122/1997
  2201. }
  2202. },
  2203. maw: {
  2204. height: math.unit(5.03, "feet"),
  2205. name: "Maw",
  2206. image: {
  2207. source: "./media/characters/fen/maw.svg"
  2208. }
  2209. },
  2210. gooCeiling: {
  2211. height: math.unit(6.6, "feet"),
  2212. weight: math.unit(3000, "lb"),
  2213. volume: math.unit(1000, "liters"),
  2214. preyCapacity: math.unit(6, "people"),
  2215. name: "Goo (Ceiling)",
  2216. image: {
  2217. source: "./media/characters/fen/goo-ceiling.svg"
  2218. }
  2219. },
  2220. paw: {
  2221. height: math.unit(3.77, "feet"),
  2222. name: "Paw",
  2223. image: {
  2224. source: "./media/characters/fen/paw.svg"
  2225. },
  2226. extraAttributes: {
  2227. "toeSize": {
  2228. name: "Toe Size",
  2229. power: 2,
  2230. type: "area",
  2231. base: math.unit(0.02875, "m^2")
  2232. },
  2233. "pawSize": {
  2234. name: "Paw Size",
  2235. power: 2,
  2236. type: "area",
  2237. base: math.unit(0.378, "m^2")
  2238. },
  2239. }
  2240. },
  2241. tail: {
  2242. height: math.unit(12.1, "feet"),
  2243. name: "Tail",
  2244. image: {
  2245. source: "./media/characters/fen/tail.svg"
  2246. }
  2247. },
  2248. tailFull: {
  2249. height: math.unit(12.1, "feet"),
  2250. name: "Full Tail",
  2251. image: {
  2252. source: "./media/characters/fen/tail-full.svg"
  2253. }
  2254. },
  2255. back: {
  2256. height: math.unit(12, "feet"),
  2257. weight: math.unit(2400, "lb"),
  2258. name: "Back",
  2259. image: {
  2260. source: "./media/characters/fen/back.svg",
  2261. },
  2262. info: {
  2263. description: {
  2264. mode: "append",
  2265. text: "\n\nHe is not currently looking at you."
  2266. }
  2267. }
  2268. },
  2269. full: {
  2270. height: math.unit(1.85, "meter"),
  2271. weight: math.unit(3200, "lb"),
  2272. name: "Full",
  2273. image: {
  2274. source: "./media/characters/fen/full.svg",
  2275. extra: 1133/859,
  2276. bottom: 145/1278
  2277. },
  2278. info: {
  2279. description: {
  2280. mode: "append",
  2281. text: "\n\nMunch."
  2282. }
  2283. }
  2284. },
  2285. gooLounging: {
  2286. height: math.unit(4.53, "feet"),
  2287. weight: math.unit(3000, "lb"),
  2288. preyCapacity: math.unit(6, "people"),
  2289. name: "Goo (Lounging)",
  2290. image: {
  2291. source: "./media/characters/fen/goo-lounging.svg",
  2292. bottom: 116 / 613
  2293. }
  2294. },
  2295. lounging: {
  2296. height: math.unit(10.52, "feet"),
  2297. weight: math.unit(2400, "lb"),
  2298. name: "Lounging",
  2299. image: {
  2300. source: "./media/characters/fen/lounging.svg"
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Small",
  2307. height: math.unit(2.2428, "meter")
  2308. },
  2309. {
  2310. name: "Normal",
  2311. height: math.unit(12, "feet"),
  2312. default: true,
  2313. },
  2314. {
  2315. name: "Big",
  2316. height: math.unit(20, "feet")
  2317. },
  2318. {
  2319. name: "Minimacro",
  2320. height: math.unit(40, "feet"),
  2321. info: {
  2322. description: {
  2323. mode: "append",
  2324. text: "\n\nTOO DAMN BIG"
  2325. }
  2326. }
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. info: {
  2332. description: {
  2333. mode: "append",
  2334. text: "\n\nTOO DAMN BIG"
  2335. }
  2336. }
  2337. },
  2338. {
  2339. name: "Megamacro",
  2340. height: math.unit(2, "miles")
  2341. },
  2342. {
  2343. name: "Gigamacro",
  2344. height: math.unit(10, "earths")
  2345. },
  2346. ]
  2347. ))
  2348. characterMakers.push(() => makeCharacter(
  2349. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2350. {
  2351. front: {
  2352. height: math.unit(183, "cm"),
  2353. weight: math.unit(80, "kg"),
  2354. name: "Front",
  2355. image: {
  2356. source: "./media/characters/sofia-fluttertail/front.svg",
  2357. bottom: 0.01,
  2358. extra: 2154 / 2081
  2359. }
  2360. },
  2361. frontAlt: {
  2362. height: math.unit(183, "cm"),
  2363. weight: math.unit(80, "kg"),
  2364. name: "Front (alt)",
  2365. image: {
  2366. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2367. }
  2368. },
  2369. back: {
  2370. height: math.unit(183, "cm"),
  2371. weight: math.unit(80, "kg"),
  2372. name: "Back",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/back.svg"
  2375. }
  2376. },
  2377. kneeling: {
  2378. height: math.unit(125, "cm"),
  2379. weight: math.unit(80, "kg"),
  2380. name: "Kneeling",
  2381. image: {
  2382. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2383. extra: 1033 / 977,
  2384. bottom: 23.7 / 1057
  2385. }
  2386. },
  2387. maw: {
  2388. height: math.unit(183 / 5, "cm"),
  2389. name: "Maw",
  2390. image: {
  2391. source: "./media/characters/sofia-fluttertail/maw.svg"
  2392. }
  2393. },
  2394. mawcloseup: {
  2395. height: math.unit(183 / 5 * 0.41, "cm"),
  2396. name: "Maw (Closeup)",
  2397. image: {
  2398. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2399. }
  2400. },
  2401. paws: {
  2402. height: math.unit(1.17, "feet"),
  2403. name: "Paws",
  2404. image: {
  2405. source: "./media/characters/sofia-fluttertail/paws.svg",
  2406. extra: 851 / 851,
  2407. bottom: 17 / 868
  2408. }
  2409. },
  2410. },
  2411. [
  2412. {
  2413. name: "Normal",
  2414. height: math.unit(1.83, "meter")
  2415. },
  2416. {
  2417. name: "Size Thief",
  2418. height: math.unit(18, "feet")
  2419. },
  2420. {
  2421. name: "50 Foot Collie",
  2422. height: math.unit(50, "feet")
  2423. },
  2424. {
  2425. name: "Macro",
  2426. height: math.unit(96, "feet"),
  2427. default: true
  2428. },
  2429. {
  2430. name: "Megamerger",
  2431. height: math.unit(650, "feet")
  2432. },
  2433. ]
  2434. ))
  2435. characterMakers.push(() => makeCharacter(
  2436. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2437. {
  2438. front: {
  2439. height: math.unit(7, "feet"),
  2440. weight: math.unit(100, "kg"),
  2441. name: "Front",
  2442. image: {
  2443. source: "./media/characters/march/front.svg",
  2444. extra: 1992/1851,
  2445. bottom: 39/2031
  2446. }
  2447. },
  2448. foot: {
  2449. height: math.unit(0.9, "feet"),
  2450. name: "Foot",
  2451. image: {
  2452. source: "./media/characters/march/foot.svg"
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(7.9, "feet")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(220, "meters")
  2464. },
  2465. {
  2466. name: "Megamacro",
  2467. height: math.unit(2.98, "km"),
  2468. default: true
  2469. },
  2470. {
  2471. name: "Gigamacro",
  2472. height: math.unit(15963, "km")
  2473. },
  2474. {
  2475. name: "Teramacro",
  2476. height: math.unit(2980000000, "km")
  2477. },
  2478. {
  2479. name: "Examacro",
  2480. height: math.unit(250, "parsecs")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(6, "feet"),
  2489. weight: math.unit(60, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/noir/front.svg",
  2493. extra: 1,
  2494. bottom: 0.032
  2495. }
  2496. },
  2497. },
  2498. [
  2499. {
  2500. name: "Normal",
  2501. height: math.unit(6.6, "feet")
  2502. },
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(500, "feet")
  2506. },
  2507. {
  2508. name: "Megamacro",
  2509. height: math.unit(2.5, "km"),
  2510. default: true
  2511. },
  2512. {
  2513. name: "Gigamacro",
  2514. height: math.unit(22500, "km")
  2515. },
  2516. {
  2517. name: "Teramacro",
  2518. height: math.unit(2500000000, "km")
  2519. },
  2520. {
  2521. name: "Examacro",
  2522. height: math.unit(200, "parsecs")
  2523. },
  2524. ]
  2525. ))
  2526. characterMakers.push(() => makeCharacter(
  2527. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2528. {
  2529. front: {
  2530. height: math.unit(7, "feet"),
  2531. weight: math.unit(100, "kg"),
  2532. name: "Front",
  2533. image: {
  2534. source: "./media/characters/okuri/front.svg",
  2535. extra: 739/665,
  2536. bottom: 39/778
  2537. }
  2538. },
  2539. back: {
  2540. height: math.unit(7, "feet"),
  2541. weight: math.unit(100, "kg"),
  2542. name: "Back",
  2543. image: {
  2544. source: "./media/characters/okuri/back.svg",
  2545. extra: 734/653,
  2546. bottom: 13/747
  2547. }
  2548. },
  2549. sitting: {
  2550. height: math.unit(2.95, "feet"),
  2551. weight: math.unit(100, "kg"),
  2552. name: "Sitting",
  2553. image: {
  2554. source: "./media/characters/okuri/sitting.svg",
  2555. extra: 370/318,
  2556. bottom: 99/469
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Smallest",
  2563. height: math.unit(5 + 2/12, "feet")
  2564. },
  2565. {
  2566. name: "Smaller",
  2567. height: math.unit(300, "feet")
  2568. },
  2569. {
  2570. name: "Small",
  2571. height: math.unit(1000, "feet")
  2572. },
  2573. {
  2574. name: "Macro",
  2575. height: math.unit(1, "mile")
  2576. },
  2577. {
  2578. name: "Mega Macro (Small)",
  2579. height: math.unit(20, "km")
  2580. },
  2581. {
  2582. name: "Mega Macro (Large)",
  2583. height: math.unit(600, "km")
  2584. },
  2585. {
  2586. name: "Giga Macro",
  2587. height: math.unit(10000, "km")
  2588. },
  2589. {
  2590. name: "Normal",
  2591. height: math.unit(577560, "km"),
  2592. default: true
  2593. },
  2594. {
  2595. name: "Large",
  2596. height: math.unit(4, "galaxies")
  2597. },
  2598. {
  2599. name: "Largest",
  2600. height: math.unit(15, "multiverses")
  2601. },
  2602. ]
  2603. ))
  2604. characterMakers.push(() => makeCharacter(
  2605. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2606. {
  2607. front: {
  2608. height: math.unit(7, "feet"),
  2609. weight: math.unit(100, "kg"),
  2610. name: "Front",
  2611. image: {
  2612. source: "./media/characters/manny/front.svg",
  2613. extra: 1,
  2614. bottom: 0.06
  2615. }
  2616. },
  2617. back: {
  2618. height: math.unit(7, "feet"),
  2619. weight: math.unit(100, "kg"),
  2620. name: "Back",
  2621. image: {
  2622. source: "./media/characters/manny/back.svg",
  2623. extra: 1,
  2624. bottom: 0.014
  2625. }
  2626. },
  2627. },
  2628. [
  2629. {
  2630. name: "Normal",
  2631. height: math.unit(7, "feet"),
  2632. },
  2633. {
  2634. name: "Macro",
  2635. height: math.unit(78, "feet"),
  2636. default: true
  2637. },
  2638. {
  2639. name: "Macro+",
  2640. height: math.unit(300, "meters")
  2641. },
  2642. {
  2643. name: "Macro++",
  2644. height: math.unit(2400, "meters")
  2645. },
  2646. {
  2647. name: "Megamacro",
  2648. height: math.unit(5167, "meters")
  2649. },
  2650. {
  2651. name: "Gigamacro",
  2652. height: math.unit(41769, "miles")
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2658. {
  2659. front: {
  2660. height: math.unit(7, "feet"),
  2661. weight: math.unit(100, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/adake/front-1.svg"
  2665. }
  2666. },
  2667. frontAlt: {
  2668. height: math.unit(7, "feet"),
  2669. weight: math.unit(100, "kg"),
  2670. name: "Front (Alt)",
  2671. image: {
  2672. source: "./media/characters/adake/front-2.svg",
  2673. extra: 1,
  2674. bottom: 0.01
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(7, "feet"),
  2679. weight: math.unit(100, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/adake/back.svg",
  2683. }
  2684. },
  2685. kneel: {
  2686. height: math.unit(5.385, "feet"),
  2687. weight: math.unit(100, "kg"),
  2688. name: "Kneeling",
  2689. image: {
  2690. source: "./media/characters/adake/kneel.svg",
  2691. bottom: 0.052
  2692. }
  2693. },
  2694. },
  2695. [
  2696. {
  2697. name: "Normal",
  2698. height: math.unit(7, "feet"),
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(78, "feet"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Macro+",
  2707. height: math.unit(300, "meters")
  2708. },
  2709. {
  2710. name: "Macro++",
  2711. height: math.unit(2400, "meters")
  2712. },
  2713. {
  2714. name: "Megamacro",
  2715. height: math.unit(5167, "meters")
  2716. },
  2717. {
  2718. name: "Gigamacro",
  2719. height: math.unit(41769, "miles")
  2720. },
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2725. {
  2726. front: {
  2727. height: math.unit(1.65, "meters"),
  2728. weight: math.unit(50, "kg"),
  2729. name: "Front",
  2730. image: {
  2731. source: "./media/characters/elijah/front.svg",
  2732. extra: 858 / 830,
  2733. bottom: 95.5 / 953.8559
  2734. }
  2735. },
  2736. back: {
  2737. height: math.unit(1.65, "meters"),
  2738. weight: math.unit(50, "kg"),
  2739. name: "Back",
  2740. image: {
  2741. source: "./media/characters/elijah/back.svg",
  2742. extra: 895 / 850,
  2743. bottom: 5.3 / 897.956
  2744. }
  2745. },
  2746. frontNsfw: {
  2747. height: math.unit(1.65, "meters"),
  2748. weight: math.unit(50, "kg"),
  2749. name: "Front (NSFW)",
  2750. image: {
  2751. source: "./media/characters/elijah/front-nsfw.svg",
  2752. extra: 858 / 830,
  2753. bottom: 95.5 / 953.8559
  2754. }
  2755. },
  2756. backNsfw: {
  2757. height: math.unit(1.65, "meters"),
  2758. weight: math.unit(50, "kg"),
  2759. name: "Back (NSFW)",
  2760. image: {
  2761. source: "./media/characters/elijah/back-nsfw.svg",
  2762. extra: 895 / 850,
  2763. bottom: 5.3 / 897.956
  2764. }
  2765. },
  2766. dick: {
  2767. height: math.unit(1, "feet"),
  2768. name: "Dick",
  2769. image: {
  2770. source: "./media/characters/elijah/dick.svg"
  2771. }
  2772. },
  2773. beakOpen: {
  2774. height: math.unit(1.25, "feet"),
  2775. name: "Beak (Open)",
  2776. image: {
  2777. source: "./media/characters/elijah/beak-open.svg"
  2778. }
  2779. },
  2780. beakShut: {
  2781. height: math.unit(1.25, "feet"),
  2782. name: "Beak (Shut)",
  2783. image: {
  2784. source: "./media/characters/elijah/beak-shut.svg"
  2785. }
  2786. },
  2787. footFlexing: {
  2788. height: math.unit(1.61, "feet"),
  2789. name: "Foot (Flexing)",
  2790. image: {
  2791. source: "./media/characters/elijah/foot-flexing.svg"
  2792. }
  2793. },
  2794. footStepping: {
  2795. height: math.unit(1.44, "feet"),
  2796. name: "Foot (Stepping)",
  2797. image: {
  2798. source: "./media/characters/elijah/foot-stepping.svg"
  2799. }
  2800. },
  2801. plantigradeLeg: {
  2802. height: math.unit(2.34, "feet"),
  2803. name: "Plantigrade Leg",
  2804. image: {
  2805. source: "./media/characters/elijah/plantigrade-leg.svg"
  2806. }
  2807. },
  2808. plantigradeFootLeft: {
  2809. height: math.unit(0.9, "feet"),
  2810. name: "Plantigrade Foot (Left)",
  2811. image: {
  2812. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2813. }
  2814. },
  2815. plantigradeFootRight: {
  2816. height: math.unit(0.9, "feet"),
  2817. name: "Plantigrade Foot (Right)",
  2818. image: {
  2819. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Normal",
  2826. height: math.unit(1.65, "meters")
  2827. },
  2828. {
  2829. name: "Macro",
  2830. height: math.unit(55, "meters"),
  2831. default: true
  2832. },
  2833. {
  2834. name: "Macro+",
  2835. height: math.unit(105, "meters")
  2836. },
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(7 + 2/12, "feet"),
  2844. weight: math.unit(320, "kg"),
  2845. preyCapacity: math.unit(0.276549935, "people"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/rai/front.svg",
  2849. extra: 1802/1696,
  2850. bottom: 68/1870
  2851. },
  2852. form: "anthro",
  2853. default: true
  2854. },
  2855. frontDressed: {
  2856. height: math.unit(7 + 2/12, "feet"),
  2857. weight: math.unit(320, "kg"),
  2858. preyCapacity: math.unit(0.276549935, "people"),
  2859. name: "Front (Dressed)",
  2860. image: {
  2861. source: "./media/characters/rai/front-dressed.svg",
  2862. extra: 1802/1696,
  2863. bottom: 68/1870
  2864. },
  2865. form: "anthro"
  2866. },
  2867. side: {
  2868. height: math.unit(7 + 2/12, "feet"),
  2869. weight: math.unit(320, "kg"),
  2870. preyCapacity: math.unit(0.276549935, "people"),
  2871. name: "Side",
  2872. image: {
  2873. source: "./media/characters/rai/side.svg",
  2874. extra: 1789/1710,
  2875. bottom: 115/1904
  2876. },
  2877. form: "anthro"
  2878. },
  2879. back: {
  2880. height: math.unit(7 + 2/12, "feet"),
  2881. weight: math.unit(320, "kg"),
  2882. preyCapacity: math.unit(0.276549935, "people"),
  2883. name: "Back",
  2884. image: {
  2885. source: "./media/characters/rai/back.svg",
  2886. extra: 1770/1707,
  2887. bottom: 28/1798
  2888. },
  2889. form: "anthro"
  2890. },
  2891. feral: {
  2892. height: math.unit(9.5, "feet"),
  2893. weight: math.unit(640, "kg"),
  2894. preyCapacity: math.unit(4, "people"),
  2895. name: "Feral",
  2896. image: {
  2897. source: "./media/characters/rai/feral.svg",
  2898. extra: 945/553,
  2899. bottom: 176/1121
  2900. },
  2901. form: "feral",
  2902. default: true
  2903. },
  2904. dragon: {
  2905. height: math.unit(23, "feet"),
  2906. weight: math.unit(50000, "lb"),
  2907. name: "Dragon",
  2908. image: {
  2909. source: "./media/characters/rai/dragon.svg",
  2910. extra: 2498 / 2030,
  2911. bottom: 85.2 / 2584
  2912. },
  2913. form: "dragon",
  2914. default: true
  2915. },
  2916. maw: {
  2917. height: math.unit(1.69, "feet"),
  2918. name: "Maw",
  2919. image: {
  2920. source: "./media/characters/rai/maw.svg"
  2921. },
  2922. form: "anthro"
  2923. },
  2924. },
  2925. [
  2926. {
  2927. name: "Normal",
  2928. height: math.unit(7 + 2/12, "feet"),
  2929. form: "anthro"
  2930. },
  2931. {
  2932. name: "Big",
  2933. height: math.unit(11, "feet"),
  2934. form: "anthro"
  2935. },
  2936. {
  2937. name: "Minimacro",
  2938. height: math.unit(77, "feet"),
  2939. form: "anthro"
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(302, "feet"),
  2944. default: true,
  2945. form: "anthro"
  2946. },
  2947. {
  2948. name: "Normal",
  2949. height: math.unit(9.5, "feet"),
  2950. form: "feral",
  2951. default: true
  2952. },
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(23, "feet"),
  2956. form: "dragon",
  2957. default: true
  2958. }
  2959. ],
  2960. {
  2961. "anthro": {
  2962. name: "Anthro",
  2963. default: true
  2964. },
  2965. "feral": {
  2966. name: "Feral",
  2967. },
  2968. "dragon": {
  2969. name: "Dragon",
  2970. },
  2971. }
  2972. ))
  2973. characterMakers.push(() => makeCharacter(
  2974. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2975. {
  2976. frontDressed: {
  2977. height: math.unit(216, "feet"),
  2978. weight: math.unit(7000000, "lb"),
  2979. preyCapacity: math.unit(1321, "people"),
  2980. name: "Front (Dressed)",
  2981. image: {
  2982. source: "./media/characters/jazzy/front-dressed.svg",
  2983. extra: 2738 / 2651,
  2984. bottom: 41.8 / 2786
  2985. }
  2986. },
  2987. backDressed: {
  2988. height: math.unit(216, "feet"),
  2989. weight: math.unit(7000000, "lb"),
  2990. preyCapacity: math.unit(1321, "people"),
  2991. name: "Back (Dressed)",
  2992. image: {
  2993. source: "./media/characters/jazzy/back-dressed.svg",
  2994. extra: 2775 / 2673,
  2995. bottom: 36.8 / 2817
  2996. }
  2997. },
  2998. front: {
  2999. height: math.unit(216, "feet"),
  3000. weight: math.unit(7000000, "lb"),
  3001. preyCapacity: math.unit(1321, "people"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/jazzy/front.svg",
  3005. extra: 2738 / 2651,
  3006. bottom: 41.8 / 2786
  3007. }
  3008. },
  3009. back: {
  3010. height: math.unit(216, "feet"),
  3011. weight: math.unit(7000000, "lb"),
  3012. preyCapacity: math.unit(1321, "people"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/jazzy/back.svg",
  3016. extra: 2775 / 2673,
  3017. bottom: 36.8 / 2817
  3018. }
  3019. },
  3020. maw: {
  3021. height: math.unit(20, "feet"),
  3022. name: "Maw",
  3023. image: {
  3024. source: "./media/characters/jazzy/maw.svg"
  3025. }
  3026. },
  3027. paws: {
  3028. height: math.unit(27.5, "feet"),
  3029. name: "Paws",
  3030. image: {
  3031. source: "./media/characters/jazzy/paws.svg"
  3032. }
  3033. },
  3034. eye: {
  3035. height: math.unit(4.4, "feet"),
  3036. name: "Eye",
  3037. image: {
  3038. source: "./media/characters/jazzy/eye.svg"
  3039. }
  3040. },
  3041. droneOffense: {
  3042. height: math.unit(9.5, "inches"),
  3043. name: "Drone (Offense)",
  3044. image: {
  3045. source: "./media/characters/jazzy/drone-offense.svg"
  3046. }
  3047. },
  3048. droneRecon: {
  3049. height: math.unit(9.5, "inches"),
  3050. name: "Drone (Recon)",
  3051. image: {
  3052. source: "./media/characters/jazzy/drone-recon.svg"
  3053. }
  3054. },
  3055. droneDefense: {
  3056. height: math.unit(9.5, "inches"),
  3057. name: "Drone (Defense)",
  3058. image: {
  3059. source: "./media/characters/jazzy/drone-defense.svg"
  3060. }
  3061. },
  3062. },
  3063. [
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(216, "feet"),
  3067. default: true
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(9 + 6/12, "feet"),
  3076. weight: math.unit(700, "lb"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/flamm/front.svg",
  3080. extra: 1751/1632,
  3081. bottom: 46/1797
  3082. }
  3083. },
  3084. buff: {
  3085. height: math.unit(9 + 6/12, "feet"),
  3086. weight: math.unit(950, "lb"),
  3087. name: "Buff",
  3088. image: {
  3089. source: "./media/characters/flamm/buff.svg",
  3090. extra: 3018/2874,
  3091. bottom: 221/3239
  3092. }
  3093. },
  3094. },
  3095. [
  3096. {
  3097. name: "Normal",
  3098. height: math.unit(9.5, "feet")
  3099. },
  3100. {
  3101. name: "Macro",
  3102. height: math.unit(200, "feet"),
  3103. default: true
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3109. {
  3110. front: {
  3111. height: math.unit(5 + 3/12, "feet"),
  3112. weight: math.unit(60, "kg"),
  3113. name: "Front",
  3114. image: {
  3115. source: "./media/characters/zephiro/front.svg",
  3116. extra: 1873/1761,
  3117. bottom: 147/2020
  3118. }
  3119. },
  3120. side: {
  3121. height: math.unit(5 + 3/12, "feet"),
  3122. weight: math.unit(60, "kg"),
  3123. name: "Side",
  3124. image: {
  3125. source: "./media/characters/zephiro/side.svg",
  3126. extra: 1929/1827,
  3127. bottom: 65/1994
  3128. }
  3129. },
  3130. back: {
  3131. height: math.unit(5 + 3/12, "feet"),
  3132. weight: math.unit(60, "kg"),
  3133. name: "Back",
  3134. image: {
  3135. source: "./media/characters/zephiro/back.svg",
  3136. extra: 1926/1816,
  3137. bottom: 41/1967
  3138. }
  3139. },
  3140. hand: {
  3141. height: math.unit(0.68, "feet"),
  3142. name: "Hand",
  3143. image: {
  3144. source: "./media/characters/zephiro/hand.svg"
  3145. }
  3146. },
  3147. paw: {
  3148. height: math.unit(1, "feet"),
  3149. name: "Paw",
  3150. image: {
  3151. source: "./media/characters/zephiro/paw.svg"
  3152. }
  3153. },
  3154. beans: {
  3155. height: math.unit(0.93, "feet"),
  3156. name: "Beans",
  3157. image: {
  3158. source: "./media/characters/zephiro/beans.svg"
  3159. }
  3160. },
  3161. },
  3162. [
  3163. {
  3164. name: "Micro",
  3165. height: math.unit(3, "inches")
  3166. },
  3167. {
  3168. name: "Normal",
  3169. height: math.unit(5 + 3 / 12, "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(118, "feet")
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(5, "feet"),
  3183. weight: math.unit(90, "kg"),
  3184. preyCapacity: math.unit(14, "people"),
  3185. name: "Front",
  3186. image: {
  3187. source: "./media/characters/fory/front.svg",
  3188. extra: 2862 / 2674,
  3189. bottom: 180 / 3043.8
  3190. },
  3191. form: "weaselbun",
  3192. default: true,
  3193. extraAttributes: {
  3194. "pawSize": {
  3195. name: "Paw Size",
  3196. power: 2,
  3197. type: "area",
  3198. base: math.unit(0.1596, "m^2")
  3199. },
  3200. "pawLength": {
  3201. name: "Paw Length",
  3202. power: 1,
  3203. type: "length",
  3204. base: math.unit(0.7, "m")
  3205. }
  3206. }
  3207. },
  3208. back: {
  3209. height: math.unit(5, "feet"),
  3210. weight: math.unit(90, "kg"),
  3211. preyCapacity: math.unit(14, "people"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/fory/back.svg",
  3215. extra: 1790/1672,
  3216. bottom: 84/1874
  3217. },
  3218. form: "weaselbun",
  3219. extraAttributes: {
  3220. "pawSize": {
  3221. name: "Paw Size",
  3222. power: 2,
  3223. type: "area",
  3224. base: math.unit(0.1596, "m^2")
  3225. },
  3226. "pawLength": {
  3227. name: "Paw Length",
  3228. power: 1,
  3229. type: "length",
  3230. base: math.unit(0.7, "m")
  3231. }
  3232. }
  3233. },
  3234. paw: {
  3235. height: math.unit(2.14, "feet"),
  3236. name: "Paw",
  3237. image: {
  3238. source: "./media/characters/fory/paw.svg"
  3239. },
  3240. form: "weaselbun",
  3241. extraAttributes: {
  3242. "pawSize": {
  3243. name: "Paw Size",
  3244. power: 2,
  3245. type: "area",
  3246. base: math.unit(0.1596, "m^2")
  3247. },
  3248. "pawLength": {
  3249. name: "Paw Length",
  3250. power: 1,
  3251. type: "length",
  3252. base: math.unit(0.48, "m")
  3253. }
  3254. }
  3255. },
  3256. bunBack: {
  3257. height: math.unit(3, "feet"),
  3258. weight: math.unit(20, "kg"),
  3259. preyCapacity: math.unit(3, "people"),
  3260. name: "Back",
  3261. image: {
  3262. source: "./media/characters/fory/bun-back.svg",
  3263. extra: 1749/1564,
  3264. bottom: 246/1995
  3265. },
  3266. form: "bun",
  3267. default: true,
  3268. extraAttributes: {
  3269. "pawSize": {
  3270. name: "Paw Size",
  3271. power: 2,
  3272. type: "area",
  3273. base: math.unit(0.072, "m^2")
  3274. },
  3275. "pawLength": {
  3276. name: "Paw Length",
  3277. power: 1,
  3278. type: "length",
  3279. base: math.unit(0.45, "m")
  3280. }
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(5, "feet"),
  3288. form: "weaselbun"
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(50, "feet"),
  3293. default: true,
  3294. form: "weaselbun"
  3295. },
  3296. {
  3297. name: "Megamacro",
  3298. height: math.unit(10, "miles"),
  3299. form: "weaselbun"
  3300. },
  3301. {
  3302. name: "Gigamacro",
  3303. height: math.unit(5, "earths"),
  3304. form: "weaselbun"
  3305. },
  3306. {
  3307. name: "Normal",
  3308. height: math.unit(3, "feet"),
  3309. default: true,
  3310. form: "bun"
  3311. },
  3312. {
  3313. name: "Fun-Size",
  3314. height: math.unit(12, "feet"),
  3315. form: "bun"
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(100, "feet"),
  3320. form: "bun"
  3321. },
  3322. {
  3323. name: "Planetary",
  3324. height: math.unit(3, "earths"),
  3325. form: "bun"
  3326. },
  3327. ],
  3328. {
  3329. "weaselbun": {
  3330. name: "Weaselbun",
  3331. default: true
  3332. },
  3333. "bun": {
  3334. name: "Bun",
  3335. },
  3336. }
  3337. ))
  3338. characterMakers.push(() => makeCharacter(
  3339. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3340. {
  3341. front: {
  3342. height: math.unit(7, "feet"),
  3343. weight: math.unit(90, "kg"),
  3344. name: "Front",
  3345. image: {
  3346. source: "./media/characters/kurrikage/front.svg",
  3347. extra: 1845/1733,
  3348. bottom: 119/1964
  3349. }
  3350. },
  3351. back: {
  3352. height: math.unit(7, "feet"),
  3353. weight: math.unit(90, "kg"),
  3354. name: "Back",
  3355. image: {
  3356. source: "./media/characters/kurrikage/back.svg",
  3357. extra: 1790/1677,
  3358. bottom: 61/1851
  3359. }
  3360. },
  3361. dressed: {
  3362. height: math.unit(7, "feet"),
  3363. weight: math.unit(90, "kg"),
  3364. name: "Dressed",
  3365. image: {
  3366. source: "./media/characters/kurrikage/dressed.svg",
  3367. extra: 1845/1733,
  3368. bottom: 119/1964
  3369. }
  3370. },
  3371. foot: {
  3372. height: math.unit(1.5, "feet"),
  3373. name: "Foot",
  3374. image: {
  3375. source: "./media/characters/kurrikage/foot.svg"
  3376. }
  3377. },
  3378. staff: {
  3379. height: math.unit(6.7, "feet"),
  3380. name: "Staff",
  3381. image: {
  3382. source: "./media/characters/kurrikage/staff.svg"
  3383. }
  3384. },
  3385. peek: {
  3386. height: math.unit(1.05, "feet"),
  3387. name: "Peeking",
  3388. image: {
  3389. source: "./media/characters/kurrikage/peek.svg",
  3390. bottom: 0.08
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Big",
  3402. height: math.unit(20, "feet")
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(500, "feet")
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(20, "miles")
  3411. },
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(6, "feet"),
  3419. weight: math.unit(75, "kg"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/shingo/front.svg",
  3423. extra: 1900/1825,
  3424. bottom: 82/1982
  3425. }
  3426. },
  3427. side: {
  3428. height: math.unit(6, "feet"),
  3429. weight: math.unit(75, "kg"),
  3430. name: "Side",
  3431. image: {
  3432. source: "./media/characters/shingo/side.svg",
  3433. extra: 1930/1865,
  3434. bottom: 16/1946
  3435. }
  3436. },
  3437. back: {
  3438. height: math.unit(6, "feet"),
  3439. weight: math.unit(75, "kg"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/shingo/back.svg",
  3443. extra: 1922/1852,
  3444. bottom: 16/1938
  3445. }
  3446. },
  3447. frontDressed: {
  3448. height: math.unit(6, "feet"),
  3449. weight: math.unit(150, "lb"),
  3450. name: "Front-dressed",
  3451. image: {
  3452. source: "./media/characters/shingo/front-dressed.svg",
  3453. extra: 1900/1825,
  3454. bottom: 82/1982
  3455. }
  3456. },
  3457. paw: {
  3458. height: math.unit(1.29, "feet"),
  3459. name: "Paw",
  3460. image: {
  3461. source: "./media/characters/shingo/paw.svg"
  3462. }
  3463. },
  3464. hand: {
  3465. height: math.unit(1.07, "feet"),
  3466. name: "Hand",
  3467. image: {
  3468. source: "./media/characters/shingo/hand.svg"
  3469. }
  3470. },
  3471. frontAlt: {
  3472. height: math.unit(6, "feet"),
  3473. weight: math.unit(75, "kg"),
  3474. name: "Front (Alt)",
  3475. image: {
  3476. source: "./media/characters/shingo/front-alt.svg",
  3477. extra: 3511 / 3338,
  3478. bottom: 0.005
  3479. }
  3480. },
  3481. frontAlt2: {
  3482. height: math.unit(6, "feet"),
  3483. weight: math.unit(75, "kg"),
  3484. name: "Front (Alt 2)",
  3485. image: {
  3486. source: "./media/characters/shingo/front-alt-2.svg",
  3487. extra: 706/681,
  3488. bottom: 11/717
  3489. }
  3490. },
  3491. pawAlt: {
  3492. height: math.unit(1, "feet"),
  3493. name: "Paw (Alt)",
  3494. image: {
  3495. source: "./media/characters/shingo/paw-alt.svg"
  3496. }
  3497. },
  3498. },
  3499. [
  3500. {
  3501. name: "Micro",
  3502. height: math.unit(4, "inches")
  3503. },
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(6, "feet"),
  3507. default: true
  3508. },
  3509. {
  3510. name: "Macro",
  3511. height: math.unit(108, "feet")
  3512. },
  3513. {
  3514. name: "Macro+",
  3515. height: math.unit(1500, "feet")
  3516. },
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3521. {
  3522. side: {
  3523. height: math.unit(6, "feet"),
  3524. weight: math.unit(75, "kg"),
  3525. name: "Side",
  3526. image: {
  3527. source: "./media/characters/aigey/side.svg"
  3528. }
  3529. },
  3530. },
  3531. [
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(200, "feet"),
  3535. default: true
  3536. },
  3537. {
  3538. name: "Megamacro",
  3539. height: math.unit(100, "miles")
  3540. },
  3541. ]
  3542. )
  3543. )
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(5 + 5 / 12, "feet"),
  3549. weight: math.unit(75, "kg"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/natasha/front.svg",
  3553. extra: 859 / 824,
  3554. bottom: 23 / 879.6
  3555. }
  3556. },
  3557. frontNsfw: {
  3558. height: math.unit(5 + 5 / 12, "feet"),
  3559. weight: math.unit(75, "kg"),
  3560. name: "Front (NSFW)",
  3561. image: {
  3562. source: "./media/characters/natasha/front-nsfw.svg",
  3563. extra: 859 / 824,
  3564. bottom: 23 / 879.6
  3565. }
  3566. },
  3567. frontErect: {
  3568. height: math.unit(5 + 5 / 12, "feet"),
  3569. weight: math.unit(75, "kg"),
  3570. name: "Front (Erect)",
  3571. image: {
  3572. source: "./media/characters/natasha/front-erect.svg",
  3573. extra: 859 / 824,
  3574. bottom: 23 / 879.6
  3575. }
  3576. },
  3577. back: {
  3578. height: math.unit(5 + 5 / 12, "feet"),
  3579. weight: math.unit(75, "kg"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/natasha/back.svg",
  3583. extra: 887.9 / 852.6,
  3584. bottom: 9.7 / 896.4
  3585. }
  3586. },
  3587. backAlt: {
  3588. height: math.unit(5 + 5 / 12, "feet"),
  3589. weight: math.unit(75, "kg"),
  3590. name: "Back (Alt)",
  3591. image: {
  3592. source: "./media/characters/natasha/back-alt.svg",
  3593. extra: 1236.7 / 1192,
  3594. bottom: 22.3 / 1258.2
  3595. }
  3596. },
  3597. dick: {
  3598. height: math.unit(1.772, "feet"),
  3599. name: "Dick",
  3600. image: {
  3601. source: "./media/characters/natasha/dick.svg"
  3602. }
  3603. },
  3604. paw: {
  3605. height: math.unit(0.250, "meters"),
  3606. name: "Paw",
  3607. image: {
  3608. source: "./media/characters/natasha/paw.svg"
  3609. },
  3610. extraAttributes: {
  3611. "toeSize": {
  3612. name: "Toe Size",
  3613. power: 2,
  3614. type: "area",
  3615. base: math.unit(0.0024, "m^2")
  3616. },
  3617. "padSize": {
  3618. name: "Pad Size",
  3619. power: 2,
  3620. type: "area",
  3621. base: math.unit(0.00889, "m^2")
  3622. },
  3623. "pawSize": {
  3624. name: "Paw Size",
  3625. power: 2,
  3626. type: "area",
  3627. base: math.unit(0.023667, "m^2")
  3628. },
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Shortstack",
  3635. height: math.unit(3, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(5 + 5 / 12, "feet")
  3641. },
  3642. {
  3643. name: "Large",
  3644. height: math.unit(12, "feet")
  3645. },
  3646. {
  3647. name: "Macro",
  3648. height: math.unit(100, "feet")
  3649. },
  3650. {
  3651. name: "Macro+",
  3652. height: math.unit(260, "feet")
  3653. },
  3654. {
  3655. name: "Macro++",
  3656. height: math.unit(1, "mile")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(75, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/malik/front.svg",
  3669. extra: 1750/1561,
  3670. bottom: 80/1830
  3671. },
  3672. extraAttributes: {
  3673. "toeSize": {
  3674. name: "Toe Size",
  3675. power: 2,
  3676. type: "area",
  3677. base: math.unit(0.0159, "m^2")
  3678. },
  3679. "pawSize": {
  3680. name: "Paw Size",
  3681. power: 2,
  3682. type: "area",
  3683. base: math.unit(0.09834, "m^2")
  3684. },
  3685. }
  3686. },
  3687. side: {
  3688. height: math.unit(6, "feet"),
  3689. weight: math.unit(75, "kg"),
  3690. name: "Side",
  3691. image: {
  3692. source: "./media/characters/malik/side.svg",
  3693. extra: 1802/1685,
  3694. bottom: 42/1844
  3695. },
  3696. extraAttributes: {
  3697. "toeSize": {
  3698. name: "Toe Size",
  3699. power: 2,
  3700. type: "area",
  3701. base: math.unit(0.0159, "m^2")
  3702. },
  3703. "pawSize": {
  3704. name: "Paw Size",
  3705. power: 2,
  3706. type: "area",
  3707. base: math.unit(0.09834, "m^2")
  3708. },
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(6, "feet"),
  3713. weight: math.unit(75, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/malik/back.svg",
  3717. extra: 1803/1607,
  3718. bottom: 33/1836
  3719. },
  3720. extraAttributes: {
  3721. "toeSize": {
  3722. name: "Toe Size",
  3723. power: 2,
  3724. type: "area",
  3725. base: math.unit(0.0159, "m^2")
  3726. },
  3727. "pawSize": {
  3728. name: "Paw Size",
  3729. power: 2,
  3730. type: "area",
  3731. base: math.unit(0.09834, "m^2")
  3732. },
  3733. }
  3734. },
  3735. },
  3736. [
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(156, "feet"),
  3740. default: true
  3741. },
  3742. {
  3743. name: "Macro+",
  3744. height: math.unit(1188, "feet")
  3745. },
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(6, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/sefer/front.svg",
  3757. extra: 848 / 659,
  3758. bottom: 28.3 / 876.442
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/sefer/back.svg",
  3767. extra: 864 / 695,
  3768. bottom: 10 / 871
  3769. }
  3770. },
  3771. frontDressed: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Dressed",
  3775. image: {
  3776. source: "./media/characters/sefer/dressed.svg",
  3777. extra: 839 / 653,
  3778. bottom: 37.6 / 878
  3779. }
  3780. },
  3781. },
  3782. [
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(6, "feet"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Big",
  3790. height: math.unit(8, "meters")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3796. {
  3797. body: {
  3798. height: math.unit(2.2428, "meter"),
  3799. weight: math.unit(124.738, "kg"),
  3800. name: "Body",
  3801. image: {
  3802. extra: 1225 / 1050,
  3803. source: "./media/characters/north/front.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Micro",
  3810. height: math.unit(4, "inches")
  3811. },
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(63, "meters")
  3815. },
  3816. {
  3817. name: "Megamacro",
  3818. height: math.unit(101, "miles"),
  3819. default: true
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3825. {
  3826. angled: {
  3827. height: math.unit(4, "meter"),
  3828. weight: math.unit(150, "kg"),
  3829. name: "Angled",
  3830. image: {
  3831. source: "./media/characters/talan/angled-sfw.svg",
  3832. bottom: 29 / 3734
  3833. }
  3834. },
  3835. angledNsfw: {
  3836. height: math.unit(4, "meter"),
  3837. weight: math.unit(150, "kg"),
  3838. name: "Angled (NSFW)",
  3839. image: {
  3840. source: "./media/characters/talan/angled-nsfw.svg",
  3841. bottom: 29 / 3734
  3842. }
  3843. },
  3844. frontNsfw: {
  3845. height: math.unit(4, "meter"),
  3846. weight: math.unit(150, "kg"),
  3847. name: "Front (NSFW)",
  3848. image: {
  3849. source: "./media/characters/talan/front-nsfw.svg",
  3850. bottom: 29 / 3734
  3851. }
  3852. },
  3853. sideNsfw: {
  3854. height: math.unit(4, "meter"),
  3855. weight: math.unit(150, "kg"),
  3856. name: "Side (NSFW)",
  3857. image: {
  3858. source: "./media/characters/talan/side-nsfw.svg",
  3859. bottom: 29 / 3734
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(4, "meter"),
  3864. weight: math.unit(150, "kg"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/talan/back.svg"
  3868. }
  3869. },
  3870. dickBottom: {
  3871. height: math.unit(0.621, "meter"),
  3872. name: "Dick (Bottom)",
  3873. image: {
  3874. source: "./media/characters/talan/dick-bottom.svg"
  3875. }
  3876. },
  3877. dickTop: {
  3878. height: math.unit(0.621, "meter"),
  3879. name: "Dick (Top)",
  3880. image: {
  3881. source: "./media/characters/talan/dick-top.svg"
  3882. }
  3883. },
  3884. dickSide: {
  3885. height: math.unit(0.305, "meter"),
  3886. name: "Dick (Side)",
  3887. image: {
  3888. source: "./media/characters/talan/dick-side.svg"
  3889. }
  3890. },
  3891. dickFront: {
  3892. height: math.unit(0.305, "meter"),
  3893. name: "Dick (Front)",
  3894. image: {
  3895. source: "./media/characters/talan/dick-front.svg"
  3896. }
  3897. },
  3898. },
  3899. [
  3900. {
  3901. name: "Normal",
  3902. height: math.unit(4, "meters")
  3903. },
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(100, "meters")
  3907. },
  3908. {
  3909. name: "Megamacro",
  3910. height: math.unit(2, "miles"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Gigamacro",
  3915. height: math.unit(5000, "miles")
  3916. },
  3917. {
  3918. name: "Teramacro",
  3919. height: math.unit(100, "parsecs")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(90, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/gael'rathus/front.svg"
  3932. }
  3933. },
  3934. frontAlt: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(90, "kg"),
  3937. name: "Front (alt)",
  3938. image: {
  3939. source: "./media/characters/gael'rathus/front-alt.svg"
  3940. }
  3941. },
  3942. frontAlt2: {
  3943. height: math.unit(2, "meter"),
  3944. weight: math.unit(90, "kg"),
  3945. name: "Front (alt 2)",
  3946. image: {
  3947. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3948. }
  3949. }
  3950. },
  3951. [
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(9, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Large",
  3959. height: math.unit(25, "feet")
  3960. },
  3961. {
  3962. name: "Macro",
  3963. height: math.unit(0.25, "miles")
  3964. },
  3965. {
  3966. name: "Megamacro",
  3967. height: math.unit(10, "miles")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3973. {
  3974. side: {
  3975. height: math.unit(2, "meter"),
  3976. weight: math.unit(140, "kg"),
  3977. name: "Side",
  3978. image: {
  3979. source: "./media/characters/sosha/side.svg",
  3980. extra: 1170/1006,
  3981. bottom: 94/1264
  3982. }
  3983. },
  3984. maw: {
  3985. height: math.unit(2.87, "feet"),
  3986. name: "Maw",
  3987. image: {
  3988. source: "./media/characters/sosha/maw.svg",
  3989. extra: 966/865,
  3990. bottom: 0/966
  3991. }
  3992. },
  3993. cooch: {
  3994. height: math.unit(5.6, "feet"),
  3995. name: "Cooch",
  3996. image: {
  3997. source: "./media/characters/sosha/cooch.svg"
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Normal",
  4004. height: math.unit(12, "feet"),
  4005. default: true
  4006. }
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4011. {
  4012. side: {
  4013. height: math.unit(5 + 5 / 12, "feet"),
  4014. weight: math.unit(170, "kg"),
  4015. name: "Side",
  4016. image: {
  4017. source: "./media/characters/runnola/side.svg",
  4018. extra: 741 / 448,
  4019. bottom: 0.05
  4020. }
  4021. },
  4022. },
  4023. [
  4024. {
  4025. name: "Small",
  4026. height: math.unit(3, "feet")
  4027. },
  4028. {
  4029. name: "Normal",
  4030. height: math.unit(5 + 5 / 12, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Big",
  4035. height: math.unit(10, "feet")
  4036. },
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(50, "kg"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/kurribird/front.svg",
  4048. bottom: 0.015
  4049. }
  4050. },
  4051. frontAlt: {
  4052. height: math.unit(1.5, "meter"),
  4053. weight: math.unit(50, "kg"),
  4054. name: "Front (Alt)",
  4055. image: {
  4056. source: "./media/characters/kurribird/front-alt.svg",
  4057. extra: 1.45
  4058. }
  4059. },
  4060. },
  4061. [
  4062. {
  4063. name: "Normal",
  4064. height: math.unit(7, "feet")
  4065. },
  4066. {
  4067. name: "Big",
  4068. height: math.unit(12, "feet"),
  4069. default: true
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(1500, "feet")
  4074. },
  4075. {
  4076. name: "Megamacro",
  4077. height: math.unit(2, "miles")
  4078. }
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4083. {
  4084. front: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(80, "kg"),
  4087. name: "Front",
  4088. image: {
  4089. source: "./media/characters/elbial/front.svg",
  4090. extra: 1643 / 1556,
  4091. bottom: 60.2 / 1696
  4092. }
  4093. },
  4094. side: {
  4095. height: math.unit(2, "meter"),
  4096. weight: math.unit(80, "kg"),
  4097. name: "Side",
  4098. image: {
  4099. source: "./media/characters/elbial/side.svg",
  4100. extra: 1601/1528,
  4101. bottom: 97/1698
  4102. }
  4103. },
  4104. back: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(80, "kg"),
  4107. name: "Back",
  4108. image: {
  4109. source: "./media/characters/elbial/back.svg",
  4110. extra: 1653/1569,
  4111. bottom: 20/1673
  4112. }
  4113. },
  4114. frontDressed: {
  4115. height: math.unit(2, "meter"),
  4116. weight: math.unit(80, "kg"),
  4117. name: "Front (Dressed)",
  4118. image: {
  4119. source: "./media/characters/elbial/front-dressed.svg",
  4120. extra: 1638/1569,
  4121. bottom: 70/1708
  4122. }
  4123. },
  4124. genitals: {
  4125. height: math.unit(2 / 3.367, "meter"),
  4126. name: "Genitals",
  4127. image: {
  4128. source: "./media/characters/elbial/genitals.svg"
  4129. }
  4130. },
  4131. },
  4132. [
  4133. {
  4134. name: "Large",
  4135. height: math.unit(100, "feet")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(500, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Megamacro",
  4144. height: math.unit(10, "miles")
  4145. },
  4146. {
  4147. name: "Gigamacro",
  4148. height: math.unit(25000, "miles")
  4149. },
  4150. {
  4151. name: "Full-Size",
  4152. height: math.unit(8000000, "gigaparsecs")
  4153. }
  4154. ]
  4155. ))
  4156. characterMakers.push(() => makeCharacter(
  4157. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4158. {
  4159. front: {
  4160. height: math.unit(2, "meter"),
  4161. weight: math.unit(60, "kg"),
  4162. name: "Front",
  4163. image: {
  4164. source: "./media/characters/noah/front.svg"
  4165. }
  4166. },
  4167. talons: {
  4168. height: math.unit(0.315, "meter"),
  4169. name: "Talons",
  4170. image: {
  4171. source: "./media/characters/noah/talons.svg"
  4172. }
  4173. }
  4174. },
  4175. [
  4176. {
  4177. name: "Large",
  4178. height: math.unit(50, "feet")
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(750, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Megamacro",
  4187. height: math.unit(50, "miles")
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(100000, "miles")
  4192. },
  4193. {
  4194. name: "Full-Size",
  4195. height: math.unit(3000000000, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(80, "kg"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/natalya/front.svg"
  4208. }
  4209. },
  4210. back: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(80, "kg"),
  4213. name: "Back",
  4214. image: {
  4215. source: "./media/characters/natalya/back.svg"
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(150, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Megamacro",
  4227. height: math.unit(5, "miles")
  4228. },
  4229. {
  4230. name: "Full-Size",
  4231. height: math.unit(600, "kiloparsecs")
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(50, "kg"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/erestrebah/front.svg",
  4244. extra: 1262/1162,
  4245. bottom: 96/1358
  4246. }
  4247. },
  4248. back: {
  4249. height: math.unit(2, "meter"),
  4250. weight: math.unit(50, "kg"),
  4251. name: "Back",
  4252. image: {
  4253. source: "./media/characters/erestrebah/back.svg",
  4254. extra: 1257/1139,
  4255. bottom: 13/1270
  4256. }
  4257. },
  4258. wing: {
  4259. height: math.unit(2, "meter"),
  4260. weight: math.unit(50, "kg"),
  4261. name: "Wing",
  4262. image: {
  4263. source: "./media/characters/erestrebah/wing.svg",
  4264. extra: 1262/1162,
  4265. bottom: 96/1358
  4266. }
  4267. },
  4268. mouth: {
  4269. height: math.unit(0.39, "feet"),
  4270. name: "Mouth",
  4271. image: {
  4272. source: "./media/characters/erestrebah/mouth.svg"
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(10, "feet")
  4280. },
  4281. {
  4282. name: "Large",
  4283. height: math.unit(50, "feet"),
  4284. default: true
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(300, "feet")
  4289. },
  4290. {
  4291. name: "Macro+",
  4292. height: math.unit(750, "feet")
  4293. },
  4294. {
  4295. name: "Megamacro",
  4296. height: math.unit(3, "miles")
  4297. }
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(2, "meter"),
  4305. weight: math.unit(80, "kg"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/jennifer/front.svg",
  4309. bottom: 0.11,
  4310. extra: 1.16
  4311. }
  4312. },
  4313. frontAlt: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(80, "kg"),
  4316. name: "Front (Alt)",
  4317. image: {
  4318. source: "./media/characters/jennifer/front-alt.svg"
  4319. }
  4320. }
  4321. },
  4322. [
  4323. {
  4324. name: "Canon Height",
  4325. height: math.unit(120, "feet"),
  4326. default: true
  4327. },
  4328. {
  4329. name: "Macro+",
  4330. height: math.unit(300, "feet")
  4331. },
  4332. {
  4333. name: "Megamacro",
  4334. height: math.unit(20000, "feet")
  4335. }
  4336. ]
  4337. ))
  4338. characterMakers.push(() => makeCharacter(
  4339. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4340. {
  4341. front: {
  4342. height: math.unit(2, "meter"),
  4343. weight: math.unit(50, "kg"),
  4344. name: "Front",
  4345. image: {
  4346. source: "./media/characters/kalista/front.svg",
  4347. extra: 1314/1145,
  4348. bottom: 101/1415
  4349. }
  4350. },
  4351. back: {
  4352. height: math.unit(2, "meter"),
  4353. weight: math.unit(50, "kg"),
  4354. name: "Back",
  4355. image: {
  4356. source: "./media/characters/kalista/back.svg",
  4357. extra: 1366 / 1156,
  4358. bottom: 33.9 / 1362.78
  4359. }
  4360. }
  4361. },
  4362. [
  4363. {
  4364. name: "Uncomfortably Small",
  4365. height: math.unit(10, "feet")
  4366. },
  4367. {
  4368. name: "Small",
  4369. height: math.unit(30, "feet")
  4370. },
  4371. {
  4372. name: "Macro",
  4373. height: math.unit(100, "feet"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Macro+",
  4378. height: math.unit(2000, "feet")
  4379. },
  4380. {
  4381. name: "True Form",
  4382. height: math.unit(8924, "miles")
  4383. }
  4384. ]
  4385. ))
  4386. characterMakers.push(() => makeCharacter(
  4387. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4388. {
  4389. front: {
  4390. height: math.unit(2, "meter"),
  4391. weight: math.unit(120, "kg"),
  4392. name: "Front",
  4393. image: {
  4394. source: "./media/characters/ggv/front.svg"
  4395. }
  4396. },
  4397. side: {
  4398. height: math.unit(2, "meter"),
  4399. weight: math.unit(120, "kg"),
  4400. name: "Side",
  4401. image: {
  4402. source: "./media/characters/ggv/side.svg"
  4403. }
  4404. }
  4405. },
  4406. [
  4407. {
  4408. name: "Extremely Puny",
  4409. height: math.unit(9 + 5 / 12, "feet")
  4410. },
  4411. {
  4412. name: "Horribly Small",
  4413. height: math.unit(47.7, "miles"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Reasonably Sized",
  4418. height: math.unit(25000, "parsecs")
  4419. },
  4420. {
  4421. name: "Slightly Uncompressed",
  4422. height: math.unit(7.77e31, "parsecs")
  4423. },
  4424. {
  4425. name: "Omniversal",
  4426. height: math.unit(1e300, "meters")
  4427. },
  4428. ]
  4429. ))
  4430. characterMakers.push(() => makeCharacter(
  4431. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4432. {
  4433. front: {
  4434. height: math.unit(2, "meter"),
  4435. weight: math.unit(75, "lb"),
  4436. name: "Front",
  4437. image: {
  4438. source: "./media/characters/napalm/front.svg"
  4439. }
  4440. },
  4441. back: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(75, "lb"),
  4444. name: "Back",
  4445. image: {
  4446. source: "./media/characters/napalm/back.svg"
  4447. }
  4448. }
  4449. },
  4450. [
  4451. {
  4452. name: "Standard",
  4453. height: math.unit(55, "feet"),
  4454. default: true
  4455. }
  4456. ]
  4457. ))
  4458. characterMakers.push(() => makeCharacter(
  4459. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4460. {
  4461. front: {
  4462. height: math.unit(7 + 5 / 6, "feet"),
  4463. weight: math.unit(325, "lb"),
  4464. name: "Front",
  4465. image: {
  4466. source: "./media/characters/asana/front.svg",
  4467. extra: 1133 / 1060,
  4468. bottom: 15.2 / 1148.6
  4469. }
  4470. },
  4471. back: {
  4472. height: math.unit(7 + 5 / 6, "feet"),
  4473. weight: math.unit(325, "lb"),
  4474. name: "Back",
  4475. image: {
  4476. source: "./media/characters/asana/back.svg",
  4477. extra: 1114 / 1043,
  4478. bottom: 5 / 1120
  4479. }
  4480. },
  4481. dressedDark: {
  4482. height: math.unit(7 + 5 / 6, "feet"),
  4483. weight: math.unit(325, "lb"),
  4484. name: "Dressed (Dark)",
  4485. image: {
  4486. source: "./media/characters/asana/dressed-dark.svg",
  4487. extra: 1133 / 1060,
  4488. bottom: 15.2 / 1148.6
  4489. }
  4490. },
  4491. dressedLight: {
  4492. height: math.unit(7 + 5 / 6, "feet"),
  4493. weight: math.unit(325, "lb"),
  4494. name: "Dressed (Light)",
  4495. image: {
  4496. source: "./media/characters/asana/dressed-light.svg",
  4497. extra: 1133 / 1060,
  4498. bottom: 15.2 / 1148.6
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Standard",
  4505. height: math.unit(7 + 5 / 6, "feet"),
  4506. default: true
  4507. },
  4508. {
  4509. name: "Large",
  4510. height: math.unit(10, "meters")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(2500, "meters")
  4515. },
  4516. {
  4517. name: "Megamacro",
  4518. height: math.unit(5e6, "meters")
  4519. },
  4520. {
  4521. name: "Examacro",
  4522. height: math.unit(5e12, "lightyears")
  4523. },
  4524. {
  4525. name: "Max Size",
  4526. height: math.unit(1e31, "lightyears")
  4527. }
  4528. ]
  4529. ))
  4530. characterMakers.push(() => makeCharacter(
  4531. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4532. {
  4533. front: {
  4534. height: math.unit(2, "meter"),
  4535. weight: math.unit(60, "kg"),
  4536. name: "Front",
  4537. image: {
  4538. source: "./media/characters/ebony/front.svg",
  4539. bottom: 0.03,
  4540. extra: 1045 / 810 + 0.03
  4541. }
  4542. },
  4543. side: {
  4544. height: math.unit(2, "meter"),
  4545. weight: math.unit(60, "kg"),
  4546. name: "Side",
  4547. image: {
  4548. source: "./media/characters/ebony/side.svg",
  4549. bottom: 0.03,
  4550. extra: 1045 / 810 + 0.03
  4551. }
  4552. },
  4553. back: {
  4554. height: math.unit(2, "meter"),
  4555. weight: math.unit(60, "kg"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/ebony/back.svg",
  4559. bottom: 0.01,
  4560. extra: 1045 / 810 + 0.01
  4561. }
  4562. },
  4563. },
  4564. [
  4565. // TODO check why I did this lol
  4566. {
  4567. name: "Standard",
  4568. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4569. default: true
  4570. },
  4571. {
  4572. name: "Macro",
  4573. height: math.unit(200, "feet")
  4574. },
  4575. {
  4576. name: "Gigamacro",
  4577. height: math.unit(13000, "km")
  4578. }
  4579. ]
  4580. ))
  4581. characterMakers.push(() => makeCharacter(
  4582. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4583. {
  4584. front: {
  4585. height: math.unit(6, "feet"),
  4586. weight: math.unit(175, "lb"),
  4587. name: "Front",
  4588. image: {
  4589. source: "./media/characters/mountain/front.svg",
  4590. extra: 972 / 955,
  4591. bottom: 64 / 1036.6
  4592. }
  4593. },
  4594. back: {
  4595. height: math.unit(6, "feet"),
  4596. weight: math.unit(175, "lb"),
  4597. name: "Back",
  4598. image: {
  4599. source: "./media/characters/mountain/back.svg",
  4600. extra: 970 / 950,
  4601. bottom: 28.25 / 999
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Large",
  4608. height: math.unit(20, "meters")
  4609. },
  4610. {
  4611. name: "Macro",
  4612. height: math.unit(300, "meters")
  4613. },
  4614. {
  4615. name: "Gigamacro",
  4616. height: math.unit(10000, "km"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Examacro",
  4621. height: math.unit(10e9, "lightyears")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(8, "feet"),
  4630. weight: math.unit(500, "lb"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/rick/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Normal",
  4640. height: math.unit(8, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Macro",
  4645. height: math.unit(5, "km")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(8, "feet"),
  4654. weight: math.unit(120, "lb"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/ona/front.svg"
  4658. }
  4659. },
  4660. frontAlt: {
  4661. height: math.unit(8, "feet"),
  4662. weight: math.unit(120, "lb"),
  4663. name: "Front (Alt)",
  4664. image: {
  4665. source: "./media/characters/ona/front-alt.svg"
  4666. }
  4667. },
  4668. back: {
  4669. height: math.unit(8, "feet"),
  4670. weight: math.unit(120, "lb"),
  4671. name: "Back",
  4672. image: {
  4673. source: "./media/characters/ona/back.svg"
  4674. }
  4675. },
  4676. foot: {
  4677. height: math.unit(1.1, "feet"),
  4678. name: "Foot",
  4679. image: {
  4680. source: "./media/characters/ona/foot.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Megamacro",
  4687. height: math.unit(70, "km"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Gigamacro",
  4692. height: math.unit(681818, "miles")
  4693. },
  4694. {
  4695. name: "Examacro",
  4696. height: math.unit(3800000, "lightyears")
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(12, "feet"),
  4705. weight: math.unit(3000, "lb"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/mech/front.svg",
  4709. extra: 2900 / 2770,
  4710. bottom: 110 / 3010
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(12, "feet"),
  4715. weight: math.unit(3000, "lb"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/mech/back.svg",
  4719. extra: 3011 / 2890,
  4720. bottom: 94 / 3105
  4721. }
  4722. },
  4723. maw: {
  4724. height: math.unit(3.07, "feet"),
  4725. name: "Maw",
  4726. image: {
  4727. source: "./media/characters/mech/maw.svg"
  4728. }
  4729. },
  4730. head: {
  4731. height: math.unit(3.07, "feet"),
  4732. name: "Head",
  4733. image: {
  4734. source: "./media/characters/mech/head.svg"
  4735. }
  4736. },
  4737. dick: {
  4738. height: math.unit(1.43, "feet"),
  4739. name: "Dick",
  4740. image: {
  4741. source: "./media/characters/mech/dick.svg"
  4742. }
  4743. },
  4744. },
  4745. [
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(12, "feet")
  4749. },
  4750. {
  4751. name: "Macro",
  4752. height: math.unit(300, "feet"),
  4753. default: true
  4754. },
  4755. {
  4756. name: "Macro+",
  4757. height: math.unit(1500, "feet")
  4758. },
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(1.3, "meter"),
  4766. weight: math.unit(30, "kg"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/gregory/front.svg",
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(1.3, "meter"),
  4777. default: true
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(20, "meter")
  4782. }
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4787. {
  4788. front: {
  4789. height: math.unit(2.8, "meter"),
  4790. weight: math.unit(200, "kg"),
  4791. name: "Front",
  4792. image: {
  4793. source: "./media/characters/elory/front.svg",
  4794. }
  4795. }
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(2.8, "meter"),
  4801. default: true
  4802. },
  4803. {
  4804. name: "Macro",
  4805. height: math.unit(38, "meter")
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(470, "feet"),
  4814. weight: math.unit(924, "tons"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/angelpatamon/front.svg",
  4818. }
  4819. }
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(470, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Deity Size I",
  4829. height: math.unit(28651.2, "km")
  4830. },
  4831. {
  4832. name: "Deity Size II",
  4833. height: math.unit(171907.2, "km")
  4834. }
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4839. {
  4840. side: {
  4841. height: math.unit(7.2, "meter"),
  4842. weight: math.unit(8.2, "tons"),
  4843. name: "Side",
  4844. image: {
  4845. source: "./media/characters/cryae/side.svg",
  4846. extra: 3500 / 1500
  4847. }
  4848. }
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(7.2, "meter"),
  4854. default: true
  4855. }
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4860. {
  4861. front: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(175, "lb"),
  4864. name: "Front",
  4865. image: {
  4866. source: "./media/characters/xera/front.svg",
  4867. extra: 2377 / 1972,
  4868. bottom: 75.5 / 2452
  4869. }
  4870. },
  4871. side: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(175, "lb"),
  4874. name: "Side",
  4875. image: {
  4876. source: "./media/characters/xera/side.svg",
  4877. extra: 2345 / 2019,
  4878. bottom: 39.7 / 2384
  4879. }
  4880. },
  4881. back: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(175, "lb"),
  4884. name: "Back",
  4885. image: {
  4886. source: "./media/characters/xera/back.svg",
  4887. extra: 2095 / 1984,
  4888. bottom: 67 / 2166
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Small",
  4895. height: math.unit(10, "feet")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(500, "meters"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Macro+",
  4904. height: math.unit(10, "km")
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(25000, "km")
  4909. },
  4910. {
  4911. name: "Teramacro",
  4912. height: math.unit(3e6, "km")
  4913. }
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(175, "lb"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/nebula/front.svg",
  4925. extra: 2566 / 2362,
  4926. bottom: 81 / 2644
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Small",
  4933. height: math.unit(4.5, "meters")
  4934. },
  4935. {
  4936. name: "Macro",
  4937. height: math.unit(1500, "meters"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Megamacro",
  4942. height: math.unit(150, "km")
  4943. },
  4944. {
  4945. name: "Gigamacro",
  4946. height: math.unit(27000, "km")
  4947. }
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4952. {
  4953. front: {
  4954. height: math.unit(6, "feet"),
  4955. weight: math.unit(225, "lb"),
  4956. name: "Front",
  4957. image: {
  4958. source: "./media/characters/abysgar/front.svg",
  4959. extra: 1739/1614,
  4960. bottom: 71/1810
  4961. }
  4962. },
  4963. frontNsfw: {
  4964. height: math.unit(6, "feet"),
  4965. weight: math.unit(225, "lb"),
  4966. name: "Front (NSFW)",
  4967. image: {
  4968. source: "./media/characters/abysgar/front-nsfw.svg",
  4969. extra: 1739/1614,
  4970. bottom: 71/1810
  4971. }
  4972. },
  4973. back: {
  4974. height: math.unit(4.6, "feet"),
  4975. weight: math.unit(225, "lb"),
  4976. name: "Back",
  4977. image: {
  4978. source: "./media/characters/abysgar/back.svg",
  4979. extra: 1384/1327,
  4980. bottom: 0/1384
  4981. }
  4982. },
  4983. head: {
  4984. height: math.unit(1.25, "feet"),
  4985. name: "Head",
  4986. image: {
  4987. source: "./media/characters/abysgar/head.svg",
  4988. extra: 669/569,
  4989. bottom: 0/669
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Small",
  4996. height: math.unit(4.5, "meters")
  4997. },
  4998. {
  4999. name: "Macro",
  5000. height: math.unit(1250, "meters"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Megamacro",
  5005. height: math.unit(125, "km")
  5006. },
  5007. {
  5008. name: "Gigamacro",
  5009. height: math.unit(26000, "km")
  5010. }
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5015. {
  5016. front: {
  5017. height: math.unit(6, "feet"),
  5018. weight: math.unit(180, "lb"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/yakuz/front.svg"
  5022. }
  5023. }
  5024. },
  5025. [
  5026. {
  5027. name: "Small",
  5028. height: math.unit(5, "meters")
  5029. },
  5030. {
  5031. name: "Macro",
  5032. height: math.unit(1500, "meters"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Megamacro",
  5037. height: math.unit(200, "km")
  5038. },
  5039. {
  5040. name: "Gigamacro",
  5041. height: math.unit(100000, "km")
  5042. }
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5047. {
  5048. front: {
  5049. height: math.unit(6, "feet"),
  5050. weight: math.unit(175, "lb"),
  5051. name: "Front",
  5052. image: {
  5053. source: "./media/characters/mirova/front.svg",
  5054. extra: 3334 / 3071,
  5055. bottom: 42 / 3375.6
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Small",
  5062. height: math.unit(5, "meters")
  5063. },
  5064. {
  5065. name: "Macro",
  5066. height: math.unit(900, "meters"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Megamacro",
  5071. height: math.unit(135, "km")
  5072. },
  5073. {
  5074. name: "Gigamacro",
  5075. height: math.unit(20000, "km")
  5076. }
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5081. {
  5082. side: {
  5083. height: math.unit(28.35, "feet"),
  5084. weight: math.unit(99.75, "tons"),
  5085. name: "Side",
  5086. image: {
  5087. source: "./media/characters/asana-mech/side.svg",
  5088. extra: 923 / 699,
  5089. bottom: 50 / 975
  5090. }
  5091. },
  5092. chaingun: {
  5093. height: math.unit(7, "feet"),
  5094. weight: math.unit(2400, "lb"),
  5095. name: "Chaingun",
  5096. image: {
  5097. source: "./media/characters/asana-mech/chaingun.svg"
  5098. }
  5099. },
  5100. laser: {
  5101. height: math.unit(7.12, "feet"),
  5102. weight: math.unit(2000, "lb"),
  5103. name: "Laser",
  5104. image: {
  5105. source: "./media/characters/asana-mech/laser.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(28.35, "feet"),
  5113. default: true
  5114. },
  5115. {
  5116. name: "Macro",
  5117. height: math.unit(2500, "feet")
  5118. },
  5119. {
  5120. name: "Megamacro",
  5121. height: math.unit(25, "miles")
  5122. },
  5123. {
  5124. name: "Examacro",
  5125. height: math.unit(6e8, "lightyears")
  5126. },
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5131. {
  5132. front: {
  5133. height: math.unit(5, "meters"),
  5134. weight: math.unit(1000, "kg"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/asche/front.svg",
  5138. extra: 1258 / 1190,
  5139. bottom: 47 / 1305
  5140. }
  5141. },
  5142. frontUnderwear: {
  5143. height: math.unit(5, "meters"),
  5144. weight: math.unit(1000, "kg"),
  5145. name: "Front (Underwear)",
  5146. image: {
  5147. source: "./media/characters/asche/front-underwear.svg",
  5148. extra: 1258 / 1190,
  5149. bottom: 47 / 1305
  5150. }
  5151. },
  5152. frontDressed: {
  5153. height: math.unit(5, "meters"),
  5154. weight: math.unit(1000, "kg"),
  5155. name: "Front (Dressed)",
  5156. image: {
  5157. source: "./media/characters/asche/front-dressed.svg",
  5158. extra: 1258 / 1190,
  5159. bottom: 47 / 1305
  5160. }
  5161. },
  5162. frontArmor: {
  5163. height: math.unit(5, "meters"),
  5164. weight: math.unit(1000, "kg"),
  5165. name: "Front (Armored)",
  5166. image: {
  5167. source: "./media/characters/asche/front-armored.svg",
  5168. extra: 1374 / 1308,
  5169. bottom: 23 / 1397
  5170. }
  5171. },
  5172. mp724: {
  5173. height: math.unit(0.96, "meters"),
  5174. weight: math.unit(38, "kg"),
  5175. name: "H&K MP724",
  5176. image: {
  5177. source: "./media/characters/asche/h&k-mp724.svg"
  5178. }
  5179. },
  5180. side: {
  5181. height: math.unit(5, "meters"),
  5182. weight: math.unit(1000, "kg"),
  5183. name: "Side",
  5184. image: {
  5185. source: "./media/characters/asche/side.svg",
  5186. extra: 1717 / 1609,
  5187. bottom: 0.005
  5188. }
  5189. },
  5190. back: {
  5191. height: math.unit(5, "meters"),
  5192. weight: math.unit(1000, "kg"),
  5193. name: "Back",
  5194. image: {
  5195. source: "./media/characters/asche/back.svg",
  5196. extra: 1570 / 1501
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "DEFCON 5",
  5203. height: math.unit(5, "meters")
  5204. },
  5205. {
  5206. name: "DEFCON 4",
  5207. height: math.unit(500, "meters"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "DEFCON 3",
  5212. height: math.unit(5, "km")
  5213. },
  5214. {
  5215. name: "DEFCON 2",
  5216. height: math.unit(500, "km")
  5217. },
  5218. {
  5219. name: "DEFCON 1",
  5220. height: math.unit(500000, "km")
  5221. },
  5222. {
  5223. name: "DEFCON 0",
  5224. height: math.unit(3, "gigaparsecs")
  5225. },
  5226. ]
  5227. ))
  5228. characterMakers.push(() => makeCharacter(
  5229. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5230. {
  5231. front: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(76, "kg"),
  5234. name: "Front",
  5235. image: {
  5236. source: "./media/characters/gale/front.svg"
  5237. }
  5238. },
  5239. frontAlt1: {
  5240. height: math.unit(2, "meters"),
  5241. weight: math.unit(76, "kg"),
  5242. name: "Front (Alt 1)",
  5243. image: {
  5244. source: "./media/characters/gale/front-alt-1.svg"
  5245. }
  5246. },
  5247. frontAlt2: {
  5248. height: math.unit(2, "meters"),
  5249. weight: math.unit(76, "kg"),
  5250. name: "Front (Alt 2)",
  5251. image: {
  5252. source: "./media/characters/gale/front-alt-2.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(7, "feet")
  5260. },
  5261. {
  5262. name: "Macro",
  5263. height: math.unit(150, "feet"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Macro+",
  5268. height: math.unit(300, "feet")
  5269. },
  5270. ]
  5271. ))
  5272. characterMakers.push(() => makeCharacter(
  5273. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5274. {
  5275. front: {
  5276. height: math.unit(5 + 10/12, "feet"),
  5277. weight: math.unit(67, "kg"),
  5278. name: "Front",
  5279. image: {
  5280. source: "./media/characters/draylen/front.svg",
  5281. extra: 832/777,
  5282. bottom: 85/917
  5283. }
  5284. }
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(5 + 10/12, "feet")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(150, "feet"),
  5294. default: true
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(7 + 9 / 12, "feet"),
  5303. weight: math.unit(379, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/chez/front.svg"
  5307. }
  5308. },
  5309. side: {
  5310. height: math.unit(7 + 9 / 12, "feet"),
  5311. weight: math.unit(379, "lbs"),
  5312. name: "Side",
  5313. image: {
  5314. source: "./media/characters/chez/side.svg"
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(7 + 9 / 12, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "God King",
  5326. height: math.unit(9750000, "meters")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(275, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/kaylum/front.svg",
  5339. bottom: 0.01,
  5340. extra: 1166 / 1031
  5341. }
  5342. },
  5343. frontWingless: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(275, "lbs"),
  5346. name: "Front (Wingless)",
  5347. image: {
  5348. source: "./media/characters/kaylum/front-wingless.svg",
  5349. bottom: 0.01,
  5350. extra: 1117 / 1031
  5351. }
  5352. }
  5353. },
  5354. [
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(3.05, "meters")
  5358. },
  5359. {
  5360. name: "Master",
  5361. height: math.unit(5.5, "meters")
  5362. },
  5363. {
  5364. name: "Rampage",
  5365. height: math.unit(19, "meters")
  5366. },
  5367. {
  5368. name: "Macro Lite",
  5369. height: math.unit(37, "meters")
  5370. },
  5371. {
  5372. name: "Hyper Predator",
  5373. height: math.unit(61, "meters")
  5374. },
  5375. {
  5376. name: "Macro",
  5377. height: math.unit(138, "meters"),
  5378. default: true
  5379. }
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(5 + 5 / 12, "feet"),
  5387. weight: math.unit(120, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/geta/front.svg",
  5391. extra: 1003/933,
  5392. bottom: 21/1024
  5393. }
  5394. },
  5395. paw: {
  5396. height: math.unit(0.35, "feet"),
  5397. name: "Paw",
  5398. image: {
  5399. source: "./media/characters/geta/paw.svg"
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Micro",
  5406. height: math.unit(3, "inches"),
  5407. default: true
  5408. },
  5409. {
  5410. name: "Normal",
  5411. height: math.unit(5 + 5 / 12, "feet")
  5412. }
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(6, "feet"),
  5420. weight: math.unit(300, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/tyrnn/front.svg"
  5424. }
  5425. }
  5426. },
  5427. [
  5428. {
  5429. name: "Main Height",
  5430. height: math.unit(355, "feet"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Fave. Height",
  5435. height: math.unit(2400, "feet")
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(300, "lbs"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/appledectomy/front.svg"
  5448. }
  5449. }
  5450. },
  5451. [
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(2500, "feet")
  5455. },
  5456. {
  5457. name: "Megamacro",
  5458. height: math.unit(50, "miles"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Gigamacro",
  5463. height: math.unit(5000, "miles")
  5464. },
  5465. {
  5466. name: "Teramacro",
  5467. height: math.unit(250000, "miles")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(200, "lbs"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/vulpes/front.svg",
  5480. extra: 573 / 543,
  5481. bottom: 0.033
  5482. }
  5483. },
  5484. side: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(200, "lbs"),
  5487. name: "Side",
  5488. image: {
  5489. source: "./media/characters/vulpes/side.svg",
  5490. extra: 577 / 549,
  5491. bottom: 11 / 588
  5492. }
  5493. },
  5494. back: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(200, "lbs"),
  5497. name: "Back",
  5498. image: {
  5499. source: "./media/characters/vulpes/back.svg",
  5500. extra: 573 / 549,
  5501. bottom: 20 / 593
  5502. }
  5503. },
  5504. feet: {
  5505. height: math.unit(1.276, "feet"),
  5506. name: "Feet",
  5507. image: {
  5508. source: "./media/characters/vulpes/feet.svg"
  5509. }
  5510. },
  5511. maw: {
  5512. height: math.unit(1.18, "feet"),
  5513. name: "Maw",
  5514. image: {
  5515. source: "./media/characters/vulpes/maw.svg"
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "Micro",
  5522. height: math.unit(2, "inches")
  5523. },
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(6.3, "feet")
  5527. },
  5528. {
  5529. name: "Macro",
  5530. height: math.unit(850, "feet")
  5531. },
  5532. {
  5533. name: "Megamacro",
  5534. height: math.unit(7500, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Gigamacro",
  5539. height: math.unit(570000, "miles")
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5545. {
  5546. front: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(210, "lbs"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/rain-fallen/front.svg"
  5552. }
  5553. },
  5554. side: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(210, "lbs"),
  5557. name: "Side",
  5558. image: {
  5559. source: "./media/characters/rain-fallen/side.svg"
  5560. }
  5561. },
  5562. back: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(210, "lbs"),
  5565. name: "Back",
  5566. image: {
  5567. source: "./media/characters/rain-fallen/back.svg"
  5568. }
  5569. },
  5570. feral: {
  5571. height: math.unit(9, "feet"),
  5572. weight: math.unit(700, "lbs"),
  5573. name: "Feral",
  5574. image: {
  5575. source: "./media/characters/rain-fallen/feral.svg"
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Meddling with Mortals",
  5582. height: math.unit(8 + 8/12, "feet")
  5583. },
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(5, "meter")
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(150, "meter"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Megamacro",
  5595. height: math.unit(278e6, "meter")
  5596. },
  5597. {
  5598. name: "Gigamacro",
  5599. height: math.unit(2e9, "meter")
  5600. },
  5601. {
  5602. name: "Teramacro",
  5603. height: math.unit(8e12, "meter")
  5604. },
  5605. {
  5606. name: "Devourer",
  5607. height: math.unit(14, "zettameters")
  5608. },
  5609. {
  5610. name: "Scarlet King",
  5611. height: math.unit(18, "yottameters")
  5612. },
  5613. {
  5614. name: "Void",
  5615. height: math.unit(1e88, "yottameters")
  5616. }
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5621. {
  5622. standing: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(180, "lbs"),
  5625. name: "Standing",
  5626. image: {
  5627. source: "./media/characters/zaakira/standing.svg",
  5628. extra: 1599/1504,
  5629. bottom: 39/1638
  5630. }
  5631. },
  5632. laying: {
  5633. height: math.unit(3.3, "feet"),
  5634. weight: math.unit(180, "lbs"),
  5635. name: "Laying",
  5636. image: {
  5637. source: "./media/characters/zaakira/laying.svg"
  5638. }
  5639. },
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(12, "feet")
  5645. },
  5646. {
  5647. name: "Macro",
  5648. height: math.unit(279, "feet"),
  5649. default: true
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5655. {
  5656. femSfw: {
  5657. height: math.unit(8, "feet"),
  5658. weight: math.unit(350, "lb"),
  5659. name: "Fem",
  5660. image: {
  5661. source: "./media/characters/sigvald/fem-sfw.svg",
  5662. extra: 182 / 164,
  5663. bottom: 8.7 / 190.5
  5664. }
  5665. },
  5666. femNsfw: {
  5667. height: math.unit(8, "feet"),
  5668. weight: math.unit(350, "lb"),
  5669. name: "Fem (NSFW)",
  5670. image: {
  5671. source: "./media/characters/sigvald/fem-nsfw.svg",
  5672. extra: 182 / 164,
  5673. bottom: 8.7 / 190.5
  5674. }
  5675. },
  5676. maleNsfw: {
  5677. height: math.unit(8, "feet"),
  5678. weight: math.unit(350, "lb"),
  5679. name: "Male (NSFW)",
  5680. image: {
  5681. source: "./media/characters/sigvald/male-nsfw.svg",
  5682. extra: 182 / 164,
  5683. bottom: 8.7 / 190.5
  5684. }
  5685. },
  5686. hermNsfw: {
  5687. height: math.unit(8, "feet"),
  5688. weight: math.unit(350, "lb"),
  5689. name: "Herm (NSFW)",
  5690. image: {
  5691. source: "./media/characters/sigvald/herm-nsfw.svg",
  5692. extra: 182 / 164,
  5693. bottom: 8.7 / 190.5
  5694. }
  5695. },
  5696. dick: {
  5697. height: math.unit(2.36, "feet"),
  5698. name: "Dick",
  5699. image: {
  5700. source: "./media/characters/sigvald/dick.svg"
  5701. }
  5702. },
  5703. eye: {
  5704. height: math.unit(0.31, "feet"),
  5705. name: "Eye",
  5706. image: {
  5707. source: "./media/characters/sigvald/eye.svg"
  5708. }
  5709. },
  5710. mouth: {
  5711. height: math.unit(0.92, "feet"),
  5712. name: "Mouth",
  5713. image: {
  5714. source: "./media/characters/sigvald/mouth.svg"
  5715. }
  5716. },
  5717. paws: {
  5718. height: math.unit(2.2, "feet"),
  5719. name: "Paws",
  5720. image: {
  5721. source: "./media/characters/sigvald/paws.svg"
  5722. }
  5723. }
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(8, "feet")
  5729. },
  5730. {
  5731. name: "Large",
  5732. height: math.unit(12, "feet")
  5733. },
  5734. {
  5735. name: "Larger",
  5736. height: math.unit(20, "feet")
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(150, "feet")
  5741. },
  5742. {
  5743. name: "Macro+",
  5744. height: math.unit(200, "feet"),
  5745. default: true
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5751. {
  5752. side: {
  5753. height: math.unit(12, "feet"),
  5754. weight: math.unit(2000, "kg"),
  5755. name: "Side",
  5756. image: {
  5757. source: "./media/characters/scott/side.svg",
  5758. extra: 754 / 724,
  5759. bottom: 0.069
  5760. }
  5761. },
  5762. upright: {
  5763. height: math.unit(12, "feet"),
  5764. weight: math.unit(2000, "kg"),
  5765. name: "Upright",
  5766. image: {
  5767. source: "./media/characters/scott/upright.svg",
  5768. extra: 3881 / 3722,
  5769. bottom: 0.05
  5770. }
  5771. },
  5772. },
  5773. [
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(12, "feet"),
  5777. default: true
  5778. },
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5783. {
  5784. side: {
  5785. height: math.unit(8, "meters"),
  5786. weight: math.unit(84755, "lbs"),
  5787. name: "Side",
  5788. image: {
  5789. source: "./media/characters/tobias/side.svg",
  5790. extra: 1474 / 1096,
  5791. bottom: 38.9 / 1513.1235
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(8, "meters"),
  5799. default: true
  5800. },
  5801. ]
  5802. ))
  5803. characterMakers.push(() => makeCharacter(
  5804. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5805. {
  5806. front: {
  5807. height: math.unit(5.5, "feet"),
  5808. weight: math.unit(400, "lbs"),
  5809. name: "Front",
  5810. image: {
  5811. source: "./media/characters/kieran/front.svg",
  5812. extra: 2694 / 2364,
  5813. bottom: 217 / 2908
  5814. }
  5815. },
  5816. side: {
  5817. height: math.unit(5.5, "feet"),
  5818. weight: math.unit(400, "lbs"),
  5819. name: "Side",
  5820. image: {
  5821. source: "./media/characters/kieran/side.svg",
  5822. extra: 875 / 777,
  5823. bottom: 84.6 / 959
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5.5, "feet"),
  5831. default: true
  5832. },
  5833. ]
  5834. ))
  5835. characterMakers.push(() => makeCharacter(
  5836. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5837. {
  5838. side: {
  5839. height: math.unit(2, "meters"),
  5840. weight: math.unit(70, "kg"),
  5841. name: "Side",
  5842. image: {
  5843. source: "./media/characters/sanya/side.svg",
  5844. bottom: 0.02,
  5845. extra: 1.02
  5846. }
  5847. },
  5848. },
  5849. [
  5850. {
  5851. name: "Small",
  5852. height: math.unit(2, "meters")
  5853. },
  5854. {
  5855. name: "Normal",
  5856. height: math.unit(3, "meters")
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(16, "meters"),
  5861. default: true
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5867. {
  5868. front: {
  5869. height: math.unit(2, "meters"),
  5870. weight: math.unit(120, "kg"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/miranda/front.svg",
  5874. extra: 195 / 185,
  5875. bottom: 10.9 / 206.5
  5876. }
  5877. },
  5878. back: {
  5879. height: math.unit(2, "meters"),
  5880. weight: math.unit(120, "kg"),
  5881. name: "Back",
  5882. image: {
  5883. source: "./media/characters/miranda/back.svg",
  5884. extra: 201 / 193,
  5885. bottom: 2.3 / 203.7
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(10, "feet"),
  5893. default: true
  5894. }
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "James", species: ["deer"], tags: ["anthro"] },
  5899. {
  5900. side: {
  5901. height: math.unit(2, "meters"),
  5902. weight: math.unit(100, "kg"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/james/front.svg",
  5906. extra: 10 / 8.5
  5907. }
  5908. },
  5909. },
  5910. [
  5911. {
  5912. name: "Normal",
  5913. height: math.unit(8.5, "feet"),
  5914. default: true
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5920. {
  5921. side: {
  5922. height: math.unit(9.5, "feet"),
  5923. weight: math.unit(2500, "lbs"),
  5924. name: "Side",
  5925. image: {
  5926. source: "./media/characters/heather/side.svg"
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(9.5, "feet"),
  5934. default: true
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5940. {
  5941. side: {
  5942. height: math.unit(6.5, "feet"),
  5943. weight: math.unit(400, "lbs"),
  5944. name: "Side",
  5945. image: {
  5946. source: "./media/characters/lukas/side.svg",
  5947. extra: 7.25 / 6.5
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(6.5, "feet"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5961. {
  5962. side: {
  5963. height: math.unit(5, "feet"),
  5964. weight: math.unit(3000, "lbs"),
  5965. name: "Side",
  5966. image: {
  5967. source: "./media/characters/louise/side.svg"
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(5, "feet"),
  5975. default: true
  5976. }
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5981. {
  5982. side: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(150, "lbs"),
  5985. name: "Side",
  5986. image: {
  5987. source: "./media/characters/ramona/side.svg",
  5988. extra: 871/854,
  5989. bottom: 41/912
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Normal",
  5996. height: math.unit(6 + 4/12, "feet")
  5997. },
  5998. {
  5999. name: "Minimacro",
  6000. height: math.unit(5.3, "meters"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(20, "stories")
  6006. },
  6007. {
  6008. name: "Macro+",
  6009. height: math.unit(50, "stories")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6015. {
  6016. standing: {
  6017. height: math.unit(5.75, "feet"),
  6018. weight: math.unit(160, "lbs"),
  6019. name: "Standing",
  6020. image: {
  6021. source: "./media/characters/deerpuff/standing.svg",
  6022. extra: 682 / 624
  6023. }
  6024. },
  6025. sitting: {
  6026. height: math.unit(5.75 / 1.79, "feet"),
  6027. weight: math.unit(160, "lbs"),
  6028. name: "Sitting",
  6029. image: {
  6030. source: "./media/characters/deerpuff/sitting.svg",
  6031. bottom: 44 / 400,
  6032. extra: 1
  6033. }
  6034. },
  6035. taurLaying: {
  6036. height: math.unit(6, "feet"),
  6037. weight: math.unit(400, "lbs"),
  6038. name: "Taur (Laying)",
  6039. image: {
  6040. source: "./media/characters/deerpuff/taur-laying.svg"
  6041. }
  6042. },
  6043. },
  6044. [
  6045. {
  6046. name: "Puffball",
  6047. height: math.unit(6, "inches")
  6048. },
  6049. {
  6050. name: "Normalpuff",
  6051. height: math.unit(5.75, "feet")
  6052. },
  6053. {
  6054. name: "Macropuff",
  6055. height: math.unit(1500, "feet"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Megapuff",
  6060. height: math.unit(500, "miles")
  6061. },
  6062. {
  6063. name: "Gigapuff",
  6064. height: math.unit(250000, "miles")
  6065. },
  6066. {
  6067. name: "Omegapuff",
  6068. height: math.unit(1000, "lightyears")
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6074. {
  6075. stomping: {
  6076. height: math.unit(6, "feet"),
  6077. weight: math.unit(170, "lbs"),
  6078. name: "Stomping",
  6079. image: {
  6080. source: "./media/characters/vivian/stomping.svg"
  6081. }
  6082. },
  6083. sitting: {
  6084. height: math.unit(6 / 1.75, "feet"),
  6085. weight: math.unit(170, "lbs"),
  6086. name: "Sitting",
  6087. image: {
  6088. source: "./media/characters/vivian/sitting.svg",
  6089. bottom: 1 / 6.4,
  6090. extra: 1,
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(7, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(10, "stories")
  6103. },
  6104. {
  6105. name: "Macro+",
  6106. height: math.unit(30, "stories")
  6107. },
  6108. {
  6109. name: "Megamacro",
  6110. height: math.unit(10, "miles")
  6111. },
  6112. {
  6113. name: "Megamacro+",
  6114. height: math.unit(2750000, "meters")
  6115. },
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6120. {
  6121. front: {
  6122. height: math.unit(6, "feet"),
  6123. weight: math.unit(160, "lbs"),
  6124. name: "Front",
  6125. image: {
  6126. source: "./media/characters/prince/front.svg",
  6127. extra: 1938/1682,
  6128. bottom: 45/1983
  6129. }
  6130. },
  6131. back: {
  6132. height: math.unit(6, "feet"),
  6133. weight: math.unit(160, "lbs"),
  6134. name: "Back",
  6135. image: {
  6136. source: "./media/characters/prince/back.svg",
  6137. extra: 1955/1726,
  6138. bottom: 6/1961
  6139. }
  6140. },
  6141. },
  6142. [
  6143. {
  6144. name: "Normal",
  6145. height: math.unit(7.75, "feet"),
  6146. default: true
  6147. },
  6148. {
  6149. name: "Not cute",
  6150. height: math.unit(17, "feet")
  6151. },
  6152. {
  6153. name: "I said NOT",
  6154. height: math.unit(91, "feet")
  6155. },
  6156. {
  6157. name: "Please stop",
  6158. height: math.unit(560, "feet")
  6159. },
  6160. {
  6161. name: "What have you done",
  6162. height: math.unit(2200, "feet")
  6163. },
  6164. {
  6165. name: "Deer God",
  6166. height: math.unit(3.6, "miles")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6172. {
  6173. standing: {
  6174. height: math.unit(6, "feet"),
  6175. weight: math.unit(300, "lbs"),
  6176. name: "Standing",
  6177. image: {
  6178. source: "./media/characters/psymon/standing.svg",
  6179. extra: 1888 / 1810,
  6180. bottom: 0.05
  6181. }
  6182. },
  6183. slithering: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(300, "lbs"),
  6186. name: "Slithering",
  6187. image: {
  6188. source: "./media/characters/psymon/slithering.svg",
  6189. extra: 1330 / 1224
  6190. }
  6191. },
  6192. slitheringAlt: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(300, "lbs"),
  6195. name: "Slithering (Alt)",
  6196. image: {
  6197. source: "./media/characters/psymon/slithering-alt.svg",
  6198. extra: 1330 / 1224
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(11.25, "feet"),
  6206. default: true
  6207. },
  6208. {
  6209. name: "Large",
  6210. height: math.unit(27, "feet")
  6211. },
  6212. {
  6213. name: "Giant",
  6214. height: math.unit(87, "feet")
  6215. },
  6216. {
  6217. name: "Macro",
  6218. height: math.unit(365, "feet")
  6219. },
  6220. {
  6221. name: "Megamacro",
  6222. height: math.unit(3, "miles")
  6223. },
  6224. {
  6225. name: "World Serpent",
  6226. height: math.unit(8000, "miles")
  6227. },
  6228. ]
  6229. ))
  6230. characterMakers.push(() => makeCharacter(
  6231. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6232. {
  6233. front: {
  6234. height: math.unit(6, "feet"),
  6235. weight: math.unit(180, "lbs"),
  6236. name: "Front",
  6237. image: {
  6238. source: "./media/characters/daimos/front.svg",
  6239. extra: 4160 / 3897,
  6240. bottom: 0.021
  6241. }
  6242. }
  6243. },
  6244. [
  6245. {
  6246. name: "Normal",
  6247. height: math.unit(8, "feet"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Big Dog",
  6252. height: math.unit(22, "feet")
  6253. },
  6254. {
  6255. name: "Macro",
  6256. height: math.unit(127, "feet")
  6257. },
  6258. {
  6259. name: "Megamacro",
  6260. height: math.unit(3600, "feet")
  6261. },
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6266. {
  6267. side: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(180, "lbs"),
  6270. name: "Side",
  6271. image: {
  6272. source: "./media/characters/blake/side.svg",
  6273. extra: 1212 / 1120,
  6274. bottom: 0.05
  6275. }
  6276. },
  6277. crouched: {
  6278. height: math.unit(6 * 0.57, "feet"),
  6279. weight: math.unit(180, "lbs"),
  6280. name: "Crouched",
  6281. image: {
  6282. source: "./media/characters/blake/crouched.svg",
  6283. extra: 840 / 587,
  6284. bottom: 0.04
  6285. }
  6286. },
  6287. bent: {
  6288. height: math.unit(6 * 0.75, "feet"),
  6289. weight: math.unit(180, "lbs"),
  6290. name: "Bent",
  6291. image: {
  6292. source: "./media/characters/blake/bent.svg",
  6293. extra: 592 / 544,
  6294. bottom: 0.035
  6295. }
  6296. },
  6297. },
  6298. [
  6299. {
  6300. name: "Normal",
  6301. height: math.unit(8 + 1 / 6, "feet"),
  6302. default: true
  6303. },
  6304. {
  6305. name: "Big Backside",
  6306. height: math.unit(37, "feet")
  6307. },
  6308. {
  6309. name: "Subway Shredder",
  6310. height: math.unit(72, "feet")
  6311. },
  6312. {
  6313. name: "City Carver",
  6314. height: math.unit(1675, "feet")
  6315. },
  6316. {
  6317. name: "Tectonic Tweaker",
  6318. height: math.unit(2300, "miles")
  6319. },
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(180, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/guisetto/front.svg",
  6331. extra: 856 / 817,
  6332. bottom: 0.06
  6333. }
  6334. },
  6335. airborne: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(180, "lbs"),
  6338. name: "Airborne",
  6339. image: {
  6340. source: "./media/characters/guisetto/airborne.svg",
  6341. extra: 584 / 525
  6342. }
  6343. },
  6344. },
  6345. [
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(10 + 11 / 12, "feet"),
  6349. default: true
  6350. },
  6351. {
  6352. name: "Large",
  6353. height: math.unit(35, "feet")
  6354. },
  6355. {
  6356. name: "Macro",
  6357. height: math.unit(475, "feet")
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(180, "lbs"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/luxor/front.svg",
  6370. extra: 2940 / 2152
  6371. }
  6372. },
  6373. back: {
  6374. height: math.unit(6, "feet"),
  6375. weight: math.unit(180, "lbs"),
  6376. name: "Back",
  6377. image: {
  6378. source: "./media/characters/luxor/back.svg",
  6379. extra: 1083 / 960
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(5 + 5 / 6, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Lamp",
  6391. height: math.unit(50, "feet")
  6392. },
  6393. {
  6394. name: "Lämp",
  6395. height: math.unit(300, "feet")
  6396. },
  6397. {
  6398. name: "The sun is a lamp",
  6399. height: math.unit(250000, "miles")
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6405. {
  6406. front: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(50, "lbs"),
  6409. name: "Front",
  6410. image: {
  6411. source: "./media/characters/huoyan/front.svg"
  6412. }
  6413. },
  6414. side: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(180, "lbs"),
  6417. name: "Side",
  6418. image: {
  6419. source: "./media/characters/huoyan/side.svg"
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Chef",
  6426. height: math.unit(9, "feet")
  6427. },
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(65, "feet"),
  6431. default: true
  6432. },
  6433. {
  6434. name: "Macro",
  6435. height: math.unit(780, "feet")
  6436. },
  6437. {
  6438. name: "Flaming Mountain",
  6439. height: math.unit(4.8, "miles")
  6440. },
  6441. {
  6442. name: "Celestial",
  6443. height: math.unit(765000, "miles")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(5 + 3 / 4, "feet"),
  6452. weight: math.unit(120, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/tails/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(5 + 3 / 4, "feet"),
  6463. default: true
  6464. }
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(4, "feet"),
  6472. weight: math.unit(50, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/rainy/front.svg"
  6476. }
  6477. }
  6478. },
  6479. [
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(800, "feet"),
  6483. default: true
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(150, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/rainier/front.svg"
  6496. }
  6497. }
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(2, "mm"),
  6503. default: true
  6504. }
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(8 + 4/12, "feet"),
  6512. weight: math.unit(450, "kilograms"),
  6513. volume: math.unit(5, "cups"),
  6514. name: "Front",
  6515. image: {
  6516. source: "./media/characters/andy-renard/front.svg",
  6517. extra: 1839/1726,
  6518. bottom: 134/1973
  6519. }
  6520. },
  6521. back: {
  6522. height: math.unit(8 + 4/12, "feet"),
  6523. weight: math.unit(450, "kilograms"),
  6524. volume: math.unit(5, "cups"),
  6525. name: "Back",
  6526. image: {
  6527. source: "./media/characters/andy-renard/back.svg",
  6528. extra: 1838/1710,
  6529. bottom: 105/1943
  6530. }
  6531. },
  6532. },
  6533. [
  6534. {
  6535. name: "Tall",
  6536. height: math.unit(8 + 4/12, "feet")
  6537. },
  6538. {
  6539. name: "Mini Macro",
  6540. height: math.unit(15, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(100, "feet")
  6546. },
  6547. {
  6548. name: "Mega Macro",
  6549. height: math.unit(1000, "feet")
  6550. },
  6551. {
  6552. name: "Giga Macro",
  6553. height: math.unit(10, "miles")
  6554. },
  6555. {
  6556. name: "God Macro",
  6557. height: math.unit(1, "multiverse")
  6558. },
  6559. ]
  6560. ))
  6561. characterMakers.push(() => makeCharacter(
  6562. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6563. {
  6564. front: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(210, "lbs"),
  6567. name: "Front",
  6568. image: {
  6569. source: "./media/characters/cimmaron/front-sfw.svg",
  6570. extra: 701 / 676,
  6571. bottom: 0.046
  6572. }
  6573. },
  6574. back: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(210, "lbs"),
  6577. name: "Back",
  6578. image: {
  6579. source: "./media/characters/cimmaron/back-sfw.svg",
  6580. extra: 701 / 676,
  6581. bottom: 0.046
  6582. }
  6583. },
  6584. frontNsfw: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(210, "lbs"),
  6587. name: "Front (NSFW)",
  6588. image: {
  6589. source: "./media/characters/cimmaron/front-nsfw.svg",
  6590. extra: 701 / 676,
  6591. bottom: 0.046
  6592. }
  6593. },
  6594. backNsfw: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(210, "lbs"),
  6597. name: "Back (NSFW)",
  6598. image: {
  6599. source: "./media/characters/cimmaron/back-nsfw.svg",
  6600. extra: 701 / 676,
  6601. bottom: 0.046
  6602. }
  6603. },
  6604. dick: {
  6605. height: math.unit(1.714, "feet"),
  6606. name: "Dick",
  6607. image: {
  6608. source: "./media/characters/cimmaron/dick.svg"
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(6, "feet"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro Mayor",
  6620. height: math.unit(350, "meters")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6626. {
  6627. front: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(200, "lbs"),
  6630. name: "Front",
  6631. image: {
  6632. source: "./media/characters/akari/front.svg",
  6633. extra: 962 / 901,
  6634. bottom: 0.04
  6635. }
  6636. }
  6637. },
  6638. [
  6639. {
  6640. name: "Micro",
  6641. height: math.unit(5, "inches"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Normal",
  6646. height: math.unit(7, "feet")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(140, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/cynosura/front.svg",
  6659. extra: 437/410,
  6660. bottom: 9/446
  6661. }
  6662. },
  6663. back: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(140, "lbs"),
  6666. name: "Back",
  6667. image: {
  6668. source: "./media/characters/cynosura/back.svg",
  6669. extra: 1304/1160,
  6670. bottom: 71/1375
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Micro",
  6677. height: math.unit(4, "inches")
  6678. },
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(5.75, "feet"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Tall",
  6686. height: math.unit(10, "feet")
  6687. },
  6688. {
  6689. name: "Big",
  6690. height: math.unit(20, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(50, "feet")
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(13 + 2/12, "feet"),
  6703. weight: math.unit(800, "kg"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/gin/front.svg",
  6707. extra: 1312/1191,
  6708. bottom: 45/1357
  6709. }
  6710. },
  6711. mouth: {
  6712. height: math.unit(2.39 * 1.8, "feet"),
  6713. name: "Mouth",
  6714. image: {
  6715. source: "./media/characters/gin/mouth.svg"
  6716. }
  6717. },
  6718. hand: {
  6719. height: math.unit(1.57 * 2.19, "feet"),
  6720. name: "Hand",
  6721. image: {
  6722. source: "./media/characters/gin/hand.svg"
  6723. }
  6724. },
  6725. foot: {
  6726. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6727. name: "Foot",
  6728. image: {
  6729. source: "./media/characters/gin/foot.svg"
  6730. }
  6731. },
  6732. sole: {
  6733. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6734. name: "Sole",
  6735. image: {
  6736. source: "./media/characters/gin/sole.svg"
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Very Small",
  6743. height: math.unit(13 + 2 / 12, "feet")
  6744. },
  6745. {
  6746. name: "Micro",
  6747. height: math.unit(600, "miles")
  6748. },
  6749. {
  6750. name: "Regular",
  6751. height: math.unit(20, "earths"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(2.2, "solarradii")
  6757. },
  6758. {
  6759. name: "Teramacro",
  6760. height: math.unit(1.2, "galaxies")
  6761. },
  6762. {
  6763. name: "Omegamacro",
  6764. height: math.unit(200, "universes")
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(6 + 1 / 6, "feet"),
  6773. weight: math.unit(178, "lbs"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/guy/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(6 + 1 / 6, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Large",
  6788. height: math.unit(25 + 7 / 12, "feet")
  6789. },
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(60 + 9 / 12, "feet")
  6793. },
  6794. {
  6795. name: "Macro+",
  6796. height: math.unit(246, "feet")
  6797. },
  6798. {
  6799. name: "Macro++",
  6800. height: math.unit(878, "feet")
  6801. }
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(9, "feet"),
  6809. weight: math.unit(800, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/tiberius/front.svg",
  6813. extra: 2295 / 2071
  6814. }
  6815. },
  6816. back: {
  6817. height: math.unit(9, "feet"),
  6818. weight: math.unit(800, "lbs"),
  6819. name: "Back",
  6820. image: {
  6821. source: "./media/characters/tiberius/back.svg",
  6822. extra: 2373 / 2160
  6823. }
  6824. },
  6825. },
  6826. [
  6827. {
  6828. name: "Normal",
  6829. height: math.unit(9, "feet"),
  6830. default: true
  6831. }
  6832. ]
  6833. ))
  6834. characterMakers.push(() => makeCharacter(
  6835. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6836. {
  6837. front: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(600, "lbs"),
  6840. name: "Front",
  6841. image: {
  6842. source: "./media/characters/surgo/front.svg",
  6843. extra: 3591 / 2227
  6844. }
  6845. },
  6846. back: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(600, "lbs"),
  6849. name: "Back",
  6850. image: {
  6851. source: "./media/characters/surgo/back.svg",
  6852. extra: 3557 / 2228
  6853. }
  6854. },
  6855. laying: {
  6856. height: math.unit(6 * 0.85, "feet"),
  6857. weight: math.unit(600, "lbs"),
  6858. name: "Laying",
  6859. image: {
  6860. source: "./media/characters/surgo/laying.svg"
  6861. }
  6862. },
  6863. },
  6864. [
  6865. {
  6866. name: "Normal",
  6867. height: math.unit(6, "feet"),
  6868. default: true
  6869. }
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6874. {
  6875. side: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(150, "lbs"),
  6878. name: "Side",
  6879. image: {
  6880. source: "./media/characters/cibus/side.svg",
  6881. extra: 800 / 400
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(6, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(6, "feet"),
  6898. weight: math.unit(240, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/nibbles/front.svg"
  6902. }
  6903. },
  6904. side: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(240, "lbs"),
  6907. name: "Side",
  6908. image: {
  6909. source: "./media/characters/nibbles/side.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(9, "feet"),
  6917. default: true
  6918. }
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6923. {
  6924. side: {
  6925. height: math.unit(5 + 1 / 6, "feet"),
  6926. weight: math.unit(130, "lbs"),
  6927. name: "Side",
  6928. image: {
  6929. source: "./media/characters/rikky/side.svg",
  6930. extra: 851 / 801
  6931. }
  6932. },
  6933. },
  6934. [
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(5 + 1 / 6, "feet")
  6938. },
  6939. {
  6940. name: "Macro",
  6941. height: math.unit(152, "feet"),
  6942. default: true
  6943. },
  6944. {
  6945. name: "Megamacro",
  6946. height: math.unit(7, "miles")
  6947. }
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6952. {
  6953. side: {
  6954. height: math.unit(370, "cm"),
  6955. weight: math.unit(350, "lbs"),
  6956. name: "Side",
  6957. image: {
  6958. source: "./media/characters/malfressa/side.svg"
  6959. }
  6960. },
  6961. walking: {
  6962. height: math.unit(370, "cm"),
  6963. weight: math.unit(350, "lbs"),
  6964. name: "Walking",
  6965. image: {
  6966. source: "./media/characters/malfressa/walking.svg"
  6967. }
  6968. },
  6969. feral: {
  6970. height: math.unit(2500, "cm"),
  6971. weight: math.unit(100000, "lbs"),
  6972. name: "Feral",
  6973. image: {
  6974. source: "./media/characters/malfressa/feral.svg",
  6975. extra: 2108 / 837,
  6976. bottom: 0.02
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(370, "cm")
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(300, "meters"),
  6988. default: true
  6989. }
  6990. ]
  6991. ))
  6992. characterMakers.push(() => makeCharacter(
  6993. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6994. {
  6995. front: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(60, "kg"),
  6998. name: "Front",
  6999. image: {
  7000. source: "./media/characters/jaro/front.svg",
  7001. extra: 845/817,
  7002. bottom: 45/890
  7003. }
  7004. },
  7005. back: {
  7006. height: math.unit(6, "feet"),
  7007. weight: math.unit(60, "kg"),
  7008. name: "Back",
  7009. image: {
  7010. source: "./media/characters/jaro/back.svg",
  7011. extra: 847/817,
  7012. bottom: 34/881
  7013. }
  7014. },
  7015. },
  7016. [
  7017. {
  7018. name: "Micro",
  7019. height: math.unit(7, "inches")
  7020. },
  7021. {
  7022. name: "Normal",
  7023. height: math.unit(5.5, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Minimacro",
  7028. height: math.unit(20, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(200, "meters")
  7033. }
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(195, "lb"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/rogue/front.svg"
  7045. }
  7046. },
  7047. },
  7048. [
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(90, "feet"),
  7052. default: true
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7058. {
  7059. standing: {
  7060. height: math.unit(5 + 8 / 12, "feet"),
  7061. weight: math.unit(140, "lb"),
  7062. name: "Standing",
  7063. image: {
  7064. source: "./media/characters/piper/standing.svg",
  7065. extra: 1440/1284,
  7066. bottom: 66/1506
  7067. }
  7068. },
  7069. running: {
  7070. height: math.unit(5 + 8 / 12, "feet"),
  7071. weight: math.unit(140, "lb"),
  7072. name: "Running",
  7073. image: {
  7074. source: "./media/characters/piper/running.svg",
  7075. extra: 3948/3655,
  7076. bottom: 0/3948
  7077. }
  7078. },
  7079. sole: {
  7080. height: math.unit(0.81, "feet"),
  7081. weight: math.unit(2, "kg"),
  7082. name: "Sole",
  7083. image: {
  7084. source: "./media/characters/piper/sole.svg"
  7085. }
  7086. },
  7087. nipple: {
  7088. height: math.unit(0.25, "feet"),
  7089. weight: math.unit(1.5, "lb"),
  7090. name: "Nipple",
  7091. image: {
  7092. source: "./media/characters/piper/nipple.svg"
  7093. }
  7094. },
  7095. head: {
  7096. height: math.unit(1.1, "feet"),
  7097. name: "Head",
  7098. image: {
  7099. source: "./media/characters/piper/head.svg"
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Micro",
  7106. height: math.unit(2, "inches")
  7107. },
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(5 + 8 / 12, "feet")
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(250, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Megamacro",
  7119. height: math.unit(7, "miles")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(220, "lb"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/gemini/front.svg"
  7132. }
  7133. },
  7134. back: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(220, "lb"),
  7137. name: "Back",
  7138. image: {
  7139. source: "./media/characters/gemini/back.svg"
  7140. }
  7141. },
  7142. kneeling: {
  7143. height: math.unit(6 / 1.5, "feet"),
  7144. weight: math.unit(220, "lb"),
  7145. name: "Kneeling",
  7146. image: {
  7147. source: "./media/characters/gemini/kneeling.svg",
  7148. bottom: 0.02
  7149. }
  7150. },
  7151. },
  7152. [
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(300, "meters"),
  7156. default: true
  7157. },
  7158. {
  7159. name: "Megamacro",
  7160. height: math.unit(6900, "meters")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7166. {
  7167. anthro: {
  7168. height: math.unit(2.35, "meters"),
  7169. weight: math.unit(73, "kg"),
  7170. name: "Anthro",
  7171. image: {
  7172. source: "./media/characters/alicia/anthro.svg",
  7173. extra: 2571 / 2385,
  7174. bottom: 75 / 2648
  7175. }
  7176. },
  7177. paw: {
  7178. height: math.unit(1.32, "feet"),
  7179. name: "Paw",
  7180. image: {
  7181. source: "./media/characters/alicia/paw.svg"
  7182. }
  7183. },
  7184. feral: {
  7185. height: math.unit(1.69, "meters"),
  7186. weight: math.unit(73, "kg"),
  7187. name: "Feral",
  7188. image: {
  7189. source: "./media/characters/alicia/feral.svg",
  7190. extra: 2123 / 1715,
  7191. bottom: 222 / 2349
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(2.35, "meters")
  7199. },
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(60, "meters"),
  7203. default: true
  7204. },
  7205. {
  7206. name: "Megamacro",
  7207. height: math.unit(10000, "kilometers")
  7208. },
  7209. ]
  7210. ))
  7211. characterMakers.push(() => makeCharacter(
  7212. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7213. {
  7214. front: {
  7215. height: math.unit(7, "feet"),
  7216. weight: math.unit(250, "lbs"),
  7217. name: "Front",
  7218. image: {
  7219. source: "./media/characters/archy/front.svg"
  7220. }
  7221. }
  7222. },
  7223. [
  7224. {
  7225. name: "Micro",
  7226. height: math.unit(1, "inch")
  7227. },
  7228. {
  7229. name: "Shorty",
  7230. height: math.unit(5, "feet")
  7231. },
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(7, "feet")
  7235. },
  7236. {
  7237. name: "Macro",
  7238. height: math.unit(600, "meters"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Megamacro",
  7243. height: math.unit(1, "mile")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(1.65, "meters"),
  7252. weight: math.unit(74, "kg"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/berri/front.svg",
  7256. extra: 857 / 837,
  7257. bottom: 18 / 877
  7258. }
  7259. },
  7260. bum: {
  7261. height: math.unit(1.46, "feet"),
  7262. name: "Bum",
  7263. image: {
  7264. source: "./media/characters/berri/bum.svg"
  7265. }
  7266. },
  7267. mouth: {
  7268. height: math.unit(0.44, "feet"),
  7269. name: "Mouth",
  7270. image: {
  7271. source: "./media/characters/berri/mouth.svg"
  7272. }
  7273. },
  7274. paw: {
  7275. height: math.unit(0.826, "feet"),
  7276. name: "Paw",
  7277. image: {
  7278. source: "./media/characters/berri/paw.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(1.65, "meters")
  7286. },
  7287. {
  7288. name: "Macro",
  7289. height: math.unit(60, "m"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Megamacro",
  7294. height: math.unit(9.213, "km")
  7295. },
  7296. {
  7297. name: "Planet Eater",
  7298. height: math.unit(489, "megameters")
  7299. },
  7300. {
  7301. name: "Teramacro",
  7302. height: math.unit(2471635000000, "meters")
  7303. },
  7304. {
  7305. name: "Examacro",
  7306. height: math.unit(8.0624e+26, "meters")
  7307. }
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(1.72, "meters"),
  7315. weight: math.unit(68, "kg"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/lexi/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Very Smol",
  7325. height: math.unit(10, "mm")
  7326. },
  7327. {
  7328. name: "Micro",
  7329. height: math.unit(6.8, "cm"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Normal",
  7334. height: math.unit(1.72, "m")
  7335. }
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(1.69, "meters"),
  7343. weight: math.unit(68, "kg"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/martin/front.svg",
  7347. extra: 596 / 581
  7348. }
  7349. }
  7350. },
  7351. [
  7352. {
  7353. name: "Micro",
  7354. height: math.unit(6.85, "cm"),
  7355. default: true
  7356. },
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(1.69, "m")
  7360. }
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(1.69, "meters"),
  7368. weight: math.unit(68, "kg"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/juno/front.svg"
  7372. }
  7373. }
  7374. },
  7375. [
  7376. {
  7377. name: "Micro",
  7378. height: math.unit(7, "cm")
  7379. },
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(1.89, "m")
  7383. },
  7384. {
  7385. name: "Macro",
  7386. height: math.unit(353, "meters"),
  7387. default: true
  7388. }
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(1.93, "meters"),
  7396. weight: math.unit(83, "kg"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/samantha/front.svg"
  7400. }
  7401. },
  7402. frontClothed: {
  7403. height: math.unit(1.93, "meters"),
  7404. weight: math.unit(83, "kg"),
  7405. name: "Front (Clothed)",
  7406. image: {
  7407. source: "./media/characters/samantha/front-clothed.svg"
  7408. }
  7409. },
  7410. back: {
  7411. height: math.unit(1.93, "meters"),
  7412. weight: math.unit(83, "kg"),
  7413. name: "Back",
  7414. image: {
  7415. source: "./media/characters/samantha/back.svg"
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(1.93, "m")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(74, "meters"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Macro+",
  7431. height: math.unit(223, "meters"),
  7432. },
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(8381, "meters"),
  7436. },
  7437. {
  7438. name: "Megamacro+",
  7439. height: math.unit(12000, "kilometers")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(1.92, "meters"),
  7448. weight: math.unit(80, "kg"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/dr-clay/front.svg"
  7452. }
  7453. },
  7454. frontClothed: {
  7455. height: math.unit(1.92, "meters"),
  7456. weight: math.unit(80, "kg"),
  7457. name: "Front (Clothed)",
  7458. image: {
  7459. source: "./media/characters/dr-clay/front-clothed.svg"
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(1.92, "m")
  7467. },
  7468. {
  7469. name: "Macro",
  7470. height: math.unit(214, "meters"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Macro+",
  7475. height: math.unit(12.237, "meters"),
  7476. },
  7477. {
  7478. name: "Megamacro",
  7479. height: math.unit(557, "megameters"),
  7480. },
  7481. {
  7482. name: "Unimaginable",
  7483. height: math.unit(120e9, "lightyears")
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(2, "meters"),
  7492. weight: math.unit(80, "kg"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7496. }
  7497. }
  7498. },
  7499. [
  7500. {
  7501. name: "Teramacro",
  7502. height: math.unit(500000, "lightyears"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7509. {
  7510. crux: {
  7511. height: math.unit(2, "meters"),
  7512. weight: math.unit(150, "kg"),
  7513. name: "Crux",
  7514. image: {
  7515. source: "./media/characters/vemus/crux.svg",
  7516. extra: 1074/936,
  7517. bottom: 23/1097
  7518. }
  7519. },
  7520. skunkTanuki: {
  7521. height: math.unit(2, "meters"),
  7522. weight: math.unit(150, "kg"),
  7523. name: "Skunk-Tanuki",
  7524. image: {
  7525. source: "./media/characters/vemus/skunk-tanuki.svg",
  7526. extra: 926/893,
  7527. bottom: 20/946
  7528. }
  7529. },
  7530. },
  7531. [
  7532. {
  7533. name: "Normal",
  7534. height: math.unit(4, "meters"),
  7535. default: true
  7536. },
  7537. {
  7538. name: "Big",
  7539. height: math.unit(8, "meters")
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(100, "meters")
  7544. },
  7545. {
  7546. name: "Macro+",
  7547. height: math.unit(1500, "meters")
  7548. },
  7549. {
  7550. name: "Stellar",
  7551. height: math.unit(14e8, "meters")
  7552. },
  7553. ]
  7554. ))
  7555. characterMakers.push(() => makeCharacter(
  7556. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7557. {
  7558. front: {
  7559. height: math.unit(2, "meters"),
  7560. weight: math.unit(70, "kg"),
  7561. name: "Front",
  7562. image: {
  7563. source: "./media/characters/beherit/front.svg",
  7564. extra: 1234/1109,
  7565. bottom: 55/1289
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(6, "feet")
  7573. },
  7574. {
  7575. name: "Lorg",
  7576. height: math.unit(25, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Lorger",
  7581. height: math.unit(75, "feet")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(200, "meters")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(2, "meters"),
  7594. weight: math.unit(150, "kg"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/everett/front.svg",
  7598. extra: 1017/866,
  7599. bottom: 86/1103
  7600. }
  7601. },
  7602. paw: {
  7603. height: math.unit(2 / 3.6, "meters"),
  7604. name: "Paw",
  7605. image: {
  7606. source: "./media/characters/everett/paw.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(15, "feet"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Lorg",
  7618. height: math.unit(70, "feet"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "Lorger",
  7623. height: math.unit(250, "feet")
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(500, "meters")
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(2, "meters"),
  7636. weight: math.unit(86, "kg"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/rose/front.svg",
  7640. extra: 1785/1636,
  7641. bottom: 30/1815
  7642. },
  7643. form: "liom",
  7644. default: true
  7645. },
  7646. frontSporty: {
  7647. height: math.unit(2, "meters"),
  7648. weight: math.unit(86, "kg"),
  7649. name: "Front (Sporty)",
  7650. image: {
  7651. source: "./media/characters/rose/front-sporty.svg",
  7652. extra: 350/335,
  7653. bottom: 10/360
  7654. },
  7655. form: "liom"
  7656. },
  7657. frontAlt: {
  7658. height: math.unit(1.6, "meters"),
  7659. weight: math.unit(86, "kg"),
  7660. name: "Front (Alt)",
  7661. image: {
  7662. source: "./media/characters/rose/front-alt.svg",
  7663. extra: 299/283,
  7664. bottom: 3/302
  7665. },
  7666. form: "liom"
  7667. },
  7668. plush: {
  7669. height: math.unit(2, "meters"),
  7670. weight: math.unit(86/3, "kg"),
  7671. name: "Plush",
  7672. image: {
  7673. source: "./media/characters/rose/plush.svg",
  7674. extra: 361/337,
  7675. bottom: 11/372
  7676. },
  7677. form: "plush",
  7678. default: true
  7679. },
  7680. faeStanding: {
  7681. height: math.unit(10, "cm"),
  7682. weight: math.unit(10, "grams"),
  7683. name: "Standing",
  7684. image: {
  7685. source: "./media/characters/rose/fae-standing.svg",
  7686. extra: 1189/1060,
  7687. bottom: 27/1216
  7688. },
  7689. form: "fae",
  7690. default: true
  7691. },
  7692. faeSitting: {
  7693. height: math.unit(5, "cm"),
  7694. weight: math.unit(10, "grams"),
  7695. name: "Sitting",
  7696. image: {
  7697. source: "./media/characters/rose/fae-sitting.svg",
  7698. extra: 737/577,
  7699. bottom: 356/1093
  7700. },
  7701. form: "fae"
  7702. },
  7703. faePaw: {
  7704. height: math.unit(1.35, "cm"),
  7705. name: "Paw",
  7706. image: {
  7707. source: "./media/characters/rose/fae-paw.svg"
  7708. },
  7709. form: "fae"
  7710. },
  7711. },
  7712. [
  7713. {
  7714. name: "True Micro",
  7715. height: math.unit(9, "cm"),
  7716. form: "liom"
  7717. },
  7718. {
  7719. name: "Micro",
  7720. height: math.unit(16, "cm"),
  7721. form: "liom"
  7722. },
  7723. {
  7724. name: "Normal",
  7725. height: math.unit(1.85, "meters"),
  7726. default: true,
  7727. form: "liom"
  7728. },
  7729. {
  7730. name: "Mini-Macro",
  7731. height: math.unit(5, "meters"),
  7732. form: "liom"
  7733. },
  7734. {
  7735. name: "Macro",
  7736. height: math.unit(15, "meters"),
  7737. form: "liom"
  7738. },
  7739. {
  7740. name: "True Macro",
  7741. height: math.unit(40, "meters"),
  7742. form: "liom"
  7743. },
  7744. {
  7745. name: "City Scale",
  7746. height: math.unit(1, "km"),
  7747. form: "liom"
  7748. },
  7749. {
  7750. name: "Plushie",
  7751. height: math.unit(9, "cm"),
  7752. form: "plush",
  7753. default: true
  7754. },
  7755. {
  7756. name: "Fae",
  7757. height: math.unit(10, "cm"),
  7758. form: "fae",
  7759. default: true
  7760. },
  7761. ],
  7762. {
  7763. "liom": {
  7764. name: "Liom"
  7765. },
  7766. "plush": {
  7767. name: "Plush"
  7768. },
  7769. "fae": {
  7770. name: "Fae Fox",
  7771. default: true
  7772. }
  7773. }
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(2, "meters"),
  7780. weight: math.unit(350, "lbs"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/regal/front.svg"
  7784. }
  7785. },
  7786. back: {
  7787. height: math.unit(2, "meters"),
  7788. weight: math.unit(350, "lbs"),
  7789. name: "Back",
  7790. image: {
  7791. source: "./media/characters/regal/back.svg"
  7792. }
  7793. },
  7794. },
  7795. [
  7796. {
  7797. name: "Macro",
  7798. height: math.unit(350, "feet"),
  7799. default: true
  7800. }
  7801. ]
  7802. ))
  7803. characterMakers.push(() => makeCharacter(
  7804. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7805. {
  7806. front: {
  7807. height: math.unit(4 + 11 / 12, "feet"),
  7808. weight: math.unit(100, "lbs"),
  7809. name: "Front",
  7810. image: {
  7811. source: "./media/characters/opal/front.svg"
  7812. }
  7813. },
  7814. frontAlt: {
  7815. height: math.unit(4 + 11 / 12, "feet"),
  7816. weight: math.unit(100, "lbs"),
  7817. name: "Front (Alt)",
  7818. image: {
  7819. source: "./media/characters/opal/front-alt.svg"
  7820. }
  7821. },
  7822. },
  7823. [
  7824. {
  7825. name: "Small",
  7826. height: math.unit(4 + 11 / 12, "feet")
  7827. },
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(20, "feet"),
  7831. default: true
  7832. },
  7833. {
  7834. name: "Macro",
  7835. height: math.unit(120, "feet")
  7836. },
  7837. {
  7838. name: "Megamacro",
  7839. height: math.unit(80, "miles")
  7840. },
  7841. {
  7842. name: "True Size",
  7843. height: math.unit(100000, "lightyears")
  7844. },
  7845. ]
  7846. ))
  7847. characterMakers.push(() => makeCharacter(
  7848. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7849. {
  7850. front: {
  7851. height: math.unit(6, "feet"),
  7852. weight: math.unit(200, "lbs"),
  7853. name: "Front",
  7854. image: {
  7855. source: "./media/characters/vector-wuff/front.svg"
  7856. }
  7857. }
  7858. },
  7859. [
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(2.8, "meters")
  7863. },
  7864. {
  7865. name: "Macro",
  7866. height: math.unit(450, "meters"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(15, "kilometers")
  7872. }
  7873. ]
  7874. ))
  7875. characterMakers.push(() => makeCharacter(
  7876. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7877. {
  7878. front: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(256, "lbs"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/dannik/front.svg"
  7884. }
  7885. }
  7886. },
  7887. [
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(69.57, "meters"),
  7891. default: true
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(6, "feet"),
  7900. weight: math.unit(120, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/azura-saharah/front.svg"
  7904. }
  7905. },
  7906. back: {
  7907. height: math.unit(6, "feet"),
  7908. weight: math.unit(120, "lbs"),
  7909. name: "Back",
  7910. image: {
  7911. source: "./media/characters/azura-saharah/back.svg"
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(100, "feet"),
  7919. default: true
  7920. },
  7921. ]
  7922. ))
  7923. characterMakers.push(() => makeCharacter(
  7924. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7925. {
  7926. side: {
  7927. height: math.unit(5 + 4 / 12, "feet"),
  7928. weight: math.unit(163, "lbs"),
  7929. name: "Side",
  7930. image: {
  7931. source: "./media/characters/kennedy/side.svg"
  7932. }
  7933. }
  7934. },
  7935. [
  7936. {
  7937. name: "Standard Doggo",
  7938. height: math.unit(5 + 4 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Big Doggo",
  7942. height: math.unit(25 + 3 / 12, "feet"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(5 + 5/12, "feet"),
  7952. weight: math.unit(100, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/odios-de-lunar/front.svg",
  7956. extra: 1468/1323,
  7957. bottom: 22/1490
  7958. }
  7959. }
  7960. },
  7961. [
  7962. {
  7963. name: "Micro",
  7964. height: math.unit(3, "inches")
  7965. },
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(5.5, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(100, "feet")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7979. {
  7980. back: {
  7981. height: math.unit(6, "feet"),
  7982. weight: math.unit(220, "lbs"),
  7983. name: "Back",
  7984. image: {
  7985. source: "./media/characters/mandake/back.svg"
  7986. }
  7987. }
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(7, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(78, "feet")
  7998. },
  7999. {
  8000. name: "Macro+",
  8001. height: math.unit(300, "meters")
  8002. },
  8003. {
  8004. name: "Macro++",
  8005. height: math.unit(2400, "feet")
  8006. },
  8007. {
  8008. name: "Megamacro",
  8009. height: math.unit(5167, "meters")
  8010. },
  8011. {
  8012. name: "Gigamacro",
  8013. height: math.unit(41769, "miles")
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(6, "feet"),
  8022. weight: math.unit(120, "lbs"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/yozey/front.svg"
  8026. }
  8027. },
  8028. frontAlt: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(120, "lbs"),
  8031. name: "Front (Alt)",
  8032. image: {
  8033. source: "./media/characters/yozey/front-alt.svg"
  8034. }
  8035. },
  8036. side: {
  8037. height: math.unit(6, "feet"),
  8038. weight: math.unit(120, "lbs"),
  8039. name: "Side",
  8040. image: {
  8041. source: "./media/characters/yozey/side.svg"
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Micro",
  8048. height: math.unit(3, "inches"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(6, "feet")
  8054. }
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(6, "feet"),
  8062. weight: math.unit(103, "lbs"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/valeska-voss/front.svg"
  8066. }
  8067. }
  8068. },
  8069. [
  8070. {
  8071. name: "Mini-Sized Sub",
  8072. height: math.unit(3.1, "inches")
  8073. },
  8074. {
  8075. name: "Mid-Sized Sub",
  8076. height: math.unit(6.2, "inches")
  8077. },
  8078. {
  8079. name: "Full-Sized Sub",
  8080. height: math.unit(9.3, "inches")
  8081. },
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(5 + 2 / 12, "foot"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(6, "feet"),
  8094. weight: math.unit(160, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/gene-zeta/front.svg",
  8098. extra: 3006 / 2826,
  8099. bottom: 182 / 3188
  8100. }
  8101. }
  8102. },
  8103. [
  8104. {
  8105. name: "Micro",
  8106. height: math.unit(6, "inches")
  8107. },
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(5 + 11 / 12, "foot"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(140, "feet")
  8116. },
  8117. {
  8118. name: "Supercharged",
  8119. height: math.unit(2500, "feet")
  8120. },
  8121. ]
  8122. ))
  8123. characterMakers.push(() => makeCharacter(
  8124. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8125. {
  8126. front: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(350, "lbs"),
  8129. name: "Front",
  8130. image: {
  8131. source: "./media/characters/razinox/front.svg",
  8132. extra: 1686 / 1548,
  8133. bottom: 28.2 / 1868
  8134. }
  8135. },
  8136. back: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(350, "lbs"),
  8139. name: "Back",
  8140. image: {
  8141. source: "./media/characters/razinox/back.svg",
  8142. extra: 1660 / 1590,
  8143. bottom: 15 / 1665
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Normal",
  8150. height: math.unit(10 + 8 / 12, "foot")
  8151. },
  8152. {
  8153. name: "Minimacro",
  8154. height: math.unit(15, "foot")
  8155. },
  8156. {
  8157. name: "Macro",
  8158. height: math.unit(60, "foot"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Megamacro",
  8163. height: math.unit(5, "miles")
  8164. },
  8165. {
  8166. name: "Gigamacro",
  8167. height: math.unit(6000, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(150, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/cobalt/front.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(8 + 1 / 12, "foot")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(111, "foot"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Supracosmic",
  8195. height: math.unit(1e42, "feet")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(5, "inches"),
  8204. name: "Front",
  8205. image: {
  8206. source: "./media/characters/amanda/front.svg",
  8207. extra: 926/791,
  8208. bottom: 38/964
  8209. }
  8210. },
  8211. back: {
  8212. height: math.unit(5, "inches"),
  8213. name: "Back",
  8214. image: {
  8215. source: "./media/characters/amanda/back.svg",
  8216. extra: 909/805,
  8217. bottom: 43/952
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Micro",
  8224. height: math.unit(5, "inches"),
  8225. default: true
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(2.75, "meters"),
  8234. weight: math.unit(1200, "lb"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/teal/front.svg",
  8238. extra: 2463 / 2320,
  8239. bottom: 166 / 2629
  8240. }
  8241. },
  8242. back: {
  8243. height: math.unit(2.75, "meters"),
  8244. weight: math.unit(1200, "lb"),
  8245. name: "Back",
  8246. image: {
  8247. source: "./media/characters/teal/back.svg",
  8248. extra: 2580 / 2489,
  8249. bottom: 151 / 2731
  8250. }
  8251. },
  8252. sitting: {
  8253. height: math.unit(1.9, "meters"),
  8254. weight: math.unit(1200, "lb"),
  8255. name: "Sitting",
  8256. image: {
  8257. source: "./media/characters/teal/sitting.svg",
  8258. extra: 623 / 590,
  8259. bottom: 121 / 744
  8260. }
  8261. },
  8262. standing: {
  8263. height: math.unit(2.75, "meters"),
  8264. weight: math.unit(1200, "lb"),
  8265. name: "Standing",
  8266. image: {
  8267. source: "./media/characters/teal/standing.svg",
  8268. extra: 923 / 893,
  8269. bottom: 60 / 983
  8270. }
  8271. },
  8272. stretching: {
  8273. height: math.unit(3.65, "meters"),
  8274. weight: math.unit(1200, "lb"),
  8275. name: "Stretching",
  8276. image: {
  8277. source: "./media/characters/teal/stretching.svg",
  8278. extra: 1276 / 1244,
  8279. bottom: 0 / 1276
  8280. }
  8281. },
  8282. legged: {
  8283. height: math.unit(1.3, "meters"),
  8284. weight: math.unit(100, "lb"),
  8285. name: "Legged",
  8286. image: {
  8287. source: "./media/characters/teal/legged.svg",
  8288. extra: 462 / 437,
  8289. bottom: 24 / 486
  8290. }
  8291. },
  8292. naga: {
  8293. height: math.unit(5.4, "meters"),
  8294. weight: math.unit(4000, "lb"),
  8295. name: "Naga",
  8296. image: {
  8297. source: "./media/characters/teal/naga.svg",
  8298. extra: 1902 / 1858,
  8299. bottom: 0 / 1902
  8300. }
  8301. },
  8302. hand: {
  8303. height: math.unit(0.52, "meters"),
  8304. name: "Hand",
  8305. image: {
  8306. source: "./media/characters/teal/hand.svg"
  8307. }
  8308. },
  8309. maw: {
  8310. height: math.unit(0.43, "meters"),
  8311. name: "Maw",
  8312. image: {
  8313. source: "./media/characters/teal/maw.svg"
  8314. }
  8315. },
  8316. slit: {
  8317. height: math.unit(0.25, "meters"),
  8318. name: "Slit",
  8319. image: {
  8320. source: "./media/characters/teal/slit.svg"
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(2.75, "meters"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(300, "feet")
  8333. },
  8334. {
  8335. name: "Macro+",
  8336. height: math.unit(2000, "feet")
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8342. {
  8343. frontCat: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(180, "lbs"),
  8346. name: "Front (Cat)",
  8347. image: {
  8348. source: "./media/characters/ravin-amulet/front-cat.svg"
  8349. }
  8350. },
  8351. frontCatAlt: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(180, "lbs"),
  8354. name: "Front (Alt, Cat)",
  8355. image: {
  8356. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8357. }
  8358. },
  8359. frontWerewolf: {
  8360. height: math.unit(6 * 1.2, "feet"),
  8361. weight: math.unit(225, "lbs"),
  8362. name: "Front (Werewolf)",
  8363. image: {
  8364. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8365. }
  8366. },
  8367. backWerewolf: {
  8368. height: math.unit(6 * 1.2, "feet"),
  8369. weight: math.unit(225, "lbs"),
  8370. name: "Back (Werewolf)",
  8371. image: {
  8372. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8373. }
  8374. },
  8375. },
  8376. [
  8377. {
  8378. name: "Nano",
  8379. height: math.unit(1, "micrometer")
  8380. },
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(1, "inch")
  8384. },
  8385. {
  8386. name: "Normal",
  8387. height: math.unit(6, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(60, "feet")
  8393. }
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(165, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/fluoresce/front.svg"
  8405. }
  8406. }
  8407. },
  8408. [
  8409. {
  8410. name: "Micro",
  8411. height: math.unit(6, "cm")
  8412. },
  8413. {
  8414. name: "Normal",
  8415. height: math.unit(5 + 7 / 12, "feet"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "Macro",
  8420. height: math.unit(56, "feet")
  8421. },
  8422. {
  8423. name: "Megamacro",
  8424. height: math.unit(1.9, "miles")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(9 + 6 / 12, "feet"),
  8433. weight: math.unit(523, "lbs"),
  8434. name: "Side",
  8435. image: {
  8436. source: "./media/characters/aurora/side.svg",
  8437. extra: 474/393,
  8438. bottom: 5/479
  8439. }
  8440. }
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(9 + 6 / 12, "feet")
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(96, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Macro+",
  8454. height: math.unit(243, "feet")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8460. {
  8461. front: {
  8462. height: math.unit(194, "cm"),
  8463. weight: math.unit(90, "kg"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/ranek/front.svg",
  8467. extra: 1862/1791,
  8468. bottom: 80/1942
  8469. }
  8470. },
  8471. back: {
  8472. height: math.unit(194, "cm"),
  8473. weight: math.unit(90, "kg"),
  8474. name: "Back",
  8475. image: {
  8476. source: "./media/characters/ranek/back.svg",
  8477. extra: 1853/1787,
  8478. bottom: 74/1927
  8479. }
  8480. },
  8481. feral: {
  8482. height: math.unit(30, "cm"),
  8483. weight: math.unit(1.6, "lbs"),
  8484. name: "Feral",
  8485. image: {
  8486. source: "./media/characters/ranek/feral.svg",
  8487. extra: 990/631,
  8488. bottom: 29/1019
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(194, "cm"),
  8496. default: true
  8497. },
  8498. {
  8499. name: "Macro",
  8500. height: math.unit(100, "meters")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(5 + 6 / 12, "feet"),
  8509. weight: math.unit(153, "lbs"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/andrew-cooper/front.svg"
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Nano",
  8519. height: math.unit(1, "mm")
  8520. },
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(2, "inches")
  8524. },
  8525. {
  8526. name: "Normal",
  8527. height: math.unit(5 + 6 / 12, "feet"),
  8528. default: true
  8529. }
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(180, "lbs"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/akane-sato/front.svg",
  8541. extra: 1219 / 1140
  8542. }
  8543. },
  8544. back: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(180, "lbs"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/akane-sato/back.svg",
  8550. extra: 1219 / 1170
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(2.5, "meters")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(250, "meters"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Megamacro",
  8566. height: math.unit(25, "km")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(65, "kg"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/rook/front.svg",
  8579. extra: 960 / 950
  8580. }
  8581. }
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(8.8, "feet")
  8587. },
  8588. {
  8589. name: "Macro",
  8590. height: math.unit(88, "feet"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Megamacro",
  8595. height: math.unit(8, "miles")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8601. {
  8602. front: {
  8603. height: math.unit(12 + 2 / 12, "feet"),
  8604. weight: math.unit(808, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/prodigy/front.svg"
  8608. }
  8609. }
  8610. },
  8611. [
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(12 + 2 / 12, "feet"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(143, "feet")
  8620. },
  8621. {
  8622. name: "Macro+",
  8623. height: math.unit(400, "feet")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(225, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/daniel/front.svg"
  8636. }
  8637. },
  8638. leaning: {
  8639. height: math.unit(6, "feet"),
  8640. weight: math.unit(225, "lbs"),
  8641. name: "Leaning",
  8642. image: {
  8643. source: "./media/characters/daniel/leaning.svg"
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(1000, "feet"),
  8651. default: true
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(88, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/chiros/front.svg",
  8664. extra: 306 / 226
  8665. }
  8666. },
  8667. side: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(88, "lbs"),
  8670. name: "Side",
  8671. image: {
  8672. source: "./media/characters/chiros/side.svg",
  8673. extra: 306 / 226
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(6, "cm"),
  8681. default: true
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8687. {
  8688. front: {
  8689. height: math.unit(6, "feet"),
  8690. weight: math.unit(100, "lbs"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/selka/front.svg",
  8694. extra: 947 / 887
  8695. }
  8696. }
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(5, "cm"),
  8702. default: true
  8703. },
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(8 + 3 / 12, "feet"),
  8711. weight: math.unit(424, "lbs"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/verin/front.svg",
  8715. extra: 1845 / 1550
  8716. }
  8717. },
  8718. frontArmored: {
  8719. height: math.unit(8 + 3 / 12, "feet"),
  8720. weight: math.unit(424, "lbs"),
  8721. name: "Front (Armored)",
  8722. image: {
  8723. source: "./media/characters/verin/front-armor.svg",
  8724. extra: 1845 / 1550,
  8725. bottom: 0.01
  8726. }
  8727. },
  8728. back: {
  8729. height: math.unit(8 + 3 / 12, "feet"),
  8730. weight: math.unit(424, "lbs"),
  8731. name: "Back",
  8732. image: {
  8733. source: "./media/characters/verin/back.svg",
  8734. bottom: 0.1,
  8735. extra: 1
  8736. }
  8737. },
  8738. foot: {
  8739. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8740. name: "Foot",
  8741. image: {
  8742. source: "./media/characters/verin/foot.svg"
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(8 + 3 / 12, "feet")
  8750. },
  8751. {
  8752. name: "Minimacro",
  8753. height: math.unit(21, "feet"),
  8754. default: true
  8755. },
  8756. {
  8757. name: "Macro",
  8758. height: math.unit(626, "feet")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(2.718, "meters"),
  8767. weight: math.unit(150, "lbs"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/sovrim-terraquian/front.svg",
  8771. extra: 1752/1689,
  8772. bottom: 36/1788
  8773. }
  8774. },
  8775. back: {
  8776. height: math.unit(2.718, "meters"),
  8777. weight: math.unit(150, "lbs"),
  8778. name: "Back",
  8779. image: {
  8780. source: "./media/characters/sovrim-terraquian/back.svg",
  8781. extra: 1698/1657,
  8782. bottom: 58/1756
  8783. }
  8784. },
  8785. tongue: {
  8786. height: math.unit(2.865, "feet"),
  8787. name: "Tongue",
  8788. image: {
  8789. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8790. }
  8791. },
  8792. hand: {
  8793. height: math.unit(1.61, "feet"),
  8794. name: "Hand",
  8795. image: {
  8796. source: "./media/characters/sovrim-terraquian/hand.svg"
  8797. }
  8798. },
  8799. foot: {
  8800. height: math.unit(1.05, "feet"),
  8801. name: "Foot",
  8802. image: {
  8803. source: "./media/characters/sovrim-terraquian/foot.svg"
  8804. }
  8805. },
  8806. footAlt: {
  8807. height: math.unit(0.88, "feet"),
  8808. name: "Foot (Alt)",
  8809. image: {
  8810. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(2, "inches")
  8818. },
  8819. {
  8820. name: "Small",
  8821. height: math.unit(1, "meter")
  8822. },
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(Math.E, "meters"),
  8826. default: true
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(20, "meters")
  8831. },
  8832. {
  8833. name: "Macro+",
  8834. height: math.unit(400, "meters")
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(7, "feet"),
  8843. weight: math.unit(489, "lbs"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/reece-silvermane/front.svg",
  8847. bottom: 0.02,
  8848. extra: 1
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(1.5, "miles"),
  8856. default: true
  8857. },
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(6, "feet"),
  8865. weight: math.unit(78, "kg"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/kane/front.svg",
  8869. extra: 978 / 899
  8870. }
  8871. },
  8872. },
  8873. [
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(2.1, "m"),
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(1, "km"),
  8881. default: true
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(200, "kg"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/tegon/front.svg",
  8894. bottom: 0.01,
  8895. extra: 1
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Micro",
  8902. height: math.unit(1, "inch")
  8903. },
  8904. {
  8905. name: "Normal",
  8906. height: math.unit(6 + 3 / 12, "feet"),
  8907. default: true
  8908. },
  8909. {
  8910. name: "Macro",
  8911. height: math.unit(300, "feet")
  8912. },
  8913. {
  8914. name: "Megamacro",
  8915. height: math.unit(69, "miles")
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8921. {
  8922. side: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(2304, "lbs"),
  8925. name: "Side",
  8926. image: {
  8927. source: "./media/characters/arcturax/side.svg",
  8928. extra: 790 / 376,
  8929. bottom: 0.01
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Micro",
  8936. height: math.unit(2, "inch")
  8937. },
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(6, "feet")
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(39, "feet"),
  8945. default: true
  8946. },
  8947. {
  8948. name: "Megamacro",
  8949. height: math.unit(7, "miles")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(6, "feet"),
  8958. weight: math.unit(50, "lbs"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/sentri/front.svg",
  8962. extra: 1750 / 1570,
  8963. bottom: 0.025
  8964. }
  8965. },
  8966. frontAlt: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(50, "lbs"),
  8969. name: "Front (Alt)",
  8970. image: {
  8971. source: "./media/characters/sentri/front-alt.svg",
  8972. extra: 1750 / 1570,
  8973. bottom: 0.025
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(15, "feet"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "Macro",
  8985. height: math.unit(2500, "feet")
  8986. }
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(5 + 8 / 12, "feet"),
  8994. weight: math.unit(130, "lbs"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/corvin/front.svg",
  8998. extra: 1803 / 1629
  8999. }
  9000. },
  9001. frontShirt: {
  9002. height: math.unit(5 + 8 / 12, "feet"),
  9003. weight: math.unit(130, "lbs"),
  9004. name: "Front (Shirt)",
  9005. image: {
  9006. source: "./media/characters/corvin/front-shirt.svg",
  9007. extra: 1803 / 1629
  9008. }
  9009. },
  9010. frontPoncho: {
  9011. height: math.unit(5 + 8 / 12, "feet"),
  9012. weight: math.unit(130, "lbs"),
  9013. name: "Front (Poncho)",
  9014. image: {
  9015. source: "./media/characters/corvin/front-poncho.svg",
  9016. extra: 1803 / 1629
  9017. }
  9018. },
  9019. side: {
  9020. height: math.unit(5 + 8 / 12, "feet"),
  9021. weight: math.unit(130, "lbs"),
  9022. name: "Side",
  9023. image: {
  9024. source: "./media/characters/corvin/side.svg",
  9025. extra: 1012 / 945
  9026. }
  9027. },
  9028. back: {
  9029. height: math.unit(5 + 8 / 12, "feet"),
  9030. weight: math.unit(130, "lbs"),
  9031. name: "Back",
  9032. image: {
  9033. source: "./media/characters/corvin/back.svg",
  9034. extra: 1803 / 1629
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Micro",
  9041. height: math.unit(3, "inches")
  9042. },
  9043. {
  9044. name: "Normal",
  9045. height: math.unit(5 + 8 / 12, "feet")
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(300, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Megamacro",
  9054. height: math.unit(500, "miles")
  9055. }
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(135, "lbs"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/q/front.svg",
  9067. extra: 854 / 752,
  9068. bottom: 0.005
  9069. }
  9070. },
  9071. back: {
  9072. height: math.unit(6, "feet"),
  9073. weight: math.unit(130, "lbs"),
  9074. name: "Back",
  9075. image: {
  9076. source: "./media/characters/q/back.svg",
  9077. extra: 854 / 752
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(90, "feet"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Extra Macro",
  9089. height: math.unit(300, "feet"),
  9090. },
  9091. {
  9092. name: "BIG WALF",
  9093. height: math.unit(750, "feet"),
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(3, "feet"),
  9102. weight: math.unit(28, "lbs"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/citrine/front.svg"
  9106. }
  9107. }
  9108. },
  9109. [
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(3, "feet"),
  9113. default: true
  9114. }
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9119. {
  9120. front: {
  9121. height: math.unit(14, "feet"),
  9122. weight: math.unit(1450, "kg"),
  9123. preyCapacity: math.unit(15, "people"),
  9124. name: "Front",
  9125. image: {
  9126. source: "./media/characters/aura-starwind/front.svg",
  9127. extra: 1440/1327,
  9128. bottom: 11/1451
  9129. }
  9130. },
  9131. side: {
  9132. height: math.unit(14, "feet"),
  9133. weight: math.unit(1450, "kg"),
  9134. preyCapacity: math.unit(15, "people"),
  9135. name: "Side",
  9136. image: {
  9137. source: "./media/characters/aura-starwind/side.svg",
  9138. extra: 1654 / 1497
  9139. }
  9140. },
  9141. taur: {
  9142. height: math.unit(18, "feet"),
  9143. weight: math.unit(5500, "kg"),
  9144. preyCapacity: math.unit(50, "people"),
  9145. name: "Taur",
  9146. image: {
  9147. source: "./media/characters/aura-starwind/taur.svg",
  9148. extra: 1760 / 1650
  9149. }
  9150. },
  9151. feral: {
  9152. height: math.unit(46, "feet"),
  9153. weight: math.unit(25000, "kg"),
  9154. preyCapacity: math.unit(120, "people"),
  9155. name: "Feral",
  9156. image: {
  9157. source: "./media/characters/aura-starwind/feral.svg"
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(14, "feet"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Macro",
  9169. height: math.unit(50, "meters")
  9170. },
  9171. {
  9172. name: "Megamacro",
  9173. height: math.unit(5000, "meters")
  9174. },
  9175. {
  9176. name: "Gigamacro",
  9177. height: math.unit(100000, "kilometers")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(2 + 7 / 12, "feet"),
  9186. weight: math.unit(32, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/rivet/front.svg",
  9190. extra: 1716 / 1658,
  9191. bottom: 0.03
  9192. }
  9193. },
  9194. foot: {
  9195. height: math.unit(0.551, "feet"),
  9196. name: "Rivet's Foot",
  9197. image: {
  9198. source: "./media/characters/rivet/foot.svg"
  9199. },
  9200. rename: true
  9201. }
  9202. },
  9203. [
  9204. {
  9205. name: "Micro",
  9206. height: math.unit(1.5, "inches"),
  9207. },
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(2 + 7 / 12, "feet"),
  9211. default: true
  9212. },
  9213. {
  9214. name: "Macro",
  9215. height: math.unit(85, "feet")
  9216. },
  9217. {
  9218. name: "Megamacro",
  9219. height: math.unit(2.2, "km")
  9220. }
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5 + 9 / 12, "feet"),
  9228. weight: math.unit(150, "lbs"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/coffee/front.svg",
  9232. extra: 946/880,
  9233. bottom: 66/1012
  9234. }
  9235. },
  9236. foot: {
  9237. height: math.unit(1.29, "feet"),
  9238. name: "Foot",
  9239. image: {
  9240. source: "./media/characters/coffee/foot.svg"
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Micro",
  9247. height: math.unit(2, "inches"),
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(5 + 9 / 12, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(800, "feet")
  9257. },
  9258. {
  9259. name: "Megamacro",
  9260. height: math.unit(25, "miles")
  9261. }
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(200, "lbs"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/chari-gal/front.svg",
  9273. extra: 1568 / 1385,
  9274. bottom: 0.047
  9275. }
  9276. },
  9277. gigantamax: {
  9278. height: math.unit(6 * 16, "feet"),
  9279. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9280. name: "Gigantamax",
  9281. image: {
  9282. source: "./media/characters/chari-gal/gigantamax.svg",
  9283. extra: 1124 / 888,
  9284. bottom: 0.03
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(5 + 7 / 12, "feet")
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(200, "feet"),
  9296. default: true
  9297. }
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(150, "lbs"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/nova/front.svg",
  9309. extra: 5000 / 4722,
  9310. bottom: 0.02
  9311. }
  9312. }
  9313. },
  9314. [
  9315. {
  9316. name: "Micro-",
  9317. height: math.unit(0.8, "inches")
  9318. },
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(2, "inches"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9328. {
  9329. koboldFront: {
  9330. height: math.unit(3 + 1 / 12, "feet"),
  9331. weight: math.unit(21.7, "lbs"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/argent/kobold-front.svg",
  9335. extra: 1471 / 1331,
  9336. bottom: 100.8 / 1575.5
  9337. },
  9338. form: "kobold",
  9339. default: true
  9340. },
  9341. dragonFront: {
  9342. height: math.unit(75, "inches"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/argent/dragon-front.svg",
  9346. extra: 1389/1248,
  9347. bottom: 54/1443
  9348. },
  9349. form: "dragon",
  9350. },
  9351. dragonBack: {
  9352. height: math.unit(75, "inches"),
  9353. name: "Back",
  9354. image: {
  9355. source: "./media/characters/argent/dragon-back.svg",
  9356. extra: 1399/1271,
  9357. bottom: 23/1422
  9358. },
  9359. form: "dragon",
  9360. },
  9361. dragonDressed: {
  9362. height: math.unit(75, "inches"),
  9363. name: "Dressed",
  9364. image: {
  9365. source: "./media/characters/argent/dragon-dressed.svg",
  9366. extra: 1350/1215,
  9367. bottom: 26/1376
  9368. },
  9369. form: "dragon"
  9370. },
  9371. dragonHead: {
  9372. height: math.unit(23.5, "inches"),
  9373. name: "Head",
  9374. image: {
  9375. source: "./media/characters/argent/dragon-head.svg"
  9376. },
  9377. form: "dragon",
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Micro",
  9383. height: math.unit(2, "inches"),
  9384. form: "kobold",
  9385. },
  9386. {
  9387. name: "Normal",
  9388. height: math.unit(3 + 1 / 12, "feet"),
  9389. form: "kobold",
  9390. default: true
  9391. },
  9392. {
  9393. name: "Macro",
  9394. height: math.unit(120, "feet"),
  9395. form: "kobold",
  9396. },
  9397. {
  9398. name: "Speck",
  9399. height: math.unit(1, "mm"),
  9400. form: "dragon",
  9401. },
  9402. {
  9403. name: "Tiny",
  9404. height: math.unit(1, "cm"),
  9405. form: "dragon",
  9406. },
  9407. {
  9408. name: "Micro",
  9409. height: math.unit(5, "cm"),
  9410. form: "dragon",
  9411. },
  9412. {
  9413. name: "Normal",
  9414. height: math.unit(75, "inches"),
  9415. form: "dragon",
  9416. default: true
  9417. },
  9418. {
  9419. name: "Extra Tall",
  9420. height: math.unit(9, "feet"),
  9421. form: "dragon",
  9422. },
  9423. {
  9424. name: "Inconvenient",
  9425. height: math.unit(5, "meters"),
  9426. form: "dragon",
  9427. },
  9428. {
  9429. name: "Macro",
  9430. height: math.unit(70, "meters"),
  9431. form: "dragon",
  9432. },
  9433. {
  9434. name: "Macro+",
  9435. height: math.unit(250, "meters"),
  9436. form: "dragon",
  9437. },
  9438. {
  9439. name: "Megamacro",
  9440. height: math.unit(20, "km"),
  9441. form: "dragon",
  9442. },
  9443. {
  9444. name: "Mountainous",
  9445. height: math.unit(100, "km"),
  9446. form: "dragon",
  9447. },
  9448. {
  9449. name: "Continental",
  9450. height: math.unit(2, "megameters"),
  9451. form: "dragon",
  9452. },
  9453. {
  9454. name: "Too Big",
  9455. height: math.unit(900, "megameters"),
  9456. form: "dragon",
  9457. },
  9458. ],
  9459. {
  9460. "kobold": {
  9461. name: "Kobold",
  9462. default: true
  9463. },
  9464. "dragon": {
  9465. name: "Dragon",
  9466. },
  9467. }
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9471. {
  9472. lamp: {
  9473. height: math.unit(7 * 1559 / 989, "feet"),
  9474. name: "Magic Lamp",
  9475. image: {
  9476. source: "./media/characters/mira-al-cul/lamp.svg",
  9477. extra: 1617 / 1559
  9478. }
  9479. },
  9480. front: {
  9481. height: math.unit(7, "feet"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/mira-al-cul/front.svg",
  9485. extra: 1044 / 990
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Heavily Restricted",
  9492. height: math.unit(7 * 1559 / 989, "feet")
  9493. },
  9494. {
  9495. name: "Freshly Freed",
  9496. height: math.unit(50 * 1559 / 989, "feet")
  9497. },
  9498. {
  9499. name: "World Encompassing",
  9500. height: math.unit(10000 * 1559 / 989, "miles")
  9501. },
  9502. {
  9503. name: "Galactic",
  9504. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9505. },
  9506. {
  9507. name: "Palmed Universe",
  9508. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9509. default: true
  9510. },
  9511. {
  9512. name: "Multiversal Matriarch",
  9513. height: math.unit(8.87e10, "yottameters")
  9514. },
  9515. {
  9516. name: "Void Mother",
  9517. height: math.unit(3.14e110, "yottaparsecs")
  9518. },
  9519. {
  9520. name: "Toying with Transcendence",
  9521. height: math.unit(1e307, "meters")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9527. {
  9528. front: {
  9529. height: math.unit(17 + 1 / 12, "feet"),
  9530. weight: math.unit(476.2 * 5, "lbs"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/kuro-shi-uchū/front.svg",
  9534. extra: 2329 / 1835,
  9535. bottom: 0.02
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(2, "inches")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(12, "meters")
  9547. },
  9548. {
  9549. name: "Planetary",
  9550. height: math.unit(0.00929, "AU"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Universal",
  9555. height: math.unit(20, "gigaparsecs")
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(5 + 2 / 12, "feet"),
  9564. weight: math.unit(120, "lbs"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/katherine/front.svg",
  9568. extra: 2075 / 1969
  9569. }
  9570. },
  9571. dress: {
  9572. height: math.unit(5 + 2 / 12, "feet"),
  9573. weight: math.unit(120, "lbs"),
  9574. name: "Dress",
  9575. image: {
  9576. source: "./media/characters/katherine/dress.svg",
  9577. extra: 2258 / 2064
  9578. }
  9579. },
  9580. },
  9581. [
  9582. {
  9583. name: "Micro",
  9584. height: math.unit(1, "inches"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(5 + 2 / 12, "feet")
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(100, "meters")
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(80, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(7 + 8 / 12, "feet"),
  9606. weight: math.unit(250, "lbs"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/yevis/front.svg",
  9610. extra: 1938 / 1755
  9611. }
  9612. }
  9613. },
  9614. [
  9615. {
  9616. name: "Mortal",
  9617. height: math.unit(7 + 8 / 12, "feet")
  9618. },
  9619. {
  9620. name: "Battle",
  9621. height: math.unit(25 + 11 / 12, "feet")
  9622. },
  9623. {
  9624. name: "Wrath",
  9625. height: math.unit(1654 + 11 / 12, "feet")
  9626. },
  9627. {
  9628. name: "Planet Destroyer",
  9629. height: math.unit(12000, "miles")
  9630. },
  9631. {
  9632. name: "Galaxy Conqueror",
  9633. height: math.unit(1.45, "zettameters"),
  9634. default: true
  9635. },
  9636. {
  9637. name: "Universal War",
  9638. height: math.unit(184, "gigaparsecs")
  9639. },
  9640. {
  9641. name: "Eternity War",
  9642. height: math.unit(1.98e55, "yottaparsecs")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(5 + 8 / 12, "feet"),
  9651. weight: math.unit(63, "kg"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/xavier/front.svg",
  9655. extra: 944 / 883
  9656. }
  9657. },
  9658. frontStretch: {
  9659. height: math.unit(5 + 8 / 12, "feet"),
  9660. weight: math.unit(63, "kg"),
  9661. name: "Stretching",
  9662. image: {
  9663. source: "./media/characters/xavier/front-stretch.svg",
  9664. extra: 962 / 820
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(5 + 8 / 12, "feet")
  9672. },
  9673. {
  9674. name: "Macro",
  9675. height: math.unit(100, "meters"),
  9676. default: true
  9677. },
  9678. {
  9679. name: "McLargeHuge",
  9680. height: math.unit(10, "miles")
  9681. },
  9682. ]
  9683. ))
  9684. characterMakers.push(() => makeCharacter(
  9685. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9686. {
  9687. front: {
  9688. height: math.unit(5 + 5 / 12, "feet"),
  9689. weight: math.unit(150, "lb"),
  9690. name: "Front",
  9691. image: {
  9692. source: "./media/characters/joshii/front.svg",
  9693. extra: 765 / 653,
  9694. bottom: 51 / 816
  9695. }
  9696. },
  9697. foot: {
  9698. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9699. name: "Foot",
  9700. image: {
  9701. source: "./media/characters/joshii/foot.svg"
  9702. }
  9703. },
  9704. },
  9705. [
  9706. {
  9707. name: "Micro",
  9708. height: math.unit(2, "inches")
  9709. },
  9710. {
  9711. name: "Normal",
  9712. height: math.unit(5 + 5 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(785, "feet"),
  9717. default: true
  9718. },
  9719. {
  9720. name: "Megamacro",
  9721. height: math.unit(24.5, "miles")
  9722. },
  9723. ]
  9724. ))
  9725. characterMakers.push(() => makeCharacter(
  9726. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9727. {
  9728. front: {
  9729. height: math.unit(6, "feet"),
  9730. weight: math.unit(150, "lb"),
  9731. name: "Front",
  9732. image: {
  9733. source: "./media/characters/goddess-elizabeth/front.svg",
  9734. extra: 1800 / 1525,
  9735. bottom: 0.005
  9736. }
  9737. },
  9738. foot: {
  9739. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9740. name: "Foot",
  9741. image: {
  9742. source: "./media/characters/goddess-elizabeth/foot.svg"
  9743. }
  9744. },
  9745. mouth: {
  9746. height: math.unit(6, "feet"),
  9747. name: "Mouth",
  9748. image: {
  9749. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Micro",
  9756. height: math.unit(12, "feet")
  9757. },
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(80, "miles"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(15000, "parsecs")
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(5 + 9 / 12, "feet"),
  9774. weight: math.unit(144, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/kara/front.svg"
  9778. }
  9779. },
  9780. feet: {
  9781. height: math.unit(6 / 6.765, "feet"),
  9782. name: "Kara's Feet",
  9783. rename: true,
  9784. image: {
  9785. source: "./media/characters/kara/feet.svg"
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(5 + 9 / 12, "feet")
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(174, "feet"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(18, "feet"),
  9806. weight: math.unit(4050, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/tyrone/front.svg",
  9810. extra: 2405 / 2270,
  9811. bottom: 182 / 2587
  9812. }
  9813. },
  9814. },
  9815. [
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(18, "feet"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(300, "feet")
  9824. },
  9825. {
  9826. name: "Megamacro",
  9827. height: math.unit(15, "km")
  9828. },
  9829. {
  9830. name: "Gigamacro",
  9831. height: math.unit(500, "km")
  9832. },
  9833. {
  9834. name: "Teramacro",
  9835. height: math.unit(0.5, "gigameters")
  9836. },
  9837. {
  9838. name: "Omnimacro",
  9839. height: math.unit(1e252, "yottauniverse")
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(7 + 8 / 12, "feet"),
  9848. weight: math.unit(120, "lb"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/danny/front.svg",
  9852. extra: 1490 / 1350
  9853. }
  9854. },
  9855. back: {
  9856. height: math.unit(7 + 8 / 12, "feet"),
  9857. weight: math.unit(120, "lb"),
  9858. name: "Back",
  9859. image: {
  9860. source: "./media/characters/danny/back.svg",
  9861. extra: 1490 / 1350
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(7 + 8 / 12, "feet"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(3.5, "inches"),
  9878. weight: math.unit(19, "grams"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/mallow/front.svg",
  9882. extra: 471 / 431
  9883. }
  9884. },
  9885. back: {
  9886. height: math.unit(3.5, "inches"),
  9887. weight: math.unit(19, "grams"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/mallow/back.svg",
  9891. extra: 471 / 431
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(3.5, "inches"),
  9899. default: true
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(9, "feet"),
  9908. weight: math.unit(230, "kg"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/starry-aqua/front.svg"
  9912. }
  9913. },
  9914. back: {
  9915. height: math.unit(9, "feet"),
  9916. weight: math.unit(230, "kg"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/starry-aqua/back.svg"
  9920. }
  9921. },
  9922. hand: {
  9923. height: math.unit(9 * 0.1168, "feet"),
  9924. name: "Hand",
  9925. image: {
  9926. source: "./media/characters/starry-aqua/hand.svg"
  9927. }
  9928. },
  9929. foot: {
  9930. height: math.unit(9 * 0.18, "feet"),
  9931. name: "Foot",
  9932. image: {
  9933. source: "./media/characters/starry-aqua/foot.svg"
  9934. }
  9935. }
  9936. },
  9937. [
  9938. {
  9939. name: "Micro",
  9940. height: math.unit(3, "inches")
  9941. },
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(9, "feet")
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(300, "feet"),
  9949. default: true
  9950. },
  9951. {
  9952. name: "Megamacro",
  9953. height: math.unit(3200, "feet")
  9954. }
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(15, "feet"),
  9962. weight: math.unit(5026, "lb"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/luka-towers/front.svg",
  9966. extra: 1269/1133,
  9967. bottom: 51/1320
  9968. }
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(15, "feet"),
  9975. default: true
  9976. },
  9977. {
  9978. name: "Minimacro",
  9979. height: math.unit(25, "feet")
  9980. },
  9981. {
  9982. name: "Macro",
  9983. height: math.unit(320, "feet")
  9984. },
  9985. {
  9986. name: "Megamacro",
  9987. height: math.unit(35000, "feet")
  9988. },
  9989. {
  9990. name: "Gigamacro",
  9991. height: math.unit(4000, "miles")
  9992. },
  9993. {
  9994. name: "Teramacro",
  9995. height: math.unit(15000, "miles")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(150, "lb"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/natalie-nightring/front.svg",
  10008. extra: 1,
  10009. bottom: 0.06
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Uh Oh",
  10016. height: math.unit(0.1, "mm")
  10017. },
  10018. {
  10019. name: "Small",
  10020. height: math.unit(3, "inches")
  10021. },
  10022. {
  10023. name: "Human Scale",
  10024. height: math.unit(6, "feet")
  10025. },
  10026. {
  10027. name: "Librarian",
  10028. height: math.unit(50, "feet"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "Immense",
  10033. height: math.unit(200, "miles")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(180, "lbs"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/danni-rosie/front.svg",
  10046. extra: 1260 / 1128,
  10047. bottom: 0.022
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Micro",
  10054. height: math.unit(2, "inches"),
  10055. default: true
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(5 + 9 / 12, "feet"),
  10064. weight: math.unit(220, "lb"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/samantha-kruse/front.svg",
  10068. extra: (985 / 935),
  10069. bottom: 0.03
  10070. }
  10071. },
  10072. frontUndressed: {
  10073. height: math.unit(5 + 9 / 12, "feet"),
  10074. weight: math.unit(220, "lb"),
  10075. name: "Front (Undressed)",
  10076. image: {
  10077. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10078. extra: (973 / 923),
  10079. bottom: 0.025
  10080. }
  10081. },
  10082. fat: {
  10083. height: math.unit(5 + 9 / 12, "feet"),
  10084. weight: math.unit(900, "lb"),
  10085. name: "Front (Fat)",
  10086. image: {
  10087. source: "./media/characters/samantha-kruse/fat.svg",
  10088. extra: 2688 / 2561
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(5 + 9 / 12, "feet"),
  10096. default: true
  10097. }
  10098. ]
  10099. ))
  10100. characterMakers.push(() => makeCharacter(
  10101. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10102. {
  10103. back: {
  10104. height: math.unit(5 + 4 / 12, "feet"),
  10105. weight: math.unit(4963, "lb"),
  10106. name: "Back",
  10107. image: {
  10108. source: "./media/characters/amelia-rosie/back.svg",
  10109. extra: 1113 / 963,
  10110. bottom: 0.01
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Level 0",
  10117. height: math.unit(5 + 4 / 12, "feet")
  10118. },
  10119. {
  10120. name: "Level 1",
  10121. height: math.unit(164597, "feet"),
  10122. default: true
  10123. },
  10124. {
  10125. name: "Level 2",
  10126. height: math.unit(956243, "miles")
  10127. },
  10128. {
  10129. name: "Level 3",
  10130. height: math.unit(29421709423, "miles")
  10131. },
  10132. {
  10133. name: "Level 4",
  10134. height: math.unit(154, "lightyears")
  10135. },
  10136. {
  10137. name: "Level 5",
  10138. height: math.unit(4738272, "lightyears")
  10139. },
  10140. {
  10141. name: "Level 6",
  10142. height: math.unit(145787152896, "lightyears")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(5 + 11 / 12, "feet"),
  10151. weight: math.unit(65, "kg"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/rook-kitara/front.svg",
  10155. extra: 1347 / 1274,
  10156. bottom: 0.005
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Totally Unfair",
  10163. height: math.unit(1.8, "mm")
  10164. },
  10165. {
  10166. name: "Lap Rookie",
  10167. height: math.unit(1.4, "feet")
  10168. },
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(5 + 11 / 12, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "How Did This Happen",
  10176. height: math.unit(80, "miles")
  10177. }
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(7, "feet"),
  10185. weight: math.unit(300, "lb"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/pisces/front.svg",
  10189. extra: 2255 / 2115,
  10190. bottom: 0.03
  10191. }
  10192. },
  10193. back: {
  10194. height: math.unit(7, "feet"),
  10195. weight: math.unit(300, "lb"),
  10196. name: "Back",
  10197. image: {
  10198. source: "./media/characters/pisces/back.svg",
  10199. extra: 2146 / 2055,
  10200. bottom: 0.04
  10201. }
  10202. },
  10203. },
  10204. [
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(7, "feet"),
  10208. default: true
  10209. },
  10210. {
  10211. name: "Swimming Pool",
  10212. height: math.unit(12.2, "meters")
  10213. },
  10214. {
  10215. name: "Olympic Swimming Pool",
  10216. height: math.unit(56.3, "meters")
  10217. },
  10218. {
  10219. name: "Lake Superior",
  10220. height: math.unit(93900, "meters")
  10221. },
  10222. {
  10223. name: "Mediterranean Sea",
  10224. height: math.unit(644457, "meters")
  10225. },
  10226. {
  10227. name: "World's Oceans",
  10228. height: math.unit(4567491, "meters")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(2.3, "meters"),
  10237. weight: math.unit(120, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/zelas/front.svg"
  10241. }
  10242. },
  10243. side: {
  10244. height: math.unit(2.3, "meters"),
  10245. weight: math.unit(120, "kg"),
  10246. name: "Side",
  10247. image: {
  10248. source: "./media/characters/zelas/side.svg"
  10249. }
  10250. },
  10251. back: {
  10252. height: math.unit(2.3, "meters"),
  10253. weight: math.unit(120, "kg"),
  10254. name: "Back",
  10255. image: {
  10256. source: "./media/characters/zelas/back.svg"
  10257. }
  10258. },
  10259. foot: {
  10260. height: math.unit(1.116, "feet"),
  10261. name: "Foot",
  10262. image: {
  10263. source: "./media/characters/zelas/foot.svg"
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(2.3, "meters")
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(30, "meters"),
  10275. default: true
  10276. },
  10277. ]
  10278. ))
  10279. characterMakers.push(() => makeCharacter(
  10280. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10281. {
  10282. front: {
  10283. height: math.unit(1, "inch"),
  10284. weight: math.unit(0.21, "grams"),
  10285. name: "Front",
  10286. image: {
  10287. source: "./media/characters/talbot/front.svg",
  10288. extra: 594 / 544
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Micro",
  10295. height: math.unit(1, "inch"),
  10296. default: true
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10302. {
  10303. front: {
  10304. height: math.unit(3 + 3 / 12, "feet"),
  10305. weight: math.unit(51.8, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/fliss/front.svg",
  10309. extra: 840 / 640
  10310. }
  10311. },
  10312. },
  10313. [
  10314. {
  10315. name: "Teeny Tiny",
  10316. height: math.unit(1, "mm")
  10317. },
  10318. {
  10319. name: "Small",
  10320. height: math.unit(1, "inch"),
  10321. default: true
  10322. },
  10323. {
  10324. name: "Standard Sylveon",
  10325. height: math.unit(3 + 3 / 12, "feet")
  10326. },
  10327. {
  10328. name: "Large Nuisance",
  10329. height: math.unit(33, "feet")
  10330. },
  10331. {
  10332. name: "City Filler",
  10333. height: math.unit(3000, "feet")
  10334. },
  10335. {
  10336. name: "New Horizon",
  10337. height: math.unit(6000, "miles")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(5, "cm"),
  10346. weight: math.unit(1.94, "g"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/fleta/front.svg",
  10350. extra: 835 / 803
  10351. }
  10352. },
  10353. back: {
  10354. height: math.unit(5, "cm"),
  10355. weight: math.unit(1.94, "g"),
  10356. name: "Back",
  10357. image: {
  10358. source: "./media/characters/fleta/back.svg",
  10359. extra: 835 / 803
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(5, "cm"),
  10367. default: true
  10368. },
  10369. ]
  10370. ))
  10371. characterMakers.push(() => makeCharacter(
  10372. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10373. {
  10374. front: {
  10375. height: math.unit(6, "feet"),
  10376. weight: math.unit(225, "lb"),
  10377. name: "Front",
  10378. image: {
  10379. source: "./media/characters/dominic/front.svg",
  10380. extra: 1770 / 1620,
  10381. bottom: 0.025
  10382. }
  10383. },
  10384. back: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(225, "lb"),
  10387. name: "Back",
  10388. image: {
  10389. source: "./media/characters/dominic/back.svg",
  10390. extra: 1745 / 1620,
  10391. bottom: 0.065
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Nano",
  10398. height: math.unit(0.1, "mm")
  10399. },
  10400. {
  10401. name: "Micro-",
  10402. height: math.unit(1, "mm")
  10403. },
  10404. {
  10405. name: "Micro",
  10406. height: math.unit(4, "inches")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(6 + 4 / 12, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(115, "feet")
  10416. },
  10417. {
  10418. name: "Macro+",
  10419. height: math.unit(955, "feet")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(8990, "feet")
  10424. },
  10425. {
  10426. name: "Gigmacro",
  10427. height: math.unit(9310, "miles")
  10428. },
  10429. {
  10430. name: "Teramacro",
  10431. height: math.unit(1567005010, "miles")
  10432. },
  10433. {
  10434. name: "Examacro",
  10435. height: math.unit(1425, "parsecs")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(400, "feet"),
  10444. weight: math.unit(44444444, "lb"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/major-colonel/front.svg"
  10448. }
  10449. },
  10450. back: {
  10451. height: math.unit(400, "feet"),
  10452. weight: math.unit(44444444, "lb"),
  10453. name: "Back",
  10454. image: {
  10455. source: "./media/characters/major-colonel/back.svg"
  10456. }
  10457. },
  10458. },
  10459. [
  10460. {
  10461. name: "Macro",
  10462. height: math.unit(400, "feet"),
  10463. default: true
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10469. {
  10470. catFront: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(120, "lb"),
  10473. name: "Front (Cat Side)",
  10474. image: {
  10475. source: "./media/characters/axel-lycan/cat-front.svg",
  10476. extra: 430 / 402,
  10477. bottom: 43 / 472.35
  10478. }
  10479. },
  10480. catBack: {
  10481. height: math.unit(6, "feet"),
  10482. weight: math.unit(120, "lb"),
  10483. name: "Back (Cat Side)",
  10484. image: {
  10485. source: "./media/characters/axel-lycan/cat-back.svg",
  10486. extra: 447 / 419,
  10487. bottom: 23.3 / 469
  10488. }
  10489. },
  10490. wolfFront: {
  10491. height: math.unit(6, "feet"),
  10492. weight: math.unit(120, "lb"),
  10493. name: "Front (Wolf Side)",
  10494. image: {
  10495. source: "./media/characters/axel-lycan/wolf-front.svg",
  10496. extra: 485 / 456,
  10497. bottom: 19 / 504
  10498. }
  10499. },
  10500. wolfBack: {
  10501. height: math.unit(6, "feet"),
  10502. weight: math.unit(120, "lb"),
  10503. name: "Back (Wolf Side)",
  10504. image: {
  10505. source: "./media/characters/axel-lycan/wolf-back.svg",
  10506. extra: 475 / 438,
  10507. bottom: 39.2 / 514
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(1, "km"),
  10515. default: true
  10516. },
  10517. ]
  10518. ))
  10519. characterMakers.push(() => makeCharacter(
  10520. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10521. {
  10522. front: {
  10523. height: math.unit(5 + 9 / 12, "feet"),
  10524. weight: math.unit(175, "lb"),
  10525. name: "Front",
  10526. image: {
  10527. source: "./media/characters/vanrel-hyena/front.svg",
  10528. extra: 1086 / 1010,
  10529. bottom: 0.04
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(5 + 9 / 12, "feet"),
  10537. default: true
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(6, "feet"),
  10546. weight: math.unit(103, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/abbott-absol/front.svg",
  10550. extra: 2010 / 1842
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Megamicro",
  10557. height: math.unit(0.1, "mm")
  10558. },
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(1, "inch")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(6, "feet"),
  10566. default: true
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(264, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/hector/front.svg",
  10579. extra: 2280 / 2130,
  10580. bottom: 0.07
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(12.25, "foot"),
  10588. default: true
  10589. },
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(160, "feet")
  10593. },
  10594. ]
  10595. ))
  10596. characterMakers.push(() => makeCharacter(
  10597. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10598. {
  10599. front: {
  10600. height: math.unit(6, "feet"),
  10601. weight: math.unit(150, "lb"),
  10602. name: "Front",
  10603. image: {
  10604. source: "./media/characters/sal/front.svg",
  10605. extra: 1846 / 1699,
  10606. bottom: 0.04
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Megamacro",
  10613. height: math.unit(10, "miles"),
  10614. default: true
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10620. {
  10621. front: {
  10622. height: math.unit(3, "meters"),
  10623. weight: math.unit(450, "kg"),
  10624. name: "front",
  10625. image: {
  10626. source: "./media/characters/ranger/front.svg",
  10627. extra: 2401 / 2243,
  10628. bottom: 0.05
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(3, "meters"),
  10636. default: true
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(14, "feet"),
  10645. weight: math.unit(800, "kg"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/theresa/front.svg",
  10649. extra: 3575 / 3346,
  10650. bottom: 0.03
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(14, "feet"),
  10658. default: true
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10664. {
  10665. front: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(3, "kg"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/ine/front.svg",
  10671. extra: 678 / 539,
  10672. bottom: 0.023
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(2.265, "feet"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(5, "feet"),
  10689. weight: math.unit(30, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/vial/front.svg",
  10693. extra: 1365 / 1277,
  10694. bottom: 0.04
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(5, "feet"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10708. {
  10709. side: {
  10710. height: math.unit(3.4, "meters"),
  10711. weight: math.unit(1000, "lb"),
  10712. name: "Side",
  10713. image: {
  10714. source: "./media/characters/rovoska/side.svg",
  10715. extra: 4403 / 1515
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(3.4, "meters"),
  10723. default: true
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10729. {
  10730. front: {
  10731. height: math.unit(8, "feet"),
  10732. weight: math.unit(315, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/gunner-rotthbauer/front.svg"
  10736. }
  10737. },
  10738. back: {
  10739. height: math.unit(8, "feet"),
  10740. weight: math.unit(315, "lb"),
  10741. name: "Back",
  10742. image: {
  10743. source: "./media/characters/gunner-rotthbauer/back.svg"
  10744. }
  10745. },
  10746. },
  10747. [
  10748. {
  10749. name: "Micro",
  10750. height: math.unit(3.5, "inches")
  10751. },
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(8, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(250, "feet")
  10760. },
  10761. {
  10762. name: "Megamacro",
  10763. height: math.unit(1, "AU")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10769. {
  10770. front: {
  10771. height: math.unit(5 + 5 / 12, "feet"),
  10772. weight: math.unit(140, "lb"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/allatia/front.svg",
  10776. extra: 1227 / 1180,
  10777. bottom: 0.027
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Normal",
  10784. height: math.unit(5 + 5 / 12, "feet")
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(250, "feet"),
  10789. default: true
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(8, "miles")
  10794. }
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10799. {
  10800. front: {
  10801. height: math.unit(6, "feet"),
  10802. weight: math.unit(120, "lb"),
  10803. name: "Front",
  10804. image: {
  10805. source: "./media/characters/tene/front.svg",
  10806. extra: 814/750,
  10807. bottom: 36/850
  10808. }
  10809. },
  10810. stomping: {
  10811. height: math.unit(2.025, "meters"),
  10812. weight: math.unit(120, "lb"),
  10813. name: "Stomping",
  10814. image: {
  10815. source: "./media/characters/tene/stomping.svg",
  10816. extra: 885/821,
  10817. bottom: 15/900
  10818. }
  10819. },
  10820. sitting: {
  10821. height: math.unit(1, "meter"),
  10822. weight: math.unit(120, "lb"),
  10823. name: "Sitting",
  10824. image: {
  10825. source: "./media/characters/tene/sitting.svg",
  10826. extra: 396/366,
  10827. bottom: 79/475
  10828. }
  10829. },
  10830. smiling: {
  10831. height: math.unit(1.2, "feet"),
  10832. name: "Smiling",
  10833. image: {
  10834. source: "./media/characters/tene/smiling.svg",
  10835. extra: 1364/1071,
  10836. bottom: 0/1364
  10837. }
  10838. },
  10839. smug: {
  10840. height: math.unit(1.3, "feet"),
  10841. name: "Smug",
  10842. image: {
  10843. source: "./media/characters/tene/smug.svg",
  10844. extra: 1323/1082,
  10845. bottom: 0/1323
  10846. }
  10847. },
  10848. feral: {
  10849. height: math.unit(3.9, "feet"),
  10850. weight: math.unit(250, "lb"),
  10851. name: "Feral",
  10852. image: {
  10853. source: "./media/characters/tene/feral.svg",
  10854. extra: 717 / 458,
  10855. bottom: 0.179
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(6, "feet")
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(300, "feet"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(5, "miles")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10877. {
  10878. side: {
  10879. height: math.unit(6, "feet"),
  10880. name: "Side",
  10881. image: {
  10882. source: "./media/characters/evander/side.svg",
  10883. extra: 877 / 477
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(0.83, "meters"),
  10891. default: true
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(12, "feet"),
  10900. weight: math.unit(1000, "lb"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10904. extra: 1762 / 1611
  10905. }
  10906. },
  10907. back: {
  10908. height: math.unit(12, "feet"),
  10909. weight: math.unit(1000, "lb"),
  10910. name: "Back",
  10911. image: {
  10912. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10913. extra: 1762 / 1611
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(12, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Kaiju",
  10925. height: math.unit(150, "feet")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(150, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/zero-alurus/front.svg"
  10938. }
  10939. },
  10940. back: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Back",
  10944. image: {
  10945. source: "./media/characters/zero-alurus/back.svg"
  10946. }
  10947. },
  10948. },
  10949. [
  10950. {
  10951. name: "Normal",
  10952. height: math.unit(5 + 10 / 12, "feet")
  10953. },
  10954. {
  10955. name: "Macro",
  10956. height: math.unit(60, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro+",
  10961. height: math.unit(450, "feet")
  10962. },
  10963. ]
  10964. ))
  10965. characterMakers.push(() => makeCharacter(
  10966. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10967. {
  10968. front: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(200, "lb"),
  10971. name: "Front",
  10972. image: {
  10973. source: "./media/characters/mega-shi/front.svg",
  10974. extra: 1279 / 1250,
  10975. bottom: 0.02
  10976. }
  10977. },
  10978. back: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(200, "lb"),
  10981. name: "Back",
  10982. image: {
  10983. source: "./media/characters/mega-shi/back.svg",
  10984. extra: 1279 / 1250,
  10985. bottom: 0.02
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(16 + 6 / 12, "feet")
  10993. },
  10994. {
  10995. name: "Third Dimension",
  10996. height: math.unit(40, "meters")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(660, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Megamacro",
  11005. height: math.unit(10, "miles")
  11006. },
  11007. {
  11008. name: "Planetary Launch",
  11009. height: math.unit(500, "miles")
  11010. },
  11011. {
  11012. name: "Interstellar",
  11013. height: math.unit(1e9, "miles")
  11014. },
  11015. {
  11016. name: "Leaving the Universe",
  11017. height: math.unit(1, "gigaparsec")
  11018. },
  11019. {
  11020. name: "Travelling Universes",
  11021. height: math.unit(30e15, "parsecs")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(5 + 4/12, "feet"),
  11030. weight: math.unit(120, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/odyssey/front.svg",
  11034. extra: 1747/1571,
  11035. bottom: 47/1794
  11036. }
  11037. },
  11038. side: {
  11039. height: math.unit(5.1, "feet"),
  11040. weight: math.unit(120, "lb"),
  11041. name: "Side",
  11042. image: {
  11043. source: "./media/characters/odyssey/side.svg",
  11044. extra: 1847/1619,
  11045. bottom: 47/1894
  11046. }
  11047. },
  11048. lounging: {
  11049. height: math.unit(1.464, "feet"),
  11050. weight: math.unit(120, "lb"),
  11051. name: "Lounging",
  11052. image: {
  11053. source: "./media/characters/odyssey/lounging.svg",
  11054. extra: 1235/837,
  11055. bottom: 551/1786
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(5 + 4 / 12, "feet")
  11063. },
  11064. {
  11065. name: "Macro",
  11066. height: math.unit(1, "km")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(3000, "km")
  11071. },
  11072. {
  11073. name: "Gigamacro",
  11074. height: math.unit(1, "AU"),
  11075. default: true
  11076. },
  11077. {
  11078. name: "Omniversal",
  11079. height: math.unit(100e14, "lightyears")
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(300, "lb"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/mekuto/front.svg",
  11092. extra: 921 / 832,
  11093. bottom: 0.03
  11094. }
  11095. },
  11096. hand: {
  11097. height: math.unit(6 / 10.24, "feet"),
  11098. name: "Hand",
  11099. image: {
  11100. source: "./media/characters/mekuto/hand.svg"
  11101. }
  11102. },
  11103. foot: {
  11104. height: math.unit(6 / 5.05, "feet"),
  11105. name: "Foot",
  11106. image: {
  11107. source: "./media/characters/mekuto/foot.svg"
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Minimicro",
  11114. height: math.unit(0.2, "inches")
  11115. },
  11116. {
  11117. name: "Micro",
  11118. height: math.unit(1.5, "inches")
  11119. },
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(5 + 11 / 12, "feet"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Minimacro",
  11127. height: math.unit(17 + 9 / 12, "feet")
  11128. },
  11129. {
  11130. name: "Macro",
  11131. height: math.unit(177.5, "feet")
  11132. },
  11133. {
  11134. name: "Megamacro",
  11135. height: math.unit(152, "miles")
  11136. },
  11137. ]
  11138. ))
  11139. characterMakers.push(() => makeCharacter(
  11140. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11141. {
  11142. front: {
  11143. height: math.unit(6.5, "inches"),
  11144. weight: math.unit(13, "oz"),
  11145. name: "Front",
  11146. image: {
  11147. source: "./media/characters/dafydd-tomos/front.svg",
  11148. extra: 2990 / 2603,
  11149. bottom: 0.03
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Micro",
  11156. height: math.unit(6.5, "inches"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/splinter/front.svg",
  11170. extra: 2990 / 2882,
  11171. bottom: 0.04
  11172. }
  11173. },
  11174. back: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(150, "lb"),
  11177. name: "Back",
  11178. image: {
  11179. source: "./media/characters/splinter/back.svg",
  11180. extra: 2990 / 2882,
  11181. bottom: 0.04
  11182. }
  11183. },
  11184. },
  11185. [
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(6, "feet")
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(230, "meters"),
  11193. default: true
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(4 + 10 / 12, "feet"),
  11202. weight: math.unit(480, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/snow-gabumon/front.svg",
  11206. extra: 1140 / 963,
  11207. bottom: 0.058
  11208. }
  11209. },
  11210. back: {
  11211. height: math.unit(4 + 10 / 12, "feet"),
  11212. weight: math.unit(480, "lb"),
  11213. name: "Back",
  11214. image: {
  11215. source: "./media/characters/snow-gabumon/back.svg",
  11216. extra: 1115 / 962,
  11217. bottom: 0.041
  11218. }
  11219. },
  11220. frontUndresed: {
  11221. height: math.unit(4 + 10 / 12, "feet"),
  11222. weight: math.unit(480, "lb"),
  11223. name: "Front (Undressed)",
  11224. image: {
  11225. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11226. extra: 1061 / 960,
  11227. bottom: 0.045
  11228. }
  11229. },
  11230. },
  11231. [
  11232. {
  11233. name: "Micro",
  11234. height: math.unit(1, "inch")
  11235. },
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(4 + 10 / 12, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Macro",
  11243. height: math.unit(200, "feet")
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(120, "miles")
  11248. },
  11249. {
  11250. name: "Gigamacro",
  11251. height: math.unit(9800, "miles")
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(1.7, "meters"),
  11260. weight: math.unit(140, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/moody/front.svg",
  11264. extra: 3226 / 3007,
  11265. bottom: 0.087
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Micro",
  11272. height: math.unit(1, "mm")
  11273. },
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(1.7, "meters"),
  11277. default: true
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(80, "meters")
  11282. },
  11283. {
  11284. name: "Macro+",
  11285. height: math.unit(500, "meters")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/zyas/front.svg",
  11298. extra: 1180 / 1120,
  11299. bottom: 0.045
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(10, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(500, "feet")
  11312. },
  11313. {
  11314. name: "Megamacro",
  11315. height: math.unit(5, "miles")
  11316. },
  11317. {
  11318. name: "Teramacro",
  11319. height: math.unit(150000, "miles")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(6, "feet"),
  11328. weight: math.unit(150, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/cuon/front.svg",
  11332. extra: 1390 / 1320,
  11333. bottom: 0.008
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Micro",
  11340. height: math.unit(3, "inches")
  11341. },
  11342. {
  11343. name: "Normal",
  11344. height: math.unit(18 + 9 / 12, "feet"),
  11345. default: true
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(360, "feet")
  11350. },
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(360, "miles")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(2.4, "meters"),
  11362. weight: math.unit(70, "kg"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/nyanuxk/front.svg",
  11366. extra: 1172 / 1084,
  11367. bottom: 0.065
  11368. }
  11369. },
  11370. side: {
  11371. height: math.unit(2.4, "meters"),
  11372. weight: math.unit(70, "kg"),
  11373. name: "Side",
  11374. image: {
  11375. source: "./media/characters/nyanuxk/side.svg",
  11376. extra: 1190 / 1132,
  11377. bottom: 0.007
  11378. }
  11379. },
  11380. back: {
  11381. height: math.unit(2.4, "meters"),
  11382. weight: math.unit(70, "kg"),
  11383. name: "Back",
  11384. image: {
  11385. source: "./media/characters/nyanuxk/back.svg",
  11386. extra: 1200 / 1141,
  11387. bottom: 0.015
  11388. }
  11389. },
  11390. foot: {
  11391. height: math.unit(0.52, "meters"),
  11392. name: "Foot",
  11393. image: {
  11394. source: "./media/characters/nyanuxk/foot.svg"
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Micro",
  11401. height: math.unit(2, "cm")
  11402. },
  11403. {
  11404. name: "Normal",
  11405. height: math.unit(2.4, "meters"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Smaller Macro",
  11410. height: math.unit(120, "meters")
  11411. },
  11412. {
  11413. name: "Bigger Macro",
  11414. height: math.unit(1.2, "km")
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(15, "kilometers")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(2000, "km")
  11423. },
  11424. {
  11425. name: "Teramacro",
  11426. height: math.unit(500000, "km")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11432. {
  11433. side: {
  11434. height: math.unit(6, "feet"),
  11435. name: "Side",
  11436. image: {
  11437. source: "./media/characters/ailbhe/side.svg",
  11438. extra: 757 / 464,
  11439. bottom: 0.041
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(1.07, "meters"),
  11447. default: true
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(6, "feet"),
  11456. weight: math.unit(120, "kg"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/zevulfius/front.svg",
  11460. extra: 965 / 903
  11461. }
  11462. },
  11463. side: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(120, "kg"),
  11466. name: "Side",
  11467. image: {
  11468. source: "./media/characters/zevulfius/side.svg",
  11469. extra: 939 / 900
  11470. }
  11471. },
  11472. back: {
  11473. height: math.unit(6, "feet"),
  11474. weight: math.unit(120, "kg"),
  11475. name: "Back",
  11476. image: {
  11477. source: "./media/characters/zevulfius/back.svg",
  11478. extra: 918 / 854,
  11479. bottom: 0.005
  11480. }
  11481. },
  11482. foot: {
  11483. height: math.unit(6 / 3.72, "feet"),
  11484. name: "Foot",
  11485. image: {
  11486. source: "./media/characters/zevulfius/foot.svg"
  11487. }
  11488. },
  11489. },
  11490. [
  11491. {
  11492. name: "Macro",
  11493. height: math.unit(750, "meters")
  11494. },
  11495. {
  11496. name: "Megamacro",
  11497. height: math.unit(20, "km"),
  11498. default: true
  11499. },
  11500. {
  11501. name: "Gigamacro",
  11502. height: math.unit(2000, "km")
  11503. },
  11504. {
  11505. name: "Teramacro",
  11506. height: math.unit(250000, "km")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11512. {
  11513. front: {
  11514. height: math.unit(100, "feet"),
  11515. weight: math.unit(350, "kg"),
  11516. name: "Front",
  11517. image: {
  11518. source: "./media/characters/rikes/front.svg",
  11519. extra: 1565 / 1483,
  11520. bottom: 0.017
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Macro",
  11527. height: math.unit(100, "feet"),
  11528. default: true
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(8, "feet"),
  11537. weight: math.unit(356, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/adam-silver-mane/front.svg",
  11541. extra: 1036/937,
  11542. bottom: 63/1099
  11543. }
  11544. },
  11545. side: {
  11546. height: math.unit(8, "feet"),
  11547. weight: math.unit(356, "lb"),
  11548. name: "Side",
  11549. image: {
  11550. source: "./media/characters/adam-silver-mane/side.svg",
  11551. extra: 997/901,
  11552. bottom: 59/1056
  11553. }
  11554. },
  11555. frontNsfw: {
  11556. height: math.unit(8, "feet"),
  11557. weight: math.unit(356, "lb"),
  11558. name: "Front (NSFW)",
  11559. image: {
  11560. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11561. extra: 1036/937,
  11562. bottom: 63/1099
  11563. }
  11564. },
  11565. sideNsfw: {
  11566. height: math.unit(8, "feet"),
  11567. weight: math.unit(356, "lb"),
  11568. name: "Side (NSFW)",
  11569. image: {
  11570. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11571. extra: 997/901,
  11572. bottom: 59/1056
  11573. }
  11574. },
  11575. dick: {
  11576. height: math.unit(2.1, "feet"),
  11577. name: "Dick",
  11578. image: {
  11579. source: "./media/characters/adam-silver-mane/dick.svg"
  11580. }
  11581. },
  11582. taur: {
  11583. height: math.unit(16, "feet"),
  11584. weight: math.unit(1500, "kg"),
  11585. name: "Taur",
  11586. image: {
  11587. source: "./media/characters/adam-silver-mane/taur.svg",
  11588. extra: 1713 / 1571,
  11589. bottom: 0.01
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(8, "feet")
  11597. },
  11598. {
  11599. name: "Minimacro",
  11600. height: math.unit(80, "feet")
  11601. },
  11602. {
  11603. name: "MDA",
  11604. height: math.unit(80, "meters")
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(800, "feet"),
  11609. default: true
  11610. },
  11611. {
  11612. name: "Megamacro",
  11613. height: math.unit(8000, "feet")
  11614. },
  11615. {
  11616. name: "Gigamacro",
  11617. height: math.unit(800, "miles")
  11618. },
  11619. {
  11620. name: "Teramacro",
  11621. height: math.unit(80000, "miles")
  11622. },
  11623. {
  11624. name: "Celestial",
  11625. height: math.unit(8e6, "miles")
  11626. },
  11627. {
  11628. name: "Star Dragon",
  11629. height: math.unit(800000, "parsecs")
  11630. },
  11631. {
  11632. name: "Godly",
  11633. height: math.unit(800, "teraparsecs")
  11634. },
  11635. ]
  11636. ))
  11637. characterMakers.push(() => makeCharacter(
  11638. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11639. {
  11640. front: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(150, "lb"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/ky'owin/front.svg",
  11646. extra: 3862/3053,
  11647. bottom: 74/3936
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(6 + 8 / 12, "feet")
  11655. },
  11656. {
  11657. name: "Large",
  11658. height: math.unit(68, "feet")
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(132, "feet")
  11663. },
  11664. {
  11665. name: "Macro+",
  11666. height: math.unit(340, "feet")
  11667. },
  11668. {
  11669. name: "Macro++",
  11670. height: math.unit(680, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Megamacro",
  11675. height: math.unit(1, "mile")
  11676. },
  11677. {
  11678. name: "Megamacro+",
  11679. height: math.unit(10, "miles")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(4, "feet"),
  11688. weight: math.unit(50, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/mal/front.svg",
  11692. extra: 785 / 724,
  11693. bottom: 0.07
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Micro",
  11700. height: math.unit(4, "inches")
  11701. },
  11702. {
  11703. name: "Normal",
  11704. height: math.unit(4, "feet"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(200, "feet")
  11710. },
  11711. ]
  11712. ))
  11713. characterMakers.push(() => makeCharacter(
  11714. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11715. {
  11716. front: {
  11717. height: math.unit(6, "feet"),
  11718. weight: math.unit(150, "lb"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/jordan-deware/front.svg",
  11722. extra: 1191 / 1012
  11723. }
  11724. },
  11725. },
  11726. [
  11727. {
  11728. name: "Nano",
  11729. height: math.unit(0.01, "mm")
  11730. },
  11731. {
  11732. name: "Minimicro",
  11733. height: math.unit(1, "mm")
  11734. },
  11735. {
  11736. name: "Micro",
  11737. height: math.unit(0.5, "inches")
  11738. },
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(4, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Minimacro",
  11746. height: math.unit(40, "meters")
  11747. },
  11748. {
  11749. name: "Small Macro",
  11750. height: math.unit(400, "meters")
  11751. },
  11752. {
  11753. name: "Macro",
  11754. height: math.unit(4, "miles")
  11755. },
  11756. {
  11757. name: "Megamacro",
  11758. height: math.unit(40, "miles")
  11759. },
  11760. {
  11761. name: "Megamacro+",
  11762. height: math.unit(400, "miles")
  11763. },
  11764. {
  11765. name: "Gigamacro",
  11766. height: math.unit(400000, "miles")
  11767. },
  11768. ]
  11769. ))
  11770. characterMakers.push(() => makeCharacter(
  11771. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11772. {
  11773. side: {
  11774. height: math.unit(6, "feet"),
  11775. weight: math.unit(150, "lb"),
  11776. name: "Side",
  11777. image: {
  11778. source: "./media/characters/kimiko/side.svg",
  11779. extra: 600 / 358
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(15, "feet"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Macro",
  11791. height: math.unit(220, "feet")
  11792. },
  11793. {
  11794. name: "Macro+",
  11795. height: math.unit(1450, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(11500, "feet")
  11800. },
  11801. {
  11802. name: "Gigamacro",
  11803. height: math.unit(9500, "miles")
  11804. },
  11805. {
  11806. name: "Teramacro",
  11807. height: math.unit(2208005005, "miles")
  11808. },
  11809. {
  11810. name: "Examacro",
  11811. height: math.unit(2750, "parsecs")
  11812. },
  11813. {
  11814. name: "Zettamacro",
  11815. height: math.unit(101500, "parsecs")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(6, "feet"),
  11824. weight: math.unit(70, "kg"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/andrew-sleepy/front.svg"
  11828. }
  11829. },
  11830. side: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(70, "kg"),
  11833. name: "Side",
  11834. image: {
  11835. source: "./media/characters/andrew-sleepy/side.svg"
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Micro",
  11842. height: math.unit(1, "mm"),
  11843. default: true
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(150, "lb"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/judio/front.svg",
  11856. extra: 1258 / 1110
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Normal",
  11863. height: math.unit(5 + 6 / 12, "feet")
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(1000, "feet"),
  11868. default: true
  11869. },
  11870. {
  11871. name: "Megamacro",
  11872. height: math.unit(10, "miles")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11878. {
  11879. frontDressed: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(68, "kg"),
  11882. name: "Front (Dressed)",
  11883. image: {
  11884. source: "./media/characters/nomaxice/front-dressed.svg",
  11885. extra: 1137/824,
  11886. bottom: 74/1211
  11887. }
  11888. },
  11889. frontShorts: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(68, "kg"),
  11892. name: "Front (Shorts)",
  11893. image: {
  11894. source: "./media/characters/nomaxice/front-shorts.svg",
  11895. extra: 1137/824,
  11896. bottom: 74/1211
  11897. }
  11898. },
  11899. back: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(68, "kg"),
  11902. name: "Back",
  11903. image: {
  11904. source: "./media/characters/nomaxice/back.svg",
  11905. extra: 822/786,
  11906. bottom: 39/861
  11907. }
  11908. },
  11909. hand: {
  11910. height: math.unit(0.565, "feet"),
  11911. name: "Hand",
  11912. image: {
  11913. source: "./media/characters/nomaxice/hand.svg"
  11914. }
  11915. },
  11916. foot: {
  11917. height: math.unit(1, "feet"),
  11918. name: "Foot",
  11919. image: {
  11920. source: "./media/characters/nomaxice/foot.svg"
  11921. }
  11922. },
  11923. },
  11924. [
  11925. {
  11926. name: "Micro",
  11927. height: math.unit(8, "cm")
  11928. },
  11929. {
  11930. name: "Norm",
  11931. height: math.unit(1.82, "m")
  11932. },
  11933. {
  11934. name: "Norm+",
  11935. height: math.unit(8.8, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Big",
  11940. height: math.unit(8, "meters")
  11941. },
  11942. {
  11943. name: "Macro",
  11944. height: math.unit(18, "meters")
  11945. },
  11946. {
  11947. name: "Macro+",
  11948. height: math.unit(88, "meters")
  11949. },
  11950. ]
  11951. ))
  11952. characterMakers.push(() => makeCharacter(
  11953. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11954. {
  11955. front: {
  11956. height: math.unit(12, "feet"),
  11957. weight: math.unit(1.5, "tons"),
  11958. name: "Front",
  11959. image: {
  11960. source: "./media/characters/dydros/front.svg",
  11961. extra: 863 / 800,
  11962. bottom: 0.015
  11963. }
  11964. },
  11965. back: {
  11966. height: math.unit(12, "feet"),
  11967. weight: math.unit(1.5, "tons"),
  11968. name: "Back",
  11969. image: {
  11970. source: "./media/characters/dydros/back.svg",
  11971. extra: 900 / 843,
  11972. bottom: 0.005
  11973. }
  11974. },
  11975. },
  11976. [
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(12, "feet"),
  11980. default: true
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(100, "kg"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/riggi/front.svg",
  11993. extra: 5787 / 5303
  11994. }
  11995. },
  11996. hyper: {
  11997. height: math.unit(6 * 5 / 3, "feet"),
  11998. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11999. name: "Hyper",
  12000. image: {
  12001. source: "./media/characters/riggi/hyper.svg",
  12002. extra: 3595 / 3485
  12003. }
  12004. },
  12005. },
  12006. [
  12007. {
  12008. name: "Small Macro",
  12009. height: math.unit(50, "feet")
  12010. },
  12011. {
  12012. name: "Default",
  12013. height: math.unit(200, "feet"),
  12014. default: true
  12015. },
  12016. {
  12017. name: "Loom",
  12018. height: math.unit(10000, "feet")
  12019. },
  12020. {
  12021. name: "Cruising Altitude",
  12022. height: math.unit(30000, "feet")
  12023. },
  12024. {
  12025. name: "Megamacro",
  12026. height: math.unit(100, "miles")
  12027. },
  12028. {
  12029. name: "Continent Sized",
  12030. height: math.unit(2800, "miles")
  12031. },
  12032. {
  12033. name: "Earth Sized",
  12034. height: math.unit(8000, "miles")
  12035. },
  12036. ]
  12037. ))
  12038. characterMakers.push(() => makeCharacter(
  12039. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12040. {
  12041. front: {
  12042. height: math.unit(6, "feet"),
  12043. weight: math.unit(250, "lb"),
  12044. name: "Front",
  12045. image: {
  12046. source: "./media/characters/alexi/front.svg",
  12047. extra: 3483 / 3291,
  12048. bottom: 0.04
  12049. }
  12050. },
  12051. back: {
  12052. height: math.unit(6, "feet"),
  12053. weight: math.unit(250, "lb"),
  12054. name: "Back",
  12055. image: {
  12056. source: "./media/characters/alexi/back.svg",
  12057. extra: 3533 / 3356,
  12058. bottom: 0.021
  12059. }
  12060. },
  12061. frontTransforming: {
  12062. height: math.unit(8.58, "feet"),
  12063. weight: math.unit(1300, "lb"),
  12064. name: "Transforming",
  12065. image: {
  12066. source: "./media/characters/alexi/front-transforming.svg",
  12067. extra: 437 / 409,
  12068. bottom: 19 / 458.66
  12069. }
  12070. },
  12071. frontTransformed: {
  12072. height: math.unit(12.5, "feet"),
  12073. weight: math.unit(4000, "lb"),
  12074. name: "Transformed",
  12075. image: {
  12076. source: "./media/characters/alexi/front-transformed.svg",
  12077. extra: 639 / 614,
  12078. bottom: 30.55 / 671
  12079. }
  12080. },
  12081. },
  12082. [
  12083. {
  12084. name: "Normal",
  12085. height: math.unit(14, "feet"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Minimacro",
  12090. height: math.unit(30, "meters")
  12091. },
  12092. {
  12093. name: "Macro",
  12094. height: math.unit(500, "meters")
  12095. },
  12096. {
  12097. name: "Megamacro",
  12098. height: math.unit(9000, "km")
  12099. },
  12100. {
  12101. name: "Teramacro",
  12102. height: math.unit(384000, "km")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(150, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/kayroo/front.svg",
  12115. extra: 1153 / 1038,
  12116. bottom: 0.06
  12117. }
  12118. },
  12119. foot: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(150, "lb"),
  12122. name: "Foot",
  12123. image: {
  12124. source: "./media/characters/kayroo/foot.svg"
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(8, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Minimacro",
  12136. height: math.unit(250, "feet")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(2800, "feet")
  12141. },
  12142. {
  12143. name: "Megamacro",
  12144. height: math.unit(5200, "feet")
  12145. },
  12146. {
  12147. name: "Gigamacro",
  12148. height: math.unit(27000, "feet")
  12149. },
  12150. {
  12151. name: "Omega",
  12152. height: math.unit(45000, "feet")
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(18, "feet"),
  12161. weight: math.unit(5800, "lb"),
  12162. name: "Front",
  12163. image: {
  12164. source: "./media/characters/rhys/front.svg",
  12165. extra: 3386 / 3090,
  12166. bottom: 0.07
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Normal",
  12173. height: math.unit(18, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Working Size",
  12178. height: math.unit(200, "feet")
  12179. },
  12180. {
  12181. name: "Demolition Size",
  12182. height: math.unit(2000, "feet")
  12183. },
  12184. {
  12185. name: "Maximum Licensed Size",
  12186. height: math.unit(5, "miles")
  12187. },
  12188. {
  12189. name: "Maximum Observed Size",
  12190. height: math.unit(10, "yottameters")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(250, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/toto/front.svg",
  12203. extra: 527 / 479,
  12204. bottom: 0.05
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Micro",
  12211. height: math.unit(3, "feet")
  12212. },
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(10, "feet")
  12216. },
  12217. {
  12218. name: "Macro",
  12219. height: math.unit(150, "feet"),
  12220. default: true
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(1200, "feet")
  12225. },
  12226. ]
  12227. ))
  12228. characterMakers.push(() => makeCharacter(
  12229. { name: "King", species: ["lion"], tags: ["anthro"] },
  12230. {
  12231. back: {
  12232. height: math.unit(6, "feet"),
  12233. weight: math.unit(150, "lb"),
  12234. name: "Back",
  12235. image: {
  12236. source: "./media/characters/king/back.svg"
  12237. }
  12238. },
  12239. },
  12240. [
  12241. {
  12242. name: "Micro",
  12243. height: math.unit(2, "inches")
  12244. },
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(8, "feet")
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(200, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(50, "miles")
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(11, "feet"),
  12265. weight: math.unit(1400, "lb"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/cordite/front.svg",
  12269. extra: 1919/1827,
  12270. bottom: 40/1959
  12271. }
  12272. },
  12273. side: {
  12274. height: math.unit(11, "feet"),
  12275. weight: math.unit(1400, "lb"),
  12276. name: "Side",
  12277. image: {
  12278. source: "./media/characters/cordite/side.svg",
  12279. extra: 1908/1793,
  12280. bottom: 38/1946
  12281. }
  12282. },
  12283. back: {
  12284. height: math.unit(11, "feet"),
  12285. weight: math.unit(1400, "lb"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/cordite/back.svg",
  12289. extra: 1938/1837,
  12290. bottom: 10/1948
  12291. }
  12292. },
  12293. feral: {
  12294. height: math.unit(2, "feet"),
  12295. weight: math.unit(90, "lb"),
  12296. name: "Feral",
  12297. image: {
  12298. source: "./media/characters/cordite/feral.svg",
  12299. extra: 1260 / 755,
  12300. bottom: 0.05
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(11, "feet"),
  12308. default: true
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(6, "feet"),
  12317. weight: math.unit(150, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/pianostrong/front.svg",
  12321. extra: 6577 / 6254,
  12322. bottom: 0.02
  12323. }
  12324. },
  12325. side: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(150, "lb"),
  12328. name: "Side",
  12329. image: {
  12330. source: "./media/characters/pianostrong/side.svg",
  12331. extra: 6106 / 5730
  12332. }
  12333. },
  12334. back: {
  12335. height: math.unit(6, "feet"),
  12336. weight: math.unit(150, "lb"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/pianostrong/back.svg",
  12340. extra: 6085 / 5733,
  12341. bottom: 0.01
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Macro",
  12348. height: math.unit(100, "feet")
  12349. },
  12350. {
  12351. name: "Macro+",
  12352. height: math.unit(300, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Macro++",
  12357. height: math.unit(1000, "feet")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(6, "feet"),
  12366. weight: math.unit(150, "lb"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/kona/front.svg",
  12370. extra: 2960 / 2629,
  12371. bottom: 0.005
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Normal",
  12378. height: math.unit(11 + 8 / 12, "feet")
  12379. },
  12380. {
  12381. name: "Macro",
  12382. height: math.unit(850, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Macro+",
  12387. height: math.unit(1.5, "km"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(80, "miles")
  12393. },
  12394. {
  12395. name: "Gigamacro",
  12396. height: math.unit(3500, "miles")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12402. {
  12403. side: {
  12404. height: math.unit(1.9, "meters"),
  12405. weight: math.unit(326, "kg"),
  12406. name: "Side",
  12407. image: {
  12408. source: "./media/characters/levi/side.svg",
  12409. extra: 1704 / 1334,
  12410. bottom: 0.02
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(1.9, "meters"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Macro",
  12422. height: math.unit(20, "meters")
  12423. },
  12424. {
  12425. name: "Macro+",
  12426. height: math.unit(200, "meters")
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(2, "km")
  12431. },
  12432. {
  12433. name: "Megamacro+",
  12434. height: math.unit(20, "km")
  12435. },
  12436. {
  12437. name: "Gigamacro",
  12438. height: math.unit(2500, "km")
  12439. },
  12440. {
  12441. name: "Gigamacro+",
  12442. height: math.unit(120000, "km")
  12443. },
  12444. {
  12445. name: "Teramacro",
  12446. height: math.unit(7.77e6, "km")
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(6 + 4/12, "feet"),
  12455. weight: math.unit(190, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/bmc/front.svg",
  12459. extra: 1626/1472,
  12460. bottom: 79/1705
  12461. }
  12462. },
  12463. back: {
  12464. height: math.unit(6 + 4/12, "feet"),
  12465. weight: math.unit(190, "lb"),
  12466. name: "Back",
  12467. image: {
  12468. source: "./media/characters/bmc/back.svg",
  12469. extra: 1640/1479,
  12470. bottom: 45/1685
  12471. }
  12472. },
  12473. frontArmor: {
  12474. height: math.unit(6 + 4/12, "feet"),
  12475. weight: math.unit(190, "lb"),
  12476. name: "Front-armor",
  12477. image: {
  12478. source: "./media/characters/bmc/front-armor.svg",
  12479. extra: 1538/1468,
  12480. bottom: 79/1617
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Human-sized",
  12487. height: math.unit(6 + 4 / 12, "feet")
  12488. },
  12489. {
  12490. name: "Interactive Size",
  12491. height: math.unit(25, "feet")
  12492. },
  12493. {
  12494. name: "Small",
  12495. height: math.unit(250, "feet")
  12496. },
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(1250, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Good Day",
  12504. height: math.unit(88, "miles")
  12505. },
  12506. {
  12507. name: "Largest Measured Size",
  12508. height: math.unit(105.960, "galaxies")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(20, "feet"),
  12517. weight: math.unit(2016, "kg"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/sven-the-kaiju/front.svg",
  12521. extra: 1277/1250,
  12522. bottom: 35/1312
  12523. }
  12524. },
  12525. mouth: {
  12526. height: math.unit(1.85, "feet"),
  12527. name: "Mouth",
  12528. image: {
  12529. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Fairy",
  12536. height: math.unit(6, "inches")
  12537. },
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(20, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Rampage",
  12545. height: math.unit(200, "feet")
  12546. },
  12547. {
  12548. name: "Archfey Forest Guardian",
  12549. height: math.unit(1, "mile")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(4, "meters"),
  12558. weight: math.unit(2, "tons"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/marik/front.svg",
  12562. extra: 1057 / 1003,
  12563. bottom: 0.08
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(4, "meters"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Macro",
  12575. height: math.unit(20, "meters")
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(50, "km")
  12580. },
  12581. {
  12582. name: "Gigamacro",
  12583. height: math.unit(100, "km")
  12584. },
  12585. {
  12586. name: "Alpha Macro",
  12587. height: math.unit(7.88e7, "yottameters")
  12588. },
  12589. ]
  12590. ))
  12591. characterMakers.push(() => makeCharacter(
  12592. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12593. {
  12594. front: {
  12595. height: math.unit(6, "feet"),
  12596. weight: math.unit(110, "lb"),
  12597. name: "Front",
  12598. image: {
  12599. source: "./media/characters/mel/front.svg",
  12600. extra: 736 / 617,
  12601. bottom: 0.017
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Pico",
  12608. height: math.unit(3, "pm")
  12609. },
  12610. {
  12611. name: "Nano",
  12612. height: math.unit(3, "nm")
  12613. },
  12614. {
  12615. name: "Micro",
  12616. height: math.unit(0.3, "mm"),
  12617. default: true
  12618. },
  12619. {
  12620. name: "Micro+",
  12621. height: math.unit(3, "mm")
  12622. },
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(5 + 10.5 / 12, "feet")
  12626. },
  12627. ]
  12628. ))
  12629. characterMakers.push(() => makeCharacter(
  12630. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12631. {
  12632. kaiju: {
  12633. height: math.unit(1.75, "meters"),
  12634. weight: math.unit(55, "kg"),
  12635. name: "Kaiju",
  12636. image: {
  12637. source: "./media/characters/lykonous/kaiju.svg",
  12638. extra: 1055 / 946,
  12639. bottom: 0.135
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(2.5, "meters"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Kaiju Dragon",
  12651. height: math.unit(60, "meters")
  12652. },
  12653. {
  12654. name: "Mega Kaiju",
  12655. height: math.unit(120, "km")
  12656. },
  12657. {
  12658. name: "Giga Kaiju",
  12659. height: math.unit(200, "megameters")
  12660. },
  12661. {
  12662. name: "Terra Kaiju",
  12663. height: math.unit(400, "gigameters")
  12664. },
  12665. {
  12666. name: "Kaiju Dragon God",
  12667. height: math.unit(13000, "exaparsecs")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/blü/front.svg",
  12680. extra: 1883 / 1564,
  12681. bottom: 0.031
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(13, "feet"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Big Boi",
  12693. height: math.unit(150, "meters")
  12694. },
  12695. {
  12696. name: "Mini Stomper",
  12697. height: math.unit(300, "meters")
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(1000, "meters")
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(11000, "meters")
  12706. },
  12707. {
  12708. name: "Gigamacro",
  12709. height: math.unit(11000, "km")
  12710. },
  12711. {
  12712. name: "Teramacro",
  12713. height: math.unit(420000, "km")
  12714. },
  12715. {
  12716. name: "Examacro",
  12717. height: math.unit(120, "parsecs")
  12718. },
  12719. {
  12720. name: "God Tho",
  12721. height: math.unit(98000000000, "parsecs")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12727. {
  12728. taurFront: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(200, "lb"),
  12731. name: "Taur (Front)",
  12732. image: {
  12733. source: "./media/characters/scales/taur-front.svg",
  12734. extra: 1,
  12735. bottom: 0.05
  12736. }
  12737. },
  12738. taurBack: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(200, "lb"),
  12741. name: "Taur (Back)",
  12742. image: {
  12743. source: "./media/characters/scales/taur-back.svg",
  12744. extra: 1,
  12745. bottom: 0.08
  12746. }
  12747. },
  12748. anthro: {
  12749. height: math.unit(6 * 7 / 12, "feet"),
  12750. weight: math.unit(100, "lb"),
  12751. name: "Anthro",
  12752. image: {
  12753. source: "./media/characters/scales/anthro.svg",
  12754. extra: 1,
  12755. bottom: 0.06
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(12, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/koragos/front.svg",
  12776. extra: 841 / 794,
  12777. bottom: 0.035
  12778. }
  12779. },
  12780. back: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Back",
  12784. image: {
  12785. source: "./media/characters/koragos/back.svg",
  12786. extra: 841 / 810,
  12787. bottom: 0.022
  12788. }
  12789. },
  12790. },
  12791. [
  12792. {
  12793. name: "Normal",
  12794. height: math.unit(6 + 11 / 12, "feet"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Macro",
  12799. height: math.unit(490, "feet")
  12800. },
  12801. {
  12802. name: "Megamacro",
  12803. height: math.unit(10, "miles")
  12804. },
  12805. {
  12806. name: "Gigamacro",
  12807. height: math.unit(50, "miles")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(250, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/xylrem/front.svg",
  12820. extra: 3323 / 3050,
  12821. bottom: 0.065
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Micro",
  12828. height: math.unit(4, "feet")
  12829. },
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(16, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(2720, "feet")
  12838. },
  12839. {
  12840. name: "Megamacro",
  12841. height: math.unit(25000, "miles")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(8, "feet"),
  12850. weight: math.unit(250, "kg"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/ikideru/front.svg",
  12854. extra: 930 / 870,
  12855. bottom: 0.087
  12856. }
  12857. },
  12858. back: {
  12859. height: math.unit(8, "feet"),
  12860. weight: math.unit(250, "kg"),
  12861. name: "Back",
  12862. image: {
  12863. source: "./media/characters/ikideru/back.svg",
  12864. extra: 919 / 852,
  12865. bottom: 0.055
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Rare",
  12872. height: math.unit(8, "feet"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Playful Loom",
  12877. height: math.unit(80, "feet")
  12878. },
  12879. {
  12880. name: "City Leaner",
  12881. height: math.unit(230, "feet")
  12882. },
  12883. {
  12884. name: "Megamacro",
  12885. height: math.unit(2500, "feet")
  12886. },
  12887. {
  12888. name: "Gigamacro",
  12889. height: math.unit(26400, "feet")
  12890. },
  12891. {
  12892. name: "Tectonic Shifter",
  12893. height: math.unit(1.7, "megameters")
  12894. },
  12895. {
  12896. name: "Planet Carer",
  12897. height: math.unit(21, "megameters")
  12898. },
  12899. {
  12900. name: "God",
  12901. height: math.unit(11157.22, "parsecs")
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(6, "feet"),
  12910. weight: math.unit(120, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/neo/front.svg"
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(2, "inches"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Human Size",
  12925. height: math.unit(5 + 8 / 12, "feet")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(13 + 10 / 12, "feet"),
  12934. weight: math.unit(5320, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/chauncey-chantz/front.svg",
  12938. extra: 1587 / 1435,
  12939. bottom: 0.02
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(13 + 10 / 12, "feet"),
  12947. default: true
  12948. },
  12949. {
  12950. name: "Macro",
  12951. height: math.unit(45, "feet")
  12952. },
  12953. {
  12954. name: "Megamacro",
  12955. height: math.unit(250, "miles")
  12956. },
  12957. {
  12958. name: "Planetary",
  12959. height: math.unit(10000, "miles")
  12960. },
  12961. {
  12962. name: "Galactic",
  12963. height: math.unit(40000, "parsecs")
  12964. },
  12965. {
  12966. name: "Universal",
  12967. height: math.unit(1, "yottameter")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/epifox/front.svg",
  12980. extra: 1,
  12981. bottom: 0.075
  12982. }
  12983. },
  12984. },
  12985. [
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(6, "inches")
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(12, "feet"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(3810, "feet")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(500, "miles")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(1.8796, "m"),
  13010. weight: math.unit(230, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/colin-t/front.svg",
  13014. extra: 1272 / 1193,
  13015. bottom: 0.07
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Micro",
  13022. height: math.unit(0.571, "meters")
  13023. },
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(1.8796, "meters"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Tall",
  13031. height: math.unit(4, "meters")
  13032. },
  13033. {
  13034. name: "Macro",
  13035. height: math.unit(67.241, "meters")
  13036. },
  13037. {
  13038. name: "Megamacro",
  13039. height: math.unit(371.856, "meters")
  13040. },
  13041. {
  13042. name: "Planetary",
  13043. height: math.unit(12631.5689, "km")
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(1.85, "meters"),
  13052. weight: math.unit(80, "kg"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/matvei/front.svg",
  13056. extra: 456/447,
  13057. bottom: 8/464
  13058. }
  13059. },
  13060. back: {
  13061. height: math.unit(1.85, "meters"),
  13062. weight: math.unit(80, "kg"),
  13063. name: "Back",
  13064. image: {
  13065. source: "./media/characters/matvei/back.svg",
  13066. extra: 434/427,
  13067. bottom: 11/445
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Normal",
  13074. height: math.unit(1.85, "meters"),
  13075. default: true
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(5 + 9 / 12, "feet"),
  13084. weight: math.unit(70, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/quincy/front.svg",
  13088. extra: 3041 / 2751
  13089. }
  13090. },
  13091. back: {
  13092. height: math.unit(5 + 9 / 12, "feet"),
  13093. weight: math.unit(70, "lb"),
  13094. name: "Back",
  13095. image: {
  13096. source: "./media/characters/quincy/back.svg",
  13097. extra: 3041 / 2751
  13098. }
  13099. },
  13100. flying: {
  13101. height: math.unit(5 + 4 / 12, "feet"),
  13102. weight: math.unit(70, "lb"),
  13103. name: "Flying",
  13104. image: {
  13105. source: "./media/characters/quincy/flying.svg",
  13106. extra: 1044 / 930
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(3, "cm")
  13114. },
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(5 + 9 / 12, "feet")
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(200, "meters"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Megamacro",
  13126. height: math.unit(1000, "meters")
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(3 + 11/12, "feet"),
  13135. weight: math.unit(50, "lb"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/vanrel/front.svg",
  13139. extra: 1104/949,
  13140. bottom: 52/1156
  13141. }
  13142. },
  13143. back: {
  13144. height: math.unit(3 + 11/12, "feet"),
  13145. weight: math.unit(50, "lb"),
  13146. name: "Back",
  13147. image: {
  13148. source: "./media/characters/vanrel/back.svg",
  13149. extra: 1119/976,
  13150. bottom: 37/1156
  13151. }
  13152. },
  13153. tome: {
  13154. height: math.unit(1.35, "feet"),
  13155. weight: math.unit(10, "lb"),
  13156. name: "Vanrel's Tome",
  13157. rename: true,
  13158. image: {
  13159. source: "./media/characters/vanrel/tome.svg"
  13160. }
  13161. },
  13162. beans: {
  13163. height: math.unit(0.89, "feet"),
  13164. name: "Beans",
  13165. image: {
  13166. source: "./media/characters/vanrel/beans.svg"
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(3 + 11/12, "feet"),
  13174. default: true
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13180. {
  13181. front: {
  13182. height: math.unit(7 + 5 / 12, "feet"),
  13183. name: "Front",
  13184. image: {
  13185. source: "./media/characters/kuiper-vanrel/front.svg",
  13186. extra: 1219/1169,
  13187. bottom: 69/1288
  13188. }
  13189. },
  13190. back: {
  13191. height: math.unit(7 + 5 / 12, "feet"),
  13192. name: "Back",
  13193. image: {
  13194. source: "./media/characters/kuiper-vanrel/back.svg",
  13195. extra: 1236/1193,
  13196. bottom: 27/1263
  13197. }
  13198. },
  13199. foot: {
  13200. height: math.unit(0.55, "meters"),
  13201. name: "Foot",
  13202. image: {
  13203. source: "./media/characters/kuiper-vanrel/foot.svg",
  13204. }
  13205. },
  13206. battle: {
  13207. height: math.unit(6.824, "feet"),
  13208. name: "Battle",
  13209. image: {
  13210. source: "./media/characters/kuiper-vanrel/battle.svg",
  13211. extra: 1466 / 1327,
  13212. bottom: 29 / 1492.5
  13213. }
  13214. },
  13215. meerkui: {
  13216. height: math.unit(18, "inches"),
  13217. name: "Meerkui",
  13218. image: {
  13219. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13220. extra: 1354/1289,
  13221. bottom: 69/1423
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Normal",
  13228. height: math.unit(7 + 5 / 12, "feet"),
  13229. default: true
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(8 + 5 / 12, "feet"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/keset-vanrel/front.svg",
  13241. extra: 1231/1148,
  13242. bottom: 82/1313
  13243. }
  13244. },
  13245. back: {
  13246. height: math.unit(8 + 5 / 12, "feet"),
  13247. name: "Back",
  13248. image: {
  13249. source: "./media/characters/keset-vanrel/back.svg",
  13250. extra: 1240/1174,
  13251. bottom: 33/1273
  13252. }
  13253. },
  13254. hand: {
  13255. height: math.unit(0.6, "meters"),
  13256. name: "Hand",
  13257. image: {
  13258. source: "./media/characters/keset-vanrel/hand.svg"
  13259. }
  13260. },
  13261. foot: {
  13262. height: math.unit(0.94978, "meters"),
  13263. name: "Foot",
  13264. image: {
  13265. source: "./media/characters/keset-vanrel/foot.svg"
  13266. }
  13267. },
  13268. battle: {
  13269. height: math.unit(7.408, "feet"),
  13270. name: "Battle",
  13271. image: {
  13272. source: "./media/characters/keset-vanrel/battle.svg",
  13273. extra: 1890 / 1386,
  13274. bottom: 73.28 / 1970
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(8 + 5 / 12, "feet"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/neos/front.svg",
  13295. extra: 1696 / 992,
  13296. bottom: 0.14
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Normal",
  13303. height: math.unit(54, "cm"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Macro",
  13308. height: math.unit(100, "m")
  13309. },
  13310. {
  13311. name: "Megamacro",
  13312. height: math.unit(10, "km")
  13313. },
  13314. {
  13315. name: "Megamacro+",
  13316. height: math.unit(100, "km")
  13317. },
  13318. {
  13319. name: "Gigamacro",
  13320. height: math.unit(100, "Mm")
  13321. },
  13322. {
  13323. name: "Teramacro",
  13324. height: math.unit(100, "Gm")
  13325. },
  13326. {
  13327. name: "Examacro",
  13328. height: math.unit(100, "Em")
  13329. },
  13330. {
  13331. name: "Godly",
  13332. height: math.unit(10000, "Ym")
  13333. },
  13334. {
  13335. name: "Beyond Godly",
  13336. height: math.unit(25, "multiverses")
  13337. },
  13338. ]
  13339. ))
  13340. characterMakers.push(() => makeCharacter(
  13341. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13342. {
  13343. feminine: {
  13344. height: math.unit(5, "feet"),
  13345. weight: math.unit(100, "lb"),
  13346. name: "Feminine",
  13347. image: {
  13348. source: "./media/characters/sammy-mouse/feminine.svg",
  13349. extra: 2526 / 2425,
  13350. bottom: 0.123
  13351. }
  13352. },
  13353. masculine: {
  13354. height: math.unit(5, "feet"),
  13355. weight: math.unit(100, "lb"),
  13356. name: "Masculine",
  13357. image: {
  13358. source: "./media/characters/sammy-mouse/masculine.svg",
  13359. extra: 2526 / 2425,
  13360. bottom: 0.123
  13361. }
  13362. },
  13363. },
  13364. [
  13365. {
  13366. name: "Micro",
  13367. height: math.unit(5, "inches")
  13368. },
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(5, "feet"),
  13372. default: true
  13373. },
  13374. {
  13375. name: "Macro",
  13376. height: math.unit(60, "feet")
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13382. {
  13383. front: {
  13384. height: math.unit(4, "feet"),
  13385. weight: math.unit(50, "lb"),
  13386. name: "Front",
  13387. image: {
  13388. source: "./media/characters/kole/front.svg",
  13389. extra: 1423 / 1303,
  13390. bottom: 0.025
  13391. }
  13392. },
  13393. back: {
  13394. height: math.unit(4, "feet"),
  13395. weight: math.unit(50, "lb"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/kole/back.svg",
  13399. extra: 1426 / 1280,
  13400. bottom: 0.02
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Normal",
  13407. height: math.unit(4, "feet"),
  13408. default: true
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(2.5, "feet"),
  13417. weight: math.unit(32, "lb"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/rufran/front.svg",
  13421. extra: 1313/885,
  13422. bottom: 94/1407
  13423. }
  13424. },
  13425. side: {
  13426. height: math.unit(2.5, "feet"),
  13427. weight: math.unit(32, "lb"),
  13428. name: "Side",
  13429. image: {
  13430. source: "./media/characters/rufran/side.svg",
  13431. extra: 1109/852,
  13432. bottom: 118/1227
  13433. }
  13434. },
  13435. back: {
  13436. height: math.unit(2.5, "feet"),
  13437. weight: math.unit(32, "lb"),
  13438. name: "Back",
  13439. image: {
  13440. source: "./media/characters/rufran/back.svg",
  13441. extra: 1280/878,
  13442. bottom: 131/1411
  13443. }
  13444. },
  13445. mouth: {
  13446. height: math.unit(1.13, "feet"),
  13447. name: "Mouth",
  13448. image: {
  13449. source: "./media/characters/rufran/mouth.svg"
  13450. }
  13451. },
  13452. foot: {
  13453. height: math.unit(1.33, "feet"),
  13454. name: "Foot",
  13455. image: {
  13456. source: "./media/characters/rufran/foot.svg"
  13457. }
  13458. },
  13459. koboldFront: {
  13460. height: math.unit(2 + 6 / 12, "feet"),
  13461. weight: math.unit(20, "lb"),
  13462. name: "Front (Kobold)",
  13463. image: {
  13464. source: "./media/characters/rufran/kobold-front.svg",
  13465. extra: 2041 / 1839,
  13466. bottom: 0.055
  13467. }
  13468. },
  13469. koboldBack: {
  13470. height: math.unit(2 + 6 / 12, "feet"),
  13471. weight: math.unit(20, "lb"),
  13472. name: "Back (Kobold)",
  13473. image: {
  13474. source: "./media/characters/rufran/kobold-back.svg",
  13475. extra: 2054 / 1839,
  13476. bottom: 0.01
  13477. }
  13478. },
  13479. koboldHand: {
  13480. height: math.unit(0.2166, "meters"),
  13481. name: "Hand (Kobold)",
  13482. image: {
  13483. source: "./media/characters/rufran/kobold-hand.svg"
  13484. }
  13485. },
  13486. koboldFoot: {
  13487. height: math.unit(0.185, "meters"),
  13488. name: "Foot (Kobold)",
  13489. image: {
  13490. source: "./media/characters/rufran/kobold-foot.svg"
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Micro",
  13497. height: math.unit(1, "inch")
  13498. },
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(2 + 6 / 12, "feet"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Big",
  13506. height: math.unit(60, "feet")
  13507. },
  13508. {
  13509. name: "Macro",
  13510. height: math.unit(325, "feet")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(0.3, "meters"),
  13519. weight: math.unit(3.5, "kg"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/chip/front.svg",
  13523. extra: 748 / 674
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Micro",
  13530. height: math.unit(1, "inch"),
  13531. default: true
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13537. {
  13538. side: {
  13539. height: math.unit(2.3, "meters"),
  13540. weight: math.unit(3500, "lb"),
  13541. name: "Side",
  13542. image: {
  13543. source: "./media/characters/torvid/side.svg",
  13544. extra: 1972 / 722,
  13545. bottom: 0.035
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Normal",
  13552. height: math.unit(2.3, "meters"),
  13553. default: true
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(2, "meters"),
  13562. weight: math.unit(150.5, "kg"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/susan/front.svg",
  13566. extra: 693 / 635,
  13567. bottom: 0.05
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(505, "miles"),
  13575. default: true
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/raindrops/front.svg",
  13588. extra: 2655 / 2461,
  13589. bottom: 49 / 2705
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(150, "lb"),
  13595. name: "Back",
  13596. image: {
  13597. source: "./media/characters/raindrops/back.svg",
  13598. extra: 2574 / 2400,
  13599. bottom: 65 / 2634
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Micro",
  13606. height: math.unit(6, "inches")
  13607. },
  13608. {
  13609. name: "Normal",
  13610. height: math.unit(6 + 2 / 12, "feet")
  13611. },
  13612. {
  13613. name: "Macro",
  13614. height: math.unit(131, "feet"),
  13615. default: true
  13616. },
  13617. {
  13618. name: "Megamacro",
  13619. height: math.unit(15, "miles")
  13620. },
  13621. {
  13622. name: "Gigamacro",
  13623. height: math.unit(4000, "miles")
  13624. },
  13625. {
  13626. name: "Teramacro",
  13627. height: math.unit(315000, "miles")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(2.794, "meters"),
  13636. weight: math.unit(325, "kg"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/tezwa/front.svg",
  13640. extra: 2083 / 1906,
  13641. bottom: 0.031
  13642. }
  13643. },
  13644. foot: {
  13645. height: math.unit(0.687, "meters"),
  13646. name: "Foot",
  13647. image: {
  13648. source: "./media/characters/tezwa/foot.svg"
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Normal",
  13655. height: math.unit(9 + 2 / 12, "feet"),
  13656. default: true
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(58, "feet"),
  13665. weight: math.unit(89000, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/typhus/front.svg",
  13669. extra: 816 / 800,
  13670. bottom: 0.065
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(58, "feet"),
  13678. default: true
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(12, "feet"),
  13687. weight: math.unit(6, "tonnes"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/lyra-von-wulf/front.svg",
  13691. extra: 1,
  13692. bottom: 0.10
  13693. }
  13694. },
  13695. frontMecha: {
  13696. height: math.unit(12, "feet"),
  13697. weight: math.unit(12, "tonnes"),
  13698. name: "Front (Mecha)",
  13699. image: {
  13700. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13701. extra: 1,
  13702. bottom: 0.042
  13703. }
  13704. },
  13705. maw: {
  13706. height: math.unit(2.2, "feet"),
  13707. name: "Maw",
  13708. image: {
  13709. source: "./media/characters/lyra-von-wulf/maw.svg"
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Normal",
  13716. height: math.unit(12, "feet"),
  13717. default: true
  13718. },
  13719. {
  13720. name: "Classic",
  13721. height: math.unit(50, "feet")
  13722. },
  13723. {
  13724. name: "Macro",
  13725. height: math.unit(500, "feet")
  13726. },
  13727. {
  13728. name: "Megamacro",
  13729. height: math.unit(1, "mile")
  13730. },
  13731. {
  13732. name: "Gigamacro",
  13733. height: math.unit(400, "miles")
  13734. },
  13735. {
  13736. name: "Teramacro",
  13737. height: math.unit(22000, "miles")
  13738. },
  13739. {
  13740. name: "Solarmacro",
  13741. height: math.unit(8600000, "miles")
  13742. },
  13743. {
  13744. name: "Galactic",
  13745. height: math.unit(1057000, "lightyears")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(6 + 10 / 12, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/dixon/front.svg",
  13758. extra: 3361 / 3209,
  13759. bottom: 0.01
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(6 + 10 / 12, "feet"),
  13767. default: true
  13768. },
  13769. {
  13770. name: "Big",
  13771. height: math.unit(12, "meters")
  13772. },
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(500, "meters")
  13776. },
  13777. {
  13778. name: "Megamacro",
  13779. height: math.unit(2, "km")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(185, "cm"),
  13788. weight: math.unit(68, "kg"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/kauko/front.svg",
  13792. extra: 1455 / 1421,
  13793. bottom: 0.03
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(185, "cm"),
  13798. weight: math.unit(68, "kg"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/kauko/back.svg",
  13802. extra: 1455 / 1421,
  13803. bottom: 0.004
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(185, "cm"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13817. {
  13818. frontSfw: {
  13819. height: math.unit(5, "meters"),
  13820. weight: math.unit(4250, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/varg/front-sfw.svg",
  13824. extra: 1103/1010,
  13825. bottom: 50/1153
  13826. },
  13827. form: "anthro",
  13828. default: true
  13829. },
  13830. backSfw: {
  13831. height: math.unit(5, "meters"),
  13832. weight: math.unit(4250, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/varg/back-sfw.svg",
  13836. extra: 1038/1022,
  13837. bottom: 36/1074
  13838. },
  13839. form: "anthro"
  13840. },
  13841. frontNsfw: {
  13842. height: math.unit(5, "meters"),
  13843. weight: math.unit(4250, "lb"),
  13844. name: "Front (NSFW)",
  13845. image: {
  13846. source: "./media/characters/varg/front-nsfw.svg",
  13847. extra: 1103/1010,
  13848. bottom: 50/1153
  13849. },
  13850. form: "anthro"
  13851. },
  13852. sheath: {
  13853. height: math.unit(3.8, "feet"),
  13854. weight: math.unit(90, "kilograms"),
  13855. name: "Sheath",
  13856. image: {
  13857. source: "./media/characters/varg/sheath.svg"
  13858. },
  13859. form: "anthro"
  13860. },
  13861. dick: {
  13862. height: math.unit(4.6, "feet"),
  13863. weight: math.unit(451, "kilograms"),
  13864. name: "Dick",
  13865. image: {
  13866. source: "./media/characters/varg/dick.svg"
  13867. },
  13868. form: "anthro"
  13869. },
  13870. feralSfw: {
  13871. height: math.unit(5, "meters"),
  13872. weight: math.unit(100000, "lb"),
  13873. name: "Side",
  13874. image: {
  13875. source: "./media/characters/varg/feral-sfw.svg",
  13876. extra: 1065/511,
  13877. bottom: 211/1276
  13878. },
  13879. form: "feral",
  13880. default: true
  13881. },
  13882. feralNsfw: {
  13883. height: math.unit(5, "meters"),
  13884. weight: math.unit(100000, "lb"),
  13885. name: "Side (NSFW)",
  13886. image: {
  13887. source: "./media/characters/varg/feral-nsfw.svg",
  13888. extra: 1065/511,
  13889. bottom: 211/1276
  13890. },
  13891. form: "feral",
  13892. },
  13893. feralSheath: {
  13894. height: math.unit(9.8, "feet"),
  13895. weight: math.unit(2000, "kilograms"),
  13896. name: "Sheath",
  13897. image: {
  13898. source: "./media/characters/varg/sheath.svg"
  13899. },
  13900. form: "feral"
  13901. },
  13902. feralDick: {
  13903. height: math.unit(13.11, "feet"),
  13904. weight: math.unit(10440, "kilograms"),
  13905. name: "Dick",
  13906. image: {
  13907. source: "./media/characters/varg/dick.svg"
  13908. },
  13909. form: "feral"
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Normal",
  13915. height: math.unit(5, "meters"),
  13916. form: "anthro"
  13917. },
  13918. {
  13919. name: "Macro",
  13920. height: math.unit(200, "meters"),
  13921. form: "anthro"
  13922. },
  13923. {
  13924. name: "Megamacro",
  13925. height: math.unit(20, "kilometers"),
  13926. form: "anthro"
  13927. },
  13928. {
  13929. name: "True Size",
  13930. height: math.unit(211, "km"),
  13931. form: "anthro",
  13932. default: true
  13933. },
  13934. {
  13935. name: "Gigamacro",
  13936. height: math.unit(1000, "km"),
  13937. form: "anthro"
  13938. },
  13939. {
  13940. name: "Gigamacro+",
  13941. height: math.unit(8000, "km"),
  13942. form: "anthro"
  13943. },
  13944. {
  13945. name: "Teramacro",
  13946. height: math.unit(1000000, "km"),
  13947. form: "anthro"
  13948. },
  13949. {
  13950. name: "Normal",
  13951. height: math.unit(5, "meters"),
  13952. form: "feral"
  13953. },
  13954. {
  13955. name: "Macro",
  13956. height: math.unit(200, "meters"),
  13957. form: "feral"
  13958. },
  13959. {
  13960. name: "Megamacro",
  13961. height: math.unit(20, "kilometers"),
  13962. form: "feral"
  13963. },
  13964. {
  13965. name: "True Size",
  13966. height: math.unit(211, "km"),
  13967. form: "feral",
  13968. default: true
  13969. },
  13970. {
  13971. name: "Gigamacro",
  13972. height: math.unit(1000, "km"),
  13973. form: "feral"
  13974. },
  13975. {
  13976. name: "Gigamacro+",
  13977. height: math.unit(8000, "km"),
  13978. form: "feral"
  13979. },
  13980. {
  13981. name: "Teramacro",
  13982. height: math.unit(1000000, "km"),
  13983. form: "feral"
  13984. },
  13985. ],
  13986. {
  13987. "anthro": {
  13988. name: "Anthro",
  13989. default: true
  13990. },
  13991. "feral": {
  13992. name: "Feral",
  13993. },
  13994. }
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(7 + 7 / 12, "feet"),
  14001. weight: math.unit(267, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/dayza/front.svg",
  14005. extra: 1262 / 1200,
  14006. bottom: 0.035
  14007. }
  14008. },
  14009. side: {
  14010. height: math.unit(7 + 7 / 12, "feet"),
  14011. weight: math.unit(267, "lb"),
  14012. name: "Side",
  14013. image: {
  14014. source: "./media/characters/dayza/side.svg",
  14015. extra: 1295 / 1245,
  14016. bottom: 0.05
  14017. }
  14018. },
  14019. back: {
  14020. height: math.unit(7 + 7 / 12, "feet"),
  14021. weight: math.unit(267, "lb"),
  14022. name: "Back",
  14023. image: {
  14024. source: "./media/characters/dayza/back.svg",
  14025. extra: 1241 / 1170
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Normal",
  14032. height: math.unit(7 + 7 / 12, "feet"),
  14033. default: true
  14034. },
  14035. {
  14036. name: "Macro",
  14037. height: math.unit(155, "feet")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6 + 5 / 12, "feet"),
  14046. weight: math.unit(160, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/xanthos/front.svg",
  14050. extra: 1,
  14051. bottom: 0.04
  14052. }
  14053. },
  14054. back: {
  14055. height: math.unit(6 + 5 / 12, "feet"),
  14056. weight: math.unit(160, "lb"),
  14057. name: "Back",
  14058. image: {
  14059. source: "./media/characters/xanthos/back.svg",
  14060. extra: 1,
  14061. bottom: 0.03
  14062. }
  14063. },
  14064. hand: {
  14065. height: math.unit(0.928, "feet"),
  14066. name: "Hand",
  14067. image: {
  14068. source: "./media/characters/xanthos/hand.svg"
  14069. }
  14070. },
  14071. foot: {
  14072. height: math.unit(1.286, "feet"),
  14073. name: "Foot",
  14074. image: {
  14075. source: "./media/characters/xanthos/foot.svg"
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(6 + 5 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Normal+",
  14087. height: math.unit(6, "meters")
  14088. },
  14089. {
  14090. name: "Macro",
  14091. height: math.unit(40, "feet")
  14092. },
  14093. {
  14094. name: "Macro+",
  14095. height: math.unit(200, "meters")
  14096. },
  14097. {
  14098. name: "Megamacro",
  14099. height: math.unit(20, "km")
  14100. },
  14101. {
  14102. name: "Megamacro+",
  14103. height: math.unit(100, "km")
  14104. },
  14105. {
  14106. name: "Gigamacro",
  14107. height: math.unit(200, "megameters")
  14108. },
  14109. {
  14110. name: "Gigamacro+",
  14111. height: math.unit(1.5, "gigameters")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(6 + 3 / 12, "feet"),
  14120. weight: math.unit(215, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/grynn/front.svg",
  14124. extra: 4627 / 4209,
  14125. bottom: 0.047
  14126. }
  14127. },
  14128. },
  14129. [
  14130. {
  14131. name: "Micro",
  14132. height: math.unit(6, "inches")
  14133. },
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(6 + 3 / 12, "feet"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Big",
  14141. height: math.unit(104, "feet")
  14142. },
  14143. {
  14144. name: "Macro",
  14145. height: math.unit(944, "feet")
  14146. },
  14147. {
  14148. name: "Macro+",
  14149. height: math.unit(9480, "feet")
  14150. },
  14151. {
  14152. name: "Megamacro",
  14153. height: math.unit(78752, "feet")
  14154. },
  14155. {
  14156. name: "Megamacro+",
  14157. height: math.unit(630128, "feet")
  14158. },
  14159. {
  14160. name: "Megamacro++",
  14161. height: math.unit(3150695, "feet")
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(7 + 5 / 12, "feet"),
  14170. weight: math.unit(450, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/mocha-aura/front.svg",
  14174. extra: 1907 / 1817,
  14175. bottom: 0.04
  14176. }
  14177. },
  14178. back: {
  14179. height: math.unit(7 + 5 / 12, "feet"),
  14180. weight: math.unit(450, "lb"),
  14181. name: "Back",
  14182. image: {
  14183. source: "./media/characters/mocha-aura/back.svg",
  14184. extra: 1900 / 1825,
  14185. bottom: 0.045
  14186. }
  14187. },
  14188. },
  14189. [
  14190. {
  14191. name: "Nano",
  14192. height: math.unit(1, "nm")
  14193. },
  14194. {
  14195. name: "Megamicro",
  14196. height: math.unit(1, "mm")
  14197. },
  14198. {
  14199. name: "Micro",
  14200. height: math.unit(3, "inches")
  14201. },
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(7 + 5 / 12, "feet"),
  14205. default: true
  14206. },
  14207. {
  14208. name: "Macro",
  14209. height: math.unit(30, "feet")
  14210. },
  14211. {
  14212. name: "Megamacro",
  14213. height: math.unit(3500, "feet")
  14214. },
  14215. {
  14216. name: "Teramacro",
  14217. height: math.unit(500000, "miles")
  14218. },
  14219. {
  14220. name: "Petamacro",
  14221. height: math.unit(50000000000000000, "parsecs")
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(6, "feet"),
  14230. weight: math.unit(150, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/ilisha-devya/front.svg",
  14234. extra: 1053/1049,
  14235. bottom: 270/1323
  14236. }
  14237. },
  14238. back: {
  14239. height: math.unit(6, "feet"),
  14240. weight: math.unit(150, "lb"),
  14241. name: "Back",
  14242. image: {
  14243. source: "./media/characters/ilisha-devya/back.svg",
  14244. extra: 1131/1128,
  14245. bottom: 39/1170
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Macro",
  14252. height: math.unit(500, "feet"),
  14253. default: true
  14254. },
  14255. {
  14256. name: "Megamacro",
  14257. height: math.unit(10, "miles")
  14258. },
  14259. {
  14260. name: "Gigamacro",
  14261. height: math.unit(100000, "miles")
  14262. },
  14263. {
  14264. name: "Examacro",
  14265. height: math.unit(1e9, "lightyears")
  14266. },
  14267. {
  14268. name: "Omniversal",
  14269. height: math.unit(1e33, "lightyears")
  14270. },
  14271. {
  14272. name: "Beyond Infinite",
  14273. height: math.unit(1e100, "lightyears")
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14279. {
  14280. Side: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Side",
  14284. image: {
  14285. source: "./media/characters/mira/side.svg",
  14286. extra: 900 / 799,
  14287. bottom: 0.02
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Human Size",
  14294. height: math.unit(6, "feet")
  14295. },
  14296. {
  14297. name: "Macro",
  14298. height: math.unit(100, "feet"),
  14299. default: true
  14300. },
  14301. {
  14302. name: "Megamacro",
  14303. height: math.unit(10, "miles")
  14304. },
  14305. {
  14306. name: "Gigamacro",
  14307. height: math.unit(25000, "miles")
  14308. },
  14309. {
  14310. name: "Teramacro",
  14311. height: math.unit(300, "AU")
  14312. },
  14313. {
  14314. name: "Full Size",
  14315. height: math.unit(4.5e10, "lightyears")
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14321. {
  14322. front: {
  14323. height: math.unit(6, "feet"),
  14324. weight: math.unit(150, "lb"),
  14325. name: "Front",
  14326. image: {
  14327. source: "./media/characters/holly/front.svg",
  14328. extra: 639 / 606
  14329. }
  14330. },
  14331. back: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(150, "lb"),
  14334. name: "Back",
  14335. image: {
  14336. source: "./media/characters/holly/back.svg",
  14337. extra: 623 / 598
  14338. }
  14339. },
  14340. frontWorking: {
  14341. height: math.unit(6, "feet"),
  14342. weight: math.unit(150, "lb"),
  14343. name: "Front (Working)",
  14344. image: {
  14345. source: "./media/characters/holly/front-working.svg",
  14346. extra: 607 / 577,
  14347. bottom: 0.048
  14348. }
  14349. },
  14350. },
  14351. [
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(12 + 3 / 12, "feet"),
  14355. default: true
  14356. },
  14357. ]
  14358. ))
  14359. characterMakers.push(() => makeCharacter(
  14360. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14361. {
  14362. front: {
  14363. height: math.unit(6, "feet"),
  14364. weight: math.unit(150, "lb"),
  14365. name: "Front",
  14366. image: {
  14367. source: "./media/characters/porter/front.svg",
  14368. extra: 1,
  14369. bottom: 0.01
  14370. }
  14371. },
  14372. frontRobes: {
  14373. height: math.unit(6, "feet"),
  14374. weight: math.unit(150, "lb"),
  14375. name: "Front (Robes)",
  14376. image: {
  14377. source: "./media/characters/porter/front-robes.svg",
  14378. extra: 1.01,
  14379. bottom: 0.01
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Normal",
  14386. height: math.unit(11 + 9 / 12, "feet"),
  14387. default: true
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14393. {
  14394. legendary: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Legendary",
  14398. image: {
  14399. source: "./media/characters/lucy/legendary.svg",
  14400. extra: 1355 / 1100,
  14401. bottom: 0.045
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Legendary",
  14408. height: math.unit(86882 * 2, "miles"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(6, "feet"),
  14418. weight: math.unit(150, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/drusilla/front.svg",
  14422. extra: 678 / 635,
  14423. bottom: 0.03
  14424. }
  14425. },
  14426. back: {
  14427. height: math.unit(6, "feet"),
  14428. weight: math.unit(150, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/drusilla/back.svg",
  14432. extra: 678 / 635,
  14433. bottom: 0.005
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Macro",
  14440. height: math.unit(100, "feet")
  14441. },
  14442. {
  14443. name: "Canon Height",
  14444. height: math.unit(2000, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(180, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/renard-thatch/front.svg",
  14458. extra: 2411 / 2275,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. frontPosing: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(180, "lb"),
  14465. name: "Front (Posing)",
  14466. image: {
  14467. source: "./media/characters/renard-thatch/front-posing.svg",
  14468. extra: 2381 / 2261,
  14469. bottom: 0.01
  14470. }
  14471. },
  14472. back: {
  14473. height: math.unit(6, "feet"),
  14474. weight: math.unit(180, "lb"),
  14475. name: "Back",
  14476. image: {
  14477. source: "./media/characters/renard-thatch/back.svg",
  14478. extra: 2428 / 2288
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Micro",
  14485. height: math.unit(3, "inches")
  14486. },
  14487. {
  14488. name: "Default",
  14489. height: math.unit(6, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(75, "feet")
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(1450, "feet"),
  14503. weight: math.unit(1.21e6, "tons"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/sekvra/front.svg",
  14507. extra: 1193/1190,
  14508. bottom: 78/1271
  14509. }
  14510. },
  14511. side: {
  14512. height: math.unit(1450, "feet"),
  14513. weight: math.unit(1.21e6, "tons"),
  14514. name: "Side",
  14515. image: {
  14516. source: "./media/characters/sekvra/side.svg",
  14517. extra: 1193/1190,
  14518. bottom: 52/1245
  14519. }
  14520. },
  14521. back: {
  14522. height: math.unit(1450, "feet"),
  14523. weight: math.unit(1.21e6, "tons"),
  14524. name: "Back",
  14525. image: {
  14526. source: "./media/characters/sekvra/back.svg",
  14527. extra: 1219/1216,
  14528. bottom: 21/1240
  14529. }
  14530. },
  14531. frontClothed: {
  14532. height: math.unit(1450, "feet"),
  14533. weight: math.unit(1.21e6, "tons"),
  14534. name: "Front (Clothed)",
  14535. image: {
  14536. source: "./media/characters/sekvra/front-clothed.svg",
  14537. extra: 1192/1189,
  14538. bottom: 79/1271
  14539. }
  14540. },
  14541. },
  14542. [
  14543. {
  14544. name: "Macro",
  14545. height: math.unit(1450, "feet"),
  14546. default: true
  14547. },
  14548. {
  14549. name: "Megamacro",
  14550. height: math.unit(15000, "feet")
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(6, "feet"),
  14559. weight: math.unit(150, "lb"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/carmine/front.svg",
  14563. extra: 1,
  14564. bottom: 0.035
  14565. }
  14566. },
  14567. frontArmor: {
  14568. height: math.unit(6, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front (Armor)",
  14571. image: {
  14572. source: "./media/characters/carmine/front-armor.svg",
  14573. extra: 1,
  14574. bottom: 0.035
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Large",
  14581. height: math.unit(1, "mile")
  14582. },
  14583. {
  14584. name: "Huge",
  14585. height: math.unit(40, "miles"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Colossal",
  14590. height: math.unit(2500, "miles")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/elyssia/front.svg",
  14603. extra: 2201 / 2035,
  14604. bottom: 0.05
  14605. }
  14606. },
  14607. frontClothed: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(150, "lb"),
  14610. name: "Front (Clothed)",
  14611. image: {
  14612. source: "./media/characters/elyssia/front-clothed.svg",
  14613. extra: 2201 / 2035,
  14614. bottom: 0.05
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(150, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/elyssia/back.svg",
  14623. extra: 2201 / 2035,
  14624. bottom: 0.013
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Smaller",
  14631. height: math.unit(150, "feet")
  14632. },
  14633. {
  14634. name: "Standard",
  14635. height: math.unit(1400, "feet"),
  14636. default: true
  14637. },
  14638. {
  14639. name: "Distracted",
  14640. height: math.unit(15000, "feet")
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(7 + 4/12, "feet"),
  14649. weight: math.unit(690, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/geno-maxwell/front.svg",
  14653. extra: 984/856,
  14654. bottom: 87/1071
  14655. }
  14656. },
  14657. back: {
  14658. height: math.unit(7 + 4/12, "feet"),
  14659. weight: math.unit(690, "lb"),
  14660. name: "Back",
  14661. image: {
  14662. source: "./media/characters/geno-maxwell/back.svg",
  14663. extra: 981/854,
  14664. bottom: 57/1038
  14665. }
  14666. },
  14667. frontCostume: {
  14668. height: math.unit(7 + 4/12, "feet"),
  14669. weight: math.unit(690, "lb"),
  14670. name: "Front (Costume)",
  14671. image: {
  14672. source: "./media/characters/geno-maxwell/front-costume.svg",
  14673. extra: 984/856,
  14674. bottom: 87/1071
  14675. }
  14676. },
  14677. backcostume: {
  14678. height: math.unit(7 + 4/12, "feet"),
  14679. weight: math.unit(690, "lb"),
  14680. name: "Back (Costume)",
  14681. image: {
  14682. source: "./media/characters/geno-maxwell/back-costume.svg",
  14683. extra: 981/854,
  14684. bottom: 57/1038
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Micro",
  14691. height: math.unit(3, "inches")
  14692. },
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(7 + 4 / 12, "feet"),
  14696. default: true
  14697. },
  14698. {
  14699. name: "Macro",
  14700. height: math.unit(220, "feet")
  14701. },
  14702. {
  14703. name: "Megamacro",
  14704. height: math.unit(11, "miles")
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(7 + 4/12, "feet"),
  14713. weight: math.unit(750, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/regena-maxwell/front.svg",
  14717. extra: 984/856,
  14718. bottom: 87/1071
  14719. }
  14720. },
  14721. back: {
  14722. height: math.unit(7 + 4/12, "feet"),
  14723. weight: math.unit(750, "lb"),
  14724. name: "Back",
  14725. image: {
  14726. source: "./media/characters/regena-maxwell/back.svg",
  14727. extra: 981/854,
  14728. bottom: 57/1038
  14729. }
  14730. },
  14731. frontCostume: {
  14732. height: math.unit(7 + 4/12, "feet"),
  14733. weight: math.unit(750, "lb"),
  14734. name: "Front (Costume)",
  14735. image: {
  14736. source: "./media/characters/regena-maxwell/front-costume.svg",
  14737. extra: 984/856,
  14738. bottom: 87/1071
  14739. }
  14740. },
  14741. backcostume: {
  14742. height: math.unit(7 + 4/12, "feet"),
  14743. weight: math.unit(750, "lb"),
  14744. name: "Back (Costume)",
  14745. image: {
  14746. source: "./media/characters/regena-maxwell/back-costume.svg",
  14747. extra: 981/854,
  14748. bottom: 57/1038
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(7 + 4 / 12, "feet"),
  14756. default: true
  14757. },
  14758. {
  14759. name: "Macro",
  14760. height: math.unit(220, "feet")
  14761. },
  14762. {
  14763. name: "Megamacro",
  14764. height: math.unit(11, "miles")
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(150, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14777. extra: 860 / 690,
  14778. bottom: 0.03
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(1.7, "meters"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/quilly/front.svg",
  14799. extra: 890 / 776
  14800. }
  14801. },
  14802. },
  14803. [
  14804. {
  14805. name: "Gigamacro",
  14806. height: math.unit(404090, "miles"),
  14807. default: true
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(7 + 8 / 12, "feet"),
  14816. weight: math.unit(350, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/tempest/front.svg",
  14820. extra: 1175 / 1086,
  14821. bottom: 0.02
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(7 + 8 / 12, "feet"),
  14829. default: true
  14830. },
  14831. ]
  14832. ))
  14833. characterMakers.push(() => makeCharacter(
  14834. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14835. {
  14836. side: {
  14837. height: math.unit(4 + 5 / 12, "feet"),
  14838. weight: math.unit(80, "lb"),
  14839. name: "Side",
  14840. image: {
  14841. source: "./media/characters/rodger/side.svg",
  14842. extra: 1235 / 1118
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(1, "inch")
  14850. },
  14851. {
  14852. name: "Normal",
  14853. height: math.unit(4 + 5 / 12, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(120, "feet")
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(150, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/danyel/front.svg",
  14871. extra: 1185 / 1123,
  14872. bottom: 0.05
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Shrunken",
  14879. height: math.unit(0.5, "mm")
  14880. },
  14881. {
  14882. name: "Micro",
  14883. height: math.unit(1, "mm"),
  14884. default: true
  14885. },
  14886. {
  14887. name: "Upsized",
  14888. height: math.unit(5 + 5 / 12, "feet")
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(5 + 6 / 12, "feet"),
  14897. weight: math.unit(200, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/vivian-bijoux/front.svg",
  14901. extra: 1217/1209,
  14902. bottom: 76/1293
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(5 + 6 / 12, "feet"),
  14907. weight: math.unit(200, "lb"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/vivian-bijoux/back.svg",
  14911. extra: 1214/1208,
  14912. bottom: 51/1265
  14913. }
  14914. },
  14915. dressed: {
  14916. height: math.unit(5 + 6 / 12, "feet"),
  14917. weight: math.unit(200, "lb"),
  14918. name: "Dressed",
  14919. image: {
  14920. source: "./media/characters/vivian-bijoux/dressed.svg",
  14921. extra: 1217/1209,
  14922. bottom: 76/1293
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(5 + 6 / 12, "feet"),
  14930. default: true
  14931. },
  14932. {
  14933. name: "Bad Dream",
  14934. height: math.unit(500, "feet")
  14935. },
  14936. {
  14937. name: "Nightmare",
  14938. height: math.unit(500, "miles")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6 + 1 / 12, "feet"),
  14947. weight: math.unit(260, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/zeta/front.svg",
  14951. extra: 1968 / 1889,
  14952. bottom: 0.06
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6 + 1 / 12, "feet"),
  14957. weight: math.unit(260, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/zeta/back.svg",
  14961. extra: 1944 / 1858,
  14962. bottom: 0.03
  14963. }
  14964. },
  14965. hand: {
  14966. height: math.unit(1.112, "feet"),
  14967. name: "Hand",
  14968. image: {
  14969. source: "./media/characters/zeta/hand.svg"
  14970. }
  14971. },
  14972. foot: {
  14973. height: math.unit(1.48, "feet"),
  14974. name: "Foot",
  14975. image: {
  14976. source: "./media/characters/zeta/foot.svg"
  14977. }
  14978. },
  14979. },
  14980. [
  14981. {
  14982. name: "Micro",
  14983. height: math.unit(6, "inches")
  14984. },
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(6 + 1 / 12, "feet"),
  14988. default: true
  14989. },
  14990. {
  14991. name: "Macro",
  14992. height: math.unit(20, "feet")
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(6, "feet"),
  15001. weight: math.unit(150, "lb"),
  15002. name: "Front",
  15003. image: {
  15004. source: "./media/characters/jamie-larsen/front.svg",
  15005. extra: 962 / 933,
  15006. bottom: 0.02
  15007. }
  15008. },
  15009. back: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(150, "lb"),
  15012. name: "Back",
  15013. image: {
  15014. source: "./media/characters/jamie-larsen/back.svg",
  15015. extra: 997 / 946
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Macro",
  15022. height: math.unit(28 + 7 / 12, "feet"),
  15023. default: true
  15024. },
  15025. {
  15026. name: "Macro+",
  15027. height: math.unit(180, "feet")
  15028. },
  15029. {
  15030. name: "Megamacro",
  15031. height: math.unit(10, "miles")
  15032. },
  15033. {
  15034. name: "Gigamacro",
  15035. height: math.unit(200000, "miles")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(120, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/vance/front.svg",
  15048. extra: 1980 / 1890,
  15049. bottom: 0.09
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(120, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/vance/back.svg",
  15058. extra: 2081 / 1994,
  15059. bottom: 0.014
  15060. }
  15061. },
  15062. hand: {
  15063. height: math.unit(0.88, "feet"),
  15064. name: "Hand",
  15065. image: {
  15066. source: "./media/characters/vance/hand.svg"
  15067. }
  15068. },
  15069. foot: {
  15070. height: math.unit(0.64, "feet"),
  15071. name: "Foot",
  15072. image: {
  15073. source: "./media/characters/vance/foot.svg"
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Small",
  15080. height: math.unit(90, "feet"),
  15081. default: true
  15082. },
  15083. {
  15084. name: "Macro",
  15085. height: math.unit(100, "meters")
  15086. },
  15087. {
  15088. name: "Megamacro",
  15089. height: math.unit(15, "miles")
  15090. },
  15091. ]
  15092. ))
  15093. characterMakers.push(() => makeCharacter(
  15094. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15095. {
  15096. front: {
  15097. height: math.unit(6, "feet"),
  15098. weight: math.unit(180, "lb"),
  15099. name: "Front",
  15100. image: {
  15101. source: "./media/characters/xochitl/front.svg",
  15102. extra: 2297 / 2261,
  15103. bottom: 0.065
  15104. }
  15105. },
  15106. back: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(180, "lb"),
  15109. name: "Back",
  15110. image: {
  15111. source: "./media/characters/xochitl/back.svg",
  15112. extra: 2386 / 2354,
  15113. bottom: 0.01
  15114. }
  15115. },
  15116. foot: {
  15117. height: math.unit(6 / 5 * 1.15, "feet"),
  15118. weight: math.unit(150, "lb"),
  15119. name: "Foot",
  15120. image: {
  15121. source: "./media/characters/xochitl/foot.svg"
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(80, "feet")
  15129. },
  15130. {
  15131. name: "Macro+",
  15132. height: math.unit(400, "feet"),
  15133. default: true
  15134. },
  15135. {
  15136. name: "Gigamacro",
  15137. height: math.unit(80000, "miles")
  15138. },
  15139. {
  15140. name: "Gigamacro+",
  15141. height: math.unit(400000, "miles")
  15142. },
  15143. {
  15144. name: "Teramacro",
  15145. height: math.unit(300, "AU")
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(150, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/vincent/front.svg",
  15158. extra: 1130 / 1080,
  15159. bottom: 0.055
  15160. }
  15161. },
  15162. beak: {
  15163. height: math.unit(6 * 0.1, "feet"),
  15164. name: "Beak",
  15165. image: {
  15166. source: "./media/characters/vincent/beak.svg"
  15167. }
  15168. },
  15169. hand: {
  15170. height: math.unit(6 * 0.85, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Hand",
  15173. image: {
  15174. source: "./media/characters/vincent/hand.svg"
  15175. }
  15176. },
  15177. foot: {
  15178. height: math.unit(6 * 0.19, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Foot",
  15181. image: {
  15182. source: "./media/characters/vincent/foot.svg"
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Base",
  15189. height: math.unit(6 + 5 / 12, "feet"),
  15190. default: true
  15191. },
  15192. {
  15193. name: "Macro",
  15194. height: math.unit(300, "feet")
  15195. },
  15196. {
  15197. name: "Megamacro",
  15198. height: math.unit(2, "miles")
  15199. },
  15200. {
  15201. name: "Gigamacro",
  15202. height: math.unit(1000, "miles")
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(2, "meters"),
  15211. weight: math.unit(500, "kg"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/coatl/front.svg",
  15215. extra: 3948 / 3500,
  15216. bottom: 0.082
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(4, "meters")
  15224. },
  15225. {
  15226. name: "Macro",
  15227. height: math.unit(100, "meters"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Macro+",
  15232. height: math.unit(300, "meters")
  15233. },
  15234. {
  15235. name: "Megamacro",
  15236. height: math.unit(3, "gigameters")
  15237. },
  15238. {
  15239. name: "Megamacro+",
  15240. height: math.unit(300, "terameters")
  15241. },
  15242. {
  15243. name: "Megamacro++",
  15244. height: math.unit(3, "lightyears")
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(6, "feet"),
  15253. weight: math.unit(50, "kg"),
  15254. name: "front",
  15255. image: {
  15256. source: "./media/characters/shiroryu/front.svg",
  15257. extra: 1990 / 1935
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Mortal Mingling",
  15264. height: math.unit(3, "meters")
  15265. },
  15266. {
  15267. name: "Kaiju-ish",
  15268. height: math.unit(250, "meters")
  15269. },
  15270. {
  15271. name: "Somewhat Godly",
  15272. height: math.unit(400, "km"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Planetary",
  15277. height: math.unit(300, "megameters")
  15278. },
  15279. {
  15280. name: "Galaxy-dwarfing",
  15281. height: math.unit(450, "kiloparsecs")
  15282. },
  15283. {
  15284. name: "Universe Eater",
  15285. height: math.unit(150, "gigaparsecs")
  15286. },
  15287. {
  15288. name: "Almost Immeasurable",
  15289. height: math.unit(1.3e266, "yottaparsecs")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/umeko/front.svg",
  15302. extra: 1,
  15303. bottom: 0.019
  15304. }
  15305. },
  15306. frontArmored: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(150, "lb"),
  15309. name: "Front (Armored)",
  15310. image: {
  15311. source: "./media/characters/umeko/front-armored.svg",
  15312. extra: 1,
  15313. bottom: 0.021
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Macro",
  15320. height: math.unit(220, "feet"),
  15321. default: true
  15322. },
  15323. {
  15324. name: "Guardian Dragon",
  15325. height: math.unit(50, "miles")
  15326. },
  15327. {
  15328. name: "Cosmic",
  15329. height: math.unit(800000, "miles")
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(6, "feet"),
  15338. weight: math.unit(150, "lb"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/cassidy/front.svg",
  15342. extra: 810/808,
  15343. bottom: 41/851
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Canon Height",
  15350. height: math.unit(120, "feet"),
  15351. default: true
  15352. },
  15353. {
  15354. name: "Macro+",
  15355. height: math.unit(400, "feet")
  15356. },
  15357. {
  15358. name: "Macro++",
  15359. height: math.unit(4000, "feet")
  15360. },
  15361. {
  15362. name: "Megamacro",
  15363. height: math.unit(3, "miles")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/isaac/front.svg",
  15376. extra: 896 / 815,
  15377. bottom: 0.11
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Human Size",
  15384. height: math.unit(8, "feet"),
  15385. default: true
  15386. },
  15387. {
  15388. name: "Macro",
  15389. height: math.unit(400, "feet")
  15390. },
  15391. {
  15392. name: "Megamacro",
  15393. height: math.unit(50, "miles")
  15394. },
  15395. {
  15396. name: "Canon Height",
  15397. height: math.unit(200, "AU")
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(6, "feet"),
  15406. weight: math.unit(72, "kg"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/sleekit/front.svg",
  15410. extra: 4693 / 4487,
  15411. bottom: 0.012
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Minimum Height",
  15418. height: math.unit(10, "meters")
  15419. },
  15420. {
  15421. name: "Smaller",
  15422. height: math.unit(25, "meters")
  15423. },
  15424. {
  15425. name: "Larger",
  15426. height: math.unit(38, "meters"),
  15427. default: true
  15428. },
  15429. {
  15430. name: "Maximum height",
  15431. height: math.unit(100, "meters")
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/nillia/front.svg",
  15444. extra: 2195 / 2037,
  15445. bottom: 0.005
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/nillia/back.svg",
  15454. extra: 2195 / 2037,
  15455. bottom: 0.005
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Canon Height",
  15462. height: math.unit(489, "feet"),
  15463. default: true
  15464. }
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/mesmyriza/front.svg",
  15476. extra: 2067 / 1784,
  15477. bottom: 0.035
  15478. }
  15479. },
  15480. foot: {
  15481. height: math.unit(6 / (250 / 35), "feet"),
  15482. name: "Foot",
  15483. image: {
  15484. source: "./media/characters/mesmyriza/foot.svg"
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Macro",
  15491. height: math.unit(457, "meters"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Megamacro",
  15496. height: math.unit(8, "megameters")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(6, "feet"),
  15505. weight: math.unit(250, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/saudade/front.svg",
  15509. extra: 1172 / 1139,
  15510. bottom: 0.035
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(3, "inches")
  15518. },
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(6, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(50, "feet")
  15527. },
  15528. {
  15529. name: "Megamacro",
  15530. height: math.unit(2800, "feet")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(5 + 4 / 12, "feet"),
  15539. weight: math.unit(100, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/keireer/front.svg",
  15543. extra: 716 / 666,
  15544. bottom: 0.05
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(5 + 4 / 12, "feet"),
  15552. default: true
  15553. },
  15554. ]
  15555. ))
  15556. characterMakers.push(() => makeCharacter(
  15557. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15558. {
  15559. front: {
  15560. height: math.unit(5.5, "feet"),
  15561. weight: math.unit(90, "kg"),
  15562. name: "Front",
  15563. image: {
  15564. source: "./media/characters/mirja/front.svg",
  15565. extra: 1452/1262,
  15566. bottom: 67/1519
  15567. }
  15568. },
  15569. frontDressed: {
  15570. height: math.unit(5.5, "feet"),
  15571. weight: math.unit(90, "lb"),
  15572. name: "Front (Dressed)",
  15573. image: {
  15574. source: "./media/characters/mirja/dressed.svg",
  15575. extra: 1452/1262,
  15576. bottom: 67/1519
  15577. }
  15578. },
  15579. back: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(90, "lb"),
  15582. name: "Back",
  15583. image: {
  15584. source: "./media/characters/mirja/back.svg",
  15585. extra: 1892/1795,
  15586. bottom: 48/1940
  15587. }
  15588. },
  15589. maw: {
  15590. height: math.unit(1.312, "feet"),
  15591. name: "Maw",
  15592. image: {
  15593. source: "./media/characters/mirja/maw.svg"
  15594. }
  15595. },
  15596. paw: {
  15597. height: math.unit(1.15, "feet"),
  15598. name: "Paw",
  15599. image: {
  15600. source: "./media/characters/mirja/paw.svg"
  15601. }
  15602. },
  15603. },
  15604. [
  15605. {
  15606. name: "\"Incognito\"",
  15607. height: math.unit(3, "meters")
  15608. },
  15609. {
  15610. name: "Strolling Size",
  15611. height: math.unit(15, "km")
  15612. },
  15613. {
  15614. name: "Larger Strolling Size",
  15615. height: math.unit(400, "km")
  15616. },
  15617. {
  15618. name: "Preferred Size",
  15619. height: math.unit(5000, "km"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "True Size",
  15624. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(15, "feet"),
  15633. weight: math.unit(880, "kg"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/nightraver/front.svg",
  15637. extra: 2444 / 2160,
  15638. bottom: 0.027
  15639. }
  15640. },
  15641. back: {
  15642. height: math.unit(15, "feet"),
  15643. weight: math.unit(880, "kg"),
  15644. name: "Back",
  15645. image: {
  15646. source: "./media/characters/nightraver/back.svg",
  15647. extra: 2309 / 2180,
  15648. bottom: 0.005
  15649. }
  15650. },
  15651. sole: {
  15652. height: math.unit(2.878, "feet"),
  15653. name: "Sole",
  15654. image: {
  15655. source: "./media/characters/nightraver/sole.svg"
  15656. }
  15657. },
  15658. foot: {
  15659. height: math.unit(2.285, "feet"),
  15660. name: "Foot",
  15661. image: {
  15662. source: "./media/characters/nightraver/foot.svg"
  15663. }
  15664. },
  15665. maw: {
  15666. height: math.unit(2.67, "feet"),
  15667. name: "Maw",
  15668. image: {
  15669. source: "./media/characters/nightraver/maw.svg"
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(1, "cm")
  15677. },
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(15, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Macro",
  15685. height: math.unit(300, "feet")
  15686. },
  15687. {
  15688. name: "Megamacro",
  15689. height: math.unit(300, "miles")
  15690. },
  15691. {
  15692. name: "Gigamacro",
  15693. height: math.unit(10000, "miles")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15699. {
  15700. side: {
  15701. height: math.unit(2, "inches"),
  15702. weight: math.unit(5, "grams"),
  15703. name: "Side",
  15704. image: {
  15705. source: "./media/characters/arc/side.svg"
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Micro",
  15712. height: math.unit(2, "inches"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(1.1938, "meters"),
  15722. weight: math.unit(54, "kg"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/nebula-shahar/front.svg",
  15726. extra: 1642 / 1436,
  15727. bottom: 0.06
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Megamicro",
  15734. height: math.unit(0.3, "mm")
  15735. },
  15736. {
  15737. name: "Micro",
  15738. height: math.unit(3, "cm")
  15739. },
  15740. {
  15741. name: "Normal",
  15742. height: math.unit(138, "cm"),
  15743. default: true
  15744. },
  15745. {
  15746. name: "Macro",
  15747. height: math.unit(30, "m")
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15753. {
  15754. front: {
  15755. height: math.unit(5.24, "feet"),
  15756. weight: math.unit(150, "lb"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/shayla/front.svg",
  15760. extra: 1512 / 1414,
  15761. bottom: 0.01
  15762. }
  15763. },
  15764. back: {
  15765. height: math.unit(5.24, "feet"),
  15766. weight: math.unit(150, "lb"),
  15767. name: "Back",
  15768. image: {
  15769. source: "./media/characters/shayla/back.svg",
  15770. extra: 1512 / 1414
  15771. }
  15772. },
  15773. hand: {
  15774. height: math.unit(0.7781496062992126, "feet"),
  15775. name: "Hand",
  15776. image: {
  15777. source: "./media/characters/shayla/hand.svg"
  15778. }
  15779. },
  15780. foot: {
  15781. height: math.unit(1.4206036745406823, "feet"),
  15782. name: "Foot",
  15783. image: {
  15784. source: "./media/characters/shayla/foot.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Micro",
  15791. height: math.unit(0.32, "feet")
  15792. },
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5.24, "feet"),
  15796. default: true
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(492.12, "feet")
  15801. },
  15802. {
  15803. name: "Megamacro",
  15804. height: math.unit(186.41, "miles")
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(2.2, "m"),
  15813. weight: math.unit(120, "kg"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/pia-jr/front.svg",
  15817. extra: 1000 / 970,
  15818. bottom: 0.035
  15819. }
  15820. },
  15821. hand: {
  15822. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15823. name: "Hand",
  15824. image: {
  15825. source: "./media/characters/pia-jr/hand.svg"
  15826. }
  15827. },
  15828. paw: {
  15829. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15830. name: "Paw",
  15831. image: {
  15832. source: "./media/characters/pia-jr/paw.svg"
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Micro",
  15839. height: math.unit(1.2, "cm")
  15840. },
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(2.2, "m"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Macro",
  15848. height: math.unit(180, "m")
  15849. },
  15850. {
  15851. name: "Megamacro",
  15852. height: math.unit(420, "km")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(2, "m"),
  15861. weight: math.unit(115, "kg"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/pia-sr/front.svg",
  15865. extra: 760 / 730,
  15866. bottom: 0.015
  15867. }
  15868. },
  15869. back: {
  15870. height: math.unit(2, "m"),
  15871. weight: math.unit(115, "kg"),
  15872. name: "Back",
  15873. image: {
  15874. source: "./media/characters/pia-sr/back.svg",
  15875. extra: 760 / 730,
  15876. bottom: 0.01
  15877. }
  15878. },
  15879. hand: {
  15880. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15881. name: "Hand",
  15882. image: {
  15883. source: "./media/characters/pia-sr/hand.svg"
  15884. }
  15885. },
  15886. foot: {
  15887. height: math.unit(1.83, "feet"),
  15888. name: "Foot",
  15889. image: {
  15890. source: "./media/characters/pia-sr/foot.svg"
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Micro",
  15897. height: math.unit(88, "mm")
  15898. },
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(2, "m"),
  15902. default: true
  15903. },
  15904. {
  15905. name: "Macro",
  15906. height: math.unit(200, "m")
  15907. },
  15908. {
  15909. name: "Megamacro",
  15910. height: math.unit(420, "km")
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(8 + 2 / 12, "feet"),
  15919. weight: math.unit(300, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/kibibyte/front.svg",
  15923. extra: 2221 / 2098,
  15924. bottom: 0.04
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(8 + 2 / 12, "feet"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Socialable Macro",
  15936. height: math.unit(50, "feet")
  15937. },
  15938. {
  15939. name: "Macro",
  15940. height: math.unit(300, "feet")
  15941. },
  15942. {
  15943. name: "Megamacro",
  15944. height: math.unit(500, "miles")
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15950. {
  15951. front: {
  15952. height: math.unit(6, "feet"),
  15953. weight: math.unit(150, "lb"),
  15954. name: "Front",
  15955. image: {
  15956. source: "./media/characters/felix/front.svg",
  15957. extra: 762 / 722,
  15958. bottom: 0.02
  15959. }
  15960. },
  15961. frontClothed: {
  15962. height: math.unit(6, "feet"),
  15963. weight: math.unit(150, "lb"),
  15964. name: "Front (Clothed)",
  15965. image: {
  15966. source: "./media/characters/felix/front-clothed.svg",
  15967. extra: 762 / 722,
  15968. bottom: 0.02
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(6 + 8 / 12, "feet"),
  15976. default: true
  15977. },
  15978. {
  15979. name: "Macro",
  15980. height: math.unit(2600, "feet")
  15981. },
  15982. {
  15983. name: "Megamacro",
  15984. height: math.unit(450, "miles")
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(6 + 1 / 12, "feet"),
  15993. weight: math.unit(250, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/tobo/front.svg",
  15997. extra: 608 / 586,
  15998. bottom: 0.023
  15999. }
  16000. },
  16001. back: {
  16002. height: math.unit(6 + 1 / 12, "feet"),
  16003. weight: math.unit(250, "lb"),
  16004. name: "Back",
  16005. image: {
  16006. source: "./media/characters/tobo/back.svg",
  16007. extra: 608 / 586
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Nano",
  16014. height: math.unit(2, "nm")
  16015. },
  16016. {
  16017. name: "Megamicro",
  16018. height: math.unit(0.1, "mm")
  16019. },
  16020. {
  16021. name: "Micro",
  16022. height: math.unit(1, "inch"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Human-sized",
  16027. height: math.unit(6 + 1 / 12, "feet")
  16028. },
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(250, "feet")
  16032. },
  16033. {
  16034. name: "Megamacro",
  16035. height: math.unit(75, "miles")
  16036. },
  16037. {
  16038. name: "Texas-sized",
  16039. height: math.unit(750, "miles")
  16040. },
  16041. {
  16042. name: "Teramacro",
  16043. height: math.unit(50000, "miles")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(269, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/danny-kapowsky/front.svg",
  16056. extra: 766 / 736,
  16057. bottom: 0.044
  16058. }
  16059. },
  16060. back: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(269, "lb"),
  16063. name: "Back",
  16064. image: {
  16065. source: "./media/characters/danny-kapowsky/back.svg",
  16066. extra: 797 / 760,
  16067. bottom: 0.025
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Macro",
  16074. height: math.unit(150, "feet"),
  16075. default: true
  16076. },
  16077. {
  16078. name: "Macro+",
  16079. height: math.unit(200, "feet")
  16080. },
  16081. {
  16082. name: "Macro++",
  16083. height: math.unit(300, "feet")
  16084. },
  16085. {
  16086. name: "Macro+++",
  16087. height: math.unit(400, "feet")
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16093. {
  16094. side: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(170, "lb"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/finn/side.svg",
  16100. extra: 1953 / 1807,
  16101. bottom: 0.057
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Megamacro",
  16108. height: math.unit(14445, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(5 + 6 / 12, "feet"),
  16118. weight: math.unit(125, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/roy/front.svg",
  16122. extra: 1,
  16123. bottom: 0.11
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Micro",
  16130. height: math.unit(3, "inches"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(5 + 6 / 12, "feet")
  16136. },
  16137. {
  16138. name: "Lesser Macro",
  16139. height: math.unit(60, "feet")
  16140. },
  16141. {
  16142. name: "Greater Macro",
  16143. height: math.unit(120, "feet")
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(6, "feet"),
  16152. weight: math.unit(100, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/aevsivs/front.svg",
  16156. extra: 1,
  16157. bottom: 0.03
  16158. }
  16159. },
  16160. back: {
  16161. height: math.unit(6, "feet"),
  16162. weight: math.unit(100, "lb"),
  16163. name: "Back",
  16164. image: {
  16165. source: "./media/characters/aevsivs/back.svg"
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Micro",
  16172. height: math.unit(2, "inches"),
  16173. default: true
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(5, "feet")
  16178. },
  16179. ]
  16180. ))
  16181. characterMakers.push(() => makeCharacter(
  16182. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16183. {
  16184. front: {
  16185. height: math.unit(5 + 7 / 12, "feet"),
  16186. weight: math.unit(159, "lb"),
  16187. name: "Front",
  16188. image: {
  16189. source: "./media/characters/hildegard/front.svg",
  16190. extra: 289 / 269,
  16191. bottom: 7.63 / 297.8
  16192. }
  16193. },
  16194. back: {
  16195. height: math.unit(5 + 7 / 12, "feet"),
  16196. weight: math.unit(159, "lb"),
  16197. name: "Back",
  16198. image: {
  16199. source: "./media/characters/hildegard/back.svg",
  16200. extra: 280 / 260,
  16201. bottom: 2.3 / 282
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(5 + 7 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16215. {
  16216. bernard: {
  16217. height: math.unit(2 + 7 / 12, "feet"),
  16218. weight: math.unit(66, "lb"),
  16219. name: "Bernard",
  16220. rename: true,
  16221. image: {
  16222. source: "./media/characters/bernard-wilder/bernard.svg",
  16223. extra: 192 / 128,
  16224. bottom: 0.05
  16225. }
  16226. },
  16227. wilder: {
  16228. height: math.unit(5 + 8 / 12, "feet"),
  16229. weight: math.unit(143, "lb"),
  16230. name: "Wilder",
  16231. rename: true,
  16232. image: {
  16233. source: "./media/characters/bernard-wilder/wilder.svg",
  16234. extra: 361 / 312,
  16235. bottom: 0.02
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Normal",
  16242. height: math.unit(2 + 7 / 12, "feet"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16249. {
  16250. anthro: {
  16251. height: math.unit(6 + 1 / 12, "feet"),
  16252. weight: math.unit(155, "lb"),
  16253. name: "Anthro",
  16254. image: {
  16255. source: "./media/characters/hearth/anthro.svg",
  16256. extra: 1178/1136,
  16257. bottom: 28/1206
  16258. }
  16259. },
  16260. feral: {
  16261. height: math.unit(3.78, "feet"),
  16262. weight: math.unit(35, "kg"),
  16263. name: "Feral",
  16264. image: {
  16265. source: "./media/characters/hearth/feral.svg",
  16266. extra: 153 / 135,
  16267. bottom: 0.03
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(6 + 1 / 12, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(182, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/ingrid/front.svg",
  16288. extra: 294 / 268,
  16289. bottom: 0.027
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(6, "feet"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16303. {
  16304. eevee: {
  16305. height: math.unit(2 + 10 / 12, "feet"),
  16306. weight: math.unit(86, "lb"),
  16307. name: "Malgam",
  16308. image: {
  16309. source: "./media/characters/malgam/eevee.svg",
  16310. extra: 952/784,
  16311. bottom: 38/990
  16312. }
  16313. },
  16314. sylveon: {
  16315. height: math.unit(4, "feet"),
  16316. weight: math.unit(101, "lb"),
  16317. name: "Future Malgam",
  16318. rename: true,
  16319. image: {
  16320. source: "./media/characters/malgam/sylveon.svg",
  16321. extra: 371 / 325,
  16322. bottom: 0.015
  16323. }
  16324. },
  16325. gigantamax: {
  16326. height: math.unit(50, "feet"),
  16327. name: "Gigantamax Malgam",
  16328. rename: true,
  16329. image: {
  16330. source: "./media/characters/malgam/gigantamax.svg"
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(2 + 10 / 12, "feet"),
  16338. default: true
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(5 + 11 / 12, "feet"),
  16347. weight: math.unit(188, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/fleur/front.svg",
  16351. extra: 309 / 283,
  16352. bottom: 0.007
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(5 + 11 / 12, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(5 + 4 / 12, "feet"),
  16369. weight: math.unit(122, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/jude/front.svg",
  16373. extra: 288 / 273,
  16374. bottom: 0.03
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(5 + 4 / 12, "feet"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(5 + 11 / 12, "feet"),
  16391. weight: math.unit(190, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/seara/front.svg",
  16395. extra: 1,
  16396. bottom: 0.05
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(5 + 11 / 12, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(16 + 5 / 12, "feet"),
  16413. weight: math.unit(524, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/caspian-lugia/front.svg",
  16417. extra: 1,
  16418. bottom: 0.04
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(16 + 5 / 12, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(5 + 7 / 12, "feet"),
  16435. weight: math.unit(170, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/mika/front.svg",
  16439. extra: 1,
  16440. bottom: 0.016
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(5 + 7 / 12, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6 + 2 / 12, "feet"),
  16457. weight: math.unit(268, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/sol/front.svg",
  16461. extra: 247 / 231,
  16462. bottom: 0.05
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Normal",
  16469. height: math.unit(6 + 2 / 12, "feet"),
  16470. default: true
  16471. },
  16472. ]
  16473. ))
  16474. characterMakers.push(() => makeCharacter(
  16475. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16476. {
  16477. buizel: {
  16478. height: math.unit(2 + 5 / 12, "feet"),
  16479. weight: math.unit(87, "lb"),
  16480. name: "Front",
  16481. image: {
  16482. source: "./media/characters/umiko/buizel.svg",
  16483. extra: 172 / 157,
  16484. bottom: 0.01
  16485. },
  16486. form: "buizel",
  16487. default: true
  16488. },
  16489. floatzel: {
  16490. height: math.unit(5 + 9 / 12, "feet"),
  16491. weight: math.unit(250, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/umiko/floatzel.svg",
  16495. extra: 1076/1006,
  16496. bottom: 15/1091
  16497. },
  16498. form: "floatzel",
  16499. default: true
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(2 + 5 / 12, "feet"),
  16506. form: "buizel",
  16507. default: true
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(5 + 9 / 12, "feet"),
  16512. form: "floatzel",
  16513. default: true
  16514. },
  16515. ],
  16516. {
  16517. "buizel": {
  16518. name: "Buizel"
  16519. },
  16520. "floatzel": {
  16521. name: "Floatzel",
  16522. default: true
  16523. }
  16524. }
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6 + 2 / 12, "feet"),
  16531. weight: math.unit(146, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/iliac/front.svg",
  16535. extra: 389 / 365,
  16536. bottom: 0.035
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(6 + 2 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(6, "feet"),
  16553. weight: math.unit(170, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/topaz/front.svg",
  16557. extra: 317 / 303,
  16558. bottom: 0.055
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(6, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(5 + 11 / 12, "feet"),
  16575. weight: math.unit(144, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/gabriel/front.svg",
  16579. extra: 285 / 262,
  16580. bottom: 0.004
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(5 + 11 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16594. {
  16595. side: {
  16596. height: math.unit(6 + 5 / 12, "feet"),
  16597. weight: math.unit(300, "lb"),
  16598. name: "Side",
  16599. image: {
  16600. source: "./media/characters/tempest-suicune/side.svg",
  16601. extra: 195 / 154,
  16602. bottom: 0.04
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(6 + 5 / 12, "feet"),
  16610. default: true
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16616. {
  16617. front: {
  16618. height: math.unit(7 + 2 / 12, "feet"),
  16619. weight: math.unit(322, "lb"),
  16620. name: "Front",
  16621. image: {
  16622. source: "./media/characters/vulcan/front.svg",
  16623. extra: 154 / 147,
  16624. bottom: 0.04
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(7 + 2 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(5 + 10 / 12, "feet"),
  16641. weight: math.unit(264, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/gault/front.svg",
  16645. extra: 161 / 140,
  16646. bottom: 0.028
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(5 + 10 / 12, "feet"),
  16654. default: true
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16660. {
  16661. front: {
  16662. height: math.unit(6, "feet"),
  16663. weight: math.unit(150, "lb"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/shard/front.svg",
  16667. extra: 273 / 238,
  16668. bottom: 0.02
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(3 + 6 / 12, "feet"),
  16676. default: true
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16682. {
  16683. front: {
  16684. height: math.unit(5 + 11 / 12, "feet"),
  16685. weight: math.unit(146, "lb"),
  16686. name: "Front",
  16687. image: {
  16688. source: "./media/characters/ashe/front.svg",
  16689. extra: 400 / 373,
  16690. bottom: 0.01
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(5 + 11 / 12, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(5 + 5 / 12, "feet"),
  16707. weight: math.unit(135, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/beatrix/front.svg",
  16711. extra: 392 / 379,
  16712. bottom: 0.01
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(6, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(6 + 2/12, "feet"),
  16729. weight: math.unit(135, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/ignatius/front.svg",
  16733. extra: 1380/1259,
  16734. bottom: 27/1407
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(6 + 2/12, "feet"),
  16742. default: true
  16743. },
  16744. ]
  16745. ))
  16746. characterMakers.push(() => makeCharacter(
  16747. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16748. {
  16749. front: {
  16750. height: math.unit(6 + 2 / 12, "feet"),
  16751. weight: math.unit(138, "lb"),
  16752. name: "Front",
  16753. image: {
  16754. source: "./media/characters/mei-li/front.svg",
  16755. extra: 237 / 229,
  16756. bottom: 0.03
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(6 + 2 / 12, "feet"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(2 + 4 / 12, "feet"),
  16773. weight: math.unit(62, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/puru/front.svg",
  16777. extra: 206 / 149,
  16778. bottom: 0.06
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Normal",
  16785. height: math.unit(2 + 4 / 12, "feet"),
  16786. default: true
  16787. },
  16788. ]
  16789. ))
  16790. characterMakers.push(() => makeCharacter(
  16791. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16792. {
  16793. anthro: {
  16794. height: math.unit(5 + 8/12, "feet"),
  16795. weight: math.unit(200, "lb"),
  16796. energyNeed: math.unit(2000, "kcal"),
  16797. name: "Anthro",
  16798. image: {
  16799. source: "./media/characters/kee/anthro.svg",
  16800. extra: 3251/3184,
  16801. bottom: 250/3501
  16802. }
  16803. },
  16804. taur: {
  16805. height: math.unit(11, "feet"),
  16806. weight: math.unit(500, "lb"),
  16807. energyNeed: math.unit(5000, "kcal"),
  16808. name: "Taur",
  16809. image: {
  16810. source: "./media/characters/kee/taur.svg",
  16811. extra: 1362/1320,
  16812. bottom: 83/1445
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Normal",
  16819. height: math.unit(5 + 8/12, "feet"),
  16820. default: true
  16821. },
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(35, "feet")
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16830. {
  16831. anthro: {
  16832. height: math.unit(7, "feet"),
  16833. weight: math.unit(190, "lb"),
  16834. name: "Anthro",
  16835. image: {
  16836. source: "./media/characters/cobalt-dracha/anthro.svg",
  16837. extra: 231 / 225,
  16838. bottom: 0.04
  16839. }
  16840. },
  16841. feral: {
  16842. height: math.unit(9 + 7 / 12, "feet"),
  16843. weight: math.unit(294, "lb"),
  16844. name: "Feral",
  16845. image: {
  16846. source: "./media/characters/cobalt-dracha/feral.svg",
  16847. extra: 692 / 633,
  16848. bottom: 0.05
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(7, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16862. {
  16863. fallen: {
  16864. height: math.unit(11 + 8 / 12, "feet"),
  16865. weight: math.unit(485, "lb"),
  16866. name: "Java (Fallen)",
  16867. rename: true,
  16868. image: {
  16869. source: "./media/characters/java/fallen.svg",
  16870. extra: 226 / 208,
  16871. bottom: 0.005
  16872. }
  16873. },
  16874. godkin: {
  16875. height: math.unit(10 + 6 / 12, "feet"),
  16876. weight: math.unit(328, "lb"),
  16877. name: "Java (Godkin)",
  16878. rename: true,
  16879. image: {
  16880. source: "./media/characters/java/godkin.svg",
  16881. extra: 1104/1068,
  16882. bottom: 36/1140
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(11 + 8 / 12, "feet"),
  16890. default: true
  16891. },
  16892. ]
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16896. {
  16897. front: {
  16898. height: math.unit(5 + 9 / 12, "feet"),
  16899. weight: math.unit(170, "lb"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/purna/front.svg",
  16903. extra: 239 / 229,
  16904. bottom: 0.01
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(5 + 9 / 12, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(5 + 9 / 12, "feet"),
  16921. weight: math.unit(142, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/kuva/front.svg",
  16925. extra: 281 / 271,
  16926. bottom: 0.006
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(5 + 9 / 12, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16940. {
  16941. anthro: {
  16942. height: math.unit(9 + 2 / 12, "feet"),
  16943. weight: math.unit(270, "lb"),
  16944. name: "Anthro",
  16945. image: {
  16946. source: "./media/characters/embra/anthro.svg",
  16947. extra: 200 / 187,
  16948. bottom: 0.02
  16949. }
  16950. },
  16951. feral: {
  16952. height: math.unit(18 + 8 / 12, "feet"),
  16953. weight: math.unit(576, "lb"),
  16954. name: "Feral",
  16955. image: {
  16956. source: "./media/characters/embra/feral.svg",
  16957. extra: 152 / 137,
  16958. bottom: 0.037
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(9 + 2 / 12, "feet"),
  16966. default: true
  16967. },
  16968. ]
  16969. ))
  16970. characterMakers.push(() => makeCharacter(
  16971. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16972. {
  16973. anthro: {
  16974. height: math.unit(10 + 9 / 12, "feet"),
  16975. weight: math.unit(224, "lb"),
  16976. name: "Anthro",
  16977. image: {
  16978. source: "./media/characters/grottos/anthro.svg",
  16979. extra: 350 / 332,
  16980. bottom: 0.045
  16981. }
  16982. },
  16983. feral: {
  16984. height: math.unit(20 + 7 / 12, "feet"),
  16985. weight: math.unit(629, "lb"),
  16986. name: "Feral",
  16987. image: {
  16988. source: "./media/characters/grottos/feral.svg",
  16989. extra: 207 / 190,
  16990. bottom: 0.05
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Normal",
  16997. height: math.unit(10 + 9 / 12, "feet"),
  16998. default: true
  16999. },
  17000. ]
  17001. ))
  17002. characterMakers.push(() => makeCharacter(
  17003. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17004. {
  17005. anthro: {
  17006. height: math.unit(9 + 6 / 12, "feet"),
  17007. weight: math.unit(298, "lb"),
  17008. name: "Anthro",
  17009. image: {
  17010. source: "./media/characters/frifna/anthro.svg",
  17011. extra: 282 / 269,
  17012. bottom: 0.015
  17013. }
  17014. },
  17015. feral: {
  17016. height: math.unit(16 + 2 / 12, "feet"),
  17017. weight: math.unit(624, "lb"),
  17018. name: "Feral",
  17019. image: {
  17020. source: "./media/characters/frifna/feral.svg"
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(9 + 6 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(6 + 2 / 12, "feet"),
  17037. weight: math.unit(168, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/elise/front.svg",
  17041. extra: 276 / 271
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(6 + 2 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(5 + 10 / 12, "feet"),
  17058. weight: math.unit(210, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/glade/front.svg",
  17062. extra: 258 / 247,
  17063. bottom: 0.008
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(5 + 10 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(5 + 10 / 12, "feet"),
  17080. weight: math.unit(129, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/rina/front.svg",
  17084. extra: 266 / 255,
  17085. bottom: 0.005
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(5 + 10 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(6 + 1 / 12, "feet"),
  17102. weight: math.unit(192, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/veronica/front.svg",
  17106. extra: 319 / 309,
  17107. bottom: 0.005
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(6 + 1 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(9 + 3 / 12, "feet"),
  17124. weight: math.unit(1100, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/braxton/front.svg",
  17128. extra: 1057 / 984,
  17129. bottom: 0.05
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(9 + 3 / 12, "feet")
  17137. },
  17138. {
  17139. name: "Giant",
  17140. height: math.unit(300, "feet"),
  17141. default: true
  17142. },
  17143. {
  17144. name: "Macro",
  17145. height: math.unit(700, "feet")
  17146. },
  17147. {
  17148. name: "Megamacro",
  17149. height: math.unit(6000, "feet")
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(6 + 7 / 12, "feet"),
  17158. weight: math.unit(150, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/blue-feyonics/front.svg",
  17162. extra: 1403 / 1306,
  17163. bottom: 0.047
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(6 + 7 / 12, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(1.8, "meters"),
  17180. weight: math.unit(60, "kg"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/maxwell/front.svg",
  17184. extra: 2060 / 1873
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Micro",
  17191. height: math.unit(1, "mm")
  17192. },
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(1.8, "meter"),
  17196. default: true
  17197. },
  17198. {
  17199. name: "Macro",
  17200. height: math.unit(30, "meters")
  17201. },
  17202. {
  17203. name: "Megamacro",
  17204. height: math.unit(10, "km")
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/jack/front.svg",
  17217. extra: 1754 / 1640,
  17218. bottom: 0.01
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(80000, "feet"),
  17226. default: true
  17227. },
  17228. {
  17229. name: "Max size",
  17230. height: math.unit(10, "lightyears")
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17236. {
  17237. urban: {
  17238. height: math.unit(5, "feet"),
  17239. weight: math.unit(240, "lb"),
  17240. name: "Urban",
  17241. image: {
  17242. source: "./media/characters/cafat/urban.svg",
  17243. extra: 1223/1126,
  17244. bottom: 205/1428
  17245. }
  17246. },
  17247. summer: {
  17248. height: math.unit(5, "feet"),
  17249. weight: math.unit(240, "lb"),
  17250. name: "Summer",
  17251. image: {
  17252. source: "./media/characters/cafat/summer.svg",
  17253. extra: 1223/1126,
  17254. bottom: 205/1428
  17255. }
  17256. },
  17257. winter: {
  17258. height: math.unit(5, "feet"),
  17259. weight: math.unit(240, "lb"),
  17260. name: "Winter",
  17261. image: {
  17262. source: "./media/characters/cafat/winter.svg",
  17263. extra: 1223/1126,
  17264. bottom: 205/1428
  17265. }
  17266. },
  17267. lingerie: {
  17268. height: math.unit(5, "feet"),
  17269. weight: math.unit(240, "lb"),
  17270. name: "Lingerie",
  17271. image: {
  17272. source: "./media/characters/cafat/lingerie.svg",
  17273. extra: 1223/1126,
  17274. bottom: 205/1428
  17275. }
  17276. },
  17277. upright: {
  17278. height: math.unit(6.3, "feet"),
  17279. weight: math.unit(240, "lb"),
  17280. name: "Upright",
  17281. image: {
  17282. source: "./media/characters/cafat/upright.svg",
  17283. bottom: 0.01
  17284. }
  17285. },
  17286. uprightFull: {
  17287. height: math.unit(6.3, "feet"),
  17288. weight: math.unit(240, "lb"),
  17289. name: "Upright (Full)",
  17290. image: {
  17291. source: "./media/characters/cafat/upright-full.svg",
  17292. bottom: 0.01
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Small",
  17299. height: math.unit(5, "feet"),
  17300. default: true
  17301. },
  17302. {
  17303. name: "Large",
  17304. height: math.unit(13, "feet")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17310. {
  17311. front: {
  17312. height: math.unit(6, "feet"),
  17313. weight: math.unit(150, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/verin-raharra/front.svg",
  17317. extra: 5019 / 4835,
  17318. bottom: 0.023
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(7 + 5 / 12, "feet"),
  17326. default: true
  17327. },
  17328. {
  17329. name: "Upsized",
  17330. height: math.unit(20, "feet")
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(7, "feet"),
  17339. weight: math.unit(230, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/nakata/front.svg",
  17343. extra: 1.005,
  17344. bottom: 0.01
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(7, "feet"),
  17352. default: true
  17353. },
  17354. {
  17355. name: "Big",
  17356. height: math.unit(14, "feet")
  17357. },
  17358. {
  17359. name: "Macro",
  17360. height: math.unit(400, "feet")
  17361. },
  17362. ]
  17363. ))
  17364. characterMakers.push(() => makeCharacter(
  17365. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17366. {
  17367. front: {
  17368. height: math.unit(4.91, "feet"),
  17369. weight: math.unit(100, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/lily/front.svg",
  17373. extra: 1585 / 1415,
  17374. bottom: 0.02
  17375. }
  17376. },
  17377. },
  17378. [
  17379. {
  17380. name: "Normal",
  17381. height: math.unit(4.91, "feet"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17388. {
  17389. laying: {
  17390. height: math.unit(4 + 4 / 12, "feet"),
  17391. weight: math.unit(600, "lb"),
  17392. name: "Laying",
  17393. image: {
  17394. source: "./media/characters/sheila/laying.svg",
  17395. extra: 1333 / 1265,
  17396. bottom: 0.16
  17397. }
  17398. },
  17399. },
  17400. [
  17401. {
  17402. name: "Normal",
  17403. height: math.unit(4 + 4 / 12, "feet"),
  17404. default: true
  17405. },
  17406. ]
  17407. ))
  17408. characterMakers.push(() => makeCharacter(
  17409. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17410. {
  17411. front: {
  17412. height: math.unit(6, "feet"),
  17413. weight: math.unit(190, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/sax/front.svg",
  17417. extra: 1187 / 973,
  17418. bottom: 0.042
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Micro",
  17425. height: math.unit(4, "inches"),
  17426. default: true
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17432. {
  17433. front: {
  17434. height: math.unit(6, "feet"),
  17435. weight: math.unit(150, "lb"),
  17436. name: "Front",
  17437. image: {
  17438. source: "./media/characters/pandora/front.svg",
  17439. extra: 2720 / 2556,
  17440. bottom: 0.015
  17441. }
  17442. },
  17443. back: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Back",
  17447. image: {
  17448. source: "./media/characters/pandora/back.svg",
  17449. extra: 2720 / 2556,
  17450. bottom: 0.01
  17451. }
  17452. },
  17453. beans: {
  17454. height: math.unit(6 / 8, "feet"),
  17455. name: "Beans",
  17456. image: {
  17457. source: "./media/characters/pandora/beans.svg"
  17458. }
  17459. },
  17460. collar: {
  17461. height: math.unit(0.31, "feet"),
  17462. name: "Collar",
  17463. image: {
  17464. source: "./media/characters/pandora/collar.svg"
  17465. }
  17466. },
  17467. skirt: {
  17468. height: math.unit(6, "feet"),
  17469. weight: math.unit(150, "lb"),
  17470. name: "Skirt",
  17471. image: {
  17472. source: "./media/characters/pandora/skirt.svg",
  17473. extra: 1622 / 1525,
  17474. bottom: 0.015
  17475. }
  17476. },
  17477. hoodie: {
  17478. height: math.unit(6, "feet"),
  17479. weight: math.unit(150, "lb"),
  17480. name: "Hoodie",
  17481. image: {
  17482. source: "./media/characters/pandora/hoodie.svg",
  17483. extra: 1622 / 1525,
  17484. bottom: 0.015
  17485. }
  17486. },
  17487. casual: {
  17488. height: math.unit(6, "feet"),
  17489. weight: math.unit(150, "lb"),
  17490. name: "Casual",
  17491. image: {
  17492. source: "./media/characters/pandora/casual.svg",
  17493. extra: 1622 / 1525,
  17494. bottom: 0.015
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6, "feet")
  17502. },
  17503. {
  17504. name: "Big Steppy",
  17505. height: math.unit(1, "km"),
  17506. default: true
  17507. },
  17508. {
  17509. name: "Galactic Steppy",
  17510. height: math.unit(2, "gigameters")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17516. {
  17517. side: {
  17518. height: math.unit(10, "feet"),
  17519. weight: math.unit(800, "kg"),
  17520. name: "Side",
  17521. image: {
  17522. source: "./media/characters/venio-darcony/side.svg",
  17523. extra: 1373 / 1003,
  17524. bottom: 0.037
  17525. }
  17526. },
  17527. front: {
  17528. height: math.unit(19, "feet"),
  17529. weight: math.unit(800, "kg"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/venio-darcony/front.svg"
  17533. }
  17534. },
  17535. back: {
  17536. height: math.unit(19, "feet"),
  17537. weight: math.unit(800, "kg"),
  17538. name: "Back",
  17539. image: {
  17540. source: "./media/characters/venio-darcony/back.svg"
  17541. }
  17542. },
  17543. sideNsfw: {
  17544. height: math.unit(10, "feet"),
  17545. weight: math.unit(800, "kg"),
  17546. name: "Side (NSFW)",
  17547. image: {
  17548. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17549. extra: 1373 / 1003,
  17550. bottom: 0.037
  17551. }
  17552. },
  17553. frontNsfw: {
  17554. height: math.unit(19, "feet"),
  17555. weight: math.unit(800, "kg"),
  17556. name: "Front (NSFW)",
  17557. image: {
  17558. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17559. }
  17560. },
  17561. backNsfw: {
  17562. height: math.unit(19, "feet"),
  17563. weight: math.unit(800, "kg"),
  17564. name: "Back (NSFW)",
  17565. image: {
  17566. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17567. }
  17568. },
  17569. sideArmored: {
  17570. height: math.unit(10, "feet"),
  17571. weight: math.unit(800, "kg"),
  17572. name: "Side (Armored)",
  17573. image: {
  17574. source: "./media/characters/venio-darcony/side-armored.svg",
  17575. extra: 1373 / 1003,
  17576. bottom: 0.037
  17577. }
  17578. },
  17579. frontArmored: {
  17580. height: math.unit(19, "feet"),
  17581. weight: math.unit(900, "kg"),
  17582. name: "Front (Armored)",
  17583. image: {
  17584. source: "./media/characters/venio-darcony/front-armored.svg"
  17585. }
  17586. },
  17587. backArmored: {
  17588. height: math.unit(19, "feet"),
  17589. weight: math.unit(900, "kg"),
  17590. name: "Back (Armored)",
  17591. image: {
  17592. source: "./media/characters/venio-darcony/back-armored.svg"
  17593. }
  17594. },
  17595. sword: {
  17596. height: math.unit(10, "feet"),
  17597. weight: math.unit(50, "lb"),
  17598. name: "Sword",
  17599. image: {
  17600. source: "./media/characters/venio-darcony/sword.svg"
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(10, "feet")
  17608. },
  17609. {
  17610. name: "Macro",
  17611. height: math.unit(130, "feet"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Macro+",
  17616. height: math.unit(240, "feet")
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(6, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/veski/front.svg",
  17629. extra: 1299 / 1225,
  17630. bottom: 0.04
  17631. }
  17632. },
  17633. back: {
  17634. height: math.unit(6, "feet"),
  17635. weight: math.unit(150, "lb"),
  17636. name: "Back",
  17637. image: {
  17638. source: "./media/characters/veski/back.svg",
  17639. extra: 1299 / 1225,
  17640. bottom: 0.008
  17641. }
  17642. },
  17643. maw: {
  17644. height: math.unit(1.5 * 1.21, "feet"),
  17645. name: "Maw",
  17646. image: {
  17647. source: "./media/characters/veski/maw.svg"
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Macro",
  17654. height: math.unit(2, "km"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(5 + 7 / 12, "feet"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/isabelle/front.svg",
  17667. extra: 2130 / 1976,
  17668. bottom: 0.05
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Supermicro",
  17675. height: math.unit(10, "micrometers")
  17676. },
  17677. {
  17678. name: "Micro",
  17679. height: math.unit(1, "inch")
  17680. },
  17681. {
  17682. name: "Tiny",
  17683. height: math.unit(5, "inches")
  17684. },
  17685. {
  17686. name: "Standard",
  17687. height: math.unit(5 + 7 / 12, "inches")
  17688. },
  17689. {
  17690. name: "Macro",
  17691. height: math.unit(80, "meters"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Megamacro",
  17696. height: math.unit(250, "meters")
  17697. },
  17698. {
  17699. name: "Gigamacro",
  17700. height: math.unit(5, "km")
  17701. },
  17702. {
  17703. name: "Cosmic",
  17704. height: math.unit(2.5e6, "miles")
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17710. {
  17711. front: {
  17712. height: math.unit(6, "feet"),
  17713. weight: math.unit(150, "lb"),
  17714. name: "Front",
  17715. image: {
  17716. source: "./media/characters/hanzo/front.svg",
  17717. extra: 374 / 344,
  17718. bottom: 0.02
  17719. }
  17720. },
  17721. },
  17722. [
  17723. {
  17724. name: "Normal",
  17725. height: math.unit(8, "feet"),
  17726. default: true
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(7, "feet"),
  17735. weight: math.unit(130, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/anna/front.svg",
  17739. extra: 169 / 145,
  17740. bottom: 0.06
  17741. }
  17742. },
  17743. full: {
  17744. height: math.unit(4.96, "feet"),
  17745. weight: math.unit(220, "lb"),
  17746. name: "Full",
  17747. image: {
  17748. source: "./media/characters/anna/full.svg",
  17749. extra: 138 / 114,
  17750. bottom: 0.15
  17751. }
  17752. },
  17753. tongue: {
  17754. height: math.unit(2.53, "feet"),
  17755. name: "Tongue",
  17756. image: {
  17757. source: "./media/characters/anna/tongue.svg"
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(7, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(7, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/ian-corvid/front.svg",
  17778. extra: 150 / 142,
  17779. bottom: 0.02
  17780. }
  17781. },
  17782. back: {
  17783. height: math.unit(7, "feet"),
  17784. weight: math.unit(150, "lb"),
  17785. name: "Back",
  17786. image: {
  17787. source: "./media/characters/ian-corvid/back.svg",
  17788. extra: 150 / 143,
  17789. bottom: 0.01
  17790. }
  17791. },
  17792. stomping: {
  17793. height: math.unit(7, "feet"),
  17794. weight: math.unit(150, "lb"),
  17795. name: "Stomping",
  17796. image: {
  17797. source: "./media/characters/ian-corvid/stomping.svg",
  17798. extra: 76 / 72
  17799. }
  17800. },
  17801. sitting: {
  17802. height: math.unit(7 / 1.8, "feet"),
  17803. weight: math.unit(150, "lb"),
  17804. name: "Sitting",
  17805. image: {
  17806. source: "./media/characters/ian-corvid/sitting.svg",
  17807. extra: 1400 / 1269,
  17808. bottom: 0.15
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Tiny Microw",
  17815. height: math.unit(1, "inch")
  17816. },
  17817. {
  17818. name: "Microw",
  17819. height: math.unit(6, "inches")
  17820. },
  17821. {
  17822. name: "Crow",
  17823. height: math.unit(7 + 1 / 12, "feet"),
  17824. default: true
  17825. },
  17826. {
  17827. name: "Macrow",
  17828. height: math.unit(176, "feet")
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(5 + 7 / 12, "feet"),
  17837. weight: math.unit(147, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/natalie-kellon/front.svg",
  17841. extra: 1214 / 1141,
  17842. bottom: 0.02
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Micro",
  17849. height: math.unit(1 / 16, "inch")
  17850. },
  17851. {
  17852. name: "Tiny",
  17853. height: math.unit(4, "inches")
  17854. },
  17855. {
  17856. name: "Normal",
  17857. height: math.unit(5 + 7 / 12, "feet"),
  17858. default: true
  17859. },
  17860. {
  17861. name: "Amazon",
  17862. height: math.unit(12, "feet")
  17863. },
  17864. {
  17865. name: "Giantess",
  17866. height: math.unit(160, "meters")
  17867. },
  17868. {
  17869. name: "Titaness",
  17870. height: math.unit(800, "meters")
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(6, "feet"),
  17879. weight: math.unit(150, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/alluria/front.svg",
  17883. extra: 806 / 738,
  17884. bottom: 0.01
  17885. }
  17886. },
  17887. side: {
  17888. height: math.unit(6, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Side",
  17891. image: {
  17892. source: "./media/characters/alluria/side.svg",
  17893. extra: 800 / 750,
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(6, "feet"),
  17898. weight: math.unit(150, "lb"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/alluria/back.svg",
  17902. extra: 806 / 738,
  17903. }
  17904. },
  17905. frontMaid: {
  17906. height: math.unit(6, "feet"),
  17907. weight: math.unit(150, "lb"),
  17908. name: "Front (Maid)",
  17909. image: {
  17910. source: "./media/characters/alluria/front-maid.svg",
  17911. extra: 806 / 738,
  17912. bottom: 0.01
  17913. }
  17914. },
  17915. sideMaid: {
  17916. height: math.unit(6, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Side (Maid)",
  17919. image: {
  17920. source: "./media/characters/alluria/side-maid.svg",
  17921. extra: 800 / 750,
  17922. bottom: 0.005
  17923. }
  17924. },
  17925. backMaid: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(150, "lb"),
  17928. name: "Back (Maid)",
  17929. image: {
  17930. source: "./media/characters/alluria/back-maid.svg",
  17931. extra: 806 / 738,
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Micro",
  17938. height: math.unit(6, "inches"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(6, "feet"),
  17948. weight: math.unit(150, "lb"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/kyle/front.svg",
  17952. extra: 1069 / 962,
  17953. bottom: 77.228 / 1727.45
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Macro",
  17960. height: math.unit(150, "feet"),
  17961. default: true
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6, "feet"),
  17970. weight: math.unit(300, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/duncan/front.svg",
  17974. extra: 1650 / 1482,
  17975. bottom: 0.05
  17976. }
  17977. },
  17978. },
  17979. [
  17980. {
  17981. name: "Macro",
  17982. height: math.unit(100, "feet"),
  17983. default: true
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(5 + 4 / 12, "feet"),
  17992. weight: math.unit(220, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/memory/front.svg",
  17996. extra: 3641 / 3545,
  17997. bottom: 0.03
  17998. }
  17999. },
  18000. back: {
  18001. height: math.unit(5 + 4 / 12, "feet"),
  18002. weight: math.unit(220, "lb"),
  18003. name: "Back",
  18004. image: {
  18005. source: "./media/characters/memory/back.svg",
  18006. extra: 3641 / 3545,
  18007. bottom: 0.025
  18008. }
  18009. },
  18010. frontSkirt: {
  18011. height: math.unit(5 + 4 / 12, "feet"),
  18012. weight: math.unit(220, "lb"),
  18013. name: "Front (Skirt)",
  18014. image: {
  18015. source: "./media/characters/memory/front-skirt.svg",
  18016. extra: 3641 / 3545,
  18017. bottom: 0.03
  18018. }
  18019. },
  18020. frontDress: {
  18021. height: math.unit(5 + 4 / 12, "feet"),
  18022. weight: math.unit(220, "lb"),
  18023. name: "Front (Dress)",
  18024. image: {
  18025. source: "./media/characters/memory/front-dress.svg",
  18026. extra: 3641 / 3545,
  18027. bottom: 0.03
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Micro",
  18034. height: math.unit(6, "inches"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(5 + 4 / 12, "feet")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18045. {
  18046. front: {
  18047. height: math.unit(4 + 11 / 12, "feet"),
  18048. weight: math.unit(100, "lb"),
  18049. name: "Front",
  18050. image: {
  18051. source: "./media/characters/luno/front.svg",
  18052. extra: 1535 / 1487,
  18053. bottom: 0.03
  18054. }
  18055. },
  18056. },
  18057. [
  18058. {
  18059. name: "Micro",
  18060. height: math.unit(3, "inches")
  18061. },
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(4 + 11 / 12, "feet"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(300, "feet")
  18070. },
  18071. {
  18072. name: "Megamacro",
  18073. height: math.unit(700, "miles")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18079. {
  18080. front: {
  18081. height: math.unit(6 + 2 / 12, "feet"),
  18082. weight: math.unit(170, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/jamesy/front.svg",
  18086. extra: 440 / 382,
  18087. bottom: 0.005
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Micro",
  18094. height: math.unit(3, "inches")
  18095. },
  18096. {
  18097. name: "Normal",
  18098. height: math.unit(6 + 2 / 12, "feet"),
  18099. default: true
  18100. },
  18101. {
  18102. name: "Macro",
  18103. height: math.unit(300, "feet")
  18104. },
  18105. {
  18106. name: "Megamacro",
  18107. height: math.unit(700, "miles")
  18108. },
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18113. {
  18114. front: {
  18115. height: math.unit(6, "feet"),
  18116. weight: math.unit(160, "lb"),
  18117. name: "Front",
  18118. image: {
  18119. source: "./media/characters/mark/front.svg",
  18120. extra: 3300 / 3100,
  18121. bottom: 136.42 / 3440.47
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(120, "meters")
  18129. },
  18130. {
  18131. name: "Bigger Macro",
  18132. height: math.unit(350, "meters")
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(8, "km"),
  18137. default: true
  18138. },
  18139. {
  18140. name: "Continental",
  18141. height: math.unit(4550, "km")
  18142. },
  18143. {
  18144. name: "Planetary",
  18145. height: math.unit(65000, "km")
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18151. {
  18152. front: {
  18153. height: math.unit(6, "feet"),
  18154. weight: math.unit(400, "lb"),
  18155. name: "Front",
  18156. image: {
  18157. source: "./media/characters/mac/front.svg",
  18158. extra: 1048 / 987.7,
  18159. bottom: 60 / 1107.6,
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Macro",
  18166. height: math.unit(500, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18173. {
  18174. front: {
  18175. height: math.unit(5 + 2 / 12, "feet"),
  18176. weight: math.unit(190, "lb"),
  18177. name: "Front",
  18178. image: {
  18179. source: "./media/characters/bari/front.svg",
  18180. extra: 3156 / 2880,
  18181. bottom: 0.03
  18182. }
  18183. },
  18184. back: {
  18185. height: math.unit(5 + 2 / 12, "feet"),
  18186. weight: math.unit(190, "lb"),
  18187. name: "Back",
  18188. image: {
  18189. source: "./media/characters/bari/back.svg",
  18190. extra: 3260 / 2834,
  18191. bottom: 0.025
  18192. }
  18193. },
  18194. frontPlush: {
  18195. height: math.unit(5 + 2 / 12, "feet"),
  18196. weight: math.unit(190, "lb"),
  18197. name: "Front (Plush)",
  18198. image: {
  18199. source: "./media/characters/bari/front-plush.svg",
  18200. extra: 1112 / 1061,
  18201. bottom: 0.002
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Micro",
  18208. height: math.unit(3, "inches")
  18209. },
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(5 + 2 / 12, "feet"),
  18213. default: true
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(20, "feet")
  18218. },
  18219. ]
  18220. ))
  18221. characterMakers.push(() => makeCharacter(
  18222. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18223. {
  18224. front: {
  18225. height: math.unit(6 + 1 / 12, "feet"),
  18226. weight: math.unit(275, "lb"),
  18227. name: "Front",
  18228. image: {
  18229. source: "./media/characters/hunter-misha-raven/front.svg"
  18230. }
  18231. },
  18232. },
  18233. [
  18234. {
  18235. name: "Mortal",
  18236. height: math.unit(6 + 1 / 12, "feet")
  18237. },
  18238. {
  18239. name: "Divine",
  18240. height: math.unit(1.12134e34, "parsecs"),
  18241. default: true
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18247. {
  18248. front: {
  18249. height: math.unit(6 + 3 / 12, "feet"),
  18250. weight: math.unit(220, "lb"),
  18251. name: "Front",
  18252. image: {
  18253. source: "./media/characters/max-calore/front.svg",
  18254. extra: 1700 / 1648,
  18255. bottom: 0.01
  18256. }
  18257. },
  18258. back: {
  18259. height: math.unit(6 + 3 / 12, "feet"),
  18260. weight: math.unit(220, "lb"),
  18261. name: "Back",
  18262. image: {
  18263. source: "./media/characters/max-calore/back.svg",
  18264. extra: 1700 / 1648,
  18265. bottom: 0.01
  18266. }
  18267. },
  18268. },
  18269. [
  18270. {
  18271. name: "Normal",
  18272. height: math.unit(6 + 3 / 12, "feet"),
  18273. default: true
  18274. },
  18275. ]
  18276. ))
  18277. characterMakers.push(() => makeCharacter(
  18278. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18279. {
  18280. side: {
  18281. height: math.unit(2 + 8 / 12, "feet"),
  18282. weight: math.unit(99, "lb"),
  18283. name: "Side",
  18284. image: {
  18285. source: "./media/characters/aspen/side.svg",
  18286. extra: 152 / 138,
  18287. bottom: 0.032
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(2 + 8 / 12, "feet"),
  18295. default: true
  18296. },
  18297. ]
  18298. ))
  18299. characterMakers.push(() => makeCharacter(
  18300. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18301. {
  18302. side: {
  18303. height: math.unit(3 + 2 / 12, "feet"),
  18304. weight: math.unit(224, "lb"),
  18305. name: "Side",
  18306. image: {
  18307. source: "./media/characters/sheila-feral-wolf/side.svg",
  18308. extra: 179 / 166,
  18309. bottom: 0.03
  18310. }
  18311. },
  18312. },
  18313. [
  18314. {
  18315. name: "Normal",
  18316. height: math.unit(3 + 2 / 12, "feet"),
  18317. default: true
  18318. },
  18319. ]
  18320. ))
  18321. characterMakers.push(() => makeCharacter(
  18322. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18323. {
  18324. side: {
  18325. height: math.unit(1 + 9 / 12, "feet"),
  18326. weight: math.unit(38, "lb"),
  18327. name: "Side",
  18328. image: {
  18329. source: "./media/characters/michelle/side.svg",
  18330. extra: 147 / 136.7,
  18331. bottom: 0.03
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(1 + 9 / 12, "feet"),
  18339. default: true
  18340. },
  18341. ]
  18342. ))
  18343. characterMakers.push(() => makeCharacter(
  18344. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18345. {
  18346. front: {
  18347. height: math.unit(1.54, "feet"),
  18348. weight: math.unit(50, "lb"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/nino/front.svg"
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(1.54, "feet"),
  18359. default: true
  18360. },
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(1.49, "feet"),
  18368. weight: math.unit(45, "lb"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/viola/front.svg"
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(1.49, "feet"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(6 + 5 / 12, "feet"),
  18388. weight: math.unit(580, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/atlas/front.svg",
  18392. extra: 298.5 / 290,
  18393. bottom: 0.015
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(6 + 5 / 12, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18407. {
  18408. side: {
  18409. height: math.unit(15.6, "inches"),
  18410. weight: math.unit(10, "lb"),
  18411. name: "Side",
  18412. image: {
  18413. source: "./media/characters/davy/side.svg",
  18414. extra: 200 / 170,
  18415. bottom: 0.01
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(15.6, "inches"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18429. {
  18430. side: {
  18431. height: math.unit(4 + 8 / 12, "feet"),
  18432. weight: math.unit(166, "lb"),
  18433. name: "Side",
  18434. image: {
  18435. source: "./media/characters/fiona/side.svg",
  18436. extra: 232 / 220,
  18437. bottom: 0.03
  18438. }
  18439. },
  18440. },
  18441. [
  18442. {
  18443. name: "Normal",
  18444. height: math.unit(4 + 8 / 12, "feet"),
  18445. default: true
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18451. {
  18452. front: {
  18453. height: math.unit(26, "inches"),
  18454. weight: math.unit(35, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/lyla/front.svg",
  18458. bottom: 0.1
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(3, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18472. {
  18473. side: {
  18474. height: math.unit(1.8, "feet"),
  18475. weight: math.unit(44, "lb"),
  18476. name: "Side",
  18477. image: {
  18478. source: "./media/characters/perseus/side.svg",
  18479. bottom: 0.21
  18480. }
  18481. },
  18482. },
  18483. [
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(1.8, "feet"),
  18487. default: true
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18493. {
  18494. side: {
  18495. height: math.unit(4 + 2 / 12, "feet"),
  18496. weight: math.unit(20, "lb"),
  18497. name: "Side",
  18498. image: {
  18499. source: "./media/characters/remus/side.svg"
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(4 + 2 / 12, "feet"),
  18507. default: true
  18508. },
  18509. ]
  18510. ))
  18511. characterMakers.push(() => makeCharacter(
  18512. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18513. {
  18514. front: {
  18515. height: math.unit(4 + 11 / 12, "feet"),
  18516. weight: math.unit(114, "lb"),
  18517. name: "Front",
  18518. image: {
  18519. source: "./media/characters/raf/front.svg",
  18520. extra: 1504/1339,
  18521. bottom: 26/1530
  18522. }
  18523. },
  18524. side: {
  18525. height: math.unit(4 + 11 / 12, "feet"),
  18526. weight: math.unit(114, "lb"),
  18527. name: "Side",
  18528. image: {
  18529. source: "./media/characters/raf/side.svg",
  18530. extra: 1466/1316,
  18531. bottom: 29/1495
  18532. }
  18533. },
  18534. paw: {
  18535. height: math.unit(1.45, "feet"),
  18536. name: "Paw",
  18537. image: {
  18538. source: "./media/characters/raf/paw.svg"
  18539. },
  18540. extraAttributes: {
  18541. "toeSize": {
  18542. name: "Toe Size",
  18543. power: 2,
  18544. type: "area",
  18545. base: math.unit(0.004, "m^2")
  18546. },
  18547. "padSize": {
  18548. name: "Pad Size",
  18549. power: 2,
  18550. type: "area",
  18551. base: math.unit(0.04, "m^2")
  18552. },
  18553. "footSize": {
  18554. name: "Foot Size",
  18555. power: 2,
  18556. type: "area",
  18557. base: math.unit(0.08, "m^2")
  18558. },
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Micro",
  18565. height: math.unit(2, "inches")
  18566. },
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(4 + 11 / 12, "feet"),
  18570. default: true
  18571. },
  18572. {
  18573. name: "Macro",
  18574. height: math.unit(70, "feet")
  18575. },
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(1.5, "meters"),
  18583. weight: math.unit(68, "kg"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/liam-einarr/front.svg",
  18587. extra: 2822 / 2666
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(1.5, "meters"),
  18592. weight: math.unit(68, "kg"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/liam-einarr/back.svg",
  18596. extra: 2822 / 2666,
  18597. bottom: 0.015
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(1.5, "meters"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(150, "meters")
  18610. },
  18611. {
  18612. name: "Megamacro",
  18613. height: math.unit(35, "km")
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18619. {
  18620. front: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(75, "kg"),
  18623. name: "Front",
  18624. image: {
  18625. source: "./media/characters/linda/front.svg",
  18626. extra: 930 / 874,
  18627. bottom: 0.004
  18628. }
  18629. },
  18630. },
  18631. [
  18632. {
  18633. name: "Normal",
  18634. height: math.unit(6, "feet"),
  18635. default: true
  18636. },
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18641. {
  18642. front: {
  18643. height: math.unit(6 + 8 / 12, "feet"),
  18644. weight: math.unit(220, "lb"),
  18645. name: "Front",
  18646. image: {
  18647. source: "./media/characters/caylex/front.svg",
  18648. extra: 821 / 772,
  18649. bottom: 0.07
  18650. }
  18651. },
  18652. back: {
  18653. height: math.unit(6 + 8 / 12, "feet"),
  18654. weight: math.unit(220, "lb"),
  18655. name: "Back",
  18656. image: {
  18657. source: "./media/characters/caylex/back.svg",
  18658. extra: 821 / 772,
  18659. bottom: 0.022
  18660. }
  18661. },
  18662. hand: {
  18663. height: math.unit(1.25, "feet"),
  18664. name: "Hand",
  18665. image: {
  18666. source: "./media/characters/caylex/hand.svg"
  18667. }
  18668. },
  18669. foot: {
  18670. height: math.unit(1.6, "feet"),
  18671. name: "Foot",
  18672. image: {
  18673. source: "./media/characters/caylex/foot.svg"
  18674. }
  18675. },
  18676. armored: {
  18677. height: math.unit(6 + 8 / 12, "feet"),
  18678. weight: math.unit(250, "lb"),
  18679. name: "Armored",
  18680. image: {
  18681. source: "./media/characters/caylex/armored.svg",
  18682. extra: 1420 / 1310,
  18683. bottom: 0.045
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(6 + 8 / 12, "feet"),
  18691. default: true
  18692. },
  18693. {
  18694. name: "Normal+",
  18695. height: math.unit(12, "feet")
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(7 + 6 / 12, "feet"),
  18704. weight: math.unit(288, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/alana/front.svg",
  18708. extra: 679 / 653,
  18709. bottom: 22.5 / 701
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(7 + 6 / 12, "feet")
  18717. },
  18718. {
  18719. name: "Large",
  18720. height: math.unit(50, "feet")
  18721. },
  18722. {
  18723. name: "Macro",
  18724. height: math.unit(100, "feet"),
  18725. default: true
  18726. },
  18727. {
  18728. name: "Macro+",
  18729. height: math.unit(200, "feet")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(6 + 1 / 12, "feet"),
  18738. weight: math.unit(210, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/hasani/front.svg",
  18742. extra: 244 / 232,
  18743. bottom: 0.01
  18744. }
  18745. },
  18746. back: {
  18747. height: math.unit(6 + 1 / 12, "feet"),
  18748. weight: math.unit(210, "lb"),
  18749. name: "Back",
  18750. image: {
  18751. source: "./media/characters/hasani/back.svg",
  18752. extra: 244 / 232,
  18753. bottom: 0.01
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(6 + 1 / 12, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(175, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(1.82, "meters"),
  18774. weight: math.unit(140, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/nita/front.svg",
  18778. extra: 2473 / 2363,
  18779. bottom: 0.01
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(1.82, "m")
  18787. },
  18788. {
  18789. name: "Macro",
  18790. height: math.unit(300, "m")
  18791. },
  18792. {
  18793. name: "Mistake Canon",
  18794. height: math.unit(0.5, "miles"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Big Mistake",
  18799. height: math.unit(13, "miles")
  18800. },
  18801. {
  18802. name: "Playing God",
  18803. height: math.unit(2450, "miles")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(4, "feet"),
  18812. weight: math.unit(120, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/shiriko/front.svg",
  18816. extra: 970/934,
  18817. bottom: 5/975
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(4, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(6, "feet"),
  18834. name: "front",
  18835. image: {
  18836. source: "./media/characters/deja/front.svg",
  18837. extra: 926 / 840,
  18838. bottom: 0.07
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Planck Length",
  18845. height: math.unit(1.6e-35, "meters")
  18846. },
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(30.48, "meters"),
  18850. default: true
  18851. },
  18852. {
  18853. name: "Universal",
  18854. height: math.unit(8.8e26, "meters")
  18855. },
  18856. ]
  18857. ))
  18858. characterMakers.push(() => makeCharacter(
  18859. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18860. {
  18861. side: {
  18862. height: math.unit(8, "feet"),
  18863. weight: math.unit(6300, "lb"),
  18864. name: "Side",
  18865. image: {
  18866. source: "./media/characters/anima/side.svg",
  18867. bottom: 0.035
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(8, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(8, "feet"),
  18884. weight: math.unit(350, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/bianca/front.svg",
  18888. extra: 234 / 225,
  18889. bottom: 0.03
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(8, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(11 + 5/12, "feet"),
  18906. weight: math.unit(1200, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/adinia/front.svg",
  18910. extra: 1767/1641,
  18911. bottom: 44/1811
  18912. },
  18913. extraAttributes: {
  18914. "energyIntake": {
  18915. name: "Energy Intake",
  18916. power: 3,
  18917. type: "energy",
  18918. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18919. },
  18920. }
  18921. },
  18922. back: {
  18923. height: math.unit(11 + 5/12, "feet"),
  18924. weight: math.unit(1200, "lb"),
  18925. name: "Back",
  18926. image: {
  18927. source: "./media/characters/adinia/back.svg",
  18928. extra: 1834/1684,
  18929. bottom: 14/1848
  18930. },
  18931. extraAttributes: {
  18932. "energyIntake": {
  18933. name: "Energy Intake",
  18934. power: 3,
  18935. type: "energy",
  18936. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18937. },
  18938. }
  18939. },
  18940. maw: {
  18941. height: math.unit(3.79, "feet"),
  18942. name: "Maw",
  18943. image: {
  18944. source: "./media/characters/adinia/maw.svg"
  18945. }
  18946. },
  18947. rump: {
  18948. height: math.unit(4.6, "feet"),
  18949. name: "Rump",
  18950. image: {
  18951. source: "./media/characters/adinia/rump.svg"
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Normal",
  18958. height: math.unit(11 + 5 / 12, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(3, "meters"),
  18968. weight: math.unit(200, "kg"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/lykasa/front.svg",
  18972. extra: 1076 / 976,
  18973. bottom: 0.06
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(3, "meters")
  18981. },
  18982. {
  18983. name: "Kaiju",
  18984. height: math.unit(120, "meters"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Mega Kaiju",
  18989. height: math.unit(240, "km")
  18990. },
  18991. {
  18992. name: "Giga Kaiju",
  18993. height: math.unit(400, "megameters")
  18994. },
  18995. {
  18996. name: "Tera Kaiju",
  18997. height: math.unit(800, "gigameters")
  18998. },
  18999. {
  19000. name: "Kaiju Dragon Goddess",
  19001. height: math.unit(26, "zettaparsecs")
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19007. {
  19008. side: {
  19009. height: math.unit(283 / 124 * 6, "feet"),
  19010. weight: math.unit(35000, "lb"),
  19011. name: "Side",
  19012. image: {
  19013. source: "./media/characters/malfaren/side.svg",
  19014. extra: 1310/529,
  19015. bottom: 24/1334
  19016. }
  19017. },
  19018. front: {
  19019. height: math.unit(22.36, "feet"),
  19020. weight: math.unit(35000, "lb"),
  19021. name: "Front",
  19022. image: {
  19023. source: "./media/characters/malfaren/front.svg",
  19024. extra: 1237/1115,
  19025. bottom: 32/1269
  19026. }
  19027. },
  19028. maw: {
  19029. height: math.unit(6.9, "feet"),
  19030. name: "Maw",
  19031. image: {
  19032. source: "./media/characters/malfaren/maw.svg"
  19033. }
  19034. },
  19035. dick: {
  19036. height: math.unit(6.19, "feet"),
  19037. name: "Dick",
  19038. image: {
  19039. source: "./media/characters/malfaren/dick.svg"
  19040. }
  19041. },
  19042. eye: {
  19043. height: math.unit(0.69, "feet"),
  19044. name: "Eye",
  19045. image: {
  19046. source: "./media/characters/malfaren/eye.svg"
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Big",
  19053. height: math.unit(283 / 162 * 6, "feet"),
  19054. },
  19055. {
  19056. name: "Bigger",
  19057. height: math.unit(283 / 124 * 6, "feet")
  19058. },
  19059. {
  19060. name: "Massive",
  19061. height: math.unit(283 / 92 * 6, "feet"),
  19062. default: true
  19063. },
  19064. {
  19065. name: "👀💦",
  19066. height: math.unit(283 / 73 * 6, "feet"),
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(1.7, "m"),
  19075. weight: math.unit(70, "kg"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/kernel/front.svg",
  19079. extra: 222 / 210,
  19080. bottom: 0.007
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Nano",
  19087. height: math.unit(17, "micrometers")
  19088. },
  19089. {
  19090. name: "Micro",
  19091. height: math.unit(1.7, "mm")
  19092. },
  19093. {
  19094. name: "Small",
  19095. height: math.unit(1.7, "cm")
  19096. },
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(1.7, "m"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(1.75, "meters"),
  19109. weight: math.unit(65, "kg"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/jayne-folest/front.svg",
  19113. extra: 2115 / 2007,
  19114. bottom: 0.02
  19115. }
  19116. },
  19117. back: {
  19118. height: math.unit(1.75, "meters"),
  19119. weight: math.unit(65, "kg"),
  19120. name: "Back",
  19121. image: {
  19122. source: "./media/characters/jayne-folest/back.svg",
  19123. extra: 2115 / 2007,
  19124. bottom: 0.005
  19125. }
  19126. },
  19127. frontClothed: {
  19128. height: math.unit(1.75, "meters"),
  19129. weight: math.unit(65, "kg"),
  19130. name: "Front (Clothed)",
  19131. image: {
  19132. source: "./media/characters/jayne-folest/front-clothed.svg",
  19133. extra: 2115 / 2007,
  19134. bottom: 0.035
  19135. }
  19136. },
  19137. hand: {
  19138. height: math.unit(1 / 1.260, "feet"),
  19139. name: "Hand",
  19140. image: {
  19141. source: "./media/characters/jayne-folest/hand.svg"
  19142. }
  19143. },
  19144. foot: {
  19145. height: math.unit(1 / 0.918, "feet"),
  19146. name: "Foot",
  19147. image: {
  19148. source: "./media/characters/jayne-folest/foot.svg"
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Micro",
  19155. height: math.unit(4, "cm")
  19156. },
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(1.75, "meters")
  19160. },
  19161. {
  19162. name: "Macro",
  19163. height: math.unit(47.5, "meters"),
  19164. default: true
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(180, "cm"),
  19173. weight: math.unit(70, "kg"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/algier/front.svg",
  19177. extra: 596 / 572,
  19178. bottom: 0.04
  19179. }
  19180. },
  19181. back: {
  19182. height: math.unit(180, "cm"),
  19183. weight: math.unit(70, "kg"),
  19184. name: "Back",
  19185. image: {
  19186. source: "./media/characters/algier/back.svg",
  19187. extra: 596 / 572,
  19188. bottom: 0.025
  19189. }
  19190. },
  19191. frontdressed: {
  19192. height: math.unit(180, "cm"),
  19193. weight: math.unit(150, "kg"),
  19194. name: "Front-dressed",
  19195. image: {
  19196. source: "./media/characters/algier/front-dressed.svg",
  19197. extra: 596 / 572,
  19198. bottom: 0.038
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Micro",
  19205. height: math.unit(5, "cm")
  19206. },
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(180, "cm"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(64, "m")
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19220. {
  19221. upright: {
  19222. height: math.unit(7, "feet"),
  19223. weight: math.unit(300, "lb"),
  19224. name: "Upright",
  19225. image: {
  19226. source: "./media/characters/pretzel/upright.svg",
  19227. extra: 534 / 522,
  19228. bottom: 0.065
  19229. }
  19230. },
  19231. sprawling: {
  19232. height: math.unit(3.75, "feet"),
  19233. weight: math.unit(300, "lb"),
  19234. name: "Sprawling",
  19235. image: {
  19236. source: "./media/characters/pretzel/sprawling.svg",
  19237. extra: 314 / 281,
  19238. bottom: 0.1
  19239. }
  19240. },
  19241. tongue: {
  19242. height: math.unit(2, "feet"),
  19243. name: "Tongue",
  19244. image: {
  19245. source: "./media/characters/pretzel/tongue.svg"
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(7, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Oversized",
  19257. height: math.unit(15, "feet")
  19258. },
  19259. {
  19260. name: "Huge",
  19261. height: math.unit(30, "feet")
  19262. },
  19263. {
  19264. name: "Macro",
  19265. height: math.unit(250, "feet")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19271. {
  19272. sideFront: {
  19273. height: math.unit(5 + 2 / 12, "feet"),
  19274. weight: math.unit(120, "lb"),
  19275. name: "Front Side",
  19276. image: {
  19277. source: "./media/characters/roxi/side-front.svg",
  19278. extra: 2924 / 2717,
  19279. bottom: 0.08
  19280. }
  19281. },
  19282. sideBack: {
  19283. height: math.unit(5 + 2 / 12, "feet"),
  19284. weight: math.unit(120, "lb"),
  19285. name: "Back Side",
  19286. image: {
  19287. source: "./media/characters/roxi/side-back.svg",
  19288. extra: 2904 / 2693,
  19289. bottom: 0.06
  19290. }
  19291. },
  19292. front: {
  19293. height: math.unit(5 + 2 / 12, "feet"),
  19294. weight: math.unit(120, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/roxi/front.svg",
  19298. extra: 2028 / 1907,
  19299. bottom: 0.01
  19300. }
  19301. },
  19302. frontAlt: {
  19303. height: math.unit(5 + 2 / 12, "feet"),
  19304. weight: math.unit(120, "lb"),
  19305. name: "Front (Alt)",
  19306. image: {
  19307. source: "./media/characters/roxi/front-alt.svg",
  19308. extra: 1828 / 1798,
  19309. bottom: 0.01
  19310. }
  19311. },
  19312. sitting: {
  19313. height: math.unit(2.8, "feet"),
  19314. weight: math.unit(120, "lb"),
  19315. name: "Sitting",
  19316. image: {
  19317. source: "./media/characters/roxi/sitting.svg",
  19318. extra: 2660 / 2462,
  19319. bottom: 0.1
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(5 + 2 / 12, "feet"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19333. {
  19334. side: {
  19335. height: math.unit(55, "feet"),
  19336. weight: math.unit(153, "tons"),
  19337. name: "Side",
  19338. image: {
  19339. source: "./media/characters/shadow/side.svg",
  19340. extra: 701 / 628,
  19341. bottom: 0.02
  19342. }
  19343. },
  19344. flying: {
  19345. height: math.unit(145, "feet"),
  19346. weight: math.unit(153, "tons"),
  19347. name: "Flying",
  19348. image: {
  19349. source: "./media/characters/shadow/flying.svg"
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(55, "feet"),
  19357. default: true
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(6, "feet"),
  19366. weight: math.unit(200, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/marcie/front.svg",
  19370. extra: 960 / 876,
  19371. bottom: 58 / 1017.87
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Macro",
  19378. height: math.unit(1, "mile"),
  19379. default: true
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(7, "feet"),
  19388. weight: math.unit(200, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/kachina/front.svg",
  19392. extra: 1290.68 / 1119,
  19393. bottom: 36.5 / 1327.18
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(7, "feet"),
  19401. default: true
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19407. {
  19408. looking: {
  19409. height: math.unit(2, "meters"),
  19410. weight: math.unit(300, "kg"),
  19411. name: "Looking",
  19412. image: {
  19413. source: "./media/characters/kash/looking.svg",
  19414. extra: 474 / 344,
  19415. bottom: 0.03
  19416. }
  19417. },
  19418. side: {
  19419. height: math.unit(2, "meters"),
  19420. weight: math.unit(300, "kg"),
  19421. name: "Side",
  19422. image: {
  19423. source: "./media/characters/kash/side.svg",
  19424. extra: 302 / 251,
  19425. bottom: 0.03
  19426. }
  19427. },
  19428. front: {
  19429. height: math.unit(2, "meters"),
  19430. weight: math.unit(300, "kg"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/kash/front.svg",
  19434. extra: 495 / 360,
  19435. bottom: 0.015
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(2, "meters"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Big",
  19447. height: math.unit(3, "meters")
  19448. },
  19449. {
  19450. name: "Large",
  19451. height: math.unit(5, "meters")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19457. {
  19458. feeding: {
  19459. height: math.unit(6.7, "feet"),
  19460. weight: math.unit(350, "lb"),
  19461. name: "Feeding",
  19462. image: {
  19463. source: "./media/characters/lalim/feeding.svg",
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(6.7, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(9.5, "feet"),
  19480. weight: math.unit(600, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/de'vout/front.svg",
  19484. extra: 1443 / 1328,
  19485. bottom: 0.025
  19486. }
  19487. },
  19488. back: {
  19489. height: math.unit(9.5, "feet"),
  19490. weight: math.unit(600, "lb"),
  19491. name: "Back",
  19492. image: {
  19493. source: "./media/characters/de'vout/back.svg",
  19494. extra: 1443 / 1328
  19495. }
  19496. },
  19497. frontDressed: {
  19498. height: math.unit(9.5, "feet"),
  19499. weight: math.unit(600, "lb"),
  19500. name: "Front (Dressed",
  19501. image: {
  19502. source: "./media/characters/de'vout/front-dressed.svg",
  19503. extra: 1443 / 1328,
  19504. bottom: 0.025
  19505. }
  19506. },
  19507. backDressed: {
  19508. height: math.unit(9.5, "feet"),
  19509. weight: math.unit(600, "lb"),
  19510. name: "Back (Dressed",
  19511. image: {
  19512. source: "./media/characters/de'vout/back-dressed.svg",
  19513. extra: 1443 / 1328
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(9.5, "feet"),
  19521. default: true
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19527. {
  19528. front: {
  19529. height: math.unit(8, "feet"),
  19530. weight: math.unit(225, "lb"),
  19531. name: "Front",
  19532. image: {
  19533. source: "./media/characters/talana/front.svg",
  19534. extra: 1410 / 1300,
  19535. bottom: 0.015
  19536. }
  19537. },
  19538. frontDressed: {
  19539. height: math.unit(8, "feet"),
  19540. weight: math.unit(225, "lb"),
  19541. name: "Front (Dressed",
  19542. image: {
  19543. source: "./media/characters/talana/front-dressed.svg",
  19544. extra: 1410 / 1300,
  19545. bottom: 0.015
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(8, "feet"),
  19553. default: true
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19559. {
  19560. side: {
  19561. height: math.unit(7.2, "feet"),
  19562. weight: math.unit(150, "lb"),
  19563. name: "Side",
  19564. image: {
  19565. source: "./media/characters/xeauvok/side.svg",
  19566. extra: 1975 / 1523,
  19567. bottom: 0.07
  19568. }
  19569. },
  19570. },
  19571. [
  19572. {
  19573. name: "Normal",
  19574. height: math.unit(7.2, "feet"),
  19575. default: true
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19581. {
  19582. side: {
  19583. height: math.unit(4, "meters"),
  19584. weight: math.unit(2200, "kg"),
  19585. name: "Side",
  19586. image: {
  19587. source: "./media/characters/zara/side.svg",
  19588. extra: 765/744,
  19589. bottom: 156/921
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(4, "meters"),
  19597. default: true
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19603. {
  19604. side: {
  19605. height: math.unit(6, "feet"),
  19606. weight: math.unit(150, "lb"),
  19607. name: "Side",
  19608. image: {
  19609. source: "./media/characters/richard-dragon/side.svg",
  19610. extra: 845 / 340,
  19611. bottom: 0.017
  19612. }
  19613. },
  19614. maw: {
  19615. height: math.unit(2.97, "feet"),
  19616. name: "Maw",
  19617. image: {
  19618. source: "./media/characters/richard-dragon/maw.svg"
  19619. }
  19620. },
  19621. },
  19622. [
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(4, "feet"),
  19630. weight: math.unit(100, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/richard-smeargle/front.svg",
  19634. extra: 2952 / 2820,
  19635. bottom: 0.028
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(4, "feet"),
  19643. default: true
  19644. },
  19645. {
  19646. name: "Dynamax",
  19647. height: math.unit(20, "meters")
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19653. {
  19654. front: {
  19655. height: math.unit(6, "feet"),
  19656. weight: math.unit(110, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/klay/front.svg",
  19660. extra: 962 / 883,
  19661. bottom: 0.04
  19662. }
  19663. },
  19664. back: {
  19665. height: math.unit(6, "feet"),
  19666. weight: math.unit(110, "lb"),
  19667. name: "Back",
  19668. image: {
  19669. source: "./media/characters/klay/back.svg",
  19670. extra: 962 / 883
  19671. }
  19672. },
  19673. beans: {
  19674. height: math.unit(1.15, "feet"),
  19675. name: "Beans",
  19676. image: {
  19677. source: "./media/characters/klay/beans.svg"
  19678. }
  19679. },
  19680. },
  19681. [
  19682. {
  19683. name: "Micro",
  19684. height: math.unit(6, "inches")
  19685. },
  19686. {
  19687. name: "Mini",
  19688. height: math.unit(3, "feet")
  19689. },
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(6, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Big",
  19697. height: math.unit(25, "feet")
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(100, "feet")
  19702. },
  19703. {
  19704. name: "Megamacro",
  19705. height: math.unit(400, "feet")
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19711. {
  19712. front: {
  19713. height: math.unit(6, "feet"),
  19714. weight: math.unit(160, "lb"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/marcus/front.svg",
  19718. extra: 734 / 676,
  19719. bottom: 0.03
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Little",
  19726. height: math.unit(6, "feet")
  19727. },
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(110, "feet"),
  19731. default: true
  19732. },
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(250, "feet")
  19736. },
  19737. {
  19738. name: "Megamacro",
  19739. height: math.unit(1000, "feet")
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(7, "feet"),
  19748. weight: math.unit(275, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/claude-delroute/front.svg",
  19752. extra: 902/827,
  19753. bottom: 26/928
  19754. }
  19755. },
  19756. side: {
  19757. height: math.unit(7, "feet"),
  19758. weight: math.unit(275, "lb"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/claude-delroute/side.svg",
  19762. extra: 908/853,
  19763. bottom: 16/924
  19764. }
  19765. },
  19766. back: {
  19767. height: math.unit(7, "feet"),
  19768. weight: math.unit(275, "lb"),
  19769. name: "Back",
  19770. image: {
  19771. source: "./media/characters/claude-delroute/back.svg",
  19772. extra: 911/829,
  19773. bottom: 18/929
  19774. }
  19775. },
  19776. maw: {
  19777. height: math.unit(0.6407, "meters"),
  19778. name: "Maw",
  19779. image: {
  19780. source: "./media/characters/claude-delroute/maw.svg"
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Normal",
  19787. height: math.unit(7, "feet"),
  19788. default: true
  19789. },
  19790. {
  19791. name: "Lorge",
  19792. height: math.unit(20, "feet")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(8 + 4 / 12, "feet"),
  19801. weight: math.unit(600, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/dragonien/front.svg",
  19805. extra: 100 / 94,
  19806. bottom: 3.3 / 103.3445
  19807. }
  19808. },
  19809. back: {
  19810. height: math.unit(8 + 4 / 12, "feet"),
  19811. weight: math.unit(600, "lb"),
  19812. name: "Back",
  19813. image: {
  19814. source: "./media/characters/dragonien/back.svg",
  19815. extra: 776 / 746,
  19816. bottom: 6.4 / 782.0616
  19817. }
  19818. },
  19819. foot: {
  19820. height: math.unit(1.54, "feet"),
  19821. name: "Foot",
  19822. image: {
  19823. source: "./media/characters/dragonien/foot.svg",
  19824. }
  19825. },
  19826. },
  19827. [
  19828. {
  19829. name: "Normal",
  19830. height: math.unit(8 + 4 / 12, "feet"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Macro",
  19835. height: math.unit(200, "feet")
  19836. },
  19837. {
  19838. name: "Megamacro",
  19839. height: math.unit(1, "mile")
  19840. },
  19841. {
  19842. name: "Gigamacro",
  19843. height: math.unit(1000, "miles")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(5 + 2 / 12, "feet"),
  19852. weight: math.unit(110, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/desta/front.svg",
  19856. extra: 767 / 726,
  19857. bottom: 11.7 / 779
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(5 + 2 / 12, "feet"),
  19862. weight: math.unit(110, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/desta/back.svg",
  19866. extra: 777 / 728,
  19867. bottom: 6 / 784
  19868. }
  19869. },
  19870. frontAlt: {
  19871. height: math.unit(5 + 2 / 12, "feet"),
  19872. weight: math.unit(110, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/desta/front-alt.svg",
  19876. extra: 1482 / 1417
  19877. }
  19878. },
  19879. side: {
  19880. height: math.unit(5 + 2 / 12, "feet"),
  19881. weight: math.unit(110, "lb"),
  19882. name: "Side",
  19883. image: {
  19884. source: "./media/characters/desta/side.svg",
  19885. extra: 2579 / 2491,
  19886. bottom: 0.053
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Micro",
  19893. height: math.unit(6, "inches")
  19894. },
  19895. {
  19896. name: "Normal",
  19897. height: math.unit(5 + 2 / 12, "feet"),
  19898. default: true
  19899. },
  19900. {
  19901. name: "Macro",
  19902. height: math.unit(62, "feet")
  19903. },
  19904. {
  19905. name: "Megamacro",
  19906. height: math.unit(1800, "feet")
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(10, "feet"),
  19915. weight: math.unit(700, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/storm-alystar/front.svg",
  19919. extra: 2112 / 1898,
  19920. bottom: 0.034
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Micro",
  19927. height: math.unit(3.5, "inches")
  19928. },
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(10, "feet"),
  19932. default: true
  19933. },
  19934. {
  19935. name: "Macro",
  19936. height: math.unit(400, "feet")
  19937. },
  19938. {
  19939. name: "Deific",
  19940. height: math.unit(60, "miles")
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(2.35, "meters"),
  19949. weight: math.unit(119, "kg"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/ilia/front.svg",
  19953. extra: 1285 / 1255,
  19954. bottom: 0.06
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(2.35, "meters")
  19962. },
  19963. {
  19964. name: "Macro",
  19965. height: math.unit(140, "meters"),
  19966. default: true
  19967. },
  19968. {
  19969. name: "Megamacro",
  19970. height: math.unit(100, "miles")
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19976. {
  19977. front: {
  19978. height: math.unit(6 + 5 / 12, "feet"),
  19979. weight: math.unit(190, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/kingdead/front.svg",
  19983. extra: 1228 / 1177
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Micro",
  19990. height: math.unit(7, "inches")
  19991. },
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(6 + 5 / 12, "feet")
  19995. },
  19996. {
  19997. name: "Macro",
  19998. height: math.unit(150, "feet"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Megamacro",
  20003. height: math.unit(200, "miles")
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(8, "feet"),
  20012. weight: math.unit(600, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/kyrehx/front.svg",
  20016. extra: 1195 / 1095,
  20017. bottom: 0.034
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Micro",
  20024. height: math.unit(2, "inches")
  20025. },
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(8, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Macro",
  20033. height: math.unit(255, "feet")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20042. weight: math.unit(184, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/xang/front.svg",
  20046. extra: 845 / 755
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Normal",
  20053. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20054. default: true
  20055. },
  20056. {
  20057. name: "Macro",
  20058. height: math.unit(0.935 * 146, "feet")
  20059. },
  20060. {
  20061. name: "Megamacro",
  20062. height: math.unit(0.935 * 3, "miles")
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20068. {
  20069. frontDressed: {
  20070. height: math.unit(5 + 7 / 12, "feet"),
  20071. weight: math.unit(140, "lb"),
  20072. name: "Front (Dressed)",
  20073. image: {
  20074. source: "./media/characters/doc-weardno/front-dressed.svg",
  20075. extra: 263 / 234
  20076. }
  20077. },
  20078. backDressed: {
  20079. height: math.unit(5 + 7 / 12, "feet"),
  20080. weight: math.unit(140, "lb"),
  20081. name: "Back (Dressed)",
  20082. image: {
  20083. source: "./media/characters/doc-weardno/back-dressed.svg",
  20084. extra: 266 / 238
  20085. }
  20086. },
  20087. front: {
  20088. height: math.unit(5 + 7 / 12, "feet"),
  20089. weight: math.unit(140, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/doc-weardno/front.svg",
  20093. extra: 254 / 233
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Micro",
  20100. height: math.unit(3, "inches")
  20101. },
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(5 + 7 / 12, "feet"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(25, "feet")
  20110. },
  20111. {
  20112. name: "Megamacro",
  20113. height: math.unit(2, "miles")
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(6 + 2 / 12, "feet"),
  20122. weight: math.unit(153, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/seth-whilst/front.svg",
  20126. bottom: 0.07
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Micro",
  20133. height: math.unit(5, "inches")
  20134. },
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(6 + 2 / 12, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(3, "inches"),
  20147. weight: math.unit(8, "grams"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/pocket-jabari/front.svg",
  20151. extra: 1024 / 974,
  20152. bottom: 0.039
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Minimicro",
  20159. height: math.unit(8, "mm")
  20160. },
  20161. {
  20162. name: "Micro",
  20163. height: math.unit(3, "inches"),
  20164. default: true
  20165. },
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(3, "feet")
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20174. {
  20175. frontDressed: {
  20176. height: math.unit(15, "feet"),
  20177. weight: math.unit(3280, "lb"),
  20178. name: "Front (Dressed)",
  20179. image: {
  20180. source: "./media/characters/sapphy/front-dressed.svg",
  20181. extra: 1951/1654,
  20182. bottom: 194/2145
  20183. },
  20184. form: "anthro",
  20185. default: true
  20186. },
  20187. backDressed: {
  20188. height: math.unit(15, "feet"),
  20189. weight: math.unit(3280, "lb"),
  20190. name: "Back (Dressed)",
  20191. image: {
  20192. source: "./media/characters/sapphy/back-dressed.svg",
  20193. extra: 2058/1918,
  20194. bottom: 125/2183
  20195. },
  20196. form: "anthro"
  20197. },
  20198. frontNude: {
  20199. height: math.unit(15, "feet"),
  20200. weight: math.unit(3280, "lb"),
  20201. name: "Front (Nude)",
  20202. image: {
  20203. source: "./media/characters/sapphy/front-nude.svg",
  20204. extra: 1951/1654,
  20205. bottom: 194/2145
  20206. },
  20207. form: "anthro"
  20208. },
  20209. backNude: {
  20210. height: math.unit(15, "feet"),
  20211. weight: math.unit(3280, "lb"),
  20212. name: "Back (Nude)",
  20213. image: {
  20214. source: "./media/characters/sapphy/back-nude.svg",
  20215. extra: 2058/1918,
  20216. bottom: 125/2183
  20217. },
  20218. form: "anthro"
  20219. },
  20220. full: {
  20221. height: math.unit(15, "feet"),
  20222. weight: math.unit(3280, "lb"),
  20223. name: "Full",
  20224. image: {
  20225. source: "./media/characters/sapphy/full.svg",
  20226. extra: 1396/1317,
  20227. bottom: 44/1440
  20228. },
  20229. form: "anthro"
  20230. },
  20231. dick: {
  20232. height: math.unit(3.8, "feet"),
  20233. name: "Dick",
  20234. image: {
  20235. source: "./media/characters/sapphy/dick.svg"
  20236. },
  20237. form: "anthro"
  20238. },
  20239. feral: {
  20240. height: math.unit(35, "feet"),
  20241. weight: math.unit(160, "tons"),
  20242. name: "Feral",
  20243. image: {
  20244. source: "./media/characters/sapphy/feral.svg",
  20245. extra: 1050/573,
  20246. bottom: 60/1110
  20247. },
  20248. form: "feral",
  20249. default: true
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(15, "feet"),
  20256. form: "anthro"
  20257. },
  20258. {
  20259. name: "Casual Macro",
  20260. height: math.unit(120, "feet"),
  20261. form: "anthro"
  20262. },
  20263. {
  20264. name: "Macro",
  20265. height: math.unit(2150, "feet"),
  20266. default: true,
  20267. form: "anthro"
  20268. },
  20269. {
  20270. name: "Megamacro",
  20271. height: math.unit(8, "miles"),
  20272. form: "anthro"
  20273. },
  20274. {
  20275. name: "Galaxy Mom",
  20276. height: math.unit(6, "megalightyears"),
  20277. form: "anthro"
  20278. },
  20279. {
  20280. name: "Normal",
  20281. height: math.unit(35, "feet"),
  20282. form: "feral",
  20283. default: true
  20284. },
  20285. {
  20286. name: "Macro",
  20287. height: math.unit(300, "feet"),
  20288. form: "feral"
  20289. },
  20290. {
  20291. name: "Galaxy Mom",
  20292. height: math.unit(10, "megalightyears"),
  20293. form: "feral"
  20294. },
  20295. ],
  20296. {
  20297. "anthro": {
  20298. name: "Anthro",
  20299. default: true
  20300. },
  20301. "feral": {
  20302. name: "Feral"
  20303. }
  20304. }
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20308. {
  20309. hyenaFront: {
  20310. height: math.unit(6, "feet"),
  20311. weight: math.unit(190, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/kiro/hyena-front.svg",
  20315. extra: 927/839,
  20316. bottom: 91/1018
  20317. },
  20318. form: "hyena",
  20319. default: true
  20320. },
  20321. front: {
  20322. height: math.unit(6, "feet"),
  20323. weight: math.unit(170, "lb"),
  20324. name: "Front",
  20325. image: {
  20326. source: "./media/characters/kiro/front.svg",
  20327. extra: 1064 / 1012,
  20328. bottom: 0.052
  20329. },
  20330. form: "folf",
  20331. default: true
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Micro",
  20337. height: math.unit(6, "inches"),
  20338. form: "folf"
  20339. },
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(6, "feet"),
  20343. form: "folf",
  20344. default: true
  20345. },
  20346. {
  20347. name: "Macro",
  20348. height: math.unit(72, "feet"),
  20349. form: "folf"
  20350. },
  20351. {
  20352. name: "Micro",
  20353. height: math.unit(6, "inches"),
  20354. form: "hyena"
  20355. },
  20356. {
  20357. name: "Normal",
  20358. height: math.unit(6, "feet"),
  20359. form: "hyena",
  20360. default: true
  20361. },
  20362. {
  20363. name: "Macro",
  20364. height: math.unit(72, "feet"),
  20365. form: "hyena"
  20366. },
  20367. ],
  20368. {
  20369. "hyena": {
  20370. name: "Hyena",
  20371. default: true
  20372. },
  20373. "folf": {
  20374. name: "Folf",
  20375. },
  20376. }
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(5 + 9 / 12, "feet"),
  20383. weight: math.unit(175, "lb"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/irishfox/front.svg",
  20387. extra: 1912 / 1680,
  20388. bottom: 0.02
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Nano",
  20395. height: math.unit(1, "mm")
  20396. },
  20397. {
  20398. name: "Micro",
  20399. height: math.unit(2, "inches")
  20400. },
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(5 + 9 / 12, "feet"),
  20404. default: true
  20405. },
  20406. {
  20407. name: "Macro",
  20408. height: math.unit(45, "feet")
  20409. },
  20410. ]
  20411. ))
  20412. characterMakers.push(() => makeCharacter(
  20413. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20414. {
  20415. front: {
  20416. height: math.unit(6 + 1 / 12, "feet"),
  20417. weight: math.unit(75, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/aronai-sieyes/front.svg",
  20421. extra: 1532/1450,
  20422. bottom: 42/1574
  20423. }
  20424. },
  20425. side: {
  20426. height: math.unit(6 + 1 / 12, "feet"),
  20427. weight: math.unit(75, "lb"),
  20428. name: "Side",
  20429. image: {
  20430. source: "./media/characters/aronai-sieyes/side.svg",
  20431. extra: 1422/1365,
  20432. bottom: 148/1570
  20433. }
  20434. },
  20435. back: {
  20436. height: math.unit(6 + 1 / 12, "feet"),
  20437. weight: math.unit(75, "lb"),
  20438. name: "Back",
  20439. image: {
  20440. source: "./media/characters/aronai-sieyes/back.svg",
  20441. extra: 1526/1464,
  20442. bottom: 51/1577
  20443. }
  20444. },
  20445. dressed: {
  20446. height: math.unit(6 + 1 / 12, "feet"),
  20447. weight: math.unit(75, "lb"),
  20448. name: "Dressed",
  20449. image: {
  20450. source: "./media/characters/aronai-sieyes/dressed.svg",
  20451. extra: 1559/1483,
  20452. bottom: 39/1598
  20453. }
  20454. },
  20455. slit: {
  20456. height: math.unit(1.3, "feet"),
  20457. name: "Slit",
  20458. image: {
  20459. source: "./media/characters/aronai-sieyes/slit.svg"
  20460. }
  20461. },
  20462. slitSpread: {
  20463. height: math.unit(0.9, "feet"),
  20464. name: "Slit (Spread)",
  20465. image: {
  20466. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20467. }
  20468. },
  20469. rump: {
  20470. height: math.unit(1.3, "feet"),
  20471. name: "Rump",
  20472. image: {
  20473. source: "./media/characters/aronai-sieyes/rump.svg"
  20474. }
  20475. },
  20476. maw: {
  20477. height: math.unit(1.25, "feet"),
  20478. name: "Maw",
  20479. image: {
  20480. source: "./media/characters/aronai-sieyes/maw.svg"
  20481. }
  20482. },
  20483. feral: {
  20484. height: math.unit(18, "feet"),
  20485. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20486. name: "Feral",
  20487. image: {
  20488. source: "./media/characters/aronai-sieyes/feral.svg",
  20489. extra: 1530 / 1240,
  20490. bottom: 0.035
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Micro",
  20497. height: math.unit(2, "inches")
  20498. },
  20499. {
  20500. name: "Normal",
  20501. height: math.unit(6 + 1 / 12, "feet"),
  20502. default: true
  20503. }
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(12, "feet"),
  20511. weight: math.unit(410, "kg"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/xuna/front.svg",
  20515. extra: 2184 / 1980
  20516. }
  20517. },
  20518. side: {
  20519. height: math.unit(12, "feet"),
  20520. weight: math.unit(410, "kg"),
  20521. name: "Side",
  20522. image: {
  20523. source: "./media/characters/xuna/side.svg",
  20524. extra: 2184 / 1980
  20525. }
  20526. },
  20527. back: {
  20528. height: math.unit(12, "feet"),
  20529. weight: math.unit(410, "kg"),
  20530. name: "Back",
  20531. image: {
  20532. source: "./media/characters/xuna/back.svg",
  20533. extra: 2184 / 1980
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Nano glow",
  20540. height: math.unit(10, "nm")
  20541. },
  20542. {
  20543. name: "Micro floof",
  20544. height: math.unit(0.3, "m")
  20545. },
  20546. {
  20547. name: "Huggable softy boi",
  20548. height: math.unit(3.6576, "m"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Admirable floof",
  20553. height: math.unit(80, "meters")
  20554. },
  20555. {
  20556. name: "Gentle macro",
  20557. height: math.unit(300, "meters")
  20558. },
  20559. {
  20560. name: "Very careful floof",
  20561. height: math.unit(3200, "meters")
  20562. },
  20563. {
  20564. name: "The mega floof",
  20565. height: math.unit(36000, "meters")
  20566. },
  20567. {
  20568. name: "Giga-fur-Wicker",
  20569. height: math.unit(4800000, "meters")
  20570. },
  20571. {
  20572. name: "Licky world",
  20573. height: math.unit(20000000, "meters")
  20574. },
  20575. {
  20576. name: "Floofy cyan sun",
  20577. height: math.unit(1500000000, "meters")
  20578. },
  20579. {
  20580. name: "Milky Wicker",
  20581. height: math.unit(1000000000000000000000, "meters")
  20582. },
  20583. {
  20584. name: "The observing Wicker",
  20585. height: math.unit(999999999999999999999999999, "meters")
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(5 + 9 / 12, "feet"),
  20594. weight: math.unit(150, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/arokha-sieyes/front.svg",
  20598. extra: 1425 / 1284,
  20599. bottom: 0.05
  20600. }
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(5 + 9 / 12, "feet")
  20607. },
  20608. {
  20609. name: "Macro",
  20610. height: math.unit(30, "meters"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(6, "feet"),
  20620. weight: math.unit(180, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/arokh-sieyes/front.svg",
  20624. extra: 1830 / 1769,
  20625. bottom: 0.01
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(6, "feet")
  20633. },
  20634. {
  20635. name: "Macro",
  20636. height: math.unit(30, "meters"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20643. {
  20644. side: {
  20645. height: math.unit(13 + 1 / 12, "feet"),
  20646. weight: math.unit(8.5, "tonnes"),
  20647. preyCapacity: math.unit(36, "people"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/goldeneye/side.svg",
  20651. extra: 1139/741,
  20652. bottom: 98/1237
  20653. }
  20654. },
  20655. front: {
  20656. height: math.unit(5.1, "feet"),
  20657. weight: math.unit(8.5, "tonnes"),
  20658. preyCapacity: math.unit(36, "people"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/goldeneye/front.svg",
  20662. extra: 635/365,
  20663. bottom: 598/1233
  20664. }
  20665. },
  20666. maw: {
  20667. height: math.unit(6.6, "feet"),
  20668. name: "Maw",
  20669. image: {
  20670. source: "./media/characters/goldeneye/maw.svg"
  20671. }
  20672. },
  20673. headFront: {
  20674. height: math.unit(8, "feet"),
  20675. name: "Head (Front)",
  20676. image: {
  20677. source: "./media/characters/goldeneye/head-front.svg"
  20678. }
  20679. },
  20680. headSide: {
  20681. height: math.unit(6, "feet"),
  20682. name: "Head (Side)",
  20683. image: {
  20684. source: "./media/characters/goldeneye/head-side.svg"
  20685. }
  20686. },
  20687. headBack: {
  20688. height: math.unit(8, "feet"),
  20689. name: "Head (Back)",
  20690. image: {
  20691. source: "./media/characters/goldeneye/head-back.svg"
  20692. }
  20693. },
  20694. paw: {
  20695. height: math.unit(3.4, "feet"),
  20696. name: "Paw",
  20697. image: {
  20698. source: "./media/characters/goldeneye/paw.svg"
  20699. }
  20700. },
  20701. toering: {
  20702. height: math.unit(0.45, "feet"),
  20703. name: "Toering",
  20704. image: {
  20705. source: "./media/characters/goldeneye/toering.svg"
  20706. }
  20707. },
  20708. eyes: {
  20709. height: math.unit(0.5, "feet"),
  20710. name: "Eyes",
  20711. image: {
  20712. source: "./media/characters/goldeneye/eyes.svg"
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(13 + 1 / 12, "feet"),
  20720. default: true
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20726. {
  20727. front: {
  20728. height: math.unit(6 + 1 / 12, "feet"),
  20729. weight: math.unit(210, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/leonardo-lycheborne/front.svg",
  20733. extra: 776/723,
  20734. bottom: 34/810
  20735. }
  20736. },
  20737. side: {
  20738. height: math.unit(6 + 1 / 12, "feet"),
  20739. weight: math.unit(210, "lb"),
  20740. name: "Side",
  20741. image: {
  20742. source: "./media/characters/leonardo-lycheborne/side.svg",
  20743. extra: 780/728,
  20744. bottom: 12/792
  20745. }
  20746. },
  20747. back: {
  20748. height: math.unit(6 + 1 / 12, "feet"),
  20749. weight: math.unit(210, "lb"),
  20750. name: "Back",
  20751. image: {
  20752. source: "./media/characters/leonardo-lycheborne/back.svg",
  20753. extra: 775/721,
  20754. bottom: 17/792
  20755. }
  20756. },
  20757. hand: {
  20758. height: math.unit(1.08, "feet"),
  20759. name: "Hand",
  20760. image: {
  20761. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20762. }
  20763. },
  20764. foot: {
  20765. height: math.unit(1.32, "feet"),
  20766. name: "Foot",
  20767. image: {
  20768. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20769. }
  20770. },
  20771. maw: {
  20772. height: math.unit(1, "feet"),
  20773. name: "Maw",
  20774. image: {
  20775. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20776. }
  20777. },
  20778. were: {
  20779. height: math.unit(20, "feet"),
  20780. weight: math.unit(7800, "lb"),
  20781. name: "Were",
  20782. image: {
  20783. source: "./media/characters/leonardo-lycheborne/were.svg",
  20784. extra: 1224/1165,
  20785. bottom: 72/1296
  20786. }
  20787. },
  20788. feral: {
  20789. height: math.unit(7.5, "feet"),
  20790. weight: math.unit(600, "lb"),
  20791. name: "Feral",
  20792. image: {
  20793. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20794. extra: 797/702,
  20795. bottom: 139/936
  20796. }
  20797. },
  20798. taur: {
  20799. height: math.unit(11, "feet"),
  20800. weight: math.unit(3300, "lb"),
  20801. name: "Taur",
  20802. image: {
  20803. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20804. extra: 1271/1197,
  20805. bottom: 47/1318
  20806. }
  20807. },
  20808. barghest: {
  20809. height: math.unit(11, "feet"),
  20810. weight: math.unit(1300, "lb"),
  20811. name: "Barghest",
  20812. image: {
  20813. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20814. extra: 1291/1204,
  20815. bottom: 37/1328
  20816. }
  20817. },
  20818. dick: {
  20819. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20820. name: "Dick",
  20821. image: {
  20822. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20823. }
  20824. },
  20825. dickWere: {
  20826. height: math.unit((20) / 3.8, "feet"),
  20827. name: "Dick (Were)",
  20828. image: {
  20829. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6 + 1 / 12, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20843. {
  20844. front: {
  20845. height: math.unit(10, "feet"),
  20846. weight: math.unit(350, "lb"),
  20847. name: "Front",
  20848. image: {
  20849. source: "./media/characters/jet/front.svg",
  20850. extra: 2050 / 1980,
  20851. bottom: 0.013
  20852. }
  20853. },
  20854. back: {
  20855. height: math.unit(10, "feet"),
  20856. weight: math.unit(350, "lb"),
  20857. name: "Back",
  20858. image: {
  20859. source: "./media/characters/jet/back.svg",
  20860. extra: 2050 / 1980,
  20861. bottom: 0.013
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Micro",
  20868. height: math.unit(6, "inches")
  20869. },
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(10, "feet"),
  20873. default: true
  20874. },
  20875. {
  20876. name: "Macro",
  20877. height: math.unit(100, "feet")
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(15, "feet"),
  20886. weight: math.unit(2800, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/tanarath/front.svg",
  20890. extra: 2392 / 2220,
  20891. bottom: 0.03
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(15, "feet"),
  20896. weight: math.unit(2800, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/tanarath/back.svg",
  20900. extra: 2392 / 2220,
  20901. bottom: 0.03
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(15, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(7 + 1 / 12, "feet"),
  20918. weight: math.unit(175, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/patty-cattybatty/front.svg",
  20922. extra: 908 / 874,
  20923. bottom: 0.025
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Micro",
  20930. height: math.unit(1, "inch")
  20931. },
  20932. {
  20933. name: "Normal",
  20934. height: math.unit(7 + 1 / 12, "feet")
  20935. },
  20936. {
  20937. name: "Mini Macro",
  20938. height: math.unit(155, "feet")
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(1077, "feet")
  20943. },
  20944. {
  20945. name: "Mega Macro",
  20946. height: math.unit(47650, "feet"),
  20947. default: true
  20948. },
  20949. {
  20950. name: "Giga Macro",
  20951. height: math.unit(440, "miles")
  20952. },
  20953. {
  20954. name: "Tera Macro",
  20955. height: math.unit(8700, "miles")
  20956. },
  20957. {
  20958. name: "Planetary Macro",
  20959. height: math.unit(32700, "miles")
  20960. },
  20961. {
  20962. name: "Solar Macro",
  20963. height: math.unit(550000, "miles")
  20964. },
  20965. {
  20966. name: "Celestial Macro",
  20967. height: math.unit(2.5, "AU")
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(4 + 5 / 12, "feet"),
  20976. weight: math.unit(90, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/cappu/front.svg",
  20980. extra: 1247 / 1152,
  20981. bottom: 0.012
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(4 + 5 / 12, "feet"),
  20989. default: true
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20995. {
  20996. frontDressed: {
  20997. height: math.unit(70, "cm"),
  20998. weight: math.unit(6, "kg"),
  20999. name: "Front (Dressed)",
  21000. image: {
  21001. source: "./media/characters/sebi/front-dressed.svg",
  21002. extra: 713.5 / 686.5,
  21003. bottom: 0.003
  21004. }
  21005. },
  21006. front: {
  21007. height: math.unit(70, "cm"),
  21008. weight: math.unit(5, "kg"),
  21009. name: "Front",
  21010. image: {
  21011. source: "./media/characters/sebi/front.svg",
  21012. extra: 713.5 / 686.5,
  21013. bottom: 0.003
  21014. }
  21015. }
  21016. },
  21017. [
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(70, "cm"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(8, "meters")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(6, "feet"),
  21034. weight: math.unit(150, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/typhek/front.svg",
  21038. extra: 1948 / 1929,
  21039. bottom: 0.025
  21040. }
  21041. },
  21042. side: {
  21043. height: math.unit(6, "feet"),
  21044. weight: math.unit(150, "lb"),
  21045. name: "Side",
  21046. image: {
  21047. source: "./media/characters/typhek/side.svg",
  21048. extra: 2034 / 2010,
  21049. bottom: 0.003
  21050. }
  21051. },
  21052. back: {
  21053. height: math.unit(6, "feet"),
  21054. weight: math.unit(150, "lb"),
  21055. name: "Back",
  21056. image: {
  21057. source: "./media/characters/typhek/back.svg",
  21058. extra: 2005 / 1978,
  21059. bottom: 0.004
  21060. }
  21061. },
  21062. palm: {
  21063. height: math.unit(1.2, "feet"),
  21064. name: "Palm",
  21065. image: {
  21066. source: "./media/characters/typhek/palm.svg"
  21067. }
  21068. },
  21069. fist: {
  21070. height: math.unit(1.1, "feet"),
  21071. name: "Fist",
  21072. image: {
  21073. source: "./media/characters/typhek/fist.svg"
  21074. }
  21075. },
  21076. foot: {
  21077. height: math.unit(1.57, "feet"),
  21078. name: "Foot",
  21079. image: {
  21080. source: "./media/characters/typhek/foot.svg"
  21081. }
  21082. },
  21083. sole: {
  21084. height: math.unit(2.05, "feet"),
  21085. name: "Sole",
  21086. image: {
  21087. source: "./media/characters/typhek/sole.svg"
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Macro",
  21094. height: math.unit(40, "stories"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Megamacro",
  21099. height: math.unit(1, "mile")
  21100. },
  21101. {
  21102. name: "Gigamacro",
  21103. height: math.unit(4000, "solarradii")
  21104. },
  21105. {
  21106. name: "Universal",
  21107. height: math.unit(1.1, "universes")
  21108. }
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21113. {
  21114. side: {
  21115. height: math.unit(5 + 7 / 12, "feet"),
  21116. weight: math.unit(150, "lb"),
  21117. name: "Side",
  21118. image: {
  21119. source: "./media/characters/kassy/side.svg",
  21120. extra: 1280 / 1225,
  21121. bottom: 0.002
  21122. }
  21123. },
  21124. front: {
  21125. height: math.unit(5 + 7 / 12, "feet"),
  21126. weight: math.unit(150, "lb"),
  21127. name: "Front",
  21128. image: {
  21129. source: "./media/characters/kassy/front.svg",
  21130. extra: 1280 / 1225,
  21131. bottom: 0.025
  21132. }
  21133. },
  21134. back: {
  21135. height: math.unit(5 + 7 / 12, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Back",
  21138. image: {
  21139. source: "./media/characters/kassy/back.svg",
  21140. extra: 1280 / 1225,
  21141. bottom: 0.002
  21142. }
  21143. },
  21144. foot: {
  21145. height: math.unit(1.266, "feet"),
  21146. name: "Foot",
  21147. image: {
  21148. source: "./media/characters/kassy/foot.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(5 + 7 / 12, "feet")
  21156. },
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(137, "feet"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Megamacro",
  21164. height: math.unit(1, "mile")
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(6 + 1 / 12, "feet"),
  21173. weight: math.unit(200, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/neil/front.svg",
  21177. extra: 1326 / 1250,
  21178. bottom: 0.023
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(6 + 1 / 12, "feet"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(200, "feet")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(5 + 9 / 12, "feet"),
  21199. weight: math.unit(190, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/atticus/front.svg",
  21203. extra: 2934 / 2785,
  21204. bottom: 0.025
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5 + 9 / 12, "feet"),
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(180, "feet")
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21222. {
  21223. side: {
  21224. height: math.unit(9, "feet"),
  21225. weight: math.unit(650, "lb"),
  21226. name: "Side",
  21227. image: {
  21228. source: "./media/characters/milo/side.svg",
  21229. extra: 2644 / 2310,
  21230. bottom: 0.032
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(9, "feet"),
  21238. default: true
  21239. },
  21240. {
  21241. name: "Macro",
  21242. height: math.unit(300, "feet")
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21248. {
  21249. side: {
  21250. height: math.unit(8, "meters"),
  21251. weight: math.unit(90000, "kg"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/ijzer/side.svg",
  21255. extra: 2756 / 1600,
  21256. bottom: 0.01
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Small",
  21263. height: math.unit(3, "meters")
  21264. },
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(8, "meters"),
  21268. default: true
  21269. },
  21270. {
  21271. name: "Normal+",
  21272. height: math.unit(10, "meters")
  21273. },
  21274. {
  21275. name: "Bigger",
  21276. height: math.unit(24, "meters")
  21277. },
  21278. {
  21279. name: "Huge",
  21280. height: math.unit(80, "meters")
  21281. },
  21282. ]
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(6 + 2 / 12, "feet"),
  21289. weight: math.unit(153, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/luca-cervicum/front.svg",
  21293. extra: 370 / 327,
  21294. bottom: 0.015
  21295. }
  21296. },
  21297. back: {
  21298. height: math.unit(6 + 2 / 12, "feet"),
  21299. weight: math.unit(153, "lb"),
  21300. name: "Back",
  21301. image: {
  21302. source: "./media/characters/luca-cervicum/back.svg",
  21303. extra: 367 / 333,
  21304. bottom: 0.005
  21305. }
  21306. },
  21307. frontGear: {
  21308. height: math.unit(6 + 2 / 12, "feet"),
  21309. weight: math.unit(173, "lb"),
  21310. name: "Front (Gear)",
  21311. image: {
  21312. source: "./media/characters/luca-cervicum/front-gear.svg",
  21313. extra: 377 / 333,
  21314. bottom: 0.006
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(6 + 2 / 12, "feet"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(6 + 1 / 12, "feet"),
  21331. weight: math.unit(304, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/oliver/front.svg",
  21335. extra: 157 / 143,
  21336. bottom: 0.08
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(6 + 1 / 12, "feet"),
  21344. default: true
  21345. },
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(5 + 7 / 12, "feet"),
  21353. weight: math.unit(140, "lb"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/shane/front.svg",
  21357. extra: 304 / 289,
  21358. bottom: 0.005
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 7 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(5 + 9 / 12, "feet"),
  21375. weight: math.unit(178, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/shin/front.svg",
  21379. extra: 159 / 151,
  21380. bottom: 0.015
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Normal",
  21387. height: math.unit(5 + 9 / 12, "feet"),
  21388. default: true
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(5 + 10 / 12, "feet"),
  21397. weight: math.unit(168, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/xerxes/front.svg",
  21401. extra: 282 / 260,
  21402. bottom: 0.045
  21403. }
  21404. },
  21405. },
  21406. [
  21407. {
  21408. name: "Normal",
  21409. height: math.unit(5 + 10 / 12, "feet"),
  21410. default: true
  21411. },
  21412. ]
  21413. ))
  21414. characterMakers.push(() => makeCharacter(
  21415. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21416. {
  21417. front: {
  21418. height: math.unit(6 + 7 / 12, "feet"),
  21419. weight: math.unit(208, "lb"),
  21420. name: "Front",
  21421. image: {
  21422. source: "./media/characters/chaska/front.svg",
  21423. extra: 332 / 319,
  21424. bottom: 0.015
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(6 + 7 / 12, "feet"),
  21432. default: true
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21438. {
  21439. front: {
  21440. height: math.unit(5 + 8 / 12, "feet"),
  21441. weight: math.unit(208, "lb"),
  21442. name: "Front",
  21443. image: {
  21444. source: "./media/characters/enuk/front.svg",
  21445. extra: 437 / 406,
  21446. bottom: 0.02
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(5 + 8 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(5 + 10 / 12, "feet"),
  21463. weight: math.unit(252, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/bruun/front.svg",
  21467. extra: 197 / 187,
  21468. bottom: 0.012
  21469. }
  21470. },
  21471. },
  21472. [
  21473. {
  21474. name: "Normal",
  21475. height: math.unit(5 + 10 / 12, "feet"),
  21476. default: true
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21482. {
  21483. front: {
  21484. height: math.unit(6 + 10 / 12, "feet"),
  21485. weight: math.unit(255, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/alexeev/front.svg",
  21489. extra: 213 / 200,
  21490. bottom: 0.05
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Normal",
  21497. height: math.unit(6 + 10 / 12, "feet"),
  21498. default: true
  21499. },
  21500. ]
  21501. ))
  21502. characterMakers.push(() => makeCharacter(
  21503. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21504. {
  21505. front: {
  21506. height: math.unit(2 + 8 / 12, "feet"),
  21507. weight: math.unit(22, "lb"),
  21508. name: "Front",
  21509. image: {
  21510. source: "./media/characters/evelyn/front.svg",
  21511. extra: 208 / 180
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(2 + 8 / 12, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(5 + 9 / 12, "feet"),
  21528. weight: math.unit(139, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/inca/front.svg",
  21532. extra: 294 / 291,
  21533. bottom: 0.03
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Normal",
  21540. height: math.unit(5 + 9 / 12, "feet"),
  21541. default: true
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(6 + 3 / 12, "feet"),
  21550. weight: math.unit(185, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/mera/front.svg",
  21554. extra: 291 / 277,
  21555. bottom: 0.03
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(6 + 3 / 12, "feet"),
  21563. default: true
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(6 + 7 / 12, "feet"),
  21572. weight: math.unit(160, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/ceres/front.svg",
  21576. extra: 1023 / 950,
  21577. bottom: 0.027
  21578. }
  21579. },
  21580. back: {
  21581. height: math.unit(6 + 7 / 12, "feet"),
  21582. weight: math.unit(160, "lb"),
  21583. name: "Back",
  21584. image: {
  21585. source: "./media/characters/ceres/back.svg",
  21586. extra: 1023 / 950
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(6 + 7 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(5 + 10 / 12, "feet"),
  21603. weight: math.unit(150, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/kris/front.svg",
  21607. extra: 885 / 803,
  21608. bottom: 0.03
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(5 + 10 / 12, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(7, "feet"),
  21625. weight: math.unit(120, "kg"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/taluthus/front.svg",
  21629. extra: 903 / 833,
  21630. bottom: 0.015
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(7, "feet"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Macro",
  21642. height: math.unit(300, "feet")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(5 + 9 / 12, "feet"),
  21651. weight: math.unit(145, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/dawn/front.svg",
  21655. extra: 2094 / 2016,
  21656. bottom: 0.025
  21657. }
  21658. },
  21659. back: {
  21660. height: math.unit(5 + 9 / 12, "feet"),
  21661. weight: math.unit(160, "lb"),
  21662. name: "Back",
  21663. image: {
  21664. source: "./media/characters/dawn/back.svg",
  21665. extra: 2112 / 2080,
  21666. bottom: 0.005
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(6 + 7 / 12, "feet"),
  21674. default: true
  21675. },
  21676. ]
  21677. ))
  21678. characterMakers.push(() => makeCharacter(
  21679. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21680. {
  21681. anthro: {
  21682. height: math.unit(8 + 3 / 12, "feet"),
  21683. weight: math.unit(450, "lb"),
  21684. name: "Anthro",
  21685. image: {
  21686. source: "./media/characters/arador/anthro.svg",
  21687. extra: 1835 / 1718,
  21688. bottom: 0.025
  21689. }
  21690. },
  21691. feral: {
  21692. height: math.unit(4, "feet"),
  21693. weight: math.unit(200, "lb"),
  21694. name: "Feral",
  21695. image: {
  21696. source: "./media/characters/arador/feral.svg",
  21697. extra: 1683 / 1514,
  21698. bottom: 0.07
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Normal",
  21705. height: math.unit(8 + 3 / 12, "feet")
  21706. },
  21707. {
  21708. name: "Macro",
  21709. height: math.unit(82.5, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(5 + 10 / 12, "feet"),
  21719. weight: math.unit(125, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/dharsi/front.svg",
  21723. extra: 716 / 630,
  21724. bottom: 0.035
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Nano",
  21731. height: math.unit(100, "nm")
  21732. },
  21733. {
  21734. name: "Micro",
  21735. height: math.unit(2, "inches")
  21736. },
  21737. {
  21738. name: "Normal",
  21739. height: math.unit(5 + 10 / 12, "feet"),
  21740. default: true
  21741. },
  21742. {
  21743. name: "Macro",
  21744. height: math.unit(1000, "feet")
  21745. },
  21746. {
  21747. name: "Megamacro",
  21748. height: math.unit(10, "miles")
  21749. },
  21750. {
  21751. name: "Gigamacro",
  21752. height: math.unit(3000, "miles")
  21753. },
  21754. {
  21755. name: "Teramacro",
  21756. height: math.unit(500000, "miles")
  21757. },
  21758. {
  21759. name: "Teramacro+",
  21760. height: math.unit(30, "galaxies")
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(6, "feet"),
  21769. weight: math.unit(150, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/deathy/front.svg",
  21773. extra: 1552 / 1463,
  21774. bottom: 0.025
  21775. }
  21776. },
  21777. side: {
  21778. height: math.unit(6, "feet"),
  21779. weight: math.unit(150, "lb"),
  21780. name: "Side",
  21781. image: {
  21782. source: "./media/characters/deathy/side.svg",
  21783. extra: 1604 / 1455,
  21784. bottom: 0.025
  21785. }
  21786. },
  21787. back: {
  21788. height: math.unit(6, "feet"),
  21789. weight: math.unit(150, "lb"),
  21790. name: "Back",
  21791. image: {
  21792. source: "./media/characters/deathy/back.svg",
  21793. extra: 1580 / 1463,
  21794. bottom: 0.005
  21795. }
  21796. },
  21797. },
  21798. [
  21799. {
  21800. name: "Micro",
  21801. height: math.unit(5, "millimeters")
  21802. },
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(6 + 5 / 12, "feet"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21812. {
  21813. front: {
  21814. height: math.unit(16, "feet"),
  21815. weight: math.unit(4000, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/juniper/front.svg",
  21819. bottom: 0.04
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(16, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21833. {
  21834. front: {
  21835. height: math.unit(6, "feet"),
  21836. weight: math.unit(150, "lb"),
  21837. name: "Front",
  21838. image: {
  21839. source: "./media/characters/hipster/front.svg",
  21840. extra: 1312 / 1209,
  21841. bottom: 0.025
  21842. }
  21843. },
  21844. back: {
  21845. height: math.unit(6, "feet"),
  21846. weight: math.unit(150, "lb"),
  21847. name: "Back",
  21848. image: {
  21849. source: "./media/characters/hipster/back.svg",
  21850. extra: 1281 / 1196,
  21851. bottom: 0.01
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Micro",
  21858. height: math.unit(1, "mm")
  21859. },
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(4, "inches"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(500, "feet")
  21868. },
  21869. {
  21870. name: "Megamacro",
  21871. height: math.unit(1000, "miles")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/tendirmuldr/front.svg",
  21884. extra: 1878 / 1772,
  21885. bottom: 0.015
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Megamacro",
  21892. height: math.unit(1500, "miles"),
  21893. default: true
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21899. {
  21900. front: {
  21901. height: math.unit(14, "feet"),
  21902. weight: math.unit(12000, "lb"),
  21903. name: "Front",
  21904. image: {
  21905. source: "./media/characters/mort/front.svg",
  21906. extra: 365 / 318,
  21907. bottom: 0.01
  21908. }
  21909. },
  21910. side: {
  21911. height: math.unit(14, "feet"),
  21912. weight: math.unit(12000, "lb"),
  21913. name: "Side",
  21914. image: {
  21915. source: "./media/characters/mort/side.svg",
  21916. extra: 365 / 318,
  21917. bottom: 0.052
  21918. },
  21919. default: true
  21920. },
  21921. back: {
  21922. height: math.unit(14, "feet"),
  21923. weight: math.unit(12000, "lb"),
  21924. name: "Back",
  21925. image: {
  21926. source: "./media/characters/mort/back.svg",
  21927. extra: 371 / 332,
  21928. bottom: 0.18
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Normal",
  21935. height: math.unit(14, "feet"),
  21936. default: true
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21942. {
  21943. front: {
  21944. height: math.unit(8, "feet"),
  21945. weight: math.unit(1, "ton"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/lycoa/front.svg",
  21949. extra: 1836/1728,
  21950. bottom: 81/1917
  21951. }
  21952. },
  21953. back: {
  21954. height: math.unit(8, "feet"),
  21955. weight: math.unit(1, "ton"),
  21956. name: "Back",
  21957. image: {
  21958. source: "./media/characters/lycoa/back.svg",
  21959. extra: 1785/1720,
  21960. bottom: 91/1876
  21961. }
  21962. },
  21963. head: {
  21964. height: math.unit(1.6243, "feet"),
  21965. name: "Head",
  21966. image: {
  21967. source: "./media/characters/lycoa/head.svg",
  21968. extra: 1011/782,
  21969. bottom: 0/1011
  21970. }
  21971. },
  21972. tailmaw: {
  21973. height: math.unit(1.9, "feet"),
  21974. name: "Tailmaw",
  21975. image: {
  21976. source: "./media/characters/lycoa/tailmaw.svg"
  21977. }
  21978. },
  21979. tentacles: {
  21980. height: math.unit(2.1, "feet"),
  21981. name: "Tentacles",
  21982. image: {
  21983. source: "./media/characters/lycoa/tentacles.svg"
  21984. }
  21985. },
  21986. dick: {
  21987. height: math.unit(1.73, "feet"),
  21988. name: "Dick",
  21989. image: {
  21990. source: "./media/characters/lycoa/dick.svg"
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(8, "feet"),
  21998. default: true
  21999. },
  22000. {
  22001. name: "Macro",
  22002. height: math.unit(30, "feet")
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22008. {
  22009. front: {
  22010. height: math.unit(4 + 2 / 12, "feet"),
  22011. weight: math.unit(70, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/naldara/front.svg",
  22015. extra: 1664/1387,
  22016. bottom: 81/1745
  22017. },
  22018. form: "anthro",
  22019. default: true
  22020. },
  22021. naga: {
  22022. height: math.unit(20, "feet"),
  22023. weight: math.unit(15000, "kg"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/naldara/naga.svg",
  22027. extra: 1590/1396,
  22028. bottom: 285/1875
  22029. },
  22030. form: "naga",
  22031. default: true
  22032. },
  22033. },
  22034. [
  22035. {
  22036. name: "Normal",
  22037. height: math.unit(4 + 2 / 12, "feet"),
  22038. form: "anthro",
  22039. default: true
  22040. },
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(20, "feet"),
  22044. form: "naga",
  22045. default: true
  22046. },
  22047. ],
  22048. {
  22049. "anthro": {
  22050. name: "Anthro",
  22051. default: true
  22052. },
  22053. "naga": {
  22054. name: "Naga"
  22055. }
  22056. }
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(13 + 7 / 12, "feet"),
  22063. weight: math.unit(1500, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/briar/front.svg",
  22067. extra: 1223/1157,
  22068. bottom: 123/1346
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(13 + 7 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22082. {
  22083. side: {
  22084. height: math.unit(16, "feet"),
  22085. weight: math.unit(500, "lb"),
  22086. name: "Side",
  22087. image: {
  22088. source: "./media/characters/vanguard/side.svg",
  22089. extra: 1022/914,
  22090. bottom: 30/1052
  22091. }
  22092. },
  22093. sideAlt: {
  22094. height: math.unit(10, "feet"),
  22095. weight: math.unit(500, "lb"),
  22096. name: "Side (Alt)",
  22097. image: {
  22098. source: "./media/characters/vanguard/side-alt.svg",
  22099. extra: 502 / 425,
  22100. bottom: 0.087
  22101. }
  22102. },
  22103. },
  22104. [
  22105. {
  22106. name: "Normal",
  22107. height: math.unit(17.71, "feet"),
  22108. default: true
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(7.5, "feet"),
  22117. weight: math.unit(2, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/artemis/work-safe-front.svg",
  22121. extra: 1192 / 1075,
  22122. bottom: 0.07
  22123. },
  22124. form: "work-safe",
  22125. default: true
  22126. },
  22127. frontNsfw: {
  22128. height: math.unit(7.5, "feet"),
  22129. weight: math.unit(2, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/artemis/calibrating-front.svg",
  22133. extra: 1192 / 1075,
  22134. bottom: 0.07
  22135. },
  22136. form: "calibrating",
  22137. default: true
  22138. },
  22139. frontNsfwer: {
  22140. height: math.unit(7.5, "feet"),
  22141. weight: math.unit(2, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/artemis/oversize-load-front.svg",
  22145. extra: 1192 / 1075,
  22146. bottom: 0.07
  22147. },
  22148. form: "oversize-load",
  22149. default: true
  22150. },
  22151. side: {
  22152. height: math.unit(7.5, "feet"),
  22153. weight: math.unit(2, "lb"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/artemis/work-safe-side.svg",
  22157. extra: 1192 / 1075,
  22158. bottom: 0.07
  22159. },
  22160. form: "work-safe"
  22161. },
  22162. sideNsfw: {
  22163. height: math.unit(7.5, "feet"),
  22164. weight: math.unit(2, "lb"),
  22165. name: "Side",
  22166. image: {
  22167. source: "./media/characters/artemis/calibrating-side.svg",
  22168. extra: 1192 / 1075,
  22169. bottom: 0.07
  22170. },
  22171. form: "calibrating"
  22172. },
  22173. sideNsfwer: {
  22174. height: math.unit(7.5, "feet"),
  22175. weight: math.unit(2, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/artemis/oversize-load-side.svg",
  22179. extra: 1192 / 1075,
  22180. bottom: 0.07
  22181. },
  22182. form: "oversize-load"
  22183. },
  22184. maw: {
  22185. height: math.unit(1.1, "feet"),
  22186. name: "Maw",
  22187. image: {
  22188. source: "./media/characters/artemis/maw.svg"
  22189. },
  22190. form: "work-safe"
  22191. },
  22192. stomach: {
  22193. height: math.unit(0.95, "feet"),
  22194. name: "Stomach",
  22195. image: {
  22196. source: "./media/characters/artemis/stomach.svg"
  22197. },
  22198. form: "work-safe"
  22199. },
  22200. dickCanine: {
  22201. height: math.unit(1, "feet"),
  22202. name: "Dick (Canine)",
  22203. image: {
  22204. source: "./media/characters/artemis/dick-canine.svg"
  22205. },
  22206. form: "calibrating"
  22207. },
  22208. dickEquine: {
  22209. height: math.unit(0.85, "feet"),
  22210. name: "Dick (Equine)",
  22211. image: {
  22212. source: "./media/characters/artemis/dick-equine.svg"
  22213. },
  22214. form: "calibrating"
  22215. },
  22216. dickExotic: {
  22217. height: math.unit(0.85, "feet"),
  22218. name: "Dick (Exotic)",
  22219. image: {
  22220. source: "./media/characters/artemis/dick-exotic.svg"
  22221. },
  22222. form: "calibrating"
  22223. },
  22224. dickCanineBigger: {
  22225. height: math.unit(1 * 1.33, "feet"),
  22226. name: "Dick (Canine)",
  22227. image: {
  22228. source: "./media/characters/artemis/dick-canine.svg"
  22229. },
  22230. form: "oversize-load"
  22231. },
  22232. dickEquineBigger: {
  22233. height: math.unit(0.85 * 1.33, "feet"),
  22234. name: "Dick (Equine)",
  22235. image: {
  22236. source: "./media/characters/artemis/dick-equine.svg"
  22237. },
  22238. form: "oversize-load"
  22239. },
  22240. dickExoticBigger: {
  22241. height: math.unit(0.85 * 1.33, "feet"),
  22242. name: "Dick (Exotic)",
  22243. image: {
  22244. source: "./media/characters/artemis/dick-exotic.svg"
  22245. },
  22246. form: "oversize-load"
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(7.5, "feet"),
  22253. form: "work-safe",
  22254. default: true
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(7.5, "feet"),
  22259. form: "calibrating",
  22260. default: true
  22261. },
  22262. {
  22263. name: "Normal",
  22264. height: math.unit(7.5, "feet"),
  22265. form: "oversize-load",
  22266. default: true
  22267. },
  22268. {
  22269. name: "Enlarged",
  22270. height: math.unit(12, "feet"),
  22271. form: "work-safe",
  22272. },
  22273. {
  22274. name: "Enlarged",
  22275. height: math.unit(12, "feet"),
  22276. form: "calibrating",
  22277. },
  22278. {
  22279. name: "Enlarged",
  22280. height: math.unit(12, "feet"),
  22281. form: "oversize-load",
  22282. },
  22283. ],
  22284. {
  22285. "work-safe": {
  22286. name: "Work-Safe",
  22287. default: true
  22288. },
  22289. "calibrating": {
  22290. name: "Calibrating"
  22291. },
  22292. "oversize-load": {
  22293. name: "Oversize Load"
  22294. }
  22295. }
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(5 + 3 / 12, "feet"),
  22302. weight: math.unit(160, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/kira/front.svg",
  22306. extra: 906 / 786,
  22307. bottom: 0.01
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(5 + 3 / 12, "feet"),
  22312. weight: math.unit(160, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/kira/back.svg",
  22316. extra: 882 / 757,
  22317. bottom: 0.005
  22318. }
  22319. },
  22320. frontDressed: {
  22321. height: math.unit(5 + 3 / 12, "feet"),
  22322. weight: math.unit(160, "lb"),
  22323. name: "Front (Dressed)",
  22324. image: {
  22325. source: "./media/characters/kira/front-dressed.svg",
  22326. extra: 906 / 786,
  22327. bottom: 0.01
  22328. }
  22329. },
  22330. beans: {
  22331. height: math.unit(0.92, "feet"),
  22332. name: "Beans",
  22333. image: {
  22334. source: "./media/characters/kira/beans.svg"
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(5 + 3 / 12, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(5 + 4 / 12, "feet"),
  22351. weight: math.unit(145, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/scramble/front.svg",
  22355. extra: 763 / 727,
  22356. bottom: 0.05
  22357. }
  22358. },
  22359. back: {
  22360. height: math.unit(5 + 4 / 12, "feet"),
  22361. weight: math.unit(145, "lb"),
  22362. name: "Back",
  22363. image: {
  22364. source: "./media/characters/scramble/back.svg",
  22365. extra: 826 / 737,
  22366. bottom: 0.002
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Normal",
  22373. height: math.unit(5 + 4 / 12, "feet"),
  22374. default: true
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22380. {
  22381. side: {
  22382. height: math.unit(6 + 2 / 12, "feet"),
  22383. weight: math.unit(190, "lb"),
  22384. name: "Side",
  22385. image: {
  22386. source: "./media/characters/biscuit/side.svg",
  22387. extra: 858 / 791,
  22388. bottom: 0.044
  22389. }
  22390. },
  22391. },
  22392. [
  22393. {
  22394. name: "Normal",
  22395. height: math.unit(6 + 2 / 12, "feet"),
  22396. default: true
  22397. },
  22398. ]
  22399. ))
  22400. characterMakers.push(() => makeCharacter(
  22401. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22402. {
  22403. front: {
  22404. height: math.unit(5 + 2 / 12, "feet"),
  22405. weight: math.unit(120, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/poffin/front.svg",
  22409. extra: 786 / 680,
  22410. bottom: 0.005
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Normal",
  22417. height: math.unit(5 + 2 / 12, "feet"),
  22418. default: true
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22424. {
  22425. front: {
  22426. height: math.unit(6 + 3 / 12, "feet"),
  22427. weight: math.unit(519, "lb"),
  22428. name: "Front",
  22429. image: {
  22430. source: "./media/characters/dhari/front.svg",
  22431. extra: 1048 / 946,
  22432. bottom: 0.015
  22433. }
  22434. },
  22435. back: {
  22436. height: math.unit(6 + 3 / 12, "feet"),
  22437. weight: math.unit(519, "lb"),
  22438. name: "Back",
  22439. image: {
  22440. source: "./media/characters/dhari/back.svg",
  22441. extra: 1048 / 931,
  22442. bottom: 0.005
  22443. }
  22444. },
  22445. frontDressed: {
  22446. height: math.unit(6 + 3 / 12, "feet"),
  22447. weight: math.unit(519, "lb"),
  22448. name: "Front (Dressed)",
  22449. image: {
  22450. source: "./media/characters/dhari/front-dressed.svg",
  22451. extra: 1713 / 1546,
  22452. bottom: 0.02
  22453. }
  22454. },
  22455. backDressed: {
  22456. height: math.unit(6 + 3 / 12, "feet"),
  22457. weight: math.unit(519, "lb"),
  22458. name: "Back (Dressed)",
  22459. image: {
  22460. source: "./media/characters/dhari/back-dressed.svg",
  22461. extra: 1699 / 1537,
  22462. bottom: 0.01
  22463. }
  22464. },
  22465. maw: {
  22466. height: math.unit(0.95, "feet"),
  22467. name: "Maw",
  22468. image: {
  22469. source: "./media/characters/dhari/maw.svg"
  22470. }
  22471. },
  22472. wereFront: {
  22473. height: math.unit(12 + 8 / 12, "feet"),
  22474. weight: math.unit(4000, "lb"),
  22475. name: "Front (Were)",
  22476. image: {
  22477. source: "./media/characters/dhari/were-front.svg",
  22478. extra: 1065 / 969,
  22479. bottom: 0.015
  22480. }
  22481. },
  22482. wereBack: {
  22483. height: math.unit(12 + 8 / 12, "feet"),
  22484. weight: math.unit(4000, "lb"),
  22485. name: "Back (Were)",
  22486. image: {
  22487. source: "./media/characters/dhari/were-back.svg",
  22488. extra: 1065 / 969,
  22489. bottom: 0.012
  22490. }
  22491. },
  22492. wereMaw: {
  22493. height: math.unit(0.625, "meters"),
  22494. name: "Maw (Were)",
  22495. image: {
  22496. source: "./media/characters/dhari/were-maw.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(6 + 3 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22510. {
  22511. anthro: {
  22512. height: math.unit(5 + 7 / 12, "feet"),
  22513. weight: math.unit(175, "lb"),
  22514. name: "Anthro",
  22515. image: {
  22516. source: "./media/characters/rena-dyne/anthro.svg",
  22517. extra: 1849 / 1785,
  22518. bottom: 0.005
  22519. }
  22520. },
  22521. taur: {
  22522. height: math.unit(15 + 6 / 12, "feet"),
  22523. weight: math.unit(8000, "lb"),
  22524. name: "Taur",
  22525. image: {
  22526. source: "./media/characters/rena-dyne/taur.svg",
  22527. extra: 2315 / 2234,
  22528. bottom: 0.033
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(5 + 7 / 12, "feet"),
  22536. default: true
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(8, "feet"),
  22545. weight: math.unit(600, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/weremeep/front.svg",
  22549. extra: 970/849,
  22550. bottom: 7/977
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Normal",
  22557. height: math.unit(8, "feet"),
  22558. default: true
  22559. },
  22560. {
  22561. name: "Lorg",
  22562. height: math.unit(12, "feet")
  22563. },
  22564. {
  22565. name: "Oh Lawd She Comin'",
  22566. height: math.unit(20, "feet")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22572. {
  22573. front: {
  22574. height: math.unit(4, "feet"),
  22575. weight: math.unit(90, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/reza/front.svg",
  22579. extra: 1183 / 1111,
  22580. bottom: 0.017
  22581. }
  22582. },
  22583. back: {
  22584. height: math.unit(4, "feet"),
  22585. weight: math.unit(90, "lb"),
  22586. name: "Back",
  22587. image: {
  22588. source: "./media/characters/reza/back.svg",
  22589. extra: 1183 / 1111,
  22590. bottom: 0.01
  22591. }
  22592. },
  22593. drake: {
  22594. height: math.unit(30, "feet"),
  22595. weight: math.unit(246960, "lb"),
  22596. name: "Drake",
  22597. image: {
  22598. source: "./media/characters/reza/drake.svg",
  22599. extra: 2350 / 2024,
  22600. bottom: 60.7 / 2403
  22601. }
  22602. },
  22603. },
  22604. [
  22605. {
  22606. name: "Normal",
  22607. height: math.unit(4, "feet"),
  22608. default: true
  22609. },
  22610. ]
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22614. {
  22615. side: {
  22616. height: math.unit(15, "feet"),
  22617. weight: math.unit(14, "tons"),
  22618. name: "Side",
  22619. image: {
  22620. source: "./media/characters/athea/side.svg",
  22621. extra: 960 / 540,
  22622. bottom: 0.003
  22623. }
  22624. },
  22625. sitting: {
  22626. height: math.unit(6 * 2.85, "feet"),
  22627. weight: math.unit(14, "tons"),
  22628. name: "Sitting",
  22629. image: {
  22630. source: "./media/characters/athea/sitting.svg",
  22631. extra: 621 / 581,
  22632. bottom: 0.075
  22633. }
  22634. },
  22635. maw: {
  22636. height: math.unit(7.59498031496063, "feet"),
  22637. name: "Maw",
  22638. image: {
  22639. source: "./media/characters/athea/maw.svg"
  22640. }
  22641. },
  22642. },
  22643. [
  22644. {
  22645. name: "Lap Cat",
  22646. height: math.unit(2.5, "feet")
  22647. },
  22648. {
  22649. name: "Minimacro",
  22650. height: math.unit(15, "feet"),
  22651. default: true
  22652. },
  22653. {
  22654. name: "Macro",
  22655. height: math.unit(120, "feet")
  22656. },
  22657. {
  22658. name: "Macro+",
  22659. height: math.unit(640, "feet")
  22660. },
  22661. {
  22662. name: "Colossus",
  22663. height: math.unit(2.2, "miles")
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(8 + 8 / 12, "feet"),
  22672. weight: math.unit(130, "kg"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/seroko/front.svg",
  22676. extra: 1385 / 1280,
  22677. bottom: 0.025
  22678. }
  22679. },
  22680. back: {
  22681. height: math.unit(8 + 8 / 12, "feet"),
  22682. weight: math.unit(130, "kg"),
  22683. name: "Back",
  22684. image: {
  22685. source: "./media/characters/seroko/back.svg",
  22686. extra: 1369 / 1238,
  22687. bottom: 0.018
  22688. }
  22689. },
  22690. frontDressed: {
  22691. height: math.unit(8 + 8 / 12, "feet"),
  22692. weight: math.unit(130, "kg"),
  22693. name: "Front (Dressed)",
  22694. image: {
  22695. source: "./media/characters/seroko/front-dressed.svg",
  22696. extra: 1366 / 1275,
  22697. bottom: 0.03
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(8 + 8 / 12, "feet"),
  22705. default: true
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(5.5, "feet"),
  22714. weight: math.unit(160, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/quatzi/front.svg",
  22718. extra: 2346 / 2242,
  22719. bottom: 0.015
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(5.5, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Big",
  22731. height: math.unit(7.7, "feet")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(5 + 11 / 12, "feet"),
  22740. weight: math.unit(180, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/sen/front.svg",
  22744. extra: 1321 / 1254,
  22745. bottom: 0.015
  22746. }
  22747. },
  22748. side: {
  22749. height: math.unit(5 + 11 / 12, "feet"),
  22750. weight: math.unit(180, "lb"),
  22751. name: "Side",
  22752. image: {
  22753. source: "./media/characters/sen/side.svg",
  22754. extra: 1321 / 1254,
  22755. bottom: 0.007
  22756. }
  22757. },
  22758. back: {
  22759. height: math.unit(5 + 11 / 12, "feet"),
  22760. weight: math.unit(180, "lb"),
  22761. name: "Back",
  22762. image: {
  22763. source: "./media/characters/sen/back.svg",
  22764. extra: 1321 / 1254
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(5 + 11 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22778. {
  22779. front: {
  22780. height: math.unit(166.6, "cm"),
  22781. weight: math.unit(66.6, "kg"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/fruity/front.svg",
  22785. extra: 1510 / 1386,
  22786. bottom: 0.04
  22787. }
  22788. },
  22789. back: {
  22790. height: math.unit(166.6, "cm"),
  22791. weight: math.unit(66.6, "lb"),
  22792. name: "Back",
  22793. image: {
  22794. source: "./media/characters/fruity/back.svg",
  22795. extra: 1563 / 1435,
  22796. bottom: 0.005
  22797. }
  22798. },
  22799. },
  22800. [
  22801. {
  22802. name: "Normal",
  22803. height: math.unit(166.6, "cm"),
  22804. default: true
  22805. },
  22806. {
  22807. name: "Demonic",
  22808. height: math.unit(166.6, "feet")
  22809. },
  22810. ]
  22811. ))
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22814. {
  22815. side: {
  22816. height: math.unit(10, "feet"),
  22817. weight: math.unit(500, "lb"),
  22818. name: "Side",
  22819. image: {
  22820. source: "./media/characters/zost/side.svg",
  22821. extra: 2870/2533,
  22822. bottom: 252/3122
  22823. }
  22824. },
  22825. mawFront: {
  22826. height: math.unit(1.08, "meters"),
  22827. name: "Maw (Front)",
  22828. image: {
  22829. source: "./media/characters/zost/maw-front.svg"
  22830. }
  22831. },
  22832. mawSide: {
  22833. height: math.unit(2.66, "feet"),
  22834. name: "Maw (Side)",
  22835. image: {
  22836. source: "./media/characters/zost/maw-side.svg"
  22837. }
  22838. },
  22839. wingspan: {
  22840. height: math.unit(7.4, "feet"),
  22841. name: "Wingspan",
  22842. image: {
  22843. source: "./media/characters/zost/wingspan.svg"
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(10, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(5 + 4 / 12, "feet"),
  22860. weight: math.unit(120, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/luci/front.svg",
  22864. extra: 1985 / 1884,
  22865. bottom: 0.04
  22866. }
  22867. },
  22868. back: {
  22869. height: math.unit(5 + 4 / 12, "feet"),
  22870. weight: math.unit(120, "lb"),
  22871. name: "Back",
  22872. image: {
  22873. source: "./media/characters/luci/back.svg",
  22874. extra: 1892 / 1791,
  22875. bottom: 0.002
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(5 + 4 / 12, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(1500, "feet"),
  22892. weight: math.unit(3.8e6, "tons"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/2th/front.svg",
  22896. extra: 3489 / 3350,
  22897. bottom: 0.1
  22898. }
  22899. },
  22900. foot: {
  22901. height: math.unit(461, "feet"),
  22902. name: "Foot",
  22903. image: {
  22904. source: "./media/characters/2th/foot.svg"
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "\"Micro\"",
  22911. height: math.unit(15 + 7 / 12, "feet")
  22912. },
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(1500, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(5000, "feet")
  22921. },
  22922. {
  22923. name: "Megamacro",
  22924. height: math.unit(15, "miles")
  22925. },
  22926. {
  22927. name: "Gigamacro",
  22928. height: math.unit(4000, "miles")
  22929. },
  22930. {
  22931. name: "Galactic",
  22932. height: math.unit(50, "AU")
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(5 + 6 / 12, "feet"),
  22941. weight: math.unit(220, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/amethyst/front.svg",
  22945. extra: 2078 / 2040,
  22946. bottom: 0.045
  22947. }
  22948. },
  22949. back: {
  22950. height: math.unit(5 + 6 / 12, "feet"),
  22951. weight: math.unit(220, "lb"),
  22952. name: "Back",
  22953. image: {
  22954. source: "./media/characters/amethyst/back.svg",
  22955. extra: 2021 / 1989,
  22956. bottom: 0.02
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(5 + 6 / 12, "feet"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(4 + 11 / 12, "feet"),
  22973. weight: math.unit(120, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/yumi-akiyama/front.svg",
  22977. extra: 1327 / 1235,
  22978. bottom: 0.02
  22979. }
  22980. },
  22981. back: {
  22982. height: math.unit(4 + 11 / 12, "feet"),
  22983. weight: math.unit(120, "lb"),
  22984. name: "Back",
  22985. image: {
  22986. source: "./media/characters/yumi-akiyama/back.svg",
  22987. extra: 1287 / 1245,
  22988. bottom: 0.002
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Galactic",
  22995. height: math.unit(50, "galaxies"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Universal",
  23000. height: math.unit(100, "universes")
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23006. {
  23007. front: {
  23008. height: math.unit(8, "feet"),
  23009. weight: math.unit(500, "lb"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/rifter-yrmori/front.svg",
  23013. extra: 1180 / 1125,
  23014. bottom: 0.02
  23015. }
  23016. },
  23017. back: {
  23018. height: math.unit(8, "feet"),
  23019. weight: math.unit(500, "lb"),
  23020. name: "Back",
  23021. image: {
  23022. source: "./media/characters/rifter-yrmori/back.svg",
  23023. extra: 1190 / 1145,
  23024. bottom: 0.001
  23025. }
  23026. },
  23027. wings: {
  23028. height: math.unit(7.75, "feet"),
  23029. weight: math.unit(500, "lb"),
  23030. name: "Wings",
  23031. image: {
  23032. source: "./media/characters/rifter-yrmori/wings.svg",
  23033. extra: 1357 / 1285
  23034. }
  23035. },
  23036. maw: {
  23037. height: math.unit(0.8, "feet"),
  23038. name: "Maw",
  23039. image: {
  23040. source: "./media/characters/rifter-yrmori/maw.svg"
  23041. }
  23042. },
  23043. mawfront: {
  23044. height: math.unit(1.45, "feet"),
  23045. name: "Maw (Front)",
  23046. image: {
  23047. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(8, "feet"),
  23055. default: true
  23056. },
  23057. {
  23058. name: "Macro",
  23059. height: math.unit(42, "meters")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23065. {
  23066. were: {
  23067. height: math.unit(25 + 6 / 12, "feet"),
  23068. weight: math.unit(10000, "lb"),
  23069. name: "Were",
  23070. image: {
  23071. source: "./media/characters/tahajin/were.svg",
  23072. extra: 801 / 770,
  23073. bottom: 0.042
  23074. }
  23075. },
  23076. aquatic: {
  23077. height: math.unit(6 + 4 / 12, "feet"),
  23078. weight: math.unit(160, "lb"),
  23079. name: "Aquatic",
  23080. image: {
  23081. source: "./media/characters/tahajin/aquatic.svg",
  23082. extra: 572 / 542,
  23083. bottom: 0.04
  23084. }
  23085. },
  23086. chow: {
  23087. height: math.unit(8 + 11 / 12, "feet"),
  23088. weight: math.unit(450, "lb"),
  23089. name: "Chow",
  23090. image: {
  23091. source: "./media/characters/tahajin/chow.svg",
  23092. extra: 660 / 640,
  23093. bottom: 0.015
  23094. }
  23095. },
  23096. demiNaga: {
  23097. height: math.unit(6 + 8 / 12, "feet"),
  23098. weight: math.unit(300, "lb"),
  23099. name: "Demi Naga",
  23100. image: {
  23101. source: "./media/characters/tahajin/demi-naga.svg",
  23102. extra: 643 / 615,
  23103. bottom: 0.1
  23104. }
  23105. },
  23106. data: {
  23107. height: math.unit(5, "inches"),
  23108. weight: math.unit(0.1, "lb"),
  23109. name: "Data",
  23110. image: {
  23111. source: "./media/characters/tahajin/data.svg"
  23112. }
  23113. },
  23114. fluu: {
  23115. height: math.unit(5 + 7 / 12, "feet"),
  23116. weight: math.unit(140, "lb"),
  23117. name: "Fluu",
  23118. image: {
  23119. source: "./media/characters/tahajin/fluu.svg",
  23120. extra: 628 / 592,
  23121. bottom: 0.02
  23122. }
  23123. },
  23124. starWarrior: {
  23125. height: math.unit(4 + 5 / 12, "feet"),
  23126. weight: math.unit(50, "lb"),
  23127. name: "Star Warrior",
  23128. image: {
  23129. source: "./media/characters/tahajin/star-warrior.svg"
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(25 + 6 / 12, "feet"),
  23137. default: true
  23138. },
  23139. ]
  23140. ))
  23141. characterMakers.push(() => makeCharacter(
  23142. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23143. {
  23144. front: {
  23145. height: math.unit(8, "feet"),
  23146. weight: math.unit(350, "lb"),
  23147. name: "Front",
  23148. image: {
  23149. source: "./media/characters/gabira/front.svg",
  23150. extra: 1261/1154,
  23151. bottom: 51/1312
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(8, "feet"),
  23156. weight: math.unit(350, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/gabira/back.svg",
  23160. extra: 1265/1163,
  23161. bottom: 46/1311
  23162. }
  23163. },
  23164. head: {
  23165. height: math.unit(2.85, "feet"),
  23166. name: "Head",
  23167. image: {
  23168. source: "./media/characters/gabira/head.svg"
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(8, "feet"),
  23176. default: true
  23177. },
  23178. ]
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(5 + 3 / 12, "feet"),
  23185. weight: math.unit(137, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/sasha-katraine/front.svg",
  23189. extra: 1745/1694,
  23190. bottom: 37/1782
  23191. }
  23192. },
  23193. back: {
  23194. height: math.unit(5 + 3 / 12, "feet"),
  23195. weight: math.unit(137, "lb"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/sasha-katraine/back.svg",
  23199. extra: 1776/1699,
  23200. bottom: 26/1802
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Micro",
  23207. height: math.unit(5, "inches")
  23208. },
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(5 + 3 / 12, "feet"),
  23212. default: true
  23213. },
  23214. ]
  23215. ))
  23216. characterMakers.push(() => makeCharacter(
  23217. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23218. {
  23219. side: {
  23220. height: math.unit(4, "inches"),
  23221. weight: math.unit(200, "grams"),
  23222. name: "Side",
  23223. image: {
  23224. source: "./media/characters/der/side.svg",
  23225. extra: 719 / 400,
  23226. bottom: 30.6 / 749.9187
  23227. }
  23228. },
  23229. },
  23230. [
  23231. {
  23232. name: "Micro",
  23233. height: math.unit(4, "inches"),
  23234. default: true
  23235. },
  23236. ]
  23237. ))
  23238. characterMakers.push(() => makeCharacter(
  23239. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23240. {
  23241. side: {
  23242. height: math.unit(30, "meters"),
  23243. weight: math.unit(700, "tonnes"),
  23244. name: "Side",
  23245. image: {
  23246. source: "./media/characters/fixerdragon/side.svg",
  23247. extra: (1293.0514 - 116.03) / 1106.86,
  23248. bottom: 116.03 / 1293.0514
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Planck",
  23255. height: math.unit(1.6e-35, "meters")
  23256. },
  23257. {
  23258. name: "Micro",
  23259. height: math.unit(0.4, "meters")
  23260. },
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(30, "meters"),
  23264. default: true
  23265. },
  23266. {
  23267. name: "Megamacro",
  23268. height: math.unit(1.2, "megameters")
  23269. },
  23270. {
  23271. name: "Teramacro",
  23272. height: math.unit(130, "terameters")
  23273. },
  23274. {
  23275. name: "Yottamacro",
  23276. height: math.unit(6200, "yottameters")
  23277. },
  23278. ]
  23279. ));
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(8, "feet"),
  23285. weight: math.unit(250, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/kite/front.svg",
  23289. extra: 2796 / 2659,
  23290. bottom: 0.002
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(8, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(360, "feet")
  23303. },
  23304. {
  23305. name: "Megamacro",
  23306. height: math.unit(1500, "feet")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(5 + 11/12, "feet"),
  23315. weight: math.unit(170, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/poojawa-vynar/front.svg",
  23319. extra: 1735/1585,
  23320. bottom: 96/1831
  23321. }
  23322. },
  23323. back: {
  23324. height: math.unit(5 + 11/12, "feet"),
  23325. weight: math.unit(170, "lb"),
  23326. name: "Back",
  23327. image: {
  23328. source: "./media/characters/poojawa-vynar/back.svg",
  23329. extra: 1749/1607,
  23330. bottom: 28/1777
  23331. }
  23332. },
  23333. male: {
  23334. height: math.unit(5 + 11/12, "feet"),
  23335. weight: math.unit(170, "lb"),
  23336. name: "Male",
  23337. image: {
  23338. source: "./media/characters/poojawa-vynar/male.svg",
  23339. extra: 1855/1713,
  23340. bottom: 63/1918
  23341. }
  23342. },
  23343. taur: {
  23344. height: math.unit(5 + 11/12, "feet"),
  23345. weight: math.unit(170, "lb"),
  23346. name: "Taur",
  23347. image: {
  23348. source: "./media/characters/poojawa-vynar/taur.svg",
  23349. extra: 1151/1059,
  23350. bottom: 356/1507
  23351. }
  23352. },
  23353. frontDressed: {
  23354. height: math.unit(5 + 11/12, "feet"),
  23355. weight: math.unit(170, "lb"),
  23356. name: "Front (Dressed)",
  23357. image: {
  23358. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23359. extra: 1735/1585,
  23360. bottom: 96/1831
  23361. }
  23362. },
  23363. backDressed: {
  23364. height: math.unit(5 + 11/12, "feet"),
  23365. weight: math.unit(170, "lb"),
  23366. name: "Back (Dressed)",
  23367. image: {
  23368. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23369. extra: 1749/1607,
  23370. bottom: 28/1777
  23371. }
  23372. },
  23373. maleDressed: {
  23374. height: math.unit(5 + 11/12, "feet"),
  23375. weight: math.unit(170, "lb"),
  23376. name: "Male (Dressed)",
  23377. image: {
  23378. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23379. extra: 1855/1713,
  23380. bottom: 63/1918
  23381. }
  23382. },
  23383. taurDressed: {
  23384. height: math.unit(5 + 11/12, "feet"),
  23385. weight: math.unit(170, "lb"),
  23386. name: "Taur (Dressed)",
  23387. image: {
  23388. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23389. extra: 1151/1059,
  23390. bottom: 356/1507
  23391. }
  23392. },
  23393. maw: {
  23394. height: math.unit(1.46, "feet"),
  23395. name: "Maw",
  23396. image: {
  23397. source: "./media/characters/poojawa-vynar/maw.svg"
  23398. }
  23399. },
  23400. head: {
  23401. height: math.unit(2.34, "feet"),
  23402. name: "Head",
  23403. image: {
  23404. source: "./media/characters/poojawa-vynar/head.svg"
  23405. }
  23406. },
  23407. paw: {
  23408. height: math.unit(1.61, "feet"),
  23409. name: "Paw",
  23410. image: {
  23411. source: "./media/characters/poojawa-vynar/paw.svg"
  23412. }
  23413. },
  23414. pawToering: {
  23415. height: math.unit(1.72, "feet"),
  23416. name: "Paw (Toering)",
  23417. image: {
  23418. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23419. }
  23420. },
  23421. toering: {
  23422. height: math.unit(2.9, "inches"),
  23423. name: "Toering",
  23424. image: {
  23425. source: "./media/characters/poojawa-vynar/toering.svg"
  23426. }
  23427. },
  23428. shaft: {
  23429. height: math.unit(0.625, "feet"),
  23430. name: "Shaft",
  23431. image: {
  23432. source: "./media/characters/poojawa-vynar/shaft.svg"
  23433. }
  23434. },
  23435. spade: {
  23436. height: math.unit(0.42, "feet"),
  23437. name: "Spade",
  23438. image: {
  23439. source: "./media/characters/poojawa-vynar/spade.svg"
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Shortstack",
  23446. height: math.unit(4, "feet")
  23447. },
  23448. {
  23449. name: "Normal",
  23450. height: math.unit(5 + 11 / 12, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Tauric",
  23455. height: math.unit(4, "meters")
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23461. {
  23462. front: {
  23463. height: math.unit(293, "meters"),
  23464. weight: math.unit(70400, "tons"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/violette/front.svg",
  23468. extra: 1227 / 1180,
  23469. bottom: 0.005
  23470. }
  23471. },
  23472. back: {
  23473. height: math.unit(293, "meters"),
  23474. weight: math.unit(70400, "tons"),
  23475. name: "Back",
  23476. image: {
  23477. source: "./media/characters/violette/back.svg",
  23478. extra: 1227 / 1180,
  23479. bottom: 0.005
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Macro",
  23486. height: math.unit(293, "meters"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23493. {
  23494. front: {
  23495. height: math.unit(1050, "feet"),
  23496. weight: math.unit(200000, "tons"),
  23497. name: "Front",
  23498. image: {
  23499. source: "./media/characters/alessandra/front.svg",
  23500. extra: 960 / 912,
  23501. bottom: 0.06
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Macro",
  23508. height: math.unit(1050, "feet")
  23509. },
  23510. {
  23511. name: "Macro+",
  23512. height: math.unit(900, "meters"),
  23513. default: true
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(5, "feet"),
  23522. weight: math.unit(187, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/person/front.svg",
  23526. extra: 3087 / 2945,
  23527. bottom: 91 / 3181
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Micro",
  23534. height: math.unit(3, "inches")
  23535. },
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(5, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Macro",
  23543. height: math.unit(90, "feet")
  23544. },
  23545. {
  23546. name: "Max Size",
  23547. height: math.unit(280, "feet")
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(4.5, "meters"),
  23556. weight: math.unit(3200, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/ty/front.svg",
  23560. extra: 1038 / 960,
  23561. bottom: 31.156 / 1068
  23562. }
  23563. },
  23564. back: {
  23565. height: math.unit(4.5, "meters"),
  23566. weight: math.unit(3200, "lb"),
  23567. name: "Back",
  23568. image: {
  23569. source: "./media/characters/ty/back.svg",
  23570. extra: 1044 / 966,
  23571. bottom: 7.48 / 1049
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Normal",
  23578. height: math.unit(4.5, "meters"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(5 + 4 / 12, "feet"),
  23588. weight: math.unit(115, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/rocky/front.svg",
  23592. extra: 1012 / 975,
  23593. bottom: 54 / 1066
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(5 + 4 / 12, "feet"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23607. {
  23608. upright: {
  23609. height: math.unit(6, "meters"),
  23610. weight: math.unit(4000, "kg"),
  23611. name: "Upright",
  23612. image: {
  23613. source: "./media/characters/ruin/upright.svg",
  23614. extra: 668 / 661,
  23615. bottom: 42 / 799.8396
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(6, "meters"),
  23623. default: true
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(5, "feet"),
  23632. weight: math.unit(106, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/robin/front.svg",
  23636. extra: 862 / 799,
  23637. bottom: 42.4 / 914.8856
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(5, "feet"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23651. {
  23652. side: {
  23653. height: math.unit(3, "feet"),
  23654. weight: math.unit(225, "lb"),
  23655. name: "Side",
  23656. image: {
  23657. source: "./media/characters/saian/side.svg",
  23658. extra: 566 / 356,
  23659. bottom: 79.7 / 643
  23660. }
  23661. },
  23662. maw: {
  23663. height: math.unit(2.85, "feet"),
  23664. name: "Maw",
  23665. image: {
  23666. source: "./media/characters/saian/maw.svg"
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(3, "feet"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23680. {
  23681. side: {
  23682. height: math.unit(8, "feet"),
  23683. weight: math.unit(300, "lb"),
  23684. name: "Side",
  23685. image: {
  23686. source: "./media/characters/equus-silvermane/side.svg",
  23687. extra: 2176 / 2050,
  23688. bottom: 65.7 / 2245
  23689. }
  23690. },
  23691. front: {
  23692. height: math.unit(8, "feet"),
  23693. weight: math.unit(300, "lb"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/equus-silvermane/front.svg",
  23697. extra: 4633 / 4400,
  23698. bottom: 71.3 / 4706.915
  23699. }
  23700. },
  23701. sideStepping: {
  23702. height: math.unit(8, "feet"),
  23703. weight: math.unit(300, "lb"),
  23704. name: "Side (Stepping)",
  23705. image: {
  23706. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23707. extra: 1968 / 1860,
  23708. bottom: 16.4 / 1989
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(8, "feet")
  23716. },
  23717. {
  23718. name: "Minimacro",
  23719. height: math.unit(75, "feet"),
  23720. default: true
  23721. },
  23722. {
  23723. name: "Macro",
  23724. height: math.unit(150, "feet")
  23725. },
  23726. {
  23727. name: "Macro+",
  23728. height: math.unit(1000, "feet")
  23729. },
  23730. {
  23731. name: "Megamacro",
  23732. height: math.unit(1, "mile")
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23738. {
  23739. side: {
  23740. height: math.unit(20, "feet"),
  23741. weight: math.unit(30000, "kg"),
  23742. name: "Side",
  23743. image: {
  23744. source: "./media/characters/windar/side.svg",
  23745. extra: 1491 / 1248,
  23746. bottom: 82.56 / 1568
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(20, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23760. {
  23761. side: {
  23762. height: math.unit(15.66, "feet"),
  23763. weight: math.unit(150, "lb"),
  23764. name: "Side",
  23765. image: {
  23766. source: "./media/characters/melody/side.svg",
  23767. extra: 1097 / 944,
  23768. bottom: 11.8 / 1109
  23769. }
  23770. },
  23771. sideOutfit: {
  23772. height: math.unit(15.66, "feet"),
  23773. weight: math.unit(150, "lb"),
  23774. name: "Side (Outfit)",
  23775. image: {
  23776. source: "./media/characters/melody/side-outfit.svg",
  23777. extra: 1097 / 944,
  23778. bottom: 11.8 / 1109
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(15.66, "feet"),
  23786. default: true
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23792. {
  23793. armoredFront: {
  23794. height: math.unit(8, "feet"),
  23795. weight: math.unit(325, "lb"),
  23796. name: "Front",
  23797. image: {
  23798. source: "./media/characters/windera/armored-front.svg",
  23799. extra: 1830/1598,
  23800. bottom: 151/1981
  23801. },
  23802. form: "armored",
  23803. default: true
  23804. },
  23805. macroFront: {
  23806. height: math.unit(70, "feet"),
  23807. weight: math.unit(315453, "lb"),
  23808. name: "Front",
  23809. image: {
  23810. source: "./media/characters/windera/macro-front.svg",
  23811. extra: 963/883,
  23812. bottom: 23/986
  23813. },
  23814. form: "macro",
  23815. default: true
  23816. },
  23817. },
  23818. [
  23819. {
  23820. name: "Normal",
  23821. height: math.unit(8, "feet"),
  23822. default: true,
  23823. form: "armored"
  23824. },
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(70, "feet"),
  23828. default: true,
  23829. form: "macro"
  23830. },
  23831. ],
  23832. {
  23833. "armored": {
  23834. name: "Armored",
  23835. default: true
  23836. },
  23837. "macro": {
  23838. name: "Macro",
  23839. },
  23840. }
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23844. {
  23845. front: {
  23846. height: math.unit(28.75, "feet"),
  23847. weight: math.unit(2000, "kg"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/sonear/front.svg",
  23851. extra: 1041.1 / 964.9,
  23852. bottom: 53.7 / 1096.6
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(28.75, "feet"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23866. {
  23867. side: {
  23868. height: math.unit(25.5, "feet"),
  23869. weight: math.unit(23000, "kg"),
  23870. name: "Side",
  23871. image: {
  23872. source: "./media/characters/kanara/side.svg"
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Normal",
  23879. height: math.unit(25.5, "feet"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23886. {
  23887. side: {
  23888. height: math.unit(10, "feet"),
  23889. weight: math.unit(1000, "kg"),
  23890. name: "Side",
  23891. image: {
  23892. source: "./media/characters/ereus/side.svg",
  23893. extra: 1157 / 959,
  23894. bottom: 153 / 1312.5
  23895. }
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(10, "feet"),
  23902. default: true
  23903. },
  23904. ]
  23905. ))
  23906. characterMakers.push(() => makeCharacter(
  23907. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23908. {
  23909. side: {
  23910. height: math.unit(4.5, "feet"),
  23911. weight: math.unit(500, "lb"),
  23912. name: "Side",
  23913. image: {
  23914. source: "./media/characters/e-ter/side.svg",
  23915. extra: 1550 / 1248,
  23916. bottom: 146 / 1694
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(4.5, "feet"),
  23924. default: true
  23925. },
  23926. ]
  23927. ))
  23928. characterMakers.push(() => makeCharacter(
  23929. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23930. {
  23931. side: {
  23932. height: math.unit(9.7, "feet"),
  23933. weight: math.unit(4000, "kg"),
  23934. name: "Side",
  23935. image: {
  23936. source: "./media/characters/yamie/side.svg"
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(9.7, "feet"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(50, "feet"),
  23953. weight: math.unit(50000, "kg"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/anders/front.svg",
  23957. extra: 570 / 539,
  23958. bottom: 14.7 / 586.7
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Large",
  23965. height: math.unit(50, "feet")
  23966. },
  23967. {
  23968. name: "Macro",
  23969. height: math.unit(2000, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "Megamacro",
  23974. height: math.unit(12, "miles")
  23975. },
  23976. ]
  23977. ))
  23978. characterMakers.push(() => makeCharacter(
  23979. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23980. {
  23981. front: {
  23982. height: math.unit(7 + 2 / 12, "feet"),
  23983. weight: math.unit(300, "lb"),
  23984. name: "Front",
  23985. image: {
  23986. source: "./media/characters/reban/front.svg",
  23987. extra: 1287/1212,
  23988. bottom: 148/1435
  23989. }
  23990. },
  23991. head: {
  23992. height: math.unit(1.95, "feet"),
  23993. name: "Head",
  23994. image: {
  23995. source: "./media/characters/reban/head.svg"
  23996. }
  23997. },
  23998. maw: {
  23999. height: math.unit(0.95, "feet"),
  24000. name: "Maw",
  24001. image: {
  24002. source: "./media/characters/reban/maw.svg"
  24003. }
  24004. },
  24005. foot: {
  24006. height: math.unit(1.65, "feet"),
  24007. name: "Foot",
  24008. image: {
  24009. source: "./media/characters/reban/foot.svg"
  24010. }
  24011. },
  24012. dick: {
  24013. height: math.unit(7 / 5, "feet"),
  24014. name: "Dick",
  24015. image: {
  24016. source: "./media/characters/reban/dick.svg"
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Natural Height",
  24023. height: math.unit(7 + 2 / 12, "feet")
  24024. },
  24025. {
  24026. name: "Macro",
  24027. height: math.unit(500, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Canon Height",
  24032. height: math.unit(50, "AU")
  24033. },
  24034. ]
  24035. ))
  24036. characterMakers.push(() => makeCharacter(
  24037. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24038. {
  24039. front: {
  24040. height: math.unit(6, "feet"),
  24041. weight: math.unit(150, "lb"),
  24042. name: "Front",
  24043. image: {
  24044. source: "./media/characters/terrance-keayes/front.svg",
  24045. extra: 1.005,
  24046. bottom: 151 / 1615
  24047. }
  24048. },
  24049. side: {
  24050. height: math.unit(6, "feet"),
  24051. weight: math.unit(150, "lb"),
  24052. name: "Side",
  24053. image: {
  24054. source: "./media/characters/terrance-keayes/side.svg",
  24055. extra: 1.005,
  24056. bottom: 129.4 / 1544
  24057. }
  24058. },
  24059. back: {
  24060. height: math.unit(6, "feet"),
  24061. weight: math.unit(150, "lb"),
  24062. name: "Back",
  24063. image: {
  24064. source: "./media/characters/terrance-keayes/back.svg",
  24065. extra: 1.005,
  24066. bottom: 58.4 / 1557.3
  24067. }
  24068. },
  24069. dick: {
  24070. height: math.unit(6 * 0.208, "feet"),
  24071. name: "Dick",
  24072. image: {
  24073. source: "./media/characters/terrance-keayes/dick.svg"
  24074. }
  24075. },
  24076. },
  24077. [
  24078. {
  24079. name: "Canon Height",
  24080. height: math.unit(35, "miles"),
  24081. default: true
  24082. },
  24083. ]
  24084. ))
  24085. characterMakers.push(() => makeCharacter(
  24086. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24087. {
  24088. front: {
  24089. height: math.unit(6, "feet"),
  24090. weight: math.unit(150, "lb"),
  24091. name: "Front",
  24092. image: {
  24093. source: "./media/characters/ofelia/front.svg",
  24094. extra: 1130/1117,
  24095. bottom: 91/1221
  24096. }
  24097. },
  24098. back: {
  24099. height: math.unit(6, "feet"),
  24100. weight: math.unit(150, "lb"),
  24101. name: "Back",
  24102. image: {
  24103. source: "./media/characters/ofelia/back.svg",
  24104. extra: 1172/1159,
  24105. bottom: 28/1200
  24106. }
  24107. },
  24108. maw: {
  24109. height: math.unit(1, "feet"),
  24110. name: "Maw",
  24111. image: {
  24112. source: "./media/characters/ofelia/maw.svg"
  24113. }
  24114. },
  24115. foot: {
  24116. height: math.unit(1.949, "feet"),
  24117. name: "Foot",
  24118. image: {
  24119. source: "./media/characters/ofelia/foot.svg"
  24120. }
  24121. },
  24122. },
  24123. [
  24124. {
  24125. name: "Canon Height",
  24126. height: math.unit(2000, "miles"),
  24127. default: true
  24128. },
  24129. ]
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24133. {
  24134. front: {
  24135. height: math.unit(6, "feet"),
  24136. weight: math.unit(150, "lb"),
  24137. name: "Front",
  24138. image: {
  24139. source: "./media/characters/samuel/front.svg",
  24140. extra: 265 / 258,
  24141. bottom: 2 / 266.1566
  24142. }
  24143. },
  24144. },
  24145. [
  24146. {
  24147. name: "Macro",
  24148. height: math.unit(100, "feet"),
  24149. default: true
  24150. },
  24151. {
  24152. name: "Full Size",
  24153. height: math.unit(1000, "miles")
  24154. },
  24155. ]
  24156. ))
  24157. characterMakers.push(() => makeCharacter(
  24158. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24159. {
  24160. front: {
  24161. height: math.unit(6, "feet"),
  24162. weight: math.unit(300, "lb"),
  24163. name: "Front",
  24164. image: {
  24165. source: "./media/characters/beishir-kiel/front.svg",
  24166. extra: 569 / 547,
  24167. bottom: 41.9 / 609
  24168. }
  24169. },
  24170. maw: {
  24171. height: math.unit(6 * 0.202, "feet"),
  24172. name: "Maw",
  24173. image: {
  24174. source: "./media/characters/beishir-kiel/maw.svg"
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(300, "feet"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(5 + 7/12, "feet"),
  24191. weight: math.unit(120, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/logan-grey/front.svg",
  24195. extra: 1836/1738,
  24196. bottom: 108/1944
  24197. }
  24198. },
  24199. back: {
  24200. height: math.unit(5 + 7/12, "feet"),
  24201. weight: math.unit(120, "lb"),
  24202. name: "Back",
  24203. image: {
  24204. source: "./media/characters/logan-grey/back.svg",
  24205. extra: 1880/1794,
  24206. bottom: 24/1904
  24207. }
  24208. },
  24209. frontSfw: {
  24210. height: math.unit(5 + 7/12, "feet"),
  24211. weight: math.unit(120, "lb"),
  24212. name: "Front (SFW)",
  24213. image: {
  24214. source: "./media/characters/logan-grey/front-sfw.svg",
  24215. extra: 1836/1738,
  24216. bottom: 108/1944
  24217. }
  24218. },
  24219. backSfw: {
  24220. height: math.unit(5 + 7/12, "feet"),
  24221. weight: math.unit(120, "lb"),
  24222. name: "Back (SFW)",
  24223. image: {
  24224. source: "./media/characters/logan-grey/back-sfw.svg",
  24225. extra: 1880/1794,
  24226. bottom: 24/1904
  24227. }
  24228. },
  24229. hands: {
  24230. height: math.unit(0.84, "feet"),
  24231. name: "Hands",
  24232. image: {
  24233. source: "./media/characters/logan-grey/hands.svg"
  24234. }
  24235. },
  24236. paws: {
  24237. height: math.unit(0.72, "feet"),
  24238. name: "Paws",
  24239. image: {
  24240. source: "./media/characters/logan-grey/paws.svg"
  24241. }
  24242. },
  24243. cock: {
  24244. height: math.unit(1.45, "feet"),
  24245. name: "Cock",
  24246. image: {
  24247. source: "./media/characters/logan-grey/cock.svg"
  24248. }
  24249. },
  24250. cockAlt: {
  24251. height: math.unit(1.437, "feet"),
  24252. name: "Cock (alt)",
  24253. image: {
  24254. source: "./media/characters/logan-grey/cock-alt.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5 + 8 / 12, "feet")
  24262. },
  24263. {
  24264. name: "The 500 Foot Femboy",
  24265. height: math.unit(500, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Megmacro",
  24270. height: math.unit(20, "miles")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(8 + 2 / 12, "feet"),
  24279. weight: math.unit(275, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/draganta/front.svg",
  24283. extra: 1177 / 1135,
  24284. bottom: 33.46 / 1212.1
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(8 + 6 / 12, "feet"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(150, "feet")
  24297. },
  24298. {
  24299. name: "Megamacro",
  24300. height: math.unit(1000, "miles")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(1.72, "m"),
  24309. weight: math.unit(80, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/voski/front.svg",
  24313. extra: 2076.22 / 2022.4,
  24314. bottom: 102.7 / 2177.3866
  24315. }
  24316. },
  24317. frontFlaccid: {
  24318. height: math.unit(1.72, "m"),
  24319. weight: math.unit(80, "lb"),
  24320. name: "Front (Flaccid)",
  24321. image: {
  24322. source: "./media/characters/voski/front-flaccid.svg",
  24323. extra: 2076.22 / 2022.4,
  24324. bottom: 102.7 / 2177.3866
  24325. }
  24326. },
  24327. frontErect: {
  24328. height: math.unit(1.72, "m"),
  24329. weight: math.unit(80, "lb"),
  24330. name: "Front (Erect)",
  24331. image: {
  24332. source: "./media/characters/voski/front-erect.svg",
  24333. extra: 2076.22 / 2022.4,
  24334. bottom: 102.7 / 2177.3866
  24335. }
  24336. },
  24337. back: {
  24338. height: math.unit(1.72, "m"),
  24339. weight: math.unit(80, "lb"),
  24340. name: "Back",
  24341. image: {
  24342. source: "./media/characters/voski/back.svg",
  24343. extra: 2104 / 2051,
  24344. bottom: 10.45 / 2113.63
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(1.72, "m")
  24352. },
  24353. {
  24354. name: "Macro",
  24355. height: math.unit(55, "m"),
  24356. default: true
  24357. },
  24358. {
  24359. name: "Macro+",
  24360. height: math.unit(300, "m")
  24361. },
  24362. {
  24363. name: "Macro++",
  24364. height: math.unit(700, "m")
  24365. },
  24366. {
  24367. name: "Macro+++",
  24368. height: math.unit(4500, "m")
  24369. },
  24370. {
  24371. name: "Macro++++",
  24372. height: math.unit(45, "km")
  24373. },
  24374. {
  24375. name: "Macro+++++",
  24376. height: math.unit(1220, "km")
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24382. {
  24383. front: {
  24384. height: math.unit(2.3, "m"),
  24385. weight: math.unit(304, "kg"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/icowom-lee/front.svg",
  24389. extra: 985 / 955,
  24390. bottom: 25.4 / 1012
  24391. }
  24392. },
  24393. fronttentacles: {
  24394. height: math.unit(2.3, "m"),
  24395. weight: math.unit(304, "kg"),
  24396. name: "Front-tentacles",
  24397. image: {
  24398. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24399. extra: 985 / 955,
  24400. bottom: 25.4 / 1012
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(2.3, "m"),
  24405. weight: math.unit(304, "kg"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/icowom-lee/back.svg",
  24409. extra: 975 / 954,
  24410. bottom: 9.5 / 985
  24411. }
  24412. },
  24413. backtentacles: {
  24414. height: math.unit(2.3, "m"),
  24415. weight: math.unit(304, "kg"),
  24416. name: "Back-tentacles",
  24417. image: {
  24418. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24419. extra: 975 / 954,
  24420. bottom: 9.5 / 985
  24421. }
  24422. },
  24423. frontDressed: {
  24424. height: math.unit(2.3, "m"),
  24425. weight: math.unit(304, "kg"),
  24426. name: "Front (Dressed)",
  24427. image: {
  24428. source: "./media/characters/icowom-lee/front-dressed.svg",
  24429. extra: 3076 / 2933,
  24430. bottom: 51.4 / 3125.1889
  24431. }
  24432. },
  24433. rump: {
  24434. height: math.unit(0.776, "meters"),
  24435. name: "Rump",
  24436. image: {
  24437. source: "./media/characters/icowom-lee/rump.svg"
  24438. }
  24439. },
  24440. genitals: {
  24441. height: math.unit(0.78, "meters"),
  24442. name: "Genitals",
  24443. image: {
  24444. source: "./media/characters/icowom-lee/genitals.svg"
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(2.3, "meters"),
  24452. default: true
  24453. },
  24454. {
  24455. name: "Macro",
  24456. height: math.unit(94, "meters"),
  24457. default: true
  24458. },
  24459. ]
  24460. ))
  24461. characterMakers.push(() => makeCharacter(
  24462. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24463. {
  24464. front: {
  24465. height: math.unit(22, "meters"),
  24466. weight: math.unit(21000, "kg"),
  24467. name: "Front",
  24468. image: {
  24469. source: "./media/characters/shock-diamond/front.svg",
  24470. extra: 2204 / 2053,
  24471. bottom: 65 / 2239.47
  24472. }
  24473. },
  24474. frontNude: {
  24475. height: math.unit(22, "meters"),
  24476. weight: math.unit(21000, "kg"),
  24477. name: "Front (Nude)",
  24478. image: {
  24479. source: "./media/characters/shock-diamond/front-nude.svg",
  24480. extra: 2514 / 2285,
  24481. bottom: 13 / 2527.56
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(3, "meters")
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(22, "meters"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(5 + 4/12, "feet"),
  24502. weight: math.unit(125, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/rory/front.svg",
  24506. extra: 1790/1681,
  24507. bottom: 66/1856
  24508. }
  24509. },
  24510. back: {
  24511. height: math.unit(5 + 4/12, "feet"),
  24512. weight: math.unit(125, "lb"),
  24513. name: "Back",
  24514. image: {
  24515. source: "./media/characters/rory/back.svg",
  24516. extra: 1805/1690,
  24517. bottom: 56/1861
  24518. }
  24519. },
  24520. frontDressed: {
  24521. height: math.unit(5 + 4/12, "feet"),
  24522. weight: math.unit(125, "lb"),
  24523. name: "Front (Dressed)",
  24524. image: {
  24525. source: "./media/characters/rory/front-dressed.svg",
  24526. extra: 1790/1681,
  24527. bottom: 66/1856
  24528. }
  24529. },
  24530. backDressed: {
  24531. height: math.unit(5 + 4/12, "feet"),
  24532. weight: math.unit(125, "lb"),
  24533. name: "Back (Dressed)",
  24534. image: {
  24535. source: "./media/characters/rory/back-dressed.svg",
  24536. extra: 1805/1690,
  24537. bottom: 56/1861
  24538. }
  24539. },
  24540. frontNsfw: {
  24541. height: math.unit(5 + 4/12, "feet"),
  24542. weight: math.unit(125, "lb"),
  24543. name: "Front (NSFW)",
  24544. image: {
  24545. source: "./media/characters/rory/front-nsfw.svg",
  24546. extra: 1790/1681,
  24547. bottom: 66/1856
  24548. }
  24549. },
  24550. backNsfw: {
  24551. height: math.unit(5 + 4/12, "feet"),
  24552. weight: math.unit(125, "lb"),
  24553. name: "Back (NSFW)",
  24554. image: {
  24555. source: "./media/characters/rory/back-nsfw.svg",
  24556. extra: 1805/1690,
  24557. bottom: 56/1861
  24558. }
  24559. },
  24560. dick: {
  24561. height: math.unit(0.8, "feet"),
  24562. name: "Dick",
  24563. image: {
  24564. source: "./media/characters/rory/dick.svg"
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Micro",
  24571. height: math.unit(3, "inches")
  24572. },
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(5 + 4/12, "feet"),
  24576. default: true
  24577. },
  24578. {
  24579. name: "Macro",
  24580. height: math.unit(90, "feet")
  24581. },
  24582. {
  24583. name: "Supercharged",
  24584. height: math.unit(270, "feet")
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(5 + 9 / 12, "feet"),
  24593. weight: math.unit(190, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/sprisk/front.svg",
  24597. extra: 1225 / 1180,
  24598. bottom: 42.7 / 1266.4
  24599. }
  24600. },
  24601. frontNsfw: {
  24602. height: math.unit(5 + 9 / 12, "feet"),
  24603. weight: math.unit(190, "lb"),
  24604. name: "Front (NSFW)",
  24605. image: {
  24606. source: "./media/characters/sprisk/front-nsfw.svg",
  24607. extra: 1225 / 1180,
  24608. bottom: 42.7 / 1266.4
  24609. }
  24610. },
  24611. back: {
  24612. height: math.unit(5 + 9 / 12, "feet"),
  24613. weight: math.unit(190, "lb"),
  24614. name: "Back",
  24615. image: {
  24616. source: "./media/characters/sprisk/back.svg",
  24617. extra: 1247 / 1200,
  24618. bottom: 5.6 / 1253.04
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Tiny",
  24625. height: math.unit(2, "inches")
  24626. },
  24627. {
  24628. name: "Normal",
  24629. height: math.unit(5 + 9 / 12, "feet"),
  24630. default: true
  24631. },
  24632. {
  24633. name: "Mini Macro",
  24634. height: math.unit(18, "feet")
  24635. },
  24636. {
  24637. name: "Macro",
  24638. height: math.unit(100, "feet")
  24639. },
  24640. {
  24641. name: "MACRO",
  24642. height: math.unit(50, "miles")
  24643. },
  24644. {
  24645. name: "M A C R O",
  24646. height: math.unit(300, "miles")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24652. {
  24653. side: {
  24654. height: math.unit(15.6, "meters"),
  24655. weight: math.unit(700000, "kg"),
  24656. name: "Side",
  24657. image: {
  24658. source: "./media/characters/bunsen/side.svg",
  24659. extra: 1644 / 358
  24660. }
  24661. },
  24662. foot: {
  24663. height: math.unit(1.611 * 1644 / 358, "meter"),
  24664. name: "Foot",
  24665. image: {
  24666. source: "./media/characters/bunsen/foot.svg"
  24667. }
  24668. },
  24669. },
  24670. [
  24671. {
  24672. name: "Small",
  24673. height: math.unit(10, "feet")
  24674. },
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(15.6, "meters"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(4 + 11 / 12, "feet"),
  24687. weight: math.unit(140, "lb"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/sesh/front.svg",
  24691. extra: 3420 / 3231,
  24692. bottom: 72 / 3949.5
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(4 + 11 / 12, "feet")
  24700. },
  24701. {
  24702. name: "Grown",
  24703. height: math.unit(15, "feet"),
  24704. default: true
  24705. },
  24706. {
  24707. name: "Macro",
  24708. height: math.unit(1500, "feet")
  24709. },
  24710. {
  24711. name: "Megamacro",
  24712. height: math.unit(30, "miles")
  24713. },
  24714. {
  24715. name: "Continental",
  24716. height: math.unit(3000, "miles")
  24717. },
  24718. {
  24719. name: "Gravity Mass",
  24720. height: math.unit(300000, "miles")
  24721. },
  24722. {
  24723. name: "Planet Buster",
  24724. height: math.unit(30000000, "miles")
  24725. },
  24726. {
  24727. name: "Big",
  24728. height: math.unit(3000000000, "miles")
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(9, "feet"),
  24737. weight: math.unit(350, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/pepper/front.svg",
  24741. extra: 1448 / 1312,
  24742. bottom: 9.4 / 1457.88
  24743. }
  24744. },
  24745. back: {
  24746. height: math.unit(9, "feet"),
  24747. weight: math.unit(350, "lb"),
  24748. name: "Back",
  24749. image: {
  24750. source: "./media/characters/pepper/back.svg",
  24751. extra: 1423 / 1300,
  24752. bottom: 4.6 / 1429
  24753. }
  24754. },
  24755. maw: {
  24756. height: math.unit(0.932, "feet"),
  24757. name: "Maw",
  24758. image: {
  24759. source: "./media/characters/pepper/maw.svg"
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(9, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24773. {
  24774. front: {
  24775. height: math.unit(6, "feet"),
  24776. weight: math.unit(150, "lb"),
  24777. name: "Front",
  24778. image: {
  24779. source: "./media/characters/maelstrom/front.svg",
  24780. extra: 2100 / 1883,
  24781. bottom: 94 / 2196.7
  24782. }
  24783. },
  24784. },
  24785. [
  24786. {
  24787. name: "Less Kaiju",
  24788. height: math.unit(200, "feet")
  24789. },
  24790. {
  24791. name: "Kaiju",
  24792. height: math.unit(400, "feet"),
  24793. default: true
  24794. },
  24795. {
  24796. name: "Kaiju-er",
  24797. height: math.unit(600, "feet")
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(6 + 5 / 12, "feet"),
  24806. weight: math.unit(180, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/lexir/front.svg",
  24810. extra: 180 / 172,
  24811. bottom: 12 / 192
  24812. }
  24813. },
  24814. back: {
  24815. height: math.unit(6 + 5 / 12, "feet"),
  24816. weight: math.unit(180, "lb"),
  24817. name: "Back",
  24818. image: {
  24819. source: "./media/characters/lexir/back.svg",
  24820. extra: 1273/1201,
  24821. bottom: 39/1312
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Very Smal",
  24828. height: math.unit(1, "nm")
  24829. },
  24830. {
  24831. name: "Normal",
  24832. height: math.unit(6 + 5 / 12, "feet"),
  24833. default: true
  24834. },
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(1, "mile")
  24838. },
  24839. {
  24840. name: "Megamacro",
  24841. height: math.unit(50, "miles")
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(1.5, "meters"),
  24850. weight: math.unit(100, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/maksio/front.svg",
  24854. extra: 1549 / 1531,
  24855. bottom: 123.7 / 1674.5429
  24856. }
  24857. },
  24858. back: {
  24859. height: math.unit(1.5, "meters"),
  24860. weight: math.unit(100, "lb"),
  24861. name: "Back",
  24862. image: {
  24863. source: "./media/characters/maksio/back.svg",
  24864. extra: 1541 / 1509,
  24865. bottom: 97 / 1639
  24866. }
  24867. },
  24868. hand: {
  24869. height: math.unit(0.621, "feet"),
  24870. name: "Hand",
  24871. image: {
  24872. source: "./media/characters/maksio/hand.svg"
  24873. }
  24874. },
  24875. foot: {
  24876. height: math.unit(1.611, "feet"),
  24877. name: "Foot",
  24878. image: {
  24879. source: "./media/characters/maksio/foot.svg"
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Shrunken",
  24886. height: math.unit(10, "cm")
  24887. },
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(150, "cm"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(100, "feet"),
  24900. name: "Front",
  24901. image: {
  24902. source: "./media/characters/erza-bear/front.svg",
  24903. extra: 2449 / 2390,
  24904. bottom: 46 / 2494
  24905. }
  24906. },
  24907. back: {
  24908. height: math.unit(100, "feet"),
  24909. name: "Back",
  24910. image: {
  24911. source: "./media/characters/erza-bear/back.svg",
  24912. extra: 2489 / 2430,
  24913. bottom: 85.4 / 2480
  24914. }
  24915. },
  24916. tail: {
  24917. height: math.unit(42, "feet"),
  24918. name: "Tail",
  24919. image: {
  24920. source: "./media/characters/erza-bear/tail.svg"
  24921. }
  24922. },
  24923. tongue: {
  24924. height: math.unit(8, "feet"),
  24925. name: "Tongue",
  24926. image: {
  24927. source: "./media/characters/erza-bear/tongue.svg"
  24928. }
  24929. },
  24930. dick: {
  24931. height: math.unit(10.5, "feet"),
  24932. name: "Dick",
  24933. image: {
  24934. source: "./media/characters/erza-bear/dick.svg"
  24935. }
  24936. },
  24937. dickVertical: {
  24938. height: math.unit(16.9, "feet"),
  24939. name: "Dick (Vertical)",
  24940. image: {
  24941. source: "./media/characters/erza-bear/dick-vertical.svg"
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(100, "feet"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24955. {
  24956. front: {
  24957. height: math.unit(172, "cm"),
  24958. weight: math.unit(73, "kg"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/violet-flor/front.svg",
  24962. extra: 1530 / 1442,
  24963. bottom: 61.9 / 1588.8
  24964. }
  24965. },
  24966. back: {
  24967. height: math.unit(180, "cm"),
  24968. weight: math.unit(73, "kg"),
  24969. name: "Back",
  24970. image: {
  24971. source: "./media/characters/violet-flor/back.svg",
  24972. extra: 1692 / 1630,
  24973. bottom: 20 / 1712
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(172, "cm"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(6, "feet"),
  24990. weight: math.unit(220, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/lynn-rhea/front.svg",
  24994. extra: 310 / 273
  24995. }
  24996. },
  24997. back: {
  24998. height: math.unit(6, "feet"),
  24999. weight: math.unit(220, "lb"),
  25000. name: "Back",
  25001. image: {
  25002. source: "./media/characters/lynn-rhea/back.svg",
  25003. extra: 310 / 273
  25004. }
  25005. },
  25006. dicks: {
  25007. height: math.unit(0.9, "feet"),
  25008. name: "Dicks",
  25009. image: {
  25010. source: "./media/characters/lynn-rhea/dicks.svg"
  25011. }
  25012. },
  25013. slit: {
  25014. height: math.unit(0.4, "feet"),
  25015. name: "Slit",
  25016. image: {
  25017. source: "./media/characters/lynn-rhea/slit.svg"
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Micro",
  25024. height: math.unit(1, "inch")
  25025. },
  25026. {
  25027. name: "Macro",
  25028. height: math.unit(60, "feet"),
  25029. default: true
  25030. },
  25031. {
  25032. name: "Megamacro",
  25033. height: math.unit(2, "miles")
  25034. },
  25035. {
  25036. name: "Gigamacro",
  25037. height: math.unit(3, "earths")
  25038. },
  25039. {
  25040. name: "Galactic",
  25041. height: math.unit(0.8, "galaxies")
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25047. {
  25048. front: {
  25049. height: math.unit(1600, "feet"),
  25050. weight: math.unit(85758785169, "kg"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/valathos/front.svg",
  25054. extra: 1451 / 1339
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Macro",
  25061. height: math.unit(1600, "feet"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(7 + 5 / 12, "feet"),
  25071. weight: math.unit(300, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/azula/front.svg",
  25075. extra: 3208 / 2880,
  25076. bottom: 80.2 / 3277
  25077. }
  25078. },
  25079. back: {
  25080. height: math.unit(7 + 5 / 12, "feet"),
  25081. weight: math.unit(300, "lb"),
  25082. name: "Back",
  25083. image: {
  25084. source: "./media/characters/azula/back.svg",
  25085. extra: 3169 / 2822,
  25086. bottom: 150.6 / 3321
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(7 + 5 / 12, "feet"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Big",
  25098. height: math.unit(20, "feet")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(5 + 1 / 12, "feet"),
  25107. weight: math.unit(110, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/rupert/front.svg",
  25111. extra: 1549 / 1495,
  25112. bottom: 54.2 / 1604.4
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(5 + 1 / 12, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25126. {
  25127. front: {
  25128. height: math.unit(8 + 4 / 12, "feet"),
  25129. weight: math.unit(350, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/sheera-castellar/front.svg",
  25133. extra: 1957 / 1894,
  25134. bottom: 26.97 / 1975.017
  25135. }
  25136. },
  25137. side: {
  25138. height: math.unit(8 + 4 / 12, "feet"),
  25139. weight: math.unit(350, "lb"),
  25140. name: "Side",
  25141. image: {
  25142. source: "./media/characters/sheera-castellar/side.svg",
  25143. extra: 1957 / 1894
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(8 + 4 / 12, "feet"),
  25148. weight: math.unit(350, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/sheera-castellar/back.svg",
  25152. extra: 1957 / 1894
  25153. }
  25154. },
  25155. angled: {
  25156. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25157. weight: math.unit(350, "lb"),
  25158. name: "Angled",
  25159. image: {
  25160. source: "./media/characters/sheera-castellar/angled.svg",
  25161. extra: 1807 / 1707,
  25162. bottom: 68 / 1875
  25163. }
  25164. },
  25165. genitals: {
  25166. height: math.unit(2.2, "feet"),
  25167. name: "Genitals",
  25168. image: {
  25169. source: "./media/characters/sheera-castellar/genitals.svg"
  25170. }
  25171. },
  25172. taur: {
  25173. height: math.unit(10 + 6/12, "feet"),
  25174. name: "Taur",
  25175. image: {
  25176. source: "./media/characters/sheera-castellar/taur.svg",
  25177. extra: 2017/1909,
  25178. bottom: 185/2202
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(8 + 4 / 12, "feet")
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(150, "feet"),
  25190. default: true
  25191. },
  25192. {
  25193. name: "Macro+",
  25194. height: math.unit(800, "feet")
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(6, "feet"),
  25203. weight: math.unit(150, "lb"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/jaipur/front.svg",
  25207. extra: 3860 / 3731,
  25208. bottom: 287 / 4140
  25209. }
  25210. },
  25211. back: {
  25212. height: math.unit(6, "feet"),
  25213. weight: math.unit(150, "lb"),
  25214. name: "Back",
  25215. image: {
  25216. source: "./media/characters/jaipur/back.svg",
  25217. extra: 1637/1561,
  25218. bottom: 154/1791
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(1.85, "meters"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Macro",
  25230. height: math.unit(150, "meters")
  25231. },
  25232. {
  25233. name: "Macro+",
  25234. height: math.unit(0.5, "miles")
  25235. },
  25236. {
  25237. name: "Macro++",
  25238. height: math.unit(2.5, "miles")
  25239. },
  25240. {
  25241. name: "Macro+++",
  25242. height: math.unit(12, "miles")
  25243. },
  25244. {
  25245. name: "Macro++++",
  25246. height: math.unit(120, "miles")
  25247. },
  25248. {
  25249. name: "Macro+++++",
  25250. height: math.unit(1200, "miles")
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(6, "feet"),
  25259. weight: math.unit(150, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/sheila-wolf/front.svg",
  25263. extra: 1931 / 1808,
  25264. bottom: 29.5 / 1960
  25265. }
  25266. },
  25267. dick: {
  25268. height: math.unit(1.464, "feet"),
  25269. name: "Dick",
  25270. image: {
  25271. source: "./media/characters/sheila-wolf/dick.svg"
  25272. }
  25273. },
  25274. muzzle: {
  25275. height: math.unit(0.513, "feet"),
  25276. name: "Muzzle",
  25277. image: {
  25278. source: "./media/characters/sheila-wolf/muzzle.svg"
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(70, "feet"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(32, "meters"),
  25295. weight: math.unit(300000, "kg"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/almor/front.svg",
  25299. extra: 1408 / 1322,
  25300. bottom: 94.6 / 1506.5
  25301. }
  25302. },
  25303. },
  25304. [
  25305. {
  25306. name: "Macro",
  25307. height: math.unit(32, "meters"),
  25308. default: true
  25309. },
  25310. ]
  25311. ))
  25312. characterMakers.push(() => makeCharacter(
  25313. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25314. {
  25315. front: {
  25316. height: math.unit(7, "feet"),
  25317. weight: math.unit(200, "lb"),
  25318. name: "Front",
  25319. image: {
  25320. source: "./media/characters/silver/front.svg",
  25321. extra: 472.1 / 450.5,
  25322. bottom: 26.5 / 499.424
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(7, "feet"),
  25330. default: true
  25331. },
  25332. {
  25333. name: "Macro",
  25334. height: math.unit(800, "feet")
  25335. },
  25336. {
  25337. name: "Megamacro",
  25338. height: math.unit(250, "miles")
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(6, "feet"),
  25347. weight: math.unit(150, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/pliskin/front.svg",
  25351. extra: 1469 / 1359,
  25352. bottom: 70 / 1540
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Micro",
  25359. height: math.unit(3, "inches")
  25360. },
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(5 + 11 / 12, "feet"),
  25364. default: true
  25365. },
  25366. {
  25367. name: "Macro",
  25368. height: math.unit(120, "feet")
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(6, "feet"),
  25377. weight: math.unit(150, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/sammy/front.svg",
  25381. extra: 1193 / 1089,
  25382. bottom: 30.5 / 1226
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Macro",
  25389. height: math.unit(1700, "feet"),
  25390. default: true
  25391. },
  25392. {
  25393. name: "Examacro",
  25394. height: math.unit(2.5e9, "lightyears")
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(21, "meters"),
  25403. weight: math.unit(12, "tonnes"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/kuru/front.svg",
  25407. extra: 4301 / 3785,
  25408. bottom: 371.3 / 4691
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Macro",
  25415. height: math.unit(21, "meters"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(23, "meters"),
  25425. weight: math.unit(12.2, "tonnes"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/rakka/front.svg",
  25429. extra: 4670 / 4169,
  25430. bottom: 301 / 4968.7
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Macro",
  25437. height: math.unit(23, "meters"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(6, "feet"),
  25447. weight: math.unit(150, "lb"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/rhys-feline/front.svg",
  25451. extra: 2488 / 2308,
  25452. bottom: 35.67 / 2519.19
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Really Small",
  25459. height: math.unit(1, "nm")
  25460. },
  25461. {
  25462. name: "Micro",
  25463. height: math.unit(4, "inches")
  25464. },
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(4 + 10 / 12, "feet"),
  25468. default: true
  25469. },
  25470. {
  25471. name: "Macro",
  25472. height: math.unit(100, "feet")
  25473. },
  25474. {
  25475. name: "Megamacto",
  25476. height: math.unit(50, "miles")
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25482. {
  25483. side: {
  25484. height: math.unit(30, "feet"),
  25485. weight: math.unit(35000, "kg"),
  25486. name: "Side",
  25487. image: {
  25488. source: "./media/characters/alydar/side.svg",
  25489. extra: 234 / 222,
  25490. bottom: 6.5 / 241
  25491. }
  25492. },
  25493. front: {
  25494. height: math.unit(30, "feet"),
  25495. weight: math.unit(35000, "kg"),
  25496. name: "Front",
  25497. image: {
  25498. source: "./media/characters/alydar/front.svg",
  25499. extra: 223.37 / 210.2,
  25500. bottom: 22.3 / 246.76
  25501. }
  25502. },
  25503. top: {
  25504. height: math.unit(64.54, "feet"),
  25505. weight: math.unit(35000, "kg"),
  25506. name: "Top",
  25507. image: {
  25508. source: "./media/characters/alydar/top.svg"
  25509. }
  25510. },
  25511. anthro: {
  25512. height: math.unit(30, "feet"),
  25513. weight: math.unit(9000, "kg"),
  25514. name: "Anthro",
  25515. image: {
  25516. source: "./media/characters/alydar/anthro.svg",
  25517. extra: 432 / 421,
  25518. bottom: 7.18 / 440
  25519. }
  25520. },
  25521. maw: {
  25522. height: math.unit(11.693, "feet"),
  25523. name: "Maw",
  25524. image: {
  25525. source: "./media/characters/alydar/maw.svg"
  25526. }
  25527. },
  25528. head: {
  25529. height: math.unit(11.693, "feet"),
  25530. name: "Head",
  25531. image: {
  25532. source: "./media/characters/alydar/head.svg"
  25533. }
  25534. },
  25535. headAlt: {
  25536. height: math.unit(12.861, "feet"),
  25537. name: "Head (Alt)",
  25538. image: {
  25539. source: "./media/characters/alydar/head-alt.svg"
  25540. }
  25541. },
  25542. wing: {
  25543. height: math.unit(20.712, "feet"),
  25544. name: "Wing",
  25545. image: {
  25546. source: "./media/characters/alydar/wing.svg"
  25547. }
  25548. },
  25549. wingFeather: {
  25550. height: math.unit(9.662, "feet"),
  25551. name: "Wing Feather",
  25552. image: {
  25553. source: "./media/characters/alydar/wing-feather.svg"
  25554. }
  25555. },
  25556. countourFeather: {
  25557. height: math.unit(4.154, "feet"),
  25558. name: "Contour Feather",
  25559. image: {
  25560. source: "./media/characters/alydar/contour-feather.svg"
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Diplomatic",
  25567. height: math.unit(13, "feet"),
  25568. default: true
  25569. },
  25570. {
  25571. name: "Small",
  25572. height: math.unit(30, "feet")
  25573. },
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(95, "feet"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Large",
  25581. height: math.unit(285, "feet")
  25582. },
  25583. {
  25584. name: "Incomprehensible",
  25585. height: math.unit(450, "megameters")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25591. {
  25592. side: {
  25593. height: math.unit(11, "feet"),
  25594. weight: math.unit(1750, "kg"),
  25595. name: "Side",
  25596. image: {
  25597. source: "./media/characters/selicia/side.svg",
  25598. extra: 440 / 396,
  25599. bottom: 24.8 / 465.979
  25600. }
  25601. },
  25602. maw: {
  25603. height: math.unit(4.665, "feet"),
  25604. name: "Maw",
  25605. image: {
  25606. source: "./media/characters/selicia/maw.svg"
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(11, "feet"),
  25614. default: true
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25620. {
  25621. side: {
  25622. height: math.unit(2 + 6 / 12, "feet"),
  25623. weight: math.unit(30, "lb"),
  25624. name: "Side",
  25625. image: {
  25626. source: "./media/characters/layla/side.svg",
  25627. extra: 244 / 188,
  25628. bottom: 18.2 / 262.1
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(2 + 6 / 12, "feet"),
  25633. weight: math.unit(30, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/layla/back.svg",
  25637. extra: 308 / 241.5,
  25638. bottom: 8.9 / 316.8
  25639. }
  25640. },
  25641. cumming: {
  25642. height: math.unit(2 + 6 / 12, "feet"),
  25643. weight: math.unit(30, "lb"),
  25644. name: "Cumming",
  25645. image: {
  25646. source: "./media/characters/layla/cumming.svg",
  25647. extra: 342 / 279,
  25648. bottom: 595 / 938
  25649. }
  25650. },
  25651. dickFlaccid: {
  25652. height: math.unit(2.595, "feet"),
  25653. name: "Flaccid Genitals",
  25654. image: {
  25655. source: "./media/characters/layla/dick-flaccid.svg"
  25656. }
  25657. },
  25658. dickErect: {
  25659. height: math.unit(2.359, "feet"),
  25660. name: "Erect Genitals",
  25661. image: {
  25662. source: "./media/characters/layla/dick-erect.svg"
  25663. }
  25664. },
  25665. dragon: {
  25666. height: math.unit(40, "feet"),
  25667. name: "Dragon",
  25668. image: {
  25669. source: "./media/characters/layla/dragon.svg",
  25670. extra: 610/535,
  25671. bottom: 367/977
  25672. }
  25673. },
  25674. taur: {
  25675. height: math.unit(30, "feet"),
  25676. name: "Taur",
  25677. image: {
  25678. source: "./media/characters/layla/taur.svg",
  25679. extra: 1268/1199,
  25680. bottom: 112/1380
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Micro",
  25687. height: math.unit(1, "inch")
  25688. },
  25689. {
  25690. name: "Small",
  25691. height: math.unit(1, "foot")
  25692. },
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(2 + 6 / 12, "feet"),
  25696. default: true
  25697. },
  25698. {
  25699. name: "Macro",
  25700. height: math.unit(200, "feet")
  25701. },
  25702. {
  25703. name: "Megamacro",
  25704. height: math.unit(1000, "miles")
  25705. },
  25706. {
  25707. name: "Planetary",
  25708. height: math.unit(8000, "miles")
  25709. },
  25710. {
  25711. name: "True Layla",
  25712. height: math.unit(200000 * 7, "multiverses")
  25713. },
  25714. ]
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25718. {
  25719. back: {
  25720. height: math.unit(10.5, "feet"),
  25721. weight: math.unit(800, "lb"),
  25722. name: "Back",
  25723. image: {
  25724. source: "./media/characters/knox/back.svg",
  25725. extra: 1486 / 1089,
  25726. bottom: 107 / 1601.4
  25727. }
  25728. },
  25729. side: {
  25730. height: math.unit(10.5, "feet"),
  25731. weight: math.unit(800, "lb"),
  25732. name: "Side",
  25733. image: {
  25734. source: "./media/characters/knox/side.svg",
  25735. extra: 244 / 218,
  25736. bottom: 14 / 260
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Compact",
  25743. height: math.unit(10.5, "feet"),
  25744. default: true
  25745. },
  25746. {
  25747. name: "Dynamax",
  25748. height: math.unit(210, "feet")
  25749. },
  25750. {
  25751. name: "Full Macro",
  25752. height: math.unit(850, "feet")
  25753. },
  25754. ]
  25755. ))
  25756. characterMakers.push(() => makeCharacter(
  25757. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25758. {
  25759. front: {
  25760. height: math.unit(28, "feet"),
  25761. weight: math.unit(10500, "lb"),
  25762. name: "Front",
  25763. image: {
  25764. source: "./media/characters/kayda/front.svg",
  25765. extra: 1536 / 1428,
  25766. bottom: 68.7 / 1603
  25767. }
  25768. },
  25769. back: {
  25770. height: math.unit(28, "feet"),
  25771. weight: math.unit(10500, "lb"),
  25772. name: "Back",
  25773. image: {
  25774. source: "./media/characters/kayda/back.svg",
  25775. extra: 1557 / 1464,
  25776. bottom: 39.5 / 1597.49
  25777. }
  25778. },
  25779. dick: {
  25780. height: math.unit(3.858, "feet"),
  25781. name: "Dick",
  25782. image: {
  25783. source: "./media/characters/kayda/dick.svg"
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Macro",
  25790. height: math.unit(28, "feet"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(10 + 11 / 12, "feet"),
  25800. weight: math.unit(1400, "lb"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/brian/front.svg",
  25804. extra: 737 / 692,
  25805. bottom: 55.4 / 785
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(10 + 11 / 12, "feet"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(5 + 8 / 12, "feet"),
  25822. weight: math.unit(140, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/khemri/front.svg",
  25826. extra: 4780 / 4059,
  25827. bottom: 80.1 / 4859.25
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Micro",
  25834. height: math.unit(6, "inches")
  25835. },
  25836. {
  25837. name: "Normal",
  25838. height: math.unit(5 + 8 / 12, "feet"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25845. {
  25846. front: {
  25847. height: math.unit(13, "feet"),
  25848. weight: math.unit(1700, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/felix-braveheart/front.svg",
  25852. extra: 1222 / 1157,
  25853. bottom: 53.2 / 1280
  25854. }
  25855. },
  25856. back: {
  25857. height: math.unit(13, "feet"),
  25858. weight: math.unit(1700, "lb"),
  25859. name: "Back",
  25860. image: {
  25861. source: "./media/characters/felix-braveheart/back.svg",
  25862. extra: 1277 / 1203,
  25863. bottom: 50.2 / 1327
  25864. }
  25865. },
  25866. feral: {
  25867. height: math.unit(6, "feet"),
  25868. weight: math.unit(400, "lb"),
  25869. name: "Feral",
  25870. image: {
  25871. source: "./media/characters/felix-braveheart/feral.svg",
  25872. extra: 682 / 625,
  25873. bottom: 6.9 / 688
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(13, "feet"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25887. {
  25888. side: {
  25889. height: math.unit(5 + 11 / 12, "feet"),
  25890. weight: math.unit(1400, "lb"),
  25891. name: "Side",
  25892. image: {
  25893. source: "./media/characters/shadow-blade/side.svg",
  25894. extra: 1726 / 1267,
  25895. bottom: 58.4 / 1785
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(5 + 11 / 12, "feet"),
  25903. default: true
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(1 + 6 / 12, "feet"),
  25912. weight: math.unit(25, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/karla-halldor/front.svg",
  25916. extra: 1459 / 1383,
  25917. bottom: 12 / 1472
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(1 + 6 / 12, "feet"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25931. {
  25932. front: {
  25933. height: math.unit(6 + 2 / 12, "feet"),
  25934. weight: math.unit(160, "lb"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/ariam/front.svg",
  25938. extra: 1073/976,
  25939. bottom: 52/1125
  25940. }
  25941. },
  25942. back: {
  25943. height: math.unit(6 + 2/12, "feet"),
  25944. weight: math.unit(160, "lb"),
  25945. name: "Back",
  25946. image: {
  25947. source: "./media/characters/ariam/back.svg",
  25948. extra: 1103/1023,
  25949. bottom: 9/1112
  25950. }
  25951. },
  25952. dressed: {
  25953. height: math.unit(6 + 2/12, "feet"),
  25954. weight: math.unit(160, "lb"),
  25955. name: "Dressed",
  25956. image: {
  25957. source: "./media/characters/ariam/dressed.svg",
  25958. extra: 1099/1009,
  25959. bottom: 25/1124
  25960. }
  25961. },
  25962. squatting: {
  25963. height: math.unit(4.1, "feet"),
  25964. weight: math.unit(160, "lb"),
  25965. name: "Squatting",
  25966. image: {
  25967. source: "./media/characters/ariam/squatting.svg",
  25968. extra: 2617 / 2112,
  25969. bottom: 61.2 / 2681,
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(6 + 2 / 12, "feet"),
  25977. default: true
  25978. },
  25979. {
  25980. name: "Normal+",
  25981. height: math.unit(4, "meters")
  25982. },
  25983. {
  25984. name: "Macro",
  25985. height: math.unit(50, "meters")
  25986. },
  25987. {
  25988. name: "Macro+",
  25989. height: math.unit(100, "meters")
  25990. },
  25991. {
  25992. name: "Megamacro",
  25993. height: math.unit(20, "km")
  25994. },
  25995. {
  25996. name: "Caretaker",
  25997. height: math.unit(444, "megameters")
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(1.67, "meters"),
  26006. weight: math.unit(140, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26010. extra: 438 / 410,
  26011. bottom: 0.75 / 439
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Shrunken",
  26018. height: math.unit(7.6, "cm")
  26019. },
  26020. {
  26021. name: "Human Scale",
  26022. height: math.unit(1.67, "meters")
  26023. },
  26024. {
  26025. name: "Wolxi Scale",
  26026. height: math.unit(36.7, "meters"),
  26027. default: true
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(1.73, "meters"),
  26036. weight: math.unit(240, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/izue-two-mothers/front.svg",
  26040. extra: 469 / 437,
  26041. bottom: 1.24 / 470.6
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Shrunken",
  26048. height: math.unit(7.86, "cm")
  26049. },
  26050. {
  26051. name: "Human Scale",
  26052. height: math.unit(1.73, "meters")
  26053. },
  26054. {
  26055. name: "Wolxi Scale",
  26056. height: math.unit(38, "meters"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26063. {
  26064. front: {
  26065. height: math.unit(1.55, "meters"),
  26066. weight: math.unit(120, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/teeku-love-shack/front.svg",
  26070. extra: 387 / 362,
  26071. bottom: 1.51 / 388
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Shrunken",
  26078. height: math.unit(7, "cm")
  26079. },
  26080. {
  26081. name: "Human Scale",
  26082. height: math.unit(1.55, "meters")
  26083. },
  26084. {
  26085. name: "Wolxi Scale",
  26086. height: math.unit(34.1, "meters"),
  26087. default: true
  26088. },
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(1.83, "meters"),
  26096. weight: math.unit(135, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/dejma-the-red/front.svg",
  26100. extra: 480 / 458,
  26101. bottom: 1.8 / 482
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Shrunken",
  26108. height: math.unit(8.3, "cm")
  26109. },
  26110. {
  26111. name: "Human Scale",
  26112. height: math.unit(1.83, "meters")
  26113. },
  26114. {
  26115. name: "Wolxi Scale",
  26116. height: math.unit(40, "meters"),
  26117. default: true
  26118. },
  26119. ]
  26120. ))
  26121. characterMakers.push(() => makeCharacter(
  26122. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26123. {
  26124. front: {
  26125. height: math.unit(1.78, "meters"),
  26126. weight: math.unit(65, "kg"),
  26127. name: "Front",
  26128. image: {
  26129. source: "./media/characters/aki/front.svg",
  26130. extra: 452 / 415
  26131. }
  26132. },
  26133. frontNsfw: {
  26134. height: math.unit(1.78, "meters"),
  26135. weight: math.unit(65, "kg"),
  26136. name: "Front (NSFW)",
  26137. image: {
  26138. source: "./media/characters/aki/front-nsfw.svg",
  26139. extra: 452 / 415
  26140. }
  26141. },
  26142. back: {
  26143. height: math.unit(1.78, "meters"),
  26144. weight: math.unit(65, "kg"),
  26145. name: "Back",
  26146. image: {
  26147. source: "./media/characters/aki/back.svg",
  26148. extra: 452 / 415
  26149. }
  26150. },
  26151. rump: {
  26152. height: math.unit(2.05, "feet"),
  26153. name: "Rump",
  26154. image: {
  26155. source: "./media/characters/aki/rump.svg"
  26156. }
  26157. },
  26158. dick: {
  26159. height: math.unit(0.95, "feet"),
  26160. name: "Dick",
  26161. image: {
  26162. source: "./media/characters/aki/dick.svg"
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Micro",
  26169. height: math.unit(15, "cm")
  26170. },
  26171. {
  26172. name: "Normal",
  26173. height: math.unit(178, "cm"),
  26174. default: true
  26175. },
  26176. {
  26177. name: "Macro",
  26178. height: math.unit(214, "m")
  26179. },
  26180. {
  26181. name: "Macro+",
  26182. height: math.unit(534, "m")
  26183. },
  26184. ]
  26185. ))
  26186. characterMakers.push(() => makeCharacter(
  26187. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26188. {
  26189. front: {
  26190. height: math.unit(5 + 5 / 12, "feet"),
  26191. weight: math.unit(120, "lb"),
  26192. name: "Front",
  26193. image: {
  26194. source: "./media/characters/ari/front.svg",
  26195. extra: 1550/1471,
  26196. bottom: 39/1589
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(5 + 5 / 12, "feet")
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(100, "feet"),
  26208. default: true
  26209. },
  26210. {
  26211. name: "Megamacro",
  26212. height: math.unit(100, "miles")
  26213. },
  26214. {
  26215. name: "Gigamacro",
  26216. height: math.unit(80000, "miles")
  26217. },
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26222. {
  26223. side: {
  26224. height: math.unit(9, "feet"),
  26225. weight: math.unit(400, "kg"),
  26226. name: "Side",
  26227. image: {
  26228. source: "./media/characters/bolt/side.svg",
  26229. extra: 1126 / 896,
  26230. bottom: 60 / 1187.3,
  26231. }
  26232. },
  26233. },
  26234. [
  26235. {
  26236. name: "Micro",
  26237. height: math.unit(5, "inches")
  26238. },
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(9, "feet"),
  26242. default: true
  26243. },
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(700, "feet")
  26247. },
  26248. {
  26249. name: "Max Size",
  26250. height: math.unit(1.52e22, "yottameters")
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26256. {
  26257. front: {
  26258. height: math.unit(4.3, "meters"),
  26259. weight: math.unit(3, "tons"),
  26260. name: "Front",
  26261. image: {
  26262. source: "./media/characters/draekon-sylviar/front.svg",
  26263. extra: 2072/1512,
  26264. bottom: 74/2146
  26265. }
  26266. },
  26267. back: {
  26268. height: math.unit(4.3, "meters"),
  26269. weight: math.unit(3, "tons"),
  26270. name: "Back",
  26271. image: {
  26272. source: "./media/characters/draekon-sylviar/back.svg",
  26273. extra: 1639/1483,
  26274. bottom: 41/1680
  26275. }
  26276. },
  26277. feral: {
  26278. height: math.unit(1.15, "meters"),
  26279. weight: math.unit(3, "tons"),
  26280. name: "Feral",
  26281. image: {
  26282. source: "./media/characters/draekon-sylviar/feral.svg",
  26283. extra: 1033/395,
  26284. bottom: 130/1163
  26285. }
  26286. },
  26287. maw: {
  26288. height: math.unit(1.3, "meters"),
  26289. name: "Maw",
  26290. image: {
  26291. source: "./media/characters/draekon-sylviar/maw.svg"
  26292. }
  26293. },
  26294. mawSeparated: {
  26295. height: math.unit(1.53, "meters"),
  26296. name: "Separated Maw",
  26297. image: {
  26298. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26299. }
  26300. },
  26301. tail: {
  26302. height: math.unit(1.15, "meters"),
  26303. name: "Tail",
  26304. image: {
  26305. source: "./media/characters/draekon-sylviar/tail.svg"
  26306. }
  26307. },
  26308. tailDick: {
  26309. height: math.unit(1.15, "meters"),
  26310. name: "Tail (Dick)",
  26311. image: {
  26312. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26313. }
  26314. },
  26315. tailDickSeparated: {
  26316. height: math.unit(1.19, "meters"),
  26317. name: "Tail (Separated Dick)",
  26318. image: {
  26319. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26320. }
  26321. },
  26322. slit: {
  26323. height: math.unit(1, "meters"),
  26324. name: "Slit",
  26325. image: {
  26326. source: "./media/characters/draekon-sylviar/slit.svg"
  26327. }
  26328. },
  26329. dick: {
  26330. height: math.unit(1.15, "meters"),
  26331. name: "Dick",
  26332. image: {
  26333. source: "./media/characters/draekon-sylviar/dick.svg"
  26334. }
  26335. },
  26336. dickSeparated: {
  26337. height: math.unit(1.1, "meters"),
  26338. name: "Separated Dick",
  26339. image: {
  26340. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26341. }
  26342. },
  26343. sheath: {
  26344. height: math.unit(1.15, "meters"),
  26345. name: "Sheath",
  26346. image: {
  26347. source: "./media/characters/draekon-sylviar/sheath.svg"
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Small",
  26354. height: math.unit(4.53 / 2, "meters"),
  26355. default: true
  26356. },
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(4.53, "meters"),
  26360. default: true
  26361. },
  26362. {
  26363. name: "Large",
  26364. height: math.unit(4.53 * 2, "meters"),
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(6 + 2 / 12, "feet"),
  26373. weight: math.unit(180, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/brawler/front.svg",
  26377. extra: 3301 / 3027,
  26378. bottom: 138 / 3439
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(6 + 2 / 12, "feet"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26392. {
  26393. front: {
  26394. height: math.unit(11, "feet"),
  26395. weight: math.unit(1000, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/alex/front.svg",
  26399. bottom: 44.5 / 620
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Micro",
  26406. height: math.unit(5, "inches")
  26407. },
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(11, "feet"),
  26411. default: true
  26412. },
  26413. {
  26414. name: "Macro",
  26415. height: math.unit(9.5e9, "feet")
  26416. },
  26417. {
  26418. name: "Max Size",
  26419. height: math.unit(1.4e283, "yottameters")
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26425. {
  26426. female: {
  26427. height: math.unit(29.9, "m"),
  26428. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26429. name: "Female",
  26430. image: {
  26431. source: "./media/characters/zenari/female.svg",
  26432. extra: 3281.6 / 3217,
  26433. bottom: 72.2 / 3353
  26434. }
  26435. },
  26436. male: {
  26437. height: math.unit(27.7, "m"),
  26438. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26439. name: "Male",
  26440. image: {
  26441. source: "./media/characters/zenari/male.svg",
  26442. extra: 3008 / 2991,
  26443. bottom: 54.6 / 3069
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Macro",
  26450. height: math.unit(29.7, "meters"),
  26451. default: true
  26452. },
  26453. ]
  26454. ))
  26455. characterMakers.push(() => makeCharacter(
  26456. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26457. {
  26458. female: {
  26459. height: math.unit(23.8, "m"),
  26460. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26461. name: "Female",
  26462. image: {
  26463. source: "./media/characters/mactarian/female.svg",
  26464. extra: 2662 / 2569,
  26465. bottom: 73 / 2736
  26466. }
  26467. },
  26468. male: {
  26469. height: math.unit(23.8, "m"),
  26470. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26471. name: "Male",
  26472. image: {
  26473. source: "./media/characters/mactarian/male.svg",
  26474. extra: 2673 / 2600,
  26475. bottom: 76 / 2750
  26476. }
  26477. },
  26478. },
  26479. [
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(23.8, "meters"),
  26483. default: true
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26489. {
  26490. female: {
  26491. height: math.unit(19.3, "m"),
  26492. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26493. name: "Female",
  26494. image: {
  26495. source: "./media/characters/umok/female.svg",
  26496. extra: 2186 / 2078,
  26497. bottom: 87 / 2277
  26498. }
  26499. },
  26500. male: {
  26501. height: math.unit(19.5, "m"),
  26502. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26503. name: "Male",
  26504. image: {
  26505. source: "./media/characters/umok/male.svg",
  26506. extra: 2233 / 2140,
  26507. bottom: 24.4 / 2258
  26508. }
  26509. },
  26510. },
  26511. [
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(19.3, "meters"),
  26515. default: true
  26516. },
  26517. ]
  26518. ))
  26519. characterMakers.push(() => makeCharacter(
  26520. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26521. {
  26522. female: {
  26523. height: math.unit(26.15, "m"),
  26524. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26525. name: "Female",
  26526. image: {
  26527. source: "./media/characters/joraxian/female.svg",
  26528. extra: 2912 / 2824,
  26529. bottom: 36 / 2956
  26530. }
  26531. },
  26532. male: {
  26533. height: math.unit(25.4, "m"),
  26534. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26535. name: "Male",
  26536. image: {
  26537. source: "./media/characters/joraxian/male.svg",
  26538. extra: 2877 / 2721,
  26539. bottom: 82 / 2967
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Macro",
  26546. height: math.unit(26.15, "meters"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26553. {
  26554. female: {
  26555. height: math.unit(21.6, "m"),
  26556. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26557. name: "Female",
  26558. image: {
  26559. source: "./media/characters/sthara/female.svg",
  26560. extra: 2516 / 2347,
  26561. bottom: 21.5 / 2537
  26562. }
  26563. },
  26564. male: {
  26565. height: math.unit(24, "m"),
  26566. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26567. name: "Male",
  26568. image: {
  26569. source: "./media/characters/sthara/male.svg",
  26570. extra: 2732 / 2607,
  26571. bottom: 23 / 2732
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Macro",
  26578. height: math.unit(21.6, "meters"),
  26579. default: true
  26580. },
  26581. ]
  26582. ))
  26583. characterMakers.push(() => makeCharacter(
  26584. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26585. {
  26586. front: {
  26587. height: math.unit(6 + 4 / 12, "feet"),
  26588. weight: math.unit(175, "lb"),
  26589. name: "Front",
  26590. image: {
  26591. source: "./media/characters/luka-bryzant/front.svg",
  26592. extra: 311 / 289,
  26593. bottom: 4 / 315
  26594. }
  26595. },
  26596. back: {
  26597. height: math.unit(6 + 4 / 12, "feet"),
  26598. weight: math.unit(175, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/luka-bryzant/back.svg",
  26602. extra: 311 / 289,
  26603. bottom: 3.8 / 313.7
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Micro",
  26610. height: math.unit(10, "inches")
  26611. },
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(6 + 4 / 12, "feet"),
  26615. default: true
  26616. },
  26617. {
  26618. name: "Large",
  26619. height: math.unit(12, "feet")
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(5 + 7 / 12, "feet"),
  26628. weight: math.unit(185, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/aman-aquila/front.svg",
  26632. extra: 1013 / 976,
  26633. bottom: 45.6 / 1057
  26634. }
  26635. },
  26636. side: {
  26637. height: math.unit(5 + 7 / 12, "feet"),
  26638. weight: math.unit(185, "lb"),
  26639. name: "Side",
  26640. image: {
  26641. source: "./media/characters/aman-aquila/side.svg",
  26642. extra: 1054 / 1011,
  26643. bottom: 15 / 1070
  26644. }
  26645. },
  26646. back: {
  26647. height: math.unit(5 + 7 / 12, "feet"),
  26648. weight: math.unit(185, "lb"),
  26649. name: "Back",
  26650. image: {
  26651. source: "./media/characters/aman-aquila/back.svg",
  26652. extra: 1026 / 970,
  26653. bottom: 12 / 1039
  26654. }
  26655. },
  26656. head: {
  26657. height: math.unit(1.211, "feet"),
  26658. name: "Head",
  26659. image: {
  26660. source: "./media/characters/aman-aquila/head.svg",
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Minimicro",
  26667. height: math.unit(0.057, "inches")
  26668. },
  26669. {
  26670. name: "Micro",
  26671. height: math.unit(7, "inches")
  26672. },
  26673. {
  26674. name: "Mini",
  26675. height: math.unit(3 + 7 / 12, "feet")
  26676. },
  26677. {
  26678. name: "Normal",
  26679. height: math.unit(5 + 7 / 12, "feet"),
  26680. default: true
  26681. },
  26682. {
  26683. name: "Macro",
  26684. height: math.unit(157 + 7 / 12, "feet")
  26685. },
  26686. {
  26687. name: "Megamacro",
  26688. height: math.unit(1557 + 7 / 12, "feet")
  26689. },
  26690. {
  26691. name: "Gigamacro",
  26692. height: math.unit(15557 + 7 / 12, "feet")
  26693. },
  26694. ]
  26695. ))
  26696. characterMakers.push(() => makeCharacter(
  26697. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26698. {
  26699. front: {
  26700. height: math.unit(3 + 2 / 12, "inches"),
  26701. weight: math.unit(0.3, "ounces"),
  26702. name: "Front",
  26703. image: {
  26704. source: "./media/characters/hiphae/front.svg",
  26705. extra: 1931 / 1683,
  26706. bottom: 24 / 1955
  26707. }
  26708. },
  26709. },
  26710. [
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(3 + 1 / 2, "inches"),
  26714. default: true
  26715. },
  26716. ]
  26717. ))
  26718. characterMakers.push(() => makeCharacter(
  26719. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26720. {
  26721. front: {
  26722. height: math.unit(5 + 10 / 12, "feet"),
  26723. weight: math.unit(165, "lb"),
  26724. name: "Front",
  26725. image: {
  26726. source: "./media/characters/nicky/front.svg",
  26727. extra: 3144 / 2886,
  26728. bottom: 45.6 / 3192
  26729. }
  26730. },
  26731. back: {
  26732. height: math.unit(5 + 10 / 12, "feet"),
  26733. weight: math.unit(165, "lb"),
  26734. name: "Back",
  26735. image: {
  26736. source: "./media/characters/nicky/back.svg",
  26737. extra: 3055 / 2804,
  26738. bottom: 28.4 / 3087
  26739. }
  26740. },
  26741. frontclothed: {
  26742. height: math.unit(5 + 10 / 12, "feet"),
  26743. weight: math.unit(165, "lb"),
  26744. name: "Front-clothed",
  26745. image: {
  26746. source: "./media/characters/nicky/front-clothed.svg",
  26747. extra: 3184.9 / 2926.9,
  26748. bottom: 86.5 / 3239.9
  26749. }
  26750. },
  26751. foot: {
  26752. height: math.unit(1.16, "feet"),
  26753. name: "Foot",
  26754. image: {
  26755. source: "./media/characters/nicky/foot.svg"
  26756. }
  26757. },
  26758. feet: {
  26759. height: math.unit(1.34, "feet"),
  26760. name: "Feet",
  26761. image: {
  26762. source: "./media/characters/nicky/feet.svg"
  26763. }
  26764. },
  26765. maw: {
  26766. height: math.unit(0.9, "feet"),
  26767. name: "Maw",
  26768. image: {
  26769. source: "./media/characters/nicky/maw.svg"
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(5 + 10 / 12, "feet"),
  26777. default: true
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(60, "feet")
  26782. },
  26783. {
  26784. name: "Megamacro",
  26785. height: math.unit(1, "mile")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26791. {
  26792. side: {
  26793. height: math.unit(10, "feet"),
  26794. weight: math.unit(600, "lb"),
  26795. name: "Side",
  26796. image: {
  26797. source: "./media/characters/blair/side.svg",
  26798. bottom: 16.6 / 475,
  26799. extra: 458 / 431
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Micro",
  26806. height: math.unit(8, "inches")
  26807. },
  26808. {
  26809. name: "Normal",
  26810. height: math.unit(10, "feet"),
  26811. default: true
  26812. },
  26813. {
  26814. name: "Macro",
  26815. height: math.unit(180, "feet")
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(5 + 4 / 12, "feet"),
  26824. weight: math.unit(125, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/fisher/front.svg",
  26828. extra: 444 / 390,
  26829. bottom: 2 / 444.8
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Micro",
  26836. height: math.unit(4, "inches")
  26837. },
  26838. {
  26839. name: "Normal",
  26840. height: math.unit(5 + 4 / 12, "feet"),
  26841. default: true
  26842. },
  26843. {
  26844. name: "Macro",
  26845. height: math.unit(100, "feet")
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(6.71, "feet"),
  26854. weight: math.unit(200, "lb"),
  26855. preyCapacity: math.unit(1000000, "people"),
  26856. name: "Front",
  26857. image: {
  26858. source: "./media/characters/gliss/front.svg",
  26859. extra: 2347 / 2231,
  26860. bottom: 113 / 2462
  26861. }
  26862. },
  26863. hammerspaceSize: {
  26864. height: math.unit(6.71 * 717, "feet"),
  26865. weight: math.unit(200, "lb"),
  26866. preyCapacity: math.unit(1000000, "people"),
  26867. name: "Hammerspace Size",
  26868. image: {
  26869. source: "./media/characters/gliss/front.svg",
  26870. extra: 2347 / 2231,
  26871. bottom: 113 / 2462
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(6.71, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26885. {
  26886. side: {
  26887. height: math.unit(1.44, "m"),
  26888. weight: math.unit(80, "kg"),
  26889. name: "Side",
  26890. image: {
  26891. source: "./media/characters/dune-anderson/side.svg",
  26892. bottom: 49 / 1426
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Wolf-sized",
  26899. height: math.unit(1.44, "meters")
  26900. },
  26901. {
  26902. name: "Normal",
  26903. height: math.unit(5.05, "meters"),
  26904. default: true
  26905. },
  26906. {
  26907. name: "Big",
  26908. height: math.unit(14.4, "meters")
  26909. },
  26910. {
  26911. name: "Huge",
  26912. height: math.unit(144, "meters")
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(7, "feet"),
  26921. weight: math.unit(425, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/hind/front.svg",
  26925. extra: 2091 / 1860,
  26926. bottom: 129 / 2220
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(7, "feet"),
  26931. weight: math.unit(425, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/hind/back.svg",
  26935. extra: 2091 / 1860,
  26936. bottom: 24.6 / 2309
  26937. }
  26938. },
  26939. tail: {
  26940. height: math.unit(2.8, "feet"),
  26941. name: "Tail",
  26942. image: {
  26943. source: "./media/characters/hind/tail.svg"
  26944. }
  26945. },
  26946. head: {
  26947. height: math.unit(2.55, "feet"),
  26948. name: "Head",
  26949. image: {
  26950. source: "./media/characters/hind/head.svg"
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "XS",
  26957. height: math.unit(0.7, "feet")
  26958. },
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(7, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "XL",
  26966. height: math.unit(70, "feet")
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(2.1, "meters"),
  26975. weight: math.unit(150, "lb"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/tharquench-sizestealer/front.svg",
  26979. extra: 1605/1470,
  26980. bottom: 36/1641
  26981. }
  26982. },
  26983. frontAlt: {
  26984. height: math.unit(2.1, "meters"),
  26985. weight: math.unit(150, "lb"),
  26986. name: "Front (Alt)",
  26987. image: {
  26988. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26989. extra: 2318 / 2063,
  26990. bottom: 93.4 / 2410
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Nano",
  26997. height: math.unit(1, "mm")
  26998. },
  26999. {
  27000. name: "Micro",
  27001. height: math.unit(1, "cm")
  27002. },
  27003. {
  27004. name: "Normal",
  27005. height: math.unit(2.1, "meters"),
  27006. default: true
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27012. {
  27013. front: {
  27014. height: math.unit(7 + 5 / 12, "feet"),
  27015. weight: math.unit(357, "lb"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/solex-draconov/front.svg",
  27019. extra: 1993 / 1865,
  27020. bottom: 117 / 2111
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Natural Height",
  27027. height: math.unit(7 + 5 / 12, "feet"),
  27028. default: true
  27029. },
  27030. {
  27031. name: "Macro",
  27032. height: math.unit(350, "feet")
  27033. },
  27034. {
  27035. name: "Macro+",
  27036. height: math.unit(1000, "feet")
  27037. },
  27038. {
  27039. name: "Megamacro",
  27040. height: math.unit(20, "km")
  27041. },
  27042. {
  27043. name: "Megamacro+",
  27044. height: math.unit(1000, "km")
  27045. },
  27046. {
  27047. name: "Gigamacro",
  27048. height: math.unit(2.5, "Gm")
  27049. },
  27050. {
  27051. name: "Teramacro",
  27052. height: math.unit(15, "Tm")
  27053. },
  27054. {
  27055. name: "Galactic",
  27056. height: math.unit(30, "Zm")
  27057. },
  27058. {
  27059. name: "Universal",
  27060. height: math.unit(21000, "Ym")
  27061. },
  27062. {
  27063. name: "Omniversal",
  27064. height: math.unit(9.861e50, "Ym")
  27065. },
  27066. {
  27067. name: "Existential",
  27068. height: math.unit(1e300, "meters")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27074. {
  27075. side: {
  27076. height: math.unit(25, "feet"),
  27077. weight: math.unit(90000, "lb"),
  27078. name: "Side",
  27079. image: {
  27080. source: "./media/characters/mandarax/side.svg",
  27081. extra: 614 / 332,
  27082. bottom: 55 / 630
  27083. }
  27084. },
  27085. lounging: {
  27086. height: math.unit(15.4, "feet"),
  27087. weight: math.unit(90000, "lb"),
  27088. name: "Lounging",
  27089. image: {
  27090. source: "./media/characters/mandarax/lounging.svg",
  27091. extra: 817/609,
  27092. bottom: 685/1502
  27093. }
  27094. },
  27095. head: {
  27096. height: math.unit(11.4, "feet"),
  27097. name: "Head",
  27098. image: {
  27099. source: "./media/characters/mandarax/head.svg"
  27100. }
  27101. },
  27102. belly: {
  27103. height: math.unit(33, "feet"),
  27104. name: "Belly",
  27105. preyCapacity: math.unit(500, "people"),
  27106. image: {
  27107. source: "./media/characters/mandarax/belly.svg"
  27108. }
  27109. },
  27110. dick: {
  27111. height: math.unit(8.46, "feet"),
  27112. name: "Dick",
  27113. image: {
  27114. source: "./media/characters/mandarax/dick.svg"
  27115. }
  27116. },
  27117. top: {
  27118. height: math.unit(28, "meters"),
  27119. name: "Top",
  27120. image: {
  27121. source: "./media/characters/mandarax/top.svg"
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(25, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(5, "feet"),
  27138. weight: math.unit(90, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/pixil/front.svg",
  27142. extra: 2000 / 1618,
  27143. bottom: 12.3 / 2011
  27144. }
  27145. },
  27146. },
  27147. [
  27148. {
  27149. name: "Normal",
  27150. height: math.unit(5, "feet"),
  27151. default: true
  27152. },
  27153. {
  27154. name: "Megamacro",
  27155. height: math.unit(10, "miles"),
  27156. },
  27157. ]
  27158. ))
  27159. characterMakers.push(() => makeCharacter(
  27160. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27161. {
  27162. front: {
  27163. height: math.unit(7 + 2 / 12, "feet"),
  27164. weight: math.unit(200, "lb"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/angel/front.svg",
  27168. extra: 1830 / 1737,
  27169. bottom: 22.6 / 1854,
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(7 + 2 / 12, "feet"),
  27177. default: true
  27178. },
  27179. {
  27180. name: "Macro",
  27181. height: math.unit(1000, "feet")
  27182. },
  27183. {
  27184. name: "Megamacro",
  27185. height: math.unit(2, "miles")
  27186. },
  27187. {
  27188. name: "Gigamacro",
  27189. height: math.unit(20, "earths")
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(5, "feet"),
  27198. weight: math.unit(180, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/mekana/front.svg",
  27202. extra: 1671 / 1605,
  27203. bottom: 3.5 / 1691
  27204. }
  27205. },
  27206. side: {
  27207. height: math.unit(5, "feet"),
  27208. weight: math.unit(180, "lb"),
  27209. name: "Side",
  27210. image: {
  27211. source: "./media/characters/mekana/side.svg",
  27212. extra: 1671 / 1605,
  27213. bottom: 3.5 / 1691
  27214. }
  27215. },
  27216. back: {
  27217. height: math.unit(5, "feet"),
  27218. weight: math.unit(180, "lb"),
  27219. name: "Back",
  27220. image: {
  27221. source: "./media/characters/mekana/back.svg",
  27222. extra: 1671 / 1605,
  27223. bottom: 3.5 / 1691
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(5, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(4 + 6 / 12, "feet"),
  27240. weight: math.unit(80, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/pixie/front.svg",
  27244. extra: 1924 / 1825,
  27245. bottom: 22.4 / 1946
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(4 + 6 / 12, "feet"),
  27253. default: true
  27254. },
  27255. {
  27256. name: "Macro",
  27257. height: math.unit(40, "feet")
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(2.1, "meters"),
  27266. weight: math.unit(200, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/the-lascivious/front.svg",
  27270. extra: 1 / 0.893,
  27271. bottom: 3.5 / 573.7
  27272. }
  27273. },
  27274. },
  27275. [
  27276. {
  27277. name: "Human Scale",
  27278. height: math.unit(2.1, "meters")
  27279. },
  27280. {
  27281. name: "Wolxi Scale",
  27282. height: math.unit(46.2, "m"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Boinker of Buildings",
  27287. height: math.unit(10, "km")
  27288. },
  27289. {
  27290. name: "Shagger of Skyscrapers",
  27291. height: math.unit(40, "km")
  27292. },
  27293. {
  27294. name: "Banger of Boroughs",
  27295. height: math.unit(4000, "km")
  27296. },
  27297. {
  27298. name: "Screwer of States",
  27299. height: math.unit(100000, "km")
  27300. },
  27301. {
  27302. name: "Pounder of Planets",
  27303. height: math.unit(2000000, "km")
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27309. {
  27310. front: {
  27311. height: math.unit(6, "feet"),
  27312. weight: math.unit(150, "lb"),
  27313. name: "Front",
  27314. image: {
  27315. source: "./media/characters/aj/front.svg",
  27316. extra: 2039 / 1562,
  27317. bottom: 40 / 2079
  27318. }
  27319. },
  27320. },
  27321. [
  27322. {
  27323. name: "Normal",
  27324. height: math.unit(11 + 6 / 12, "feet"),
  27325. default: true
  27326. },
  27327. {
  27328. name: "Megamacro",
  27329. height: math.unit(60, "megameters")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27335. {
  27336. side: {
  27337. height: math.unit(31 + 8 / 12, "feet"),
  27338. weight: math.unit(75000, "kg"),
  27339. name: "Side",
  27340. image: {
  27341. source: "./media/characters/koros/side.svg",
  27342. extra: 1442 / 1297,
  27343. bottom: 122.7 / 1562
  27344. }
  27345. },
  27346. dicksKingsCrown: {
  27347. height: math.unit(6, "feet"),
  27348. name: "Dicks (King's Crown)",
  27349. image: {
  27350. source: "./media/characters/koros/dicks-kings-crown.svg"
  27351. }
  27352. },
  27353. dicksTailSet: {
  27354. height: math.unit(3, "feet"),
  27355. name: "Dicks (Tail Set)",
  27356. image: {
  27357. source: "./media/characters/koros/dicks-tail-set.svg"
  27358. }
  27359. },
  27360. dickCumming: {
  27361. height: math.unit(7.98, "feet"),
  27362. name: "Dick (Cumming)",
  27363. image: {
  27364. source: "./media/characters/koros/dick-cumming.svg"
  27365. }
  27366. },
  27367. dicksBack: {
  27368. height: math.unit(5.9, "feet"),
  27369. name: "Dicks (Back)",
  27370. image: {
  27371. source: "./media/characters/koros/dicks-back.svg"
  27372. }
  27373. },
  27374. dicksFront: {
  27375. height: math.unit(3.72, "feet"),
  27376. name: "Dicks (Front)",
  27377. image: {
  27378. source: "./media/characters/koros/dicks-front.svg"
  27379. }
  27380. },
  27381. dicksPeeking: {
  27382. height: math.unit(3.0, "feet"),
  27383. name: "Dicks (Peeking)",
  27384. image: {
  27385. source: "./media/characters/koros/dicks-peeking.svg"
  27386. }
  27387. },
  27388. eye: {
  27389. height: math.unit(1.7, "feet"),
  27390. name: "Eye",
  27391. image: {
  27392. source: "./media/characters/koros/eye.svg"
  27393. }
  27394. },
  27395. headFront: {
  27396. height: math.unit(11.69, "feet"),
  27397. name: "Head (Front)",
  27398. image: {
  27399. source: "./media/characters/koros/head-front.svg"
  27400. }
  27401. },
  27402. headSide: {
  27403. height: math.unit(14, "feet"),
  27404. name: "Head (Side)",
  27405. image: {
  27406. source: "./media/characters/koros/head-side.svg"
  27407. }
  27408. },
  27409. leg: {
  27410. height: math.unit(17, "feet"),
  27411. name: "Leg",
  27412. image: {
  27413. source: "./media/characters/koros/leg.svg"
  27414. }
  27415. },
  27416. mawSide: {
  27417. height: math.unit(12.8, "feet"),
  27418. name: "Maw (Side)",
  27419. image: {
  27420. source: "./media/characters/koros/maw-side.svg"
  27421. }
  27422. },
  27423. mawSpitting: {
  27424. height: math.unit(17, "feet"),
  27425. name: "Maw (Spitting)",
  27426. image: {
  27427. source: "./media/characters/koros/maw-spitting.svg"
  27428. }
  27429. },
  27430. slit: {
  27431. height: math.unit(2.8, "feet"),
  27432. name: "Slit",
  27433. image: {
  27434. source: "./media/characters/koros/slit.svg"
  27435. }
  27436. },
  27437. stomach: {
  27438. height: math.unit(6.8, "feet"),
  27439. preyCapacity: math.unit(20, "people"),
  27440. name: "Stomach",
  27441. image: {
  27442. source: "./media/characters/koros/stomach.svg"
  27443. }
  27444. },
  27445. wingspanBottom: {
  27446. height: math.unit(114, "feet"),
  27447. name: "Wingspan (Bottom)",
  27448. image: {
  27449. source: "./media/characters/koros/wingspan-bottom.svg"
  27450. }
  27451. },
  27452. wingspanTop: {
  27453. height: math.unit(104, "feet"),
  27454. name: "Wingspan (Top)",
  27455. image: {
  27456. source: "./media/characters/koros/wingspan-top.svg"
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(31 + 8 / 12, "feet"),
  27464. default: true
  27465. },
  27466. ]
  27467. ))
  27468. characterMakers.push(() => makeCharacter(
  27469. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27470. {
  27471. front: {
  27472. height: math.unit(18 + 5 / 12, "feet"),
  27473. weight: math.unit(3750, "kg"),
  27474. name: "Front",
  27475. image: {
  27476. source: "./media/characters/vexx/front.svg",
  27477. extra: 426 / 396,
  27478. bottom: 31.5 / 458
  27479. }
  27480. },
  27481. maw: {
  27482. height: math.unit(6, "feet"),
  27483. name: "Maw",
  27484. image: {
  27485. source: "./media/characters/vexx/maw.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(18 + 5 / 12, "feet"),
  27493. default: true
  27494. },
  27495. ]
  27496. ))
  27497. characterMakers.push(() => makeCharacter(
  27498. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27499. {
  27500. front: {
  27501. height: math.unit(17 + 6 / 12, "feet"),
  27502. weight: math.unit(150, "lb"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/baadra/front.svg",
  27506. extra: 1694/1553,
  27507. bottom: 179/1873
  27508. }
  27509. },
  27510. frontAlt: {
  27511. height: math.unit(17 + 6 / 12, "feet"),
  27512. weight: math.unit(150, "lb"),
  27513. name: "Front (Alt)",
  27514. image: {
  27515. source: "./media/characters/baadra/front-alt.svg",
  27516. extra: 3137 / 2890,
  27517. bottom: 168.4 / 3305
  27518. }
  27519. },
  27520. back: {
  27521. height: math.unit(17 + 6 / 12, "feet"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Back",
  27524. image: {
  27525. source: "./media/characters/baadra/back.svg",
  27526. extra: 3142 / 2890,
  27527. bottom: 220 / 3371
  27528. }
  27529. },
  27530. head: {
  27531. height: math.unit(5.45, "feet"),
  27532. name: "Head",
  27533. image: {
  27534. source: "./media/characters/baadra/head.svg"
  27535. }
  27536. },
  27537. headAngry: {
  27538. height: math.unit(4.95, "feet"),
  27539. name: "Head (Angry)",
  27540. image: {
  27541. source: "./media/characters/baadra/head-angry.svg"
  27542. }
  27543. },
  27544. headOpen: {
  27545. height: math.unit(6, "feet"),
  27546. name: "Head (Open)",
  27547. image: {
  27548. source: "./media/characters/baadra/head-open.svg"
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(17 + 6 / 12, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(7 + 3 / 12, "feet"),
  27565. weight: math.unit(180, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/juri/front.svg",
  27569. extra: 1401 / 1237,
  27570. bottom: 18.5 / 1418
  27571. }
  27572. },
  27573. side: {
  27574. height: math.unit(7 + 3 / 12, "feet"),
  27575. weight: math.unit(180, "lb"),
  27576. name: "Side",
  27577. image: {
  27578. source: "./media/characters/juri/side.svg",
  27579. extra: 1424 / 1242,
  27580. bottom: 18.5 / 1447
  27581. }
  27582. },
  27583. sitting: {
  27584. height: math.unit(6, "feet"),
  27585. weight: math.unit(180, "lb"),
  27586. name: "Sitting",
  27587. image: {
  27588. source: "./media/characters/juri/sitting.svg",
  27589. extra: 1270 / 1143,
  27590. bottom: 100 / 1343
  27591. }
  27592. },
  27593. back: {
  27594. height: math.unit(7 + 3 / 12, "feet"),
  27595. weight: math.unit(180, "lb"),
  27596. name: "Back",
  27597. image: {
  27598. source: "./media/characters/juri/back.svg",
  27599. extra: 1377 / 1240,
  27600. bottom: 23.7 / 1405
  27601. }
  27602. },
  27603. maw: {
  27604. height: math.unit(2.8, "feet"),
  27605. name: "Maw",
  27606. image: {
  27607. source: "./media/characters/juri/maw.svg"
  27608. }
  27609. },
  27610. stomach: {
  27611. height: math.unit(0.89, "feet"),
  27612. preyCapacity: math.unit(4, "liters"),
  27613. name: "Stomach",
  27614. image: {
  27615. source: "./media/characters/juri/stomach.svg"
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(7 + 3 / 12, "feet"),
  27623. default: true
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27629. {
  27630. fox: {
  27631. height: math.unit(5 + 6 / 12, "feet"),
  27632. weight: math.unit(140, "lb"),
  27633. name: "Fox",
  27634. image: {
  27635. source: "./media/characters/maxene-sita/fox.svg",
  27636. extra: 146 / 138,
  27637. bottom: 2.1 / 148.19
  27638. }
  27639. },
  27640. foxLaying: {
  27641. height: math.unit(1.70, "feet"),
  27642. weight: math.unit(140, "lb"),
  27643. name: "Fox (Laying)",
  27644. image: {
  27645. source: "./media/characters/maxene-sita/fox-laying.svg",
  27646. extra: 910 / 572,
  27647. bottom: 71 / 981
  27648. }
  27649. },
  27650. kitsune: {
  27651. height: math.unit(10, "feet"),
  27652. weight: math.unit(800, "lb"),
  27653. name: "Kitsune",
  27654. image: {
  27655. source: "./media/characters/maxene-sita/kitsune.svg",
  27656. extra: 185 / 176,
  27657. bottom: 4.7 / 189.9
  27658. }
  27659. },
  27660. hellhound: {
  27661. height: math.unit(10, "feet"),
  27662. weight: math.unit(700, "lb"),
  27663. name: "Hellhound",
  27664. image: {
  27665. source: "./media/characters/maxene-sita/hellhound.svg",
  27666. extra: 1600 / 1545,
  27667. bottom: 81 / 1681
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Normal",
  27674. height: math.unit(5 + 6 / 12, "feet"),
  27675. default: true
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27681. {
  27682. front: {
  27683. height: math.unit(3 + 4 / 12, "feet"),
  27684. weight: math.unit(70, "lb"),
  27685. name: "Front",
  27686. image: {
  27687. source: "./media/characters/maia/front.svg",
  27688. extra: 227 / 219.5,
  27689. bottom: 40 / 267
  27690. }
  27691. },
  27692. back: {
  27693. height: math.unit(3 + 4 / 12, "feet"),
  27694. weight: math.unit(70, "lb"),
  27695. name: "Back",
  27696. image: {
  27697. source: "./media/characters/maia/back.svg",
  27698. extra: 237 / 225
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(3 + 4 / 12, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(5 + 10 / 12, "feet"),
  27715. weight: math.unit(197, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/jabaro/front.svg",
  27719. extra: 225 / 216,
  27720. bottom: 5.06 / 230
  27721. }
  27722. },
  27723. back: {
  27724. height: math.unit(5 + 10 / 12, "feet"),
  27725. weight: math.unit(197, "lb"),
  27726. name: "Back",
  27727. image: {
  27728. source: "./media/characters/jabaro/back.svg",
  27729. extra: 225 / 219,
  27730. bottom: 1.9 / 227
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(5 + 10 / 12, "feet"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(5 + 8 / 12, "feet"),
  27747. weight: math.unit(139, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/risa/front.svg",
  27751. extra: 270 / 260,
  27752. bottom: 11.2 / 282
  27753. }
  27754. },
  27755. back: {
  27756. height: math.unit(5 + 8 / 12, "feet"),
  27757. weight: math.unit(139, "lb"),
  27758. name: "Back",
  27759. image: {
  27760. source: "./media/characters/risa/back.svg",
  27761. extra: 264 / 255,
  27762. bottom: 4 / 268
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(5 + 8 / 12, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(2 + 11 / 12, "feet"),
  27779. weight: math.unit(30, "lb"),
  27780. name: "Front",
  27781. image: {
  27782. source: "./media/characters/weatley/front.svg",
  27783. bottom: 10.7 / 414,
  27784. extra: 403.5 / 362
  27785. }
  27786. },
  27787. back: {
  27788. height: math.unit(2 + 11 / 12, "feet"),
  27789. weight: math.unit(30, "lb"),
  27790. name: "Back",
  27791. image: {
  27792. source: "./media/characters/weatley/back.svg",
  27793. bottom: 10.7 / 414,
  27794. extra: 403.5 / 362
  27795. }
  27796. },
  27797. },
  27798. [
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(2 + 11 / 12, "feet"),
  27802. default: true
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(5 + 2 / 12, "feet"),
  27811. weight: math.unit(50, "kg"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/mercury-crescent/front.svg",
  27815. extra: 1088 / 1033,
  27816. bottom: 18.9 / 1109
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(5 + 2 / 12, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(2, "feet"),
  27833. weight: math.unit(15, "kg"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/diamond-jones/front.svg",
  27837. extra: 727/723,
  27838. bottom: 46/773
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(2, "feet"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27852. {
  27853. front: {
  27854. height: math.unit(3, "feet"),
  27855. weight: math.unit(30, "kg"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/sweet-bit/front.svg",
  27859. extra: 675 / 567,
  27860. bottom: 27.7 / 703
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(3, "feet"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27874. {
  27875. side: {
  27876. height: math.unit(9.178, "feet"),
  27877. weight: math.unit(500, "lb"),
  27878. name: "Side",
  27879. image: {
  27880. source: "./media/characters/umbrazen/side.svg",
  27881. extra: 1730 / 1473,
  27882. bottom: 34.6 / 1765
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(9.178, "feet"),
  27890. default: true
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(10, "feet"),
  27899. weight: math.unit(750, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/arlist/front.svg",
  27903. extra: 961 / 778,
  27904. bottom: 6.2 / 986
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(10, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(5 + 1 / 12, "feet"),
  27921. weight: math.unit(110, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/aradel/front.svg",
  27925. extra: 324 / 303,
  27926. bottom: 3.6 / 329.4
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(5 + 1 / 12, "feet"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27940. {
  27941. dressed: {
  27942. height: math.unit(3 + 8 / 12, "feet"),
  27943. weight: math.unit(50, "lb"),
  27944. name: "Dressed",
  27945. image: {
  27946. source: "./media/characters/serryn/dressed.svg",
  27947. extra: 1792 / 1656,
  27948. bottom: 43.5 / 1840
  27949. }
  27950. },
  27951. nude: {
  27952. height: math.unit(3 + 8 / 12, "feet"),
  27953. weight: math.unit(50, "lb"),
  27954. name: "Nude",
  27955. image: {
  27956. source: "./media/characters/serryn/nude.svg",
  27957. extra: 1792 / 1656,
  27958. bottom: 43.5 / 1840
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Normal",
  27965. height: math.unit(3 + 8 / 12, "feet"),
  27966. default: true
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27972. {
  27973. front: {
  27974. height: math.unit(7 + 10 / 12, "feet"),
  27975. weight: math.unit(255, "lb"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/xavier-thyme/front.svg",
  27979. extra: 3733 / 3642,
  27980. bottom: 131 / 3869
  27981. }
  27982. },
  27983. frontRaven: {
  27984. height: math.unit(7 + 10 / 12, "feet"),
  27985. weight: math.unit(255, "lb"),
  27986. name: "Front (Raven)",
  27987. image: {
  27988. source: "./media/characters/xavier-thyme/front-raven.svg",
  27989. extra: 4385 / 3642,
  27990. bottom: 131 / 4517
  27991. }
  27992. },
  27993. },
  27994. [
  27995. {
  27996. name: "Normal",
  27997. height: math.unit(7 + 10 / 12, "feet"),
  27998. default: true
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(1.6, "m"),
  28007. weight: math.unit(50, "kg"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/kiki/front.svg",
  28011. extra: 4682 / 3610,
  28012. bottom: 115 / 4777
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(1.6, "meters"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(50, "m"),
  28029. weight: math.unit(500, "tonnes"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/ryoko/front.svg",
  28033. extra: 4632 / 3926,
  28034. bottom: 193 / 4823
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(50, "meters"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(30, "m"),
  28051. weight: math.unit(22, "tonnes"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/elio/front.svg",
  28055. extra: 4582 / 3720,
  28056. bottom: 236 / 4828
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(30, "meters"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(6 + 3 / 12, "feet"),
  28073. weight: math.unit(120, "lb"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/azura/front.svg",
  28077. extra: 1149 / 1135,
  28078. bottom: 45 / 1194
  28079. }
  28080. },
  28081. frontClothed: {
  28082. height: math.unit(6 + 3 / 12, "feet"),
  28083. weight: math.unit(120, "lb"),
  28084. name: "Front (Clothed)",
  28085. image: {
  28086. source: "./media/characters/azura/front-clothed.svg",
  28087. extra: 1149 / 1135,
  28088. bottom: 45 / 1194
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(6 + 3 / 12, "feet"),
  28096. default: true
  28097. },
  28098. {
  28099. name: "Macro",
  28100. height: math.unit(20 + 6 / 12, "feet")
  28101. },
  28102. {
  28103. name: "Megamacro",
  28104. height: math.unit(12, "miles")
  28105. },
  28106. {
  28107. name: "Gigamacro",
  28108. height: math.unit(10000, "miles")
  28109. },
  28110. {
  28111. name: "Teramacro",
  28112. height: math.unit(900000, "miles")
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(12, "feet"),
  28121. weight: math.unit(1, "ton"),
  28122. capacity: math.unit(660000, "gallons"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/zeus/front.svg",
  28126. extra: 5005 / 4717,
  28127. bottom: 363 / 5388
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Normal",
  28134. height: math.unit(12, "feet")
  28135. },
  28136. {
  28137. name: "Preferred Size",
  28138. height: math.unit(0.5, "miles"),
  28139. default: true
  28140. },
  28141. {
  28142. name: "Giga Horse",
  28143. height: math.unit(300, "miles")
  28144. },
  28145. {
  28146. name: "Riding Planets",
  28147. height: math.unit(30, "megameters")
  28148. },
  28149. {
  28150. name: "Cosmic Giant",
  28151. height: math.unit(3, "zettameters")
  28152. },
  28153. {
  28154. name: "Breeding God",
  28155. height: math.unit(9.92e22, "yottameters")
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28161. {
  28162. side: {
  28163. height: math.unit(9, "feet"),
  28164. weight: math.unit(1500, "kg"),
  28165. name: "Side",
  28166. image: {
  28167. source: "./media/characters/fang/side.svg",
  28168. extra: 924 / 866,
  28169. bottom: 47.5 / 972.3
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(9, "feet"),
  28177. default: true
  28178. },
  28179. {
  28180. name: "Macro",
  28181. height: math.unit(75 + 6 / 12, "feet")
  28182. },
  28183. {
  28184. name: "Teramacro",
  28185. height: math.unit(50000, "miles")
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(10, "feet"),
  28194. weight: math.unit(2, "tons"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/rekhit/front.svg",
  28198. extra: 2796 / 2590,
  28199. bottom: 225 / 3022
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(10, "feet"),
  28207. default: true
  28208. },
  28209. {
  28210. name: "Macro",
  28211. height: math.unit(500, "feet")
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(7 + 6.451 / 12, "feet"),
  28220. weight: math.unit(310, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/dahlia-verrick/front.svg",
  28224. extra: 1488 / 1365,
  28225. bottom: 6.2 / 1495
  28226. }
  28227. },
  28228. back: {
  28229. height: math.unit(7 + 6.451 / 12, "feet"),
  28230. weight: math.unit(310, "lb"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/dahlia-verrick/back.svg",
  28234. extra: 1472 / 1351,
  28235. bottom: 5.28 / 1477
  28236. }
  28237. },
  28238. frontBusiness: {
  28239. height: math.unit(7 + 6.451 / 12, "feet"),
  28240. weight: math.unit(200, "lb"),
  28241. name: "Front (Business)",
  28242. image: {
  28243. source: "./media/characters/dahlia-verrick/front-business.svg",
  28244. extra: 1478 / 1381,
  28245. bottom: 5.5 / 1484
  28246. }
  28247. },
  28248. frontCasual: {
  28249. height: math.unit(7 + 6.451 / 12, "feet"),
  28250. weight: math.unit(200, "lb"),
  28251. name: "Front (Casual)",
  28252. image: {
  28253. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28254. extra: 1478 / 1381,
  28255. bottom: 5.5 / 1484
  28256. }
  28257. },
  28258. },
  28259. [
  28260. {
  28261. name: "Travel-Sized",
  28262. height: math.unit(7.45, "inches")
  28263. },
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(7 + 6.451 / 12, "feet"),
  28267. default: true
  28268. },
  28269. {
  28270. name: "Hitting the Town",
  28271. height: math.unit(37 + 8 / 12, "feet")
  28272. },
  28273. {
  28274. name: "Stomp in the Suburbs",
  28275. height: math.unit(964 + 9.728 / 12, "feet")
  28276. },
  28277. {
  28278. name: "Sit on the City",
  28279. height: math.unit(61747 + 10.592 / 12, "feet")
  28280. },
  28281. {
  28282. name: "Glomp the Globe",
  28283. height: math.unit(252919327 + 4.832 / 12, "feet")
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(6 + 4 / 12, "feet"),
  28292. weight: math.unit(320, "lb"),
  28293. name: "Front",
  28294. image: {
  28295. source: "./media/characters/balina-mahigan/front.svg",
  28296. extra: 447 / 428,
  28297. bottom: 18 / 466
  28298. }
  28299. },
  28300. back: {
  28301. height: math.unit(6 + 4 / 12, "feet"),
  28302. weight: math.unit(320, "lb"),
  28303. name: "Back",
  28304. image: {
  28305. source: "./media/characters/balina-mahigan/back.svg",
  28306. extra: 445 / 428,
  28307. bottom: 4.07 / 448
  28308. }
  28309. },
  28310. arm: {
  28311. height: math.unit(1.88, "feet"),
  28312. name: "Arm",
  28313. image: {
  28314. source: "./media/characters/balina-mahigan/arm.svg"
  28315. }
  28316. },
  28317. backPort: {
  28318. height: math.unit(0.685, "feet"),
  28319. name: "Back Port",
  28320. image: {
  28321. source: "./media/characters/balina-mahigan/back-port.svg"
  28322. }
  28323. },
  28324. hoofpaw: {
  28325. height: math.unit(1.41, "feet"),
  28326. name: "Hoofpaw",
  28327. image: {
  28328. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28329. }
  28330. },
  28331. leftHandBack: {
  28332. height: math.unit(0.938, "feet"),
  28333. name: "Left Hand (Back)",
  28334. image: {
  28335. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28336. }
  28337. },
  28338. leftHandFront: {
  28339. height: math.unit(0.938, "feet"),
  28340. name: "Left Hand (Front)",
  28341. image: {
  28342. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28343. }
  28344. },
  28345. rightHandBack: {
  28346. height: math.unit(0.95, "feet"),
  28347. name: "Right Hand (Back)",
  28348. image: {
  28349. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28350. }
  28351. },
  28352. rightHandFront: {
  28353. height: math.unit(0.95, "feet"),
  28354. name: "Right Hand (Front)",
  28355. image: {
  28356. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28357. }
  28358. },
  28359. },
  28360. [
  28361. {
  28362. name: "Normal",
  28363. height: math.unit(6 + 4 / 12, "feet"),
  28364. default: true
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(6, "feet"),
  28373. weight: math.unit(320, "lb"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/balina-mejeri/front.svg",
  28377. extra: 517 / 488,
  28378. bottom: 44.2 / 561
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(6 + 4 / 12, "feet")
  28386. },
  28387. {
  28388. name: "Business",
  28389. height: math.unit(155, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28396. {
  28397. kneeling: {
  28398. height: math.unit(6 + 4 / 12, "feet"),
  28399. weight: math.unit(300 * 20, "lb"),
  28400. name: "Kneeling",
  28401. image: {
  28402. source: "./media/characters/balbarian/kneeling.svg",
  28403. extra: 922 / 862,
  28404. bottom: 42.4 / 965
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(6 + 4 / 12, "feet")
  28412. },
  28413. {
  28414. name: "Treasured",
  28415. height: math.unit(18 + 9 / 12, "feet"),
  28416. default: true
  28417. },
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(900, "feet")
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6 + 4 / 12, "feet"),
  28429. weight: math.unit(325, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/balina-amarini/front.svg",
  28433. extra: 415 / 403,
  28434. bottom: 19 / 433.4
  28435. }
  28436. },
  28437. back: {
  28438. height: math.unit(6 + 4 / 12, "feet"),
  28439. weight: math.unit(325, "lb"),
  28440. name: "Back",
  28441. image: {
  28442. source: "./media/characters/balina-amarini/back.svg",
  28443. extra: 415 / 403,
  28444. bottom: 13.5 / 432
  28445. }
  28446. },
  28447. overdrive: {
  28448. height: math.unit(6 + 4 / 12, "feet"),
  28449. weight: math.unit(400, "lb"),
  28450. name: "Overdrive",
  28451. image: {
  28452. source: "./media/characters/balina-amarini/overdrive.svg",
  28453. extra: 269 / 259,
  28454. bottom: 12 / 282
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Boom",
  28461. height: math.unit(9 + 10 / 12, "feet"),
  28462. default: true
  28463. },
  28464. {
  28465. name: "Macro",
  28466. height: math.unit(280, "feet")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28472. {
  28473. goddess: {
  28474. height: math.unit(600, "feet"),
  28475. weight: math.unit(2000000, "tons"),
  28476. name: "Goddess",
  28477. image: {
  28478. source: "./media/characters/lady-kubwa/goddess.svg",
  28479. extra: 1240.5 / 1223,
  28480. bottom: 22 / 1263
  28481. }
  28482. },
  28483. goddesser: {
  28484. height: math.unit(900, "feet"),
  28485. weight: math.unit(20000000, "lb"),
  28486. name: "Goddess-er",
  28487. image: {
  28488. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28489. extra: 899 / 888,
  28490. bottom: 12.6 / 912
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(600, "feet"),
  28498. default: true
  28499. },
  28500. {
  28501. name: "Megamacro",
  28502. height: math.unit(250, "miles")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(7 + 7 / 12, "feet"),
  28511. weight: math.unit(250, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/tala-grovehorn/front.svg",
  28515. extra: 2636 / 2525,
  28516. bottom: 147 / 2781
  28517. }
  28518. },
  28519. back: {
  28520. height: math.unit(7 + 7 / 12, "feet"),
  28521. weight: math.unit(250, "lb"),
  28522. name: "Back",
  28523. image: {
  28524. source: "./media/characters/tala-grovehorn/back.svg",
  28525. extra: 2635 / 2539,
  28526. bottom: 100 / 2732.8
  28527. }
  28528. },
  28529. mouth: {
  28530. height: math.unit(1.15, "feet"),
  28531. name: "Mouth",
  28532. image: {
  28533. source: "./media/characters/tala-grovehorn/mouth.svg"
  28534. }
  28535. },
  28536. dick: {
  28537. height: math.unit(2.36, "feet"),
  28538. name: "Dick",
  28539. image: {
  28540. source: "./media/characters/tala-grovehorn/dick.svg"
  28541. }
  28542. },
  28543. slit: {
  28544. height: math.unit(0.61, "feet"),
  28545. name: "Slit",
  28546. image: {
  28547. source: "./media/characters/tala-grovehorn/slit.svg"
  28548. }
  28549. },
  28550. },
  28551. [
  28552. ]
  28553. ))
  28554. characterMakers.push(() => makeCharacter(
  28555. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28556. {
  28557. front: {
  28558. height: math.unit(7 + 7 / 12, "feet"),
  28559. weight: math.unit(225, "lb"),
  28560. name: "Front",
  28561. image: {
  28562. source: "./media/characters/epona/front.svg",
  28563. extra: 2445 / 2290,
  28564. bottom: 251 / 2696
  28565. }
  28566. },
  28567. back: {
  28568. height: math.unit(7 + 7 / 12, "feet"),
  28569. weight: math.unit(225, "lb"),
  28570. name: "Back",
  28571. image: {
  28572. source: "./media/characters/epona/back.svg",
  28573. extra: 2546 / 2408,
  28574. bottom: 44 / 2589
  28575. }
  28576. },
  28577. genitals: {
  28578. height: math.unit(1.5, "feet"),
  28579. name: "Genitals",
  28580. image: {
  28581. source: "./media/characters/epona/genitals.svg"
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(7 + 7 / 12, "feet"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(7, "feet"),
  28598. weight: math.unit(518, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/avia-bloodbourn/front.svg",
  28602. extra: 1466 / 1350,
  28603. bottom: 65 / 1527
  28604. }
  28605. },
  28606. },
  28607. [
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(9.35, "feet"),
  28615. weight: math.unit(600, "lb"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/amera/front.svg",
  28619. extra: 891 / 818,
  28620. bottom: 30 / 922.7
  28621. }
  28622. },
  28623. back: {
  28624. height: math.unit(9.35, "feet"),
  28625. weight: math.unit(600, "lb"),
  28626. name: "Back",
  28627. image: {
  28628. source: "./media/characters/amera/back.svg",
  28629. extra: 876 / 824,
  28630. bottom: 6.8 / 884
  28631. }
  28632. },
  28633. dick: {
  28634. height: math.unit(2.14, "feet"),
  28635. name: "Dick",
  28636. image: {
  28637. source: "./media/characters/amera/dick.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(9.35, "feet"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28651. {
  28652. kneeling: {
  28653. height: math.unit(3 + 4 / 12, "feet"),
  28654. weight: math.unit(90, "lb"),
  28655. name: "Kneeling",
  28656. image: {
  28657. source: "./media/characters/rosewen/kneeling.svg",
  28658. extra: 1835 / 1571,
  28659. bottom: 27.7 / 1862
  28660. }
  28661. },
  28662. },
  28663. [
  28664. {
  28665. name: "Normal",
  28666. height: math.unit(3 + 4 / 12, "feet"),
  28667. default: true
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28673. {
  28674. front: {
  28675. height: math.unit(5 + 10 / 12, "feet"),
  28676. weight: math.unit(200, "lb"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/sabah/front.svg",
  28680. extra: 849 / 763,
  28681. bottom: 33.9 / 881
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(5 + 10 / 12, "feet"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28695. {
  28696. front: {
  28697. height: math.unit(3 + 5 / 12, "feet"),
  28698. weight: math.unit(40, "kg"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/purple-flame/front.svg",
  28702. extra: 1577 / 1412,
  28703. bottom: 97 / 1694
  28704. }
  28705. },
  28706. frontDressed: {
  28707. height: math.unit(3 + 5 / 12, "feet"),
  28708. weight: math.unit(40, "kg"),
  28709. name: "Front (Dressed)",
  28710. image: {
  28711. source: "./media/characters/purple-flame/front-dressed.svg",
  28712. extra: 1577 / 1412,
  28713. bottom: 97 / 1694
  28714. }
  28715. },
  28716. headphones: {
  28717. height: math.unit(0.85, "feet"),
  28718. name: "Headphones",
  28719. image: {
  28720. source: "./media/characters/purple-flame/headphones.svg"
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Really Small",
  28727. height: math.unit(5, "cm")
  28728. },
  28729. {
  28730. name: "Micro",
  28731. height: math.unit(1 + 5 / 12, "feet")
  28732. },
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(3 + 5 / 12, "feet"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Minimacro",
  28740. height: math.unit(125, "feet")
  28741. },
  28742. {
  28743. name: "Macro",
  28744. height: math.unit(0.5, "miles")
  28745. },
  28746. {
  28747. name: "Megamacro",
  28748. height: math.unit(50, "miles")
  28749. },
  28750. {
  28751. name: "Gigantic",
  28752. height: math.unit(750, "miles")
  28753. },
  28754. {
  28755. name: "Planetary",
  28756. height: math.unit(15000, "miles")
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(14, "feet"),
  28765. weight: math.unit(959, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/arsenal/front.svg",
  28769. extra: 2357 / 2157,
  28770. bottom: 93 / 2458
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(14, "feet"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(6, "feet"),
  28787. weight: math.unit(150, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/adira/front.svg",
  28791. extra: 1078 / 1029,
  28792. bottom: 87 / 1166
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Micro",
  28799. height: math.unit(4, "inches"),
  28800. default: true
  28801. },
  28802. {
  28803. name: "Macro",
  28804. height: math.unit(50, "feet")
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(16, "feet"),
  28813. weight: math.unit(1000, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/grim/front.svg",
  28817. extra: 622 / 614,
  28818. bottom: 18.1 / 642
  28819. }
  28820. },
  28821. back: {
  28822. height: math.unit(16, "feet"),
  28823. weight: math.unit(1000, "lb"),
  28824. name: "Back",
  28825. image: {
  28826. source: "./media/characters/grim/back.svg",
  28827. extra: 610.6 / 602,
  28828. bottom: 40.8 / 652
  28829. }
  28830. },
  28831. hunched: {
  28832. height: math.unit(9.75, "feet"),
  28833. weight: math.unit(1000, "lb"),
  28834. name: "Hunched",
  28835. image: {
  28836. source: "./media/characters/grim/hunched.svg",
  28837. extra: 304 / 297,
  28838. bottom: 35.4 / 394
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(16, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(2.3, "meters"),
  28855. weight: math.unit(300, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/sinja/front-sfw.svg",
  28859. extra: 1393 / 1294,
  28860. bottom: 70 / 1463
  28861. }
  28862. },
  28863. frontNsfw: {
  28864. height: math.unit(2.3, "meters"),
  28865. weight: math.unit(300, "lb"),
  28866. name: "Front (NSFW)",
  28867. image: {
  28868. source: "./media/characters/sinja/front-nsfw.svg",
  28869. extra: 1393 / 1294,
  28870. bottom: 70 / 1463
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(2.3, "meters"),
  28875. weight: math.unit(300, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/sinja/back.svg",
  28879. extra: 1393 / 1294,
  28880. bottom: 70 / 1463
  28881. }
  28882. },
  28883. head: {
  28884. height: math.unit(1.771, "feet"),
  28885. name: "Head",
  28886. image: {
  28887. source: "./media/characters/sinja/head.svg"
  28888. }
  28889. },
  28890. slit: {
  28891. height: math.unit(0.8, "feet"),
  28892. name: "Slit",
  28893. image: {
  28894. source: "./media/characters/sinja/slit.svg"
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(2.3, "meters")
  28902. },
  28903. {
  28904. name: "Macro",
  28905. height: math.unit(91, "meters"),
  28906. default: true
  28907. },
  28908. {
  28909. name: "Megamacro",
  28910. height: math.unit(91440, "meters")
  28911. },
  28912. {
  28913. name: "Gigamacro",
  28914. height: math.unit(60960000, "meters")
  28915. },
  28916. {
  28917. name: "Teramacro",
  28918. height: math.unit(9144000000, "meters")
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(1.7, "meters"),
  28927. weight: math.unit(130, "lb"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/kyu/front.svg",
  28931. extra: 415 / 395,
  28932. bottom: 5 / 420
  28933. }
  28934. },
  28935. head: {
  28936. height: math.unit(1.75, "feet"),
  28937. name: "Head",
  28938. image: {
  28939. source: "./media/characters/kyu/head.svg"
  28940. }
  28941. },
  28942. foot: {
  28943. height: math.unit(0.81, "feet"),
  28944. name: "Foot",
  28945. image: {
  28946. source: "./media/characters/kyu/foot.svg"
  28947. }
  28948. },
  28949. },
  28950. [
  28951. {
  28952. name: "Normal",
  28953. height: math.unit(1.7, "meters")
  28954. },
  28955. {
  28956. name: "Macro",
  28957. height: math.unit(131, "feet"),
  28958. default: true
  28959. },
  28960. {
  28961. name: "Megamacro",
  28962. height: math.unit(91440, "meters")
  28963. },
  28964. {
  28965. name: "Gigamacro",
  28966. height: math.unit(60960000, "meters")
  28967. },
  28968. {
  28969. name: "Teramacro",
  28970. height: math.unit(9144000000, "meters")
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(7 + 1 / 12, "feet"),
  28979. weight: math.unit(250, "lb"),
  28980. name: "Front",
  28981. image: {
  28982. source: "./media/characters/joey/front.svg",
  28983. extra: 1791 / 1537,
  28984. bottom: 28 / 1816
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Micro",
  28991. height: math.unit(3, "inches")
  28992. },
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(7 + 1 / 12, "feet"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(165, "cm"),
  29005. weight: math.unit(140, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/sam-evans/front.svg",
  29009. extra: 3417 / 3230,
  29010. bottom: 41.3 / 3417
  29011. }
  29012. },
  29013. frontSixTails: {
  29014. height: math.unit(165, "cm"),
  29015. weight: math.unit(140, "lb"),
  29016. name: "Front-six-tails",
  29017. image: {
  29018. source: "./media/characters/sam-evans/front-six-tails.svg",
  29019. extra: 3417 / 3230,
  29020. bottom: 41.3 / 3417
  29021. }
  29022. },
  29023. back: {
  29024. height: math.unit(165, "cm"),
  29025. weight: math.unit(140, "lb"),
  29026. name: "Back",
  29027. image: {
  29028. source: "./media/characters/sam-evans/back.svg",
  29029. extra: 3227 / 3032,
  29030. bottom: 6.8 / 3234
  29031. }
  29032. },
  29033. face: {
  29034. height: math.unit(0.68, "feet"),
  29035. name: "Face",
  29036. image: {
  29037. source: "./media/characters/sam-evans/face.svg"
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Normal",
  29044. height: math.unit(165, "cm"),
  29045. default: true
  29046. },
  29047. {
  29048. name: "Macro",
  29049. height: math.unit(100, "meters")
  29050. },
  29051. {
  29052. name: "Macro+",
  29053. height: math.unit(800, "meters")
  29054. },
  29055. {
  29056. name: "Macro++",
  29057. height: math.unit(3, "km")
  29058. },
  29059. {
  29060. name: "Macro+++",
  29061. height: math.unit(30, "km")
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29067. {
  29068. front: {
  29069. height: math.unit(10, "feet"),
  29070. weight: math.unit(750, "lb"),
  29071. name: "Front",
  29072. image: {
  29073. source: "./media/characters/juliet-a/front.svg",
  29074. extra: 1766 / 1720,
  29075. bottom: 43 / 1809
  29076. }
  29077. },
  29078. back: {
  29079. height: math.unit(10, "feet"),
  29080. weight: math.unit(750, "lb"),
  29081. name: "Back",
  29082. image: {
  29083. source: "./media/characters/juliet-a/back.svg",
  29084. extra: 1781 / 1734,
  29085. bottom: 35 / 1810,
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(10, "feet"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Dragon Form",
  29097. height: math.unit(250, "feet")
  29098. },
  29099. {
  29100. name: "Macro",
  29101. height: math.unit(1000, "feet")
  29102. },
  29103. {
  29104. name: "Megamacro",
  29105. height: math.unit(10000, "feet")
  29106. }
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29111. {
  29112. regular: {
  29113. height: math.unit(7 + 3 / 12, "feet"),
  29114. weight: math.unit(260, "lb"),
  29115. name: "Regular",
  29116. image: {
  29117. source: "./media/characters/wild/regular.svg",
  29118. extra: 97.45 / 92,
  29119. bottom: 6.8 / 104.3
  29120. }
  29121. },
  29122. biggums: {
  29123. height: math.unit(8 + 6 / 12, "feet"),
  29124. weight: math.unit(425, "lb"),
  29125. name: "Biggums",
  29126. image: {
  29127. source: "./media/characters/wild/biggums.svg",
  29128. extra: 97.45 / 92,
  29129. bottom: 7.5 / 132.34
  29130. }
  29131. },
  29132. mawRegular: {
  29133. height: math.unit(1.24, "feet"),
  29134. name: "Maw (Regular)",
  29135. image: {
  29136. source: "./media/characters/wild/maw.svg"
  29137. }
  29138. },
  29139. mawBiggums: {
  29140. height: math.unit(1.47, "feet"),
  29141. name: "Maw (Biggums)",
  29142. image: {
  29143. source: "./media/characters/wild/maw.svg"
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(7 + 3 / 12, "feet"),
  29151. default: true
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29157. {
  29158. front: {
  29159. height: math.unit(2.5, "meters"),
  29160. weight: math.unit(200, "kg"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/vidar/front.svg",
  29164. extra: 2994 / 2795,
  29165. bottom: 56 / 3061
  29166. }
  29167. },
  29168. back: {
  29169. height: math.unit(2.5, "meters"),
  29170. weight: math.unit(200, "kg"),
  29171. name: "Back",
  29172. image: {
  29173. source: "./media/characters/vidar/back.svg",
  29174. extra: 3131 / 2928,
  29175. bottom: 13.5 / 3141.5
  29176. }
  29177. },
  29178. feral: {
  29179. height: math.unit(2.5, "meters"),
  29180. weight: math.unit(2000, "kg"),
  29181. name: "Feral",
  29182. image: {
  29183. source: "./media/characters/vidar/feral.svg",
  29184. extra: 2790 / 1765,
  29185. bottom: 6 / 2796
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(2.5, "meters"),
  29193. default: true
  29194. },
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(100, "meters")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(5 + 9 / 12, "feet"),
  29206. weight: math.unit(120, "lb"),
  29207. name: "Front",
  29208. image: {
  29209. source: "./media/characters/ash/front.svg",
  29210. extra: 2189 / 1961,
  29211. bottom: 5.2 / 2194
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Normal",
  29218. height: math.unit(5 + 9 / 12, "feet"),
  29219. default: true
  29220. },
  29221. ]
  29222. ))
  29223. characterMakers.push(() => makeCharacter(
  29224. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29225. {
  29226. front: {
  29227. height: math.unit(9, "feet"),
  29228. weight: math.unit(10000, "lb"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/gygabite/front.svg",
  29232. bottom: 31.7 / 537.8,
  29233. extra: 505 / 370
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(9, "feet"),
  29241. default: true
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(12, "feet"),
  29250. weight: math.unit(4000, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/p0tat0/front.svg",
  29254. extra: 1065 / 921,
  29255. bottom: 55.7 / 1121.25
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(12, "feet"),
  29263. default: true
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29269. {
  29270. side: {
  29271. height: math.unit(6.5, "feet"),
  29272. weight: math.unit(800, "lb"),
  29273. name: "Side",
  29274. image: {
  29275. source: "./media/characters/dusk/side.svg",
  29276. extra: 615 / 373,
  29277. bottom: 53 / 664
  29278. }
  29279. },
  29280. sitting: {
  29281. height: math.unit(7, "feet"),
  29282. weight: math.unit(800, "lb"),
  29283. name: "Sitting",
  29284. image: {
  29285. source: "./media/characters/dusk/sitting.svg",
  29286. extra: 753 / 425,
  29287. bottom: 33 / 774
  29288. }
  29289. },
  29290. head: {
  29291. height: math.unit(6.1, "feet"),
  29292. name: "Head",
  29293. image: {
  29294. source: "./media/characters/dusk/head.svg"
  29295. }
  29296. },
  29297. },
  29298. [
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(7, "feet"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(15, "feet"),
  29311. weight: math.unit(7000, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/jay-direwolf/front.svg",
  29315. extra: 1810 / 1732,
  29316. bottom: 66 / 1892
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(15, "feet"),
  29324. default: true
  29325. },
  29326. ]
  29327. ))
  29328. characterMakers.push(() => makeCharacter(
  29329. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29330. {
  29331. front: {
  29332. height: math.unit(4 + 9 / 12, "feet"),
  29333. weight: math.unit(130, "lb"),
  29334. name: "Front",
  29335. image: {
  29336. source: "./media/characters/anchovie/front.svg",
  29337. extra: 382 / 350,
  29338. bottom: 25 / 409
  29339. }
  29340. },
  29341. back: {
  29342. height: math.unit(4 + 9 / 12, "feet"),
  29343. weight: math.unit(130, "lb"),
  29344. name: "Back",
  29345. image: {
  29346. source: "./media/characters/anchovie/back.svg",
  29347. extra: 385 / 352,
  29348. bottom: 16.6 / 402
  29349. }
  29350. },
  29351. frontDressed: {
  29352. height: math.unit(4 + 9 / 12, "feet"),
  29353. weight: math.unit(130, "lb"),
  29354. name: "Front (Dressed)",
  29355. image: {
  29356. source: "./media/characters/anchovie/front-dressed.svg",
  29357. extra: 382 / 350,
  29358. bottom: 25 / 409
  29359. }
  29360. },
  29361. backDressed: {
  29362. height: math.unit(4 + 9 / 12, "feet"),
  29363. weight: math.unit(130, "lb"),
  29364. name: "Back (Dressed)",
  29365. image: {
  29366. source: "./media/characters/anchovie/back-dressed.svg",
  29367. extra: 385 / 352,
  29368. bottom: 16.6 / 402
  29369. }
  29370. },
  29371. },
  29372. [
  29373. {
  29374. name: "Micro",
  29375. height: math.unit(6.4, "inches")
  29376. },
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(4 + 9 / 12, "feet"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(2, "meters"),
  29389. weight: math.unit(180, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/acidrenamon/front.svg",
  29393. extra: 987 / 890,
  29394. bottom: 22.8 / 1009
  29395. }
  29396. },
  29397. back: {
  29398. height: math.unit(2, "meters"),
  29399. weight: math.unit(180, "lb"),
  29400. name: "Back",
  29401. image: {
  29402. source: "./media/characters/acidrenamon/back.svg",
  29403. extra: 983 / 891,
  29404. bottom: 8.4 / 992
  29405. }
  29406. },
  29407. head: {
  29408. height: math.unit(1.92, "feet"),
  29409. name: "Head",
  29410. image: {
  29411. source: "./media/characters/acidrenamon/head.svg"
  29412. }
  29413. },
  29414. rump: {
  29415. height: math.unit(1.72, "feet"),
  29416. name: "Rump",
  29417. image: {
  29418. source: "./media/characters/acidrenamon/rump.svg"
  29419. }
  29420. },
  29421. tail: {
  29422. height: math.unit(4.2, "feet"),
  29423. name: "Tail",
  29424. image: {
  29425. source: "./media/characters/acidrenamon/tail.svg"
  29426. }
  29427. },
  29428. },
  29429. [
  29430. {
  29431. name: "Normal",
  29432. height: math.unit(2, "meters"),
  29433. default: true
  29434. },
  29435. {
  29436. name: "Minimacro",
  29437. height: math.unit(7, "meters")
  29438. },
  29439. {
  29440. name: "Macro",
  29441. height: math.unit(200, "meters")
  29442. },
  29443. {
  29444. name: "Gigamacro",
  29445. height: math.unit(0.2, "earths")
  29446. },
  29447. ]
  29448. ))
  29449. characterMakers.push(() => makeCharacter(
  29450. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29451. {
  29452. front: {
  29453. height: math.unit(152, "feet"),
  29454. name: "Front",
  29455. image: {
  29456. source: "./media/characters/kenzie-lee/front.svg",
  29457. extra: 1869/1774,
  29458. bottom: 128/1997
  29459. }
  29460. },
  29461. side: {
  29462. height: math.unit(86, "feet"),
  29463. name: "Side",
  29464. image: {
  29465. source: "./media/characters/kenzie-lee/side.svg",
  29466. extra: 930/815,
  29467. bottom: 177/1107
  29468. }
  29469. },
  29470. paw: {
  29471. height: math.unit(15, "feet"),
  29472. name: "Paw",
  29473. image: {
  29474. source: "./media/characters/kenzie-lee/paw.svg"
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Kenzie Flea",
  29481. height: math.unit(2, "mm"),
  29482. default: true
  29483. },
  29484. {
  29485. name: "Micro",
  29486. height: math.unit(2, "inches")
  29487. },
  29488. {
  29489. name: "Normal",
  29490. height: math.unit(152, "feet")
  29491. },
  29492. {
  29493. name: "Megamacro",
  29494. height: math.unit(7, "miles")
  29495. },
  29496. {
  29497. name: "Gigamacro",
  29498. height: math.unit(8000, "miles")
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(6, "feet"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/withers/front.svg",
  29510. extra: 1935/1760,
  29511. bottom: 72/2007
  29512. }
  29513. },
  29514. back: {
  29515. height: math.unit(6, "feet"),
  29516. name: "Back",
  29517. image: {
  29518. source: "./media/characters/withers/back.svg",
  29519. extra: 1944/1792,
  29520. bottom: 12/1956
  29521. }
  29522. },
  29523. dressed: {
  29524. height: math.unit(6, "feet"),
  29525. name: "Dressed",
  29526. image: {
  29527. source: "./media/characters/withers/dressed.svg",
  29528. extra: 1937/1765,
  29529. bottom: 73/2010
  29530. }
  29531. },
  29532. phase1: {
  29533. height: math.unit(1.1, "feet"),
  29534. name: "Phase 1",
  29535. image: {
  29536. source: "./media/characters/withers/phase-1.svg",
  29537. extra: 1885/1232,
  29538. bottom: 0/1885
  29539. }
  29540. },
  29541. phase2: {
  29542. height: math.unit(1.05, "feet"),
  29543. name: "Phase 2",
  29544. image: {
  29545. source: "./media/characters/withers/phase-2.svg",
  29546. extra: 1792/1090,
  29547. bottom: 0/1792
  29548. }
  29549. },
  29550. partyWipe: {
  29551. height: math.unit(1.1, "feet"),
  29552. name: "Party Wipe",
  29553. image: {
  29554. source: "./media/characters/withers/party-wipe.svg",
  29555. extra: 1864/1207,
  29556. bottom: 0/1864
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Macro",
  29563. height: math.unit(167, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "Megamacro",
  29568. height: math.unit(15, "miles")
  29569. }
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29574. {
  29575. front: {
  29576. height: math.unit(6 + 7 / 12, "feet"),
  29577. weight: math.unit(250, "lb"),
  29578. name: "Front",
  29579. image: {
  29580. source: "./media/characters/nemoskii/front.svg",
  29581. extra: 2270 / 1734,
  29582. bottom: 86 / 2354
  29583. }
  29584. },
  29585. back: {
  29586. height: math.unit(6 + 7 / 12, "feet"),
  29587. weight: math.unit(250, "lb"),
  29588. name: "Back",
  29589. image: {
  29590. source: "./media/characters/nemoskii/back.svg",
  29591. extra: 1845 / 1788,
  29592. bottom: 10.5 / 1852
  29593. }
  29594. },
  29595. head: {
  29596. height: math.unit(1.31, "feet"),
  29597. name: "Head",
  29598. image: {
  29599. source: "./media/characters/nemoskii/head.svg"
  29600. }
  29601. },
  29602. },
  29603. [
  29604. {
  29605. name: "Micro",
  29606. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29607. },
  29608. {
  29609. name: "Normal",
  29610. height: math.unit(6 + 7 / 12, "feet"),
  29611. default: true
  29612. },
  29613. {
  29614. name: "Macro",
  29615. height: math.unit((6 + 7 / 12) * 150, "feet")
  29616. },
  29617. {
  29618. name: "Macro+",
  29619. height: math.unit((6 + 7 / 12) * 500, "feet")
  29620. },
  29621. {
  29622. name: "Megamacro",
  29623. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(1, "mile"),
  29632. weight: math.unit(265261.9, "lb"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/shui/front.svg",
  29636. extra: 1633 / 1564,
  29637. bottom: 91.5 / 1726
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Macro",
  29644. height: math.unit(1, "mile"),
  29645. default: true
  29646. },
  29647. ]
  29648. ))
  29649. characterMakers.push(() => makeCharacter(
  29650. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29651. {
  29652. front: {
  29653. height: math.unit(12 + 6 / 12, "feet"),
  29654. weight: math.unit(1342, "lb"),
  29655. name: "Front",
  29656. image: {
  29657. source: "./media/characters/arokh-takakura/front.svg",
  29658. extra: 1089 / 1043,
  29659. bottom: 77.4 / 1176.7
  29660. }
  29661. },
  29662. back: {
  29663. height: math.unit(12 + 6 / 12, "feet"),
  29664. weight: math.unit(1342, "lb"),
  29665. name: "Back",
  29666. image: {
  29667. source: "./media/characters/arokh-takakura/back.svg",
  29668. extra: 1046 / 1019,
  29669. bottom: 102 / 1150
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Big",
  29676. height: math.unit(12 + 6 / 12, "feet"),
  29677. default: true
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(5 + 6 / 12, "feet"),
  29686. weight: math.unit(150, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/theo/front.svg",
  29690. extra: 1184 / 1131,
  29691. bottom: 7.4 / 1191
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Micro",
  29698. height: math.unit(5, "inches")
  29699. },
  29700. {
  29701. name: "Normal",
  29702. height: math.unit(5 + 6 / 12, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29709. {
  29710. front: {
  29711. height: math.unit(5 + 9 / 12, "feet"),
  29712. weight: math.unit(130, "lb"),
  29713. name: "Front",
  29714. image: {
  29715. source: "./media/characters/cecelia-swift/front.svg",
  29716. extra: 502 / 484,
  29717. bottom: 23 / 523
  29718. }
  29719. },
  29720. back: {
  29721. height: math.unit(5 + 9 / 12, "feet"),
  29722. weight: math.unit(130, "lb"),
  29723. name: "Back",
  29724. image: {
  29725. source: "./media/characters/cecelia-swift/back.svg",
  29726. extra: 499 / 485,
  29727. bottom: 12 / 511
  29728. }
  29729. },
  29730. head: {
  29731. height: math.unit(0.90, "feet"),
  29732. name: "Head",
  29733. image: {
  29734. source: "./media/characters/cecelia-swift/head.svg"
  29735. }
  29736. },
  29737. rump: {
  29738. height: math.unit(1.75, "feet"),
  29739. name: "Rump",
  29740. image: {
  29741. source: "./media/characters/cecelia-swift/rump.svg"
  29742. }
  29743. },
  29744. },
  29745. [
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(5 + 9 / 12, "feet"),
  29749. default: true
  29750. },
  29751. {
  29752. name: "Big",
  29753. height: math.unit(50, "feet")
  29754. },
  29755. {
  29756. name: "Macro",
  29757. height: math.unit(100, "feet")
  29758. },
  29759. {
  29760. name: "Macro+",
  29761. height: math.unit(500, "feet")
  29762. },
  29763. {
  29764. name: "Macro++",
  29765. height: math.unit(1000, "feet")
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(6, "feet"),
  29774. weight: math.unit(150, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/kaunan/front.svg",
  29778. extra: 2890 / 2523,
  29779. bottom: 49 / 2939
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Macro",
  29786. height: math.unit(150, "feet"),
  29787. default: true
  29788. },
  29789. ]
  29790. ))
  29791. characterMakers.push(() => makeCharacter(
  29792. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29793. {
  29794. dressed: {
  29795. height: math.unit(175, "cm"),
  29796. weight: math.unit(60, "kg"),
  29797. name: "Dressed",
  29798. image: {
  29799. source: "./media/characters/fei/dressed.svg",
  29800. extra: 1402/1278,
  29801. bottom: 27/1429
  29802. }
  29803. },
  29804. nude: {
  29805. height: math.unit(175, "cm"),
  29806. weight: math.unit(60, "kg"),
  29807. name: "Nude",
  29808. image: {
  29809. source: "./media/characters/fei/nude.svg",
  29810. extra: 1402/1278,
  29811. bottom: 27/1429
  29812. }
  29813. },
  29814. heels: {
  29815. height: math.unit(0.466, "feet"),
  29816. name: "Heels",
  29817. image: {
  29818. source: "./media/characters/fei/heels.svg",
  29819. extra: 156/152,
  29820. bottom: 28/184
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Mortal",
  29827. height: math.unit(175, "cm")
  29828. },
  29829. {
  29830. name: "Normal",
  29831. height: math.unit(3500, "m")
  29832. },
  29833. {
  29834. name: "Stroll",
  29835. height: math.unit(18.4, "km"),
  29836. default: true
  29837. },
  29838. {
  29839. name: "Showoff",
  29840. height: math.unit(175, "km")
  29841. },
  29842. ]
  29843. ))
  29844. characterMakers.push(() => makeCharacter(
  29845. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29846. {
  29847. front: {
  29848. height: math.unit(7, "feet"),
  29849. weight: math.unit(1000, "kg"),
  29850. name: "Front",
  29851. image: {
  29852. source: "./media/characters/edrax/front.svg",
  29853. extra: 2838 / 2550,
  29854. bottom: 130 / 2968
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Small",
  29861. height: math.unit(7, "feet")
  29862. },
  29863. {
  29864. name: "Normal",
  29865. height: math.unit(1500, "meters")
  29866. },
  29867. {
  29868. name: "Mega",
  29869. height: math.unit(12000000, "km"),
  29870. default: true
  29871. },
  29872. {
  29873. name: "Megamacro",
  29874. height: math.unit(10600000, "lightyears")
  29875. },
  29876. {
  29877. name: "Hypermacro",
  29878. height: math.unit(256, "yottameters")
  29879. },
  29880. ]
  29881. ))
  29882. characterMakers.push(() => makeCharacter(
  29883. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29884. {
  29885. front: {
  29886. height: math.unit(10, "feet"),
  29887. weight: math.unit(750, "lb"),
  29888. name: "Front",
  29889. image: {
  29890. source: "./media/characters/clove/front.svg",
  29891. extra: 1918/1751,
  29892. bottom: 52/1970
  29893. }
  29894. },
  29895. back: {
  29896. height: math.unit(10, "feet"),
  29897. weight: math.unit(750, "lb"),
  29898. name: "Back",
  29899. image: {
  29900. source: "./media/characters/clove/back.svg",
  29901. extra: 1912/1747,
  29902. bottom: 50/1962
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Normal",
  29909. height: math.unit(10, "feet"),
  29910. default: true
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(4, "feet"),
  29919. weight: math.unit(50, "lb"),
  29920. name: "Front",
  29921. image: {
  29922. source: "./media/characters/alex-rabbit/front.svg",
  29923. extra: 507 / 458,
  29924. bottom: 18.5 / 527
  29925. }
  29926. },
  29927. back: {
  29928. height: math.unit(4, "feet"),
  29929. weight: math.unit(50, "lb"),
  29930. name: "Back",
  29931. image: {
  29932. source: "./media/characters/alex-rabbit/back.svg",
  29933. extra: 502 / 460,
  29934. bottom: 18.9 / 521
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(4, "feet"),
  29942. default: true
  29943. },
  29944. ]
  29945. ))
  29946. characterMakers.push(() => makeCharacter(
  29947. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29948. {
  29949. front: {
  29950. height: math.unit(1 + 3 / 12, "feet"),
  29951. weight: math.unit(80, "lb"),
  29952. name: "Front",
  29953. image: {
  29954. source: "./media/characters/zander-rose/front.svg",
  29955. extra: 916 / 797,
  29956. bottom: 17 / 933
  29957. }
  29958. },
  29959. back: {
  29960. height: math.unit(1 + 3 / 12, "feet"),
  29961. weight: math.unit(80, "lb"),
  29962. name: "Back",
  29963. image: {
  29964. source: "./media/characters/zander-rose/back.svg",
  29965. extra: 903 / 779,
  29966. bottom: 31 / 934
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(1 + 3 / 12, "feet"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29980. {
  29981. anthro: {
  29982. height: math.unit(6, "feet"),
  29983. weight: math.unit(150, "lb"),
  29984. name: "Anthro",
  29985. image: {
  29986. source: "./media/characters/razz/anthro.svg",
  29987. extra: 1437 / 1343,
  29988. bottom: 48 / 1485
  29989. }
  29990. },
  29991. feral: {
  29992. height: math.unit(6, "feet"),
  29993. weight: math.unit(150, "lb"),
  29994. name: "Feral",
  29995. image: {
  29996. source: "./media/characters/razz/feral.svg",
  29997. extra: 2569 / 1385,
  29998. bottom: 95 / 2664
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Normal",
  30005. height: math.unit(6, "feet"),
  30006. default: true
  30007. },
  30008. ]
  30009. ))
  30010. characterMakers.push(() => makeCharacter(
  30011. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30012. {
  30013. front: {
  30014. height: math.unit(9 + 4 / 12, "feet"),
  30015. weight: math.unit(500, "lb"),
  30016. name: "Front",
  30017. image: {
  30018. source: "./media/characters/morrigan/front.svg",
  30019. extra: 2707 / 2579,
  30020. bottom: 156 / 2863
  30021. }
  30022. },
  30023. },
  30024. [
  30025. {
  30026. name: "Normal",
  30027. height: math.unit(9 + 4 / 12, "feet"),
  30028. default: true
  30029. },
  30030. ]
  30031. ))
  30032. characterMakers.push(() => makeCharacter(
  30033. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30034. {
  30035. front: {
  30036. height: math.unit(5, "stories"),
  30037. weight: math.unit(4000, "lb"),
  30038. name: "Front",
  30039. image: {
  30040. source: "./media/characters/jenene/front.svg",
  30041. extra: 1780 / 1710,
  30042. bottom: 57 / 1837
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Normal",
  30049. height: math.unit(5, "stories"),
  30050. default: true
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30056. {
  30057. taurSfw: {
  30058. height: math.unit(10, "meters"),
  30059. weight: math.unit(17500, "kg"),
  30060. name: "Taur",
  30061. image: {
  30062. source: "./media/characters/faey/taur-sfw.svg",
  30063. extra: 1200 / 968,
  30064. bottom: 41 / 1241
  30065. }
  30066. },
  30067. chestmaw: {
  30068. height: math.unit(2.01, "meters"),
  30069. name: "Chestmaw",
  30070. image: {
  30071. source: "./media/characters/faey/chestmaw.svg"
  30072. }
  30073. },
  30074. foot: {
  30075. height: math.unit(2.43, "meters"),
  30076. name: "Foot",
  30077. image: {
  30078. source: "./media/characters/faey/foot.svg"
  30079. }
  30080. },
  30081. jaws: {
  30082. height: math.unit(1.66, "meters"),
  30083. name: "Jaws",
  30084. image: {
  30085. source: "./media/characters/faey/jaws.svg"
  30086. }
  30087. },
  30088. tongues: {
  30089. height: math.unit(2.01, "meters"),
  30090. name: "Tongues",
  30091. image: {
  30092. source: "./media/characters/faey/tongues.svg"
  30093. }
  30094. },
  30095. },
  30096. [
  30097. {
  30098. name: "Small",
  30099. height: math.unit(10, "meters"),
  30100. default: true
  30101. },
  30102. {
  30103. name: "Big",
  30104. height: math.unit(500000, "km")
  30105. },
  30106. ]
  30107. ))
  30108. characterMakers.push(() => makeCharacter(
  30109. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30110. {
  30111. front: {
  30112. height: math.unit(7, "feet"),
  30113. weight: math.unit(275, "lb"),
  30114. name: "Front",
  30115. image: {
  30116. source: "./media/characters/roku/front.svg",
  30117. extra: 903 / 878,
  30118. bottom: 37 / 940
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Normal",
  30125. height: math.unit(7, "feet"),
  30126. default: true
  30127. },
  30128. {
  30129. name: "Macro",
  30130. height: math.unit(500, "feet")
  30131. },
  30132. {
  30133. name: "Megamacro",
  30134. height: math.unit(200, "miles")
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(6 + 2 / 12, "feet"),
  30143. weight: math.unit(150, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/lira/front.svg",
  30147. extra: 1727 / 1605,
  30148. bottom: 26 / 1753
  30149. }
  30150. },
  30151. back: {
  30152. height: math.unit(6 + 2 / 12, "feet"),
  30153. weight: math.unit(150, "lb"),
  30154. name: "Back",
  30155. image: {
  30156. source: "./media/characters/lira/back.svg",
  30157. extra: 1713/1621,
  30158. bottom: 20/1733
  30159. }
  30160. },
  30161. hand: {
  30162. height: math.unit(0.75, "feet"),
  30163. name: "Hand",
  30164. image: {
  30165. source: "./media/characters/lira/hand.svg"
  30166. }
  30167. },
  30168. maw: {
  30169. height: math.unit(0.65, "feet"),
  30170. name: "Maw",
  30171. image: {
  30172. source: "./media/characters/lira/maw.svg"
  30173. }
  30174. },
  30175. pawDigi: {
  30176. height: math.unit(1.6, "feet"),
  30177. name: "Paw Digi",
  30178. image: {
  30179. source: "./media/characters/lira/paw-digi.svg"
  30180. }
  30181. },
  30182. pawPlanti: {
  30183. height: math.unit(1.4, "feet"),
  30184. name: "Paw Planti",
  30185. image: {
  30186. source: "./media/characters/lira/paw-planti.svg"
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(6 + 2 / 12, "feet"),
  30194. default: true
  30195. },
  30196. {
  30197. name: "Macro",
  30198. height: math.unit(100, "feet")
  30199. },
  30200. {
  30201. name: "Macro²",
  30202. height: math.unit(1600, "feet")
  30203. },
  30204. {
  30205. name: "Planetary",
  30206. height: math.unit(20, "earths")
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(6, "feet"),
  30215. weight: math.unit(150, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/hadjet/front.svg",
  30219. extra: 1480 / 1346,
  30220. bottom: 26 / 1506
  30221. }
  30222. },
  30223. frontNsfw: {
  30224. height: math.unit(6, "feet"),
  30225. weight: math.unit(150, "lb"),
  30226. name: "Front (NSFW)",
  30227. image: {
  30228. source: "./media/characters/hadjet/front-nsfw.svg",
  30229. extra: 1440 / 1358,
  30230. bottom: 52 / 1492
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(10, "stories"),
  30238. default: true
  30239. },
  30240. {
  30241. name: "Megamacro",
  30242. height: math.unit(1.5, "miles")
  30243. },
  30244. {
  30245. name: "Megamacro+",
  30246. height: math.unit(5, "miles")
  30247. },
  30248. ]
  30249. ))
  30250. characterMakers.push(() => makeCharacter(
  30251. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30252. {
  30253. side: {
  30254. height: math.unit(106, "feet"),
  30255. weight: math.unit(500, "tonnes"),
  30256. name: "Side",
  30257. image: {
  30258. source: "./media/characters/kodran/side.svg",
  30259. extra: 553 / 480,
  30260. bottom: 33 / 586
  30261. }
  30262. },
  30263. front: {
  30264. height: math.unit(132, "feet"),
  30265. weight: math.unit(500, "tonnes"),
  30266. name: "Front",
  30267. image: {
  30268. source: "./media/characters/kodran/front.svg",
  30269. extra: 667 / 643,
  30270. bottom: 42 / 709
  30271. }
  30272. },
  30273. flying: {
  30274. height: math.unit(350, "feet"),
  30275. weight: math.unit(500, "tonnes"),
  30276. name: "Flying",
  30277. image: {
  30278. source: "./media/characters/kodran/flying.svg"
  30279. }
  30280. },
  30281. foot: {
  30282. height: math.unit(33, "feet"),
  30283. name: "Foot",
  30284. image: {
  30285. source: "./media/characters/kodran/foot.svg"
  30286. }
  30287. },
  30288. footFront: {
  30289. height: math.unit(19, "feet"),
  30290. name: "Foot (Front)",
  30291. image: {
  30292. source: "./media/characters/kodran/foot-front.svg",
  30293. extra: 261 / 261,
  30294. bottom: 91 / 352
  30295. }
  30296. },
  30297. headFront: {
  30298. height: math.unit(53, "feet"),
  30299. name: "Head (Front)",
  30300. image: {
  30301. source: "./media/characters/kodran/head-front.svg"
  30302. }
  30303. },
  30304. headSide: {
  30305. height: math.unit(65, "feet"),
  30306. name: "Head (Side)",
  30307. image: {
  30308. source: "./media/characters/kodran/head-side.svg"
  30309. }
  30310. },
  30311. throat: {
  30312. height: math.unit(79, "feet"),
  30313. name: "Throat",
  30314. image: {
  30315. source: "./media/characters/kodran/throat.svg"
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Large",
  30322. height: math.unit(106, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30329. {
  30330. side: {
  30331. height: math.unit(11, "feet"),
  30332. weight: math.unit(150, "lb"),
  30333. name: "Side",
  30334. image: {
  30335. source: "./media/characters/pyxaron/side.svg",
  30336. extra: 305 / 195,
  30337. bottom: 17 / 322
  30338. }
  30339. },
  30340. },
  30341. [
  30342. {
  30343. name: "Normal",
  30344. height: math.unit(11, "feet"),
  30345. default: true
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(6, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/meep/front.svg",
  30358. extra: 88 / 80,
  30359. bottom: 6 / 94
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Fun Sized",
  30366. height: math.unit(2, "inches"),
  30367. default: true
  30368. },
  30369. {
  30370. name: "Friend Sized",
  30371. height: math.unit(8, "inches")
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(15, "feet"),
  30380. weight: math.unit(2500, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/holly-rabbit/front.svg",
  30384. extra: 1433 / 1233,
  30385. bottom: 125 / 1558
  30386. }
  30387. },
  30388. dick: {
  30389. height: math.unit(4.6, "feet"),
  30390. name: "Dick",
  30391. image: {
  30392. source: "./media/characters/holly-rabbit/dick.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(15, "feet"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(250, "feet")
  30405. },
  30406. {
  30407. name: "Macro+",
  30408. height: math.unit(2500, "feet")
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30414. {
  30415. front: {
  30416. height: math.unit(3.02, "meters"),
  30417. weight: math.unit(500, "kg"),
  30418. name: "Front",
  30419. image: {
  30420. source: "./media/characters/drena/front.svg",
  30421. extra: 282 / 243,
  30422. bottom: 8 / 290
  30423. }
  30424. },
  30425. side: {
  30426. height: math.unit(3.02, "meters"),
  30427. weight: math.unit(500, "kg"),
  30428. name: "Side",
  30429. image: {
  30430. source: "./media/characters/drena/side.svg",
  30431. extra: 280 / 245,
  30432. bottom: 10 / 290
  30433. }
  30434. },
  30435. back: {
  30436. height: math.unit(3.02, "meters"),
  30437. weight: math.unit(500, "kg"),
  30438. name: "Back",
  30439. image: {
  30440. source: "./media/characters/drena/back.svg",
  30441. extra: 278 / 243,
  30442. bottom: 2 / 280
  30443. }
  30444. },
  30445. foot: {
  30446. height: math.unit(0.75, "meters"),
  30447. name: "Foot",
  30448. image: {
  30449. source: "./media/characters/drena/foot.svg"
  30450. }
  30451. },
  30452. maw: {
  30453. height: math.unit(0.82, "meters"),
  30454. name: "Maw",
  30455. image: {
  30456. source: "./media/characters/drena/maw.svg"
  30457. }
  30458. },
  30459. eating: {
  30460. height: math.unit(0.75, "meters"),
  30461. name: "Eating",
  30462. image: {
  30463. source: "./media/characters/drena/eating.svg"
  30464. }
  30465. },
  30466. rump: {
  30467. height: math.unit(0.93, "meters"),
  30468. name: "Rump",
  30469. image: {
  30470. source: "./media/characters/drena/rump.svg"
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(3.02, "meters"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6 + 4 / 12, "feet"),
  30487. weight: math.unit(250, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/remmyzilla/front.svg",
  30491. extra: 4033 / 3588,
  30492. bottom: 123 / 4156
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(6 + 4 / 12, "feet"),
  30497. weight: math.unit(250, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/remmyzilla/back.svg",
  30501. extra: 2687 / 2555,
  30502. bottom: 48 / 2735
  30503. }
  30504. },
  30505. paw: {
  30506. height: math.unit(1.73, "feet"),
  30507. name: "Paw",
  30508. image: {
  30509. source: "./media/characters/remmyzilla/paw.svg"
  30510. },
  30511. extraAttributes: {
  30512. "toeSize": {
  30513. name: "Toe Size",
  30514. power: 2,
  30515. type: "area",
  30516. base: math.unit(0.0035, "m^2")
  30517. },
  30518. "padSize": {
  30519. name: "Pad Size",
  30520. power: 2,
  30521. type: "area",
  30522. base: math.unit(0.015, "m^2")
  30523. },
  30524. "pawsize": {
  30525. name: "Paw Size",
  30526. power: 2,
  30527. type: "area",
  30528. base: math.unit(0.072, "m^2")
  30529. },
  30530. }
  30531. },
  30532. maw: {
  30533. height: math.unit(1.73, "feet"),
  30534. name: "Maw",
  30535. image: {
  30536. source: "./media/characters/remmyzilla/maw.svg"
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Normal",
  30543. height: math.unit(6 + 4 / 12, "feet")
  30544. },
  30545. {
  30546. name: "Minimacro",
  30547. height: math.unit(12 + 8 / 12, "feet")
  30548. },
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(640, "feet"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "Megamacro",
  30556. height: math.unit(6400, "feet")
  30557. },
  30558. {
  30559. name: "Gigamacro",
  30560. height: math.unit(64000, "miles")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(2.5, "meters"),
  30569. weight: math.unit(300, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/lawrence/front.svg",
  30573. extra: 357 / 335,
  30574. bottom: 30 / 387
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(2.5, "meters"),
  30579. weight: math.unit(300, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/lawrence/back.svg",
  30583. extra: 357 / 338,
  30584. bottom: 16 / 373
  30585. }
  30586. },
  30587. head: {
  30588. height: math.unit(0.9, "meter"),
  30589. name: "Head",
  30590. image: {
  30591. source: "./media/characters/lawrence/head.svg"
  30592. }
  30593. },
  30594. maw: {
  30595. height: math.unit(0.7, "meter"),
  30596. name: "Maw",
  30597. image: {
  30598. source: "./media/characters/lawrence/maw.svg"
  30599. }
  30600. },
  30601. footBottom: {
  30602. height: math.unit(0.5, "meter"),
  30603. name: "Foot (Bottom)",
  30604. image: {
  30605. source: "./media/characters/lawrence/foot-bottom.svg"
  30606. }
  30607. },
  30608. footTop: {
  30609. height: math.unit(0.5, "meter"),
  30610. name: "Foot (Top)",
  30611. image: {
  30612. source: "./media/characters/lawrence/foot-top.svg"
  30613. }
  30614. },
  30615. },
  30616. [
  30617. {
  30618. name: "Normal",
  30619. height: math.unit(2.5, "meters"),
  30620. default: true
  30621. },
  30622. {
  30623. name: "Macro",
  30624. height: math.unit(95, "meters")
  30625. },
  30626. {
  30627. name: "Megamacro",
  30628. height: math.unit(150, "km")
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30634. {
  30635. front: {
  30636. height: math.unit(4.2, "meters"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/sydney/front.svg",
  30640. extra: 1323 / 1277,
  30641. bottom: 111 / 1434
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(4.2, "meters"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30655. {
  30656. back: {
  30657. height: math.unit(201, "feet"),
  30658. name: "Back",
  30659. image: {
  30660. source: "./media/characters/jessica/back.svg",
  30661. extra: 273 / 259,
  30662. bottom: 7 / 280
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Normal",
  30669. height: math.unit(201, "feet"),
  30670. default: true
  30671. },
  30672. {
  30673. name: "Megamacro",
  30674. height: math.unit(8, "miles")
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30680. {
  30681. side: {
  30682. height: math.unit(5.6, "m"),
  30683. weight: math.unit(8000, "kg"),
  30684. name: "Side",
  30685. image: {
  30686. source: "./media/characters/victoria/side.svg",
  30687. extra: 1542/1229,
  30688. bottom: 124/1666
  30689. }
  30690. },
  30691. maw: {
  30692. height: math.unit(7.14, "feet"),
  30693. name: "Maw",
  30694. image: {
  30695. source: "./media/characters/victoria/maw.svg"
  30696. }
  30697. },
  30698. },
  30699. [
  30700. {
  30701. name: "Normal",
  30702. height: math.unit(5.6, "m"),
  30703. default: true
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30709. {
  30710. front: {
  30711. height: math.unit(5 + 6 / 12, "feet"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/cat/front.svg",
  30715. extra: 1449/1295,
  30716. bottom: 34/1483
  30717. },
  30718. form: "cat",
  30719. default: true
  30720. },
  30721. back: {
  30722. height: math.unit(5 + 6 / 12, "feet"),
  30723. name: "Back",
  30724. image: {
  30725. source: "./media/characters/cat/back.svg",
  30726. extra: 1466/1301,
  30727. bottom: 19/1485
  30728. },
  30729. form: "cat"
  30730. },
  30731. taur: {
  30732. height: math.unit(7, "feet"),
  30733. name: "Taur",
  30734. image: {
  30735. source: "./media/characters/cat/taur.svg",
  30736. extra: 1389/1233,
  30737. bottom: 83/1472
  30738. },
  30739. form: "taur",
  30740. default: true
  30741. },
  30742. lucarioFront: {
  30743. height: math.unit(4, "feet"),
  30744. name: "Lucario (Front)",
  30745. image: {
  30746. source: "./media/characters/cat/lucario-front.svg",
  30747. extra: 1149/1019,
  30748. bottom: 84/1233
  30749. },
  30750. form: "lucario",
  30751. default: true
  30752. },
  30753. lucarioBack: {
  30754. height: math.unit(4, "feet"),
  30755. name: "Lucario (Back)",
  30756. image: {
  30757. source: "./media/characters/cat/lucario-back.svg",
  30758. extra: 1190/1059,
  30759. bottom: 33/1223
  30760. },
  30761. form: "lucario"
  30762. },
  30763. megaLucario: {
  30764. height: math.unit(4, "feet"),
  30765. name: "Mega Lucario",
  30766. image: {
  30767. source: "./media/characters/cat/mega-lucario.svg",
  30768. extra: 1515 / 1319,
  30769. bottom: 63 / 1578
  30770. },
  30771. form: "lucario"
  30772. },
  30773. nickit: {
  30774. height: math.unit(2, "feet"),
  30775. name: "Nickit",
  30776. image: {
  30777. source: "./media/characters/cat/nickit.svg",
  30778. extra: 1980 / 1585,
  30779. bottom: 102 / 2082
  30780. },
  30781. form: "nickit",
  30782. default: true
  30783. },
  30784. lopunnyFront: {
  30785. height: math.unit(5, "feet"),
  30786. name: "Lopunny (Front)",
  30787. image: {
  30788. source: "./media/characters/cat/lopunny-front.svg",
  30789. extra: 1782 / 1469,
  30790. bottom: 38 / 1820
  30791. },
  30792. form: "lopunny",
  30793. default: true
  30794. },
  30795. lopunnyBack: {
  30796. height: math.unit(5, "feet"),
  30797. name: "Lopunny (Back)",
  30798. image: {
  30799. source: "./media/characters/cat/lopunny-back.svg",
  30800. extra: 1660 / 1490,
  30801. bottom: 25 / 1685
  30802. },
  30803. form: "lopunny"
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Really small",
  30809. height: math.unit(1, "nm")
  30810. },
  30811. {
  30812. name: "Micro",
  30813. height: math.unit(5, "inches")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(5 + 6 / 12, "feet"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Macro",
  30822. height: math.unit(50, "feet")
  30823. },
  30824. {
  30825. name: "Macro+",
  30826. height: math.unit(150, "feet")
  30827. },
  30828. {
  30829. name: "Megamacro",
  30830. height: math.unit(100, "miles")
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30836. {
  30837. front: {
  30838. height: math.unit(63.4, "meters"),
  30839. weight: math.unit(3.28349e+6, "kilograms"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/kirina-violet/front.svg",
  30843. extra: 2812 / 2725,
  30844. bottom: 0 / 2812
  30845. }
  30846. },
  30847. back: {
  30848. height: math.unit(63.4, "meters"),
  30849. weight: math.unit(3.28349e+6, "kilograms"),
  30850. name: "Back",
  30851. image: {
  30852. source: "./media/characters/kirina-violet/back.svg",
  30853. extra: 2812 / 2725,
  30854. bottom: 0 / 2812
  30855. }
  30856. },
  30857. mouth: {
  30858. height: math.unit(4.35, "meters"),
  30859. name: "Mouth",
  30860. image: {
  30861. source: "./media/characters/kirina-violet/mouth.svg"
  30862. }
  30863. },
  30864. paw: {
  30865. height: math.unit(5.6, "meters"),
  30866. name: "Paw",
  30867. image: {
  30868. source: "./media/characters/kirina-violet/paw.svg"
  30869. }
  30870. },
  30871. tail: {
  30872. height: math.unit(18, "meters"),
  30873. name: "Tail",
  30874. image: {
  30875. source: "./media/characters/kirina-violet/tail.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Macro",
  30882. height: math.unit(63.4, "meters"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(75, "feet"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/cat-gigachu/front.svg",
  30895. extra: 1239/1027,
  30896. bottom: 32/1271
  30897. }
  30898. },
  30899. back: {
  30900. height: math.unit(75, "feet"),
  30901. name: "Back",
  30902. image: {
  30903. source: "./media/characters/cat-gigachu/back.svg",
  30904. extra: 1229/1030,
  30905. bottom: 9/1238
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Dynamax",
  30912. height: math.unit(75, "feet"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(6, "feet"),
  30922. weight: math.unit(150, "lb"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/sfaiyan/front.svg",
  30926. extra: 999 / 978,
  30927. bottom: 5 / 1004
  30928. }
  30929. },
  30930. },
  30931. [
  30932. {
  30933. name: "Normal",
  30934. height: math.unit(1.82, "meters")
  30935. },
  30936. {
  30937. name: "Giant",
  30938. height: math.unit(2.27, "km"),
  30939. default: true
  30940. },
  30941. ]
  30942. ))
  30943. characterMakers.push(() => makeCharacter(
  30944. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30945. {
  30946. front: {
  30947. height: math.unit(179, "cm"),
  30948. weight: math.unit(100, "kg"),
  30949. name: "Front",
  30950. image: {
  30951. source: "./media/characters/raunehkeli/front.svg",
  30952. extra: 1934 / 1926,
  30953. bottom: 0 / 1934
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Normal",
  30960. height: math.unit(179, "cm")
  30961. },
  30962. {
  30963. name: "Maximum",
  30964. height: math.unit(575, "meters"),
  30965. default: true
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30971. {
  30972. front: {
  30973. height: math.unit(6, "feet"),
  30974. weight: math.unit(150, "lb"),
  30975. name: "Front",
  30976. image: {
  30977. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30978. extra: 2625 / 2518,
  30979. bottom: 60 / 2685
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(6 + 2 / 12, "feet")
  30987. },
  30988. {
  30989. name: "Macro",
  30990. height: math.unit(1180, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(5 + 6 / 12, "feet"),
  31000. weight: math.unit(108, "lb"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/lilith-zott/front.svg",
  31004. extra: 2510 / 2238,
  31005. bottom: 100 / 2610
  31006. }
  31007. },
  31008. frontDressed: {
  31009. height: math.unit(5 + 6 / 12, "feet"),
  31010. weight: math.unit(108, "lb"),
  31011. name: "Front (Dressed)",
  31012. image: {
  31013. source: "./media/characters/lilith-zott/front-dressed.svg",
  31014. extra: 2510 / 2238,
  31015. bottom: 100 / 2610
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(5 + 6 / 12, "feet")
  31023. },
  31024. {
  31025. name: "Macro",
  31026. height: math.unit(1030, "feet"),
  31027. default: true
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(6, "feet"),
  31036. weight: math.unit(150, "lb"),
  31037. name: "Front",
  31038. image: {
  31039. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31040. extra: 2567 / 2435,
  31041. bottom: 39 / 2606
  31042. }
  31043. },
  31044. frontSuper: {
  31045. height: math.unit(6, "feet"),
  31046. name: "Front (Super)",
  31047. image: {
  31048. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31049. extra: 2567 / 2435,
  31050. bottom: 39 / 2606
  31051. }
  31052. },
  31053. },
  31054. [
  31055. {
  31056. name: "Normal",
  31057. height: math.unit(5 + 10 / 12, "feet")
  31058. },
  31059. {
  31060. name: "Macro",
  31061. height: math.unit(1100, "feet"),
  31062. default: true
  31063. },
  31064. ]
  31065. ))
  31066. characterMakers.push(() => makeCharacter(
  31067. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31068. {
  31069. front: {
  31070. height: math.unit(100, "miles"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/sona/front.svg",
  31074. extra: 2433 / 2201,
  31075. bottom: 53 / 2486
  31076. }
  31077. },
  31078. foot: {
  31079. height: math.unit(16.1, "miles"),
  31080. name: "Foot",
  31081. image: {
  31082. source: "./media/characters/sona/foot.svg"
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Macro",
  31089. height: math.unit(100, "miles"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/bailey/front.svg",
  31103. extra: 1778 / 1724,
  31104. bottom: 30 / 1808
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Micro",
  31111. height: math.unit(4, "inches")
  31112. },
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(5 + 5 / 12, "feet"),
  31116. default: true
  31117. },
  31118. {
  31119. name: "Macro",
  31120. height: math.unit(250, "feet")
  31121. },
  31122. {
  31123. name: "Megamacro",
  31124. height: math.unit(100, "miles")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(5 + 2 / 12, "feet"),
  31133. weight: math.unit(120, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/snaps/front.svg",
  31137. extra: 2370 / 2177,
  31138. bottom: 48 / 2418
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(5 + 2 / 12, "feet"),
  31143. weight: math.unit(120, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/snaps/back.svg",
  31147. extra: 2408 / 2258,
  31148. bottom: 15 / 2423
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Micro",
  31155. height: math.unit(9, "inches")
  31156. },
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(5 + 2 / 12, "feet"),
  31160. default: true
  31161. },
  31162. {
  31163. name: "Mini Macro",
  31164. height: math.unit(10, "feet")
  31165. },
  31166. ]
  31167. ))
  31168. characterMakers.push(() => makeCharacter(
  31169. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31170. {
  31171. front: {
  31172. height: math.unit(1.8, "meters"),
  31173. weight: math.unit(85, "kg"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/azteck/front.svg",
  31177. extra: 2815 / 2625,
  31178. bottom: 89 / 2904
  31179. }
  31180. },
  31181. back: {
  31182. height: math.unit(1.8, "meters"),
  31183. weight: math.unit(85, "kg"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/azteck/back.svg",
  31187. extra: 2856 / 2648,
  31188. bottom: 85 / 2941
  31189. }
  31190. },
  31191. frontDressed: {
  31192. height: math.unit(1.8, "meters"),
  31193. weight: math.unit(85, "kg"),
  31194. name: "Front (Dressed)",
  31195. image: {
  31196. source: "./media/characters/azteck/front-dressed.svg",
  31197. extra: 2147 / 2003,
  31198. bottom: 68 / 2215
  31199. }
  31200. },
  31201. head: {
  31202. height: math.unit(0.47, "meters"),
  31203. weight: math.unit(85, "kg"),
  31204. name: "Head",
  31205. image: {
  31206. source: "./media/characters/azteck/head.svg"
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Bite sized",
  31213. height: math.unit(16, "cm")
  31214. },
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(1.8, "meters"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(6, "feet"),
  31227. weight: math.unit(150, "lb"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/pidge/front.svg",
  31231. extra: 1936/1820,
  31232. bottom: 0/1936
  31233. }
  31234. },
  31235. back: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(150, "lb"),
  31238. name: "Back",
  31239. image: {
  31240. source: "./media/characters/pidge/back.svg",
  31241. extra: 1938/1843,
  31242. bottom: 0/1938
  31243. }
  31244. },
  31245. casual: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Casual",
  31249. image: {
  31250. source: "./media/characters/pidge/casual.svg",
  31251. extra: 1936/1820,
  31252. bottom: 0/1936
  31253. }
  31254. },
  31255. tech: {
  31256. height: math.unit(6, "feet"),
  31257. weight: math.unit(150, "lb"),
  31258. name: "Tech",
  31259. image: {
  31260. source: "./media/characters/pidge/tech.svg",
  31261. extra: 1802/1682,
  31262. bottom: 0/1802
  31263. }
  31264. },
  31265. head: {
  31266. height: math.unit(1.61, "feet"),
  31267. name: "Head",
  31268. image: {
  31269. source: "./media/characters/pidge/head.svg"
  31270. }
  31271. },
  31272. collar: {
  31273. height: math.unit(0.82, "feet"),
  31274. name: "Collar",
  31275. image: {
  31276. source: "./media/characters/pidge/collar.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Macro",
  31283. height: math.unit(2, "mile"),
  31284. default: true
  31285. },
  31286. {
  31287. name: "PUPPY",
  31288. height: math.unit(20, "miles")
  31289. },
  31290. ]
  31291. ))
  31292. characterMakers.push(() => makeCharacter(
  31293. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31294. {
  31295. front: {
  31296. height: math.unit(6, "feet"),
  31297. weight: math.unit(150, "lb"),
  31298. name: "Front",
  31299. image: {
  31300. source: "./media/characters/en/front.svg",
  31301. extra: 1697 / 1563,
  31302. bottom: 103 / 1800
  31303. }
  31304. },
  31305. back: {
  31306. height: math.unit(6, "feet"),
  31307. weight: math.unit(150, "lb"),
  31308. name: "Back",
  31309. image: {
  31310. source: "./media/characters/en/back.svg",
  31311. extra: 1700 / 1570,
  31312. bottom: 51 / 1751
  31313. }
  31314. },
  31315. frontDressed: {
  31316. height: math.unit(6, "feet"),
  31317. weight: math.unit(150, "lb"),
  31318. name: "Front (Dressed)",
  31319. image: {
  31320. source: "./media/characters/en/front-dressed.svg",
  31321. extra: 1697 / 1563,
  31322. bottom: 103 / 1800
  31323. }
  31324. },
  31325. backDressed: {
  31326. height: math.unit(6, "feet"),
  31327. weight: math.unit(150, "lb"),
  31328. name: "Back (Dressed)",
  31329. image: {
  31330. source: "./media/characters/en/back-dressed.svg",
  31331. extra: 1700 / 1570,
  31332. bottom: 51 / 1751
  31333. }
  31334. },
  31335. },
  31336. [
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(210, "feet"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(6, "feet"),
  31349. weight: math.unit(150, "lb"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/haze-orris/front.svg",
  31353. extra: 3975 / 3525,
  31354. bottom: 137 / 4112
  31355. }
  31356. },
  31357. },
  31358. [
  31359. {
  31360. name: "Micro",
  31361. height: math.unit(150, "mm"),
  31362. default: true
  31363. },
  31364. ]
  31365. ))
  31366. characterMakers.push(() => makeCharacter(
  31367. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31368. {
  31369. front: {
  31370. height: math.unit(6, "feet"),
  31371. weight: math.unit(150, "lb"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/casselene-yaro/front.svg",
  31375. extra: 4721 / 4541,
  31376. bottom: 82 / 4803
  31377. }
  31378. },
  31379. back: {
  31380. height: math.unit(6, "feet"),
  31381. weight: math.unit(150, "lb"),
  31382. name: "Back",
  31383. image: {
  31384. source: "./media/characters/casselene-yaro/back.svg",
  31385. extra: 4569 / 4377,
  31386. bottom: 69 / 4638
  31387. }
  31388. },
  31389. dressed: {
  31390. height: math.unit(6, "feet"),
  31391. weight: math.unit(150, "lb"),
  31392. name: "Dressed",
  31393. image: {
  31394. source: "./media/characters/casselene-yaro/dressed.svg",
  31395. extra: 4721 / 4541,
  31396. bottom: 82 / 4803
  31397. }
  31398. },
  31399. maw: {
  31400. height: math.unit(1, "feet"),
  31401. name: "Maw",
  31402. image: {
  31403. source: "./media/characters/casselene-yaro/maw.svg"
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Macro",
  31410. height: math.unit(190, "feet"),
  31411. default: true
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(10, "feet"),
  31420. weight: math.unit(15015, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/platine/front.svg",
  31424. extra: 1741/1650,
  31425. bottom: 84/1825
  31426. }
  31427. },
  31428. side: {
  31429. height: math.unit(10, "feet"),
  31430. weight: math.unit(15015, "lb"),
  31431. name: "Side",
  31432. image: {
  31433. source: "./media/characters/platine/side.svg",
  31434. extra: 1790/1705,
  31435. bottom: 29/1819
  31436. }
  31437. },
  31438. },
  31439. [
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(10, "feet"),
  31443. default: true
  31444. },
  31445. {
  31446. name: "Macro",
  31447. height: math.unit(100, "feet")
  31448. },
  31449. {
  31450. name: "Megamacro",
  31451. height: math.unit(1000, "feet")
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(15 + 5 / 12, "feet"),
  31460. weight: math.unit(4600, "lb"),
  31461. name: "Front",
  31462. image: {
  31463. source: "./media/characters/neapolitan-ananassa/front.svg",
  31464. extra: 2903 / 2736,
  31465. bottom: 0 / 2903
  31466. }
  31467. },
  31468. side: {
  31469. height: math.unit(15 + 5 / 12, "feet"),
  31470. weight: math.unit(4600, "lb"),
  31471. name: "Side",
  31472. image: {
  31473. source: "./media/characters/neapolitan-ananassa/side.svg",
  31474. extra: 2925 / 2719,
  31475. bottom: 0 / 2925
  31476. }
  31477. },
  31478. back: {
  31479. height: math.unit(15 + 5 / 12, "feet"),
  31480. weight: math.unit(4600, "lb"),
  31481. name: "Back",
  31482. image: {
  31483. source: "./media/characters/neapolitan-ananassa/back.svg",
  31484. extra: 2903 / 2736,
  31485. bottom: 0 / 2903
  31486. }
  31487. },
  31488. },
  31489. [
  31490. {
  31491. name: "Normal",
  31492. height: math.unit(15 + 5 / 12, "feet"),
  31493. default: true
  31494. },
  31495. {
  31496. name: "Post-Millenium",
  31497. height: math.unit(35 + 5 / 12, "feet")
  31498. },
  31499. {
  31500. name: "Post-Era",
  31501. height: math.unit(450 + 5 / 12, "feet")
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31507. {
  31508. front: {
  31509. height: math.unit(300, "meters"),
  31510. weight: math.unit(125000, "tonnes"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/pazuzu/front.svg",
  31514. extra: 877 / 794,
  31515. bottom: 47 / 924
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Macro",
  31522. height: math.unit(300, "meters"),
  31523. default: true
  31524. },
  31525. ]
  31526. ))
  31527. characterMakers.push(() => makeCharacter(
  31528. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31529. {
  31530. side: {
  31531. height: math.unit(10 + 7 / 12, "feet"),
  31532. weight: math.unit(2.5, "tons"),
  31533. name: "Side",
  31534. image: {
  31535. source: "./media/characters/aasha/side.svg",
  31536. extra: 1345 / 1245,
  31537. bottom: 111 / 1456
  31538. }
  31539. },
  31540. back: {
  31541. height: math.unit(10 + 7 / 12, "feet"),
  31542. weight: math.unit(2.5, "tons"),
  31543. name: "Back",
  31544. image: {
  31545. source: "./media/characters/aasha/back.svg",
  31546. extra: 1133 / 1057,
  31547. bottom: 257 / 1390
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(10 + 7 / 12, "feet"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(6 + 3 / 12, "feet"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/nevan/front.svg",
  31567. extra: 704 / 704,
  31568. bottom: 28 / 732
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(6 + 3 / 12, "feet"),
  31573. name: "Back",
  31574. image: {
  31575. source: "./media/characters/nevan/back.svg",
  31576. extra: 714 / 714,
  31577. bottom: 21 / 735
  31578. }
  31579. },
  31580. frontFlaccid: {
  31581. height: math.unit(6 + 3 / 12, "feet"),
  31582. name: "Front (Flaccid)",
  31583. image: {
  31584. source: "./media/characters/nevan/front-flaccid.svg",
  31585. extra: 704 / 704,
  31586. bottom: 28 / 732
  31587. }
  31588. },
  31589. frontErect: {
  31590. height: math.unit(6 + 3 / 12, "feet"),
  31591. name: "Front (Erect)",
  31592. image: {
  31593. source: "./media/characters/nevan/front-erect.svg",
  31594. extra: 704 / 704,
  31595. bottom: 28 / 732
  31596. }
  31597. },
  31598. backFlaccid: {
  31599. height: math.unit(6 + 3 / 12, "feet"),
  31600. name: "Back (Flaccid)",
  31601. image: {
  31602. source: "./media/characters/nevan/back-flaccid.svg",
  31603. extra: 714 / 714,
  31604. bottom: 21 / 735
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(6 + 3 / 12, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(4, "feet"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/arhan/front.svg",
  31624. extra: 3368 / 3133,
  31625. bottom: 0 / 3368
  31626. }
  31627. },
  31628. side: {
  31629. height: math.unit(4, "feet"),
  31630. name: "Side",
  31631. image: {
  31632. source: "./media/characters/arhan/side.svg",
  31633. extra: 3347 / 3105,
  31634. bottom: 0 / 3347
  31635. }
  31636. },
  31637. tongue: {
  31638. height: math.unit(1.42, "feet"),
  31639. name: "Tongue",
  31640. image: {
  31641. source: "./media/characters/arhan/tongue.svg"
  31642. }
  31643. },
  31644. head: {
  31645. height: math.unit(0.85, "feet"),
  31646. name: "Head",
  31647. image: {
  31648. source: "./media/characters/arhan/head.svg"
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(4, "feet"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(5 + 7.5 / 12, "feet"),
  31665. weight: math.unit(120, "lb"),
  31666. name: "Front",
  31667. image: {
  31668. source: "./media/characters/digi-duncan/front.svg",
  31669. extra: 330 / 326,
  31670. bottom: 16 / 346
  31671. }
  31672. },
  31673. side: {
  31674. height: math.unit(5 + 7.5 / 12, "feet"),
  31675. weight: math.unit(120, "lb"),
  31676. name: "Side",
  31677. image: {
  31678. source: "./media/characters/digi-duncan/side.svg",
  31679. extra: 341 / 337,
  31680. bottom: 1 / 342
  31681. }
  31682. },
  31683. back: {
  31684. height: math.unit(5 + 7.5 / 12, "feet"),
  31685. weight: math.unit(120, "lb"),
  31686. name: "Back",
  31687. image: {
  31688. source: "./media/characters/digi-duncan/back.svg",
  31689. extra: 330 / 326,
  31690. bottom: 12 / 342
  31691. }
  31692. },
  31693. },
  31694. [
  31695. {
  31696. name: "Speck",
  31697. height: math.unit(0.25, "mm")
  31698. },
  31699. {
  31700. name: "Micro",
  31701. height: math.unit(5, "mm")
  31702. },
  31703. {
  31704. name: "Tiny",
  31705. height: math.unit(0.5, "inches"),
  31706. default: true
  31707. },
  31708. {
  31709. name: "Human",
  31710. height: math.unit(5 + 7.5 / 12, "feet")
  31711. },
  31712. {
  31713. name: "Minigiant",
  31714. height: math.unit(8 + 5.25, "feet")
  31715. },
  31716. {
  31717. name: "Giant",
  31718. height: math.unit(2000, "feet")
  31719. },
  31720. {
  31721. name: "Mega",
  31722. height: math.unit(371.1, "miles")
  31723. },
  31724. ]
  31725. ))
  31726. characterMakers.push(() => makeCharacter(
  31727. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31728. {
  31729. front: {
  31730. height: math.unit(2, "meters"),
  31731. weight: math.unit(350, "kg"),
  31732. name: "Front",
  31733. image: {
  31734. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31735. extra: 898 / 838,
  31736. bottom: 9 / 907
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Micro",
  31743. height: math.unit(8, "meters")
  31744. },
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(50, "meters"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Macro",
  31752. height: math.unit(500, "meters")
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(6 + 6 / 12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/khardesh/front.svg",
  31764. extra: 1788/1596,
  31765. bottom: 66/1854
  31766. }
  31767. },
  31768. back: {
  31769. height: math.unit(6 + 6 / 12, "feet"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/khardesh/back.svg",
  31773. extra: 1781/1584,
  31774. bottom: 68/1849
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(6 + 6 / 12, "feet"),
  31782. default: true
  31783. },
  31784. {
  31785. name: "Normal+",
  31786. height: math.unit(4, "meters")
  31787. },
  31788. {
  31789. name: "Macro",
  31790. height: math.unit(50, "meters")
  31791. },
  31792. {
  31793. name: "Macro+",
  31794. height: math.unit(100, "meters")
  31795. },
  31796. {
  31797. name: "Megamacro",
  31798. height: math.unit(20, "km")
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31804. {
  31805. front: {
  31806. height: math.unit(6, "feet"),
  31807. weight: math.unit(150, "lb"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/kosho/front.svg",
  31811. extra: 1847 / 1847,
  31812. bottom: 86 / 1933
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Second-stage micro",
  31819. height: math.unit(0.5, "inches")
  31820. },
  31821. {
  31822. name: "First-stage micro",
  31823. height: math.unit(6, "inches")
  31824. },
  31825. {
  31826. name: "Normal",
  31827. height: math.unit(6, "feet"),
  31828. default: true
  31829. },
  31830. {
  31831. name: "First-stage macro",
  31832. height: math.unit(72, "feet")
  31833. },
  31834. {
  31835. name: "Second-stage macro",
  31836. height: math.unit(864, "feet")
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31842. {
  31843. normal: {
  31844. height: math.unit(4 + 6 / 12, "feet"),
  31845. name: "Normal",
  31846. image: {
  31847. source: "./media/characters/hydra/normal.svg",
  31848. extra: 2833 / 2634,
  31849. bottom: 68 / 2901
  31850. }
  31851. },
  31852. smol: {
  31853. height: math.unit(0.705, "inches"),
  31854. name: "Smol",
  31855. image: {
  31856. source: "./media/characters/hydra/smol.svg",
  31857. extra: 2715 / 2540,
  31858. bottom: 0 / 2715
  31859. }
  31860. },
  31861. },
  31862. [
  31863. {
  31864. name: "Normal",
  31865. height: math.unit(4 + 6 / 12, "feet"),
  31866. default: true
  31867. }
  31868. ]
  31869. ))
  31870. characterMakers.push(() => makeCharacter(
  31871. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31872. {
  31873. front: {
  31874. height: math.unit(0.6, "cm"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/daz/front.svg",
  31878. extra: 1682 / 1164,
  31879. bottom: 42 / 1724
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(0.6, "cm"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(6, "feet"),
  31896. weight: math.unit(235, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/theo-pangolin/front.svg",
  31900. extra: 1996 / 1969,
  31901. bottom: 115 / 2111
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(235, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/theo-pangolin/back.svg",
  31910. extra: 1979 / 1979,
  31911. bottom: 40 / 2019
  31912. }
  31913. },
  31914. feral: {
  31915. height: math.unit(2, "feet"),
  31916. weight: math.unit(30, "lb"),
  31917. name: "Feral",
  31918. image: {
  31919. source: "./media/characters/theo-pangolin/feral.svg",
  31920. extra: 803 / 791,
  31921. bottom: 181 / 984
  31922. }
  31923. },
  31924. footFive: {
  31925. height: math.unit(1.43, "feet"),
  31926. name: "Foot (Five Toes)",
  31927. image: {
  31928. source: "./media/characters/theo-pangolin/foot-five.svg"
  31929. }
  31930. },
  31931. footFour: {
  31932. height: math.unit(1.43, "feet"),
  31933. name: "Foot (Four Toes)",
  31934. image: {
  31935. source: "./media/characters/theo-pangolin/foot-four.svg"
  31936. }
  31937. },
  31938. handFour: {
  31939. height: math.unit(0.81, "feet"),
  31940. name: "Hand (Four Fingers)",
  31941. image: {
  31942. source: "./media/characters/theo-pangolin/hand-four.svg"
  31943. }
  31944. },
  31945. handThree: {
  31946. height: math.unit(0.81, "feet"),
  31947. name: "Hand (Three Fingers)",
  31948. image: {
  31949. source: "./media/characters/theo-pangolin/hand-three.svg"
  31950. }
  31951. },
  31952. headFront: {
  31953. height: math.unit(1.37, "feet"),
  31954. name: "Head (Front)",
  31955. image: {
  31956. source: "./media/characters/theo-pangolin/head-front.svg"
  31957. }
  31958. },
  31959. headSide: {
  31960. height: math.unit(1.43, "feet"),
  31961. name: "Head (Side)",
  31962. image: {
  31963. source: "./media/characters/theo-pangolin/head-side.svg"
  31964. }
  31965. },
  31966. tongue: {
  31967. height: math.unit(2.29, "feet"),
  31968. name: "Tongue",
  31969. image: {
  31970. source: "./media/characters/theo-pangolin/tongue.svg"
  31971. }
  31972. },
  31973. },
  31974. [
  31975. {
  31976. name: "Normal",
  31977. height: math.unit(6, "feet")
  31978. },
  31979. {
  31980. name: "Macro",
  31981. height: math.unit(400, "feet"),
  31982. default: true
  31983. },
  31984. ]
  31985. ))
  31986. characterMakers.push(() => makeCharacter(
  31987. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31988. {
  31989. front: {
  31990. height: math.unit(6, "inches"),
  31991. weight: math.unit(0.036, "kg"),
  31992. name: "Front",
  31993. image: {
  31994. source: "./media/characters/renée/front.svg",
  31995. extra: 900 / 886,
  31996. bottom: 8 / 908
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Nano",
  32003. height: math.unit(1, "nm")
  32004. },
  32005. {
  32006. name: "Micro",
  32007. height: math.unit(1, "mm")
  32008. },
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(6, "inches")
  32012. },
  32013. {
  32014. name: "Macro",
  32015. height: math.unit(2000, "feet"),
  32016. default: true
  32017. },
  32018. {
  32019. name: "Megamacro",
  32020. height: math.unit(2, "km")
  32021. },
  32022. {
  32023. name: "Gigamacro",
  32024. height: math.unit(2000, "km")
  32025. },
  32026. {
  32027. name: "Teramacro",
  32028. height: math.unit(250000, "km")
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(4, "meters"),
  32037. weight: math.unit(150, "kg"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/caledvwlch/front.svg",
  32041. extra: 1757/1537,
  32042. bottom: 31/1788
  32043. }
  32044. },
  32045. side: {
  32046. height: math.unit(4, "meters"),
  32047. weight: math.unit(150, "kg"),
  32048. name: "Side",
  32049. image: {
  32050. source: "./media/characters/caledvwlch/side.svg",
  32051. extra: 1605 / 1536,
  32052. bottom: 31 / 1636
  32053. }
  32054. },
  32055. back: {
  32056. height: math.unit(4, "meters"),
  32057. weight: math.unit(150, "kg"),
  32058. name: "Back",
  32059. image: {
  32060. source: "./media/characters/caledvwlch/back.svg",
  32061. extra: 1635 / 1565,
  32062. bottom: 27 / 1662
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "\"Incognito\"",
  32069. height: math.unit(4, "meters")
  32070. },
  32071. {
  32072. name: "Small rampage",
  32073. height: math.unit(600, "meters")
  32074. },
  32075. {
  32076. name: "Mega",
  32077. height: math.unit(30, "km")
  32078. },
  32079. {
  32080. name: "Home-size",
  32081. height: math.unit(50, "km"),
  32082. default: true
  32083. },
  32084. {
  32085. name: "Giga",
  32086. height: math.unit(300, "km")
  32087. },
  32088. {
  32089. name: "Lounging",
  32090. height: math.unit(11000, "km")
  32091. },
  32092. {
  32093. name: "Planet snacking",
  32094. height: math.unit(2000000, "km")
  32095. },
  32096. ]
  32097. ))
  32098. characterMakers.push(() => makeCharacter(
  32099. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32100. {
  32101. front: {
  32102. height: math.unit(6, "feet"),
  32103. weight: math.unit(215, "lb"),
  32104. name: "Front",
  32105. image: {
  32106. source: "./media/characters/sapphire-svell/front.svg",
  32107. extra: 495 / 455,
  32108. bottom: 20 / 515
  32109. }
  32110. },
  32111. back: {
  32112. height: math.unit(6, "feet"),
  32113. weight: math.unit(216, "lb"),
  32114. name: "Back",
  32115. image: {
  32116. source: "./media/characters/sapphire-svell/back.svg",
  32117. extra: 497 / 477,
  32118. bottom: 7 / 504
  32119. }
  32120. },
  32121. maw: {
  32122. height: math.unit(1.57, "feet"),
  32123. name: "Maw",
  32124. image: {
  32125. source: "./media/characters/sapphire-svell/maw.svg"
  32126. }
  32127. },
  32128. foot: {
  32129. height: math.unit(1.07, "feet"),
  32130. name: "Foot",
  32131. image: {
  32132. source: "./media/characters/sapphire-svell/foot.svg"
  32133. }
  32134. },
  32135. toering: {
  32136. height: math.unit(1.7, "inch"),
  32137. name: "Toering",
  32138. image: {
  32139. source: "./media/characters/sapphire-svell/toering.svg"
  32140. }
  32141. },
  32142. },
  32143. [
  32144. {
  32145. name: "Normal",
  32146. height: math.unit(300, "feet"),
  32147. default: true
  32148. },
  32149. {
  32150. name: "Augmented",
  32151. height: math.unit(1250, "feet")
  32152. },
  32153. {
  32154. name: "Unleashed",
  32155. height: math.unit(3000, "feet")
  32156. },
  32157. ]
  32158. ))
  32159. characterMakers.push(() => makeCharacter(
  32160. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32161. {
  32162. side: {
  32163. height: math.unit(2 + 3 / 12, "feet"),
  32164. weight: math.unit(110, "lb"),
  32165. name: "Side",
  32166. image: {
  32167. source: "./media/characters/glitch-flux/side.svg",
  32168. extra: 997 / 805,
  32169. bottom: 20 / 1017
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(2 + 3 / 12, "feet"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32183. {
  32184. front: {
  32185. height: math.unit(4, "meters"),
  32186. name: "Front",
  32187. image: {
  32188. source: "./media/characters/mid/front.svg",
  32189. extra: 507 / 476,
  32190. bottom: 17 / 524
  32191. }
  32192. },
  32193. back: {
  32194. height: math.unit(4, "meters"),
  32195. name: "Back",
  32196. image: {
  32197. source: "./media/characters/mid/back.svg",
  32198. extra: 519 / 487,
  32199. bottom: 7 / 526
  32200. }
  32201. },
  32202. stuck: {
  32203. height: math.unit(2.2, "meters"),
  32204. name: "Stuck",
  32205. image: {
  32206. source: "./media/characters/mid/stuck.svg",
  32207. extra: 1951 / 1869,
  32208. bottom: 88 / 2039
  32209. }
  32210. }
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(4, "meters"),
  32216. default: true
  32217. },
  32218. {
  32219. name: "Big",
  32220. height: math.unit(10, "meters")
  32221. },
  32222. {
  32223. name: "Macro",
  32224. height: math.unit(800, "meters")
  32225. },
  32226. {
  32227. name: "Megamacro",
  32228. height: math.unit(100, "km")
  32229. },
  32230. {
  32231. name: "Overgrown",
  32232. height: math.unit(1, "parsec")
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(2.5, "meters"),
  32241. weight: math.unit(225, "kg"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/iris/front.svg",
  32245. extra: 3348 / 3251,
  32246. bottom: 205 / 3553
  32247. }
  32248. },
  32249. maw: {
  32250. height: math.unit(0.56, "meter"),
  32251. name: "Maw",
  32252. image: {
  32253. source: "./media/characters/iris/maw.svg"
  32254. }
  32255. },
  32256. },
  32257. [
  32258. {
  32259. name: "Mewter cat",
  32260. height: math.unit(1.2, "meters")
  32261. },
  32262. {
  32263. name: "Normal",
  32264. height: math.unit(2.5, "meters"),
  32265. default: true
  32266. },
  32267. {
  32268. name: "Minimacro",
  32269. height: math.unit(18, "feet")
  32270. },
  32271. {
  32272. name: "Macro",
  32273. height: math.unit(140, "feet")
  32274. },
  32275. {
  32276. name: "Macro+",
  32277. height: math.unit(180, "meters")
  32278. },
  32279. {
  32280. name: "Megamacro",
  32281. height: math.unit(2746, "meters")
  32282. },
  32283. ]
  32284. ))
  32285. characterMakers.push(() => makeCharacter(
  32286. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32287. {
  32288. front: {
  32289. height: math.unit(6, "feet"),
  32290. weight: math.unit(135, "lb"),
  32291. name: "Front",
  32292. image: {
  32293. source: "./media/characters/axel/front.svg",
  32294. extra: 908 / 908,
  32295. bottom: 58 / 966
  32296. }
  32297. },
  32298. side: {
  32299. height: math.unit(6, "feet"),
  32300. weight: math.unit(135, "lb"),
  32301. name: "Side",
  32302. image: {
  32303. source: "./media/characters/axel/side.svg",
  32304. extra: 958 / 958,
  32305. bottom: 11 / 969
  32306. }
  32307. },
  32308. back: {
  32309. height: math.unit(6, "feet"),
  32310. weight: math.unit(135, "lb"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/axel/back.svg",
  32314. extra: 887 / 887,
  32315. bottom: 34 / 921
  32316. }
  32317. },
  32318. head: {
  32319. height: math.unit(1.07, "feet"),
  32320. name: "Head",
  32321. image: {
  32322. source: "./media/characters/axel/head.svg"
  32323. }
  32324. },
  32325. beak: {
  32326. height: math.unit(1.4, "feet"),
  32327. name: "Beak",
  32328. image: {
  32329. source: "./media/characters/axel/beak.svg"
  32330. }
  32331. },
  32332. beakSide: {
  32333. height: math.unit(1.4, "feet"),
  32334. name: "Beak Side",
  32335. image: {
  32336. source: "./media/characters/axel/beak-side.svg"
  32337. }
  32338. },
  32339. sheath: {
  32340. height: math.unit(0.5, "feet"),
  32341. name: "Sheath",
  32342. image: {
  32343. source: "./media/characters/axel/sheath.svg"
  32344. }
  32345. },
  32346. dick: {
  32347. height: math.unit(0.98, "feet"),
  32348. name: "Dick",
  32349. image: {
  32350. source: "./media/characters/axel/dick.svg"
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Macro",
  32357. height: math.unit(68, "meters"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(3.5, "meters"),
  32367. weight: math.unit(1200, "kg"),
  32368. name: "Front",
  32369. image: {
  32370. source: "./media/characters/joanna/front.svg",
  32371. extra: 1596 / 1488,
  32372. bottom: 29 / 1625
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(3.5, "meters"),
  32377. weight: math.unit(1200, "kg"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/joanna/back.svg",
  32381. extra: 1594 / 1495,
  32382. bottom: 26 / 1620
  32383. }
  32384. },
  32385. frontShorts: {
  32386. height: math.unit(3.5, "meters"),
  32387. weight: math.unit(1200, "kg"),
  32388. name: "Front (Shorts)",
  32389. image: {
  32390. source: "./media/characters/joanna/front-shorts.svg",
  32391. extra: 1596 / 1488,
  32392. bottom: 29 / 1625
  32393. }
  32394. },
  32395. frontBiker: {
  32396. height: math.unit(3.5, "meters"),
  32397. weight: math.unit(1200, "kg"),
  32398. name: "Front (Biker)",
  32399. image: {
  32400. source: "./media/characters/joanna/front-biker.svg",
  32401. extra: 1596 / 1488,
  32402. bottom: 29 / 1625
  32403. }
  32404. },
  32405. backBiker: {
  32406. height: math.unit(3.5, "meters"),
  32407. weight: math.unit(1200, "kg"),
  32408. name: "Back (Biker)",
  32409. image: {
  32410. source: "./media/characters/joanna/back-biker.svg",
  32411. extra: 1594 / 1495,
  32412. bottom: 88 / 1682
  32413. }
  32414. },
  32415. bikeLeft: {
  32416. height: math.unit(2.4, "meters"),
  32417. weight: math.unit(1600, "kg"),
  32418. name: "Bike (Left)",
  32419. image: {
  32420. source: "./media/characters/joanna/bike-left.svg",
  32421. extra: 720 / 720,
  32422. bottom: 8 / 728
  32423. }
  32424. },
  32425. bikeRight: {
  32426. height: math.unit(2.4, "meters"),
  32427. weight: math.unit(1600, "kg"),
  32428. name: "Bike (Right)",
  32429. image: {
  32430. source: "./media/characters/joanna/bike-right.svg",
  32431. extra: 720 / 720,
  32432. bottom: 8 / 728
  32433. }
  32434. },
  32435. },
  32436. [
  32437. {
  32438. name: "Incognito",
  32439. height: math.unit(3.5, "meters")
  32440. },
  32441. {
  32442. name: "Casual Big",
  32443. height: math.unit(200, "meters")
  32444. },
  32445. {
  32446. name: "Macro",
  32447. height: math.unit(600, "meters")
  32448. },
  32449. {
  32450. name: "Original",
  32451. height: math.unit(20, "km"),
  32452. default: true
  32453. },
  32454. {
  32455. name: "Giga",
  32456. height: math.unit(400, "km")
  32457. },
  32458. {
  32459. name: "Lounging",
  32460. height: math.unit(1500, "km")
  32461. },
  32462. {
  32463. name: "Planetary",
  32464. height: math.unit(200000, "km")
  32465. },
  32466. ]
  32467. ))
  32468. characterMakers.push(() => makeCharacter(
  32469. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32470. {
  32471. front: {
  32472. height: math.unit(6, "feet"),
  32473. weight: math.unit(150, "lb"),
  32474. name: "Front",
  32475. image: {
  32476. source: "./media/characters/hugo-sigil/front.svg",
  32477. extra: 522 / 500,
  32478. bottom: 2 / 524
  32479. }
  32480. },
  32481. back: {
  32482. height: math.unit(6, "feet"),
  32483. weight: math.unit(150, "lb"),
  32484. name: "Back",
  32485. image: {
  32486. source: "./media/characters/hugo-sigil/back.svg",
  32487. extra: 519 / 495,
  32488. bottom: 5 / 524
  32489. }
  32490. },
  32491. maw: {
  32492. height: math.unit(1.4, "feet"),
  32493. weight: math.unit(150, "lb"),
  32494. name: "Maw",
  32495. image: {
  32496. source: "./media/characters/hugo-sigil/maw.svg"
  32497. }
  32498. },
  32499. feet: {
  32500. height: math.unit(1.56, "feet"),
  32501. weight: math.unit(150, "lb"),
  32502. name: "Feet",
  32503. image: {
  32504. source: "./media/characters/hugo-sigil/feet.svg",
  32505. extra: 177 / 177,
  32506. bottom: 12 / 189
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Normal",
  32513. height: math.unit(6, "feet")
  32514. },
  32515. {
  32516. name: "Macro",
  32517. height: math.unit(200, "feet"),
  32518. default: true
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32524. {
  32525. front: {
  32526. height: math.unit(6, "feet"),
  32527. weight: math.unit(150, "lb"),
  32528. name: "Front",
  32529. image: {
  32530. source: "./media/characters/peri/front.svg",
  32531. extra: 2354 / 2233,
  32532. bottom: 49 / 2403
  32533. }
  32534. },
  32535. },
  32536. [
  32537. {
  32538. name: "Really Small",
  32539. height: math.unit(1, "nm")
  32540. },
  32541. {
  32542. name: "Micro",
  32543. height: math.unit(4, "inches")
  32544. },
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(7, "inches"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Macro",
  32552. height: math.unit(400, "feet")
  32553. },
  32554. {
  32555. name: "Megamacro",
  32556. height: math.unit(100, "miles")
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32562. {
  32563. frontSlim: {
  32564. height: math.unit(7, "feet"),
  32565. name: "Front (Slim)",
  32566. image: {
  32567. source: "./media/characters/issilora/front-slim.svg",
  32568. extra: 529 / 449,
  32569. bottom: 53 / 582
  32570. }
  32571. },
  32572. sideSlim: {
  32573. height: math.unit(7, "feet"),
  32574. name: "Side (Slim)",
  32575. image: {
  32576. source: "./media/characters/issilora/side-slim.svg",
  32577. extra: 570 / 480,
  32578. bottom: 30 / 600
  32579. }
  32580. },
  32581. backSlim: {
  32582. height: math.unit(7, "feet"),
  32583. name: "Back (Slim)",
  32584. image: {
  32585. source: "./media/characters/issilora/back-slim.svg",
  32586. extra: 537 / 455,
  32587. bottom: 46 / 583
  32588. }
  32589. },
  32590. frontBuff: {
  32591. height: math.unit(7, "feet"),
  32592. name: "Front (Buff)",
  32593. image: {
  32594. source: "./media/characters/issilora/front-buff.svg",
  32595. extra: 2310 / 2035,
  32596. bottom: 335 / 2645
  32597. }
  32598. },
  32599. head: {
  32600. height: math.unit(1.94, "feet"),
  32601. name: "Head",
  32602. image: {
  32603. source: "./media/characters/issilora/head.svg"
  32604. }
  32605. },
  32606. },
  32607. [
  32608. {
  32609. name: "Minimum",
  32610. height: math.unit(7, "feet")
  32611. },
  32612. {
  32613. name: "Comfortable",
  32614. height: math.unit(17, "feet")
  32615. },
  32616. {
  32617. name: "Fun Size",
  32618. height: math.unit(47, "feet")
  32619. },
  32620. {
  32621. name: "Natural Macro",
  32622. height: math.unit(137, "feet"),
  32623. default: true
  32624. },
  32625. {
  32626. name: "Maximum Kaiju",
  32627. height: math.unit(397, "feet")
  32628. },
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32633. {
  32634. front: {
  32635. height: math.unit(50 + 9/12, "feet"),
  32636. weight: math.unit(32.8, "tons"),
  32637. name: "Front",
  32638. image: {
  32639. source: "./media/characters/irb'iiritaahn/front.svg",
  32640. extra: 1878/1826,
  32641. bottom: 326/2204
  32642. }
  32643. },
  32644. back: {
  32645. height: math.unit(50 + 9/12, "feet"),
  32646. weight: math.unit(32.8, "tons"),
  32647. name: "Back",
  32648. image: {
  32649. source: "./media/characters/irb'iiritaahn/back.svg",
  32650. extra: 2052/2018,
  32651. bottom: 152/2204
  32652. }
  32653. },
  32654. head: {
  32655. height: math.unit(12.86, "feet"),
  32656. name: "Head",
  32657. image: {
  32658. source: "./media/characters/irb'iiritaahn/head.svg"
  32659. }
  32660. },
  32661. maw: {
  32662. height: math.unit(9.66, "feet"),
  32663. name: "Maw",
  32664. image: {
  32665. source: "./media/characters/irb'iiritaahn/maw.svg"
  32666. }
  32667. },
  32668. frontDick: {
  32669. height: math.unit(8.78461, "feet"),
  32670. name: "Front Dick",
  32671. image: {
  32672. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32673. }
  32674. },
  32675. rearDick: {
  32676. height: math.unit(8.78461, "feet"),
  32677. name: "Rear Dick",
  32678. image: {
  32679. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32680. }
  32681. },
  32682. rearDickUnfolded: {
  32683. height: math.unit(8.78, "feet"),
  32684. name: "Rear Dick (Unfolded)",
  32685. image: {
  32686. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32687. }
  32688. },
  32689. wings: {
  32690. height: math.unit(43, "feet"),
  32691. name: "Wings",
  32692. image: {
  32693. source: "./media/characters/irb'iiritaahn/wings.svg"
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Macro",
  32700. height: math.unit(50 + 9/12, "feet"),
  32701. default: true
  32702. },
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32707. {
  32708. front: {
  32709. height: math.unit(205, "cm"),
  32710. weight: math.unit(102, "kg"),
  32711. name: "Front",
  32712. image: {
  32713. source: "./media/characters/irbisgreif/front.svg",
  32714. extra: 785/706,
  32715. bottom: 13/798
  32716. }
  32717. },
  32718. back: {
  32719. height: math.unit(205, "cm"),
  32720. weight: math.unit(102, "kg"),
  32721. name: "Back",
  32722. image: {
  32723. source: "./media/characters/irbisgreif/back.svg",
  32724. extra: 713/701,
  32725. bottom: 26/739
  32726. }
  32727. },
  32728. frontDressed: {
  32729. height: math.unit(216, "cm"),
  32730. weight: math.unit(102, "kg"),
  32731. name: "Front-dressed",
  32732. image: {
  32733. source: "./media/characters/irbisgreif/front-dressed.svg",
  32734. extra: 902/776,
  32735. bottom: 14/916
  32736. }
  32737. },
  32738. sideDressed: {
  32739. height: math.unit(195, "cm"),
  32740. weight: math.unit(102, "kg"),
  32741. name: "Side-dressed",
  32742. image: {
  32743. source: "./media/characters/irbisgreif/side-dressed.svg",
  32744. extra: 788/688,
  32745. bottom: 21/809
  32746. }
  32747. },
  32748. backDressed: {
  32749. height: math.unit(216, "cm"),
  32750. weight: math.unit(102, "kg"),
  32751. name: "Back-dressed",
  32752. image: {
  32753. source: "./media/characters/irbisgreif/back-dressed.svg",
  32754. extra: 901/783,
  32755. bottom: 10/911
  32756. }
  32757. },
  32758. dick: {
  32759. height: math.unit(0.49, "feet"),
  32760. name: "Dick",
  32761. image: {
  32762. source: "./media/characters/irbisgreif/dick.svg"
  32763. }
  32764. },
  32765. wingTop: {
  32766. height: math.unit(1.93 , "feet"),
  32767. name: "Wing-top",
  32768. image: {
  32769. source: "./media/characters/irbisgreif/wing-top.svg"
  32770. }
  32771. },
  32772. wingBottom: {
  32773. height: math.unit(1.93 , "feet"),
  32774. name: "Wing-bottom",
  32775. image: {
  32776. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(216, "cm"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(6, "feet"),
  32793. weight: math.unit(150, "lb"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/pride/front.svg",
  32797. extra: 1299/1230,
  32798. bottom: 18/1317
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Normal",
  32805. height: math.unit(7, "feet")
  32806. },
  32807. {
  32808. name: "Mini-macro",
  32809. height: math.unit(11, "feet")
  32810. },
  32811. {
  32812. name: "Macro",
  32813. height: math.unit(15, "meters"),
  32814. default: true
  32815. },
  32816. {
  32817. name: "Macro+",
  32818. height: math.unit(40, "meters")
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32824. {
  32825. front: {
  32826. height: math.unit(4 + 2 / 12, "feet"),
  32827. weight: math.unit(95, "lb"),
  32828. name: "Front",
  32829. image: {
  32830. source: "./media/characters/vaelophis-nyx/front.svg",
  32831. extra: 2532/2330,
  32832. bottom: 0/2532
  32833. }
  32834. },
  32835. back: {
  32836. height: math.unit(4 + 2 / 12, "feet"),
  32837. weight: math.unit(95, "lb"),
  32838. name: "Back",
  32839. image: {
  32840. source: "./media/characters/vaelophis-nyx/back.svg",
  32841. extra: 2484/2361,
  32842. bottom: 0/2484
  32843. }
  32844. },
  32845. feralSide: {
  32846. height: math.unit(2 + 1/12, "feet"),
  32847. weight: math.unit(20, "lb"),
  32848. name: "Feral (Side)",
  32849. image: {
  32850. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32851. extra: 1721/1581,
  32852. bottom: 70/1791
  32853. }
  32854. },
  32855. feralLazing: {
  32856. height: math.unit(1.08, "feet"),
  32857. weight: math.unit(20, "lb"),
  32858. name: "Feral (Lazing)",
  32859. image: {
  32860. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32861. extra: 822/822,
  32862. bottom: 248/1070
  32863. }
  32864. },
  32865. ear: {
  32866. height: math.unit(0.416, "feet"),
  32867. name: "Ear",
  32868. image: {
  32869. source: "./media/characters/vaelophis-nyx/ear.svg"
  32870. }
  32871. },
  32872. eye: {
  32873. height: math.unit(0.0748, "feet"),
  32874. name: "Eye",
  32875. image: {
  32876. source: "./media/characters/vaelophis-nyx/eye.svg"
  32877. }
  32878. },
  32879. mouth: {
  32880. height: math.unit(0.378, "feet"),
  32881. name: "Mouth",
  32882. image: {
  32883. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32884. }
  32885. },
  32886. spade: {
  32887. height: math.unit(0.55, "feet"),
  32888. name: "Spade",
  32889. image: {
  32890. source: "./media/characters/vaelophis-nyx/spade.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(4 + 2/12, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32904. {
  32905. front: {
  32906. height: math.unit(7, "feet"),
  32907. weight: math.unit(231, "lb"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/flux/front.svg",
  32911. extra: 919/871,
  32912. bottom: 0/919
  32913. }
  32914. },
  32915. back: {
  32916. height: math.unit(7, "feet"),
  32917. weight: math.unit(231, "lb"),
  32918. name: "Back",
  32919. image: {
  32920. source: "./media/characters/flux/back.svg",
  32921. extra: 1040/992,
  32922. bottom: 0/1040
  32923. }
  32924. },
  32925. frontDressed: {
  32926. height: math.unit(7, "feet"),
  32927. weight: math.unit(231, "lb"),
  32928. name: "Front (Dressed)",
  32929. image: {
  32930. source: "./media/characters/flux/front-dressed.svg",
  32931. extra: 919/871,
  32932. bottom: 0/919
  32933. }
  32934. },
  32935. feralSide: {
  32936. height: math.unit(5, "feet"),
  32937. weight: math.unit(150, "lb"),
  32938. name: "Feral (Side)",
  32939. image: {
  32940. source: "./media/characters/flux/feral-side.svg",
  32941. extra: 598/528,
  32942. bottom: 28/626
  32943. }
  32944. },
  32945. head: {
  32946. height: math.unit(1.585, "feet"),
  32947. name: "Head",
  32948. image: {
  32949. source: "./media/characters/flux/head.svg"
  32950. }
  32951. },
  32952. headSide: {
  32953. height: math.unit(1.74, "feet"),
  32954. name: "Head (Side)",
  32955. image: {
  32956. source: "./media/characters/flux/head-side.svg"
  32957. }
  32958. },
  32959. headSideFire: {
  32960. height: math.unit(1.76, "feet"),
  32961. name: "Head (Side, Fire)",
  32962. image: {
  32963. source: "./media/characters/flux/head-side-fire.svg"
  32964. }
  32965. },
  32966. },
  32967. [
  32968. {
  32969. name: "Normal",
  32970. height: math.unit(7, "feet"),
  32971. default: true
  32972. },
  32973. ]
  32974. ))
  32975. characterMakers.push(() => makeCharacter(
  32976. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32977. {
  32978. front: {
  32979. height: math.unit(9, "feet"),
  32980. weight: math.unit(1012, "lb"),
  32981. name: "Front",
  32982. image: {
  32983. source: "./media/characters/ulfra-lupae/front.svg",
  32984. extra: 1083/1011,
  32985. bottom: 67/1150
  32986. }
  32987. },
  32988. },
  32989. [
  32990. {
  32991. name: "Micro",
  32992. height: math.unit(6, "inches")
  32993. },
  32994. {
  32995. name: "Socializing",
  32996. height: math.unit(6 + 5/12, "feet")
  32997. },
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(9, "feet"),
  33001. default: true
  33002. },
  33003. {
  33004. name: "Macro",
  33005. height: math.unit(150, "feet")
  33006. },
  33007. ]
  33008. ))
  33009. characterMakers.push(() => makeCharacter(
  33010. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33011. {
  33012. front: {
  33013. height: math.unit(5 + 2/12, "feet"),
  33014. weight: math.unit(120, "lb"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/timber/front.svg",
  33018. extra: 2814/2705,
  33019. bottom: 181/2995
  33020. }
  33021. },
  33022. },
  33023. [
  33024. {
  33025. name: "Normal",
  33026. height: math.unit(5 + 2/12, "feet"),
  33027. default: true
  33028. },
  33029. ]
  33030. ))
  33031. characterMakers.push(() => makeCharacter(
  33032. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33033. {
  33034. front: {
  33035. height: math.unit(9, "feet"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/nicki/front.svg",
  33039. extra: 1240/990,
  33040. bottom: 45/1285
  33041. },
  33042. form: "anthro",
  33043. default: true
  33044. },
  33045. side: {
  33046. height: math.unit(9, "feet"),
  33047. name: "Side",
  33048. image: {
  33049. source: "./media/characters/nicki/side.svg",
  33050. extra: 1047/973,
  33051. bottom: 61/1108
  33052. },
  33053. form: "anthro"
  33054. },
  33055. back: {
  33056. height: math.unit(9, "feet"),
  33057. name: "Back",
  33058. image: {
  33059. source: "./media/characters/nicki/back.svg",
  33060. extra: 1006/965,
  33061. bottom: 39/1045
  33062. },
  33063. form: "anthro"
  33064. },
  33065. taur: {
  33066. height: math.unit(15, "feet"),
  33067. name: "Taur",
  33068. image: {
  33069. source: "./media/characters/nicki/taur.svg",
  33070. extra: 1592/1347,
  33071. bottom: 0/1592
  33072. },
  33073. form: "taur",
  33074. default: true
  33075. },
  33076. },
  33077. [
  33078. {
  33079. name: "Normal",
  33080. height: math.unit(9, "feet"),
  33081. form: "anthro",
  33082. default: true
  33083. },
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(15, "feet"),
  33087. form: "taur",
  33088. default: true
  33089. }
  33090. ],
  33091. {
  33092. "anthro": {
  33093. name: "Anthro",
  33094. default: true
  33095. },
  33096. "taur": {
  33097. name: "Taur"
  33098. }
  33099. }
  33100. ))
  33101. characterMakers.push(() => makeCharacter(
  33102. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33103. {
  33104. front: {
  33105. height: math.unit(7 + 10/12, "feet"),
  33106. weight: math.unit(3.5, "tons"),
  33107. name: "Front",
  33108. image: {
  33109. source: "./media/characters/lee/front.svg",
  33110. extra: 1773/1615,
  33111. bottom: 86/1859
  33112. }
  33113. },
  33114. hand: {
  33115. height: math.unit(1.78, "feet"),
  33116. name: "Hand",
  33117. image: {
  33118. source: "./media/characters/lee/hand.svg"
  33119. }
  33120. },
  33121. maw: {
  33122. height: math.unit(1.18, "feet"),
  33123. name: "Maw",
  33124. image: {
  33125. source: "./media/characters/lee/maw.svg"
  33126. }
  33127. },
  33128. },
  33129. [
  33130. {
  33131. name: "Normal",
  33132. height: math.unit(7 + 10/12, "feet"),
  33133. default: true
  33134. },
  33135. ]
  33136. ))
  33137. characterMakers.push(() => makeCharacter(
  33138. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33139. {
  33140. front: {
  33141. height: math.unit(9, "feet"),
  33142. name: "Front",
  33143. image: {
  33144. source: "./media/characters/guti/front.svg",
  33145. extra: 4551/4355,
  33146. bottom: 123/4674
  33147. }
  33148. },
  33149. tongue: {
  33150. height: math.unit(1, "feet"),
  33151. name: "Tongue",
  33152. image: {
  33153. source: "./media/characters/guti/tongue.svg"
  33154. }
  33155. },
  33156. paw: {
  33157. height: math.unit(1.18, "feet"),
  33158. name: "Paw",
  33159. image: {
  33160. source: "./media/characters/guti/paw.svg"
  33161. }
  33162. },
  33163. },
  33164. [
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(9, "feet"),
  33168. default: true
  33169. },
  33170. ]
  33171. ))
  33172. characterMakers.push(() => makeCharacter(
  33173. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33174. {
  33175. side: {
  33176. height: math.unit(5, "meters"),
  33177. name: "Side",
  33178. image: {
  33179. source: "./media/characters/vesper/side.svg",
  33180. extra: 1605/1518,
  33181. bottom: 0/1605
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Small",
  33188. height: math.unit(5, "meters")
  33189. },
  33190. {
  33191. name: "Sage",
  33192. height: math.unit(100, "meters"),
  33193. default: true
  33194. },
  33195. {
  33196. name: "Fun Size",
  33197. height: math.unit(600, "meters")
  33198. },
  33199. {
  33200. name: "Goddess",
  33201. height: math.unit(20000, "km")
  33202. },
  33203. {
  33204. name: "Maximum",
  33205. height: math.unit(5, "galaxies")
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33211. {
  33212. front: {
  33213. height: math.unit(6 + 3/12, "feet"),
  33214. weight: math.unit(190, "lb"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/gawain/front.svg",
  33218. extra: 2222/2139,
  33219. bottom: 90/2312
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(6 + 3/12, "feet"),
  33224. weight: math.unit(190, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/gawain/back.svg",
  33228. extra: 2199/2111,
  33229. bottom: 73/2272
  33230. }
  33231. },
  33232. },
  33233. [
  33234. {
  33235. name: "Normal",
  33236. height: math.unit(6 + 3/12, "feet"),
  33237. default: true
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33243. {
  33244. side: {
  33245. height: math.unit(3.5, "meters"),
  33246. weight: math.unit(16000, "lb"),
  33247. name: "Side",
  33248. image: {
  33249. source: "./media/characters/dascalti/side.svg",
  33250. extra: 392/273,
  33251. bottom: 47/439
  33252. }
  33253. },
  33254. breath: {
  33255. height: math.unit(7.4, "feet"),
  33256. name: "Breath",
  33257. image: {
  33258. source: "./media/characters/dascalti/breath.svg"
  33259. }
  33260. },
  33261. fed: {
  33262. height: math.unit(3.6, "meters"),
  33263. weight: math.unit(16000, "lb"),
  33264. name: "Fed",
  33265. image: {
  33266. source: "./media/characters/dascalti/fed.svg",
  33267. extra: 1419/820,
  33268. bottom: 95/1514
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Normal",
  33275. height: math.unit(3.5, "meters"),
  33276. default: true
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(3 + 5/12, "feet"),
  33285. name: "Front",
  33286. image: {
  33287. source: "./media/characters/mauve/front.svg",
  33288. extra: 1126/1033,
  33289. bottom: 65/1191
  33290. }
  33291. },
  33292. side: {
  33293. height: math.unit(3 + 5/12, "feet"),
  33294. name: "Side",
  33295. image: {
  33296. source: "./media/characters/mauve/side.svg",
  33297. extra: 1089/1001,
  33298. bottom: 29/1118
  33299. }
  33300. },
  33301. back: {
  33302. height: math.unit(3 + 5/12, "feet"),
  33303. name: "Back",
  33304. image: {
  33305. source: "./media/characters/mauve/back.svg",
  33306. extra: 1173/1053,
  33307. bottom: 109/1282
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(3 + 5/12, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(6 + 3/12, "feet"),
  33324. weight: math.unit(430, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/carlos/front.svg",
  33328. extra: 1964/1913,
  33329. bottom: 70/2034
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(6 + 3/12, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33343. {
  33344. back: {
  33345. height: math.unit(5 + 10/12, "feet"),
  33346. weight: math.unit(200, "lb"),
  33347. name: "Back",
  33348. image: {
  33349. source: "./media/characters/jax/back.svg",
  33350. extra: 764/739,
  33351. bottom: 25/789
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(5 + 10/12, "feet"),
  33359. default: true
  33360. },
  33361. ]
  33362. ))
  33363. characterMakers.push(() => makeCharacter(
  33364. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33365. {
  33366. front: {
  33367. height: math.unit(8, "feet"),
  33368. weight: math.unit(250, "lb"),
  33369. name: "Front",
  33370. image: {
  33371. source: "./media/characters/eikthynir/front.svg",
  33372. extra: 1332/1166,
  33373. bottom: 82/1414
  33374. }
  33375. },
  33376. back: {
  33377. height: math.unit(8, "feet"),
  33378. weight: math.unit(250, "lb"),
  33379. name: "Back",
  33380. image: {
  33381. source: "./media/characters/eikthynir/back.svg",
  33382. extra: 1342/1190,
  33383. bottom: 19/1361
  33384. }
  33385. },
  33386. dick: {
  33387. height: math.unit(2.35, "feet"),
  33388. name: "Dick",
  33389. image: {
  33390. source: "./media/characters/eikthynir/dick.svg"
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(8, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(99, "meters"),
  33407. weight: math.unit(13000, "tons"),
  33408. name: "Front",
  33409. image: {
  33410. source: "./media/characters/zlmos/front.svg",
  33411. extra: 2202/1992,
  33412. bottom: 315/2517
  33413. }
  33414. },
  33415. },
  33416. [
  33417. {
  33418. name: "Macro",
  33419. height: math.unit(99, "meters"),
  33420. default: true
  33421. },
  33422. ]
  33423. ))
  33424. characterMakers.push(() => makeCharacter(
  33425. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33426. {
  33427. front: {
  33428. height: math.unit(6 + 5/12, "feet"),
  33429. name: "Front",
  33430. image: {
  33431. source: "./media/characters/purri/front.svg",
  33432. extra: 1698/1610,
  33433. bottom: 32/1730
  33434. }
  33435. },
  33436. frontAlt: {
  33437. height: math.unit(6 + 5/12, "feet"),
  33438. name: "Front (Alt)",
  33439. image: {
  33440. source: "./media/characters/purri/front-alt.svg",
  33441. extra: 450/420,
  33442. bottom: 26/476
  33443. }
  33444. },
  33445. boots: {
  33446. height: math.unit(5.5, "feet"),
  33447. name: "Boots",
  33448. image: {
  33449. source: "./media/characters/purri/boots.svg",
  33450. extra: 905/853,
  33451. bottom: 18/923
  33452. }
  33453. },
  33454. lying: {
  33455. height: math.unit(2, "feet"),
  33456. name: "Lying",
  33457. image: {
  33458. source: "./media/characters/purri/lying.svg",
  33459. extra: 940/843,
  33460. bottom: 146/1086
  33461. }
  33462. },
  33463. devious: {
  33464. height: math.unit(1.77, "feet"),
  33465. name: "Devious",
  33466. image: {
  33467. source: "./media/characters/purri/devious.svg",
  33468. extra: 1440/1155,
  33469. bottom: 147/1587
  33470. }
  33471. },
  33472. bean: {
  33473. height: math.unit(1.94, "feet"),
  33474. name: "Bean",
  33475. image: {
  33476. source: "./media/characters/purri/bean.svg"
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Micro",
  33483. height: math.unit(1, "mm")
  33484. },
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(6 + 5/12, "feet"),
  33488. default: true
  33489. },
  33490. {
  33491. name: "Macro :3c",
  33492. height: math.unit(2, "miles")
  33493. },
  33494. ]
  33495. ))
  33496. characterMakers.push(() => makeCharacter(
  33497. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33498. {
  33499. front: {
  33500. height: math.unit(6 + 2/12, "feet"),
  33501. weight: math.unit(250, "lb"),
  33502. name: "Front",
  33503. image: {
  33504. source: "./media/characters/moonlight/front.svg",
  33505. extra: 1044/908,
  33506. bottom: 56/1100
  33507. }
  33508. },
  33509. feral: {
  33510. height: math.unit(3 + 1/12, "feet"),
  33511. weight: math.unit(50, "kg"),
  33512. name: "Feral",
  33513. image: {
  33514. source: "./media/characters/moonlight/feral.svg",
  33515. extra: 3705/2791,
  33516. bottom: 145/3850
  33517. }
  33518. },
  33519. paw: {
  33520. height: math.unit(1, "feet"),
  33521. name: "Paw",
  33522. image: {
  33523. source: "./media/characters/moonlight/paw.svg"
  33524. }
  33525. },
  33526. paws: {
  33527. height: math.unit(0.98, "feet"),
  33528. name: "Paws",
  33529. image: {
  33530. source: "./media/characters/moonlight/paws.svg",
  33531. extra: 939/939,
  33532. bottom: 50/989
  33533. }
  33534. },
  33535. mouth: {
  33536. height: math.unit(0.48, "feet"),
  33537. name: "Mouth",
  33538. image: {
  33539. source: "./media/characters/moonlight/mouth.svg"
  33540. }
  33541. },
  33542. dick: {
  33543. height: math.unit(1.46, "feet"),
  33544. name: "Dick",
  33545. image: {
  33546. source: "./media/characters/moonlight/dick.svg"
  33547. }
  33548. },
  33549. },
  33550. [
  33551. {
  33552. name: "Normal",
  33553. height: math.unit(6 + 2/12, "feet"),
  33554. default: true
  33555. },
  33556. {
  33557. name: "Macro",
  33558. height: math.unit(300, "feet")
  33559. },
  33560. {
  33561. name: "Macro+",
  33562. height: math.unit(1, "mile")
  33563. },
  33564. {
  33565. name: "Mt. Moon",
  33566. height: math.unit(5, "miles")
  33567. },
  33568. {
  33569. name: "Megamacro",
  33570. height: math.unit(15, "miles")
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33576. {
  33577. back: {
  33578. height: math.unit(6, "feet"),
  33579. weight: math.unit(150, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/sylen/back.svg",
  33583. extra: 1335/1273,
  33584. bottom: 107/1442
  33585. }
  33586. },
  33587. },
  33588. [
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(5 + 5/12, "feet")
  33592. },
  33593. {
  33594. name: "Megamacro",
  33595. height: math.unit(3, "miles"),
  33596. default: true
  33597. },
  33598. ]
  33599. ))
  33600. characterMakers.push(() => makeCharacter(
  33601. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33602. {
  33603. front: {
  33604. height: math.unit(6, "feet"),
  33605. weight: math.unit(190, "lb"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/huttser/front.svg",
  33609. extra: 1152/1058,
  33610. bottom: 23/1175
  33611. }
  33612. },
  33613. side: {
  33614. height: math.unit(6, "feet"),
  33615. weight: math.unit(190, "lb"),
  33616. name: "Side",
  33617. image: {
  33618. source: "./media/characters/huttser/side.svg",
  33619. extra: 1174/1065,
  33620. bottom: 18/1192
  33621. }
  33622. },
  33623. back: {
  33624. height: math.unit(6, "feet"),
  33625. weight: math.unit(190, "lb"),
  33626. name: "Back",
  33627. image: {
  33628. source: "./media/characters/huttser/back.svg",
  33629. extra: 1158/1056,
  33630. bottom: 12/1170
  33631. }
  33632. },
  33633. },
  33634. [
  33635. ]
  33636. ))
  33637. characterMakers.push(() => makeCharacter(
  33638. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33639. {
  33640. side: {
  33641. height: math.unit(12 + 9/12, "feet"),
  33642. weight: math.unit(15000, "lb"),
  33643. name: "Side",
  33644. image: {
  33645. source: "./media/characters/faan/side.svg",
  33646. extra: 2747/2697,
  33647. bottom: 0/2747
  33648. }
  33649. },
  33650. front: {
  33651. height: math.unit(12 + 9/12, "feet"),
  33652. weight: math.unit(15000, "lb"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/faan/front.svg",
  33656. extra: 607/571,
  33657. bottom: 24/631
  33658. }
  33659. },
  33660. head: {
  33661. height: math.unit(2.85, "feet"),
  33662. name: "Head",
  33663. image: {
  33664. source: "./media/characters/faan/head.svg"
  33665. }
  33666. },
  33667. headAlt: {
  33668. height: math.unit(3.13, "feet"),
  33669. name: "Head-alt",
  33670. image: {
  33671. source: "./media/characters/faan/head-alt.svg"
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(12 + 9/12, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33685. {
  33686. front: {
  33687. height: math.unit(6, "feet"),
  33688. weight: math.unit(300, "lb"),
  33689. name: "Front",
  33690. image: {
  33691. source: "./media/characters/tanio/front.svg",
  33692. extra: 711/673,
  33693. bottom: 25/736
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(6, "feet"),
  33701. default: true
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(3, "inches"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/noboru/front.svg",
  33713. extra: 1039/932,
  33714. bottom: 18/1057
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Micro",
  33721. height: math.unit(3, "inches"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(1.85, "meters"),
  33731. weight: math.unit(80, "kg"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/daniel-barrett/front.svg",
  33735. extra: 355/337,
  33736. bottom: 9/364
  33737. }
  33738. },
  33739. },
  33740. [
  33741. {
  33742. name: "Pico",
  33743. height: math.unit(0.0433, "mm")
  33744. },
  33745. {
  33746. name: "Nano",
  33747. height: math.unit(1.5, "mm")
  33748. },
  33749. {
  33750. name: "Micro",
  33751. height: math.unit(5.3, "cm"),
  33752. default: true
  33753. },
  33754. {
  33755. name: "Normal",
  33756. height: math.unit(1.85, "meters")
  33757. },
  33758. {
  33759. name: "Macro",
  33760. height: math.unit(64.7, "meters")
  33761. },
  33762. {
  33763. name: "Megamacro",
  33764. height: math.unit(2.26, "km")
  33765. },
  33766. {
  33767. name: "Gigamacro",
  33768. height: math.unit(79, "km")
  33769. },
  33770. {
  33771. name: "Teramacro",
  33772. height: math.unit(2765, "km")
  33773. },
  33774. {
  33775. name: "Petamacro",
  33776. height: math.unit(96678, "km")
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33782. {
  33783. front: {
  33784. height: math.unit(30, "meters"),
  33785. weight: math.unit(400, "tons"),
  33786. name: "Front",
  33787. image: {
  33788. source: "./media/characters/zeel/front.svg",
  33789. extra: 2599/2599,
  33790. bottom: 226/2825
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Macro",
  33797. height: math.unit(30, "meters"),
  33798. default: true
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33804. {
  33805. front: {
  33806. height: math.unit(6 + 7/12, "feet"),
  33807. weight: math.unit(210, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/tarn/front.svg",
  33811. extra: 3517/3220,
  33812. bottom: 91/3608
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(6 + 7/12, "feet"),
  33817. weight: math.unit(210, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/tarn/back.svg",
  33821. extra: 3566/3241,
  33822. bottom: 34/3600
  33823. }
  33824. },
  33825. dick: {
  33826. height: math.unit(1.65, "feet"),
  33827. name: "Dick",
  33828. image: {
  33829. source: "./media/characters/tarn/dick.svg"
  33830. }
  33831. },
  33832. paw: {
  33833. height: math.unit(1.80, "feet"),
  33834. name: "Paw",
  33835. image: {
  33836. source: "./media/characters/tarn/paw.svg"
  33837. }
  33838. },
  33839. tongue: {
  33840. height: math.unit(0.97, "feet"),
  33841. name: "Tongue",
  33842. image: {
  33843. source: "./media/characters/tarn/tongue.svg"
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Micro",
  33850. height: math.unit(4, "inches")
  33851. },
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(6 + 7/12, "feet"),
  33855. default: true
  33856. },
  33857. {
  33858. name: "Macro",
  33859. height: math.unit(300, "feet")
  33860. },
  33861. ]
  33862. ))
  33863. characterMakers.push(() => makeCharacter(
  33864. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33865. {
  33866. front: {
  33867. height: math.unit(5 + 7/12, "feet"),
  33868. weight: math.unit(80, "kg"),
  33869. name: "Front",
  33870. image: {
  33871. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33872. extra: 3023/2865,
  33873. bottom: 33/3056
  33874. }
  33875. },
  33876. back: {
  33877. height: math.unit(5 + 7/12, "feet"),
  33878. weight: math.unit(80, "kg"),
  33879. name: "Back",
  33880. image: {
  33881. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33882. extra: 3020/2886,
  33883. bottom: 30/3050
  33884. }
  33885. },
  33886. dick: {
  33887. height: math.unit(0.98, "feet"),
  33888. name: "Dick",
  33889. image: {
  33890. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33891. }
  33892. },
  33893. anatomy: {
  33894. height: math.unit(2.86, "feet"),
  33895. name: "Anatomy",
  33896. image: {
  33897. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33898. }
  33899. },
  33900. },
  33901. [
  33902. {
  33903. name: "Really Small",
  33904. height: math.unit(2, "inches")
  33905. },
  33906. {
  33907. name: "Micro",
  33908. height: math.unit(5.583, "inches")
  33909. },
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(5 + 7/12, "feet"),
  33913. default: true
  33914. },
  33915. {
  33916. name: "Macro",
  33917. height: math.unit(67, "feet")
  33918. },
  33919. {
  33920. name: "Megamacro",
  33921. height: math.unit(134, "feet")
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33927. {
  33928. front: {
  33929. height: math.unit(9, "feet"),
  33930. weight: math.unit(120, "lb"),
  33931. name: "Front",
  33932. image: {
  33933. source: "./media/characters/sally/front.svg",
  33934. extra: 1506/1349,
  33935. bottom: 66/1572
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(9, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(8, "feet"),
  33952. weight: math.unit(900, "lb"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/owen/front.svg",
  33956. extra: 1761/1657,
  33957. bottom: 74/1835
  33958. }
  33959. },
  33960. side: {
  33961. height: math.unit(8, "feet"),
  33962. weight: math.unit(900, "lb"),
  33963. name: "Side",
  33964. image: {
  33965. source: "./media/characters/owen/side.svg",
  33966. extra: 1797/1734,
  33967. bottom: 30/1827
  33968. }
  33969. },
  33970. back: {
  33971. height: math.unit(8, "feet"),
  33972. weight: math.unit(900, "lb"),
  33973. name: "Back",
  33974. image: {
  33975. source: "./media/characters/owen/back.svg",
  33976. extra: 1796/1706,
  33977. bottom: 59/1855
  33978. }
  33979. },
  33980. maw: {
  33981. height: math.unit(1.76, "feet"),
  33982. name: "Maw",
  33983. image: {
  33984. source: "./media/characters/owen/maw.svg"
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(8, "feet"),
  33992. default: true
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33998. {
  33999. front: {
  34000. height: math.unit(4, "feet"),
  34001. weight: math.unit(400, "lb"),
  34002. name: "Front",
  34003. image: {
  34004. source: "./media/characters/ryth/front.svg",
  34005. extra: 1920/1748,
  34006. bottom: 42/1962
  34007. }
  34008. },
  34009. back: {
  34010. height: math.unit(4, "feet"),
  34011. weight: math.unit(400, "lb"),
  34012. name: "Back",
  34013. image: {
  34014. source: "./media/characters/ryth/back.svg",
  34015. extra: 1897/1690,
  34016. bottom: 89/1986
  34017. }
  34018. },
  34019. mouth: {
  34020. height: math.unit(1.39, "feet"),
  34021. name: "Mouth",
  34022. image: {
  34023. source: "./media/characters/ryth/mouth.svg"
  34024. }
  34025. },
  34026. tailmaw: {
  34027. height: math.unit(1.23, "feet"),
  34028. name: "Tailmaw",
  34029. image: {
  34030. source: "./media/characters/ryth/tailmaw.svg"
  34031. }
  34032. },
  34033. goia: {
  34034. height: math.unit(4, "meters"),
  34035. weight: math.unit(10800, "lb"),
  34036. name: "Goia",
  34037. image: {
  34038. source: "./media/characters/ryth/goia.svg",
  34039. extra: 745/640,
  34040. bottom: 107/852
  34041. }
  34042. },
  34043. goiaFront: {
  34044. height: math.unit(4, "meters"),
  34045. weight: math.unit(10800, "lb"),
  34046. name: "Goia (Front)",
  34047. image: {
  34048. source: "./media/characters/ryth/goia-front.svg",
  34049. extra: 750/586,
  34050. bottom: 114/864
  34051. }
  34052. },
  34053. goiaMaw: {
  34054. height: math.unit(5.55, "feet"),
  34055. name: "Goia Maw",
  34056. image: {
  34057. source: "./media/characters/ryth/goia-maw.svg"
  34058. }
  34059. },
  34060. goiaForepaw: {
  34061. height: math.unit(3.5, "feet"),
  34062. name: "Goia Forepaw",
  34063. image: {
  34064. source: "./media/characters/ryth/goia-forepaw.svg"
  34065. }
  34066. },
  34067. goiaHindpaw: {
  34068. height: math.unit(5.55, "feet"),
  34069. name: "Goia Hindpaw",
  34070. image: {
  34071. source: "./media/characters/ryth/goia-hindpaw.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(4, "feet"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(7, "feet"),
  34088. weight: math.unit(180, "lb"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/necrolance/front.svg",
  34092. extra: 1062/947,
  34093. bottom: 41/1103
  34094. }
  34095. },
  34096. back: {
  34097. height: math.unit(7, "feet"),
  34098. weight: math.unit(180, "lb"),
  34099. name: "Back",
  34100. image: {
  34101. source: "./media/characters/necrolance/back.svg",
  34102. extra: 1045/984,
  34103. bottom: 14/1059
  34104. }
  34105. },
  34106. wing: {
  34107. height: math.unit(2.67, "feet"),
  34108. name: "Wing",
  34109. image: {
  34110. source: "./media/characters/necrolance/wing.svg"
  34111. }
  34112. },
  34113. },
  34114. [
  34115. {
  34116. name: "Normal",
  34117. height: math.unit(7, "feet"),
  34118. default: true
  34119. },
  34120. ]
  34121. ))
  34122. characterMakers.push(() => makeCharacter(
  34123. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34124. {
  34125. front: {
  34126. height: math.unit(76, "meters"),
  34127. weight: math.unit(30000, "tons"),
  34128. name: "Front",
  34129. image: {
  34130. source: "./media/characters/tyler/front.svg",
  34131. extra: 1640/1640,
  34132. bottom: 114/1754
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Macro",
  34139. height: math.unit(76, "meters"),
  34140. default: true
  34141. },
  34142. ]
  34143. ))
  34144. characterMakers.push(() => makeCharacter(
  34145. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34146. {
  34147. front: {
  34148. height: math.unit(4 + 11/12, "feet"),
  34149. weight: math.unit(132, "lb"),
  34150. name: "Front",
  34151. image: {
  34152. source: "./media/characters/icey/front.svg",
  34153. extra: 2750/2550,
  34154. bottom: 33/2783
  34155. }
  34156. },
  34157. back: {
  34158. height: math.unit(4 + 11/12, "feet"),
  34159. weight: math.unit(132, "lb"),
  34160. name: "Back",
  34161. image: {
  34162. source: "./media/characters/icey/back.svg",
  34163. extra: 2624/2481,
  34164. bottom: 35/2659
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(4 + 11/12, "feet"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(100, "feet"),
  34181. weight: math.unit(0, "lb"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/smile/front.svg",
  34185. extra: 2983/2912,
  34186. bottom: 162/3145
  34187. }
  34188. },
  34189. back: {
  34190. height: math.unit(100, "feet"),
  34191. weight: math.unit(0, "lb"),
  34192. name: "Back",
  34193. image: {
  34194. source: "./media/characters/smile/back.svg",
  34195. extra: 3143/3031,
  34196. bottom: 91/3234
  34197. }
  34198. },
  34199. head: {
  34200. height: math.unit(26.3, "feet"),
  34201. weight: math.unit(0, "lb"),
  34202. name: "Head",
  34203. image: {
  34204. source: "./media/characters/smile/head.svg"
  34205. }
  34206. },
  34207. collar: {
  34208. height: math.unit(5.3, "feet"),
  34209. weight: math.unit(0, "lb"),
  34210. name: "Collar",
  34211. image: {
  34212. source: "./media/characters/smile/collar.svg"
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Macro",
  34219. height: math.unit(100, "feet"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34226. {
  34227. dragon: {
  34228. height: math.unit(26, "feet"),
  34229. weight: math.unit(36, "tons"),
  34230. name: "Dragon",
  34231. image: {
  34232. source: "./media/characters/arimphae/dragon.svg",
  34233. extra: 1574/983,
  34234. bottom: 357/1931
  34235. }
  34236. },
  34237. drake: {
  34238. height: math.unit(9, "feet"),
  34239. weight: math.unit(1.5, "tons"),
  34240. name: "Drake",
  34241. image: {
  34242. source: "./media/characters/arimphae/drake.svg",
  34243. extra: 1120/925,
  34244. bottom: 435/1555
  34245. }
  34246. },
  34247. },
  34248. [
  34249. {
  34250. name: "Small",
  34251. height: math.unit(26*5/9, "feet")
  34252. },
  34253. {
  34254. name: "Normal",
  34255. height: math.unit(26, "feet"),
  34256. default: true
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(8 + 9/12, "feet"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/xander/front.svg",
  34268. extra: 1237/974,
  34269. bottom: 94/1331
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(8 + 9/12, "feet"),
  34277. default: true
  34278. },
  34279. {
  34280. name: "Gaze Grabber",
  34281. height: math.unit(13 + 8/12, "feet")
  34282. },
  34283. {
  34284. name: "Jaw Dropper",
  34285. height: math.unit(27, "feet")
  34286. },
  34287. {
  34288. name: "Show Stopper",
  34289. height: math.unit(136, "feet")
  34290. },
  34291. {
  34292. name: "Superstar",
  34293. height: math.unit(1.9e6, "miles")
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34299. {
  34300. side: {
  34301. height: math.unit(2100, "feet"),
  34302. name: "Side",
  34303. image: {
  34304. source: "./media/characters/osiris/side.svg",
  34305. extra: 1105/939,
  34306. bottom: 167/1272
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Macro",
  34313. height: math.unit(2100, "feet"),
  34314. default: true
  34315. },
  34316. ]
  34317. ))
  34318. characterMakers.push(() => makeCharacter(
  34319. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34320. {
  34321. front: {
  34322. height: math.unit(6 + 8/12, "feet"),
  34323. weight: math.unit(225, "lb"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/rhys-londe/front.svg",
  34327. extra: 2258/2141,
  34328. bottom: 188/2446
  34329. }
  34330. },
  34331. back: {
  34332. height: math.unit(6 + 8/12, "feet"),
  34333. weight: math.unit(225, "lb"),
  34334. name: "Back",
  34335. image: {
  34336. source: "./media/characters/rhys-londe/back.svg",
  34337. extra: 2237/2137,
  34338. bottom: 63/2300
  34339. }
  34340. },
  34341. frontNsfw: {
  34342. height: math.unit(6 + 8/12, "feet"),
  34343. weight: math.unit(225, "lb"),
  34344. name: "Front (NSFW)",
  34345. image: {
  34346. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34347. extra: 2258/2141,
  34348. bottom: 188/2446
  34349. }
  34350. },
  34351. backNsfw: {
  34352. height: math.unit(6 + 8/12, "feet"),
  34353. weight: math.unit(225, "lb"),
  34354. name: "Back (NSFW)",
  34355. image: {
  34356. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34357. extra: 2237/2137,
  34358. bottom: 63/2300
  34359. }
  34360. },
  34361. dick: {
  34362. height: math.unit(30, "inches"),
  34363. name: "Dick",
  34364. image: {
  34365. source: "./media/characters/rhys-londe/dick.svg"
  34366. }
  34367. },
  34368. maw: {
  34369. height: math.unit(1.6, "feet"),
  34370. name: "Maw",
  34371. image: {
  34372. source: "./media/characters/rhys-londe/maw.svg"
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(6 + 8/12, "feet"),
  34380. default: true
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34386. {
  34387. front: {
  34388. height: math.unit(3 + 10/12, "feet"),
  34389. weight: math.unit(90, "lb"),
  34390. name: "Front",
  34391. image: {
  34392. source: "./media/characters/taivas-ensim/front.svg",
  34393. extra: 1327/1216,
  34394. bottom: 96/1423
  34395. }
  34396. },
  34397. back: {
  34398. height: math.unit(3 + 10/12, "feet"),
  34399. weight: math.unit(90, "lb"),
  34400. name: "Back",
  34401. image: {
  34402. source: "./media/characters/taivas-ensim/back.svg",
  34403. extra: 1355/1247,
  34404. bottom: 11/1366
  34405. }
  34406. },
  34407. frontNsfw: {
  34408. height: math.unit(3 + 10/12, "feet"),
  34409. weight: math.unit(90, "lb"),
  34410. name: "Front (NSFW)",
  34411. image: {
  34412. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34413. extra: 1327/1216,
  34414. bottom: 96/1423
  34415. }
  34416. },
  34417. backNsfw: {
  34418. height: math.unit(3 + 10/12, "feet"),
  34419. weight: math.unit(90, "lb"),
  34420. name: "Back (NSFW)",
  34421. image: {
  34422. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34423. extra: 1355/1247,
  34424. bottom: 11/1366
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(3 + 10/12, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(9 + 6/12, "feet"),
  34441. weight: math.unit(940, "lb"),
  34442. name: "Front",
  34443. image: {
  34444. source: "./media/characters/byliss/front.svg",
  34445. extra: 1327/1290,
  34446. bottom: 82/1409
  34447. }
  34448. },
  34449. back: {
  34450. height: math.unit(9 + 6/12, "feet"),
  34451. weight: math.unit(940, "lb"),
  34452. name: "Back",
  34453. image: {
  34454. source: "./media/characters/byliss/back.svg",
  34455. extra: 1376/1349,
  34456. bottom: 9/1385
  34457. }
  34458. },
  34459. frontNsfw: {
  34460. height: math.unit(9 + 6/12, "feet"),
  34461. weight: math.unit(940, "lb"),
  34462. name: "Front (NSFW)",
  34463. image: {
  34464. source: "./media/characters/byliss/front-nsfw.svg",
  34465. extra: 1327/1290,
  34466. bottom: 82/1409
  34467. }
  34468. },
  34469. backNsfw: {
  34470. height: math.unit(9 + 6/12, "feet"),
  34471. weight: math.unit(940, "lb"),
  34472. name: "Back (NSFW)",
  34473. image: {
  34474. source: "./media/characters/byliss/back-nsfw.svg",
  34475. extra: 1376/1349,
  34476. bottom: 9/1385
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(9 + 6/12, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(5 + 2/12, "feet"),
  34493. weight: math.unit(200, "lb"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/noraly/front.svg",
  34497. extra: 4985/4773,
  34498. bottom: 150/5135
  34499. }
  34500. },
  34501. full: {
  34502. height: math.unit(5 + 2/12, "feet"),
  34503. weight: math.unit(164, "lb"),
  34504. name: "Full",
  34505. image: {
  34506. source: "./media/characters/noraly/full.svg",
  34507. extra: 1114/1059,
  34508. bottom: 35/1149
  34509. }
  34510. },
  34511. fuller: {
  34512. height: math.unit(5 + 2/12, "feet"),
  34513. weight: math.unit(230, "lb"),
  34514. name: "Fuller",
  34515. image: {
  34516. source: "./media/characters/noraly/fuller.svg",
  34517. extra: 1114/1059,
  34518. bottom: 35/1149
  34519. }
  34520. },
  34521. fullest: {
  34522. height: math.unit(5 + 2/12, "feet"),
  34523. weight: math.unit(300, "lb"),
  34524. name: "Fullest",
  34525. image: {
  34526. source: "./media/characters/noraly/fullest.svg",
  34527. extra: 1114/1059,
  34528. bottom: 35/1149
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(5 + 2/12, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34542. {
  34543. front: {
  34544. height: math.unit(5 + 2/12, "feet"),
  34545. weight: math.unit(210, "lb"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/pera/front.svg",
  34549. extra: 1560/1531,
  34550. bottom: 165/1725
  34551. }
  34552. },
  34553. back: {
  34554. height: math.unit(5 + 2/12, "feet"),
  34555. weight: math.unit(210, "lb"),
  34556. name: "Back",
  34557. image: {
  34558. source: "./media/characters/pera/back.svg",
  34559. extra: 1523/1493,
  34560. bottom: 152/1675
  34561. }
  34562. },
  34563. dick: {
  34564. height: math.unit(2.4, "feet"),
  34565. name: "Dick",
  34566. image: {
  34567. source: "./media/characters/pera/dick.svg"
  34568. }
  34569. },
  34570. },
  34571. [
  34572. {
  34573. name: "Normal",
  34574. height: math.unit(5 + 2/12, "feet"),
  34575. default: true
  34576. },
  34577. ]
  34578. ))
  34579. characterMakers.push(() => makeCharacter(
  34580. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34581. {
  34582. front: {
  34583. height: math.unit(12, "feet"),
  34584. weight: math.unit(3200, "lb"),
  34585. name: "Front",
  34586. image: {
  34587. source: "./media/characters/julian/front.svg",
  34588. extra: 2962/2701,
  34589. bottom: 184/3146
  34590. }
  34591. },
  34592. maw: {
  34593. height: math.unit(5.35, "feet"),
  34594. name: "Maw",
  34595. image: {
  34596. source: "./media/characters/julian/maw.svg"
  34597. }
  34598. },
  34599. paw: {
  34600. height: math.unit(3.07, "feet"),
  34601. name: "Paw",
  34602. image: {
  34603. source: "./media/characters/julian/paw.svg"
  34604. }
  34605. },
  34606. },
  34607. [
  34608. {
  34609. name: "Default",
  34610. height: math.unit(12, "feet"),
  34611. default: true
  34612. },
  34613. {
  34614. name: "Big",
  34615. height: math.unit(50, "feet")
  34616. },
  34617. {
  34618. name: "Really Big",
  34619. height: math.unit(1, "mile")
  34620. },
  34621. {
  34622. name: "Extremely Big",
  34623. height: math.unit(100, "miles")
  34624. },
  34625. {
  34626. name: "Planet Hugger",
  34627. height: math.unit(200, "megameters")
  34628. },
  34629. {
  34630. name: "Unreasonably Big",
  34631. height: math.unit(1e300, "meters")
  34632. },
  34633. ]
  34634. ))
  34635. characterMakers.push(() => makeCharacter(
  34636. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34637. {
  34638. solgooleo: {
  34639. height: math.unit(4, "meters"),
  34640. weight: math.unit(6000*1.5, "kg"),
  34641. volume: math.unit(6000, "liters"),
  34642. name: "Solgooleo",
  34643. image: {
  34644. source: "./media/characters/pi/solgooleo.svg",
  34645. extra: 388/331,
  34646. bottom: 29/417
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(4, "meters"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(8, "feet"),
  34663. weight: math.unit(4, "tons"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/shaun/front.svg",
  34667. extra: 503/495,
  34668. bottom: 20/523
  34669. }
  34670. },
  34671. back: {
  34672. height: math.unit(8, "feet"),
  34673. weight: math.unit(4, "tons"),
  34674. name: "Back",
  34675. image: {
  34676. source: "./media/characters/shaun/back.svg",
  34677. extra: 487/480,
  34678. bottom: 20/507
  34679. }
  34680. },
  34681. },
  34682. [
  34683. {
  34684. name: "Lorg",
  34685. height: math.unit(8, "feet"),
  34686. default: true
  34687. },
  34688. ]
  34689. ))
  34690. characterMakers.push(() => makeCharacter(
  34691. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34692. {
  34693. frontAnthro: {
  34694. height: math.unit(7, "feet"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/sini/front-anthro.svg",
  34698. extra: 726/678,
  34699. bottom: 35/761
  34700. },
  34701. form: "anthro",
  34702. default: true
  34703. },
  34704. backAnthro: {
  34705. height: math.unit(7, "feet"),
  34706. name: "Back",
  34707. image: {
  34708. source: "./media/characters/sini/back-anthro.svg",
  34709. extra: 743/701,
  34710. bottom: 12/755
  34711. },
  34712. form: "anthro",
  34713. },
  34714. frontAnthroNsfw: {
  34715. height: math.unit(7, "feet"),
  34716. name: "Front (NSFW)",
  34717. image: {
  34718. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34719. extra: 726/678,
  34720. bottom: 35/761
  34721. },
  34722. form: "anthro"
  34723. },
  34724. backAnthroNsfw: {
  34725. height: math.unit(7, "feet"),
  34726. name: "Back (NSFW)",
  34727. image: {
  34728. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34729. extra: 743/701,
  34730. bottom: 12/755
  34731. },
  34732. form: "anthro",
  34733. },
  34734. mawAnthro: {
  34735. height: math.unit(2.14, "feet"),
  34736. name: "Maw",
  34737. image: {
  34738. source: "./media/characters/sini/maw-anthro.svg"
  34739. },
  34740. form: "anthro"
  34741. },
  34742. dick: {
  34743. height: math.unit(1.45, "feet"),
  34744. name: "Dick",
  34745. image: {
  34746. source: "./media/characters/sini/dick-anthro.svg"
  34747. },
  34748. form: "anthro"
  34749. },
  34750. feral: {
  34751. height: math.unit(16, "feet"),
  34752. name: "Feral",
  34753. image: {
  34754. source: "./media/characters/sini/feral.svg",
  34755. extra: 814/605,
  34756. bottom: 11/825
  34757. },
  34758. form: "feral",
  34759. default: true
  34760. },
  34761. feralNsfw: {
  34762. height: math.unit(16, "feet"),
  34763. name: "Feral (NSFW)",
  34764. image: {
  34765. source: "./media/characters/sini/feral-nsfw.svg",
  34766. extra: 814/605,
  34767. bottom: 11/825
  34768. },
  34769. form: "feral"
  34770. },
  34771. mawFeral: {
  34772. height: math.unit(5.66, "feet"),
  34773. name: "Maw",
  34774. image: {
  34775. source: "./media/characters/sini/maw-feral.svg"
  34776. },
  34777. form: "feral",
  34778. },
  34779. pawFeral: {
  34780. height: math.unit(5.17, "feet"),
  34781. name: "Paw",
  34782. image: {
  34783. source: "./media/characters/sini/paw-feral.svg"
  34784. },
  34785. form: "feral",
  34786. },
  34787. rumpFeral: {
  34788. height: math.unit(13.11, "feet"),
  34789. name: "Rump",
  34790. image: {
  34791. source: "./media/characters/sini/rump-feral.svg"
  34792. },
  34793. form: "feral",
  34794. },
  34795. dickFeral: {
  34796. height: math.unit(1, "feet"),
  34797. name: "Dick",
  34798. image: {
  34799. source: "./media/characters/sini/dick-feral.svg"
  34800. },
  34801. form: "feral",
  34802. },
  34803. eyeFeral: {
  34804. height: math.unit(1.23, "feet"),
  34805. name: "Eye",
  34806. image: {
  34807. source: "./media/characters/sini/eye-feral.svg"
  34808. },
  34809. form: "feral",
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(7, "feet"),
  34816. default: true,
  34817. form: "anthro"
  34818. },
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(16, "feet"),
  34822. default: true,
  34823. form: "feral"
  34824. },
  34825. ],
  34826. {
  34827. "anthro": {
  34828. name: "Anthro",
  34829. default: true
  34830. },
  34831. "feral": {
  34832. name: "Feral",
  34833. }
  34834. }
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34838. {
  34839. side: {
  34840. height: math.unit(47.2, "meters"),
  34841. weight: math.unit(10000, "tons"),
  34842. name: "Side",
  34843. image: {
  34844. source: "./media/characters/raylldo/side.svg",
  34845. extra: 2363/642,
  34846. bottom: 221/2584
  34847. }
  34848. },
  34849. top: {
  34850. height: math.unit(240, "meters"),
  34851. weight: math.unit(10000, "tons"),
  34852. name: "Top",
  34853. image: {
  34854. source: "./media/characters/raylldo/top.svg"
  34855. }
  34856. },
  34857. bottom: {
  34858. height: math.unit(240, "meters"),
  34859. weight: math.unit(10000, "tons"),
  34860. name: "Bottom",
  34861. image: {
  34862. source: "./media/characters/raylldo/bottom.svg"
  34863. }
  34864. },
  34865. head: {
  34866. height: math.unit(38.6, "meters"),
  34867. name: "Head",
  34868. image: {
  34869. source: "./media/characters/raylldo/head.svg",
  34870. extra: 1335/1112,
  34871. bottom: 0/1335
  34872. }
  34873. },
  34874. maw: {
  34875. height: math.unit(16.37, "meters"),
  34876. name: "Maw",
  34877. image: {
  34878. source: "./media/characters/raylldo/maw.svg",
  34879. extra: 883/660,
  34880. bottom: 0/883
  34881. },
  34882. extraAttributes: {
  34883. preyCapacity: {
  34884. name: "Capacity",
  34885. power: 3,
  34886. type: "volume",
  34887. base: math.unit(1000, "people")
  34888. },
  34889. tongueSize: {
  34890. name: "Tongue Size",
  34891. power: 2,
  34892. type: "area",
  34893. base: math.unit(21, "m^2")
  34894. }
  34895. }
  34896. },
  34897. forepaw: {
  34898. height: math.unit(18, "meters"),
  34899. name: "Forepaw",
  34900. image: {
  34901. source: "./media/characters/raylldo/forepaw.svg"
  34902. }
  34903. },
  34904. hindpaw: {
  34905. height: math.unit(23, "meters"),
  34906. name: "Hindpaw",
  34907. image: {
  34908. source: "./media/characters/raylldo/hindpaw.svg"
  34909. }
  34910. },
  34911. genitals: {
  34912. height: math.unit(42, "meters"),
  34913. name: "Genitals",
  34914. image: {
  34915. source: "./media/characters/raylldo/genitals.svg"
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Normal",
  34922. height: math.unit(47.2, "meters"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34929. {
  34930. anthroFront: {
  34931. height: math.unit(9, "feet"),
  34932. weight: math.unit(600, "lb"),
  34933. name: "Anthro (Front)",
  34934. image: {
  34935. source: "./media/characters/glint/anthro-front.svg",
  34936. extra: 1097/1018,
  34937. bottom: 28/1125
  34938. }
  34939. },
  34940. anthroBack: {
  34941. height: math.unit(9, "feet"),
  34942. weight: math.unit(600, "lb"),
  34943. name: "Anthro (Back)",
  34944. image: {
  34945. source: "./media/characters/glint/anthro-back.svg",
  34946. extra: 1154/997,
  34947. bottom: 36/1190
  34948. }
  34949. },
  34950. feral: {
  34951. height: math.unit(11, "feet"),
  34952. weight: math.unit(50000, "lb"),
  34953. name: "Feral",
  34954. image: {
  34955. source: "./media/characters/glint/feral.svg",
  34956. extra: 3035/1585,
  34957. bottom: 1169/4204
  34958. }
  34959. },
  34960. dickAnthro: {
  34961. height: math.unit(0.7, "meters"),
  34962. name: "Dick (Anthro)",
  34963. image: {
  34964. source: "./media/characters/glint/dick-anthro.svg"
  34965. }
  34966. },
  34967. dickFeral: {
  34968. height: math.unit(2.65, "meters"),
  34969. name: "Dick (Feral)",
  34970. image: {
  34971. source: "./media/characters/glint/dick-feral.svg"
  34972. }
  34973. },
  34974. slitHidden: {
  34975. height: math.unit(5.85, "meters"),
  34976. name: "Slit (Hidden)",
  34977. image: {
  34978. source: "./media/characters/glint/slit-hidden.svg"
  34979. }
  34980. },
  34981. slitErect: {
  34982. height: math.unit(5.85, "meters"),
  34983. name: "Slit (Erect)",
  34984. image: {
  34985. source: "./media/characters/glint/slit-erect.svg"
  34986. }
  34987. },
  34988. mawAnthro: {
  34989. height: math.unit(0.63, "meters"),
  34990. name: "Maw (Anthro)",
  34991. image: {
  34992. source: "./media/characters/glint/maw.svg"
  34993. }
  34994. },
  34995. mawFeral: {
  34996. height: math.unit(2.89, "meters"),
  34997. name: "Maw (Feral)",
  34998. image: {
  34999. source: "./media/characters/glint/maw.svg"
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(9, "feet"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35013. {
  35014. side: {
  35015. height: math.unit(15, "feet"),
  35016. weight: math.unit(5000, "kg"),
  35017. name: "Side",
  35018. image: {
  35019. source: "./media/characters/kairne/side.svg",
  35020. extra: 979/811,
  35021. bottom: 13/992
  35022. }
  35023. },
  35024. front: {
  35025. height: math.unit(15, "feet"),
  35026. weight: math.unit(5000, "kg"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/kairne/front.svg",
  35030. extra: 908/814,
  35031. bottom: 26/934
  35032. }
  35033. },
  35034. sideNsfw: {
  35035. height: math.unit(15, "feet"),
  35036. weight: math.unit(5000, "kg"),
  35037. name: "Side (NSFW)",
  35038. image: {
  35039. source: "./media/characters/kairne/side-nsfw.svg",
  35040. extra: 979/811,
  35041. bottom: 13/992
  35042. }
  35043. },
  35044. frontNsfw: {
  35045. height: math.unit(15, "feet"),
  35046. weight: math.unit(5000, "kg"),
  35047. name: "Front (NSFW)",
  35048. image: {
  35049. source: "./media/characters/kairne/front-nsfw.svg",
  35050. extra: 908/814,
  35051. bottom: 26/934
  35052. }
  35053. },
  35054. dickCaged: {
  35055. height: math.unit(0.65, "meters"),
  35056. name: "Dick-caged",
  35057. image: {
  35058. source: "./media/characters/kairne/dick-caged.svg"
  35059. }
  35060. },
  35061. dick: {
  35062. height: math.unit(0.79, "meters"),
  35063. name: "Dick",
  35064. image: {
  35065. source: "./media/characters/kairne/dick.svg"
  35066. }
  35067. },
  35068. genitals: {
  35069. height: math.unit(1.29, "meters"),
  35070. name: "Genitals",
  35071. image: {
  35072. source: "./media/characters/kairne/genitals.svg"
  35073. }
  35074. },
  35075. maw: {
  35076. height: math.unit(1.73, "meters"),
  35077. name: "Maw",
  35078. image: {
  35079. source: "./media/characters/kairne/maw.svg"
  35080. }
  35081. },
  35082. },
  35083. [
  35084. {
  35085. name: "Normal",
  35086. height: math.unit(15, "feet"),
  35087. default: true
  35088. },
  35089. ]
  35090. ))
  35091. characterMakers.push(() => makeCharacter(
  35092. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35093. {
  35094. front: {
  35095. height: math.unit(5 + 8/12, "feet"),
  35096. weight: math.unit(139, "lb"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/biscuit-jackal/front.svg",
  35100. extra: 2106/1961,
  35101. bottom: 58/2164
  35102. }
  35103. },
  35104. back: {
  35105. height: math.unit(5 + 8/12, "feet"),
  35106. weight: math.unit(139, "lb"),
  35107. name: "Back",
  35108. image: {
  35109. source: "./media/characters/biscuit-jackal/back.svg",
  35110. extra: 2132/1976,
  35111. bottom: 57/2189
  35112. }
  35113. },
  35114. werejackal: {
  35115. height: math.unit(6 + 3/12, "feet"),
  35116. weight: math.unit(188, "lb"),
  35117. name: "Werejackal",
  35118. image: {
  35119. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35120. extra: 2373/2178,
  35121. bottom: 53/2426
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(5 + 8/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(140, "cm"),
  35138. weight: math.unit(45, "kg"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/tayra-white/front.svg",
  35142. extra: 2229/2192,
  35143. bottom: 75/2304
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Normal",
  35150. height: math.unit(140, "cm"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(4 + 5/12, "feet"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/scoop/front.svg",
  35163. extra: 1257/1136,
  35164. bottom: 69/1326
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(4 + 5/12, "feet"),
  35169. name: "Back",
  35170. image: {
  35171. source: "./media/characters/scoop/back.svg",
  35172. extra: 1321/1152,
  35173. bottom: 32/1353
  35174. }
  35175. },
  35176. maw: {
  35177. height: math.unit(0.68, "feet"),
  35178. name: "Maw",
  35179. image: {
  35180. source: "./media/characters/scoop/maw.svg"
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Really Small",
  35187. height: math.unit(1, "mm")
  35188. },
  35189. {
  35190. name: "Micro",
  35191. height: math.unit(1, "inch")
  35192. },
  35193. {
  35194. name: "Normal",
  35195. height: math.unit(4 + 5/12, "feet"),
  35196. default: true
  35197. },
  35198. {
  35199. name: "Macro",
  35200. height: math.unit(200, "feet")
  35201. },
  35202. {
  35203. name: "Megamacro",
  35204. height: math.unit(3240, "feet")
  35205. },
  35206. {
  35207. name: "Teramacro",
  35208. height: math.unit(2500, "miles")
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35214. {
  35215. front: {
  35216. height: math.unit(15 + 7/12, "feet"),
  35217. weight: math.unit(1150, "tons"),
  35218. name: "Front",
  35219. image: {
  35220. source: "./media/characters/saphinara/front.svg",
  35221. extra: 1837/1643,
  35222. bottom: 84/1921
  35223. },
  35224. form: "normal",
  35225. default: true
  35226. },
  35227. side: {
  35228. height: math.unit(15 + 7/12, "feet"),
  35229. weight: math.unit(1150, "tons"),
  35230. name: "Side",
  35231. image: {
  35232. source: "./media/characters/saphinara/side.svg",
  35233. extra: 605/547,
  35234. bottom: 6/611
  35235. },
  35236. form: "normal"
  35237. },
  35238. back: {
  35239. height: math.unit(15 + 7/12, "feet"),
  35240. weight: math.unit(1150, "tons"),
  35241. name: "Back",
  35242. image: {
  35243. source: "./media/characters/saphinara/back.svg",
  35244. extra: 591/531,
  35245. bottom: 13/604
  35246. },
  35247. form: "normal"
  35248. },
  35249. frontTail: {
  35250. height: math.unit(15 + 7/12, "feet"),
  35251. weight: math.unit(1150, "tons"),
  35252. name: "Front (Full Tail)",
  35253. image: {
  35254. source: "./media/characters/saphinara/front-tail.svg",
  35255. extra: 2256/1630,
  35256. bottom: 261/2517
  35257. },
  35258. form: "normal"
  35259. },
  35260. insides: {
  35261. height: math.unit(11.92, "feet"),
  35262. name: "Insides",
  35263. image: {
  35264. source: "./media/characters/saphinara/insides.svg"
  35265. },
  35266. form: "normal"
  35267. },
  35268. head: {
  35269. height: math.unit(4.17, "feet"),
  35270. name: "Head",
  35271. image: {
  35272. source: "./media/characters/saphinara/head.svg"
  35273. },
  35274. form: "normal"
  35275. },
  35276. tongue: {
  35277. height: math.unit(4.60, "feet"),
  35278. name: "Tongue",
  35279. image: {
  35280. source: "./media/characters/saphinara/tongue.svg"
  35281. },
  35282. form: "normal"
  35283. },
  35284. headEnraged: {
  35285. height: math.unit(5.55, "feet"),
  35286. name: "Head (Enraged)",
  35287. image: {
  35288. source: "./media/characters/saphinara/head-enraged.svg"
  35289. },
  35290. form: "normal"
  35291. },
  35292. wings: {
  35293. height: math.unit(11.95, "feet"),
  35294. name: "Wings",
  35295. image: {
  35296. source: "./media/characters/saphinara/wings.svg"
  35297. },
  35298. form: "normal"
  35299. },
  35300. feathers: {
  35301. height: math.unit(8.92, "feet"),
  35302. name: "Feathers",
  35303. image: {
  35304. source: "./media/characters/saphinara/feathers.svg"
  35305. },
  35306. form: "normal"
  35307. },
  35308. shackles: {
  35309. height: math.unit(2, "feet"),
  35310. name: "Shackles",
  35311. image: {
  35312. source: "./media/characters/saphinara/shackles.svg"
  35313. },
  35314. form: "normal"
  35315. },
  35316. eyes: {
  35317. height: math.unit(1.331, "feet"),
  35318. name: "Eyes",
  35319. image: {
  35320. source: "./media/characters/saphinara/eyes.svg"
  35321. },
  35322. form: "normal"
  35323. },
  35324. eyesEnraged: {
  35325. height: math.unit(1.331, "feet"),
  35326. name: "Eyes (Enraged)",
  35327. image: {
  35328. source: "./media/characters/saphinara/eyes-enraged.svg"
  35329. },
  35330. form: "normal"
  35331. },
  35332. trueFormSide: {
  35333. height: math.unit(200, "feet"),
  35334. weight: math.unit(1e7, "tons"),
  35335. name: "Side",
  35336. image: {
  35337. source: "./media/characters/saphinara/true-form-side.svg",
  35338. extra: 1399/770,
  35339. bottom: 97/1496
  35340. },
  35341. form: "true-form",
  35342. default: true
  35343. },
  35344. trueFormMaw: {
  35345. height: math.unit(71.5, "feet"),
  35346. name: "Maw",
  35347. image: {
  35348. source: "./media/characters/saphinara/true-form-maw.svg",
  35349. extra: 2302/1453,
  35350. bottom: 0/2302
  35351. },
  35352. form: "true-form"
  35353. },
  35354. meowberusSide: {
  35355. height: math.unit(75, "feet"),
  35356. weight: math.unit(180000, "kg"),
  35357. preyCapacity: math.unit(50000, "people"),
  35358. name: "Side",
  35359. image: {
  35360. source: "./media/characters/saphinara/meowberus-side.svg",
  35361. extra: 1400/711,
  35362. bottom: 126/1526
  35363. },
  35364. form: "meowberus",
  35365. extraAttributes: {
  35366. "pawArea": {
  35367. name: "Paw Size",
  35368. power: 2,
  35369. type: "area",
  35370. base: math.unit(35, "m^2")
  35371. }
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(15 + 7/12, "feet"),
  35379. default: true,
  35380. form: "normal"
  35381. },
  35382. {
  35383. name: "Angry",
  35384. height: math.unit(30 + 6/12, "feet"),
  35385. form: "normal"
  35386. },
  35387. {
  35388. name: "Enraged",
  35389. height: math.unit(102 + 1/12, "feet"),
  35390. form: "normal"
  35391. },
  35392. {
  35393. name: "True",
  35394. height: math.unit(200, "feet"),
  35395. default: true,
  35396. form: "true-form"
  35397. },
  35398. {
  35399. name: "Normal",
  35400. height: math.unit(75, "feet"),
  35401. default: true,
  35402. form: "meowberus"
  35403. },
  35404. ],
  35405. {
  35406. "normal": {
  35407. name: "Normal",
  35408. default: true
  35409. },
  35410. "true-form": {
  35411. name: "True Form"
  35412. },
  35413. "meowberus": {
  35414. name: "Meowberus",
  35415. },
  35416. }
  35417. ))
  35418. characterMakers.push(() => makeCharacter(
  35419. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35420. {
  35421. front: {
  35422. height: math.unit(6 + 8/12, "feet"),
  35423. weight: math.unit(300, "lb"),
  35424. name: "Front",
  35425. image: {
  35426. source: "./media/characters/jrain/front.svg",
  35427. extra: 3039/2865,
  35428. bottom: 399/3438
  35429. }
  35430. },
  35431. back: {
  35432. height: math.unit(6 + 8/12, "feet"),
  35433. weight: math.unit(300, "lb"),
  35434. name: "Back",
  35435. image: {
  35436. source: "./media/characters/jrain/back.svg",
  35437. extra: 3089/2938,
  35438. bottom: 172/3261
  35439. }
  35440. },
  35441. head: {
  35442. height: math.unit(2.14, "feet"),
  35443. name: "Head",
  35444. image: {
  35445. source: "./media/characters/jrain/head.svg"
  35446. }
  35447. },
  35448. maw: {
  35449. height: math.unit(1.77, "feet"),
  35450. name: "Maw",
  35451. image: {
  35452. source: "./media/characters/jrain/maw.svg"
  35453. }
  35454. },
  35455. leftHand: {
  35456. height: math.unit(1.1, "feet"),
  35457. name: "Left Hand",
  35458. image: {
  35459. source: "./media/characters/jrain/left-hand.svg"
  35460. }
  35461. },
  35462. rightHand: {
  35463. height: math.unit(1.1, "feet"),
  35464. name: "Right Hand",
  35465. image: {
  35466. source: "./media/characters/jrain/right-hand.svg"
  35467. }
  35468. },
  35469. eye: {
  35470. height: math.unit(0.35, "feet"),
  35471. name: "Eye",
  35472. image: {
  35473. source: "./media/characters/jrain/eye.svg"
  35474. }
  35475. },
  35476. },
  35477. [
  35478. {
  35479. name: "Normal",
  35480. height: math.unit(6 + 8/12, "feet"),
  35481. default: true
  35482. },
  35483. {
  35484. name: "Casually Large",
  35485. height: math.unit(25, "feet")
  35486. },
  35487. {
  35488. name: "Giant",
  35489. height: math.unit(100, "feet")
  35490. },
  35491. {
  35492. name: "Kaiju",
  35493. height: math.unit(300, "feet")
  35494. },
  35495. ]
  35496. ))
  35497. characterMakers.push(() => makeCharacter(
  35498. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35499. {
  35500. dragon: {
  35501. height: math.unit(5, "meters"),
  35502. name: "Dragon",
  35503. image: {
  35504. source: "./media/characters/sabrina/dragon.svg",
  35505. extra: 3670 / 2365,
  35506. bottom: 333 / 4003
  35507. }
  35508. },
  35509. gryphon: {
  35510. height: math.unit(3, "meters"),
  35511. name: "Gryphon",
  35512. image: {
  35513. source: "./media/characters/sabrina/gryphon.svg",
  35514. extra: 1576 / 945,
  35515. bottom: 71 / 1647
  35516. }
  35517. },
  35518. snake: {
  35519. height: math.unit(12, "meters"),
  35520. name: "Snake",
  35521. image: {
  35522. source: "./media/characters/sabrina/snake.svg",
  35523. extra: 1758 / 1320,
  35524. bottom: 186 / 1944
  35525. }
  35526. },
  35527. collar: {
  35528. height: math.unit(1.86, "meters"),
  35529. name: "Collar",
  35530. image: {
  35531. source: "./media/characters/sabrina/collar.svg"
  35532. }
  35533. },
  35534. eye: {
  35535. height: math.unit(0.53, "meters"),
  35536. name: "Eye",
  35537. image: {
  35538. source: "./media/characters/sabrina/eye.svg"
  35539. }
  35540. },
  35541. foot: {
  35542. height: math.unit(1.86, "meters"),
  35543. name: "Foot",
  35544. image: {
  35545. source: "./media/characters/sabrina/foot.svg"
  35546. }
  35547. },
  35548. hand: {
  35549. height: math.unit(1.32, "meters"),
  35550. name: "Hand",
  35551. image: {
  35552. source: "./media/characters/sabrina/hand.svg"
  35553. }
  35554. },
  35555. head: {
  35556. height: math.unit(2.44, "meters"),
  35557. name: "Head",
  35558. image: {
  35559. source: "./media/characters/sabrina/head.svg"
  35560. }
  35561. },
  35562. headAngry: {
  35563. height: math.unit(2.44, "meters"),
  35564. name: "Head (Angry))",
  35565. image: {
  35566. source: "./media/characters/sabrina/head-angry.svg"
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(1.65, "meters"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/sabrina/maw.svg"
  35574. }
  35575. },
  35576. spikes: {
  35577. height: math.unit(1.69, "meters"),
  35578. name: "Spikes",
  35579. image: {
  35580. source: "./media/characters/sabrina/spikes.svg"
  35581. }
  35582. },
  35583. stomach: {
  35584. height: math.unit(1.15, "meters"),
  35585. name: "Stomach",
  35586. image: {
  35587. source: "./media/characters/sabrina/stomach.svg"
  35588. }
  35589. },
  35590. tongue: {
  35591. height: math.unit(1.27, "meters"),
  35592. name: "Tongue",
  35593. image: {
  35594. source: "./media/characters/sabrina/tongue.svg"
  35595. }
  35596. },
  35597. wingDorsal: {
  35598. height: math.unit(4.85, "meters"),
  35599. name: "Wing (Dorsal)",
  35600. image: {
  35601. source: "./media/characters/sabrina/wing-dorsal.svg"
  35602. }
  35603. },
  35604. wingVentral: {
  35605. height: math.unit(4.85, "meters"),
  35606. name: "Wing (Ventral)",
  35607. image: {
  35608. source: "./media/characters/sabrina/wing-ventral.svg"
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(5, "meters"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35622. {
  35623. frontMaid: {
  35624. height: math.unit(5 + 5/12, "feet"),
  35625. weight: math.unit(130, "lb"),
  35626. name: "Front (Maid)",
  35627. image: {
  35628. source: "./media/characters/midnight-tales/front-maid.svg",
  35629. extra: 489/454,
  35630. bottom: 61/550
  35631. }
  35632. },
  35633. frontFormal: {
  35634. height: math.unit(5 + 5/12, "feet"),
  35635. weight: math.unit(130, "lb"),
  35636. name: "Front (Formal)",
  35637. image: {
  35638. source: "./media/characters/midnight-tales/front-formal.svg",
  35639. extra: 489/454,
  35640. bottom: 61/550
  35641. }
  35642. },
  35643. back: {
  35644. height: math.unit(5 + 5/12, "feet"),
  35645. weight: math.unit(130, "lb"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/midnight-tales/back.svg",
  35649. extra: 498/456,
  35650. bottom: 33/531
  35651. }
  35652. },
  35653. frontBeast: {
  35654. height: math.unit(40, "feet"),
  35655. weight: math.unit(64000, "lb"),
  35656. name: "Front (Beast)",
  35657. image: {
  35658. source: "./media/characters/midnight-tales/front-beast.svg",
  35659. extra: 927/860,
  35660. bottom: 53/980
  35661. }
  35662. },
  35663. backBeast: {
  35664. height: math.unit(40, "feet"),
  35665. weight: math.unit(64000, "lb"),
  35666. name: "Back (Beast)",
  35667. image: {
  35668. source: "./media/characters/midnight-tales/back-beast.svg",
  35669. extra: 929/855,
  35670. bottom: 16/945
  35671. }
  35672. },
  35673. footBeast: {
  35674. height: math.unit(6.7, "feet"),
  35675. name: "Foot (Beast)",
  35676. image: {
  35677. source: "./media/characters/midnight-tales/foot-beast.svg"
  35678. }
  35679. },
  35680. headBeast: {
  35681. height: math.unit(8, "feet"),
  35682. name: "Head (Beast)",
  35683. image: {
  35684. source: "./media/characters/midnight-tales/head-beast.svg"
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(5 + 5 / 12, "feet"),
  35692. default: true
  35693. },
  35694. {
  35695. name: "Macro",
  35696. height: math.unit(25, "feet")
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(5 + 10/12, "feet"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/argon/front.svg",
  35708. extra: 2009/1935,
  35709. bottom: 118/2127
  35710. }
  35711. },
  35712. back: {
  35713. height: math.unit(5 + 10/12, "feet"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/argon/back.svg",
  35717. extra: 2047/1992,
  35718. bottom: 20/2067
  35719. }
  35720. },
  35721. frontDressed: {
  35722. height: math.unit(5 + 10/12, "feet"),
  35723. name: "Front (Dressed)",
  35724. image: {
  35725. source: "./media/characters/argon/front-dressed.svg",
  35726. extra: 2009/1935,
  35727. bottom: 118/2127
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(5 + 10/12, "feet"),
  35735. default: true
  35736. },
  35737. ]
  35738. ))
  35739. characterMakers.push(() => makeCharacter(
  35740. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35741. {
  35742. front: {
  35743. height: math.unit(8 + 6/12, "feet"),
  35744. weight: math.unit(1150, "lb"),
  35745. name: "Front",
  35746. image: {
  35747. source: "./media/characters/kichi/front.svg",
  35748. extra: 1267/1164,
  35749. bottom: 61/1328
  35750. }
  35751. },
  35752. back: {
  35753. height: math.unit(8 + 6/12, "feet"),
  35754. weight: math.unit(1150, "lb"),
  35755. name: "Back",
  35756. image: {
  35757. source: "./media/characters/kichi/back.svg",
  35758. extra: 1273/1166,
  35759. bottom: 33/1306
  35760. }
  35761. },
  35762. },
  35763. [
  35764. {
  35765. name: "Normal",
  35766. height: math.unit(8 + 6/12, "feet"),
  35767. default: true
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(6, "feet"),
  35776. weight: math.unit(210, "lb"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/manetel-greyscale/front.svg",
  35780. extra: 350/312,
  35781. bottom: 8/358
  35782. }
  35783. },
  35784. },
  35785. [
  35786. {
  35787. name: "Micro",
  35788. height: math.unit(2, "inches")
  35789. },
  35790. {
  35791. name: "Normal",
  35792. height: math.unit(6, "feet"),
  35793. default: true
  35794. },
  35795. {
  35796. name: "Minimacro",
  35797. height: math.unit(17, "feet")
  35798. },
  35799. {
  35800. name: "Macro",
  35801. height: math.unit(117, "feet")
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35807. {
  35808. side: {
  35809. height: math.unit(5 + 1/12, "feet"),
  35810. weight: math.unit(418, "lb"),
  35811. name: "Side",
  35812. image: {
  35813. source: "./media/characters/softpurr/side.svg",
  35814. extra: 1993/1945,
  35815. bottom: 134/2127
  35816. }
  35817. },
  35818. front: {
  35819. height: math.unit(5 + 1/12, "feet"),
  35820. weight: math.unit(418, "lb"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/softpurr/front.svg",
  35824. extra: 1950/1856,
  35825. bottom: 174/2124
  35826. }
  35827. },
  35828. paw: {
  35829. height: math.unit(1, "feet"),
  35830. name: "Paw",
  35831. image: {
  35832. source: "./media/characters/softpurr/paw.svg"
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(5 + 1/12, "feet"),
  35840. default: true
  35841. },
  35842. ]
  35843. ))
  35844. characterMakers.push(() => makeCharacter(
  35845. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35846. {
  35847. front: {
  35848. height: math.unit(260, "meters"),
  35849. name: "Front",
  35850. image: {
  35851. source: "./media/characters/anahita/front.svg",
  35852. extra: 665/635,
  35853. bottom: 89/754
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Macro",
  35860. height: math.unit(260, "meters"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(4 + 10/12, "feet"),
  35870. weight: math.unit(160, "lb"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/chip-mouse/front.svg",
  35874. extra: 3528/3408,
  35875. bottom: 0/3528
  35876. }
  35877. },
  35878. frontNsfw: {
  35879. height: math.unit(4 + 10/12, "feet"),
  35880. weight: math.unit(160, "lb"),
  35881. name: "Front (NSFW)",
  35882. image: {
  35883. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35884. extra: 3528/3408,
  35885. bottom: 0/3528
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(4 + 10/12, "feet"),
  35893. default: true
  35894. },
  35895. ]
  35896. ))
  35897. characterMakers.push(() => makeCharacter(
  35898. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35899. {
  35900. side: {
  35901. height: math.unit(10, "feet"),
  35902. weight: math.unit(14000, "lb"),
  35903. name: "Side",
  35904. image: {
  35905. source: "./media/characters/kremm/side.svg",
  35906. extra: 1390/1053,
  35907. bottom: 90/1480
  35908. }
  35909. },
  35910. gut: {
  35911. height: math.unit(5.8, "feet"),
  35912. name: "Gut",
  35913. image: {
  35914. source: "./media/characters/kremm/gut.svg"
  35915. }
  35916. },
  35917. ass: {
  35918. height: math.unit(6.1, "feet"),
  35919. name: "Ass",
  35920. image: {
  35921. source: "./media/characters/kremm/ass.svg"
  35922. }
  35923. },
  35924. jaws: {
  35925. height: math.unit(2.2, "feet"),
  35926. name: "Jaws",
  35927. image: {
  35928. source: "./media/characters/kremm/jaws.svg"
  35929. }
  35930. },
  35931. dick: {
  35932. height: math.unit(4.26, "feet"),
  35933. name: "Dick",
  35934. image: {
  35935. source: "./media/characters/kremm/dick.svg"
  35936. }
  35937. },
  35938. },
  35939. [
  35940. {
  35941. name: "Normal",
  35942. height: math.unit(10, "feet"),
  35943. default: true
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35949. {
  35950. front: {
  35951. height: math.unit(30, "stories"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/kai/front.svg",
  35955. extra: 1892/1718,
  35956. bottom: 162/2054
  35957. }
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "Macro",
  35963. height: math.unit(30, "stories"),
  35964. default: true
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(6 + 4/12, "feet"),
  35973. weight: math.unit(145, "lb"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/sykes/front.svg",
  35977. extra: 1321 / 1187,
  35978. bottom: 66 / 1387
  35979. }
  35980. },
  35981. back: {
  35982. height: math.unit(6 + 4/12, "feet"),
  35983. weight: math.unit(145, "lb"),
  35984. name: "Back",
  35985. image: {
  35986. source: "./media/characters/sykes/back.svg",
  35987. extra: 1326/1181,
  35988. bottom: 31/1357
  35989. }
  35990. },
  35991. traditionalOutfit: {
  35992. height: math.unit(6 + 4/12, "feet"),
  35993. weight: math.unit(145, "lb"),
  35994. name: "Traditional Outfit",
  35995. image: {
  35996. source: "./media/characters/sykes/traditional-outfit.svg",
  35997. extra: 1321 / 1187,
  35998. bottom: 66 / 1387
  35999. }
  36000. },
  36001. adventureOutfit: {
  36002. height: math.unit(6 + 4/12, "feet"),
  36003. weight: math.unit(145, "lb"),
  36004. name: "Adventure Outfit",
  36005. image: {
  36006. source: "./media/characters/sykes/adventure-outfit.svg",
  36007. extra: 1321 / 1187,
  36008. bottom: 66 / 1387
  36009. }
  36010. },
  36011. handLeft: {
  36012. height: math.unit(0.9, "feet"),
  36013. name: "Hand (Left)",
  36014. image: {
  36015. source: "./media/characters/sykes/hand-left.svg"
  36016. }
  36017. },
  36018. handRight: {
  36019. height: math.unit(0.839, "feet"),
  36020. name: "Hand (Right)",
  36021. image: {
  36022. source: "./media/characters/sykes/hand-right.svg"
  36023. }
  36024. },
  36025. leftFoot: {
  36026. height: math.unit(1.2, "feet"),
  36027. name: "Foot (Left)",
  36028. image: {
  36029. source: "./media/characters/sykes/foot-left.svg"
  36030. }
  36031. },
  36032. rightFoot: {
  36033. height: math.unit(1.2, "feet"),
  36034. name: "Foot (Right)",
  36035. image: {
  36036. source: "./media/characters/sykes/foot-right.svg"
  36037. }
  36038. },
  36039. maw: {
  36040. height: math.unit(1.93, "feet"),
  36041. name: "Maw",
  36042. image: {
  36043. source: "./media/characters/sykes/maw.svg"
  36044. }
  36045. },
  36046. teeth: {
  36047. height: math.unit(0.51, "feet"),
  36048. name: "Teeth",
  36049. image: {
  36050. source: "./media/characters/sykes/teeth.svg"
  36051. }
  36052. },
  36053. tongue: {
  36054. height: math.unit(2.13, "feet"),
  36055. name: "Tongue",
  36056. image: {
  36057. source: "./media/characters/sykes/tongue.svg"
  36058. }
  36059. },
  36060. uvula: {
  36061. height: math.unit(0.16, "feet"),
  36062. name: "Uvula",
  36063. image: {
  36064. source: "./media/characters/sykes/uvula.svg"
  36065. }
  36066. },
  36067. collar: {
  36068. height: math.unit(0.287, "feet"),
  36069. name: "Collar",
  36070. image: {
  36071. source: "./media/characters/sykes/collar.svg"
  36072. }
  36073. },
  36074. tail: {
  36075. height: math.unit(3.8, "feet"),
  36076. name: "Tail",
  36077. image: {
  36078. source: "./media/characters/sykes/tail.svg"
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Shrunken",
  36085. height: math.unit(5, "inches")
  36086. },
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(6 + 4 / 12, "feet"),
  36090. default: true
  36091. },
  36092. {
  36093. name: "Big",
  36094. height: math.unit(15, "feet")
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36100. {
  36101. front: {
  36102. height: math.unit(5 + 8/12, "feet"),
  36103. weight: math.unit(190, "lb"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/oven-otter/front.svg",
  36107. extra: 1809/1740,
  36108. bottom: 181/1990
  36109. }
  36110. },
  36111. back: {
  36112. height: math.unit(5 + 8/12, "feet"),
  36113. weight: math.unit(190, "lb"),
  36114. name: "Back",
  36115. image: {
  36116. source: "./media/characters/oven-otter/back.svg",
  36117. extra: 1709/1635,
  36118. bottom: 118/1827
  36119. }
  36120. },
  36121. hand: {
  36122. height: math.unit(1.07, "feet"),
  36123. name: "Hand",
  36124. image: {
  36125. source: "./media/characters/oven-otter/hand.svg"
  36126. }
  36127. },
  36128. beans: {
  36129. height: math.unit(1.74, "feet"),
  36130. name: "Beans",
  36131. image: {
  36132. source: "./media/characters/oven-otter/beans.svg"
  36133. }
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "Micro",
  36139. height: math.unit(0.5, "inches")
  36140. },
  36141. {
  36142. name: "Normal",
  36143. height: math.unit(5 + 8/12, "feet"),
  36144. default: true
  36145. },
  36146. {
  36147. name: "Macro",
  36148. height: math.unit(250, "feet")
  36149. },
  36150. {
  36151. name: "Really High",
  36152. height: math.unit(420, "feet")
  36153. },
  36154. ]
  36155. ))
  36156. characterMakers.push(() => makeCharacter(
  36157. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36158. {
  36159. front: {
  36160. height: math.unit(5, "meters"),
  36161. weight: math.unit(292000000000000, "kg"),
  36162. name: "Front",
  36163. image: {
  36164. source: "./media/characters/devourer/front.svg",
  36165. extra: 1800/1733,
  36166. bottom: 211/2011
  36167. }
  36168. },
  36169. maw: {
  36170. height: math.unit(1.1, "meter"),
  36171. name: "Maw",
  36172. image: {
  36173. source: "./media/characters/devourer/maw.svg"
  36174. }
  36175. },
  36176. },
  36177. [
  36178. {
  36179. name: "Small",
  36180. height: math.unit(3, "meters")
  36181. },
  36182. {
  36183. name: "Large",
  36184. height: math.unit(5, "meters"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36191. {
  36192. front: {
  36193. height: math.unit(6, "feet"),
  36194. weight: math.unit(400, "lb"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/ellarby/front.svg",
  36198. extra: 1909/1763,
  36199. bottom: 80/1989
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(6, "feet"),
  36204. weight: math.unit(400, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/ellarby/back.svg",
  36208. extra: 1914/1784,
  36209. bottom: 172/2086
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Mischief",
  36216. height: math.unit(18, "inches")
  36217. },
  36218. {
  36219. name: "Trouble",
  36220. height: math.unit(12, "feet")
  36221. },
  36222. {
  36223. name: "Havoc",
  36224. height: math.unit(200, "feet"),
  36225. default: true
  36226. },
  36227. {
  36228. name: "Pandemonium",
  36229. height: math.unit(1, "mile")
  36230. },
  36231. {
  36232. name: "Catastrophe",
  36233. height: math.unit(100, "miles")
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36239. {
  36240. front: {
  36241. height: math.unit(4.7, "meters"),
  36242. weight: math.unit(6500, "kg"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/vex/front.svg",
  36246. extra: 1288/1140,
  36247. bottom: 100/1388
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(4.7, "meters"),
  36255. default: true
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36261. {
  36262. normal: {
  36263. height: math.unit(6, "feet"),
  36264. weight: math.unit(350, "lb"),
  36265. name: "Normal",
  36266. image: {
  36267. source: "./media/characters/teshy/normal.svg",
  36268. extra: 1795/1735,
  36269. bottom: 16/1811
  36270. }
  36271. },
  36272. monsterFront: {
  36273. height: math.unit(12, "feet"),
  36274. weight: math.unit(4700, "lb"),
  36275. name: "Monster (Front)",
  36276. image: {
  36277. source: "./media/characters/teshy/monster-front.svg",
  36278. extra: 2042/2034,
  36279. bottom: 128/2170
  36280. }
  36281. },
  36282. monsterSide: {
  36283. height: math.unit(12, "feet"),
  36284. weight: math.unit(4700, "lb"),
  36285. name: "Monster (Side)",
  36286. image: {
  36287. source: "./media/characters/teshy/monster-side.svg",
  36288. extra: 2067/2056,
  36289. bottom: 70/2137
  36290. }
  36291. },
  36292. monsterBack: {
  36293. height: math.unit(12, "feet"),
  36294. weight: math.unit(4700, "lb"),
  36295. name: "Monster (Back)",
  36296. image: {
  36297. source: "./media/characters/teshy/monster-back.svg",
  36298. extra: 1921/1914,
  36299. bottom: 171/2092
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(6, "feet"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(6, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/ramey/front.svg",
  36319. extra: 790/787,
  36320. bottom: 27/817
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(6, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(5 + 5/12, "feet"),
  36337. weight: math.unit(120, "lb"),
  36338. name: "Front",
  36339. image: {
  36340. source: "./media/characters/phirae/front.svg",
  36341. extra: 2491/2436,
  36342. bottom: 38/2529
  36343. }
  36344. },
  36345. },
  36346. [
  36347. {
  36348. name: "Normal",
  36349. height: math.unit(5 + 5/12, "feet"),
  36350. default: true
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36356. {
  36357. front: {
  36358. height: math.unit(5 + 3/12, "feet"),
  36359. name: "Front",
  36360. image: {
  36361. source: "./media/characters/stagglas/front.svg",
  36362. extra: 962/882,
  36363. bottom: 53/1015
  36364. }
  36365. },
  36366. feral: {
  36367. height: math.unit(335, "cm"),
  36368. name: "Feral",
  36369. image: {
  36370. source: "./media/characters/stagglas/feral.svg",
  36371. extra: 1732/1090,
  36372. bottom: 48/1780
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(5 + 3/12, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(5 + 4/12, "feet"),
  36389. weight: math.unit(145, "lb"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/starra/front.svg",
  36393. extra: 1790/1691,
  36394. bottom: 91/1881
  36395. }
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "Normal",
  36401. height: math.unit(5 + 4/12, "feet"),
  36402. default: true
  36403. },
  36404. ]
  36405. ))
  36406. characterMakers.push(() => makeCharacter(
  36407. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36408. {
  36409. front: {
  36410. height: math.unit(2.2, "meters"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36414. extra: 1248/972,
  36415. bottom: 38/1286
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(2.2, "meters"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36429. {
  36430. side: {
  36431. height: math.unit(8 + 2/12, "feet"),
  36432. weight: math.unit(1240, "lb"),
  36433. name: "Side",
  36434. image: {
  36435. source: "./media/characters/mika-valentine/side.svg",
  36436. extra: 2670/2501,
  36437. bottom: 250/2920
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(8 + 2/12, "feet"),
  36445. default: true
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36451. {
  36452. front: {
  36453. height: math.unit(7 + 2/12, "feet"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/xoltol/front.svg",
  36457. extra: 2212/2124,
  36458. bottom: 84/2296
  36459. }
  36460. },
  36461. side: {
  36462. height: math.unit(7 + 2/12, "feet"),
  36463. name: "Side",
  36464. image: {
  36465. source: "./media/characters/xoltol/side.svg",
  36466. extra: 2273/2197,
  36467. bottom: 26/2299
  36468. }
  36469. },
  36470. hand: {
  36471. height: math.unit(2.5, "feet"),
  36472. name: "Hand",
  36473. image: {
  36474. source: "./media/characters/xoltol/hand.svg"
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Small-ish",
  36481. height: math.unit(5 + 11/12, "feet")
  36482. },
  36483. {
  36484. name: "Normal",
  36485. height: math.unit(7 + 2/12, "feet")
  36486. },
  36487. {
  36488. name: "\"Macro\"",
  36489. height: math.unit(14 + 9/12, "feet"),
  36490. default: true
  36491. },
  36492. {
  36493. name: "Alternate Height",
  36494. height: math.unit(20, "feet")
  36495. },
  36496. {
  36497. name: "Actually Macro",
  36498. height: math.unit(100, "feet")
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(5 + 2/12, "feet"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/kotetsu-redwood/front.svg",
  36510. extra: 1053/942,
  36511. bottom: 60/1113
  36512. }
  36513. },
  36514. },
  36515. [
  36516. {
  36517. name: "Normal",
  36518. height: math.unit(5 + 2/12, "feet"),
  36519. default: true
  36520. },
  36521. ]
  36522. ))
  36523. characterMakers.push(() => makeCharacter(
  36524. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36525. {
  36526. front: {
  36527. height: math.unit(2.4, "meters"),
  36528. weight: math.unit(125, "kg"),
  36529. name: "Front",
  36530. image: {
  36531. source: "./media/characters/lilith/front.svg",
  36532. extra: 1590/1513,
  36533. bottom: 203/1793
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Humanoid",
  36540. height: math.unit(2.4, "meters")
  36541. },
  36542. {
  36543. name: "Normal",
  36544. height: math.unit(6, "meters"),
  36545. default: true
  36546. },
  36547. {
  36548. name: "Largest",
  36549. height: math.unit(55, "meters")
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(8 + 4/12, "feet"),
  36558. weight: math.unit(535, "lb"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/beh'kah-bolger/front.svg",
  36562. extra: 1660/1603,
  36563. bottom: 37/1697
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Normal",
  36570. height: math.unit(8 + 4/12, "feet"),
  36571. default: true
  36572. },
  36573. {
  36574. name: "Kaiju",
  36575. height: math.unit(250, "feet")
  36576. },
  36577. {
  36578. name: "Still Growing",
  36579. height: math.unit(10, "miles")
  36580. },
  36581. {
  36582. name: "Continental",
  36583. height: math.unit(5000, "miles")
  36584. },
  36585. {
  36586. name: "Final Form",
  36587. height: math.unit(2500000, "miles")
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(7 + 2/12, "feet"),
  36596. weight: math.unit(230, "kg"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/tatyana-milewska/front.svg",
  36600. extra: 1199/1150,
  36601. bottom: 86/1285
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Normal",
  36608. height: math.unit(7 + 2/12, "feet"),
  36609. default: true
  36610. },
  36611. {
  36612. name: "Big",
  36613. height: math.unit(12, "feet")
  36614. },
  36615. {
  36616. name: "Minimacro",
  36617. height: math.unit(20, "feet")
  36618. },
  36619. {
  36620. name: "Macro",
  36621. height: math.unit(120, "feet")
  36622. },
  36623. ]
  36624. ))
  36625. characterMakers.push(() => makeCharacter(
  36626. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36627. {
  36628. front: {
  36629. height: math.unit(7 + 8/12, "feet"),
  36630. weight: math.unit(152, "kg"),
  36631. name: "Front",
  36632. image: {
  36633. source: "./media/characters/helen-arri/front.svg",
  36634. extra: 440/423,
  36635. bottom: 14/454
  36636. }
  36637. },
  36638. back: {
  36639. height: math.unit(7 + 8/12, "feet"),
  36640. weight: math.unit(152, "kg"),
  36641. name: "Back",
  36642. image: {
  36643. source: "./media/characters/helen-arri/back.svg",
  36644. extra: 443/426,
  36645. bottom: 8/451
  36646. }
  36647. },
  36648. },
  36649. [
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(7 + 8/12, "feet"),
  36653. default: true
  36654. },
  36655. {
  36656. name: "Big",
  36657. height: math.unit(14, "feet")
  36658. },
  36659. {
  36660. name: "Minimacro",
  36661. height: math.unit(24, "feet")
  36662. },
  36663. {
  36664. name: "Macro",
  36665. height: math.unit(140, "feet")
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(6, "meters"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/ehanu-rehu/front.svg",
  36677. extra: 1800/1800,
  36678. bottom: 59/1859
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(6, "meters"),
  36686. default: true
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(7 + 3/12, "feet"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/renholder/front.svg",
  36698. extra: 3096/2960,
  36699. bottom: 250/3346
  36700. }
  36701. },
  36702. },
  36703. [
  36704. {
  36705. name: "Normal Bat",
  36706. height: math.unit(7 + 3/12, "feet"),
  36707. default: true
  36708. },
  36709. {
  36710. name: "Slightly Tall Bat",
  36711. height: math.unit(100, "feet")
  36712. },
  36713. {
  36714. name: "Big Bat",
  36715. height: math.unit(1000, "feet")
  36716. },
  36717. {
  36718. name: "City-Sized Bat",
  36719. height: math.unit(200000, "feet")
  36720. },
  36721. {
  36722. name: "Bigger Bat",
  36723. height: math.unit(10000, "miles")
  36724. },
  36725. {
  36726. name: "Solar Sized Bat",
  36727. height: math.unit(100, "AU")
  36728. },
  36729. {
  36730. name: "Galactic Bat",
  36731. height: math.unit(200000, "lightyears")
  36732. },
  36733. {
  36734. name: "Universally Known Bat",
  36735. height: math.unit(1, "universe")
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36741. {
  36742. front: {
  36743. height: math.unit(6 + 11/12, "feet"),
  36744. weight: math.unit(250, "lb"),
  36745. name: "Front",
  36746. image: {
  36747. source: "./media/characters/cookiecat/front.svg",
  36748. extra: 893/827,
  36749. bottom: 14/907
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Micro",
  36756. height: math.unit(3, "inches")
  36757. },
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(6 + 11/12, "feet"),
  36761. default: true
  36762. },
  36763. {
  36764. name: "Macro",
  36765. height: math.unit(100, "feet")
  36766. },
  36767. {
  36768. name: "Macro+",
  36769. height: math.unit(404, "feet")
  36770. },
  36771. {
  36772. name: "Megamacro",
  36773. height: math.unit(165, "miles")
  36774. },
  36775. {
  36776. name: "Planetary",
  36777. height: math.unit(4600, "miles")
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(10 + 3/12, "feet"),
  36786. weight: math.unit(1500, "lb"),
  36787. name: "Front",
  36788. image: {
  36789. source: "./media/characters/tux-kusanagi/front.svg",
  36790. extra: 944/840,
  36791. bottom: 39/983
  36792. }
  36793. },
  36794. back: {
  36795. height: math.unit(10 + 3/12, "feet"),
  36796. weight: math.unit(1500, "lb"),
  36797. name: "Back",
  36798. image: {
  36799. source: "./media/characters/tux-kusanagi/back.svg",
  36800. extra: 941/842,
  36801. bottom: 28/969
  36802. }
  36803. },
  36804. rump: {
  36805. height: math.unit(5.25, "feet"),
  36806. name: "Rump",
  36807. image: {
  36808. source: "./media/characters/tux-kusanagi/rump.svg"
  36809. }
  36810. },
  36811. beak: {
  36812. height: math.unit(1.54, "feet"),
  36813. name: "Beak",
  36814. image: {
  36815. source: "./media/characters/tux-kusanagi/beak.svg"
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(10 + 3/12, "feet"),
  36823. default: true
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36829. {
  36830. front: {
  36831. height: math.unit(58, "feet"),
  36832. weight: math.unit(200, "tons"),
  36833. name: "Front",
  36834. image: {
  36835. source: "./media/characters/uzarmazari/front.svg",
  36836. extra: 1575/1455,
  36837. bottom: 152/1727
  36838. }
  36839. },
  36840. back: {
  36841. height: math.unit(58, "feet"),
  36842. weight: math.unit(200, "tons"),
  36843. name: "Back",
  36844. image: {
  36845. source: "./media/characters/uzarmazari/back.svg",
  36846. extra: 1585/1510,
  36847. bottom: 157/1742
  36848. }
  36849. },
  36850. head: {
  36851. height: math.unit(26, "feet"),
  36852. name: "Head",
  36853. image: {
  36854. source: "./media/characters/uzarmazari/head.svg"
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(58, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36868. {
  36869. side: {
  36870. height: math.unit(15, "feet"),
  36871. name: "Side",
  36872. image: {
  36873. source: "./media/characters/akitu/side.svg",
  36874. extra: 1421/1321,
  36875. bottom: 157/1578
  36876. }
  36877. },
  36878. front: {
  36879. height: math.unit(15, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/akitu/front.svg",
  36883. extra: 1435/1326,
  36884. bottom: 232/1667
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(15, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(10 + 8/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/azalie-croixland/front.svg",
  36904. extra: 1972/1856,
  36905. bottom: 31/2003
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Original Height",
  36912. height: math.unit(5 + 4/12, "feet")
  36913. },
  36914. {
  36915. name: "Normal Height",
  36916. height: math.unit(10 + 8/12, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36923. {
  36924. side: {
  36925. height: math.unit(7 + 1/12, "feet"),
  36926. weight: math.unit(245, "lb"),
  36927. name: "Side",
  36928. image: {
  36929. source: "./media/characters/kavus-kazian/side.svg",
  36930. extra: 349/342,
  36931. bottom: 15/364
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(7 + 1/12, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36945. {
  36946. normalFront: {
  36947. height: math.unit(5 + 11/12, "feet"),
  36948. name: "Front",
  36949. image: {
  36950. source: "./media/characters/moonlight-rose/normal-front.svg",
  36951. extra: 1980/1825,
  36952. bottom: 18/1998
  36953. },
  36954. form: "normal",
  36955. default: true
  36956. },
  36957. normalBack: {
  36958. height: math.unit(5 + 11/12, "feet"),
  36959. name: "Back",
  36960. image: {
  36961. source: "./media/characters/moonlight-rose/normal-back.svg",
  36962. extra: 2010/1839,
  36963. bottom: 10/2020
  36964. },
  36965. form: "normal"
  36966. },
  36967. demonFront: {
  36968. height: math.unit(1.5, "earths"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/moonlight-rose/demon.svg",
  36972. extra: 1400/1294,
  36973. bottom: 45/1445
  36974. },
  36975. form: "demon",
  36976. default: true
  36977. },
  36978. terraFront: {
  36979. height: math.unit(1.5, "earths"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/moonlight-rose/terra.svg"
  36983. },
  36984. form: "terra",
  36985. default: true
  36986. },
  36987. jupiterFront: {
  36988. height: math.unit(69911*2, "km"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36992. extra: 1367/1286,
  36993. bottom: 55/1422
  36994. },
  36995. form: "jupiter",
  36996. default: true
  36997. },
  36998. neptuneFront: {
  36999. height: math.unit(24622*2, "feet"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37003. extra: 1851/1712,
  37004. bottom: 0/1851
  37005. },
  37006. form: "neptune",
  37007. default: true
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "\"Natural\" Height",
  37013. height: math.unit(5 + 11/12, "feet"),
  37014. form: "normal"
  37015. },
  37016. {
  37017. name: "Smallest comfortable size",
  37018. height: math.unit(40, "meters"),
  37019. form: "normal"
  37020. },
  37021. {
  37022. name: "Common size",
  37023. height: math.unit(50, "km"),
  37024. form: "normal",
  37025. default: true
  37026. },
  37027. {
  37028. name: "Normal",
  37029. height: math.unit(1.5, "earths"),
  37030. form: "demon",
  37031. default: true
  37032. },
  37033. {
  37034. name: "Universal",
  37035. height: math.unit(15, "universes"),
  37036. form: "demon"
  37037. },
  37038. {
  37039. name: "Earth",
  37040. height: math.unit(1.5, "earths"),
  37041. form: "terra",
  37042. default: true
  37043. },
  37044. {
  37045. name: "Super Earth",
  37046. height: math.unit(67.5, "earths"),
  37047. form: "terra"
  37048. },
  37049. {
  37050. name: "Doesn't fit in a solar system...",
  37051. height: math.unit(1, "galaxy"),
  37052. form: "terra"
  37053. },
  37054. {
  37055. name: "Saturn",
  37056. height: math.unit(58232*2, "km"),
  37057. form: "jupiter"
  37058. },
  37059. {
  37060. name: "Jupiter",
  37061. height: math.unit(69911*2, "km"),
  37062. form: "jupiter",
  37063. default: true
  37064. },
  37065. {
  37066. name: "HD 100546 b",
  37067. height: math.unit(482938, "km"),
  37068. form: "jupiter"
  37069. },
  37070. {
  37071. name: "Enceladus",
  37072. height: math.unit(513*2, "km"),
  37073. form: "neptune"
  37074. },
  37075. {
  37076. name: "Europe",
  37077. height: math.unit(1560*2, "km"),
  37078. form: "neptune"
  37079. },
  37080. {
  37081. name: "Neptune",
  37082. height: math.unit(24622*2, "km"),
  37083. form: "neptune",
  37084. default: true
  37085. },
  37086. {
  37087. name: "CoRoT-9b",
  37088. height: math.unit(75067*2, "km"),
  37089. form: "neptune"
  37090. },
  37091. ],
  37092. {
  37093. "normal": {
  37094. name: "Normal",
  37095. default: true
  37096. },
  37097. "demon": {
  37098. name: "Demon"
  37099. },
  37100. "terra": {
  37101. name: "Terra"
  37102. },
  37103. "jupiter": {
  37104. name: "Jupiter"
  37105. },
  37106. "neptune": {
  37107. name: "Neptune"
  37108. }
  37109. }
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(16, "feet"),
  37116. weight: math.unit(610, "kg"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/huckle/front.svg",
  37120. extra: 1731/1625,
  37121. bottom: 33/1764
  37122. }
  37123. },
  37124. back: {
  37125. height: math.unit(16, "feet"),
  37126. weight: math.unit(610, "kg"),
  37127. name: "Back",
  37128. image: {
  37129. source: "./media/characters/huckle/back.svg",
  37130. extra: 1738/1651,
  37131. bottom: 37/1775
  37132. }
  37133. },
  37134. laughing: {
  37135. height: math.unit(3.75, "feet"),
  37136. name: "Laughing",
  37137. image: {
  37138. source: "./media/characters/huckle/laughing.svg"
  37139. }
  37140. },
  37141. angry: {
  37142. height: math.unit(4.15, "feet"),
  37143. name: "Angry",
  37144. image: {
  37145. source: "./media/characters/huckle/angry.svg"
  37146. }
  37147. },
  37148. },
  37149. [
  37150. {
  37151. name: "Normal",
  37152. height: math.unit(16, "feet"),
  37153. default: true
  37154. },
  37155. {
  37156. name: "Mini Macro",
  37157. height: math.unit(463, "feet")
  37158. },
  37159. {
  37160. name: "Macro",
  37161. height: math.unit(1680, "meters")
  37162. },
  37163. {
  37164. name: "Mega Macro",
  37165. height: math.unit(175, "km")
  37166. },
  37167. {
  37168. name: "Terra Macro",
  37169. height: math.unit(32, "gigameters")
  37170. },
  37171. {
  37172. name: "Multiverse+",
  37173. height: math.unit(2.56e23, "yottameters")
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(6 + 9/12, "feet"),
  37182. weight: math.unit(280, "lb"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/candy/front.svg",
  37186. extra: 234/217,
  37187. bottom: 11/245
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Really Small",
  37194. height: math.unit(0.1, "nm")
  37195. },
  37196. {
  37197. name: "Micro",
  37198. height: math.unit(2, "inches")
  37199. },
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(6 + 9/12, "feet"),
  37203. default: true
  37204. },
  37205. {
  37206. name: "Small Macro",
  37207. height: math.unit(69, "feet")
  37208. },
  37209. {
  37210. name: "Macro",
  37211. height: math.unit(160, "feet")
  37212. },
  37213. {
  37214. name: "Megamacro",
  37215. height: math.unit(22000, "miles")
  37216. },
  37217. {
  37218. name: "Gigamacro",
  37219. height: math.unit(50000, "miles")
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(4, "feet"),
  37228. weight: math.unit(90, "lb"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/joey-mcdonald/front.svg",
  37232. extra: 1059/852,
  37233. bottom: 33/1092
  37234. }
  37235. },
  37236. back: {
  37237. height: math.unit(4, "feet"),
  37238. weight: math.unit(90, "lb"),
  37239. name: "Back",
  37240. image: {
  37241. source: "./media/characters/joey-mcdonald/back.svg",
  37242. extra: 1077/879,
  37243. bottom: 5/1082
  37244. }
  37245. },
  37246. frontKobold: {
  37247. height: math.unit(4, "feet"),
  37248. weight: math.unit(100, "lb"),
  37249. name: "Front-kobold",
  37250. image: {
  37251. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37252. extra: 1480/1367,
  37253. bottom: 0/1480
  37254. }
  37255. },
  37256. backKobold: {
  37257. height: math.unit(4, "feet"),
  37258. weight: math.unit(100, "lb"),
  37259. name: "Back-kobold",
  37260. image: {
  37261. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37262. extra: 1449/1361,
  37263. bottom: 0/1449
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(4, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(12 + 6/12, "feet"),
  37280. name: "Front",
  37281. image: {
  37282. source: "./media/characters/kass-lockheed/front.svg",
  37283. extra: 354/343,
  37284. bottom: 9/363
  37285. }
  37286. },
  37287. back: {
  37288. height: math.unit(12 + 6/12, "feet"),
  37289. name: "Back",
  37290. image: {
  37291. source: "./media/characters/kass-lockheed/back.svg",
  37292. extra: 364/352,
  37293. bottom: 3/367
  37294. }
  37295. },
  37296. dick: {
  37297. height: math.unit(3.12, "feet"),
  37298. name: "Dick",
  37299. image: {
  37300. source: "./media/characters/kass-lockheed/dick.svg"
  37301. }
  37302. },
  37303. head: {
  37304. height: math.unit(2.6, "feet"),
  37305. name: "Head",
  37306. image: {
  37307. source: "./media/characters/kass-lockheed/head.svg"
  37308. }
  37309. },
  37310. bleh: {
  37311. height: math.unit(2.85, "feet"),
  37312. name: "Bleh",
  37313. image: {
  37314. source: "./media/characters/kass-lockheed/bleh.svg"
  37315. }
  37316. },
  37317. smug: {
  37318. height: math.unit(2.85, "feet"),
  37319. name: "Smug",
  37320. image: {
  37321. source: "./media/characters/kass-lockheed/smug.svg"
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(12 + 6/12, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(6 + 2/12, "feet"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/taylor/front.svg",
  37341. extra: 639/495,
  37342. bottom: 12/651
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(6 + 2/12, "feet"),
  37350. default: true
  37351. },
  37352. {
  37353. name: "Big",
  37354. height: math.unit(15, "feet")
  37355. },
  37356. {
  37357. name: "Lorg",
  37358. height: math.unit(80, "feet")
  37359. },
  37360. {
  37361. name: "Too Lorg",
  37362. height: math.unit(120, "feet")
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(15, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/kaizer/front.svg",
  37374. extra: 1612/1436,
  37375. bottom: 43/1655
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(15, "feet"),
  37383. default: true
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(2, "feet"),
  37392. weight: math.unit(30, "lb"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/sandy/front.svg",
  37396. extra: 1439/1307,
  37397. bottom: 194/1633
  37398. }
  37399. },
  37400. },
  37401. [
  37402. {
  37403. name: "Normal",
  37404. height: math.unit(2, "feet"),
  37405. default: true
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(3, "feet"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/mellvi/front.svg",
  37417. extra: 1831/1630,
  37418. bottom: 58/1889
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(3, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37432. {
  37433. front: {
  37434. height: math.unit(5 + 11/12, "feet"),
  37435. weight: math.unit(200, "lb"),
  37436. name: "Front",
  37437. image: {
  37438. source: "./media/characters/shirou/front.svg",
  37439. extra: 2491/2383,
  37440. bottom: 189/2680
  37441. }
  37442. },
  37443. back: {
  37444. height: math.unit(5 + 11/12, "feet"),
  37445. weight: math.unit(200, "lb"),
  37446. name: "Back",
  37447. image: {
  37448. source: "./media/characters/shirou/back.svg",
  37449. extra: 2554/2450,
  37450. bottom: 76/2630
  37451. }
  37452. },
  37453. },
  37454. [
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(5 + 11/12, "feet"),
  37458. default: true
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(6 + 3/12, "feet"),
  37467. weight: math.unit(177, "lb"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/noryu/front.svg",
  37471. extra: 973/885,
  37472. bottom: 10/983
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(6 + 3/12, "feet"),
  37480. default: true
  37481. },
  37482. ]
  37483. ))
  37484. characterMakers.push(() => makeCharacter(
  37485. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37486. {
  37487. front: {
  37488. height: math.unit(5 + 6/12, "feet"),
  37489. weight: math.unit(170, "lb"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/mevolas-rubenido/front.svg",
  37493. extra: 2109/1901,
  37494. bottom: 96/2205
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(5 + 6/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(100, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/dee/front.svg",
  37514. extra: 2153/2036,
  37515. bottom: 59/2212
  37516. }
  37517. },
  37518. back: {
  37519. height: math.unit(100, "feet"),
  37520. name: "Back",
  37521. image: {
  37522. source: "./media/characters/dee/back.svg",
  37523. extra: 2183/2058,
  37524. bottom: 75/2258
  37525. }
  37526. },
  37527. foot: {
  37528. height: math.unit(19.43, "feet"),
  37529. name: "Foot",
  37530. image: {
  37531. source: "./media/characters/dee/foot.svg"
  37532. }
  37533. },
  37534. hoof: {
  37535. height: math.unit(20.6, "feet"),
  37536. name: "Hoof",
  37537. image: {
  37538. source: "./media/characters/dee/hoof.svg"
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Macro",
  37545. height: math.unit(100, "feet"),
  37546. default: true
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(5 + 6/12, "feet"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/teh/front.svg",
  37558. extra: 1002/847,
  37559. bottom: 62/1064
  37560. }
  37561. },
  37562. },
  37563. [
  37564. {
  37565. name: "Normal",
  37566. height: math.unit(5 + 6/12, "feet"),
  37567. default: true
  37568. },
  37569. ]
  37570. ))
  37571. characterMakers.push(() => makeCharacter(
  37572. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37573. {
  37574. side: {
  37575. height: math.unit(6 + 1/12, "feet"),
  37576. weight: math.unit(204, "lb"),
  37577. name: "Side",
  37578. image: {
  37579. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37580. extra: 974/775,
  37581. bottom: 169/1143
  37582. }
  37583. },
  37584. sitting: {
  37585. height: math.unit(6 + 2/12, "feet"),
  37586. weight: math.unit(204, "lb"),
  37587. name: "Sitting",
  37588. image: {
  37589. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37590. extra: 1175/964,
  37591. bottom: 378/1553
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(6 + 1/12, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(6, "inches"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/tululi/front.svg",
  37611. extra: 1997/1876,
  37612. bottom: 20/2017
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(6, "inches"),
  37620. default: true
  37621. },
  37622. ]
  37623. ))
  37624. characterMakers.push(() => makeCharacter(
  37625. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37626. {
  37627. front: {
  37628. height: math.unit(4 + 1/12, "feet"),
  37629. name: "Front",
  37630. image: {
  37631. source: "./media/characters/star/front.svg",
  37632. extra: 1493/1189,
  37633. bottom: 48/1541
  37634. }
  37635. },
  37636. },
  37637. [
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(4 + 1/12, "feet"),
  37641. default: true
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(6 + 3/12, "feet"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/comet/front.svg",
  37653. extra: 1681/1462,
  37654. bottom: 26/1707
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(6 + 3/12, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(950, "feet"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/vortex/front.svg",
  37674. extra: 1497/1434,
  37675. bottom: 56/1553
  37676. }
  37677. },
  37678. maw: {
  37679. height: math.unit(285, "feet"),
  37680. name: "Maw",
  37681. image: {
  37682. source: "./media/characters/vortex/maw.svg"
  37683. }
  37684. },
  37685. },
  37686. [
  37687. {
  37688. name: "Macro",
  37689. height: math.unit(950, "feet"),
  37690. default: true
  37691. },
  37692. ]
  37693. ))
  37694. characterMakers.push(() => makeCharacter(
  37695. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37696. {
  37697. front: {
  37698. height: math.unit(600, "feet"),
  37699. weight: math.unit(0.02, "grams"),
  37700. name: "Front",
  37701. image: {
  37702. source: "./media/characters/doodle/front.svg",
  37703. extra: 1578/1413,
  37704. bottom: 37/1615
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Macro",
  37711. height: math.unit(600, "feet"),
  37712. default: true
  37713. },
  37714. ]
  37715. ))
  37716. characterMakers.push(() => makeCharacter(
  37717. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37718. {
  37719. front: {
  37720. height: math.unit(6 + 6/12, "feet"),
  37721. name: "Front",
  37722. image: {
  37723. source: "./media/characters/jai/front.svg",
  37724. extra: 1645/1534,
  37725. bottom: 115/1760
  37726. }
  37727. },
  37728. },
  37729. [
  37730. {
  37731. name: "Normal",
  37732. height: math.unit(6 + 6/12, "feet"),
  37733. default: true
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(6 + 8/12, "feet"),
  37742. name: "Front",
  37743. image: {
  37744. source: "./media/characters/pixel/front.svg",
  37745. extra: 1900/1735,
  37746. bottom: 63/1963
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(6 + 8/12, "feet"),
  37754. default: true
  37755. },
  37756. ]
  37757. ))
  37758. characterMakers.push(() => makeCharacter(
  37759. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37760. {
  37761. back: {
  37762. height: math.unit(4 + 1/12, "feet"),
  37763. weight: math.unit(75, "lb"),
  37764. name: "Back",
  37765. image: {
  37766. source: "./media/characters/rhett/back.svg",
  37767. extra: 930/878,
  37768. bottom: 25/955
  37769. }
  37770. },
  37771. front: {
  37772. height: math.unit(4 + 1/12, "feet"),
  37773. weight: math.unit(75, "lb"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/rhett/front.svg",
  37777. extra: 1682/1586,
  37778. bottom: 92/1774
  37779. }
  37780. },
  37781. },
  37782. [
  37783. {
  37784. name: "Micro",
  37785. height: math.unit(8, "inches")
  37786. },
  37787. {
  37788. name: "Tiny",
  37789. height: math.unit(2, "feet")
  37790. },
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(4 + 1/12, "feet"),
  37794. default: true
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(3 + 3/12, "feet"),
  37803. name: "Front",
  37804. image: {
  37805. source: "./media/characters/penny/front.svg",
  37806. extra: 1406/1311,
  37807. bottom: 26/1432
  37808. }
  37809. },
  37810. },
  37811. [
  37812. {
  37813. name: "Normal",
  37814. height: math.unit(3 + 3/12, "feet"),
  37815. default: true
  37816. },
  37817. ]
  37818. ))
  37819. characterMakers.push(() => makeCharacter(
  37820. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37821. {
  37822. front: {
  37823. height: math.unit(4 + 11/12, "feet"),
  37824. name: "Front",
  37825. image: {
  37826. source: "./media/characters/monty/front.svg",
  37827. extra: 1479/1209,
  37828. bottom: 0/1479
  37829. }
  37830. },
  37831. },
  37832. [
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(4 + 11/12, "feet"),
  37836. default: true
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(8 + 4/12, "feet"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/sterling/front.svg",
  37848. extra: 1420/1236,
  37849. bottom: 27/1447
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(8 + 4/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(15, "feet"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/marble/front.svg",
  37869. extra: 973/937,
  37870. bottom: 32/1005
  37871. }
  37872. },
  37873. },
  37874. [
  37875. {
  37876. name: "Normal",
  37877. height: math.unit(15, "feet"),
  37878. default: true
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37884. {
  37885. front: {
  37886. height: math.unit(3, "inches"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/powder/front.svg",
  37890. extra: 1504/1334,
  37891. bottom: 518/2022
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(3, "inches"),
  37899. default: true
  37900. },
  37901. ]
  37902. ))
  37903. characterMakers.push(() => makeCharacter(
  37904. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37905. {
  37906. front: {
  37907. height: math.unit(4 + 5/12, "feet"),
  37908. name: "Front",
  37909. image: {
  37910. source: "./media/characters/joey-raccoon/front.svg",
  37911. extra: 1273/1197,
  37912. bottom: 0/1273
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(4 + 5/12, "feet"),
  37920. default: true
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(8 + 4/12, "feet"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/vick/front.svg",
  37932. extra: 2187/2118,
  37933. bottom: 47/2234
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(8 + 4/12, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(5 + 5/12, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/mitsy/front.svg",
  37953. extra: 1842/1695,
  37954. bottom: 0/1842
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(5 + 5/12, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(6 + 3/12, "feet"),
  37971. name: "Front",
  37972. image: {
  37973. source: "./media/characters/silvy/front.svg",
  37974. extra: 1995/1836,
  37975. bottom: 225/2220
  37976. }
  37977. },
  37978. },
  37979. [
  37980. {
  37981. name: "Normal",
  37982. height: math.unit(6 + 3/12, "feet"),
  37983. default: true
  37984. },
  37985. ]
  37986. ))
  37987. characterMakers.push(() => makeCharacter(
  37988. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37989. {
  37990. front: {
  37991. height: math.unit(3 + 8/12, "feet"),
  37992. name: "Front",
  37993. image: {
  37994. source: "./media/characters/rodney/front.svg",
  37995. extra: 1956/1747,
  37996. bottom: 31/1987
  37997. }
  37998. },
  37999. frontDressed: {
  38000. height: math.unit(2.9, "feet"),
  38001. name: "Front (Dressed)",
  38002. image: {
  38003. source: "./media/characters/rodney/front-dressed.svg",
  38004. extra: 1382/1241,
  38005. bottom: 385/1767
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(3 + 8/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(5 + 9/12, "feet"),
  38022. weight: math.unit(194, "lbs"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/zakail-sudekai/front.svg",
  38026. extra: 2696/2533,
  38027. bottom: 248/2944
  38028. }
  38029. },
  38030. maw: {
  38031. height: math.unit(1.35, "feet"),
  38032. name: "Maw",
  38033. image: {
  38034. source: "./media/characters/zakail-sudekai/maw.svg"
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(5 + 9/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(8 + 4/12, "feet"),
  38051. weight: math.unit(1200, "lb"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/eleanor/front.svg",
  38055. extra: 1226/1192,
  38056. bottom: 52/1278
  38057. }
  38058. },
  38059. back: {
  38060. height: math.unit(8 + 4/12, "feet"),
  38061. weight: math.unit(1200, "lb"),
  38062. name: "Back",
  38063. image: {
  38064. source: "./media/characters/eleanor/back.svg",
  38065. extra: 1242/1184,
  38066. bottom: 60/1302
  38067. }
  38068. },
  38069. head: {
  38070. height: math.unit(2.62, "feet"),
  38071. name: "Head",
  38072. image: {
  38073. source: "./media/characters/eleanor/head.svg"
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(8 + 4/12, "feet"),
  38081. default: true
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(8 + 4/12, "feet"),
  38090. weight: math.unit(750, "lb"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/tanya/front.svg",
  38094. extra: 1749/1615,
  38095. bottom: 33/1782
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(8 + 4/12, "feet"),
  38103. default: true
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38109. {
  38110. front: {
  38111. height: math.unit(5, "feet"),
  38112. weight: math.unit(225, "lb"),
  38113. name: "Front",
  38114. image: {
  38115. source: "./media/characters/cindy/front.svg",
  38116. extra: 1320/1250,
  38117. bottom: 42/1362
  38118. }
  38119. },
  38120. frontDressed: {
  38121. height: math.unit(5, "feet"),
  38122. weight: math.unit(225, "lb"),
  38123. name: "Front (Dressed)",
  38124. image: {
  38125. source: "./media/characters/cindy/front-dressed.svg",
  38126. extra: 1320/1250,
  38127. bottom: 42/1362
  38128. }
  38129. },
  38130. back: {
  38131. height: math.unit(5, "feet"),
  38132. weight: math.unit(225, "lb"),
  38133. name: "Back",
  38134. image: {
  38135. source: "./media/characters/cindy/back.svg",
  38136. extra: 1384/1346,
  38137. bottom: 14/1398
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(5, "feet"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(6 + 9/12, "feet"),
  38154. weight: math.unit(440, "lb"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/wilbur-owen/front.svg",
  38158. extra: 1575/1448,
  38159. bottom: 72/1647
  38160. }
  38161. },
  38162. back: {
  38163. height: math.unit(6 + 9/12, "feet"),
  38164. weight: math.unit(440, "lb"),
  38165. name: "Back",
  38166. image: {
  38167. source: "./media/characters/wilbur-owen/back.svg",
  38168. extra: 1578/1445,
  38169. bottom: 36/1614
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Normal",
  38176. height: math.unit(6 + 9/12, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(6 + 5/12, "feet"),
  38186. weight: math.unit(650, "lb"),
  38187. name: "Front",
  38188. image: {
  38189. source: "./media/characters/keegan/front.svg",
  38190. extra: 2387/2198,
  38191. bottom: 33/2420
  38192. }
  38193. },
  38194. side: {
  38195. height: math.unit(6 + 5/12, "feet"),
  38196. weight: math.unit(650, "lb"),
  38197. name: "Side",
  38198. image: {
  38199. source: "./media/characters/keegan/side.svg",
  38200. extra: 2390/2202,
  38201. bottom: 47/2437
  38202. }
  38203. },
  38204. back: {
  38205. height: math.unit(6 + 5/12, "feet"),
  38206. weight: math.unit(650, "lb"),
  38207. name: "Back",
  38208. image: {
  38209. source: "./media/characters/keegan/back.svg",
  38210. extra: 2418/2268,
  38211. bottom: 15/2433
  38212. }
  38213. },
  38214. frontSfw: {
  38215. height: math.unit(6 + 5/12, "feet"),
  38216. weight: math.unit(650, "lb"),
  38217. name: "Front (SFW)",
  38218. image: {
  38219. source: "./media/characters/keegan/front-sfw.svg",
  38220. extra: 2387/2198,
  38221. bottom: 33/2420
  38222. }
  38223. },
  38224. beans: {
  38225. height: math.unit(1.85, "feet"),
  38226. name: "Beans",
  38227. image: {
  38228. source: "./media/characters/keegan/beans.svg"
  38229. }
  38230. },
  38231. },
  38232. [
  38233. {
  38234. name: "Normal",
  38235. height: math.unit(6 + 5/12, "feet"),
  38236. default: true
  38237. },
  38238. ]
  38239. ))
  38240. characterMakers.push(() => makeCharacter(
  38241. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38242. {
  38243. front: {
  38244. height: math.unit(9, "feet"),
  38245. name: "Front",
  38246. image: {
  38247. source: "./media/characters/colton/front.svg",
  38248. extra: 1589/1326,
  38249. bottom: 139/1728
  38250. }
  38251. },
  38252. },
  38253. [
  38254. {
  38255. name: "Normal",
  38256. height: math.unit(9, "feet"),
  38257. default: true
  38258. },
  38259. ]
  38260. ))
  38261. characterMakers.push(() => makeCharacter(
  38262. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38263. {
  38264. front: {
  38265. height: math.unit(2 + 9/12, "feet"),
  38266. name: "Front",
  38267. image: {
  38268. source: "./media/characters/bora/front.svg",
  38269. extra: 1265/1250,
  38270. bottom: 24/1289
  38271. }
  38272. },
  38273. },
  38274. [
  38275. {
  38276. name: "Normal",
  38277. height: math.unit(2 + 9/12, "feet"),
  38278. default: true
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(8, "feet"),
  38287. name: "Front",
  38288. image: {
  38289. source: "./media/characters/myu-myu/front.svg",
  38290. extra: 1949/1857,
  38291. bottom: 90/2039
  38292. }
  38293. },
  38294. },
  38295. [
  38296. {
  38297. name: "Normal",
  38298. height: math.unit(8, "feet"),
  38299. default: true
  38300. },
  38301. {
  38302. name: "Big",
  38303. height: math.unit(15, "feet")
  38304. },
  38305. {
  38306. name: "BIG",
  38307. height: math.unit(25, "feet")
  38308. },
  38309. ]
  38310. ))
  38311. characterMakers.push(() => makeCharacter(
  38312. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38313. {
  38314. side: {
  38315. height: math.unit(7 + 5/12, "feet"),
  38316. weight: math.unit(2800, "lb"),
  38317. name: "Side",
  38318. image: {
  38319. source: "./media/characters/haloren/side.svg",
  38320. extra: 1793/409,
  38321. bottom: 59/1852
  38322. }
  38323. },
  38324. frontPaw: {
  38325. height: math.unit(2.36, "feet"),
  38326. name: "Front paw",
  38327. image: {
  38328. source: "./media/characters/haloren/front-paw.svg"
  38329. }
  38330. },
  38331. hindPaw: {
  38332. height: math.unit(3.18, "feet"),
  38333. name: "Hind paw",
  38334. image: {
  38335. source: "./media/characters/haloren/hind-paw.svg"
  38336. }
  38337. },
  38338. maw: {
  38339. height: math.unit(5.05, "feet"),
  38340. name: "Maw",
  38341. image: {
  38342. source: "./media/characters/haloren/maw.svg"
  38343. }
  38344. },
  38345. dick: {
  38346. height: math.unit(2.90, "feet"),
  38347. name: "Dick",
  38348. image: {
  38349. source: "./media/characters/haloren/dick.svg"
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Normal",
  38356. height: math.unit(7 + 5/12, "feet"),
  38357. default: true
  38358. },
  38359. {
  38360. name: "Enhanced",
  38361. height: math.unit(14 + 3/12, "feet")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(171, "cm"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/kimmy/front.svg",
  38373. extra: 1491/1435,
  38374. bottom: 53/1544
  38375. }
  38376. },
  38377. },
  38378. [
  38379. {
  38380. name: "Small",
  38381. height: math.unit(9, "cm")
  38382. },
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(171, "cm"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(8, "feet"),
  38395. weight: math.unit(300, "lb"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/galeboomer/front.svg",
  38399. extra: 4651/4415,
  38400. bottom: 162/4813
  38401. }
  38402. },
  38403. back: {
  38404. height: math.unit(8, "feet"),
  38405. weight: math.unit(300, "lb"),
  38406. name: "Back",
  38407. image: {
  38408. source: "./media/characters/galeboomer/back.svg",
  38409. extra: 4544/4314,
  38410. bottom: 16/4560
  38411. }
  38412. },
  38413. frontAlt: {
  38414. height: math.unit(8, "feet"),
  38415. weight: math.unit(300, "lb"),
  38416. name: "Front (Alt)",
  38417. image: {
  38418. source: "./media/characters/galeboomer/front-alt.svg",
  38419. extra: 4458/4228,
  38420. bottom: 68/4526
  38421. }
  38422. },
  38423. maw: {
  38424. height: math.unit(1.2, "feet"),
  38425. name: "Maw",
  38426. image: {
  38427. source: "./media/characters/galeboomer/maw.svg"
  38428. }
  38429. },
  38430. },
  38431. [
  38432. {
  38433. name: "Normal",
  38434. height: math.unit(8, "feet"),
  38435. default: true
  38436. },
  38437. ]
  38438. ))
  38439. characterMakers.push(() => makeCharacter(
  38440. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38441. {
  38442. front: {
  38443. height: math.unit(5 + 9/12, "feet"),
  38444. weight: math.unit(120, "lb"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/chyr/front.svg",
  38448. extra: 1323/1254,
  38449. bottom: 63/1386
  38450. }
  38451. },
  38452. back: {
  38453. height: math.unit(5 + 9/12, "feet"),
  38454. weight: math.unit(120, "lb"),
  38455. name: "Back",
  38456. image: {
  38457. source: "./media/characters/chyr/back.svg",
  38458. extra: 1323/1252,
  38459. bottom: 48/1371
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(5 + 9/12, "feet"),
  38467. default: true
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(7, "feet"),
  38476. weight: math.unit(310, "lb"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/solarus/front.svg",
  38480. extra: 2415/2021,
  38481. bottom: 103/2518
  38482. }
  38483. },
  38484. back: {
  38485. height: math.unit(7, "feet"),
  38486. weight: math.unit(310, "lb"),
  38487. name: "Back",
  38488. image: {
  38489. source: "./media/characters/solarus/back.svg",
  38490. extra: 2463/2089,
  38491. bottom: 79/2542
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(7, "feet"),
  38499. default: true
  38500. },
  38501. ]
  38502. ))
  38503. characterMakers.push(() => makeCharacter(
  38504. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38505. {
  38506. front: {
  38507. height: math.unit(16, "feet"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38511. extra: 1844/1780,
  38512. bottom: 58/1902
  38513. }
  38514. },
  38515. winterCoat: {
  38516. height: math.unit(16, "feet"),
  38517. name: "Winter Coat",
  38518. image: {
  38519. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38520. extra: 1807/1775,
  38521. bottom: 69/1876
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Normal",
  38528. height: math.unit(16, "feet"),
  38529. default: true
  38530. },
  38531. {
  38532. name: "Chicago Size",
  38533. height: math.unit(560, "feet")
  38534. },
  38535. ]
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(11 + 6/12, "feet"),
  38542. weight: math.unit(1366, "lb"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/lexor/front.svg",
  38546. extra: 1560/1481,
  38547. bottom: 211/1771
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(11 + 6/12, "feet"),
  38552. weight: math.unit(1366, "lb"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/lexor/back.svg",
  38556. extra: 1614/1533,
  38557. bottom: 76/1690
  38558. }
  38559. },
  38560. maw: {
  38561. height: math.unit(3, "feet"),
  38562. name: "Maw",
  38563. image: {
  38564. source: "./media/characters/lexor/maw.svg"
  38565. }
  38566. },
  38567. dick: {
  38568. height: math.unit(2.59, "feet"),
  38569. name: "Dick",
  38570. image: {
  38571. source: "./media/characters/lexor/dick.svg"
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(11 + 6/12, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(5 + 8/12, "feet"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/magnum/front.svg",
  38591. extra: 942/855,
  38592. bottom: 26/968
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(5 + 8/12, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(18 + 4/12, "feet"),
  38609. weight: math.unit(1500, "kg"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/solas-sharpsman/front.svg",
  38613. extra: 1698/1589,
  38614. bottom: 0/1698
  38615. }
  38616. },
  38617. },
  38618. [
  38619. {
  38620. name: "Normal",
  38621. height: math.unit(18 + 4/12, "feet"),
  38622. default: true
  38623. },
  38624. ]
  38625. ))
  38626. characterMakers.push(() => makeCharacter(
  38627. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38628. {
  38629. front: {
  38630. height: math.unit(5 + 5/12, "feet"),
  38631. weight: math.unit(180, "lb"),
  38632. name: "Front",
  38633. image: {
  38634. source: "./media/characters/october/front.svg",
  38635. extra: 1800/1650,
  38636. bottom: 0/1800
  38637. }
  38638. },
  38639. frontNsfw: {
  38640. height: math.unit(5 + 5/12, "feet"),
  38641. weight: math.unit(180, "lb"),
  38642. name: "Front (NSFW)",
  38643. image: {
  38644. source: "./media/characters/october/front-nsfw.svg",
  38645. extra: 1392/1307,
  38646. bottom: 42/1434
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Normal",
  38653. height: math.unit(5 + 5/12, "feet"),
  38654. default: true
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(8 + 6/12, "feet"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/essynkardi/front.svg",
  38666. extra: 1914/1846,
  38667. bottom: 22/1936
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(8 + 6/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(6 + 6/12, "feet"),
  38684. weight: math.unit(7, "lb"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/icky/front.svg",
  38688. extra: 813/782,
  38689. bottom: 66/879
  38690. }
  38691. },
  38692. back: {
  38693. height: math.unit(6 + 6/12, "feet"),
  38694. weight: math.unit(7, "lb"),
  38695. name: "Back",
  38696. image: {
  38697. source: "./media/characters/icky/back.svg",
  38698. extra: 754/735,
  38699. bottom: 56/810
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(6 + 6/12, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(15, "feet"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/rojas/front.svg",
  38719. extra: 1462/1408,
  38720. bottom: 95/1557
  38721. }
  38722. },
  38723. back: {
  38724. height: math.unit(15, "feet"),
  38725. name: "Back",
  38726. image: {
  38727. source: "./media/characters/rojas/back.svg",
  38728. extra: 1023/954,
  38729. bottom: 28/1051
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(15, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38743. {
  38744. frontHuman: {
  38745. height: math.unit(5 + 7/12, "feet"),
  38746. name: "Front (Human)",
  38747. image: {
  38748. source: "./media/characters/alek-dryagan/front-human.svg",
  38749. extra: 1687/1667,
  38750. bottom: 69/1756
  38751. }
  38752. },
  38753. backHuman: {
  38754. height: math.unit(5 + 7/12, "feet"),
  38755. name: "Back (Human)",
  38756. image: {
  38757. source: "./media/characters/alek-dryagan/back-human.svg",
  38758. extra: 1670/1649,
  38759. bottom: 65/1735
  38760. }
  38761. },
  38762. frontDemi: {
  38763. height: math.unit(65, "feet"),
  38764. name: "Front (Demi)",
  38765. image: {
  38766. source: "./media/characters/alek-dryagan/front-demi.svg",
  38767. extra: 1669/1642,
  38768. bottom: 49/1718
  38769. }
  38770. },
  38771. backDemi: {
  38772. height: math.unit(65, "feet"),
  38773. name: "Back (Demi)",
  38774. image: {
  38775. source: "./media/characters/alek-dryagan/back-demi.svg",
  38776. extra: 1658/1637,
  38777. bottom: 40/1698
  38778. }
  38779. },
  38780. mawHuman: {
  38781. height: math.unit(0.3, "feet"),
  38782. name: "Maw (Human)",
  38783. image: {
  38784. source: "./media/characters/alek-dryagan/maw-human.svg"
  38785. }
  38786. },
  38787. mawDemi: {
  38788. height: math.unit(3.8, "feet"),
  38789. name: "Maw (Demi)",
  38790. image: {
  38791. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(5 + 7/12, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38805. {
  38806. frontHuman: {
  38807. height: math.unit(5 + 2/12, "feet"),
  38808. name: "Front (Human)",
  38809. image: {
  38810. source: "./media/characters/gen/front-human.svg",
  38811. extra: 1627/1538,
  38812. bottom: 71/1698
  38813. }
  38814. },
  38815. backHuman: {
  38816. height: math.unit(5 + 2/12, "feet"),
  38817. name: "Back (Human)",
  38818. image: {
  38819. source: "./media/characters/gen/back-human.svg",
  38820. extra: 1638/1548,
  38821. bottom: 69/1707
  38822. }
  38823. },
  38824. frontDemi: {
  38825. height: math.unit(5 + 2/12, "feet"),
  38826. name: "Front (Demi)",
  38827. image: {
  38828. source: "./media/characters/gen/front-demi.svg",
  38829. extra: 1627/1538,
  38830. bottom: 71/1698
  38831. }
  38832. },
  38833. backDemi: {
  38834. height: math.unit(5 + 2/12, "feet"),
  38835. name: "Back (Demi)",
  38836. image: {
  38837. source: "./media/characters/gen/back-demi.svg",
  38838. extra: 1638/1548,
  38839. bottom: 69/1707
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(5 + 2/12, "feet"),
  38847. default: true
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38853. {
  38854. frontImp: {
  38855. height: math.unit(1 + 11/12, "feet"),
  38856. name: "Front (Imp)",
  38857. image: {
  38858. source: "./media/characters/max-kobold/front-imp.svg",
  38859. extra: 1238/1134,
  38860. bottom: 81/1319
  38861. }
  38862. },
  38863. backImp: {
  38864. height: math.unit(1 + 11/12, "feet"),
  38865. name: "Back (Imp)",
  38866. image: {
  38867. source: "./media/characters/max-kobold/back-imp.svg",
  38868. extra: 1334/1175,
  38869. bottom: 34/1368
  38870. }
  38871. },
  38872. frontDemi: {
  38873. height: math.unit(5 + 9/12, "feet"),
  38874. name: "Front (Demi)",
  38875. image: {
  38876. source: "./media/characters/max-kobold/front-demi.svg",
  38877. extra: 1715/1685,
  38878. bottom: 54/1769
  38879. }
  38880. },
  38881. backDemi: {
  38882. height: math.unit(5 + 9/12, "feet"),
  38883. name: "Back (Demi)",
  38884. image: {
  38885. source: "./media/characters/max-kobold/back-demi.svg",
  38886. extra: 1752/1729,
  38887. bottom: 41/1793
  38888. }
  38889. },
  38890. handImp: {
  38891. height: math.unit(0.45, "feet"),
  38892. name: "Hand (Imp)",
  38893. image: {
  38894. source: "./media/characters/max-kobold/hand.svg"
  38895. }
  38896. },
  38897. pawImp: {
  38898. height: math.unit(0.46, "feet"),
  38899. name: "Paw (Imp)",
  38900. image: {
  38901. source: "./media/characters/max-kobold/paw.svg"
  38902. }
  38903. },
  38904. handDemi: {
  38905. height: math.unit(0.80, "feet"),
  38906. name: "Hand (Demi)",
  38907. image: {
  38908. source: "./media/characters/max-kobold/hand.svg"
  38909. }
  38910. },
  38911. pawDemi: {
  38912. height: math.unit(1.1, "feet"),
  38913. name: "Paw (Demi)",
  38914. image: {
  38915. source: "./media/characters/max-kobold/paw.svg"
  38916. }
  38917. },
  38918. headImp: {
  38919. height: math.unit(1.33, "feet"),
  38920. name: "Head (Imp)",
  38921. image: {
  38922. source: "./media/characters/max-kobold/head-imp.svg"
  38923. }
  38924. },
  38925. mawImp: {
  38926. height: math.unit(0.75, "feet"),
  38927. name: "Maw (Imp)",
  38928. image: {
  38929. source: "./media/characters/max-kobold/maw-imp.svg"
  38930. }
  38931. },
  38932. mawDemi: {
  38933. height: math.unit(0.42, "feet"),
  38934. name: "Maw (Demi)",
  38935. image: {
  38936. source: "./media/characters/max-kobold/maw-demi.svg"
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(1 + 11/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(7 + 5/12, "feet"),
  38953. name: "Front",
  38954. image: {
  38955. source: "./media/characters/carbon/front.svg",
  38956. extra: 1754/1689,
  38957. bottom: 65/1819
  38958. }
  38959. },
  38960. back: {
  38961. height: math.unit(7 + 5/12, "feet"),
  38962. name: "Back",
  38963. image: {
  38964. source: "./media/characters/carbon/back.svg",
  38965. extra: 1762/1695,
  38966. bottom: 24/1786
  38967. }
  38968. },
  38969. frontGigantamax: {
  38970. height: math.unit(150, "feet"),
  38971. name: "Front (Gigantamax)",
  38972. image: {
  38973. source: "./media/characters/carbon/front-gigantamax.svg",
  38974. extra: 1826/1669,
  38975. bottom: 59/1885
  38976. }
  38977. },
  38978. backGigantamax: {
  38979. height: math.unit(150, "feet"),
  38980. name: "Back (Gigantamax)",
  38981. image: {
  38982. source: "./media/characters/carbon/back-gigantamax.svg",
  38983. extra: 1796/1653,
  38984. bottom: 53/1849
  38985. }
  38986. },
  38987. maw: {
  38988. height: math.unit(0.48, "feet"),
  38989. name: "Maw",
  38990. image: {
  38991. source: "./media/characters/carbon/maw.svg"
  38992. }
  38993. },
  38994. mawGigantamax: {
  38995. height: math.unit(7.5, "feet"),
  38996. name: "Maw (Gigantamax)",
  38997. image: {
  38998. source: "./media/characters/carbon/maw-gigantamax.svg"
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Normal",
  39005. height: math.unit(7 + 5/12, "feet"),
  39006. default: true
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(6, "feet"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/maverick/front.svg",
  39018. extra: 1672/1661,
  39019. bottom: 85/1757
  39020. }
  39021. },
  39022. back: {
  39023. height: math.unit(6, "feet"),
  39024. name: "Back",
  39025. image: {
  39026. source: "./media/characters/maverick/back.svg",
  39027. extra: 1642/1631,
  39028. bottom: 38/1680
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(6, "feet"),
  39036. default: true
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(15, "feet"),
  39045. weight: math.unit(615, "lb"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/grockle/front.svg",
  39049. extra: 1535/1427,
  39050. bottom: 56/1591
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(15, "feet"),
  39058. default: true
  39059. },
  39060. {
  39061. name: "Large",
  39062. height: math.unit(150, "feet")
  39063. },
  39064. {
  39065. name: "Macro",
  39066. height: math.unit(1876, "feet")
  39067. },
  39068. {
  39069. name: "Mega Macro",
  39070. height: math.unit(121940, "feet")
  39071. },
  39072. {
  39073. name: "Giga Macro",
  39074. height: math.unit(750, "km")
  39075. },
  39076. {
  39077. name: "Tera Macro",
  39078. height: math.unit(750000, "km")
  39079. },
  39080. {
  39081. name: "Galactic",
  39082. height: math.unit(1.4e5, "km")
  39083. },
  39084. {
  39085. name: "Godlike",
  39086. height: math.unit(9.8e280, "galaxies")
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(11, "meters"),
  39095. weight: math.unit(20, "tonnes"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/alistair/front.svg",
  39099. extra: 1265/1009,
  39100. bottom: 93/1358
  39101. }
  39102. },
  39103. },
  39104. [
  39105. {
  39106. name: "Normal",
  39107. height: math.unit(11, "meters"),
  39108. default: true
  39109. },
  39110. ]
  39111. ))
  39112. characterMakers.push(() => makeCharacter(
  39113. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39114. {
  39115. front: {
  39116. height: math.unit(5 + 8/12, "feet"),
  39117. name: "Front",
  39118. image: {
  39119. source: "./media/characters/haruka/front.svg",
  39120. extra: 2012/1952,
  39121. bottom: 0/2012
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Normal",
  39128. height: math.unit(5 + 8/12, "feet"),
  39129. default: true
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39135. {
  39136. back: {
  39137. height: math.unit(9, "feet"),
  39138. name: "Back",
  39139. image: {
  39140. source: "./media/characters/vivian-sylveon/back.svg",
  39141. extra: 1853/1714,
  39142. bottom: 0/1853
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(9, "feet"),
  39150. default: true
  39151. },
  39152. {
  39153. name: "Macro",
  39154. height: math.unit(500, "feet")
  39155. },
  39156. {
  39157. name: "Megamacro",
  39158. height: math.unit(600, "miles")
  39159. },
  39160. {
  39161. name: "Gigamacro",
  39162. height: math.unit(30000, "miles")
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39168. {
  39169. anthro: {
  39170. height: math.unit(5 + 10/12, "feet"),
  39171. weight: math.unit(100, "lb"),
  39172. name: "Anthro",
  39173. image: {
  39174. source: "./media/characters/daiki/anthro.svg",
  39175. extra: 1115/1027,
  39176. bottom: 69/1184
  39177. }
  39178. },
  39179. feral: {
  39180. height: math.unit(200, "feet"),
  39181. name: "Feral",
  39182. image: {
  39183. source: "./media/characters/daiki/feral.svg",
  39184. extra: 1256/313,
  39185. bottom: 39/1295
  39186. }
  39187. },
  39188. feralHead: {
  39189. height: math.unit(171, "feet"),
  39190. name: "Feral Head",
  39191. image: {
  39192. source: "./media/characters/daiki/feral-head.svg"
  39193. }
  39194. },
  39195. manaDragon: {
  39196. height: math.unit(170, "meters"),
  39197. name: "Mana-dragon",
  39198. image: {
  39199. source: "./media/characters/daiki/mana-dragon.svg",
  39200. extra: 763/420,
  39201. bottom: 97/860
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(5 + 10/12, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39215. {
  39216. fullyEquippedFront: {
  39217. height: math.unit(3 + 1/12, "feet"),
  39218. weight: math.unit(24, "lb"),
  39219. name: "Fully Equipped (Front)",
  39220. image: {
  39221. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39222. extra: 687/605,
  39223. bottom: 18/705
  39224. }
  39225. },
  39226. fullyEquippedBack: {
  39227. height: math.unit(3 + 1/12, "feet"),
  39228. weight: math.unit(24, "lb"),
  39229. name: "Fully Equipped (Back)",
  39230. image: {
  39231. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39232. extra: 689/590,
  39233. bottom: 18/707
  39234. }
  39235. },
  39236. dailyWear: {
  39237. height: math.unit(3 + 1/12, "feet"),
  39238. weight: math.unit(24, "lb"),
  39239. name: "Daily Wear",
  39240. image: {
  39241. source: "./media/characters/tea-spot/daily-wear.svg",
  39242. extra: 701/620,
  39243. bottom: 21/722
  39244. }
  39245. },
  39246. maidWork: {
  39247. height: math.unit(3 + 1/12, "feet"),
  39248. weight: math.unit(24, "lb"),
  39249. name: "Maid Work",
  39250. image: {
  39251. source: "./media/characters/tea-spot/maid-work.svg",
  39252. extra: 693/609,
  39253. bottom: 15/708
  39254. }
  39255. },
  39256. },
  39257. [
  39258. {
  39259. name: "Normal",
  39260. height: math.unit(3 + 1/12, "feet"),
  39261. default: true
  39262. },
  39263. ]
  39264. ))
  39265. characterMakers.push(() => makeCharacter(
  39266. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39267. {
  39268. front: {
  39269. height: math.unit(175, "cm"),
  39270. weight: math.unit(75, "kg"),
  39271. name: "Front",
  39272. image: {
  39273. source: "./media/characters/chee/front.svg",
  39274. extra: 1796/1740,
  39275. bottom: 40/1836
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Micro-Micro",
  39282. height: math.unit(1, "nm")
  39283. },
  39284. {
  39285. name: "Micro-erst",
  39286. height: math.unit(1, "micrometer")
  39287. },
  39288. {
  39289. name: "Micro-er",
  39290. height: math.unit(1, "cm")
  39291. },
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(175, "cm"),
  39295. default: true
  39296. },
  39297. {
  39298. name: "Macro",
  39299. height: math.unit(100, "m")
  39300. },
  39301. {
  39302. name: "Macro-er",
  39303. height: math.unit(1, "km")
  39304. },
  39305. {
  39306. name: "Macro-erst",
  39307. height: math.unit(10, "km")
  39308. },
  39309. {
  39310. name: "Macro-Macro",
  39311. height: math.unit(100, "km")
  39312. },
  39313. ]
  39314. ))
  39315. characterMakers.push(() => makeCharacter(
  39316. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39317. {
  39318. front: {
  39319. height: math.unit(11 + 9/12, "feet"),
  39320. weight: math.unit(935, "lb"),
  39321. name: "Front",
  39322. image: {
  39323. source: "./media/characters/kingsley/front.svg",
  39324. extra: 1803/1674,
  39325. bottom: 127/1930
  39326. }
  39327. },
  39328. frontNude: {
  39329. height: math.unit(11 + 9/12, "feet"),
  39330. weight: math.unit(935, "lb"),
  39331. name: "Front (Nude)",
  39332. image: {
  39333. source: "./media/characters/kingsley/front-nude.svg",
  39334. extra: 1803/1674,
  39335. bottom: 127/1930
  39336. }
  39337. },
  39338. },
  39339. [
  39340. {
  39341. name: "Normal",
  39342. height: math.unit(11 + 9/12, "feet"),
  39343. default: true
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39349. {
  39350. side: {
  39351. height: math.unit(9, "feet"),
  39352. name: "Side",
  39353. image: {
  39354. source: "./media/characters/rymel/side.svg",
  39355. extra: 792/469,
  39356. bottom: 121/913
  39357. }
  39358. },
  39359. maw: {
  39360. height: math.unit(2.4, "meters"),
  39361. name: "Maw",
  39362. image: {
  39363. source: "./media/characters/rymel/maw.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "House Drake",
  39370. height: math.unit(2, "feet")
  39371. },
  39372. {
  39373. name: "Reduced",
  39374. height: math.unit(4.5, "feet")
  39375. },
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(9, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(1.74, "meters"),
  39388. weight: math.unit(55, "kg"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/rubus/front.svg",
  39392. extra: 1894/1742,
  39393. bottom: 44/1938
  39394. }
  39395. },
  39396. },
  39397. [
  39398. {
  39399. name: "Normal",
  39400. height: math.unit(1.74, "meters"),
  39401. default: true
  39402. },
  39403. ]
  39404. ))
  39405. characterMakers.push(() => makeCharacter(
  39406. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39407. {
  39408. front: {
  39409. height: math.unit(5 + 2/12, "feet"),
  39410. weight: math.unit(112, "lb"),
  39411. name: "Front",
  39412. image: {
  39413. source: "./media/characters/cassie-kingston/front.svg",
  39414. extra: 1438/1390,
  39415. bottom: 47/1485
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(5 + 2/12, "feet"),
  39423. default: true
  39424. },
  39425. {
  39426. name: "Macro",
  39427. height: math.unit(128, "feet")
  39428. },
  39429. {
  39430. name: "Megamacro",
  39431. height: math.unit(2.56, "miles")
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(7, "feet"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/fox/front.svg",
  39443. extra: 1798/1703,
  39444. bottom: 55/1853
  39445. }
  39446. },
  39447. back: {
  39448. height: math.unit(7, "feet"),
  39449. name: "Back",
  39450. image: {
  39451. source: "./media/characters/fox/back.svg",
  39452. extra: 1748/1649,
  39453. bottom: 32/1780
  39454. }
  39455. },
  39456. head: {
  39457. height: math.unit(1.95, "feet"),
  39458. name: "Head",
  39459. image: {
  39460. source: "./media/characters/fox/head.svg"
  39461. }
  39462. },
  39463. dick: {
  39464. height: math.unit(1.33, "feet"),
  39465. name: "Dick",
  39466. image: {
  39467. source: "./media/characters/fox/dick.svg"
  39468. }
  39469. },
  39470. foot: {
  39471. height: math.unit(1, "feet"),
  39472. name: "Foot",
  39473. image: {
  39474. source: "./media/characters/fox/foot.svg"
  39475. }
  39476. },
  39477. paw: {
  39478. height: math.unit(0.92, "feet"),
  39479. name: "Paw",
  39480. image: {
  39481. source: "./media/characters/fox/paw.svg"
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Small",
  39488. height: math.unit(3, "inches")
  39489. },
  39490. {
  39491. name: "\"Realistic\"",
  39492. height: math.unit(7, "feet")
  39493. },
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(150, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "BIG",
  39501. height: math.unit(1200, "feet")
  39502. },
  39503. {
  39504. name: "👀",
  39505. height: math.unit(5, "miles")
  39506. },
  39507. {
  39508. name: "👀👀👀",
  39509. height: math.unit(64, "miles")
  39510. },
  39511. ]
  39512. ))
  39513. characterMakers.push(() => makeCharacter(
  39514. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39515. {
  39516. front: {
  39517. height: math.unit(625, "feet"),
  39518. name: "Front",
  39519. image: {
  39520. source: "./media/characters/asonja-rossa/front.svg",
  39521. extra: 1833/1686,
  39522. bottom: 24/1857
  39523. }
  39524. },
  39525. back: {
  39526. height: math.unit(625, "feet"),
  39527. name: "Back",
  39528. image: {
  39529. source: "./media/characters/asonja-rossa/back.svg",
  39530. extra: 1852/1753,
  39531. bottom: 26/1878
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Macro",
  39538. height: math.unit(625, "feet"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39545. {
  39546. side: {
  39547. height: math.unit(8, "feet"),
  39548. name: "Side",
  39549. image: {
  39550. source: "./media/characters/rezukii/side.svg",
  39551. extra: 979/542,
  39552. bottom: 87/1066
  39553. }
  39554. },
  39555. sitting: {
  39556. height: math.unit(14.6, "feet"),
  39557. name: "Sitting",
  39558. image: {
  39559. source: "./media/characters/rezukii/sitting.svg",
  39560. extra: 1023/813,
  39561. bottom: 45/1068
  39562. }
  39563. },
  39564. },
  39565. [
  39566. {
  39567. name: "Tiny",
  39568. height: math.unit(2, "feet")
  39569. },
  39570. {
  39571. name: "Smol",
  39572. height: math.unit(4, "feet")
  39573. },
  39574. {
  39575. name: "Normal",
  39576. height: math.unit(8, "feet"),
  39577. default: true
  39578. },
  39579. {
  39580. name: "Big",
  39581. height: math.unit(12, "feet")
  39582. },
  39583. {
  39584. name: "Macro",
  39585. height: math.unit(30, "feet")
  39586. },
  39587. ]
  39588. ))
  39589. characterMakers.push(() => makeCharacter(
  39590. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39591. {
  39592. front: {
  39593. height: math.unit(14, "feet"),
  39594. weight: math.unit(9.5, "tonnes"),
  39595. name: "Front",
  39596. image: {
  39597. source: "./media/characters/dawnheart/front.svg",
  39598. extra: 2792/2675,
  39599. bottom: 64/2856
  39600. }
  39601. },
  39602. },
  39603. [
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(14, "feet"),
  39607. default: true
  39608. },
  39609. ]
  39610. ))
  39611. characterMakers.push(() => makeCharacter(
  39612. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39613. {
  39614. front: {
  39615. height: math.unit(1.7, "m"),
  39616. name: "Front",
  39617. image: {
  39618. source: "./media/characters/gladi/front.svg",
  39619. extra: 1460/1362,
  39620. bottom: 19/1479
  39621. }
  39622. },
  39623. back: {
  39624. height: math.unit(1.7, "m"),
  39625. name: "Back",
  39626. image: {
  39627. source: "./media/characters/gladi/back.svg",
  39628. extra: 1459/1357,
  39629. bottom: 12/1471
  39630. }
  39631. },
  39632. feral: {
  39633. height: math.unit(2.05, "m"),
  39634. name: "Feral",
  39635. image: {
  39636. source: "./media/characters/gladi/feral.svg",
  39637. extra: 821/557,
  39638. bottom: 91/912
  39639. }
  39640. },
  39641. },
  39642. [
  39643. {
  39644. name: "Shortest",
  39645. height: math.unit(70, "cm")
  39646. },
  39647. {
  39648. name: "Normal",
  39649. height: math.unit(1.7, "m")
  39650. },
  39651. {
  39652. name: "Macro",
  39653. height: math.unit(10, "m"),
  39654. default: true
  39655. },
  39656. {
  39657. name: "Tallest",
  39658. height: math.unit(200, "m")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(5 + 7/12, "feet"),
  39667. weight: math.unit(2, "tons"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/erdno/front.svg",
  39671. extra: 1234/1129,
  39672. bottom: 35/1269
  39673. }
  39674. },
  39675. angled: {
  39676. height: math.unit(5 + 7/12, "feet"),
  39677. weight: math.unit(2, "tons"),
  39678. name: "Angled",
  39679. image: {
  39680. source: "./media/characters/erdno/angled.svg",
  39681. extra: 1185/1139,
  39682. bottom: 36/1221
  39683. }
  39684. },
  39685. side: {
  39686. height: math.unit(5 + 7/12, "feet"),
  39687. weight: math.unit(2, "tons"),
  39688. name: "Side",
  39689. image: {
  39690. source: "./media/characters/erdno/side.svg",
  39691. extra: 1191/1144,
  39692. bottom: 40/1231
  39693. }
  39694. },
  39695. back: {
  39696. height: math.unit(5 + 7/12, "feet"),
  39697. weight: math.unit(2, "tons"),
  39698. name: "Back",
  39699. image: {
  39700. source: "./media/characters/erdno/back.svg",
  39701. extra: 1202/1146,
  39702. bottom: 17/1219
  39703. }
  39704. },
  39705. frontNsfw: {
  39706. height: math.unit(5 + 7/12, "feet"),
  39707. weight: math.unit(2, "tons"),
  39708. name: "Front (NSFW)",
  39709. image: {
  39710. source: "./media/characters/erdno/front-nsfw.svg",
  39711. extra: 1234/1129,
  39712. bottom: 35/1269
  39713. }
  39714. },
  39715. angledNsfw: {
  39716. height: math.unit(5 + 7/12, "feet"),
  39717. weight: math.unit(2, "tons"),
  39718. name: "Angled (NSFW)",
  39719. image: {
  39720. source: "./media/characters/erdno/angled-nsfw.svg",
  39721. extra: 1185/1139,
  39722. bottom: 36/1221
  39723. }
  39724. },
  39725. sideNsfw: {
  39726. height: math.unit(5 + 7/12, "feet"),
  39727. weight: math.unit(2, "tons"),
  39728. name: "Side (NSFW)",
  39729. image: {
  39730. source: "./media/characters/erdno/side-nsfw.svg",
  39731. extra: 1191/1144,
  39732. bottom: 40/1231
  39733. }
  39734. },
  39735. backNsfw: {
  39736. height: math.unit(5 + 7/12, "feet"),
  39737. weight: math.unit(2, "tons"),
  39738. name: "Back (NSFW)",
  39739. image: {
  39740. source: "./media/characters/erdno/back-nsfw.svg",
  39741. extra: 1202/1146,
  39742. bottom: 17/1219
  39743. }
  39744. },
  39745. frontHyper: {
  39746. height: math.unit(5 + 7/12, "feet"),
  39747. weight: math.unit(2, "tons"),
  39748. name: "Front (Hyper)",
  39749. image: {
  39750. source: "./media/characters/erdno/front-hyper.svg",
  39751. extra: 1298/1136,
  39752. bottom: 35/1333
  39753. }
  39754. },
  39755. },
  39756. [
  39757. {
  39758. name: "Normal",
  39759. height: math.unit(5 + 7/12, "feet"),
  39760. default: true
  39761. },
  39762. {
  39763. name: "Big",
  39764. height: math.unit(5.7, "meters")
  39765. },
  39766. {
  39767. name: "Macro",
  39768. height: math.unit(5.7, "kilometers")
  39769. },
  39770. {
  39771. name: "Megamacro",
  39772. height: math.unit(5.7, "earths")
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(5 + 10/12, "feet"),
  39781. weight: math.unit(150, "lb"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/jamie/front.svg",
  39785. extra: 1908/1768,
  39786. bottom: 19/1927
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Minimum",
  39793. height: math.unit(2, "cm")
  39794. },
  39795. {
  39796. name: "Micro",
  39797. height: math.unit(3, "inches")
  39798. },
  39799. {
  39800. name: "Normal",
  39801. height: math.unit(5 + 10/12, "feet"),
  39802. default: true
  39803. },
  39804. {
  39805. name: "Macro",
  39806. height: math.unit(150, "feet")
  39807. },
  39808. {
  39809. name: "Megamacro",
  39810. height: math.unit(10000, "m")
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39816. {
  39817. front: {
  39818. height: math.unit(2, "meters"),
  39819. weight: math.unit(100, "kg"),
  39820. name: "Front",
  39821. image: {
  39822. source: "./media/characters/shiron/front.svg",
  39823. extra: 2103/1985,
  39824. bottom: 98/2201
  39825. }
  39826. },
  39827. back: {
  39828. height: math.unit(2, "meters"),
  39829. weight: math.unit(100, "kg"),
  39830. name: "Back",
  39831. image: {
  39832. source: "./media/characters/shiron/back.svg",
  39833. extra: 2110/2015,
  39834. bottom: 89/2199
  39835. }
  39836. },
  39837. hand: {
  39838. height: math.unit(0.96, "feet"),
  39839. name: "Hand",
  39840. image: {
  39841. source: "./media/characters/shiron/hand.svg"
  39842. }
  39843. },
  39844. foot: {
  39845. height: math.unit(1.464, "feet"),
  39846. name: "Foot",
  39847. image: {
  39848. source: "./media/characters/shiron/foot.svg"
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(2, "meters")
  39856. },
  39857. {
  39858. name: "Macro",
  39859. height: math.unit(500, "meters"),
  39860. default: true
  39861. },
  39862. {
  39863. name: "Megamacro",
  39864. height: math.unit(20, "km")
  39865. },
  39866. ]
  39867. ))
  39868. characterMakers.push(() => makeCharacter(
  39869. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39870. {
  39871. front: {
  39872. height: math.unit(6, "feet"),
  39873. name: "Front",
  39874. image: {
  39875. source: "./media/characters/sam/front.svg",
  39876. extra: 849/826,
  39877. bottom: 19/868
  39878. }
  39879. },
  39880. },
  39881. [
  39882. {
  39883. name: "Normal",
  39884. height: math.unit(6, "feet"),
  39885. default: true
  39886. },
  39887. ]
  39888. ))
  39889. characterMakers.push(() => makeCharacter(
  39890. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39891. {
  39892. front: {
  39893. height: math.unit(8 + 4/12, "feet"),
  39894. weight: math.unit(122, "kg"),
  39895. name: "Front",
  39896. image: {
  39897. source: "./media/characters/namori-kurogawa/front.svg",
  39898. extra: 1894/1576,
  39899. bottom: 34/1928
  39900. }
  39901. },
  39902. },
  39903. [
  39904. {
  39905. name: "Normal",
  39906. height: math.unit(8 + 4/12, "feet"),
  39907. default: true
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39913. {
  39914. front: {
  39915. height: math.unit(9, "feet"),
  39916. weight: math.unit(621, "lb"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/unmru/front.svg",
  39920. extra: 1853/1747,
  39921. bottom: 73/1926
  39922. }
  39923. },
  39924. side: {
  39925. height: math.unit(9, "feet"),
  39926. weight: math.unit(621, "lb"),
  39927. name: "Side",
  39928. image: {
  39929. source: "./media/characters/unmru/side.svg",
  39930. extra: 1781/1671,
  39931. bottom: 127/1908
  39932. }
  39933. },
  39934. back: {
  39935. height: math.unit(9, "feet"),
  39936. weight: math.unit(621, "lb"),
  39937. name: "Back",
  39938. image: {
  39939. source: "./media/characters/unmru/back.svg",
  39940. extra: 1894/1765,
  39941. bottom: 75/1969
  39942. }
  39943. },
  39944. dick: {
  39945. height: math.unit(3, "feet"),
  39946. weight: math.unit(35, "lb"),
  39947. name: "Dick",
  39948. image: {
  39949. source: "./media/characters/unmru/dick.svg"
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Normal",
  39956. height: math.unit(9, "feet")
  39957. },
  39958. {
  39959. name: "Natural",
  39960. height: math.unit(27, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Giant",
  39965. height: math.unit(90, "feet")
  39966. },
  39967. {
  39968. name: "Kaiju",
  39969. height: math.unit(270, "feet")
  39970. },
  39971. {
  39972. name: "Macro",
  39973. height: math.unit(900, "feet")
  39974. },
  39975. {
  39976. name: "Macro+",
  39977. height: math.unit(2700, "feet")
  39978. },
  39979. {
  39980. name: "Megamacro",
  39981. height: math.unit(9000, "feet")
  39982. },
  39983. {
  39984. name: "City-Crushing",
  39985. height: math.unit(27000, "feet")
  39986. },
  39987. {
  39988. name: "Mountain-Mashing",
  39989. height: math.unit(90000, "feet")
  39990. },
  39991. {
  39992. name: "Earth-Eclipsing",
  39993. height: math.unit(2.7e8, "feet")
  39994. },
  39995. {
  39996. name: "Sol-Swallowing",
  39997. height: math.unit(9e10, "feet")
  39998. },
  39999. {
  40000. name: "Majoris-Munching",
  40001. height: math.unit(2.7e13, "feet")
  40002. },
  40003. ]
  40004. ))
  40005. characterMakers.push(() => makeCharacter(
  40006. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40007. {
  40008. front: {
  40009. height: math.unit(1, "inch"),
  40010. name: "Front",
  40011. image: {
  40012. source: "./media/characters/squeaks-mouse/front.svg",
  40013. extra: 352/308,
  40014. bottom: 25/377
  40015. }
  40016. },
  40017. },
  40018. [
  40019. {
  40020. name: "Micro",
  40021. height: math.unit(1, "inch"),
  40022. default: true
  40023. },
  40024. ]
  40025. ))
  40026. characterMakers.push(() => makeCharacter(
  40027. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40028. {
  40029. side: {
  40030. height: math.unit(35, "feet"),
  40031. name: "Side",
  40032. image: {
  40033. source: "./media/characters/sayko/side.svg",
  40034. extra: 1697/1021,
  40035. bottom: 82/1779
  40036. }
  40037. },
  40038. head: {
  40039. height: math.unit(16, "feet"),
  40040. name: "Head",
  40041. image: {
  40042. source: "./media/characters/sayko/head.svg"
  40043. }
  40044. },
  40045. forepaw: {
  40046. height: math.unit(7.85, "feet"),
  40047. name: "Forepaw",
  40048. image: {
  40049. source: "./media/characters/sayko/forepaw.svg"
  40050. }
  40051. },
  40052. hindpaw: {
  40053. height: math.unit(8.8, "feet"),
  40054. name: "Hindpaw",
  40055. image: {
  40056. source: "./media/characters/sayko/hindpaw.svg"
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(35, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Colossus",
  40068. height: math.unit(100, "meters")
  40069. },
  40070. {
  40071. name: "\"Small\" Deity",
  40072. height: math.unit(1, "km")
  40073. },
  40074. {
  40075. name: "\"Large\" Deity",
  40076. height: math.unit(15, "km")
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(6, "feet"),
  40085. weight: math.unit(250, "lb"),
  40086. name: "Front",
  40087. image: {
  40088. source: "./media/characters/mukiro/front.svg",
  40089. extra: 1368/1310,
  40090. bottom: 34/1402
  40091. }
  40092. },
  40093. },
  40094. [
  40095. {
  40096. name: "Normal",
  40097. height: math.unit(6, "feet"),
  40098. default: true
  40099. },
  40100. ]
  40101. ))
  40102. characterMakers.push(() => makeCharacter(
  40103. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40104. {
  40105. front: {
  40106. height: math.unit(12 + 4/12, "feet"),
  40107. name: "Front",
  40108. image: {
  40109. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40110. extra: 1346/1311,
  40111. bottom: 65/1411
  40112. }
  40113. },
  40114. },
  40115. [
  40116. {
  40117. name: "Base",
  40118. height: math.unit(12 + 4/12, "feet"),
  40119. default: true
  40120. },
  40121. {
  40122. name: "Macro",
  40123. height: math.unit(150, "feet")
  40124. },
  40125. {
  40126. name: "Mega",
  40127. height: math.unit(2, "miles")
  40128. },
  40129. {
  40130. name: "Demi God",
  40131. height: math.unit(4, "AU")
  40132. },
  40133. {
  40134. name: "God Size",
  40135. height: math.unit(1, "universe")
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(3 + 3/12, "feet"),
  40144. weight: math.unit(88, "lb"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/trey/front.svg",
  40148. extra: 1815/1509,
  40149. bottom: 60/1875
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(3 + 3/12, "feet"),
  40157. default: true
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40163. {
  40164. front: {
  40165. height: math.unit(4, "meters"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/adelonda/front.svg",
  40169. extra: 1077/982,
  40170. bottom: 39/1116
  40171. }
  40172. },
  40173. back: {
  40174. height: math.unit(4, "meters"),
  40175. name: "Back",
  40176. image: {
  40177. source: "./media/characters/adelonda/back.svg",
  40178. extra: 1105/1003,
  40179. bottom: 25/1130
  40180. }
  40181. },
  40182. feral: {
  40183. height: math.unit(40/1.5, "meters"),
  40184. name: "Feral",
  40185. image: {
  40186. source: "./media/characters/adelonda/feral.svg",
  40187. extra: 597/271,
  40188. bottom: 387/984
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Normal",
  40195. height: math.unit(4, "meters"),
  40196. default: true
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40202. {
  40203. front: {
  40204. height: math.unit(8 + 4/12, "feet"),
  40205. weight: math.unit(670, "lb"),
  40206. name: "Front",
  40207. image: {
  40208. source: "./media/characters/acadiel/front.svg",
  40209. extra: 1901/1595,
  40210. bottom: 142/2043
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Normal",
  40217. height: math.unit(8 + 4/12, "feet"),
  40218. default: true
  40219. },
  40220. {
  40221. name: "Macro",
  40222. height: math.unit(200, "feet")
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(6 + 2/12, "feet"),
  40231. weight: math.unit(185, "lb"),
  40232. name: "Front",
  40233. image: {
  40234. source: "./media/characters/kayne-ein/front.svg",
  40235. extra: 1780/1560,
  40236. bottom: 81/1861
  40237. }
  40238. },
  40239. },
  40240. [
  40241. {
  40242. name: "Normal",
  40243. height: math.unit(6 + 2/12, "feet"),
  40244. default: true
  40245. },
  40246. {
  40247. name: "Transformation Stage",
  40248. height: math.unit(15, "feet")
  40249. },
  40250. {
  40251. name: "Macro",
  40252. height: math.unit(150, "feet")
  40253. },
  40254. {
  40255. name: "Earth's Shadow",
  40256. height: math.unit(6200, "miles")
  40257. },
  40258. {
  40259. name: "Universal Demon",
  40260. height: math.unit(28e9, "parsecs")
  40261. },
  40262. {
  40263. name: "Multiverse God",
  40264. height: math.unit(3, "multiverses")
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(5 + 5/12, "feet"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/fawn/front.svg",
  40276. extra: 1873/1731,
  40277. bottom: 95/1968
  40278. }
  40279. },
  40280. back: {
  40281. height: math.unit(5 + 5/12, "feet"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/fawn/back.svg",
  40285. extra: 1813/1700,
  40286. bottom: 14/1827
  40287. }
  40288. },
  40289. hoof: {
  40290. height: math.unit(1.45, "feet"),
  40291. name: "Hoof",
  40292. image: {
  40293. source: "./media/characters/fawn/hoof.svg"
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(5 + 5/12, "feet"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40307. {
  40308. front: {
  40309. height: math.unit(2 + 5/12, "feet"),
  40310. name: "Front",
  40311. image: {
  40312. source: "./media/characters/orion/front.svg",
  40313. extra: 1366/1304,
  40314. bottom: 43/1409
  40315. }
  40316. },
  40317. paw: {
  40318. height: math.unit(0.52, "feet"),
  40319. name: "Paw",
  40320. image: {
  40321. source: "./media/characters/orion/paw.svg"
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Normal",
  40328. height: math.unit(2 + 5/12, "feet"),
  40329. default: true
  40330. },
  40331. ]
  40332. ))
  40333. characterMakers.push(() => makeCharacter(
  40334. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40335. {
  40336. front: {
  40337. height: math.unit(5 + 10/12, "feet"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/vera/front.svg",
  40341. extra: 1680/1575,
  40342. bottom: 49/1729
  40343. }
  40344. },
  40345. back: {
  40346. height: math.unit(5 + 10/12, "feet"),
  40347. name: "Back",
  40348. image: {
  40349. source: "./media/characters/vera/back.svg",
  40350. extra: 1700/1588,
  40351. bottom: 18/1718
  40352. }
  40353. },
  40354. arcanine: {
  40355. height: math.unit(6 + 8/12, "feet"),
  40356. name: "Arcanine",
  40357. image: {
  40358. source: "./media/characters/vera/arcanine.svg",
  40359. extra: 1590/1511,
  40360. bottom: 71/1661
  40361. }
  40362. },
  40363. maw: {
  40364. height: math.unit(0.82, "feet"),
  40365. name: "Maw",
  40366. image: {
  40367. source: "./media/characters/vera/maw.svg"
  40368. }
  40369. },
  40370. mawArcanine: {
  40371. height: math.unit(0.97, "feet"),
  40372. name: "Maw (Arcanine)",
  40373. image: {
  40374. source: "./media/characters/vera/maw-arcanine.svg"
  40375. }
  40376. },
  40377. paw: {
  40378. height: math.unit(0.75, "feet"),
  40379. name: "Paw",
  40380. image: {
  40381. source: "./media/characters/vera/paw.svg"
  40382. }
  40383. },
  40384. pawprint: {
  40385. height: math.unit(0.52, "feet"),
  40386. name: "Pawprint",
  40387. image: {
  40388. source: "./media/characters/vera/pawprint.svg"
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(5 + 10/12, "feet"),
  40396. default: true
  40397. },
  40398. {
  40399. name: "Macro",
  40400. height: math.unit(75, "feet")
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(4, "feet"),
  40409. weight: math.unit(40, "lb"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/orvan-rabbit/front.svg",
  40413. extra: 1896/1642,
  40414. bottom: 29/1925
  40415. }
  40416. },
  40417. },
  40418. [
  40419. {
  40420. name: "Normal",
  40421. height: math.unit(4, "feet"),
  40422. default: true
  40423. },
  40424. ]
  40425. ))
  40426. characterMakers.push(() => makeCharacter(
  40427. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40428. {
  40429. front: {
  40430. height: math.unit(6, "feet"),
  40431. weight: math.unit(168, "lb"),
  40432. name: "Front",
  40433. image: {
  40434. source: "./media/characters/lisa/front.svg",
  40435. extra: 2065/1867,
  40436. bottom: 46/2111
  40437. }
  40438. },
  40439. back: {
  40440. height: math.unit(6, "feet"),
  40441. weight: math.unit(168, "lb"),
  40442. name: "Back",
  40443. image: {
  40444. source: "./media/characters/lisa/back.svg",
  40445. extra: 1982/1838,
  40446. bottom: 29/2011
  40447. }
  40448. },
  40449. maw: {
  40450. height: math.unit(0.81, "feet"),
  40451. name: "Maw",
  40452. image: {
  40453. source: "./media/characters/lisa/maw.svg"
  40454. }
  40455. },
  40456. paw: {
  40457. height: math.unit(0.9, "feet"),
  40458. name: "Paw",
  40459. image: {
  40460. source: "./media/characters/lisa/paw.svg"
  40461. }
  40462. },
  40463. caribousune: {
  40464. height: math.unit(7 + 2/12, "feet"),
  40465. weight: math.unit(268, "lb"),
  40466. name: "Caribousune",
  40467. image: {
  40468. source: "./media/characters/lisa/caribousune.svg",
  40469. extra: 1843/1633,
  40470. bottom: 29/1872
  40471. }
  40472. },
  40473. frontCaribousune: {
  40474. height: math.unit(7 + 2/12, "feet"),
  40475. weight: math.unit(268, "lb"),
  40476. name: "Front (Caribousune)",
  40477. image: {
  40478. source: "./media/characters/lisa/front-caribousune.svg",
  40479. extra: 1818/1638,
  40480. bottom: 52/1870
  40481. }
  40482. },
  40483. sideCaribousune: {
  40484. height: math.unit(7 + 2/12, "feet"),
  40485. weight: math.unit(268, "lb"),
  40486. name: "Side (Caribousune)",
  40487. image: {
  40488. source: "./media/characters/lisa/side-caribousune.svg",
  40489. extra: 1851/1635,
  40490. bottom: 16/1867
  40491. }
  40492. },
  40493. backCaribousune: {
  40494. height: math.unit(7 + 2/12, "feet"),
  40495. weight: math.unit(268, "lb"),
  40496. name: "Back (Caribousune)",
  40497. image: {
  40498. source: "./media/characters/lisa/back-caribousune.svg",
  40499. extra: 1801/1604,
  40500. bottom: 44/1845
  40501. }
  40502. },
  40503. caribou: {
  40504. height: math.unit(7 + 2/12, "feet"),
  40505. weight: math.unit(268, "lb"),
  40506. name: "Caribou",
  40507. image: {
  40508. source: "./media/characters/lisa/caribou.svg",
  40509. extra: 1843/1633,
  40510. bottom: 29/1872
  40511. }
  40512. },
  40513. frontCaribou: {
  40514. height: math.unit(7 + 2/12, "feet"),
  40515. weight: math.unit(268, "lb"),
  40516. name: "Front (Caribou)",
  40517. image: {
  40518. source: "./media/characters/lisa/front-caribou.svg",
  40519. extra: 1818/1638,
  40520. bottom: 52/1870
  40521. }
  40522. },
  40523. sideCaribou: {
  40524. height: math.unit(7 + 2/12, "feet"),
  40525. weight: math.unit(268, "lb"),
  40526. name: "Side (Caribou)",
  40527. image: {
  40528. source: "./media/characters/lisa/side-caribou.svg",
  40529. extra: 1851/1635,
  40530. bottom: 16/1867
  40531. }
  40532. },
  40533. backCaribou: {
  40534. height: math.unit(7 + 2/12, "feet"),
  40535. weight: math.unit(268, "lb"),
  40536. name: "Back (Caribou)",
  40537. image: {
  40538. source: "./media/characters/lisa/back-caribou.svg",
  40539. extra: 1801/1604,
  40540. bottom: 44/1845
  40541. }
  40542. },
  40543. mawCaribou: {
  40544. height: math.unit(1.45, "feet"),
  40545. name: "Maw (Caribou)",
  40546. image: {
  40547. source: "./media/characters/lisa/maw-caribou.svg"
  40548. }
  40549. },
  40550. mawCaribousune: {
  40551. height: math.unit(1.45, "feet"),
  40552. name: "Maw (Caribousune)",
  40553. image: {
  40554. source: "./media/characters/lisa/maw-caribousune.svg"
  40555. }
  40556. },
  40557. pawCaribousune: {
  40558. height: math.unit(1.61, "feet"),
  40559. name: "Paw (Caribou)",
  40560. image: {
  40561. source: "./media/characters/lisa/paw-caribousune.svg"
  40562. }
  40563. },
  40564. },
  40565. [
  40566. {
  40567. name: "Normal",
  40568. height: math.unit(6, "feet")
  40569. },
  40570. {
  40571. name: "God Size",
  40572. height: math.unit(72, "feet"),
  40573. default: true
  40574. },
  40575. {
  40576. name: "Towering",
  40577. height: math.unit(288, "feet")
  40578. },
  40579. {
  40580. name: "City Size",
  40581. height: math.unit(48384, "feet")
  40582. },
  40583. {
  40584. name: "Continental",
  40585. height: math.unit(4200, "miles")
  40586. },
  40587. {
  40588. name: "Planet Eater",
  40589. height: math.unit(42, "earths")
  40590. },
  40591. {
  40592. name: "Star Swallower",
  40593. height: math.unit(42, "solarradii")
  40594. },
  40595. {
  40596. name: "System Swallower",
  40597. height: math.unit(84000, "AU")
  40598. },
  40599. {
  40600. name: "Galaxy Gobbler",
  40601. height: math.unit(42, "galaxies")
  40602. },
  40603. {
  40604. name: "Universe Devourer",
  40605. height: math.unit(42, "universes")
  40606. },
  40607. {
  40608. name: "Multiverse Muncher",
  40609. height: math.unit(42, "multiverses")
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(36, "feet"),
  40618. name: "Front",
  40619. image: {
  40620. source: "./media/characters/shadow-rat/front.svg",
  40621. extra: 1845/1758,
  40622. bottom: 83/1928
  40623. }
  40624. },
  40625. },
  40626. [
  40627. {
  40628. name: "Macro",
  40629. height: math.unit(36, "feet"),
  40630. default: true
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40636. {
  40637. side: {
  40638. height: math.unit(8, "feet"),
  40639. weight: math.unit(2630, "lb"),
  40640. name: "Side",
  40641. image: {
  40642. source: "./media/characters/torallia/side.svg",
  40643. extra: 2164/2021,
  40644. bottom: 371/2535
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Mortal Interaction",
  40651. height: math.unit(8, "feet")
  40652. },
  40653. {
  40654. name: "Natural",
  40655. height: math.unit(24, "feet"),
  40656. default: true
  40657. },
  40658. {
  40659. name: "Giant",
  40660. height: math.unit(80, "feet")
  40661. },
  40662. {
  40663. name: "Kaiju",
  40664. height: math.unit(240, "feet")
  40665. },
  40666. {
  40667. name: "Macro",
  40668. height: math.unit(800, "feet")
  40669. },
  40670. {
  40671. name: "Macro+",
  40672. height: math.unit(2400, "feet")
  40673. },
  40674. {
  40675. name: "Macro++",
  40676. height: math.unit(8000, "feet")
  40677. },
  40678. {
  40679. name: "City-Crushing",
  40680. height: math.unit(24000, "feet")
  40681. },
  40682. {
  40683. name: "Mountain-Mashing",
  40684. height: math.unit(80000, "feet")
  40685. },
  40686. {
  40687. name: "District Demolisher",
  40688. height: math.unit(240000, "feet")
  40689. },
  40690. {
  40691. name: "Tri-County Terror",
  40692. height: math.unit(800000, "feet")
  40693. },
  40694. {
  40695. name: "State Smasher",
  40696. height: math.unit(2.4e6, "feet")
  40697. },
  40698. {
  40699. name: "Nation Nemesis",
  40700. height: math.unit(8e6, "feet")
  40701. },
  40702. {
  40703. name: "Continent Cracker",
  40704. height: math.unit(2.4e7, "feet")
  40705. },
  40706. {
  40707. name: "Planet-Pillaging",
  40708. height: math.unit(8e7, "feet")
  40709. },
  40710. {
  40711. name: "Earth-Eclipsing",
  40712. height: math.unit(2.4e8, "feet")
  40713. },
  40714. {
  40715. name: "Jovian-Jostling",
  40716. height: math.unit(8e8, "feet")
  40717. },
  40718. {
  40719. name: "Gas Giant Gulper",
  40720. height: math.unit(2.4e9, "feet")
  40721. },
  40722. {
  40723. name: "Astral Annihilator",
  40724. height: math.unit(8e9, "feet")
  40725. },
  40726. {
  40727. name: "Celestial Conqueror",
  40728. height: math.unit(2.4e10, "feet")
  40729. },
  40730. {
  40731. name: "Sol-Swallowing",
  40732. height: math.unit(8e10, "feet")
  40733. },
  40734. {
  40735. name: "Hunter of the Heavens",
  40736. height: math.unit(2.4e13, "feet")
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40742. {
  40743. front: {
  40744. height: math.unit(6 + 8/12, "feet"),
  40745. weight: math.unit(250, "kilograms"),
  40746. volume: math.unit(28, "liters"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/rebecca-pawlson/front.svg",
  40750. extra: 1737/1596,
  40751. bottom: 107/1844
  40752. }
  40753. },
  40754. back: {
  40755. height: math.unit(6 + 8/12, "feet"),
  40756. weight: math.unit(250, "kilograms"),
  40757. volume: math.unit(28, "liters"),
  40758. name: "Back",
  40759. image: {
  40760. source: "./media/characters/rebecca-pawlson/back.svg",
  40761. extra: 1702/1523,
  40762. bottom: 86/1788
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Normal",
  40769. height: math.unit(6 + 8/12, "feet")
  40770. },
  40771. {
  40772. name: "Mini Macro",
  40773. height: math.unit(10, "feet"),
  40774. default: true
  40775. },
  40776. {
  40777. name: "Macro",
  40778. height: math.unit(100, "feet")
  40779. },
  40780. {
  40781. name: "Mega Macro",
  40782. height: math.unit(2500, "feet")
  40783. },
  40784. {
  40785. name: "Giga Macro",
  40786. height: math.unit(50, "miles")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(7 + 6/12, "feet"),
  40795. weight: math.unit(600, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/moxie-nova/front.svg",
  40799. extra: 1734/1652,
  40800. bottom: 41/1775
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(7 + 6/12, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40814. {
  40815. goat: {
  40816. height: math.unit(4, "feet"),
  40817. weight: math.unit(180, "lb"),
  40818. name: "Goat",
  40819. image: {
  40820. source: "./media/characters/tiffany/goat.svg",
  40821. extra: 1845/1595,
  40822. bottom: 106/1951
  40823. }
  40824. },
  40825. front: {
  40826. height: math.unit(5, "feet"),
  40827. weight: math.unit(150, "lb"),
  40828. name: "Foxcoon",
  40829. image: {
  40830. source: "./media/characters/tiffany/foxcoon.svg",
  40831. extra: 1941/1845,
  40832. bottom: 58/1999
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(5, "feet"),
  40840. default: true
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40846. {
  40847. front: {
  40848. height: math.unit(8, "feet"),
  40849. weight: math.unit(300, "lb"),
  40850. name: "Front",
  40851. image: {
  40852. source: "./media/characters/raxinath/front.svg",
  40853. extra: 1407/1309,
  40854. bottom: 39/1446
  40855. }
  40856. },
  40857. back: {
  40858. height: math.unit(8, "feet"),
  40859. weight: math.unit(300, "lb"),
  40860. name: "Back",
  40861. image: {
  40862. source: "./media/characters/raxinath/back.svg",
  40863. extra: 1405/1315,
  40864. bottom: 9/1414
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Speck",
  40871. height: math.unit(0.5, "nm")
  40872. },
  40873. {
  40874. name: "Micro",
  40875. height: math.unit(3, "inches")
  40876. },
  40877. {
  40878. name: "Kobold",
  40879. height: math.unit(3, "feet")
  40880. },
  40881. {
  40882. name: "Normal",
  40883. height: math.unit(8, "feet"),
  40884. default: true
  40885. },
  40886. {
  40887. name: "Giant",
  40888. height: math.unit(50, "feet")
  40889. },
  40890. {
  40891. name: "Macro",
  40892. height: math.unit(1000, "feet")
  40893. },
  40894. {
  40895. name: "Megamacro",
  40896. height: math.unit(1, "mile")
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(10, "feet"),
  40905. weight: math.unit(1442, "lb"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/mal-dragon/front.svg",
  40909. extra: 1515/1444,
  40910. bottom: 113/1628
  40911. }
  40912. },
  40913. back: {
  40914. height: math.unit(10, "feet"),
  40915. weight: math.unit(1442, "lb"),
  40916. name: "Back",
  40917. image: {
  40918. source: "./media/characters/mal-dragon/back.svg",
  40919. extra: 1527/1434,
  40920. bottom: 25/1552
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Mortal Interaction",
  40927. height: math.unit(10, "feet"),
  40928. default: true
  40929. },
  40930. {
  40931. name: "Large",
  40932. height: math.unit(30, "feet")
  40933. },
  40934. {
  40935. name: "Kaiju",
  40936. height: math.unit(300, "feet")
  40937. },
  40938. {
  40939. name: "Megamacro",
  40940. height: math.unit(10000, "feet")
  40941. },
  40942. {
  40943. name: "Continent Cracker",
  40944. height: math.unit(30000000, "feet")
  40945. },
  40946. {
  40947. name: "Sol-Swallowing",
  40948. height: math.unit(1e11, "feet")
  40949. },
  40950. {
  40951. name: "Light Universal",
  40952. height: math.unit(5, "universes")
  40953. },
  40954. {
  40955. name: "Universe Atoms",
  40956. height: math.unit(1.829e9, "universes")
  40957. },
  40958. {
  40959. name: "Light Multiversal",
  40960. height: math.unit(5, "multiverses")
  40961. },
  40962. {
  40963. name: "Multiverse Atoms",
  40964. height: math.unit(1.829e9, "multiverses")
  40965. },
  40966. {
  40967. name: "Fabric of Time",
  40968. height: math.unit(1e262, "multiverses")
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(9, "feet"),
  40977. weight: math.unit(1050, "lb"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/tabitha/front.svg",
  40981. extra: 2083/1994,
  40982. bottom: 68/2151
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Baseline",
  40989. height: math.unit(9, "feet"),
  40990. default: true
  40991. },
  40992. {
  40993. name: "Giant",
  40994. height: math.unit(90, "feet")
  40995. },
  40996. {
  40997. name: "Macro",
  40998. height: math.unit(900, "feet")
  40999. },
  41000. {
  41001. name: "Megamacro",
  41002. height: math.unit(9000, "feet")
  41003. },
  41004. {
  41005. name: "City-Crushing",
  41006. height: math.unit(27000, "feet")
  41007. },
  41008. {
  41009. name: "Mountain-Mashing",
  41010. height: math.unit(90000, "feet")
  41011. },
  41012. {
  41013. name: "Nation Nemesis",
  41014. height: math.unit(9e6, "feet")
  41015. },
  41016. {
  41017. name: "Continent Cracker",
  41018. height: math.unit(27e6, "feet")
  41019. },
  41020. {
  41021. name: "Earth-Eclipsing",
  41022. height: math.unit(2.7e8, "feet")
  41023. },
  41024. {
  41025. name: "Gas Giant Gulper",
  41026. height: math.unit(2.7e9, "feet")
  41027. },
  41028. {
  41029. name: "Sol-Swallowing",
  41030. height: math.unit(9e10, "feet")
  41031. },
  41032. {
  41033. name: "Galaxy Gulper",
  41034. height: math.unit(9, "galaxies")
  41035. },
  41036. {
  41037. name: "Cosmos Churner",
  41038. height: math.unit(9, "universes")
  41039. },
  41040. ]
  41041. ))
  41042. characterMakers.push(() => makeCharacter(
  41043. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41044. {
  41045. front: {
  41046. height: math.unit(160, "cm"),
  41047. weight: math.unit(55, "kg"),
  41048. name: "Front",
  41049. image: {
  41050. source: "./media/characters/tow/front.svg",
  41051. extra: 1751/1722,
  41052. bottom: 74/1825
  41053. }
  41054. },
  41055. },
  41056. [
  41057. {
  41058. name: "Norm",
  41059. height: math.unit(160, "cm")
  41060. },
  41061. {
  41062. name: "Casual",
  41063. height: math.unit(3200, "m"),
  41064. default: true
  41065. },
  41066. {
  41067. name: "Show-Off",
  41068. height: math.unit(160, "km")
  41069. },
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41074. {
  41075. front: {
  41076. height: math.unit(7 + 11/12, "feet"),
  41077. weight: math.unit(342.8, "lb"),
  41078. name: "Front",
  41079. image: {
  41080. source: "./media/characters/vivian-orca-dragon/front.svg",
  41081. extra: 1890/1865,
  41082. bottom: 28/1918
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Micro",
  41089. height: math.unit(5, "inches")
  41090. },
  41091. {
  41092. name: "Normal",
  41093. height: math.unit(7 + 11/12, "feet"),
  41094. default: true
  41095. },
  41096. {
  41097. name: "Macro",
  41098. height: math.unit(395 + 7/12, "feet")
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41104. {
  41105. side: {
  41106. height: math.unit(10, "feet"),
  41107. weight: math.unit(1442, "lb"),
  41108. name: "Side",
  41109. image: {
  41110. source: "./media/characters/lotherakon/side.svg",
  41111. extra: 1604/1497,
  41112. bottom: 89/1693
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Mortal Interaction",
  41119. height: math.unit(10, "feet")
  41120. },
  41121. {
  41122. name: "Large",
  41123. height: math.unit(30, "feet"),
  41124. default: true
  41125. },
  41126. {
  41127. name: "Giant",
  41128. height: math.unit(100, "feet")
  41129. },
  41130. {
  41131. name: "Kaiju",
  41132. height: math.unit(300, "feet")
  41133. },
  41134. {
  41135. name: "Macro",
  41136. height: math.unit(1000, "feet")
  41137. },
  41138. {
  41139. name: "Macro+",
  41140. height: math.unit(3000, "feet")
  41141. },
  41142. {
  41143. name: "Megamacro",
  41144. height: math.unit(10000, "feet")
  41145. },
  41146. {
  41147. name: "City-Crushing",
  41148. height: math.unit(30000, "feet")
  41149. },
  41150. {
  41151. name: "Continent Cracker",
  41152. height: math.unit(30e6, "feet")
  41153. },
  41154. {
  41155. name: "Earth Eclipsing",
  41156. height: math.unit(3e8, "feet")
  41157. },
  41158. {
  41159. name: "Gas Giant Gulper",
  41160. height: math.unit(3e9, "feet")
  41161. },
  41162. {
  41163. name: "Sol-Swallowing",
  41164. height: math.unit(1e11, "feet")
  41165. },
  41166. {
  41167. name: "System Swallower",
  41168. height: math.unit(3e14, "feet")
  41169. },
  41170. {
  41171. name: "Galaxy Gulper",
  41172. height: math.unit(10, "galaxies")
  41173. },
  41174. {
  41175. name: "Light Universal",
  41176. height: math.unit(5, "universes")
  41177. },
  41178. {
  41179. name: "Universe Palm",
  41180. height: math.unit(20, "universes")
  41181. },
  41182. {
  41183. name: "Light Multiversal",
  41184. height: math.unit(5, "multiverses")
  41185. },
  41186. {
  41187. name: "Multiverse Palm",
  41188. height: math.unit(20, "multiverses")
  41189. },
  41190. {
  41191. name: "Inferno Incarnate",
  41192. height: math.unit(1e7, "multiverses")
  41193. },
  41194. ]
  41195. ))
  41196. characterMakers.push(() => makeCharacter(
  41197. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41198. {
  41199. front: {
  41200. height: math.unit(8, "feet"),
  41201. weight: math.unit(1200, "lb"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/malithee/front.svg",
  41205. extra: 1675/1640,
  41206. bottom: 162/1837
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Mortal Interaction",
  41213. height: math.unit(8, "feet"),
  41214. default: true
  41215. },
  41216. {
  41217. name: "Large",
  41218. height: math.unit(24, "feet")
  41219. },
  41220. {
  41221. name: "Kaiju",
  41222. height: math.unit(240, "feet")
  41223. },
  41224. {
  41225. name: "Megamacro",
  41226. height: math.unit(8000, "feet")
  41227. },
  41228. {
  41229. name: "Continent Cracker",
  41230. height: math.unit(24e6, "feet")
  41231. },
  41232. {
  41233. name: "Earth-Eclipsing",
  41234. height: math.unit(2.4e8, "feet")
  41235. },
  41236. {
  41237. name: "Sol-Swallowing",
  41238. height: math.unit(8e10, "feet")
  41239. },
  41240. {
  41241. name: "Galaxy Gulper",
  41242. height: math.unit(8, "galaxies")
  41243. },
  41244. {
  41245. name: "Light Universal",
  41246. height: math.unit(4, "universes")
  41247. },
  41248. {
  41249. name: "Universe Atoms",
  41250. height: math.unit(1.829e9, "universes")
  41251. },
  41252. {
  41253. name: "Light Multiversal",
  41254. height: math.unit(4, "multiverses")
  41255. },
  41256. {
  41257. name: "Multiverse Atoms",
  41258. height: math.unit(1.829e9, "multiverses")
  41259. },
  41260. {
  41261. name: "Nigh-Omnipresence",
  41262. height: math.unit(8e261, "multiverses")
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(10, "feet"),
  41271. weight: math.unit(1500, "lb"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/miles-thestia/front.svg",
  41275. extra: 1812/1727,
  41276. bottom: 86/1898
  41277. }
  41278. },
  41279. back: {
  41280. height: math.unit(10, "feet"),
  41281. weight: math.unit(1500, "lb"),
  41282. name: "Back",
  41283. image: {
  41284. source: "./media/characters/miles-thestia/back.svg",
  41285. extra: 1799/1690,
  41286. bottom: 47/1846
  41287. }
  41288. },
  41289. frontNsfw: {
  41290. height: math.unit(10, "feet"),
  41291. weight: math.unit(1500, "lb"),
  41292. name: "Front (NSFW)",
  41293. image: {
  41294. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41295. extra: 1812/1727,
  41296. bottom: 86/1898
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Mini-Macro",
  41303. height: math.unit(10, "feet"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(25, "feet"),
  41313. name: "Front",
  41314. image: {
  41315. source: "./media/characters/titan-s-wulf/front.svg",
  41316. extra: 1560/1484,
  41317. bottom: 76/1636
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Smallest",
  41324. height: math.unit(25, "feet"),
  41325. default: true
  41326. },
  41327. {
  41328. name: "Normal",
  41329. height: math.unit(200, "feet")
  41330. },
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(200000, "feet")
  41334. },
  41335. {
  41336. name: "Multiversal Original",
  41337. height: math.unit(10000, "multiverses")
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(8, "feet"),
  41346. weight: math.unit(553, "lb"),
  41347. name: "Front",
  41348. image: {
  41349. source: "./media/characters/tawendeh/front.svg",
  41350. extra: 2365/2268,
  41351. bottom: 83/2448
  41352. }
  41353. },
  41354. frontClothed: {
  41355. height: math.unit(8, "feet"),
  41356. weight: math.unit(553, "lb"),
  41357. name: "Front (Clothed)",
  41358. image: {
  41359. source: "./media/characters/tawendeh/front-clothed.svg",
  41360. extra: 2365/2268,
  41361. bottom: 83/2448
  41362. }
  41363. },
  41364. back: {
  41365. height: math.unit(8, "feet"),
  41366. weight: math.unit(553, "lb"),
  41367. name: "Back",
  41368. image: {
  41369. source: "./media/characters/tawendeh/back.svg",
  41370. extra: 2397/2294,
  41371. bottom: 42/2439
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Mortal Interaction",
  41378. height: math.unit(8, "feet"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Giant",
  41383. height: math.unit(80, "feet")
  41384. },
  41385. {
  41386. name: "Macro",
  41387. height: math.unit(800, "feet")
  41388. },
  41389. {
  41390. name: "Megamacro",
  41391. height: math.unit(8000, "feet")
  41392. },
  41393. {
  41394. name: "City-Crushing",
  41395. height: math.unit(24000, "feet")
  41396. },
  41397. {
  41398. name: "Mountain-Mashing",
  41399. height: math.unit(80000, "feet")
  41400. },
  41401. {
  41402. name: "Nation Nemesis",
  41403. height: math.unit(8e6, "feet")
  41404. },
  41405. {
  41406. name: "Continent Cracker",
  41407. height: math.unit(24e6, "feet")
  41408. },
  41409. {
  41410. name: "Earth-Eclipsing",
  41411. height: math.unit(2.4e8, "feet")
  41412. },
  41413. {
  41414. name: "Gas Giant Gulper",
  41415. height: math.unit(2.4e9, "feet")
  41416. },
  41417. {
  41418. name: "Sol-Swallowing",
  41419. height: math.unit(8e10, "feet")
  41420. },
  41421. {
  41422. name: "Galaxy Gulper",
  41423. height: math.unit(8, "galaxies")
  41424. },
  41425. {
  41426. name: "Cosmos Churner",
  41427. height: math.unit(8, "universes")
  41428. },
  41429. {
  41430. name: "Omnipotent Otter",
  41431. height: math.unit(80, "universes")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(2.6, "meters"),
  41440. weight: math.unit(900, "kg"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/neesha/front.svg",
  41444. extra: 1803/1653,
  41445. bottom: 128/1931
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(2.6, "meters"),
  41453. default: true
  41454. },
  41455. {
  41456. name: "Macro",
  41457. height: math.unit(50, "meters")
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41463. {
  41464. front: {
  41465. height: math.unit(5, "feet"),
  41466. weight: math.unit(185, "lb"),
  41467. name: "Front",
  41468. image: {
  41469. source: "./media/characters/kyera/front.svg",
  41470. extra: 1875/1790,
  41471. bottom: 96/1971
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(5, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(7 + 6/12, "feet"),
  41488. weight: math.unit(540, "lb"),
  41489. name: "Front",
  41490. image: {
  41491. source: "./media/characters/yuko/front.svg",
  41492. extra: 1282/1222,
  41493. bottom: 101/1383
  41494. }
  41495. },
  41496. frontClothed: {
  41497. height: math.unit(7 + 6/12, "feet"),
  41498. weight: math.unit(540, "lb"),
  41499. name: "Front (Clothed)",
  41500. image: {
  41501. source: "./media/characters/yuko/front-clothed.svg",
  41502. extra: 1282/1222,
  41503. bottom: 101/1383
  41504. }
  41505. },
  41506. },
  41507. [
  41508. {
  41509. name: "Normal",
  41510. height: math.unit(7 + 6/12, "feet"),
  41511. default: true
  41512. },
  41513. {
  41514. name: "Macro",
  41515. height: math.unit(26 + 9/12, "feet")
  41516. },
  41517. {
  41518. name: "Megamacro",
  41519. height: math.unit(300, "feet")
  41520. },
  41521. {
  41522. name: "Gigamacro",
  41523. height: math.unit(5000, "feet")
  41524. },
  41525. {
  41526. name: "Planetary",
  41527. height: math.unit(10000, "miles")
  41528. },
  41529. ]
  41530. ))
  41531. characterMakers.push(() => makeCharacter(
  41532. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41533. {
  41534. front: {
  41535. height: math.unit(8 + 2/12, "feet"),
  41536. weight: math.unit(600, "lb"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/deam-nitrel/front.svg",
  41540. extra: 1308/1234,
  41541. bottom: 125/1433
  41542. }
  41543. },
  41544. },
  41545. [
  41546. {
  41547. name: "Normal",
  41548. height: math.unit(8 + 2/12, "feet"),
  41549. default: true
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41555. {
  41556. front: {
  41557. height: math.unit(6.1, "feet"),
  41558. weight: math.unit(180, "lb"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/skyress/front.svg",
  41562. extra: 1045/915,
  41563. bottom: 28/1073
  41564. }
  41565. },
  41566. maw: {
  41567. height: math.unit(1, "feet"),
  41568. name: "Maw",
  41569. image: {
  41570. source: "./media/characters/skyress/maw.svg"
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Normal",
  41577. height: math.unit(6.1, "feet"),
  41578. default: true
  41579. },
  41580. {
  41581. name: "Macro",
  41582. height: math.unit(200, "feet")
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(4 + 2/12, "feet"),
  41591. weight: math.unit(40, "kg"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/amethyst-jones/front.svg",
  41595. extra: 1220/1150,
  41596. bottom: 101/1321
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(4 + 2/12, "feet"),
  41604. default: true
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(1.7, "m"),
  41613. weight: math.unit(135, "lb"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/jade/front.svg",
  41617. extra: 1818/1767,
  41618. bottom: 32/1850
  41619. }
  41620. },
  41621. back: {
  41622. height: math.unit(1.7, "m"),
  41623. weight: math.unit(135, "lb"),
  41624. name: "Back",
  41625. image: {
  41626. source: "./media/characters/jade/back.svg",
  41627. extra: 1869/1809,
  41628. bottom: 35/1904
  41629. }
  41630. },
  41631. hand: {
  41632. height: math.unit(0.24, "m"),
  41633. name: "Hand",
  41634. image: {
  41635. source: "./media/characters/jade/hand.svg"
  41636. }
  41637. },
  41638. foot: {
  41639. height: math.unit(0.263, "m"),
  41640. name: "Foot",
  41641. image: {
  41642. source: "./media/characters/jade/foot.svg"
  41643. }
  41644. },
  41645. dick: {
  41646. height: math.unit(0.47, "m"),
  41647. name: "Dick",
  41648. image: {
  41649. source: "./media/characters/jade/dick.svg"
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Micro",
  41656. height: math.unit(22, "cm")
  41657. },
  41658. {
  41659. name: "Normal",
  41660. height: math.unit(1.7, "m"),
  41661. default: true
  41662. },
  41663. {
  41664. name: "Macro",
  41665. height: math.unit(152, "m")
  41666. },
  41667. ]
  41668. ))
  41669. characterMakers.push(() => makeCharacter(
  41670. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41671. {
  41672. front: {
  41673. height: math.unit(100, "miles"),
  41674. weight: math.unit(20000, "tons"),
  41675. name: "Front",
  41676. image: {
  41677. source: "./media/characters/cookie/front.svg",
  41678. extra: 1125/1070,
  41679. bottom: 30/1155
  41680. }
  41681. },
  41682. },
  41683. [
  41684. {
  41685. name: "Big",
  41686. height: math.unit(50, "feet")
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(100, "miles"),
  41691. default: true
  41692. },
  41693. {
  41694. name: "Megamacro",
  41695. height: math.unit(90000, "miles")
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(6, "feet"),
  41704. weight: math.unit(145, "lb"),
  41705. name: "Front",
  41706. image: {
  41707. source: "./media/characters/farzian/front.svg",
  41708. extra: 1902/1693,
  41709. bottom: 108/2010
  41710. }
  41711. },
  41712. },
  41713. [
  41714. {
  41715. name: "Macro",
  41716. height: math.unit(500, "feet"),
  41717. default: true
  41718. },
  41719. ]
  41720. ))
  41721. characterMakers.push(() => makeCharacter(
  41722. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41723. {
  41724. front: {
  41725. height: math.unit(3 + 6/12, "feet"),
  41726. weight: math.unit(50, "lb"),
  41727. name: "Front",
  41728. image: {
  41729. source: "./media/characters/kimberly-tilson/front.svg",
  41730. extra: 1400/1322,
  41731. bottom: 36/1436
  41732. }
  41733. },
  41734. back: {
  41735. height: math.unit(3 + 6/12, "feet"),
  41736. weight: math.unit(50, "lb"),
  41737. name: "Back",
  41738. image: {
  41739. source: "./media/characters/kimberly-tilson/back.svg",
  41740. extra: 1370/1307,
  41741. bottom: 20/1390
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(3 + 6/12, "feet"),
  41749. default: true
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41755. {
  41756. front: {
  41757. height: math.unit(1148, "feet"),
  41758. weight: math.unit(34057, "lb"),
  41759. name: "Front",
  41760. image: {
  41761. source: "./media/characters/harthos/front.svg",
  41762. extra: 1391/1339,
  41763. bottom: 13/1404
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Macro",
  41770. height: math.unit(1148, "feet"),
  41771. default: true
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41777. {
  41778. front: {
  41779. height: math.unit(15, "feet"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/hypatia/front.svg",
  41783. extra: 1653/1591,
  41784. bottom: 79/1732
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(15, "feet")
  41792. },
  41793. {
  41794. name: "Small",
  41795. height: math.unit(300, "feet")
  41796. },
  41797. {
  41798. name: "Macro",
  41799. height: math.unit(2500, "feet"),
  41800. default: true
  41801. },
  41802. {
  41803. name: "Mega Macro",
  41804. height: math.unit(1500, "miles")
  41805. },
  41806. {
  41807. name: "Giga Macro",
  41808. height: math.unit(1.5e6, "miles")
  41809. },
  41810. ]
  41811. ))
  41812. characterMakers.push(() => makeCharacter(
  41813. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41814. {
  41815. front: {
  41816. height: math.unit(6, "feet"),
  41817. weight: math.unit(200, "lb"),
  41818. name: "Front",
  41819. image: {
  41820. source: "./media/characters/wulver/front.svg",
  41821. extra: 1724/1632,
  41822. bottom: 130/1854
  41823. }
  41824. },
  41825. frontNsfw: {
  41826. height: math.unit(6, "feet"),
  41827. weight: math.unit(200, "lb"),
  41828. name: "Front (NSFW)",
  41829. image: {
  41830. source: "./media/characters/wulver/front-nsfw.svg",
  41831. extra: 1724/1632,
  41832. bottom: 130/1854
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Human-Sized",
  41839. height: math.unit(6, "feet")
  41840. },
  41841. {
  41842. name: "Normal",
  41843. height: math.unit(4, "meters"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Large",
  41848. height: math.unit(6, "m")
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(7, "feet"),
  41857. name: "Front",
  41858. image: {
  41859. source: "./media/characters/maru/front.svg",
  41860. extra: 1595/1570,
  41861. bottom: 0/1595
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(7, "feet"),
  41869. default: true
  41870. },
  41871. {
  41872. name: "Macro",
  41873. height: math.unit(700, "feet")
  41874. },
  41875. {
  41876. name: "Mega Macro",
  41877. height: math.unit(25, "miles")
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(6, "feet"),
  41886. weight: math.unit(170, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/xenon/front.svg",
  41890. extra: 1376/1305,
  41891. bottom: 56/1432
  41892. }
  41893. },
  41894. back: {
  41895. height: math.unit(6, "feet"),
  41896. weight: math.unit(170, "lb"),
  41897. name: "Back",
  41898. image: {
  41899. source: "./media/characters/xenon/back.svg",
  41900. extra: 1328/1259,
  41901. bottom: 95/1423
  41902. }
  41903. },
  41904. maw: {
  41905. height: math.unit(0.52, "feet"),
  41906. name: "Maw",
  41907. image: {
  41908. source: "./media/characters/xenon/maw.svg"
  41909. }
  41910. },
  41911. handLeft: {
  41912. height: math.unit(0.82 * 169 / 153, "feet"),
  41913. name: "Hand (Left)",
  41914. image: {
  41915. source: "./media/characters/xenon/hand-left.svg"
  41916. }
  41917. },
  41918. handRight: {
  41919. height: math.unit(0.82, "feet"),
  41920. name: "Hand (Right)",
  41921. image: {
  41922. source: "./media/characters/xenon/hand-right.svg"
  41923. }
  41924. },
  41925. footLeft: {
  41926. height: math.unit(1.13, "feet"),
  41927. name: "Foot (Left)",
  41928. image: {
  41929. source: "./media/characters/xenon/foot-left.svg"
  41930. }
  41931. },
  41932. footRight: {
  41933. height: math.unit(1.13 * 194 / 196, "feet"),
  41934. name: "Foot (Right)",
  41935. image: {
  41936. source: "./media/characters/xenon/foot-right.svg"
  41937. }
  41938. },
  41939. },
  41940. [
  41941. {
  41942. name: "Micro",
  41943. height: math.unit(0.8, "inches")
  41944. },
  41945. {
  41946. name: "Normal",
  41947. height: math.unit(6, "feet")
  41948. },
  41949. {
  41950. name: "Macro",
  41951. height: math.unit(50, "feet"),
  41952. default: true
  41953. },
  41954. {
  41955. name: "Macro+",
  41956. height: math.unit(250, "feet")
  41957. },
  41958. {
  41959. name: "Megamacro",
  41960. height: math.unit(1500, "feet")
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41966. {
  41967. front: {
  41968. height: math.unit(7 + 5/12, "feet"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/zane/front.svg",
  41972. extra: 1260/1203,
  41973. bottom: 94/1354
  41974. }
  41975. },
  41976. back: {
  41977. height: math.unit(5.05, "feet"),
  41978. name: "Back",
  41979. image: {
  41980. source: "./media/characters/zane/back.svg",
  41981. extra: 893/829,
  41982. bottom: 30/923
  41983. }
  41984. },
  41985. werewolf: {
  41986. height: math.unit(11, "feet"),
  41987. name: "Werewolf",
  41988. image: {
  41989. source: "./media/characters/zane/werewolf.svg",
  41990. extra: 1383/1323,
  41991. bottom: 89/1472
  41992. }
  41993. },
  41994. foot: {
  41995. height: math.unit(1.46, "feet"),
  41996. name: "Foot",
  41997. image: {
  41998. source: "./media/characters/zane/foot.svg"
  41999. }
  42000. },
  42001. footFront: {
  42002. height: math.unit(0.784, "feet"),
  42003. name: "Foot (Front)",
  42004. image: {
  42005. source: "./media/characters/zane/foot-front.svg"
  42006. }
  42007. },
  42008. dick: {
  42009. height: math.unit(1.95, "feet"),
  42010. name: "Dick",
  42011. image: {
  42012. source: "./media/characters/zane/dick.svg"
  42013. }
  42014. },
  42015. dickWerewolf: {
  42016. height: math.unit(3.77, "feet"),
  42017. name: "Dick (Werewolf)",
  42018. image: {
  42019. source: "./media/characters/zane/dick.svg"
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(7 + 5/12, "feet"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(6 + 2/12, "feet"),
  42036. weight: math.unit(284, "lb"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/benni-desparque/front.svg",
  42040. extra: 1353/1126,
  42041. bottom: 69/1422
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Civilian",
  42048. height: math.unit(6 + 2/12, "feet")
  42049. },
  42050. {
  42051. name: "Normal",
  42052. height: math.unit(98, "feet"),
  42053. default: true
  42054. },
  42055. {
  42056. name: "Kaiju Fighter",
  42057. height: math.unit(268, "feet")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(5, "feet"),
  42066. weight: math.unit(105, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/maxine/front.svg",
  42070. extra: 1386/1250,
  42071. bottom: 71/1457
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Normal",
  42078. height: math.unit(5, "feet"),
  42079. default: true
  42080. },
  42081. ]
  42082. ))
  42083. characterMakers.push(() => makeCharacter(
  42084. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42085. {
  42086. front: {
  42087. height: math.unit(11 + 7/12, "feet"),
  42088. weight: math.unit(9576, "lb"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/scaly/front.svg",
  42092. extra: 888/867,
  42093. bottom: 36/924
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(11 + 7/12, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42107. {
  42108. front: {
  42109. height: math.unit(6 + 3/12, "feet"),
  42110. name: "Front",
  42111. image: {
  42112. source: "./media/characters/saelria/front.svg",
  42113. extra: 1243/1138,
  42114. bottom: 46/1289
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Micro",
  42121. height: math.unit(6, "inches"),
  42122. },
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(6 + 3/12, "feet"),
  42126. default: true
  42127. },
  42128. {
  42129. name: "Macro",
  42130. height: math.unit(25, "feet")
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(80, "meters"),
  42139. weight: math.unit(7000, "tonnes"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/tef/front.svg",
  42143. extra: 2036/1991,
  42144. bottom: 54/2090
  42145. }
  42146. },
  42147. back: {
  42148. height: math.unit(80, "meters"),
  42149. weight: math.unit(7000, "tonnes"),
  42150. name: "Back",
  42151. image: {
  42152. source: "./media/characters/tef/back.svg",
  42153. extra: 2036/1991,
  42154. bottom: 54/2090
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Macro",
  42161. height: math.unit(80, "meters"),
  42162. default: true
  42163. },
  42164. ]
  42165. ))
  42166. characterMakers.push(() => makeCharacter(
  42167. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42168. {
  42169. front: {
  42170. height: math.unit(13, "feet"),
  42171. weight: math.unit(6, "tons"),
  42172. name: "Front",
  42173. image: {
  42174. source: "./media/characters/rover/front.svg",
  42175. extra: 1233/1156,
  42176. bottom: 50/1283
  42177. }
  42178. },
  42179. back: {
  42180. height: math.unit(13, "feet"),
  42181. weight: math.unit(6, "tons"),
  42182. name: "Back",
  42183. image: {
  42184. source: "./media/characters/rover/back.svg",
  42185. extra: 1327/1258,
  42186. bottom: 39/1366
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "Normal",
  42193. height: math.unit(13, "feet"),
  42194. default: true
  42195. },
  42196. {
  42197. name: "Macro",
  42198. height: math.unit(1300, "feet")
  42199. },
  42200. {
  42201. name: "Megamacro",
  42202. height: math.unit(1300, "miles")
  42203. },
  42204. {
  42205. name: "Gigamacro",
  42206. height: math.unit(1300000, "miles")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(6, "feet"),
  42215. weight: math.unit(150, "lb"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/ariz/front.svg",
  42219. extra: 1401/1346,
  42220. bottom: 5/1406
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Normal",
  42227. height: math.unit(10, "feet"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(6, "feet"),
  42237. weight: math.unit(140, "lb"),
  42238. name: "Front",
  42239. image: {
  42240. source: "./media/characters/sigrun/front.svg",
  42241. extra: 1418/1359,
  42242. bottom: 27/1445
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(35, "feet"),
  42250. default: true
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(6, "feet"),
  42259. weight: math.unit(150, "lb"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/numin/front.svg",
  42263. extra: 1433/1388,
  42264. bottom: 12/1445
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Macro",
  42271. height: math.unit(21.5, "km"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(6, "feet"),
  42281. weight: math.unit(463, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/melwa/front.svg",
  42285. extra: 1307/1248,
  42286. bottom: 93/1400
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Macro",
  42293. height: math.unit(50, "meters"),
  42294. default: true
  42295. },
  42296. ]
  42297. ))
  42298. characterMakers.push(() => makeCharacter(
  42299. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42300. {
  42301. front: {
  42302. height: math.unit(325, "feet"),
  42303. name: "Front",
  42304. image: {
  42305. source: "./media/characters/zorkaiju/front.svg",
  42306. extra: 1955/1814,
  42307. bottom: 40/1995
  42308. }
  42309. },
  42310. frontExtended: {
  42311. height: math.unit(325, "feet"),
  42312. name: "Front (Extended)",
  42313. image: {
  42314. source: "./media/characters/zorkaiju/front-extended.svg",
  42315. extra: 1955/1814,
  42316. bottom: 40/1995
  42317. }
  42318. },
  42319. side: {
  42320. height: math.unit(325, "feet"),
  42321. name: "Side",
  42322. image: {
  42323. source: "./media/characters/zorkaiju/side.svg",
  42324. extra: 1495/1396,
  42325. bottom: 17/1512
  42326. }
  42327. },
  42328. sideExtended: {
  42329. height: math.unit(325, "feet"),
  42330. name: "Side (Extended)",
  42331. image: {
  42332. source: "./media/characters/zorkaiju/side-extended.svg",
  42333. extra: 1495/1396,
  42334. bottom: 17/1512
  42335. }
  42336. },
  42337. back: {
  42338. height: math.unit(325, "feet"),
  42339. name: "Back",
  42340. image: {
  42341. source: "./media/characters/zorkaiju/back.svg",
  42342. extra: 1959/1821,
  42343. bottom: 31/1990
  42344. }
  42345. },
  42346. backExtended: {
  42347. height: math.unit(325, "feet"),
  42348. name: "Back (Extended)",
  42349. image: {
  42350. source: "./media/characters/zorkaiju/back-extended.svg",
  42351. extra: 1959/1821,
  42352. bottom: 31/1990
  42353. }
  42354. },
  42355. hand: {
  42356. height: math.unit(58.4, "feet"),
  42357. name: "Hand",
  42358. image: {
  42359. source: "./media/characters/zorkaiju/hand.svg"
  42360. }
  42361. },
  42362. handExtended: {
  42363. height: math.unit(61.4, "feet"),
  42364. name: "Hand (Extended)",
  42365. image: {
  42366. source: "./media/characters/zorkaiju/hand-extended.svg"
  42367. }
  42368. },
  42369. foot: {
  42370. height: math.unit(95, "feet"),
  42371. name: "Foot",
  42372. image: {
  42373. source: "./media/characters/zorkaiju/foot.svg"
  42374. }
  42375. },
  42376. leftArm: {
  42377. height: math.unit(59, "feet"),
  42378. name: "Left Arm",
  42379. image: {
  42380. source: "./media/characters/zorkaiju/left-arm.svg"
  42381. }
  42382. },
  42383. rightArm: {
  42384. height: math.unit(59, "feet"),
  42385. name: "Right Arm",
  42386. image: {
  42387. source: "./media/characters/zorkaiju/right-arm.svg"
  42388. }
  42389. },
  42390. leftArmExtended: {
  42391. height: math.unit(59 * 1.033546, "feet"),
  42392. name: "Left Arm (Extended)",
  42393. image: {
  42394. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42395. }
  42396. },
  42397. rightArmExtended: {
  42398. height: math.unit(59 * 1.0496, "feet"),
  42399. name: "Right Arm (Extended)",
  42400. image: {
  42401. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42402. }
  42403. },
  42404. tail: {
  42405. height: math.unit(104, "feet"),
  42406. name: "Tail",
  42407. image: {
  42408. source: "./media/characters/zorkaiju/tail.svg"
  42409. }
  42410. },
  42411. tailExtended: {
  42412. height: math.unit(104, "feet"),
  42413. name: "Tail (Extended)",
  42414. image: {
  42415. source: "./media/characters/zorkaiju/tail-extended.svg"
  42416. }
  42417. },
  42418. tailBottom: {
  42419. height: math.unit(104, "feet"),
  42420. name: "Tail Bottom",
  42421. image: {
  42422. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42423. }
  42424. },
  42425. crystal: {
  42426. height: math.unit(27.54, "feet"),
  42427. name: "Crystal",
  42428. image: {
  42429. source: "./media/characters/zorkaiju/crystal.svg"
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Kaiju",
  42436. height: math.unit(325, "feet"),
  42437. default: true
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(6 + 1/12, "feet"),
  42446. weight: math.unit(115, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/bailey-belfry/front.svg",
  42450. extra: 1240/1121,
  42451. bottom: 101/1341
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(6 + 1/12, "feet"),
  42459. default: true
  42460. },
  42461. ]
  42462. ))
  42463. characterMakers.push(() => makeCharacter(
  42464. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42465. {
  42466. side: {
  42467. height: math.unit(4, "meters"),
  42468. weight: math.unit(250, "kg"),
  42469. name: "Side",
  42470. image: {
  42471. source: "./media/characters/blacky/side.svg",
  42472. extra: 1027/919,
  42473. bottom: 43/1070
  42474. }
  42475. },
  42476. maw: {
  42477. height: math.unit(1, "meters"),
  42478. name: "Maw",
  42479. image: {
  42480. source: "./media/characters/blacky/maw.svg"
  42481. }
  42482. },
  42483. paw: {
  42484. height: math.unit(1, "meters"),
  42485. name: "Paw",
  42486. image: {
  42487. source: "./media/characters/blacky/paw.svg"
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Normal",
  42494. height: math.unit(4, "meters"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(170, "cm"),
  42504. weight: math.unit(66, "kg"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/thux-ei/front.svg",
  42508. extra: 1109/1011,
  42509. bottom: 8/1117
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(170, "cm"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(5, "feet"),
  42526. weight: math.unit(120, "lb"),
  42527. name: "Front",
  42528. image: {
  42529. source: "./media/characters/roxanne-voltaire/front.svg",
  42530. extra: 1901/1779,
  42531. bottom: 53/1954
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(5, "feet"),
  42539. default: true
  42540. },
  42541. {
  42542. name: "Giant",
  42543. height: math.unit(50, "feet")
  42544. },
  42545. {
  42546. name: "Titan",
  42547. height: math.unit(500, "feet")
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(5000, "feet")
  42552. },
  42553. {
  42554. name: "Megamacro",
  42555. height: math.unit(50000, "feet")
  42556. },
  42557. {
  42558. name: "Gigamacro",
  42559. height: math.unit(500000, "feet")
  42560. },
  42561. {
  42562. name: "Teramacro",
  42563. height: math.unit(5e6, "feet")
  42564. },
  42565. ]
  42566. ))
  42567. characterMakers.push(() => makeCharacter(
  42568. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42569. {
  42570. front: {
  42571. height: math.unit(6 + 2/12, "feet"),
  42572. name: "Front",
  42573. image: {
  42574. source: "./media/characters/squeaks/front.svg",
  42575. extra: 1823/1768,
  42576. bottom: 138/1961
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Micro",
  42583. height: math.unit(0.5, "inches")
  42584. },
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(6 + 2/12, "feet"),
  42588. default: true
  42589. },
  42590. {
  42591. name: "Macro",
  42592. height: math.unit(600, "feet")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42598. {
  42599. front: {
  42600. height: math.unit(1.72, "meters"),
  42601. name: "Front",
  42602. image: {
  42603. source: "./media/characters/archinger/front.svg",
  42604. extra: 1861/1675,
  42605. bottom: 125/1986
  42606. }
  42607. },
  42608. back: {
  42609. height: math.unit(1.72, "meters"),
  42610. name: "Back",
  42611. image: {
  42612. source: "./media/characters/archinger/back.svg",
  42613. extra: 1844/1701,
  42614. bottom: 104/1948
  42615. }
  42616. },
  42617. cock: {
  42618. height: math.unit(0.59, "feet"),
  42619. name: "Cock",
  42620. image: {
  42621. source: "./media/characters/archinger/cock.svg"
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Normal",
  42628. height: math.unit(1.72, "meters"),
  42629. default: true
  42630. },
  42631. {
  42632. name: "Macro",
  42633. height: math.unit(84, "meters")
  42634. },
  42635. {
  42636. name: "Macro+",
  42637. height: math.unit(112, "meters")
  42638. },
  42639. {
  42640. name: "Macro++",
  42641. height: math.unit(960, "meters")
  42642. },
  42643. {
  42644. name: "Macro+++",
  42645. height: math.unit(4, "km")
  42646. },
  42647. {
  42648. name: "Macro++++",
  42649. height: math.unit(48, "km")
  42650. },
  42651. {
  42652. name: "Macro+++++",
  42653. height: math.unit(4500, "km")
  42654. },
  42655. ]
  42656. ))
  42657. characterMakers.push(() => makeCharacter(
  42658. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42659. {
  42660. front: {
  42661. height: math.unit(5 + 5/12, "feet"),
  42662. name: "Front",
  42663. image: {
  42664. source: "./media/characters/alsnapz/front.svg",
  42665. extra: 1157/1065,
  42666. bottom: 42/1199
  42667. }
  42668. },
  42669. },
  42670. [
  42671. {
  42672. name: "Normal",
  42673. height: math.unit(5 + 5/12, "feet"),
  42674. default: true
  42675. },
  42676. ]
  42677. ))
  42678. characterMakers.push(() => makeCharacter(
  42679. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42680. {
  42681. side: {
  42682. height: math.unit(3.2, "earths"),
  42683. name: "Side",
  42684. image: {
  42685. source: "./media/characters/mag/side.svg",
  42686. extra: 1331/1008,
  42687. bottom: 52/1383
  42688. }
  42689. },
  42690. wing: {
  42691. height: math.unit(1.94, "earths"),
  42692. name: "Wing",
  42693. image: {
  42694. source: "./media/characters/mag/wing.svg"
  42695. }
  42696. },
  42697. dick: {
  42698. height: math.unit(1.8, "earths"),
  42699. name: "Dick",
  42700. image: {
  42701. source: "./media/characters/mag/dick.svg"
  42702. }
  42703. },
  42704. ass: {
  42705. height: math.unit(1.33, "earths"),
  42706. name: "Ass",
  42707. image: {
  42708. source: "./media/characters/mag/ass.svg"
  42709. }
  42710. },
  42711. head: {
  42712. height: math.unit(1.1, "earths"),
  42713. name: "Head",
  42714. image: {
  42715. source: "./media/characters/mag/head.svg"
  42716. }
  42717. },
  42718. maw: {
  42719. height: math.unit(1.62, "earths"),
  42720. name: "Maw",
  42721. image: {
  42722. source: "./media/characters/mag/maw.svg"
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Small",
  42729. height: math.unit(162, "feet")
  42730. },
  42731. {
  42732. name: "Normal",
  42733. height: math.unit(3.2, "earths"),
  42734. default: true
  42735. },
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42740. {
  42741. front: {
  42742. height: math.unit(512, "feet"),
  42743. weight: math.unit(63509, "tonnes"),
  42744. name: "Front",
  42745. image: {
  42746. source: "./media/characters/vorrel-harroc/front.svg",
  42747. extra: 1075/1063,
  42748. bottom: 62/1137
  42749. }
  42750. },
  42751. },
  42752. [
  42753. {
  42754. name: "Normal",
  42755. height: math.unit(10, "feet")
  42756. },
  42757. {
  42758. name: "Macro",
  42759. height: math.unit(512, "feet"),
  42760. default: true
  42761. },
  42762. {
  42763. name: "Megamacro",
  42764. height: math.unit(256, "miles")
  42765. },
  42766. {
  42767. name: "Gigamacro",
  42768. height: math.unit(4096, "miles")
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42774. {
  42775. side: {
  42776. height: math.unit(50, "feet"),
  42777. name: "Side",
  42778. image: {
  42779. source: "./media/characters/froimar/side.svg",
  42780. extra: 855/638,
  42781. bottom: 99/954
  42782. }
  42783. },
  42784. },
  42785. [
  42786. {
  42787. name: "Macro",
  42788. height: math.unit(50, "feet"),
  42789. default: true
  42790. },
  42791. ]
  42792. ))
  42793. characterMakers.push(() => makeCharacter(
  42794. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42795. {
  42796. front: {
  42797. height: math.unit(210, "miles"),
  42798. name: "Front",
  42799. image: {
  42800. source: "./media/characters/timothy/front.svg",
  42801. extra: 1007/943,
  42802. bottom: 62/1069
  42803. }
  42804. },
  42805. frontSkirt: {
  42806. height: math.unit(210, "miles"),
  42807. name: "Front (Skirt)",
  42808. image: {
  42809. source: "./media/characters/timothy/front-skirt.svg",
  42810. extra: 1007/943,
  42811. bottom: 62/1069
  42812. }
  42813. },
  42814. frontCoat: {
  42815. height: math.unit(210, "miles"),
  42816. name: "Front (Coat)",
  42817. image: {
  42818. source: "./media/characters/timothy/front-coat.svg",
  42819. extra: 1007/943,
  42820. bottom: 62/1069
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Macro",
  42827. height: math.unit(210, "miles"),
  42828. default: true
  42829. },
  42830. {
  42831. name: "Megamacro",
  42832. height: math.unit(210000, "miles")
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42838. {
  42839. front: {
  42840. height: math.unit(188, "feet"),
  42841. name: "Front",
  42842. image: {
  42843. source: "./media/characters/pyotr/front.svg",
  42844. extra: 1912/1826,
  42845. bottom: 18/1930
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Macro",
  42852. height: math.unit(188, "feet"),
  42853. default: true
  42854. },
  42855. {
  42856. name: "Megamacro",
  42857. height: math.unit(8, "miles")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42863. {
  42864. side: {
  42865. height: math.unit(10, "feet"),
  42866. weight: math.unit(4500, "lb"),
  42867. name: "Side",
  42868. image: {
  42869. source: "./media/characters/ackart/side.svg",
  42870. extra: 1776/1668,
  42871. bottom: 116/1892
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(10, "feet"),
  42879. default: true
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42885. {
  42886. side: {
  42887. height: math.unit(21, "feet"),
  42888. name: "Side",
  42889. image: {
  42890. source: "./media/characters/nolow/side.svg",
  42891. extra: 1484/1434,
  42892. bottom: 85/1569
  42893. }
  42894. },
  42895. sideErect: {
  42896. height: math.unit(21, "feet"),
  42897. name: "Side-erect",
  42898. image: {
  42899. source: "./media/characters/nolow/side-erect.svg",
  42900. extra: 1484/1434,
  42901. bottom: 85/1569
  42902. }
  42903. },
  42904. },
  42905. [
  42906. {
  42907. name: "Regular",
  42908. height: math.unit(12, "feet")
  42909. },
  42910. {
  42911. name: "Big Chee",
  42912. height: math.unit(21, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(7, "feet"),
  42922. weight: math.unit(250, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/nines/front.svg",
  42926. extra: 1741/1607,
  42927. bottom: 41/1782
  42928. }
  42929. },
  42930. side: {
  42931. height: math.unit(7, "feet"),
  42932. weight: math.unit(250, "lb"),
  42933. name: "Side",
  42934. image: {
  42935. source: "./media/characters/nines/side.svg",
  42936. extra: 1854/1735,
  42937. bottom: 93/1947
  42938. }
  42939. },
  42940. back: {
  42941. height: math.unit(7, "feet"),
  42942. weight: math.unit(250, "lb"),
  42943. name: "Back",
  42944. image: {
  42945. source: "./media/characters/nines/back.svg",
  42946. extra: 1748/1615,
  42947. bottom: 20/1768
  42948. }
  42949. },
  42950. },
  42951. [
  42952. {
  42953. name: "Megamacro",
  42954. height: math.unit(99, "km"),
  42955. default: true
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(5 + 10/12, "feet"),
  42964. weight: math.unit(210, "lb"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/zenith/front.svg",
  42968. extra: 1531/1452,
  42969. bottom: 198/1729
  42970. }
  42971. },
  42972. back: {
  42973. height: math.unit(5 + 10/12, "feet"),
  42974. weight: math.unit(210, "lb"),
  42975. name: "Back",
  42976. image: {
  42977. source: "./media/characters/zenith/back.svg",
  42978. extra: 1571/1487,
  42979. bottom: 75/1646
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(5 + 10/12, "feet"),
  42987. default: true
  42988. }
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(4, "feet"),
  42996. weight: math.unit(60, "lb"),
  42997. name: "Front",
  42998. image: {
  42999. source: "./media/characters/jasper/front.svg",
  43000. extra: 1450/1379,
  43001. bottom: 19/1469
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Normal",
  43008. height: math.unit(4, "feet"),
  43009. default: true
  43010. },
  43011. ]
  43012. ))
  43013. characterMakers.push(() => makeCharacter(
  43014. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43015. {
  43016. front: {
  43017. height: math.unit(6 + 5/12, "feet"),
  43018. weight: math.unit(290, "lb"),
  43019. name: "Front",
  43020. image: {
  43021. source: "./media/characters/tiberius-thyben/front.svg",
  43022. extra: 757/739,
  43023. bottom: 39/796
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Micro",
  43030. height: math.unit(1.5, "inches")
  43031. },
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(6 + 5/12, "feet"),
  43035. default: true
  43036. },
  43037. {
  43038. name: "Macro",
  43039. height: math.unit(300, "feet")
  43040. },
  43041. ]
  43042. ))
  43043. characterMakers.push(() => makeCharacter(
  43044. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43045. {
  43046. front: {
  43047. height: math.unit(5 + 6/12, "feet"),
  43048. weight: math.unit(60, "kg"),
  43049. name: "Front",
  43050. image: {
  43051. source: "./media/characters/sabre/front.svg",
  43052. extra: 738/671,
  43053. bottom: 27/765
  43054. }
  43055. },
  43056. },
  43057. [
  43058. {
  43059. name: "Teeny",
  43060. height: math.unit(2, "inches")
  43061. },
  43062. {
  43063. name: "Smol",
  43064. height: math.unit(8, "inches")
  43065. },
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(5 + 6/12, "feet"),
  43069. default: true
  43070. },
  43071. {
  43072. name: "Mini-Macro",
  43073. height: math.unit(15, "feet")
  43074. },
  43075. {
  43076. name: "Macro",
  43077. height: math.unit(50, "feet")
  43078. },
  43079. ]
  43080. ))
  43081. characterMakers.push(() => makeCharacter(
  43082. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43083. {
  43084. front: {
  43085. height: math.unit(6 + 4/12, "feet"),
  43086. weight: math.unit(170, "lb"),
  43087. name: "Front",
  43088. image: {
  43089. source: "./media/characters/charlie/front.svg",
  43090. extra: 1348/1228,
  43091. bottom: 15/1363
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Macro",
  43098. height: math.unit(1700, "meters"),
  43099. default: true
  43100. },
  43101. {
  43102. name: "MegaMacro",
  43103. height: math.unit(20400, "meters")
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(6 + 3/12, "feet"),
  43112. weight: math.unit(185, "lb"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/susan-grant/front.svg",
  43116. extra: 1351/1327,
  43117. bottom: 26/1377
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Normal",
  43124. height: math.unit(6 + 3/12, "feet"),
  43125. default: true
  43126. },
  43127. {
  43128. name: "Macro",
  43129. height: math.unit(225, "feet")
  43130. },
  43131. {
  43132. name: "Macro+",
  43133. height: math.unit(900, "feet")
  43134. },
  43135. {
  43136. name: "MegaMacro",
  43137. height: math.unit(14400, "feet")
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43143. {
  43144. front: {
  43145. height: math.unit(5 + 4/12, "feet"),
  43146. weight: math.unit(110, "lb"),
  43147. name: "Front",
  43148. image: {
  43149. source: "./media/characters/axel-isanov/front.svg",
  43150. extra: 1096/1065,
  43151. bottom: 13/1109
  43152. }
  43153. },
  43154. },
  43155. [
  43156. {
  43157. name: "Normal",
  43158. height: math.unit(5 + 4/12, "feet"),
  43159. default: true
  43160. },
  43161. ]
  43162. ))
  43163. characterMakers.push(() => makeCharacter(
  43164. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43165. {
  43166. front: {
  43167. height: math.unit(9, "feet"),
  43168. weight: math.unit(467, "lb"),
  43169. name: "Front",
  43170. image: {
  43171. source: "./media/characters/necahual/front.svg",
  43172. extra: 920/873,
  43173. bottom: 26/946
  43174. }
  43175. },
  43176. back: {
  43177. height: math.unit(9, "feet"),
  43178. weight: math.unit(467, "lb"),
  43179. name: "Back",
  43180. image: {
  43181. source: "./media/characters/necahual/back.svg",
  43182. extra: 930/884,
  43183. bottom: 16/946
  43184. }
  43185. },
  43186. frontUnderwear: {
  43187. height: math.unit(9, "feet"),
  43188. weight: math.unit(467, "lb"),
  43189. name: "Front (Underwear)",
  43190. image: {
  43191. source: "./media/characters/necahual/front-underwear.svg",
  43192. extra: 920/873,
  43193. bottom: 26/946
  43194. }
  43195. },
  43196. frontDressed: {
  43197. height: math.unit(9, "feet"),
  43198. weight: math.unit(467, "lb"),
  43199. name: "Front (Dressed)",
  43200. image: {
  43201. source: "./media/characters/necahual/front-dressed.svg",
  43202. extra: 920/873,
  43203. bottom: 26/946
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Comprsesed",
  43210. height: math.unit(9, "feet")
  43211. },
  43212. {
  43213. name: "Natural",
  43214. height: math.unit(15, "feet"),
  43215. default: true
  43216. },
  43217. {
  43218. name: "Boosted",
  43219. height: math.unit(50, "feet")
  43220. },
  43221. {
  43222. name: "Boosted+",
  43223. height: math.unit(150, "feet")
  43224. },
  43225. {
  43226. name: "Max",
  43227. height: math.unit(500, "feet")
  43228. },
  43229. ]
  43230. ))
  43231. characterMakers.push(() => makeCharacter(
  43232. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43233. {
  43234. front: {
  43235. height: math.unit(22 + 1/12, "feet"),
  43236. weight: math.unit(3200, "lb"),
  43237. name: "Front",
  43238. image: {
  43239. source: "./media/characters/theo-acacia/front.svg",
  43240. extra: 1796/1741,
  43241. bottom: 83/1879
  43242. }
  43243. },
  43244. frontUnderwear: {
  43245. height: math.unit(22 + 1/12, "feet"),
  43246. weight: math.unit(3200, "lb"),
  43247. name: "Front (Underwear)",
  43248. image: {
  43249. source: "./media/characters/theo-acacia/front-underwear.svg",
  43250. extra: 1796/1741,
  43251. bottom: 83/1879
  43252. }
  43253. },
  43254. frontNude: {
  43255. height: math.unit(22 + 1/12, "feet"),
  43256. weight: math.unit(3200, "lb"),
  43257. name: "Front (Nude)",
  43258. image: {
  43259. source: "./media/characters/theo-acacia/front-nude.svg",
  43260. extra: 1796/1741,
  43261. bottom: 83/1879
  43262. }
  43263. },
  43264. },
  43265. [
  43266. {
  43267. name: "Normal",
  43268. height: math.unit(22 + 1/12, "feet"),
  43269. default: true
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(20, "feet"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/astra/front.svg",
  43281. extra: 1850/1714,
  43282. bottom: 106/1956
  43283. }
  43284. },
  43285. frontUndressed: {
  43286. height: math.unit(20, "feet"),
  43287. name: "Front (Undressed)",
  43288. image: {
  43289. source: "./media/characters/astra/front-undressed.svg",
  43290. extra: 1926/1749,
  43291. bottom: 0/1926
  43292. }
  43293. },
  43294. hand: {
  43295. height: math.unit(1.53, "feet"),
  43296. name: "Hand",
  43297. image: {
  43298. source: "./media/characters/astra/hand.svg"
  43299. }
  43300. },
  43301. paw: {
  43302. height: math.unit(1.53, "feet"),
  43303. name: "Paw",
  43304. image: {
  43305. source: "./media/characters/astra/paw.svg"
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Smallest",
  43312. height: math.unit(20, "feet")
  43313. },
  43314. {
  43315. name: "Normal",
  43316. height: math.unit(1e9, "miles"),
  43317. default: true
  43318. },
  43319. {
  43320. name: "Larger",
  43321. height: math.unit(5, "multiverses")
  43322. },
  43323. {
  43324. name: "Largest",
  43325. height: math.unit(1e9, "multiverses")
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43331. {
  43332. front: {
  43333. height: math.unit(8, "feet"),
  43334. name: "Front",
  43335. image: {
  43336. source: "./media/characters/breanna/front.svg",
  43337. extra: 1912/1632,
  43338. bottom: 33/1945
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Smallest",
  43345. height: math.unit(8, "feet")
  43346. },
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(1, "mile"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Maximum",
  43354. height: math.unit(1500000000000, "lightyears")
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(5 + 11/12, "feet"),
  43363. weight: math.unit(155, "lb"),
  43364. name: "Front",
  43365. image: {
  43366. source: "./media/characters/cai/front.svg",
  43367. extra: 1823/1702,
  43368. bottom: 32/1855
  43369. }
  43370. },
  43371. back: {
  43372. height: math.unit(5 + 11/12, "feet"),
  43373. weight: math.unit(155, "lb"),
  43374. name: "Back",
  43375. image: {
  43376. source: "./media/characters/cai/back.svg",
  43377. extra: 1809/1708,
  43378. bottom: 31/1840
  43379. }
  43380. },
  43381. },
  43382. [
  43383. {
  43384. name: "Normal",
  43385. height: math.unit(5 + 11/12, "feet"),
  43386. default: true
  43387. },
  43388. {
  43389. name: "Big",
  43390. height: math.unit(15, "feet")
  43391. },
  43392. {
  43393. name: "Macro",
  43394. height: math.unit(200, "feet")
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(5 + 6/12, "feet"),
  43403. weight: math.unit(160, "lb"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43407. extra: 1227/1174,
  43408. bottom: 37/1264
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Macro",
  43415. height: math.unit(444, "meters"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(18 + 7/12, "feet"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/rex/front.svg",
  43428. extra: 1941/1807,
  43429. bottom: 66/2007
  43430. }
  43431. },
  43432. back: {
  43433. height: math.unit(18 + 7/12, "feet"),
  43434. name: "Back",
  43435. image: {
  43436. source: "./media/characters/rex/back.svg",
  43437. extra: 1937/1822,
  43438. bottom: 42/1979
  43439. }
  43440. },
  43441. boot: {
  43442. height: math.unit(3.45, "feet"),
  43443. name: "Boot",
  43444. image: {
  43445. source: "./media/characters/rex/boot.svg"
  43446. }
  43447. },
  43448. paw: {
  43449. height: math.unit(4.17, "feet"),
  43450. name: "Paw",
  43451. image: {
  43452. source: "./media/characters/rex/paw.svg"
  43453. }
  43454. },
  43455. head: {
  43456. height: math.unit(6.728, "feet"),
  43457. name: "Head",
  43458. image: {
  43459. source: "./media/characters/rex/head.svg"
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Nano",
  43466. height: math.unit(18 + 7/12, "feet")
  43467. },
  43468. {
  43469. name: "Micro",
  43470. height: math.unit(1.5, "megameters")
  43471. },
  43472. {
  43473. name: "Normal",
  43474. height: math.unit(440, "megameters"),
  43475. default: true
  43476. },
  43477. {
  43478. name: "Macro",
  43479. height: math.unit(2.5, "gigameters")
  43480. },
  43481. {
  43482. name: "Gigamacro",
  43483. height: math.unit(2, "galaxies")
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43489. {
  43490. side: {
  43491. height: math.unit(32, "feet"),
  43492. weight: math.unit(250000, "lb"),
  43493. name: "Side",
  43494. image: {
  43495. source: "./media/characters/silverwing/side.svg",
  43496. extra: 1100/1019,
  43497. bottom: 204/1304
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(32, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(6 + 6/12, "feet"),
  43514. weight: math.unit(350, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/tristan-hawthorne/front.svg",
  43518. extra: 1159/1124,
  43519. bottom: 37/1196
  43520. },
  43521. form: "labrador",
  43522. default: true
  43523. },
  43524. skunkFront: {
  43525. height: math.unit(4 + 6/12, "feet"),
  43526. weight: math.unit(120, "lb"),
  43527. name: "Front",
  43528. image: {
  43529. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43530. extra: 1609/1551,
  43531. bottom: 169/1778
  43532. },
  43533. form: "skunk",
  43534. default: true
  43535. },
  43536. },
  43537. [
  43538. {
  43539. name: "Normal",
  43540. height: math.unit(6 + 6/12, "feet"),
  43541. form: "labrador",
  43542. default: true
  43543. },
  43544. {
  43545. name: "Normal",
  43546. height: math.unit(4 + 6/12, "feet"),
  43547. form: "skunk",
  43548. default: true
  43549. },
  43550. ],
  43551. {
  43552. "labrador": {
  43553. name: "Labrador",
  43554. default: true
  43555. },
  43556. "skunk": {
  43557. name: "Skunk"
  43558. }
  43559. }
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43563. {
  43564. front: {
  43565. height: math.unit(5 + 11/12, "feet"),
  43566. weight: math.unit(190, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/mizu/front.svg",
  43570. extra: 1988/1788,
  43571. bottom: 14/2002
  43572. }
  43573. },
  43574. },
  43575. [
  43576. {
  43577. name: "Normal",
  43578. height: math.unit(5 + 11/12, "feet"),
  43579. default: true
  43580. },
  43581. ]
  43582. ))
  43583. characterMakers.push(() => makeCharacter(
  43584. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43585. {
  43586. front: {
  43587. height: math.unit(1.7, "feet"),
  43588. weight: math.unit(50, "lb"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/dechroma/front.svg",
  43592. extra: 1095/859,
  43593. bottom: 64/1159
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Normal",
  43600. height: math.unit(1.7, "feet"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43607. {
  43608. side: {
  43609. height: math.unit(30, "feet"),
  43610. name: "Side",
  43611. image: {
  43612. source: "./media/characters/veluren-thanazel/side.svg",
  43613. extra: 1611/633,
  43614. bottom: 118/1729
  43615. }
  43616. },
  43617. front: {
  43618. height: math.unit(30, "feet"),
  43619. name: "Front",
  43620. image: {
  43621. source: "./media/characters/veluren-thanazel/front.svg",
  43622. extra: 1486/636,
  43623. bottom: 238/1724
  43624. }
  43625. },
  43626. head: {
  43627. height: math.unit(21.4, "feet"),
  43628. name: "Head",
  43629. image: {
  43630. source: "./media/characters/veluren-thanazel/head.svg"
  43631. }
  43632. },
  43633. genitals: {
  43634. height: math.unit(19.4, "feet"),
  43635. name: "Genitals",
  43636. image: {
  43637. source: "./media/characters/veluren-thanazel/genitals.svg"
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Social",
  43644. height: math.unit(6, "feet")
  43645. },
  43646. {
  43647. name: "Play",
  43648. height: math.unit(12, "feet")
  43649. },
  43650. {
  43651. name: "True",
  43652. height: math.unit(30, "feet"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(7 + 6/12, "feet"),
  43662. weight: math.unit(500, "kg"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/arcturas/front.svg",
  43666. extra: 1700/1500,
  43667. bottom: 145/1845
  43668. }
  43669. },
  43670. },
  43671. [
  43672. {
  43673. name: "Normal",
  43674. height: math.unit(7 + 6/12, "feet"),
  43675. default: true
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43681. {
  43682. side: {
  43683. height: math.unit(6, "feet"),
  43684. weight: math.unit(2, "tons"),
  43685. name: "Side",
  43686. image: {
  43687. source: "./media/characters/vitaen/side.svg",
  43688. extra: 1157/617,
  43689. bottom: 122/1279
  43690. }
  43691. },
  43692. },
  43693. [
  43694. {
  43695. name: "Normal",
  43696. height: math.unit(6, "feet"),
  43697. default: true
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43703. {
  43704. front: {
  43705. height: math.unit(19, "feet"),
  43706. name: "Front",
  43707. image: {
  43708. source: "./media/characters/fia-dreamweaver/front.svg",
  43709. extra: 1630/1504,
  43710. bottom: 25/1655
  43711. }
  43712. },
  43713. },
  43714. [
  43715. {
  43716. name: "Normal",
  43717. height: math.unit(19, "feet"),
  43718. default: true
  43719. },
  43720. ]
  43721. ))
  43722. characterMakers.push(() => makeCharacter(
  43723. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43724. {
  43725. front: {
  43726. height: math.unit(5 + 4/12, "feet"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/artan/front.svg",
  43730. extra: 1618/1535,
  43731. bottom: 46/1664
  43732. }
  43733. },
  43734. back: {
  43735. height: math.unit(5 + 4/12, "feet"),
  43736. name: "Back",
  43737. image: {
  43738. source: "./media/characters/artan/back.svg",
  43739. extra: 1618/1543,
  43740. bottom: 31/1649
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(5 + 4/12, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43754. {
  43755. side: {
  43756. height: math.unit(182, "cm"),
  43757. weight: math.unit(1000, "lb"),
  43758. name: "Side",
  43759. image: {
  43760. source: "./media/characters/silver-dragon/side.svg",
  43761. extra: 710/287,
  43762. bottom: 88/798
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(182, "cm"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43776. {
  43777. side: {
  43778. height: math.unit(6 + 6/12, "feet"),
  43779. weight: math.unit(1.5, "tons"),
  43780. name: "Side",
  43781. image: {
  43782. source: "./media/characters/zephyr/side.svg",
  43783. extra: 1433/586,
  43784. bottom: 109/1542
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(6 + 6/12, "feet"),
  43792. default: true
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43798. {
  43799. side: {
  43800. height: math.unit(1, "feet"),
  43801. name: "Side",
  43802. image: {
  43803. source: "./media/characters/vixye/side.svg",
  43804. extra: 632/541,
  43805. bottom: 0/632
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(1, "feet"),
  43813. default: true
  43814. },
  43815. {
  43816. name: "True",
  43817. height: math.unit(1e15, "multiverses")
  43818. },
  43819. ]
  43820. ))
  43821. characterMakers.push(() => makeCharacter(
  43822. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43823. {
  43824. front: {
  43825. height: math.unit(8 + 2/12, "feet"),
  43826. weight: math.unit(650, "lb"),
  43827. name: "Front",
  43828. image: {
  43829. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43830. extra: 1174/1137,
  43831. bottom: 82/1256
  43832. }
  43833. },
  43834. back: {
  43835. height: math.unit(8 + 2/12, "feet"),
  43836. weight: math.unit(650, "lb"),
  43837. name: "Back",
  43838. image: {
  43839. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43840. extra: 1204/1157,
  43841. bottom: 46/1250
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Wildform",
  43848. height: math.unit(8 + 2/12, "feet"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43855. {
  43856. front: {
  43857. height: math.unit(18, "feet"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/cyphin/front.svg",
  43861. extra: 970/886,
  43862. bottom: 42/1012
  43863. }
  43864. },
  43865. back: {
  43866. height: math.unit(18, "feet"),
  43867. name: "Back",
  43868. image: {
  43869. source: "./media/characters/cyphin/back.svg",
  43870. extra: 1009/894,
  43871. bottom: 24/1033
  43872. }
  43873. },
  43874. head: {
  43875. height: math.unit(5.05, "feet"),
  43876. name: "Head",
  43877. image: {
  43878. source: "./media/characters/cyphin/head.svg"
  43879. }
  43880. },
  43881. tailbud: {
  43882. height: math.unit(5, "feet"),
  43883. name: "Tailbud",
  43884. image: {
  43885. source: "./media/characters/cyphin/tailbud.svg"
  43886. }
  43887. },
  43888. },
  43889. [
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43894. {
  43895. side: {
  43896. height: math.unit(10, "feet"),
  43897. weight: math.unit(6, "tons"),
  43898. name: "Side",
  43899. image: {
  43900. source: "./media/characters/raijin/side.svg",
  43901. extra: 1529/613,
  43902. bottom: 337/1866
  43903. }
  43904. },
  43905. },
  43906. [
  43907. {
  43908. name: "Normal",
  43909. height: math.unit(10, "feet"),
  43910. default: true
  43911. },
  43912. ]
  43913. ))
  43914. characterMakers.push(() => makeCharacter(
  43915. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43916. {
  43917. side: {
  43918. height: math.unit(9, "feet"),
  43919. name: "Side",
  43920. image: {
  43921. source: "./media/characters/nilghais/side.svg",
  43922. extra: 1047/744,
  43923. bottom: 91/1138
  43924. }
  43925. },
  43926. head: {
  43927. height: math.unit(3.14, "feet"),
  43928. name: "Head",
  43929. image: {
  43930. source: "./media/characters/nilghais/head.svg"
  43931. }
  43932. },
  43933. mouth: {
  43934. height: math.unit(4.6, "feet"),
  43935. name: "Mouth",
  43936. image: {
  43937. source: "./media/characters/nilghais/mouth.svg"
  43938. }
  43939. },
  43940. wings: {
  43941. height: math.unit(24, "feet"),
  43942. name: "Wings",
  43943. image: {
  43944. source: "./media/characters/nilghais/wings.svg"
  43945. }
  43946. },
  43947. ass: {
  43948. height: math.unit(6.12, "feet"),
  43949. name: "Ass",
  43950. image: {
  43951. source: "./media/characters/nilghais/ass.svg"
  43952. }
  43953. },
  43954. },
  43955. [
  43956. {
  43957. name: "Normal",
  43958. height: math.unit(9, "feet"),
  43959. default: true
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43965. {
  43966. regular: {
  43967. height: math.unit(16 + 2/12, "feet"),
  43968. weight: math.unit(2300, "lb"),
  43969. name: "Regular",
  43970. image: {
  43971. source: "./media/characters/zolgar/regular.svg",
  43972. extra: 1246/1004,
  43973. bottom: 124/1370
  43974. }
  43975. },
  43976. boxers: {
  43977. height: math.unit(16 + 2/12, "feet"),
  43978. weight: math.unit(2300, "lb"),
  43979. name: "Boxers",
  43980. image: {
  43981. source: "./media/characters/zolgar/boxers.svg",
  43982. extra: 1246/1004,
  43983. bottom: 124/1370
  43984. }
  43985. },
  43986. armored: {
  43987. height: math.unit(16 + 2/12, "feet"),
  43988. weight: math.unit(2300, "lb"),
  43989. name: "Armored",
  43990. image: {
  43991. source: "./media/characters/zolgar/armored.svg",
  43992. extra: 1246/1004,
  43993. bottom: 124/1370
  43994. }
  43995. },
  43996. goth: {
  43997. height: math.unit(16 + 2/12, "feet"),
  43998. weight: math.unit(2300, "lb"),
  43999. name: "Goth",
  44000. image: {
  44001. source: "./media/characters/zolgar/goth.svg",
  44002. extra: 1246/1004,
  44003. bottom: 124/1370
  44004. }
  44005. },
  44006. },
  44007. [
  44008. {
  44009. name: "Shrunken Down",
  44010. height: math.unit(9 + 2/12, "feet")
  44011. },
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(16 + 2/12, "feet"),
  44015. default: true
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44021. {
  44022. front: {
  44023. height: math.unit(6, "feet"),
  44024. weight: math.unit(168, "lb"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/luca/front.svg",
  44028. extra: 841/667,
  44029. bottom: 102/943
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Normal",
  44036. height: math.unit(6, "feet"),
  44037. default: true
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44043. {
  44044. side: {
  44045. height: math.unit(7 + 3/12, "feet"),
  44046. weight: math.unit(312, "lb"),
  44047. name: "Side",
  44048. image: {
  44049. source: "./media/characters/zezo/side.svg",
  44050. extra: 1192/1067,
  44051. bottom: 63/1255
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(7 + 3/12, "feet"),
  44059. default: true
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(5 + 5/12, "feet"),
  44068. weight: math.unit(170, "lb"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/mayso/front.svg",
  44072. extra: 1215/1108,
  44073. bottom: 16/1231
  44074. }
  44075. },
  44076. },
  44077. [
  44078. {
  44079. name: "Normal",
  44080. height: math.unit(5 + 5/12, "feet"),
  44081. default: true
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44087. {
  44088. front: {
  44089. height: math.unit(4 + 3/12, "feet"),
  44090. weight: math.unit(80, "lb"),
  44091. name: "Front",
  44092. image: {
  44093. source: "./media/characters/hess/front.svg",
  44094. extra: 1200/1123,
  44095. bottom: 16/1216
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(4 + 3/12, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44109. {
  44110. front: {
  44111. height: math.unit(1.9, "meters"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/ashgar/front.svg",
  44115. extra: 1177/1146,
  44116. bottom: 99/1276
  44117. }
  44118. },
  44119. back: {
  44120. height: math.unit(1.9, "meters"),
  44121. name: "Back",
  44122. image: {
  44123. source: "./media/characters/ashgar/back.svg",
  44124. extra: 1201/1183,
  44125. bottom: 53/1254
  44126. }
  44127. },
  44128. feral: {
  44129. height: math.unit(1.4, "meters"),
  44130. name: "Feral",
  44131. image: {
  44132. source: "./media/characters/ashgar/feral.svg",
  44133. extra: 370/345,
  44134. bottom: 45/415
  44135. }
  44136. },
  44137. },
  44138. [
  44139. {
  44140. name: "Normal",
  44141. height: math.unit(1.9, "meters"),
  44142. default: true
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44148. {
  44149. regular: {
  44150. height: math.unit(6, "feet"),
  44151. weight: math.unit(220, "lb"),
  44152. name: "Regular",
  44153. image: {
  44154. source: "./media/characters/phillip/regular.svg",
  44155. extra: 1373/1277,
  44156. bottom: 75/1448
  44157. }
  44158. },
  44159. dressed: {
  44160. height: math.unit(6, "feet"),
  44161. weight: math.unit(220, "lb"),
  44162. name: "Dressed",
  44163. image: {
  44164. source: "./media/characters/phillip/dressed.svg",
  44165. extra: 1373/1277,
  44166. bottom: 75/1448
  44167. }
  44168. },
  44169. paw: {
  44170. height: math.unit(1.44, "feet"),
  44171. name: "Paw",
  44172. image: {
  44173. source: "./media/characters/phillip/paw.svg"
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(6, "feet"),
  44181. default: true
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44187. {
  44188. side: {
  44189. height: math.unit(42, "feet"),
  44190. name: "Side",
  44191. image: {
  44192. source: "./media/characters/uvula/side.svg",
  44193. extra: 683/586,
  44194. bottom: 60/743
  44195. }
  44196. },
  44197. front: {
  44198. height: math.unit(42, "feet"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/uvula/front.svg",
  44202. extra: 705/613,
  44203. bottom: 54/759
  44204. }
  44205. },
  44206. maw: {
  44207. height: math.unit(23.5, "feet"),
  44208. name: "Maw",
  44209. image: {
  44210. source: "./media/characters/uvula/maw.svg"
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Original Size",
  44217. height: math.unit(14, "inches")
  44218. },
  44219. {
  44220. name: "Human Size",
  44221. height: math.unit(6, "feet")
  44222. },
  44223. {
  44224. name: "Big",
  44225. height: math.unit(42, "feet"),
  44226. default: true
  44227. },
  44228. {
  44229. name: "Bigger",
  44230. height: math.unit(100, "feet")
  44231. },
  44232. ]
  44233. ))
  44234. characterMakers.push(() => makeCharacter(
  44235. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44236. {
  44237. front: {
  44238. height: math.unit(5 + 11/12, "feet"),
  44239. name: "Front",
  44240. image: {
  44241. source: "./media/characters/lannah/front.svg",
  44242. extra: 1208/1113,
  44243. bottom: 97/1305
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Normal",
  44250. height: math.unit(5 + 11/12, "feet"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44257. {
  44258. front: {
  44259. height: math.unit(6 + 3/12, "feet"),
  44260. weight: math.unit(3.5, "tons"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/emberflame/front.svg",
  44264. extra: 1198/672,
  44265. bottom: 82/1280
  44266. }
  44267. },
  44268. side: {
  44269. height: math.unit(6 + 3/12, "feet"),
  44270. weight: math.unit(3.5, "tons"),
  44271. name: "Side",
  44272. image: {
  44273. source: "./media/characters/emberflame/side.svg",
  44274. extra: 938/527,
  44275. bottom: 56/994
  44276. }
  44277. },
  44278. },
  44279. [
  44280. {
  44281. name: "Normal",
  44282. height: math.unit(6 + 3/12, "feet"),
  44283. default: true
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44289. {
  44290. side: {
  44291. height: math.unit(17.5, "feet"),
  44292. weight: math.unit(35, "tons"),
  44293. name: "Side",
  44294. image: {
  44295. source: "./media/characters/sophie-ambrose/side.svg",
  44296. extra: 1573/1242,
  44297. bottom: 71/1644
  44298. }
  44299. },
  44300. maw: {
  44301. height: math.unit(7.4, "feet"),
  44302. name: "Maw",
  44303. image: {
  44304. source: "./media/characters/sophie-ambrose/maw.svg"
  44305. }
  44306. },
  44307. },
  44308. [
  44309. {
  44310. name: "Normal",
  44311. height: math.unit(17.5, "feet"),
  44312. default: true
  44313. },
  44314. ]
  44315. ))
  44316. characterMakers.push(() => makeCharacter(
  44317. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44318. {
  44319. front: {
  44320. height: math.unit(280, "feet"),
  44321. weight: math.unit(550, "tons"),
  44322. name: "Front",
  44323. image: {
  44324. source: "./media/characters/king-mugi/front.svg",
  44325. extra: 1102/947,
  44326. bottom: 104/1206
  44327. }
  44328. },
  44329. },
  44330. [
  44331. {
  44332. name: "King Mugi",
  44333. height: math.unit(280, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44340. {
  44341. front: {
  44342. height: math.unit(64, "meters"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/nova-fox/front.svg",
  44346. extra: 1310/1246,
  44347. bottom: 65/1375
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Macro",
  44354. height: math.unit(64, "meters"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(6 + 3/12, "feet"),
  44364. weight: math.unit(170, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/sam-bat/front.svg",
  44368. extra: 1601/1411,
  44369. bottom: 125/1726
  44370. }
  44371. },
  44372. back: {
  44373. height: math.unit(6 + 3/12, "feet"),
  44374. weight: math.unit(170, "lb"),
  44375. name: "Back",
  44376. image: {
  44377. source: "./media/characters/sam-bat/back.svg",
  44378. extra: 1577/1405,
  44379. bottom: 58/1635
  44380. }
  44381. },
  44382. },
  44383. [
  44384. {
  44385. name: "Normal",
  44386. height: math.unit(6 + 3/12, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44393. {
  44394. front: {
  44395. height: math.unit(59, "feet"),
  44396. weight: math.unit(40000, "lb"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/inari/front.svg",
  44400. extra: 1884/1350,
  44401. bottom: 95/1979
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Gigantamax",
  44408. height: math.unit(59, "feet"),
  44409. default: true
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44415. {
  44416. front: {
  44417. height: math.unit(5 + 8/12, "feet"),
  44418. name: "Front",
  44419. image: {
  44420. source: "./media/characters/elizabeth/front.svg",
  44421. extra: 1395/1298,
  44422. bottom: 54/1449
  44423. }
  44424. },
  44425. mouth: {
  44426. height: math.unit(1.97, "feet"),
  44427. name: "Mouth",
  44428. image: {
  44429. source: "./media/characters/elizabeth/mouth.svg"
  44430. }
  44431. },
  44432. foot: {
  44433. height: math.unit(1.17, "feet"),
  44434. name: "Foot",
  44435. image: {
  44436. source: "./media/characters/elizabeth/foot.svg"
  44437. }
  44438. },
  44439. },
  44440. [
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(5 + 8/12, "feet"),
  44444. default: true
  44445. },
  44446. {
  44447. name: "Minimacro",
  44448. height: math.unit(18, "feet")
  44449. },
  44450. {
  44451. name: "Macro",
  44452. height: math.unit(180, "feet")
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(5 + 2/12, "feet"),
  44461. name: "Front",
  44462. image: {
  44463. source: "./media/characters/october-gossamer/front.svg",
  44464. extra: 505/454,
  44465. bottom: 7/512
  44466. }
  44467. },
  44468. back: {
  44469. height: math.unit(5 + 2/12, "feet"),
  44470. name: "Back",
  44471. image: {
  44472. source: "./media/characters/october-gossamer/back.svg",
  44473. extra: 501/454,
  44474. bottom: 11/512
  44475. }
  44476. },
  44477. },
  44478. [
  44479. {
  44480. name: "Normal",
  44481. height: math.unit(5 + 2/12, "feet"),
  44482. default: true
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(5, "feet"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/epiglottis/front.svg",
  44494. extra: 923/849,
  44495. bottom: 17/940
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Original Size",
  44502. height: math.unit(10, "inches")
  44503. },
  44504. {
  44505. name: "Human Size",
  44506. height: math.unit(5, "feet"),
  44507. default: true
  44508. },
  44509. {
  44510. name: "Big",
  44511. height: math.unit(25, "feet")
  44512. },
  44513. {
  44514. name: "Bigger",
  44515. height: math.unit(50, "feet")
  44516. },
  44517. {
  44518. name: "oh lawd",
  44519. height: math.unit(75, "feet")
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(2 + 4/12, "feet"),
  44528. weight: math.unit(60, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/lerm/front.svg",
  44532. extra: 796/790,
  44533. bottom: 79/875
  44534. }
  44535. },
  44536. },
  44537. [
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(2 + 4/12, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44547. {
  44548. front: {
  44549. height: math.unit(5.5, "feet"),
  44550. weight: math.unit(130, "lb"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/xena-nebadon/front.svg",
  44554. extra: 1828/1730,
  44555. bottom: 79/1907
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Tiny Puppy",
  44562. height: math.unit(3, "inches")
  44563. },
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(5.5, "feet"),
  44567. default: true
  44568. },
  44569. {
  44570. name: "Lotta Lady",
  44571. height: math.unit(12, "feet")
  44572. },
  44573. {
  44574. name: "Pretty Big",
  44575. height: math.unit(100, "feet")
  44576. },
  44577. {
  44578. name: "Big",
  44579. height: math.unit(500, "feet")
  44580. },
  44581. {
  44582. name: "Skyscraper Toys",
  44583. height: math.unit(2500, "feet")
  44584. },
  44585. {
  44586. name: "Plane Catcher",
  44587. height: math.unit(8, "miles")
  44588. },
  44589. {
  44590. name: "Planet Toys",
  44591. height: math.unit(15, "earths")
  44592. },
  44593. {
  44594. name: "Stardust",
  44595. height: math.unit(0.25, "galaxies")
  44596. },
  44597. {
  44598. name: "Snacks",
  44599. height: math.unit(70, "universes")
  44600. },
  44601. ]
  44602. ))
  44603. characterMakers.push(() => makeCharacter(
  44604. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44605. {
  44606. front: {
  44607. height: math.unit(1.6, "meters"),
  44608. weight: math.unit(60, "kg"),
  44609. name: "Front",
  44610. image: {
  44611. source: "./media/characters/bounty/front.svg",
  44612. extra: 1426/1308,
  44613. bottom: 15/1441
  44614. }
  44615. },
  44616. back: {
  44617. height: math.unit(1.6, "meters"),
  44618. weight: math.unit(60, "kg"),
  44619. name: "Back",
  44620. image: {
  44621. source: "./media/characters/bounty/back.svg",
  44622. extra: 1417/1307,
  44623. bottom: 8/1425
  44624. }
  44625. },
  44626. },
  44627. [
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(1.6, "meters"),
  44631. default: true
  44632. },
  44633. {
  44634. name: "Macro",
  44635. height: math.unit(300, "meters")
  44636. },
  44637. ]
  44638. ))
  44639. characterMakers.push(() => makeCharacter(
  44640. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44641. {
  44642. front: {
  44643. height: math.unit(2 + 8/12, "feet"),
  44644. weight: math.unit(15, "lb"),
  44645. name: "Front",
  44646. image: {
  44647. source: "./media/characters/mochi/front.svg",
  44648. extra: 1022/852,
  44649. bottom: 435/1457
  44650. }
  44651. },
  44652. back: {
  44653. height: math.unit(2 + 8/12, "feet"),
  44654. weight: math.unit(15, "lb"),
  44655. name: "Back",
  44656. image: {
  44657. source: "./media/characters/mochi/back.svg",
  44658. extra: 1335/1119,
  44659. bottom: 39/1374
  44660. }
  44661. },
  44662. bird: {
  44663. height: math.unit(2 + 8/12, "feet"),
  44664. weight: math.unit(15, "lb"),
  44665. name: "Bird",
  44666. image: {
  44667. source: "./media/characters/mochi/bird.svg",
  44668. extra: 1251/1113,
  44669. bottom: 178/1429
  44670. }
  44671. },
  44672. kaiju: {
  44673. height: math.unit(154, "feet"),
  44674. weight: math.unit(1e7, "lb"),
  44675. name: "Kaiju",
  44676. image: {
  44677. source: "./media/characters/mochi/kaiju.svg",
  44678. extra: 460/324,
  44679. bottom: 40/500
  44680. }
  44681. },
  44682. head: {
  44683. height: math.unit(1.21, "feet"),
  44684. name: "Head",
  44685. image: {
  44686. source: "./media/characters/mochi/head.svg"
  44687. }
  44688. },
  44689. alternateTail: {
  44690. height: math.unit(2 + 8/12, "feet"),
  44691. weight: math.unit(45, "lb"),
  44692. name: "Alternate Tail",
  44693. image: {
  44694. source: "./media/characters/mochi/alternate-tail.svg",
  44695. extra: 139/76,
  44696. bottom: 45/184
  44697. }
  44698. },
  44699. },
  44700. [
  44701. {
  44702. name: "Micro",
  44703. height: math.unit(2, "inches")
  44704. },
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(2 + 8/12, "feet"),
  44708. default: true
  44709. },
  44710. {
  44711. name: "Macro",
  44712. height: math.unit(106, "feet")
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44718. {
  44719. front: {
  44720. height: math.unit(5.67, "feet"),
  44721. weight: math.unit(135, "lb"),
  44722. name: "Front",
  44723. image: {
  44724. source: "./media/characters/sarel/front.svg",
  44725. extra: 865/788,
  44726. bottom: 97/962
  44727. }
  44728. },
  44729. back: {
  44730. height: math.unit(5.67, "feet"),
  44731. weight: math.unit(135, "lb"),
  44732. name: "Back",
  44733. image: {
  44734. source: "./media/characters/sarel/back.svg",
  44735. extra: 857/777,
  44736. bottom: 32/889
  44737. }
  44738. },
  44739. chozoan: {
  44740. height: math.unit(5.67, "feet"),
  44741. weight: math.unit(135, "lb"),
  44742. name: "Chozoan",
  44743. image: {
  44744. source: "./media/characters/sarel/chozoan.svg",
  44745. extra: 865/788,
  44746. bottom: 97/962
  44747. }
  44748. },
  44749. current: {
  44750. height: math.unit(5.67, "feet"),
  44751. weight: math.unit(135, "lb"),
  44752. name: "Current",
  44753. image: {
  44754. source: "./media/characters/sarel/current.svg",
  44755. extra: 865/788,
  44756. bottom: 97/962
  44757. }
  44758. },
  44759. head: {
  44760. height: math.unit(1.77, "feet"),
  44761. name: "Head",
  44762. image: {
  44763. source: "./media/characters/sarel/head.svg"
  44764. }
  44765. },
  44766. claws: {
  44767. height: math.unit(1.8, "feet"),
  44768. name: "Claws",
  44769. image: {
  44770. source: "./media/characters/sarel/claws.svg"
  44771. }
  44772. },
  44773. clawsAlt: {
  44774. height: math.unit(1.8, "feet"),
  44775. name: "Claws-alt",
  44776. image: {
  44777. source: "./media/characters/sarel/claws-alt.svg"
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "Normal",
  44784. height: math.unit(5.67, "feet"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(5500, "feet"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/alyonia/front.svg",
  44797. extra: 1200/1135,
  44798. bottom: 29/1229
  44799. }
  44800. },
  44801. back: {
  44802. height: math.unit(5500, "feet"),
  44803. name: "Back",
  44804. image: {
  44805. source: "./media/characters/alyonia/back.svg",
  44806. extra: 1205/1138,
  44807. bottom: 10/1215
  44808. }
  44809. },
  44810. },
  44811. [
  44812. {
  44813. name: "Small",
  44814. height: math.unit(10, "feet")
  44815. },
  44816. {
  44817. name: "Macro",
  44818. height: math.unit(500, "feet")
  44819. },
  44820. {
  44821. name: "Mega Macro",
  44822. height: math.unit(5500, "feet"),
  44823. default: true
  44824. },
  44825. {
  44826. name: "Mega Macro+",
  44827. height: math.unit(500000, "feet")
  44828. },
  44829. {
  44830. name: "Giga Macro",
  44831. height: math.unit(3000, "miles")
  44832. },
  44833. {
  44834. name: "Tera Macro",
  44835. height: math.unit(2.8e6, "miles")
  44836. },
  44837. {
  44838. name: "Galactic",
  44839. height: math.unit(120000, "lightyears")
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44845. {
  44846. werewolf: {
  44847. height: math.unit(8, "feet"),
  44848. weight: math.unit(425, "lb"),
  44849. name: "Werewolf",
  44850. image: {
  44851. source: "./media/characters/autumn/werewolf.svg",
  44852. extra: 2154/2031,
  44853. bottom: 160/2314
  44854. }
  44855. },
  44856. human: {
  44857. height: math.unit(5 + 8/12, "feet"),
  44858. weight: math.unit(150, "lb"),
  44859. name: "Human",
  44860. image: {
  44861. source: "./media/characters/autumn/human.svg",
  44862. extra: 1200/1149,
  44863. bottom: 30/1230
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(8, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(8 + 5/12, "feet"),
  44880. weight: math.unit(825, "lb"),
  44881. name: "Front",
  44882. image: {
  44883. source: "./media/characters/cobalt-charizard/front.svg",
  44884. extra: 1268/1155,
  44885. bottom: 122/1390
  44886. }
  44887. },
  44888. side: {
  44889. height: math.unit(8 + 5/12, "feet"),
  44890. weight: math.unit(825, "lb"),
  44891. name: "Side",
  44892. image: {
  44893. source: "./media/characters/cobalt-charizard/side.svg",
  44894. extra: 1348/1257,
  44895. bottom: 58/1406
  44896. }
  44897. },
  44898. gMax: {
  44899. height: math.unit(134 + 11/12, "feet"),
  44900. name: "G-Max",
  44901. image: {
  44902. source: "./media/characters/cobalt-charizard/g-max.svg",
  44903. extra: 1835/1541,
  44904. bottom: 151/1986
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(8 + 5/12, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44918. {
  44919. front: {
  44920. height: math.unit(6 + 3/12, "feet"),
  44921. weight: math.unit(210, "lb"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/stella/front.svg",
  44925. extra: 3549/3335,
  44926. bottom: 51/3600
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "Normal",
  44933. height: math.unit(6 + 3/12, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44940. {
  44941. front: {
  44942. height: math.unit(5, "feet"),
  44943. weight: math.unit(90, "lb"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/riley-bishop/front.svg",
  44947. extra: 1450/1428,
  44948. bottom: 152/1602
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(5, "feet"),
  44956. default: true
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44962. {
  44963. side: {
  44964. height: math.unit(8 + 2/12, "feet"),
  44965. weight: math.unit(500, "kg"),
  44966. name: "Side",
  44967. image: {
  44968. source: "./media/characters/theo-arcanine/side.svg",
  44969. extra: 1342/1074,
  44970. bottom: 111/1453
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(8 + 2/12, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(4, "feet"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/kali/front.svg",
  44990. extra: 1921/1357,
  44991. bottom: 70/1991
  44992. }
  44993. },
  44994. },
  44995. [
  44996. {
  44997. name: "Normal",
  44998. height: math.unit(4, "feet"),
  44999. default: true
  45000. },
  45001. {
  45002. name: "Macro",
  45003. height: math.unit(32, "meters")
  45004. },
  45005. {
  45006. name: "Macro+",
  45007. height: math.unit(150, "meters")
  45008. },
  45009. {
  45010. name: "Megamacro",
  45011. height: math.unit(7500, "meters")
  45012. },
  45013. {
  45014. name: "Megamacro+",
  45015. height: math.unit(80, "kilometers")
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45021. {
  45022. side: {
  45023. height: math.unit(5 + 11/12, "feet"),
  45024. weight: math.unit(236, "lb"),
  45025. name: "Side",
  45026. image: {
  45027. source: "./media/characters/gapp/side.svg",
  45028. extra: 775/340,
  45029. bottom: 58/833
  45030. }
  45031. },
  45032. mouth: {
  45033. height: math.unit(2.98, "feet"),
  45034. name: "Mouth",
  45035. image: {
  45036. source: "./media/characters/gapp/mouth.svg"
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(5 + 1/12, "feet"),
  45044. default: true
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(6, "feet"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/persephone/front.svg",
  45056. extra: 1895/1717,
  45057. bottom: 96/1991
  45058. }
  45059. },
  45060. back: {
  45061. height: math.unit(6, "feet"),
  45062. name: "Back",
  45063. image: {
  45064. source: "./media/characters/persephone/back.svg",
  45065. extra: 1868/1679,
  45066. bottom: 26/1894
  45067. }
  45068. },
  45069. casual: {
  45070. height: math.unit(6, "feet"),
  45071. name: "Casual",
  45072. image: {
  45073. source: "./media/characters/persephone/casual.svg",
  45074. extra: 1713/1541,
  45075. bottom: 76/1789
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Human Size",
  45082. height: math.unit(6, "feet")
  45083. },
  45084. {
  45085. name: "Big Steppy",
  45086. height: math.unit(600, "meters"),
  45087. default: true
  45088. },
  45089. {
  45090. name: "Galaxy Brain",
  45091. height: math.unit(1, "zettameter")
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45097. {
  45098. front: {
  45099. height: math.unit(1.85, "meters"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/riley-foxthing/front.svg",
  45103. extra: 1495/1354,
  45104. bottom: 122/1617
  45105. }
  45106. },
  45107. frontAlt: {
  45108. height: math.unit(1.85, "meters"),
  45109. name: "Front (Alt)",
  45110. image: {
  45111. source: "./media/characters/riley-foxthing/front-alt.svg",
  45112. extra: 1572/1389,
  45113. bottom: 116/1688
  45114. }
  45115. },
  45116. },
  45117. [
  45118. {
  45119. name: "Normal Sized",
  45120. height: math.unit(1.85, "meters"),
  45121. default: true
  45122. },
  45123. {
  45124. name: "Quite Sizable",
  45125. height: math.unit(5, "meters")
  45126. },
  45127. {
  45128. name: "Rather Large",
  45129. height: math.unit(20, "meters")
  45130. },
  45131. {
  45132. name: "Macro",
  45133. height: math.unit(450, "meters")
  45134. },
  45135. {
  45136. name: "Giga",
  45137. height: math.unit(5, "km")
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45143. {
  45144. front: {
  45145. height: math.unit(6, "feet"),
  45146. weight: math.unit(200, "lb"),
  45147. name: "Front",
  45148. image: {
  45149. source: "./media/characters/blizzard/front.svg",
  45150. extra: 1136/990,
  45151. bottom: 136/1272
  45152. }
  45153. },
  45154. back: {
  45155. height: math.unit(6, "feet"),
  45156. weight: math.unit(200, "lb"),
  45157. name: "Back",
  45158. image: {
  45159. source: "./media/characters/blizzard/back.svg",
  45160. extra: 1175/1034,
  45161. bottom: 97/1272
  45162. }
  45163. },
  45164. sitting: {
  45165. height: math.unit(3.725, "feet"),
  45166. weight: math.unit(200, "lb"),
  45167. name: "Sitting",
  45168. image: {
  45169. source: "./media/characters/blizzard/sitting.svg",
  45170. extra: 581/485,
  45171. bottom: 90/671
  45172. }
  45173. },
  45174. frontWizard: {
  45175. height: math.unit(7.9, "feet"),
  45176. weight: math.unit(200, "lb"),
  45177. name: "Front (Wizard)",
  45178. image: {
  45179. source: "./media/characters/blizzard/front-wizard.svg"
  45180. }
  45181. },
  45182. backWizard: {
  45183. height: math.unit(7.9, "feet"),
  45184. weight: math.unit(200, "lb"),
  45185. name: "Back (Wizard)",
  45186. image: {
  45187. source: "./media/characters/blizzard/back-wizard.svg"
  45188. }
  45189. },
  45190. frontNsfw: {
  45191. height: math.unit(6, "feet"),
  45192. weight: math.unit(200, "lb"),
  45193. name: "Front (NSFW)",
  45194. image: {
  45195. source: "./media/characters/blizzard/front-nsfw.svg",
  45196. extra: 1136/990,
  45197. bottom: 136/1272
  45198. }
  45199. },
  45200. backNsfw: {
  45201. height: math.unit(6, "feet"),
  45202. weight: math.unit(200, "lb"),
  45203. name: "Back (NSFW)",
  45204. image: {
  45205. source: "./media/characters/blizzard/back-nsfw.svg",
  45206. extra: 1175/1034,
  45207. bottom: 97/1272
  45208. }
  45209. },
  45210. sittingNsfw: {
  45211. height: math.unit(3.725, "feet"),
  45212. weight: math.unit(200, "lb"),
  45213. name: "Sitting (NSFW)",
  45214. image: {
  45215. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45216. extra: 581/485,
  45217. bottom: 90/671
  45218. }
  45219. },
  45220. wizardFrontNsfw: {
  45221. height: math.unit(7.9, "feet"),
  45222. weight: math.unit(200, "lb"),
  45223. name: "Wizard (Front, NSFW)",
  45224. image: {
  45225. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45226. }
  45227. },
  45228. },
  45229. [
  45230. {
  45231. name: "Normal",
  45232. height: math.unit(6, "feet"),
  45233. default: true
  45234. },
  45235. ]
  45236. ))
  45237. characterMakers.push(() => makeCharacter(
  45238. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45239. {
  45240. front: {
  45241. height: math.unit(5 + 2/12, "feet"),
  45242. name: "Front",
  45243. image: {
  45244. source: "./media/characters/lumi/front.svg",
  45245. extra: 1328/1268,
  45246. bottom: 103/1431
  45247. }
  45248. },
  45249. back: {
  45250. height: math.unit(5 + 2/12, "feet"),
  45251. name: "Back",
  45252. image: {
  45253. source: "./media/characters/lumi/back.svg",
  45254. extra: 1381/1327,
  45255. bottom: 43/1424
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Normal",
  45262. height: math.unit(5 + 2/12, "feet"),
  45263. default: true
  45264. },
  45265. ]
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45269. {
  45270. front: {
  45271. height: math.unit(5 + 9/12, "feet"),
  45272. name: "Front",
  45273. image: {
  45274. source: "./media/characters/aliya-cotton/front.svg",
  45275. extra: 577/564,
  45276. bottom: 29/606
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(5 + 9/12, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45290. {
  45291. front: {
  45292. height: math.unit(2.7, "meters"),
  45293. weight: math.unit(25000, "lb"),
  45294. name: "Front",
  45295. image: {
  45296. source: "./media/characters/noah-luxray/front.svg",
  45297. extra: 1644/825,
  45298. bottom: 339/1983
  45299. }
  45300. },
  45301. side: {
  45302. height: math.unit(2.97, "meters"),
  45303. weight: math.unit(25000, "lb"),
  45304. name: "Side",
  45305. image: {
  45306. source: "./media/characters/noah-luxray/side.svg",
  45307. extra: 1319/650,
  45308. bottom: 163/1482
  45309. }
  45310. },
  45311. dick: {
  45312. height: math.unit(7.4, "feet"),
  45313. weight: math.unit(2500, "lb"),
  45314. name: "Dick",
  45315. image: {
  45316. source: "./media/characters/noah-luxray/dick.svg"
  45317. }
  45318. },
  45319. dickAlt: {
  45320. height: math.unit(10.83, "feet"),
  45321. weight: math.unit(2500, "lb"),
  45322. name: "Dick-alt",
  45323. image: {
  45324. source: "./media/characters/noah-luxray/dick-alt.svg"
  45325. }
  45326. },
  45327. },
  45328. [
  45329. {
  45330. name: "BIG",
  45331. height: math.unit(2.7, "meters"),
  45332. default: true
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45338. {
  45339. standing: {
  45340. height: math.unit(183, "cm"),
  45341. weight: math.unit(68, "kg"),
  45342. name: "Standing",
  45343. image: {
  45344. source: "./media/characters/arion/standing.svg",
  45345. extra: 1869/1807,
  45346. bottom: 93/1962
  45347. }
  45348. },
  45349. reclining: {
  45350. height: math.unit(70.5, "cm"),
  45351. weight: math.unit(68, "lb"),
  45352. name: "Reclining",
  45353. image: {
  45354. source: "./media/characters/arion/reclining.svg",
  45355. extra: 937/870,
  45356. bottom: 63/1000
  45357. }
  45358. },
  45359. },
  45360. [
  45361. {
  45362. name: "Colossus Size, Low",
  45363. height: math.unit(33, "meters"),
  45364. default: true
  45365. },
  45366. {
  45367. name: "Colossus Size, Mid",
  45368. height: math.unit(52, "meters")
  45369. },
  45370. {
  45371. name: "Colossus Size, High",
  45372. height: math.unit(60, "meters")
  45373. },
  45374. {
  45375. name: "Titan Size, Low",
  45376. height: math.unit(91, "meters"),
  45377. },
  45378. {
  45379. name: "Titan Size, Mid",
  45380. height: math.unit(122, "meters")
  45381. },
  45382. {
  45383. name: "Titan Size, High",
  45384. height: math.unit(162, "meters")
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45390. {
  45391. front: {
  45392. height: math.unit(53, "meters"),
  45393. name: "Front",
  45394. image: {
  45395. source: "./media/characters/stellar-marbey/front.svg",
  45396. extra: 1913/1805,
  45397. bottom: 92/2005
  45398. }
  45399. },
  45400. back: {
  45401. height: math.unit(53, "meters"),
  45402. name: "Back",
  45403. image: {
  45404. source: "./media/characters/stellar-marbey/back.svg",
  45405. extra: 1960/1851,
  45406. bottom: 28/1988
  45407. }
  45408. },
  45409. mouth: {
  45410. height: math.unit(3.5, "meters"),
  45411. name: "Mouth",
  45412. image: {
  45413. source: "./media/characters/stellar-marbey/mouth.svg"
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Macro",
  45420. height: math.unit(53, "meters"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45427. {
  45428. front: {
  45429. height: math.unit(8 + 1/12, "feet"),
  45430. weight: math.unit(233, "lb"),
  45431. name: "Front",
  45432. image: {
  45433. source: "./media/characters/matsu/front.svg",
  45434. extra: 832/772,
  45435. bottom: 40/872
  45436. }
  45437. },
  45438. back: {
  45439. height: math.unit(8 + 1/12, "feet"),
  45440. weight: math.unit(233, "lb"),
  45441. name: "Back",
  45442. image: {
  45443. source: "./media/characters/matsu/back.svg",
  45444. extra: 839/780,
  45445. bottom: 47/886
  45446. }
  45447. },
  45448. },
  45449. [
  45450. {
  45451. name: "Normal",
  45452. height: math.unit(8 + 1/12, "feet"),
  45453. default: true
  45454. },
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45459. {
  45460. front: {
  45461. height: math.unit(4, "feet"),
  45462. weight: math.unit(148, "lb"),
  45463. name: "Front",
  45464. image: {
  45465. source: "./media/characters/thiz/front.svg",
  45466. extra: 1913/1748,
  45467. bottom: 62/1975
  45468. }
  45469. },
  45470. },
  45471. [
  45472. {
  45473. name: "Normal",
  45474. height: math.unit(4, "feet"),
  45475. default: true
  45476. },
  45477. ]
  45478. ))
  45479. characterMakers.push(() => makeCharacter(
  45480. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45481. {
  45482. front: {
  45483. height: math.unit(7 + 6/12, "feet"),
  45484. weight: math.unit(267, "lb"),
  45485. name: "Front",
  45486. image: {
  45487. source: "./media/characters/marcel/front.svg",
  45488. extra: 1221/1096,
  45489. bottom: 76/1297
  45490. }
  45491. },
  45492. },
  45493. [
  45494. {
  45495. name: "Normal",
  45496. height: math.unit(7 + 6/12, "feet"),
  45497. default: true
  45498. },
  45499. ]
  45500. ))
  45501. characterMakers.push(() => makeCharacter(
  45502. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45503. {
  45504. side: {
  45505. height: math.unit(42, "meters"),
  45506. name: "Side",
  45507. image: {
  45508. source: "./media/characters/flake/side.svg",
  45509. extra: 1525/1306,
  45510. bottom: 209/1734
  45511. }
  45512. },
  45513. },
  45514. [
  45515. {
  45516. name: "Normal",
  45517. height: math.unit(42, "meters"),
  45518. default: true
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45524. {
  45525. dressed: {
  45526. height: math.unit(6 + 4/12, "feet"),
  45527. weight: math.unit(520, "lb"),
  45528. name: "Dressed",
  45529. image: {
  45530. source: "./media/characters/someonne/dressed.svg",
  45531. extra: 1020/1010,
  45532. bottom: 178/1198
  45533. }
  45534. },
  45535. undressed: {
  45536. height: math.unit(6 + 4/12, "feet"),
  45537. weight: math.unit(520, "lb"),
  45538. name: "Undressed",
  45539. image: {
  45540. source: "./media/characters/someonne/undressed.svg",
  45541. extra: 1019/1014,
  45542. bottom: 169/1188
  45543. }
  45544. },
  45545. },
  45546. [
  45547. {
  45548. name: "Normal",
  45549. height: math.unit(6 + 4/12, "feet"),
  45550. default: true
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45556. {
  45557. front: {
  45558. height: math.unit(3, "feet"),
  45559. weight: math.unit(30, "lb"),
  45560. name: "Front",
  45561. image: {
  45562. source: "./media/characters/till/front.svg",
  45563. extra: 892/823,
  45564. bottom: 55/947
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(3, "feet"),
  45572. default: true
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45578. {
  45579. front: {
  45580. height: math.unit(9 + 8/12, "feet"),
  45581. weight: math.unit(800, "lb"),
  45582. name: "Front",
  45583. image: {
  45584. source: "./media/characters/sydney-heki/front.svg",
  45585. extra: 1360/1300,
  45586. bottom: 22/1382
  45587. }
  45588. },
  45589. back: {
  45590. height: math.unit(9 + 8/12, "feet"),
  45591. weight: math.unit(800, "lb"),
  45592. name: "Back",
  45593. image: {
  45594. source: "./media/characters/sydney-heki/back.svg",
  45595. extra: 1356/1293,
  45596. bottom: 12/1368
  45597. }
  45598. },
  45599. frontDressed: {
  45600. height: math.unit(9 + 8/12, "feet"),
  45601. weight: math.unit(800, "lb"),
  45602. name: "Front-dressed",
  45603. image: {
  45604. source: "./media/characters/sydney-heki/front-dressed.svg",
  45605. extra: 1360/1300,
  45606. bottom: 22/1382
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Normal",
  45613. height: math.unit(9 + 8/12, "feet"),
  45614. default: true
  45615. },
  45616. {
  45617. name: "Macro",
  45618. height: math.unit(500, "feet")
  45619. },
  45620. {
  45621. name: "Megamacro",
  45622. height: math.unit(3.6, "miles")
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45628. {
  45629. front: {
  45630. height: math.unit(200, "cm"),
  45631. weight: math.unit(250, "lb"),
  45632. name: "Front",
  45633. image: {
  45634. source: "./media/characters/fowler-karlsson/front.svg",
  45635. extra: 897/845,
  45636. bottom: 123/1020
  45637. }
  45638. },
  45639. back: {
  45640. height: math.unit(200, "cm"),
  45641. weight: math.unit(250, "lb"),
  45642. name: "Back",
  45643. image: {
  45644. source: "./media/characters/fowler-karlsson/back.svg",
  45645. extra: 999/944,
  45646. bottom: 26/1025
  45647. }
  45648. },
  45649. dick: {
  45650. height: math.unit(1.92, "feet"),
  45651. weight: math.unit(150, "lb"),
  45652. name: "Dick",
  45653. image: {
  45654. source: "./media/characters/fowler-karlsson/dick.svg"
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(200, "cm"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Smaller Macro",
  45666. height: math.unit(90, "m")
  45667. },
  45668. {
  45669. name: "Macro",
  45670. height: math.unit(150, "m")
  45671. },
  45672. {
  45673. name: "Bigger Macro",
  45674. height: math.unit(300, "m")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45680. {
  45681. side: {
  45682. height: math.unit(8 + 2/12, "feet"),
  45683. weight: math.unit(1, "tonne"),
  45684. name: "Side",
  45685. image: {
  45686. source: "./media/characters/rylide/side.svg",
  45687. extra: 1318/1034,
  45688. bottom: 106/1424
  45689. }
  45690. },
  45691. sitting: {
  45692. height: math.unit(303, "cm"),
  45693. weight: math.unit(1, "tonne"),
  45694. name: "Sitting",
  45695. image: {
  45696. source: "./media/characters/rylide/sitting.svg",
  45697. extra: 1303/1103,
  45698. bottom: 36/1339
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(8 + 2/12, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5 + 10/12, "feet"),
  45715. weight: math.unit(160, "lb"),
  45716. name: "Front",
  45717. image: {
  45718. source: "./media/characters/pudask/front.svg",
  45719. extra: 1616/1590,
  45720. bottom: 161/1777
  45721. }
  45722. },
  45723. },
  45724. [
  45725. {
  45726. name: "Ferret Height",
  45727. height: math.unit(2 + 5/12, "feet")
  45728. },
  45729. {
  45730. name: "Canon Height",
  45731. height: math.unit(5 + 10/12, "feet"),
  45732. default: true
  45733. },
  45734. ]
  45735. ))
  45736. characterMakers.push(() => makeCharacter(
  45737. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45738. {
  45739. front: {
  45740. height: math.unit(3 + 6/12, "feet"),
  45741. weight: math.unit(60, "lb"),
  45742. name: "Front",
  45743. image: {
  45744. source: "./media/characters/ramita/front.svg",
  45745. extra: 1402/1232,
  45746. bottom: 62/1464
  45747. }
  45748. },
  45749. dressed: {
  45750. height: math.unit(3 + 6/12, "feet"),
  45751. weight: math.unit(60, "lb"),
  45752. name: "Dressed",
  45753. image: {
  45754. source: "./media/characters/ramita/dressed.svg",
  45755. extra: 1534/1249,
  45756. bottom: 50/1584
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(3 + 6/12, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45770. {
  45771. front: {
  45772. height: math.unit(8, "feet"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/ark/front.svg",
  45776. extra: 772/693,
  45777. bottom: 45/817
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(8, "feet"),
  45785. default: true
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45791. {
  45792. front: {
  45793. height: math.unit(6, "feet"),
  45794. weight: math.unit(250, "lb"),
  45795. volume: math.unit(5/8, "gallons"),
  45796. name: "Front",
  45797. image: {
  45798. source: "./media/characters/ludwig-horn/front.svg",
  45799. extra: 1782/1635,
  45800. bottom: 96/1878
  45801. }
  45802. },
  45803. back: {
  45804. height: math.unit(6, "feet"),
  45805. weight: math.unit(250, "lb"),
  45806. volume: math.unit(5/8, "gallons"),
  45807. name: "Back",
  45808. image: {
  45809. source: "./media/characters/ludwig-horn/back.svg",
  45810. extra: 1874/1729,
  45811. bottom: 27/1901
  45812. }
  45813. },
  45814. dick: {
  45815. height: math.unit(1.05, "feet"),
  45816. weight: math.unit(15, "lb"),
  45817. volume: math.unit(5/8, "gallons"),
  45818. name: "Dick",
  45819. image: {
  45820. source: "./media/characters/ludwig-horn/dick.svg"
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Small",
  45827. height: math.unit(6, "feet")
  45828. },
  45829. {
  45830. name: "Typical",
  45831. height: math.unit(12, "feet"),
  45832. default: true
  45833. },
  45834. {
  45835. name: "Building",
  45836. height: math.unit(80, "feet")
  45837. },
  45838. {
  45839. name: "Town",
  45840. height: math.unit(800, "feet")
  45841. },
  45842. {
  45843. name: "Kingdom",
  45844. height: math.unit(80000, "feet")
  45845. },
  45846. {
  45847. name: "Planet",
  45848. height: math.unit(8000000, "feet")
  45849. },
  45850. {
  45851. name: "Universe",
  45852. height: math.unit(8000000000, "feet")
  45853. },
  45854. {
  45855. name: "Transcended",
  45856. height: math.unit(8e27, "feet")
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(5, "feet"),
  45865. weight: math.unit(50, "kg"),
  45866. name: "Front",
  45867. image: {
  45868. source: "./media/characters/biot-avery/front.svg",
  45869. extra: 1295/1232,
  45870. bottom: 86/1381
  45871. }
  45872. },
  45873. },
  45874. [
  45875. {
  45876. name: "Normal",
  45877. height: math.unit(5, "feet"),
  45878. default: true
  45879. },
  45880. ]
  45881. ))
  45882. characterMakers.push(() => makeCharacter(
  45883. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45884. {
  45885. front: {
  45886. height: math.unit(6, "feet"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/kitsune-kiro/front.svg",
  45890. extra: 1270/1158,
  45891. bottom: 42/1312
  45892. }
  45893. },
  45894. frontAlt: {
  45895. height: math.unit(6, "feet"),
  45896. name: "Front-alt",
  45897. image: {
  45898. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45899. extra: 1130/1081,
  45900. bottom: 36/1166
  45901. }
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Smol",
  45907. height: math.unit(3, "feet")
  45908. },
  45909. {
  45910. name: "Normal",
  45911. height: math.unit(6, "feet"),
  45912. default: true
  45913. },
  45914. ]
  45915. ))
  45916. characterMakers.push(() => makeCharacter(
  45917. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45918. {
  45919. front: {
  45920. height: math.unit(6, "feet"),
  45921. weight: math.unit(125, "lb"),
  45922. name: "Front",
  45923. image: {
  45924. source: "./media/characters/jack-thatcher/front.svg",
  45925. extra: 1474/1370,
  45926. bottom: 26/1500
  45927. }
  45928. },
  45929. back: {
  45930. height: math.unit(6, "feet"),
  45931. weight: math.unit(125, "lb"),
  45932. name: "Back",
  45933. image: {
  45934. source: "./media/characters/jack-thatcher/back.svg",
  45935. extra: 1489/1384,
  45936. bottom: 18/1507
  45937. }
  45938. },
  45939. },
  45940. [
  45941. {
  45942. name: "Normal",
  45943. height: math.unit(6, "feet"),
  45944. default: true
  45945. },
  45946. {
  45947. name: "Macro",
  45948. height: math.unit(75, "feet")
  45949. },
  45950. {
  45951. name: "Macro-er",
  45952. height: math.unit(250, "feet")
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45958. {
  45959. front: {
  45960. height: math.unit(7, "feet"),
  45961. weight: math.unit(110, "kg"),
  45962. name: "Front",
  45963. image: {
  45964. source: "./media/characters/max-hyper/front.svg",
  45965. extra: 1969/1881,
  45966. bottom: 49/2018
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(7, "feet"),
  45974. default: true
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45980. {
  45981. front: {
  45982. height: math.unit(5 + 5/12, "feet"),
  45983. weight: math.unit(160, "lb"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/spook/front.svg",
  45987. extra: 794/791,
  45988. bottom: 54/848
  45989. }
  45990. },
  45991. back: {
  45992. height: math.unit(5 + 5/12, "feet"),
  45993. weight: math.unit(160, "lb"),
  45994. name: "Back",
  45995. image: {
  45996. source: "./media/characters/spook/back.svg",
  45997. extra: 812/798,
  45998. bottom: 32/844
  45999. }
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Normal",
  46005. height: math.unit(5 + 5/12, "feet"),
  46006. default: true
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46012. {
  46013. front: {
  46014. height: math.unit(18, "feet"),
  46015. name: "Front",
  46016. image: {
  46017. source: "./media/characters/xeaduulix/front.svg",
  46018. extra: 1380/1166,
  46019. bottom: 110/1490
  46020. }
  46021. },
  46022. back: {
  46023. height: math.unit(18, "feet"),
  46024. name: "Back",
  46025. image: {
  46026. source: "./media/characters/xeaduulix/back.svg",
  46027. extra: 1592/1170,
  46028. bottom: 128/1720
  46029. }
  46030. },
  46031. frontNsfw: {
  46032. height: math.unit(18, "feet"),
  46033. name: "Front (NSFW)",
  46034. image: {
  46035. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46036. extra: 1380/1166,
  46037. bottom: 110/1490
  46038. }
  46039. },
  46040. backNsfw: {
  46041. height: math.unit(18, "feet"),
  46042. name: "Back (NSFW)",
  46043. image: {
  46044. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46045. extra: 1592/1170,
  46046. bottom: 128/1720
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(18, "feet"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46060. {
  46061. spreadWings: {
  46062. height: math.unit(20, "feet"),
  46063. name: "Spread Wings",
  46064. image: {
  46065. source: "./media/characters/fledge/spread-wings.svg",
  46066. extra: 693/635,
  46067. bottom: 26/719
  46068. }
  46069. },
  46070. front: {
  46071. height: math.unit(20, "feet"),
  46072. name: "Front",
  46073. image: {
  46074. source: "./media/characters/fledge/front.svg",
  46075. extra: 684/637,
  46076. bottom: 18/702
  46077. }
  46078. },
  46079. frontAlt: {
  46080. height: math.unit(20, "feet"),
  46081. name: "Front (Alt)",
  46082. image: {
  46083. source: "./media/characters/fledge/front-alt.svg",
  46084. extra: 708/664,
  46085. bottom: 13/721
  46086. }
  46087. },
  46088. back: {
  46089. height: math.unit(20, "feet"),
  46090. name: "Back",
  46091. image: {
  46092. source: "./media/characters/fledge/back.svg",
  46093. extra: 718/634,
  46094. bottom: 22/740
  46095. }
  46096. },
  46097. head: {
  46098. height: math.unit(5.55, "feet"),
  46099. name: "Head",
  46100. image: {
  46101. source: "./media/characters/fledge/head.svg"
  46102. }
  46103. },
  46104. headAlt: {
  46105. height: math.unit(5.1, "feet"),
  46106. name: "Head (Alt)",
  46107. image: {
  46108. source: "./media/characters/fledge/head-alt.svg"
  46109. }
  46110. },
  46111. },
  46112. [
  46113. {
  46114. name: "Small",
  46115. height: math.unit(6 + 2/12, "feet")
  46116. },
  46117. {
  46118. name: "Big",
  46119. height: math.unit(20, "feet"),
  46120. default: true
  46121. },
  46122. {
  46123. name: "Giant",
  46124. height: math.unit(100, "feet")
  46125. },
  46126. {
  46127. name: "Macro",
  46128. height: math.unit(200, "feet")
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(1, "meter"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/atlas-morenai/front.svg",
  46140. extra: 1275/1043,
  46141. bottom: 19/1294
  46142. }
  46143. },
  46144. back: {
  46145. height: math.unit(1, "meter"),
  46146. name: "Back",
  46147. image: {
  46148. source: "./media/characters/atlas-morenai/back.svg",
  46149. extra: 1141/1001,
  46150. bottom: 25/1166
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(1, "meter"),
  46158. default: true
  46159. },
  46160. {
  46161. name: "Magic-Infused",
  46162. height: math.unit(5, "meters")
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46168. {
  46169. front: {
  46170. height: math.unit(5, "meters"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/cintia/front.svg",
  46174. extra: 1312/1228,
  46175. bottom: 38/1350
  46176. }
  46177. },
  46178. back: {
  46179. height: math.unit(5, "meters"),
  46180. name: "Back",
  46181. image: {
  46182. source: "./media/characters/cintia/back.svg",
  46183. extra: 1260/1166,
  46184. bottom: 98/1358
  46185. }
  46186. },
  46187. frontDick: {
  46188. height: math.unit(5, "meters"),
  46189. name: "Front (Dick)",
  46190. image: {
  46191. source: "./media/characters/cintia/front-dick.svg",
  46192. extra: 1312/1228,
  46193. bottom: 38/1350
  46194. }
  46195. },
  46196. backDick: {
  46197. height: math.unit(5, "meters"),
  46198. name: "Back (Dick)",
  46199. image: {
  46200. source: "./media/characters/cintia/back-dick.svg",
  46201. extra: 1260/1166,
  46202. bottom: 98/1358
  46203. }
  46204. },
  46205. bust: {
  46206. height: math.unit(1.97, "meters"),
  46207. name: "Bust",
  46208. image: {
  46209. source: "./media/characters/cintia/bust.svg",
  46210. extra: 617/565,
  46211. bottom: 0/617
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(5, "meters"),
  46219. default: true
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46225. {
  46226. side: {
  46227. height: math.unit(100, "feet"),
  46228. name: "Side",
  46229. image: {
  46230. source: "./media/characters/denora/side.svg",
  46231. extra: 875/803,
  46232. bottom: 9/884
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Standard",
  46239. height: math.unit(100, "feet"),
  46240. default: true
  46241. },
  46242. {
  46243. name: "Grand",
  46244. height: math.unit(1000, "feet")
  46245. },
  46246. {
  46247. name: "Conquering",
  46248. height: math.unit(10000, "feet")
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46254. {
  46255. dressed: {
  46256. height: math.unit(8 + 5/12, "feet"),
  46257. weight: math.unit(700, "lb"),
  46258. name: "Dressed",
  46259. image: {
  46260. source: "./media/characters/kiva/dressed.svg",
  46261. extra: 1102/1055,
  46262. bottom: 60/1162
  46263. }
  46264. },
  46265. nude: {
  46266. height: math.unit(8 + 5/12, "feet"),
  46267. weight: math.unit(700, "lb"),
  46268. name: "Nude",
  46269. image: {
  46270. source: "./media/characters/kiva/nude.svg",
  46271. extra: 1102/1055,
  46272. bottom: 60/1162
  46273. }
  46274. },
  46275. },
  46276. [
  46277. {
  46278. name: "Base Height",
  46279. height: math.unit(8 + 5/12, "feet"),
  46280. default: true
  46281. },
  46282. {
  46283. name: "Macro",
  46284. height: math.unit(100, "feet")
  46285. },
  46286. {
  46287. name: "Max",
  46288. height: math.unit(3280, "feet")
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46294. {
  46295. front: {
  46296. height: math.unit(6 + 8/12, "feet"),
  46297. weight: math.unit(250, "lb"),
  46298. name: "Front",
  46299. image: {
  46300. source: "./media/characters/ztragon/front.svg",
  46301. extra: 1825/1684,
  46302. bottom: 98/1923
  46303. }
  46304. },
  46305. },
  46306. [
  46307. {
  46308. name: "Normal",
  46309. height: math.unit(6 + 8/12, "feet"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Macro",
  46314. height: math.unit(80, "feet")
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46320. {
  46321. front: {
  46322. height: math.unit(10.4, "feet"),
  46323. weight: math.unit(2, "tons"),
  46324. name: "Front",
  46325. image: {
  46326. source: "./media/characters/yesenia/front.svg",
  46327. extra: 1479/1474,
  46328. bottom: 233/1712
  46329. }
  46330. },
  46331. },
  46332. [
  46333. {
  46334. name: "Normal",
  46335. height: math.unit(10.4, "feet"),
  46336. default: true
  46337. },
  46338. ]
  46339. ))
  46340. characterMakers.push(() => makeCharacter(
  46341. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46342. {
  46343. normal: {
  46344. height: math.unit(6 + 1/12, "feet"),
  46345. weight: math.unit(180, "lb"),
  46346. name: "Normal",
  46347. image: {
  46348. source: "./media/characters/leanne-lycheborne/normal.svg",
  46349. extra: 1748/1660,
  46350. bottom: 98/1846
  46351. }
  46352. },
  46353. were: {
  46354. height: math.unit(12, "feet"),
  46355. weight: math.unit(1600, "lb"),
  46356. name: "Were",
  46357. image: {
  46358. source: "./media/characters/leanne-lycheborne/were.svg",
  46359. extra: 1485/1432,
  46360. bottom: 66/1551
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Normal",
  46367. height: math.unit(6 + 1/12, "feet"),
  46368. default: true
  46369. },
  46370. ]
  46371. ))
  46372. characterMakers.push(() => makeCharacter(
  46373. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46374. {
  46375. side: {
  46376. height: math.unit(13, "feet"),
  46377. name: "Side",
  46378. image: {
  46379. source: "./media/characters/kira-tyler/side.svg",
  46380. extra: 693/393,
  46381. bottom: 58/751
  46382. }
  46383. },
  46384. },
  46385. [
  46386. {
  46387. name: "Normal",
  46388. height: math.unit(13, "feet"),
  46389. default: true
  46390. },
  46391. ]
  46392. ))
  46393. characterMakers.push(() => makeCharacter(
  46394. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46395. {
  46396. front: {
  46397. height: math.unit(10.3, "feet"),
  46398. weight: math.unit(150, "lb"),
  46399. name: "Front",
  46400. image: {
  46401. source: "./media/characters/blaze/front.svg",
  46402. extra: 1378/1286,
  46403. bottom: 172/1550
  46404. }
  46405. },
  46406. },
  46407. [
  46408. {
  46409. name: "Normal",
  46410. height: math.unit(10.3, "feet"),
  46411. default: true
  46412. },
  46413. ]
  46414. ))
  46415. characterMakers.push(() => makeCharacter(
  46416. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46417. {
  46418. side: {
  46419. height: math.unit(2, "meters"),
  46420. weight: math.unit(400, "kg"),
  46421. name: "Side",
  46422. image: {
  46423. source: "./media/characters/anu/side.svg",
  46424. extra: 506/394,
  46425. bottom: 18/524
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Humanoid",
  46432. height: math.unit(2, "meters")
  46433. },
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(5, "meters"),
  46437. default: true
  46438. },
  46439. ]
  46440. ))
  46441. characterMakers.push(() => makeCharacter(
  46442. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46443. {
  46444. front: {
  46445. height: math.unit(5 + 5/12, "feet"),
  46446. weight: math.unit(170, "lb"),
  46447. name: "Front",
  46448. image: {
  46449. source: "./media/characters/synx-the-lynx/front.svg",
  46450. extra: 1893/1745,
  46451. bottom: 17/1910
  46452. }
  46453. },
  46454. side: {
  46455. height: math.unit(5 + 5/12, "feet"),
  46456. weight: math.unit(170, "lb"),
  46457. name: "Side",
  46458. image: {
  46459. source: "./media/characters/synx-the-lynx/side.svg",
  46460. extra: 1884/1740,
  46461. bottom: 39/1923
  46462. }
  46463. },
  46464. back: {
  46465. height: math.unit(5 + 5/12, "feet"),
  46466. weight: math.unit(170, "lb"),
  46467. name: "Back",
  46468. image: {
  46469. source: "./media/characters/synx-the-lynx/back.svg",
  46470. extra: 1903/1755,
  46471. bottom: 14/1917
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(5 + 5/12, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46485. {
  46486. back: {
  46487. height: math.unit(15, "feet"),
  46488. name: "Back",
  46489. image: {
  46490. source: "./media/characters/nadezda-fex/back.svg",
  46491. extra: 1695/1481,
  46492. bottom: 25/1720
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(15, "feet"),
  46500. default: true
  46501. },
  46502. {
  46503. name: "Macro",
  46504. height: math.unit(2.5, "miles")
  46505. },
  46506. {
  46507. name: "Goddess",
  46508. height: math.unit(2, "multiverses")
  46509. },
  46510. ]
  46511. ))
  46512. characterMakers.push(() => makeCharacter(
  46513. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46514. {
  46515. front: {
  46516. height: math.unit(216, "cm"),
  46517. name: "Front",
  46518. image: {
  46519. source: "./media/characters/lev/front.svg",
  46520. extra: 1728/1670,
  46521. bottom: 82/1810
  46522. }
  46523. },
  46524. back: {
  46525. height: math.unit(216, "cm"),
  46526. name: "Back",
  46527. image: {
  46528. source: "./media/characters/lev/back.svg",
  46529. extra: 1738/1675,
  46530. bottom: 24/1762
  46531. }
  46532. },
  46533. dressed: {
  46534. height: math.unit(216, "cm"),
  46535. name: "Dressed",
  46536. image: {
  46537. source: "./media/characters/lev/dressed.svg",
  46538. extra: 1397/1351,
  46539. bottom: 73/1470
  46540. }
  46541. },
  46542. head: {
  46543. height: math.unit(0.51, "meter"),
  46544. name: "Head",
  46545. image: {
  46546. source: "./media/characters/lev/head.svg"
  46547. }
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Normal",
  46553. height: math.unit(216, "cm"),
  46554. default: true
  46555. },
  46556. {
  46557. name: "Relatively Macro",
  46558. height: math.unit(80, "meters")
  46559. },
  46560. {
  46561. name: "Megamacro",
  46562. height: math.unit(21600, "meters")
  46563. },
  46564. {
  46565. name: "Megamacro+",
  46566. height: math.unit(64800, "meters")
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(2, "meters"),
  46575. weight: math.unit(80, "kg"),
  46576. name: "Front",
  46577. image: {
  46578. source: "./media/characters/moka/front.svg",
  46579. extra: 1337/1255,
  46580. bottom: 58/1395
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Micro",
  46587. height: math.unit(15, "cm")
  46588. },
  46589. {
  46590. name: "Normal",
  46591. height: math.unit(2, "meters"),
  46592. default: true
  46593. },
  46594. {
  46595. name: "Macro",
  46596. height: math.unit(20, "meters"),
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46602. {
  46603. front: {
  46604. height: math.unit(9, "feet"),
  46605. weight: math.unit(240, "lb"),
  46606. name: "Front",
  46607. image: {
  46608. source: "./media/characters/kuzco/front.svg",
  46609. extra: 1593/1487,
  46610. bottom: 32/1625
  46611. }
  46612. },
  46613. side: {
  46614. height: math.unit(9, "feet"),
  46615. weight: math.unit(240, "lb"),
  46616. name: "Side",
  46617. image: {
  46618. source: "./media/characters/kuzco/side.svg",
  46619. extra: 1575/1485,
  46620. bottom: 30/1605
  46621. }
  46622. },
  46623. back: {
  46624. height: math.unit(9, "feet"),
  46625. weight: math.unit(240, "lb"),
  46626. name: "Back",
  46627. image: {
  46628. source: "./media/characters/kuzco/back.svg",
  46629. extra: 1603/1514,
  46630. bottom: 14/1617
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(9, "feet"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46644. {
  46645. side: {
  46646. height: math.unit(2, "meters"),
  46647. weight: math.unit(300, "kg"),
  46648. name: "Side",
  46649. image: {
  46650. source: "./media/characters/ceruleus/side.svg",
  46651. extra: 1068/974,
  46652. bottom: 126/1194
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(16, "meters"),
  46660. default: true
  46661. },
  46662. ]
  46663. ))
  46664. characterMakers.push(() => makeCharacter(
  46665. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46666. {
  46667. front: {
  46668. height: math.unit(9, "feet"),
  46669. weight: math.unit(500, "kg"),
  46670. name: "Front",
  46671. image: {
  46672. source: "./media/characters/acouya/front.svg",
  46673. extra: 1660/1473,
  46674. bottom: 28/1688
  46675. }
  46676. },
  46677. },
  46678. [
  46679. {
  46680. name: "Normal",
  46681. height: math.unit(9, "feet"),
  46682. default: true
  46683. },
  46684. ]
  46685. ))
  46686. characterMakers.push(() => makeCharacter(
  46687. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46688. {
  46689. front: {
  46690. height: math.unit(5 + 6/12, "feet"),
  46691. weight: math.unit(195, "lb"),
  46692. name: "Front",
  46693. image: {
  46694. source: "./media/characters/vant/front.svg",
  46695. extra: 1396/1320,
  46696. bottom: 20/1416
  46697. }
  46698. },
  46699. back: {
  46700. height: math.unit(5 + 6/12, "feet"),
  46701. weight: math.unit(195, "lb"),
  46702. name: "Back",
  46703. image: {
  46704. source: "./media/characters/vant/back.svg",
  46705. extra: 1396/1320,
  46706. bottom: 20/1416
  46707. }
  46708. },
  46709. maw: {
  46710. height: math.unit(0.75, "feet"),
  46711. name: "Maw",
  46712. image: {
  46713. source: "./media/characters/vant/maw.svg"
  46714. }
  46715. },
  46716. paw: {
  46717. height: math.unit(1.07, "feet"),
  46718. name: "Paw",
  46719. image: {
  46720. source: "./media/characters/vant/paw.svg"
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Micro",
  46727. height: math.unit(0.25, "inches")
  46728. },
  46729. {
  46730. name: "Normal",
  46731. height: math.unit(5 + 6/12, "feet"),
  46732. default: true
  46733. },
  46734. {
  46735. name: "Macro",
  46736. height: math.unit(75, "feet")
  46737. },
  46738. ]
  46739. ))
  46740. characterMakers.push(() => makeCharacter(
  46741. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46742. {
  46743. front: {
  46744. height: math.unit(30, "meters"),
  46745. weight: math.unit(363, "tons"),
  46746. name: "Front",
  46747. image: {
  46748. source: "./media/characters/ahra/front.svg",
  46749. extra: 1914/1814,
  46750. bottom: 46/1960
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Macro",
  46757. height: math.unit(30, "meters"),
  46758. default: true
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46764. {
  46765. undressed: {
  46766. height: math.unit(2, "m"),
  46767. weight: math.unit(250, "kg"),
  46768. name: "Undressed",
  46769. image: {
  46770. source: "./media/characters/coriander/undressed.svg",
  46771. extra: 1757/1606,
  46772. bottom: 107/1864
  46773. }
  46774. },
  46775. dressed: {
  46776. height: math.unit(2, "m"),
  46777. weight: math.unit(250, "kg"),
  46778. name: "Dressed",
  46779. image: {
  46780. source: "./media/characters/coriander/dressed.svg",
  46781. extra: 1757/1606,
  46782. bottom: 107/1864
  46783. }
  46784. },
  46785. },
  46786. [
  46787. {
  46788. name: "Normal",
  46789. height: math.unit(4, "meters"),
  46790. default: true
  46791. },
  46792. {
  46793. name: "XL",
  46794. height: math.unit(6, "meters")
  46795. },
  46796. {
  46797. name: "XXL",
  46798. height: math.unit(8, "meters")
  46799. },
  46800. ]
  46801. ))
  46802. characterMakers.push(() => makeCharacter(
  46803. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46804. {
  46805. front: {
  46806. height: math.unit(6, "feet"),
  46807. name: "Front",
  46808. image: {
  46809. source: "./media/characters/syrinx/front.svg",
  46810. extra: 1557/1259,
  46811. bottom: 171/1728
  46812. }
  46813. },
  46814. },
  46815. [
  46816. {
  46817. name: "Normal",
  46818. height: math.unit(6 + 3/12, "feet"),
  46819. default: true
  46820. },
  46821. ]
  46822. ))
  46823. characterMakers.push(() => makeCharacter(
  46824. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46825. {
  46826. front: {
  46827. height: math.unit(11 + 6/12, "feet"),
  46828. weight: math.unit(1.5, "tons"),
  46829. name: "Front",
  46830. image: {
  46831. source: "./media/characters/bor/front.svg",
  46832. extra: 1189/1109,
  46833. bottom: 170/1359
  46834. }
  46835. },
  46836. },
  46837. [
  46838. {
  46839. name: "Normal",
  46840. height: math.unit(11 + 6/12, "feet"),
  46841. default: true
  46842. },
  46843. {
  46844. name: "Macro",
  46845. height: math.unit(32 + 9/12, "feet")
  46846. },
  46847. ]
  46848. ))
  46849. characterMakers.push(() => makeCharacter(
  46850. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46851. {
  46852. anthro: {
  46853. height: math.unit(9, "feet"),
  46854. weight: math.unit(2076, "lb"),
  46855. name: "Anthro",
  46856. image: {
  46857. source: "./media/characters/abacus/anthro.svg",
  46858. extra: 1540/1494,
  46859. bottom: 233/1773
  46860. }
  46861. },
  46862. pigeon: {
  46863. height: math.unit(1, "feet"),
  46864. name: "Pigeon",
  46865. image: {
  46866. source: "./media/characters/abacus/pigeon.svg",
  46867. extra: 528/525,
  46868. bottom: 46/574
  46869. }
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(9, "feet"),
  46876. default: true
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46882. {
  46883. side: {
  46884. height: math.unit(6, "feet"),
  46885. name: "Side",
  46886. image: {
  46887. source: "./media/characters/delkhan/side.svg",
  46888. extra: 1884/1786,
  46889. bottom: 308/2192
  46890. }
  46891. },
  46892. head: {
  46893. height: math.unit(3.38, "feet"),
  46894. name: "Head",
  46895. image: {
  46896. source: "./media/characters/delkhan/head.svg"
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(72, "feet"),
  46904. default: true
  46905. },
  46906. {
  46907. name: "Giant",
  46908. height: math.unit(172, "feet")
  46909. },
  46910. ]
  46911. ))
  46912. characterMakers.push(() => makeCharacter(
  46913. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46914. {
  46915. standing: {
  46916. height: math.unit(6, "feet"),
  46917. name: "Standing",
  46918. image: {
  46919. source: "./media/characters/euchidat/standing.svg",
  46920. extra: 1612/1553,
  46921. bottom: 116/1728
  46922. }
  46923. },
  46924. leaning: {
  46925. height: math.unit(6, "feet"),
  46926. name: "Leaning",
  46927. image: {
  46928. source: "./media/characters/euchidat/leaning.svg",
  46929. extra: 1719/1674,
  46930. bottom: 27/1746
  46931. }
  46932. },
  46933. },
  46934. [
  46935. {
  46936. name: "Normal",
  46937. height: math.unit(175, "feet"),
  46938. default: true
  46939. },
  46940. {
  46941. name: "Megamacro",
  46942. height: math.unit(190, "miles")
  46943. },
  46944. {
  46945. name: "Gigamacro",
  46946. height: math.unit(190000, "miles")
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(6, "feet"),
  46955. weight: math.unit(150, "lb"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/rebecca-stack/front.svg",
  46959. extra: 1256/1201,
  46960. bottom: 18/1274
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(5 + 8/12, "feet"),
  46968. default: true
  46969. },
  46970. {
  46971. name: "Demolitionist",
  46972. height: math.unit(200, "feet")
  46973. },
  46974. {
  46975. name: "Out of Control",
  46976. height: math.unit(2, "miles")
  46977. },
  46978. {
  46979. name: "Giga",
  46980. height: math.unit(7200, "miles")
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(6, "feet"),
  46989. weight: math.unit(150, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/jenny-cartwright/front.svg",
  46993. extra: 1384/1376,
  46994. bottom: 58/1442
  46995. }
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(6 + 7/12, "feet"),
  47002. default: true
  47003. },
  47004. {
  47005. name: "Librarian",
  47006. height: math.unit(55, "feet")
  47007. },
  47008. {
  47009. name: "Sightseer",
  47010. height: math.unit(50, "miles")
  47011. },
  47012. {
  47013. name: "Giga",
  47014. height: math.unit(30000, "miles")
  47015. },
  47016. ]
  47017. ))
  47018. characterMakers.push(() => makeCharacter(
  47019. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47020. {
  47021. nude: {
  47022. height: math.unit(8, "feet"),
  47023. weight: math.unit(225, "lb"),
  47024. name: "Nude",
  47025. image: {
  47026. source: "./media/characters/marvy/nude.svg",
  47027. extra: 1900/1683,
  47028. bottom: 89/1989
  47029. }
  47030. },
  47031. dressed: {
  47032. height: math.unit(8, "feet"),
  47033. weight: math.unit(225, "lb"),
  47034. name: "Dressed",
  47035. image: {
  47036. source: "./media/characters/marvy/dressed.svg",
  47037. extra: 1900/1683,
  47038. bottom: 89/1989
  47039. }
  47040. },
  47041. head: {
  47042. height: math.unit(2.85, "feet"),
  47043. name: "Head",
  47044. image: {
  47045. source: "./media/characters/marvy/head.svg"
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(8, "feet"),
  47053. default: true
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47059. {
  47060. front: {
  47061. height: math.unit(8, "feet"),
  47062. weight: math.unit(250, "lb"),
  47063. name: "Front",
  47064. image: {
  47065. source: "./media/characters/leah/front.svg",
  47066. extra: 1257/1149,
  47067. bottom: 109/1366
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(8, "feet"),
  47075. default: true
  47076. },
  47077. {
  47078. name: "Minimacro",
  47079. height: math.unit(40, "feet")
  47080. },
  47081. {
  47082. name: "Macro",
  47083. height: math.unit(124, "feet")
  47084. },
  47085. {
  47086. name: "Megamacro",
  47087. height: math.unit(850, "feet")
  47088. },
  47089. ]
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47093. {
  47094. side: {
  47095. height: math.unit(13 + 6/12, "feet"),
  47096. weight: math.unit(3200, "lb"),
  47097. name: "Side",
  47098. image: {
  47099. source: "./media/characters/alvir/side.svg",
  47100. extra: 896/589,
  47101. bottom: 26/922
  47102. }
  47103. },
  47104. },
  47105. [
  47106. {
  47107. name: "Normal",
  47108. height: math.unit(13 + 6/12, "feet"),
  47109. default: true
  47110. },
  47111. ]
  47112. ))
  47113. characterMakers.push(() => makeCharacter(
  47114. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47115. {
  47116. front: {
  47117. height: math.unit(5 + 4/12, "feet"),
  47118. weight: math.unit(236, "lb"),
  47119. name: "Front",
  47120. image: {
  47121. source: "./media/characters/zaina-khalil/front.svg",
  47122. extra: 1533/1485,
  47123. bottom: 94/1627
  47124. }
  47125. },
  47126. side: {
  47127. height: math.unit(5 + 4/12, "feet"),
  47128. weight: math.unit(236, "lb"),
  47129. name: "Side",
  47130. image: {
  47131. source: "./media/characters/zaina-khalil/side.svg",
  47132. extra: 1537/1498,
  47133. bottom: 66/1603
  47134. }
  47135. },
  47136. back: {
  47137. height: math.unit(5 + 4/12, "feet"),
  47138. weight: math.unit(236, "lb"),
  47139. name: "Back",
  47140. image: {
  47141. source: "./media/characters/zaina-khalil/back.svg",
  47142. extra: 1546/1494,
  47143. bottom: 89/1635
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Normal",
  47150. height: math.unit(5 + 4/12, "feet"),
  47151. default: true
  47152. },
  47153. ]
  47154. ))
  47155. characterMakers.push(() => makeCharacter(
  47156. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47157. {
  47158. side: {
  47159. height: math.unit(12, "feet"),
  47160. weight: math.unit(4000, "lb"),
  47161. name: "Side",
  47162. image: {
  47163. source: "./media/characters/terry/side.svg",
  47164. extra: 1518/1439,
  47165. bottom: 149/1667
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Normal",
  47172. height: math.unit(12, "feet"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47179. {
  47180. front: {
  47181. height: math.unit(12, "feet"),
  47182. weight: math.unit(1500, "lb"),
  47183. name: "Front",
  47184. image: {
  47185. source: "./media/characters/kahea/front.svg",
  47186. extra: 1722/1617,
  47187. bottom: 179/1901
  47188. }
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Normal",
  47194. height: math.unit(12, "feet"),
  47195. default: true
  47196. },
  47197. ]
  47198. ))
  47199. characterMakers.push(() => makeCharacter(
  47200. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47201. {
  47202. demonFront: {
  47203. height: math.unit(36, "feet"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/alex-xuria/demon-front.svg",
  47207. extra: 1705/1673,
  47208. bottom: 198/1903
  47209. },
  47210. form: "demon",
  47211. default: true
  47212. },
  47213. demonBack: {
  47214. height: math.unit(36, "feet"),
  47215. name: "Back",
  47216. image: {
  47217. source: "./media/characters/alex-xuria/demon-back.svg",
  47218. extra: 1725/1693,
  47219. bottom: 70/1795
  47220. },
  47221. form: "demon"
  47222. },
  47223. demonHead: {
  47224. height: math.unit(2.14, "meters"),
  47225. name: "Head",
  47226. image: {
  47227. source: "./media/characters/alex-xuria/demon-head.svg"
  47228. },
  47229. form: "demon"
  47230. },
  47231. demonHand: {
  47232. height: math.unit(1.61, "meters"),
  47233. name: "Hand",
  47234. image: {
  47235. source: "./media/characters/alex-xuria/demon-hand.svg"
  47236. },
  47237. form: "demon"
  47238. },
  47239. demonPaw: {
  47240. height: math.unit(1.35, "meters"),
  47241. name: "Paw",
  47242. image: {
  47243. source: "./media/characters/alex-xuria/demon-paw.svg"
  47244. },
  47245. form: "demon"
  47246. },
  47247. demonFoot: {
  47248. height: math.unit(2.2, "meters"),
  47249. name: "Foot",
  47250. image: {
  47251. source: "./media/characters/alex-xuria/demon-foot.svg"
  47252. },
  47253. form: "demon"
  47254. },
  47255. demonCock: {
  47256. height: math.unit(1.74, "meters"),
  47257. name: "Cock",
  47258. image: {
  47259. source: "./media/characters/alex-xuria/demon-cock.svg"
  47260. },
  47261. form: "demon"
  47262. },
  47263. demonTailClosed: {
  47264. height: math.unit(1.47, "meters"),
  47265. name: "Tail (Closed)",
  47266. image: {
  47267. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47268. },
  47269. form: "demon"
  47270. },
  47271. demonTailOpen: {
  47272. height: math.unit(2.85, "meters"),
  47273. name: "Tail (Open)",
  47274. image: {
  47275. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47276. },
  47277. form: "demon"
  47278. },
  47279. incubusFront: {
  47280. height: math.unit(12, "feet"),
  47281. name: "Front",
  47282. image: {
  47283. source: "./media/characters/alex-xuria/incubus-front.svg",
  47284. extra: 1754/1677,
  47285. bottom: 125/1879
  47286. },
  47287. form: "incubus",
  47288. default: true
  47289. },
  47290. incubusBack: {
  47291. height: math.unit(12, "feet"),
  47292. name: "Back",
  47293. image: {
  47294. source: "./media/characters/alex-xuria/incubus-back.svg",
  47295. extra: 1702/1647,
  47296. bottom: 30/1732
  47297. },
  47298. form: "incubus"
  47299. },
  47300. incubusHead: {
  47301. height: math.unit(3.45, "feet"),
  47302. name: "Head",
  47303. image: {
  47304. source: "./media/characters/alex-xuria/incubus-head.svg"
  47305. },
  47306. form: "incubus"
  47307. },
  47308. rabbitFront: {
  47309. height: math.unit(6, "feet"),
  47310. name: "Front",
  47311. image: {
  47312. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47313. extra: 1369/1349,
  47314. bottom: 45/1414
  47315. },
  47316. form: "rabbit",
  47317. default: true
  47318. },
  47319. rabbitSide: {
  47320. height: math.unit(6, "feet"),
  47321. name: "Side",
  47322. image: {
  47323. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47324. extra: 1370/1356,
  47325. bottom: 37/1407
  47326. },
  47327. form: "rabbit"
  47328. },
  47329. rabbitBack: {
  47330. height: math.unit(6, "feet"),
  47331. name: "Back",
  47332. image: {
  47333. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47334. extra: 1375/1358,
  47335. bottom: 43/1418
  47336. },
  47337. form: "rabbit"
  47338. },
  47339. },
  47340. [
  47341. {
  47342. name: "Normal",
  47343. height: math.unit(6, "feet"),
  47344. default: true,
  47345. form: "rabbit"
  47346. },
  47347. {
  47348. name: "Incubus",
  47349. height: math.unit(12, "feet"),
  47350. default: true,
  47351. form: "incubus"
  47352. },
  47353. {
  47354. name: "Demon",
  47355. height: math.unit(36, "feet"),
  47356. default: true,
  47357. form: "demon"
  47358. }
  47359. ],
  47360. {
  47361. "demon": {
  47362. name: "Demon",
  47363. default: true
  47364. },
  47365. "incubus": {
  47366. name: "Incubus",
  47367. },
  47368. "rabbit": {
  47369. name: "Rabbit"
  47370. }
  47371. }
  47372. ))
  47373. characterMakers.push(() => makeCharacter(
  47374. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47375. {
  47376. front: {
  47377. height: math.unit(7 + 5/12, "feet"),
  47378. weight: math.unit(510, "lb"),
  47379. name: "Front",
  47380. image: {
  47381. source: "./media/characters/syrup/front.svg",
  47382. extra: 932/916,
  47383. bottom: 26/958
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Normal",
  47390. height: math.unit(7 + 5/12, "feet"),
  47391. default: true
  47392. },
  47393. {
  47394. name: "Big",
  47395. height: math.unit(50, "feet")
  47396. },
  47397. {
  47398. name: "Macro",
  47399. height: math.unit(300, "feet")
  47400. },
  47401. {
  47402. name: "Megamacro",
  47403. height: math.unit(1, "mile")
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47409. {
  47410. front: {
  47411. height: math.unit(6 + 9/12, "feet"),
  47412. name: "Front",
  47413. image: {
  47414. source: "./media/characters/zeimne/front.svg",
  47415. extra: 1969/1806,
  47416. bottom: 53/2022
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Normal",
  47423. height: math.unit(6 + 9/12, "feet"),
  47424. default: true
  47425. },
  47426. {
  47427. name: "Giant",
  47428. height: math.unit(550, "feet")
  47429. },
  47430. {
  47431. name: "Mega",
  47432. height: math.unit(3, "miles")
  47433. },
  47434. {
  47435. name: "Giga",
  47436. height: math.unit(250, "miles")
  47437. },
  47438. {
  47439. name: "Tera",
  47440. height: math.unit(1, "AU")
  47441. },
  47442. ]
  47443. ))
  47444. characterMakers.push(() => makeCharacter(
  47445. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47446. {
  47447. front: {
  47448. height: math.unit(5 + 2/12, "feet"),
  47449. name: "Front",
  47450. image: {
  47451. source: "./media/characters/grar/front.svg",
  47452. extra: 1331/1119,
  47453. bottom: 60/1391
  47454. }
  47455. },
  47456. back: {
  47457. height: math.unit(5 + 2/12, "feet"),
  47458. name: "Back",
  47459. image: {
  47460. source: "./media/characters/grar/back.svg",
  47461. extra: 1385/1169,
  47462. bottom: 23/1408
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(5 + 2/12, "feet"),
  47470. default: true
  47471. },
  47472. ]
  47473. ))
  47474. characterMakers.push(() => makeCharacter(
  47475. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47476. {
  47477. front: {
  47478. height: math.unit(13 + 7/12, "feet"),
  47479. weight: math.unit(2200, "lb"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/endraya/front.svg",
  47483. extra: 1289/1215,
  47484. bottom: 50/1339
  47485. }
  47486. },
  47487. nude: {
  47488. height: math.unit(13 + 7/12, "feet"),
  47489. weight: math.unit(2200, "lb"),
  47490. name: "Nude",
  47491. image: {
  47492. source: "./media/characters/endraya/nude.svg",
  47493. extra: 1247/1171,
  47494. bottom: 40/1287
  47495. }
  47496. },
  47497. head: {
  47498. height: math.unit(2.6, "feet"),
  47499. name: "Head",
  47500. image: {
  47501. source: "./media/characters/endraya/head.svg"
  47502. }
  47503. },
  47504. slit: {
  47505. height: math.unit(3.4, "feet"),
  47506. name: "Slit",
  47507. image: {
  47508. source: "./media/characters/endraya/slit.svg"
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Normal",
  47515. height: math.unit(13 + 7/12, "feet"),
  47516. default: true
  47517. },
  47518. {
  47519. name: "Macro",
  47520. height: math.unit(200, "feet")
  47521. },
  47522. ]
  47523. ))
  47524. characterMakers.push(() => makeCharacter(
  47525. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47526. {
  47527. front: {
  47528. height: math.unit(1.81, "meters"),
  47529. weight: math.unit(69, "kg"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/rodryana/front.svg",
  47533. extra: 2002/1921,
  47534. bottom: 53/2055
  47535. }
  47536. },
  47537. back: {
  47538. height: math.unit(1.81, "meters"),
  47539. weight: math.unit(69, "kg"),
  47540. name: "Back",
  47541. image: {
  47542. source: "./media/characters/rodryana/back.svg",
  47543. extra: 1993/1926,
  47544. bottom: 48/2041
  47545. }
  47546. },
  47547. maw: {
  47548. height: math.unit(0.19769417475, "meters"),
  47549. name: "Maw",
  47550. image: {
  47551. source: "./media/characters/rodryana/maw.svg"
  47552. }
  47553. },
  47554. slit: {
  47555. height: math.unit(0.31631067961, "meters"),
  47556. name: "Slit",
  47557. image: {
  47558. source: "./media/characters/rodryana/slit.svg"
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(1.81, "meters")
  47566. },
  47567. {
  47568. name: "Mini Macro",
  47569. height: math.unit(181, "meters")
  47570. },
  47571. {
  47572. name: "Macro",
  47573. height: math.unit(452, "meters"),
  47574. default: true
  47575. },
  47576. {
  47577. name: "Mega Macro",
  47578. height: math.unit(1.375, "km")
  47579. },
  47580. {
  47581. name: "Giga Macro",
  47582. height: math.unit(13.575, "km")
  47583. },
  47584. ]
  47585. ))
  47586. characterMakers.push(() => makeCharacter(
  47587. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47588. {
  47589. front: {
  47590. height: math.unit(6, "feet"),
  47591. weight: math.unit(1000, "lb"),
  47592. name: "Front",
  47593. image: {
  47594. source: "./media/characters/asaya/front.svg",
  47595. extra: 1460/1200,
  47596. bottom: 71/1531
  47597. }
  47598. },
  47599. },
  47600. [
  47601. {
  47602. name: "Normal",
  47603. height: math.unit(8, "km"),
  47604. default: true
  47605. },
  47606. ]
  47607. ))
  47608. characterMakers.push(() => makeCharacter(
  47609. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47610. {
  47611. front: {
  47612. height: math.unit(3.5, "meters"),
  47613. name: "Front",
  47614. image: {
  47615. source: "./media/characters/sarzu-and-israz/front.svg",
  47616. extra: 1570/1558,
  47617. bottom: 150/1720
  47618. },
  47619. },
  47620. back: {
  47621. height: math.unit(3.5, "meters"),
  47622. name: "Back",
  47623. image: {
  47624. source: "./media/characters/sarzu-and-israz/back.svg",
  47625. extra: 1523/1509,
  47626. bottom: 132/1655
  47627. },
  47628. },
  47629. frontFemale: {
  47630. height: math.unit(3.5, "meters"),
  47631. name: "Front (Female)",
  47632. image: {
  47633. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47634. extra: 1570/1558,
  47635. bottom: 150/1720
  47636. },
  47637. },
  47638. frontHerm: {
  47639. height: math.unit(3.5, "meters"),
  47640. name: "Front (Herm)",
  47641. image: {
  47642. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47643. extra: 1570/1558,
  47644. bottom: 150/1720
  47645. },
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(3.5, "meters"),
  47652. default: true,
  47653. },
  47654. {
  47655. name: "Macro",
  47656. height: math.unit(65.5, "meters"),
  47657. },
  47658. ],
  47659. ))
  47660. characterMakers.push(() => makeCharacter(
  47661. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47662. {
  47663. front: {
  47664. height: math.unit(6, "feet"),
  47665. weight: math.unit(250, "lb"),
  47666. name: "Front",
  47667. image: {
  47668. source: "./media/characters/zenimma/front.svg",
  47669. extra: 1346/1320,
  47670. bottom: 58/1404
  47671. }
  47672. },
  47673. back: {
  47674. height: math.unit(6, "feet"),
  47675. weight: math.unit(250, "lb"),
  47676. name: "Back",
  47677. image: {
  47678. source: "./media/characters/zenimma/back.svg",
  47679. extra: 1324/1308,
  47680. bottom: 44/1368
  47681. }
  47682. },
  47683. dick: {
  47684. height: math.unit(1.44, "feet"),
  47685. name: "Dick",
  47686. image: {
  47687. source: "./media/characters/zenimma/dick.svg"
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Canon Height",
  47694. height: math.unit(66, "miles"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47701. {
  47702. nude: {
  47703. height: math.unit(6, "feet"),
  47704. weight: math.unit(150, "lb"),
  47705. name: "Nude",
  47706. image: {
  47707. source: "./media/characters/shavon/nude.svg",
  47708. extra: 1242/1096,
  47709. bottom: 98/1340
  47710. }
  47711. },
  47712. dressed: {
  47713. height: math.unit(6, "feet"),
  47714. weight: math.unit(150, "lb"),
  47715. name: "Dressed",
  47716. image: {
  47717. source: "./media/characters/shavon/dressed.svg",
  47718. extra: 1242/1096,
  47719. bottom: 98/1340
  47720. }
  47721. },
  47722. },
  47723. [
  47724. {
  47725. name: "Macro",
  47726. height: math.unit(255, "feet"),
  47727. default: true
  47728. },
  47729. ]
  47730. ))
  47731. characterMakers.push(() => makeCharacter(
  47732. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47733. {
  47734. front: {
  47735. height: math.unit(6, "feet"),
  47736. name: "Front",
  47737. image: {
  47738. source: "./media/characters/steph/front.svg",
  47739. extra: 1430/1330,
  47740. bottom: 54/1484
  47741. }
  47742. },
  47743. },
  47744. [
  47745. {
  47746. name: "Normal",
  47747. height: math.unit(6, "feet"),
  47748. default: true
  47749. },
  47750. ]
  47751. ))
  47752. characterMakers.push(() => makeCharacter(
  47753. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47754. {
  47755. front: {
  47756. height: math.unit(9, "feet"),
  47757. weight: math.unit(400, "lb"),
  47758. name: "Front",
  47759. image: {
  47760. source: "./media/characters/kil'aman/front.svg",
  47761. extra: 1210/1159,
  47762. bottom: 109/1319
  47763. }
  47764. },
  47765. head: {
  47766. height: math.unit(2.14, "feet"),
  47767. name: "Head",
  47768. image: {
  47769. source: "./media/characters/kil'aman/head.svg"
  47770. }
  47771. },
  47772. maw: {
  47773. height: math.unit(1.21, "feet"),
  47774. name: "Maw",
  47775. image: {
  47776. source: "./media/characters/kil'aman/maw.svg"
  47777. }
  47778. },
  47779. foot: {
  47780. height: math.unit(1.7, "feet"),
  47781. name: "Foot",
  47782. image: {
  47783. source: "./media/characters/kil'aman/foot.svg"
  47784. }
  47785. },
  47786. dick: {
  47787. height: math.unit(2.1, "feet"),
  47788. name: "Dick",
  47789. image: {
  47790. source: "./media/characters/kil'aman/dick.svg"
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(9, "feet")
  47798. },
  47799. {
  47800. name: "Canon Height",
  47801. height: math.unit(10, "miles"),
  47802. default: true
  47803. },
  47804. {
  47805. name: "Maximum",
  47806. height: math.unit(6e9, "miles")
  47807. },
  47808. ]
  47809. ))
  47810. characterMakers.push(() => makeCharacter(
  47811. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47812. {
  47813. front: {
  47814. height: math.unit(90, "feet"),
  47815. weight: math.unit(675000, "lb"),
  47816. name: "Front",
  47817. image: {
  47818. source: "./media/characters/qadan/front.svg",
  47819. extra: 1012/1004,
  47820. bottom: 78/1090
  47821. }
  47822. },
  47823. back: {
  47824. height: math.unit(90, "feet"),
  47825. weight: math.unit(675000, "lb"),
  47826. name: "Back",
  47827. image: {
  47828. source: "./media/characters/qadan/back.svg",
  47829. extra: 1042/1031,
  47830. bottom: 55/1097
  47831. }
  47832. },
  47833. armored: {
  47834. height: math.unit(90, "feet"),
  47835. weight: math.unit(675000, "lb"),
  47836. name: "Armored",
  47837. image: {
  47838. source: "./media/characters/qadan/armored.svg",
  47839. extra: 1047/1037,
  47840. bottom: 48/1095
  47841. }
  47842. },
  47843. },
  47844. [
  47845. {
  47846. name: "Normal",
  47847. height: math.unit(90, "feet"),
  47848. default: true
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47854. {
  47855. front: {
  47856. height: math.unit(6, "feet"),
  47857. weight: math.unit(225, "lb"),
  47858. name: "Front",
  47859. image: {
  47860. source: "./media/characters/brooke/front.svg",
  47861. extra: 1050/1010,
  47862. bottom: 66/1116
  47863. }
  47864. },
  47865. back: {
  47866. height: math.unit(6, "feet"),
  47867. weight: math.unit(225, "lb"),
  47868. name: "Back",
  47869. image: {
  47870. source: "./media/characters/brooke/back.svg",
  47871. extra: 1053/1013,
  47872. bottom: 41/1094
  47873. }
  47874. },
  47875. dressed: {
  47876. height: math.unit(6, "feet"),
  47877. weight: math.unit(225, "lb"),
  47878. name: "Dressed",
  47879. image: {
  47880. source: "./media/characters/brooke/dressed.svg",
  47881. extra: 1050/1010,
  47882. bottom: 66/1116
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Canon Height",
  47889. height: math.unit(500, "miles"),
  47890. default: true
  47891. },
  47892. ]
  47893. ))
  47894. characterMakers.push(() => makeCharacter(
  47895. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47896. {
  47897. front: {
  47898. height: math.unit(6 + 2/12, "feet"),
  47899. weight: math.unit(210, "lb"),
  47900. name: "Front",
  47901. image: {
  47902. source: "./media/characters/wubs/front.svg",
  47903. extra: 1345/1325,
  47904. bottom: 70/1415
  47905. }
  47906. },
  47907. back: {
  47908. height: math.unit(6 + 2/12, "feet"),
  47909. weight: math.unit(210, "lb"),
  47910. name: "Back",
  47911. image: {
  47912. source: "./media/characters/wubs/back.svg",
  47913. extra: 1296/1275,
  47914. bottom: 58/1354
  47915. }
  47916. },
  47917. },
  47918. [
  47919. {
  47920. name: "Normal",
  47921. height: math.unit(6 + 2/12, "feet"),
  47922. default: true
  47923. },
  47924. {
  47925. name: "Macro",
  47926. height: math.unit(1000, "feet")
  47927. },
  47928. {
  47929. name: "Megamacro",
  47930. height: math.unit(1, "mile")
  47931. },
  47932. ]
  47933. ))
  47934. characterMakers.push(() => makeCharacter(
  47935. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47936. {
  47937. front: {
  47938. height: math.unit(4, "feet"),
  47939. weight: math.unit(120, "lb"),
  47940. name: "Front",
  47941. image: {
  47942. source: "./media/characters/blue/front.svg",
  47943. extra: 1636/1525,
  47944. bottom: 43/1679
  47945. }
  47946. },
  47947. back: {
  47948. height: math.unit(4, "feet"),
  47949. weight: math.unit(120, "lb"),
  47950. name: "Back",
  47951. image: {
  47952. source: "./media/characters/blue/back.svg",
  47953. extra: 1660/1560,
  47954. bottom: 57/1717
  47955. }
  47956. },
  47957. paws: {
  47958. height: math.unit(0.826, "feet"),
  47959. name: "Paws",
  47960. image: {
  47961. source: "./media/characters/blue/paws.svg"
  47962. }
  47963. },
  47964. },
  47965. [
  47966. {
  47967. name: "Micro",
  47968. height: math.unit(3, "inches")
  47969. },
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(4, "feet"),
  47973. default: true
  47974. },
  47975. {
  47976. name: "Femenine Form",
  47977. height: math.unit(14, "feet")
  47978. },
  47979. {
  47980. name: "Werebat Form",
  47981. height: math.unit(18, "feet")
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47987. {
  47988. female: {
  47989. height: math.unit(7 + 4/12, "feet"),
  47990. weight: math.unit(243, "lb"),
  47991. name: "Female",
  47992. image: {
  47993. source: "./media/characters/kaya/female.svg",
  47994. extra: 975/898,
  47995. bottom: 34/1009
  47996. }
  47997. },
  47998. herm: {
  47999. height: math.unit(7 + 4/12, "feet"),
  48000. weight: math.unit(243, "lb"),
  48001. name: "Herm",
  48002. image: {
  48003. source: "./media/characters/kaya/herm.svg",
  48004. extra: 975/898,
  48005. bottom: 34/1009
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Normal",
  48012. height: math.unit(7 + 4/12, "feet"),
  48013. default: true
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48019. {
  48020. female: {
  48021. height: math.unit(9 + 4/12, "feet"),
  48022. weight: math.unit(398, "lb"),
  48023. name: "Female",
  48024. image: {
  48025. source: "./media/characters/kassandra/female.svg",
  48026. extra: 908/839,
  48027. bottom: 61/969
  48028. }
  48029. },
  48030. intersex: {
  48031. height: math.unit(9 + 4/12, "feet"),
  48032. weight: math.unit(398, "lb"),
  48033. name: "Intersex",
  48034. image: {
  48035. source: "./media/characters/kassandra/intersex.svg",
  48036. extra: 908/839,
  48037. bottom: 61/969
  48038. }
  48039. },
  48040. },
  48041. [
  48042. {
  48043. name: "Normal",
  48044. height: math.unit(9 + 4/12, "feet"),
  48045. default: true
  48046. },
  48047. ]
  48048. ))
  48049. characterMakers.push(() => makeCharacter(
  48050. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48051. {
  48052. front: {
  48053. height: math.unit(3, "meters"),
  48054. name: "Front",
  48055. image: {
  48056. source: "./media/characters/amy/front.svg",
  48057. extra: 1380/1343,
  48058. bottom: 70/1450
  48059. }
  48060. },
  48061. back: {
  48062. height: math.unit(3, "meters"),
  48063. name: "Back",
  48064. image: {
  48065. source: "./media/characters/amy/back.svg",
  48066. extra: 1380/1347,
  48067. bottom: 66/1446
  48068. }
  48069. },
  48070. },
  48071. [
  48072. {
  48073. name: "Normal",
  48074. height: math.unit(3, "meters"),
  48075. default: true
  48076. },
  48077. ]
  48078. ))
  48079. characterMakers.push(() => makeCharacter(
  48080. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48081. {
  48082. side: {
  48083. height: math.unit(47, "cm"),
  48084. weight: math.unit(10.8, "kg"),
  48085. name: "Side",
  48086. image: {
  48087. source: "./media/characters/alphaschakal/side.svg",
  48088. extra: 1058/568,
  48089. bottom: 62/1120
  48090. }
  48091. },
  48092. back: {
  48093. height: math.unit(78, "cm"),
  48094. weight: math.unit(10.8, "kg"),
  48095. name: "Back",
  48096. image: {
  48097. source: "./media/characters/alphaschakal/back.svg",
  48098. extra: 1102/942,
  48099. bottom: 185/1287
  48100. }
  48101. },
  48102. head: {
  48103. height: math.unit(28, "cm"),
  48104. name: "Head",
  48105. image: {
  48106. source: "./media/characters/alphaschakal/head.svg",
  48107. extra: 696/508,
  48108. bottom: 0/696
  48109. }
  48110. },
  48111. paw: {
  48112. height: math.unit(16, "cm"),
  48113. name: "Paw",
  48114. image: {
  48115. source: "./media/characters/alphaschakal/paw.svg"
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Normal",
  48122. height: math.unit(47, "cm"),
  48123. default: true
  48124. },
  48125. {
  48126. name: "Macro",
  48127. height: math.unit(340, "cm")
  48128. },
  48129. ]
  48130. ))
  48131. characterMakers.push(() => makeCharacter(
  48132. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48133. {
  48134. front: {
  48135. height: math.unit(36, "earths"),
  48136. name: "Front",
  48137. image: {
  48138. source: "./media/characters/ecobyss/front.svg",
  48139. extra: 1282/1215,
  48140. bottom: 11/1293
  48141. }
  48142. },
  48143. back: {
  48144. height: math.unit(36, "earths"),
  48145. name: "Back",
  48146. image: {
  48147. source: "./media/characters/ecobyss/back.svg",
  48148. extra: 1291/1222,
  48149. bottom: 8/1299
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(36, "earths"),
  48157. default: true
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48163. {
  48164. front: {
  48165. height: math.unit(12, "feet"),
  48166. name: "Front",
  48167. image: {
  48168. source: "./media/characters/vasuk/front.svg",
  48169. extra: 1326/1207,
  48170. bottom: 64/1390
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(12, "feet"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48184. {
  48185. side: {
  48186. height: math.unit(100, "feet"),
  48187. name: "Side",
  48188. image: {
  48189. source: "./media/characters/linneaus/side.svg",
  48190. extra: 987/807,
  48191. bottom: 47/1034
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Macro",
  48198. height: math.unit(100, "feet"),
  48199. default: true
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48205. {
  48206. front: {
  48207. height: math.unit(8, "feet"),
  48208. weight: math.unit(1200, "lb"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/nyterious-daligdig/front.svg",
  48212. extra: 1284/1094,
  48213. bottom: 84/1368
  48214. }
  48215. },
  48216. back: {
  48217. height: math.unit(8, "feet"),
  48218. weight: math.unit(1200, "lb"),
  48219. name: "Back",
  48220. image: {
  48221. source: "./media/characters/nyterious-daligdig/back.svg",
  48222. extra: 1301/1121,
  48223. bottom: 129/1430
  48224. }
  48225. },
  48226. mouth: {
  48227. height: math.unit(1.464, "feet"),
  48228. name: "Mouth",
  48229. image: {
  48230. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Small",
  48237. height: math.unit(8, "feet"),
  48238. default: true
  48239. },
  48240. {
  48241. name: "Normal",
  48242. height: math.unit(15, "feet")
  48243. },
  48244. {
  48245. name: "Macro",
  48246. height: math.unit(90, "feet")
  48247. },
  48248. ]
  48249. ))
  48250. characterMakers.push(() => makeCharacter(
  48251. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48252. {
  48253. front: {
  48254. height: math.unit(7 + 4/12, "feet"),
  48255. weight: math.unit(252, "lb"),
  48256. name: "Front",
  48257. image: {
  48258. source: "./media/characters/bandel/front.svg",
  48259. extra: 1946/1775,
  48260. bottom: 26/1972
  48261. }
  48262. },
  48263. back: {
  48264. height: math.unit(7 + 4/12, "feet"),
  48265. weight: math.unit(252, "lb"),
  48266. name: "Back",
  48267. image: {
  48268. source: "./media/characters/bandel/back.svg",
  48269. extra: 1940/1770,
  48270. bottom: 25/1965
  48271. }
  48272. },
  48273. maw: {
  48274. height: math.unit(2.15, "feet"),
  48275. name: "Maw",
  48276. image: {
  48277. source: "./media/characters/bandel/maw.svg"
  48278. }
  48279. },
  48280. stomach: {
  48281. height: math.unit(1.95, "feet"),
  48282. name: "Stomach",
  48283. image: {
  48284. source: "./media/characters/bandel/stomach.svg"
  48285. }
  48286. },
  48287. },
  48288. [
  48289. {
  48290. name: "Normal",
  48291. height: math.unit(7 + 4/12, "feet"),
  48292. default: true
  48293. },
  48294. ]
  48295. ))
  48296. characterMakers.push(() => makeCharacter(
  48297. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48298. {
  48299. front: {
  48300. height: math.unit(10 + 5/12, "feet"),
  48301. weight: math.unit(773.5, "kg"),
  48302. name: "Front",
  48303. image: {
  48304. source: "./media/characters/zed/front.svg",
  48305. extra: 987/941,
  48306. bottom: 52/1039
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Short",
  48313. height: math.unit(5 + 4/12, "feet")
  48314. },
  48315. {
  48316. name: "Average",
  48317. height: math.unit(10 + 5/12, "feet"),
  48318. default: true
  48319. },
  48320. {
  48321. name: "Mini-Macro",
  48322. height: math.unit(24 + 9/12, "feet")
  48323. },
  48324. {
  48325. name: "Macro",
  48326. height: math.unit(249, "feet")
  48327. },
  48328. {
  48329. name: "Mega-Macro",
  48330. height: math.unit(12490, "feet")
  48331. },
  48332. {
  48333. name: "Giga-Macro",
  48334. height: math.unit(24.9, "miles")
  48335. },
  48336. {
  48337. name: "Tera-Macro",
  48338. height: math.unit(24900, "miles")
  48339. },
  48340. {
  48341. name: "Cosmic Scale",
  48342. height: math.unit(38.9, "lightyears")
  48343. },
  48344. {
  48345. name: "Universal Scale",
  48346. height: math.unit(138e12, "lightyears")
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(1561, "inches"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/ivan/front.svg",
  48358. extra: 1126/1071,
  48359. bottom: 26/1152
  48360. }
  48361. },
  48362. back: {
  48363. height: math.unit(1561, "inches"),
  48364. name: "Back",
  48365. image: {
  48366. source: "./media/characters/ivan/back.svg",
  48367. extra: 1134/1079,
  48368. bottom: 30/1164
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(1561, "inches"),
  48376. default: true
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48382. {
  48383. front: {
  48384. height: math.unit(5 + 7/12, "feet"),
  48385. weight: math.unit(150, "lb"),
  48386. name: "Front",
  48387. image: {
  48388. source: "./media/characters/robin-arctic-hare/front.svg",
  48389. extra: 1148/974,
  48390. bottom: 20/1168
  48391. }
  48392. },
  48393. },
  48394. [
  48395. {
  48396. name: "Normal",
  48397. height: math.unit(5 + 7/12, "feet"),
  48398. default: true
  48399. },
  48400. ]
  48401. ))
  48402. characterMakers.push(() => makeCharacter(
  48403. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48404. {
  48405. side: {
  48406. height: math.unit(5, "feet"),
  48407. name: "Side",
  48408. image: {
  48409. source: "./media/characters/birch/side.svg",
  48410. extra: 985/796,
  48411. bottom: 111/1096
  48412. }
  48413. },
  48414. },
  48415. [
  48416. {
  48417. name: "Normal",
  48418. height: math.unit(5, "feet"),
  48419. default: true
  48420. },
  48421. ]
  48422. ))
  48423. characterMakers.push(() => makeCharacter(
  48424. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48425. {
  48426. front: {
  48427. height: math.unit(4, "feet"),
  48428. name: "Front",
  48429. image: {
  48430. source: "./media/characters/rasp/front.svg",
  48431. extra: 561/478,
  48432. bottom: 74/635
  48433. }
  48434. },
  48435. },
  48436. [
  48437. {
  48438. name: "Normal",
  48439. height: math.unit(4, "feet"),
  48440. default: true
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48446. {
  48447. front: {
  48448. height: math.unit(4 + 6/12, "feet"),
  48449. name: "Front",
  48450. image: {
  48451. source: "./media/characters/agatha/front.svg",
  48452. extra: 947/933,
  48453. bottom: 42/989
  48454. }
  48455. },
  48456. back: {
  48457. height: math.unit(4 + 6/12, "feet"),
  48458. name: "Back",
  48459. image: {
  48460. source: "./media/characters/agatha/back.svg",
  48461. extra: 935/922,
  48462. bottom: 48/983
  48463. }
  48464. },
  48465. },
  48466. [
  48467. {
  48468. name: "Normal",
  48469. height: math.unit(4 + 6 /12, "feet"),
  48470. default: true
  48471. },
  48472. {
  48473. name: "Max Size",
  48474. height: math.unit(500, "feet")
  48475. },
  48476. ]
  48477. ))
  48478. characterMakers.push(() => makeCharacter(
  48479. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48480. {
  48481. side: {
  48482. height: math.unit(30, "feet"),
  48483. name: "Side",
  48484. image: {
  48485. source: "./media/characters/roggy/side.svg",
  48486. extra: 909/643,
  48487. bottom: 63/972
  48488. }
  48489. },
  48490. lounging: {
  48491. height: math.unit(20, "feet"),
  48492. name: "Lounging",
  48493. image: {
  48494. source: "./media/characters/roggy/lounging.svg",
  48495. extra: 643/479,
  48496. bottom: 145/788
  48497. }
  48498. },
  48499. handpaw: {
  48500. height: math.unit(13.1, "feet"),
  48501. name: "Handpaw",
  48502. image: {
  48503. source: "./media/characters/roggy/handpaw.svg"
  48504. }
  48505. },
  48506. footpaw: {
  48507. height: math.unit(15.8, "feet"),
  48508. name: "Footpaw",
  48509. image: {
  48510. source: "./media/characters/roggy/footpaw.svg"
  48511. }
  48512. },
  48513. },
  48514. [
  48515. {
  48516. name: "Menacing",
  48517. height: math.unit(30, "feet"),
  48518. default: true
  48519. },
  48520. ]
  48521. ))
  48522. characterMakers.push(() => makeCharacter(
  48523. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48524. {
  48525. front: {
  48526. height: math.unit(5 + 7/12, "feet"),
  48527. weight: math.unit(135, "lb"),
  48528. name: "Front",
  48529. image: {
  48530. source: "./media/characters/naomi/front.svg",
  48531. extra: 1209/1154,
  48532. bottom: 129/1338
  48533. }
  48534. },
  48535. back: {
  48536. height: math.unit(5 + 7/12, "feet"),
  48537. weight: math.unit(135, "lb"),
  48538. name: "Back",
  48539. image: {
  48540. source: "./media/characters/naomi/back.svg",
  48541. extra: 1252/1190,
  48542. bottom: 23/1275
  48543. }
  48544. },
  48545. },
  48546. [
  48547. {
  48548. name: "Normal",
  48549. height: math.unit(5 + 7 /12, "feet"),
  48550. default: true
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48556. {
  48557. side: {
  48558. height: math.unit(35, "meters"),
  48559. name: "Side",
  48560. image: {
  48561. source: "./media/characters/kimpi/side.svg",
  48562. extra: 419/382,
  48563. bottom: 63/482
  48564. }
  48565. },
  48566. hand: {
  48567. height: math.unit(8.96, "meters"),
  48568. name: "Hand",
  48569. image: {
  48570. source: "./media/characters/kimpi/hand.svg"
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(35, "meters"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(4 + 4/12, "feet"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/pepper-purrloin/front.svg",
  48590. extra: 1141/1024,
  48591. bottom: 21/1162
  48592. }
  48593. },
  48594. },
  48595. [
  48596. {
  48597. name: "Normal",
  48598. height: math.unit(4 + 4/12, "feet"),
  48599. default: true
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48605. {
  48606. front: {
  48607. height: math.unit(6 + 2/12, "feet"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/raphael/front.svg",
  48611. extra: 1101/962,
  48612. bottom: 59/1160
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(6 + 2/12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(6, "feet"),
  48629. weight: math.unit(150, "lb"),
  48630. name: "Front",
  48631. image: {
  48632. source: "./media/characters/victor-williams/front.svg",
  48633. extra: 1894/1825,
  48634. bottom: 67/1961
  48635. }
  48636. },
  48637. },
  48638. [
  48639. {
  48640. name: "Normal",
  48641. height: math.unit(6, "feet"),
  48642. default: true
  48643. },
  48644. ]
  48645. ))
  48646. characterMakers.push(() => makeCharacter(
  48647. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48648. {
  48649. front: {
  48650. height: math.unit(5 + 8/12, "feet"),
  48651. weight: math.unit(150, "lb"),
  48652. name: "Front",
  48653. image: {
  48654. source: "./media/characters/rachel/front.svg",
  48655. extra: 1902/1787,
  48656. bottom: 46/1948
  48657. }
  48658. },
  48659. },
  48660. [
  48661. {
  48662. name: "Base Height",
  48663. height: math.unit(5 + 8/12, "feet"),
  48664. default: true
  48665. },
  48666. {
  48667. name: "Macro",
  48668. height: math.unit(200, "feet")
  48669. },
  48670. {
  48671. name: "Mega Macro",
  48672. height: math.unit(1, "mile")
  48673. },
  48674. {
  48675. name: "Giga Macro",
  48676. height: math.unit(1500, "miles")
  48677. },
  48678. {
  48679. name: "Tera Macro",
  48680. height: math.unit(8000, "miles")
  48681. },
  48682. {
  48683. name: "Tera Macro+",
  48684. height: math.unit(2e5, "miles")
  48685. },
  48686. ]
  48687. ))
  48688. characterMakers.push(() => makeCharacter(
  48689. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48690. {
  48691. front: {
  48692. height: math.unit(6.5, "feet"),
  48693. name: "Front",
  48694. image: {
  48695. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48696. extra: 860/819,
  48697. bottom: 307/1167
  48698. }
  48699. },
  48700. back: {
  48701. height: math.unit(6.5, "feet"),
  48702. name: "Back",
  48703. image: {
  48704. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48705. extra: 880/837,
  48706. bottom: 395/1275
  48707. }
  48708. },
  48709. sleeping: {
  48710. height: math.unit(2.79, "feet"),
  48711. name: "Sleeping",
  48712. image: {
  48713. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48714. extra: 465/383,
  48715. bottom: 263/728
  48716. }
  48717. },
  48718. maw: {
  48719. height: math.unit(2.52, "feet"),
  48720. name: "Maw",
  48721. image: {
  48722. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48723. }
  48724. },
  48725. },
  48726. [
  48727. {
  48728. name: "Normal",
  48729. height: math.unit(6.5, "feet"),
  48730. default: true
  48731. },
  48732. ]
  48733. ))
  48734. characterMakers.push(() => makeCharacter(
  48735. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48736. {
  48737. front: {
  48738. height: math.unit(5, "feet"),
  48739. name: "Front",
  48740. image: {
  48741. source: "./media/characters/nova-nerium/front.svg",
  48742. extra: 1548/1392,
  48743. bottom: 374/1922
  48744. }
  48745. },
  48746. back: {
  48747. height: math.unit(5, "feet"),
  48748. name: "Back",
  48749. image: {
  48750. source: "./media/characters/nova-nerium/back.svg",
  48751. extra: 1658/1468,
  48752. bottom: 257/1915
  48753. }
  48754. },
  48755. },
  48756. [
  48757. {
  48758. name: "Normal",
  48759. height: math.unit(5, "feet"),
  48760. default: true
  48761. },
  48762. ]
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48766. {
  48767. front: {
  48768. height: math.unit(5 + 4/12, "feet"),
  48769. name: "Front",
  48770. image: {
  48771. source: "./media/characters/ashe-pyriph/front.svg",
  48772. extra: 1935/1747,
  48773. bottom: 60/1995
  48774. }
  48775. },
  48776. },
  48777. [
  48778. {
  48779. name: "Normal",
  48780. height: math.unit(5 + 4/12, "feet"),
  48781. default: true
  48782. },
  48783. ]
  48784. ))
  48785. characterMakers.push(() => makeCharacter(
  48786. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48787. {
  48788. front: {
  48789. height: math.unit(8.7, "feet"),
  48790. name: "Front",
  48791. image: {
  48792. source: "./media/characters/flicker-wisp/front.svg",
  48793. extra: 1835/1613,
  48794. bottom: 449/2284
  48795. }
  48796. },
  48797. side: {
  48798. height: math.unit(8.7, "feet"),
  48799. name: "Side",
  48800. image: {
  48801. source: "./media/characters/flicker-wisp/side.svg",
  48802. extra: 1841/1642,
  48803. bottom: 336/2177
  48804. },
  48805. default: true
  48806. },
  48807. maw: {
  48808. height: math.unit(3.35, "feet"),
  48809. name: "Maw",
  48810. image: {
  48811. source: "./media/characters/flicker-wisp/maw.svg",
  48812. extra: 2338/1506,
  48813. bottom: 0/2338
  48814. }
  48815. },
  48816. ovipositor: {
  48817. height: math.unit(4.95, "feet"),
  48818. name: "Ovipositor",
  48819. image: {
  48820. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48821. }
  48822. },
  48823. egg: {
  48824. height: math.unit(0.385, "feet"),
  48825. weight: math.unit(2, "lb"),
  48826. name: "Egg",
  48827. image: {
  48828. source: "./media/characters/flicker-wisp/egg.svg"
  48829. }
  48830. },
  48831. },
  48832. [
  48833. {
  48834. name: "Normal",
  48835. height: math.unit(8.7, "feet"),
  48836. default: true
  48837. },
  48838. ]
  48839. ))
  48840. characterMakers.push(() => makeCharacter(
  48841. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48842. {
  48843. side: {
  48844. height: math.unit(11, "feet"),
  48845. name: "Side",
  48846. image: {
  48847. source: "./media/characters/faefnul/side.svg",
  48848. extra: 1100/1007,
  48849. bottom: 0/1100
  48850. }
  48851. },
  48852. },
  48853. [
  48854. {
  48855. name: "Normal",
  48856. height: math.unit(11, "feet"),
  48857. default: true
  48858. },
  48859. ]
  48860. ))
  48861. characterMakers.push(() => makeCharacter(
  48862. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48863. {
  48864. front: {
  48865. height: math.unit(6 + 2/12, "feet"),
  48866. name: "Front",
  48867. image: {
  48868. source: "./media/characters/shady/front.svg",
  48869. extra: 502/461,
  48870. bottom: 9/511
  48871. }
  48872. },
  48873. kneeling: {
  48874. height: math.unit(4.6, "feet"),
  48875. name: "Kneeling",
  48876. image: {
  48877. source: "./media/characters/shady/kneeling.svg",
  48878. extra: 1328/1219,
  48879. bottom: 117/1445
  48880. }
  48881. },
  48882. maw: {
  48883. height: math.unit(2, "feet"),
  48884. name: "Maw",
  48885. image: {
  48886. source: "./media/characters/shady/maw.svg"
  48887. }
  48888. },
  48889. },
  48890. [
  48891. {
  48892. name: "Nano",
  48893. height: math.unit(1, "mm")
  48894. },
  48895. {
  48896. name: "Micro",
  48897. height: math.unit(12, "mm")
  48898. },
  48899. {
  48900. name: "Tiny",
  48901. height: math.unit(3, "inches")
  48902. },
  48903. {
  48904. name: "Normal",
  48905. height: math.unit(6 + 2/12, "feet"),
  48906. default: true
  48907. },
  48908. {
  48909. name: "Big",
  48910. height: math.unit(15, "feet")
  48911. },
  48912. {
  48913. name: "Macro",
  48914. height: math.unit(150, "feet")
  48915. },
  48916. {
  48917. name: "Titanic",
  48918. height: math.unit(500, "feet")
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48924. {
  48925. front: {
  48926. height: math.unit(12, "feet"),
  48927. name: "Front",
  48928. image: {
  48929. source: "./media/characters/fenrir/front.svg",
  48930. extra: 968/875,
  48931. bottom: 22/990
  48932. }
  48933. },
  48934. },
  48935. [
  48936. {
  48937. name: "Big",
  48938. height: math.unit(12, "feet"),
  48939. default: true
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(5 + 4/12, "feet"),
  48948. name: "Front",
  48949. image: {
  48950. source: "./media/characters/makar/front.svg",
  48951. extra: 1181/1112,
  48952. bottom: 78/1259
  48953. }
  48954. },
  48955. },
  48956. [
  48957. {
  48958. name: "Normal",
  48959. height: math.unit(5 + 4/12, "feet"),
  48960. default: true
  48961. },
  48962. ]
  48963. ))
  48964. characterMakers.push(() => makeCharacter(
  48965. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48966. {
  48967. front: {
  48968. height: math.unit(5 + 7/12, "feet"),
  48969. name: "Front",
  48970. image: {
  48971. source: "./media/characters/callow/front.svg",
  48972. extra: 1482/1304,
  48973. bottom: 23/1505
  48974. }
  48975. },
  48976. back: {
  48977. height: math.unit(5 + 7/12, "feet"),
  48978. name: "Back",
  48979. image: {
  48980. source: "./media/characters/callow/back.svg",
  48981. extra: 1484/1296,
  48982. bottom: 25/1509
  48983. }
  48984. },
  48985. },
  48986. [
  48987. {
  48988. name: "Micro",
  48989. height: math.unit(3, "inches"),
  48990. default: true
  48991. },
  48992. {
  48993. name: "Normal",
  48994. height: math.unit(5 + 7/12, "feet")
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49000. {
  49001. front: {
  49002. height: math.unit(6 + 2/12, "feet"),
  49003. name: "Front",
  49004. image: {
  49005. source: "./media/characters/natel/front.svg",
  49006. extra: 1833/1692,
  49007. bottom: 166/1999
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(6 + 2/12, "feet"),
  49015. default: true
  49016. },
  49017. ]
  49018. ))
  49019. characterMakers.push(() => makeCharacter(
  49020. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49021. {
  49022. front: {
  49023. height: math.unit(1.75, "meters"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/misu/front.svg",
  49027. extra: 1690/1558,
  49028. bottom: 234/1924
  49029. }
  49030. },
  49031. back: {
  49032. height: math.unit(1.75, "meters"),
  49033. name: "Back",
  49034. image: {
  49035. source: "./media/characters/misu/back.svg",
  49036. extra: 1762/1618,
  49037. bottom: 146/1908
  49038. }
  49039. },
  49040. frontNude: {
  49041. height: math.unit(1.75, "meters"),
  49042. name: "Front (Nude)",
  49043. image: {
  49044. source: "./media/characters/misu/front-nude.svg",
  49045. extra: 1690/1558,
  49046. bottom: 234/1924
  49047. }
  49048. },
  49049. backNude: {
  49050. height: math.unit(1.75, "meters"),
  49051. name: "Back (Nude)",
  49052. image: {
  49053. source: "./media/characters/misu/back-nude.svg",
  49054. extra: 1762/1618,
  49055. bottom: 146/1908
  49056. }
  49057. },
  49058. frontErect: {
  49059. height: math.unit(1.75, "meters"),
  49060. name: "Front (Erect)",
  49061. image: {
  49062. source: "./media/characters/misu/front-erect.svg",
  49063. extra: 1690/1558,
  49064. bottom: 234/1924
  49065. }
  49066. },
  49067. maw: {
  49068. height: math.unit(0.47, "meters"),
  49069. name: "Maw",
  49070. image: {
  49071. source: "./media/characters/misu/maw.svg"
  49072. }
  49073. },
  49074. head: {
  49075. height: math.unit(0.35, "meters"),
  49076. name: "Head",
  49077. image: {
  49078. source: "./media/characters/misu/head.svg"
  49079. }
  49080. },
  49081. rear: {
  49082. height: math.unit(0.47, "meters"),
  49083. name: "Rear",
  49084. image: {
  49085. source: "./media/characters/misu/rear.svg"
  49086. }
  49087. },
  49088. },
  49089. [
  49090. {
  49091. name: "Normal",
  49092. height: math.unit(1.75, "meters")
  49093. },
  49094. {
  49095. name: "Not good for the people",
  49096. height: math.unit(42, "meters")
  49097. },
  49098. {
  49099. name: "Not good for the neighborhood",
  49100. height: math.unit(135, "meters")
  49101. },
  49102. {
  49103. name: "Bit bigger problem",
  49104. height: math.unit(380, "meters"),
  49105. default: true
  49106. },
  49107. {
  49108. name: "Not good for the city",
  49109. height: math.unit(1.5, "km")
  49110. },
  49111. {
  49112. name: "Not good for the county",
  49113. height: math.unit(5.5, "km")
  49114. },
  49115. {
  49116. name: "Not good for the state",
  49117. height: math.unit(25, "km")
  49118. },
  49119. {
  49120. name: "Not good for the country",
  49121. height: math.unit(125, "km")
  49122. },
  49123. {
  49124. name: "Not good for the continent",
  49125. height: math.unit(2100, "km")
  49126. },
  49127. {
  49128. name: "Not good for the planet",
  49129. height: math.unit(35000, "km")
  49130. },
  49131. {
  49132. name: "Just no",
  49133. height: math.unit(8.5e18, "km")
  49134. },
  49135. ]
  49136. ))
  49137. characterMakers.push(() => makeCharacter(
  49138. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49139. {
  49140. front: {
  49141. height: math.unit(6.5, "feet"),
  49142. name: "Front",
  49143. image: {
  49144. source: "./media/characters/poppy/front.svg",
  49145. extra: 1878/1812,
  49146. bottom: 43/1921
  49147. }
  49148. },
  49149. feet: {
  49150. height: math.unit(1.06, "feet"),
  49151. name: "Feet",
  49152. image: {
  49153. source: "./media/characters/poppy/feet.svg",
  49154. extra: 1083/1083,
  49155. bottom: 87/1170
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Human",
  49162. height: math.unit(6.5, "feet")
  49163. },
  49164. {
  49165. name: "Default",
  49166. height: math.unit(300, "feet"),
  49167. default: true
  49168. },
  49169. {
  49170. name: "Huge",
  49171. height: math.unit(850, "feet")
  49172. },
  49173. {
  49174. name: "Mega",
  49175. height: math.unit(8000, "feet")
  49176. },
  49177. {
  49178. name: "Giga",
  49179. height: math.unit(300, "miles")
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49185. {
  49186. bipedal: {
  49187. height: math.unit(7, "feet"),
  49188. name: "Bipedal",
  49189. image: {
  49190. source: "./media/characters/zener/bipedal.svg",
  49191. extra: 874/805,
  49192. bottom: 109/983
  49193. }
  49194. },
  49195. quadrupedal: {
  49196. height: math.unit(4.64, "feet"),
  49197. name: "Quadrupedal",
  49198. image: {
  49199. source: "./media/characters/zener/quadrupedal.svg",
  49200. extra: 638/507,
  49201. bottom: 190/828
  49202. }
  49203. },
  49204. cock: {
  49205. height: math.unit(18, "inches"),
  49206. name: "Cock",
  49207. image: {
  49208. source: "./media/characters/zener/cock.svg"
  49209. }
  49210. },
  49211. },
  49212. [
  49213. {
  49214. name: "Normal",
  49215. height: math.unit(7, "feet"),
  49216. default: true
  49217. },
  49218. ]
  49219. ))
  49220. characterMakers.push(() => makeCharacter(
  49221. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49222. {
  49223. nude: {
  49224. height: math.unit(5 + 6/12, "feet"),
  49225. name: "Nude",
  49226. image: {
  49227. source: "./media/characters/charlie-dog/nude.svg",
  49228. extra: 768/734,
  49229. bottom: 26/794
  49230. }
  49231. },
  49232. dressed: {
  49233. height: math.unit(5 + 6/12, "feet"),
  49234. name: "Dressed",
  49235. image: {
  49236. source: "./media/characters/charlie-dog/dressed.svg",
  49237. extra: 768/734,
  49238. bottom: 26/794
  49239. }
  49240. },
  49241. },
  49242. [
  49243. {
  49244. name: "Normal",
  49245. height: math.unit(5 + 6/12, "feet"),
  49246. default: true
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49252. {
  49253. front: {
  49254. height: math.unit(6 + 4/12, "feet"),
  49255. name: "Front",
  49256. image: {
  49257. source: "./media/characters/ir'istrasz/front.svg",
  49258. extra: 1014/977,
  49259. bottom: 65/1079
  49260. }
  49261. },
  49262. back: {
  49263. height: math.unit(6 + 4/12, "feet"),
  49264. name: "Back",
  49265. image: {
  49266. source: "./media/characters/ir'istrasz/back.svg",
  49267. extra: 1024/992,
  49268. bottom: 34/1058
  49269. }
  49270. },
  49271. },
  49272. [
  49273. {
  49274. name: "Normal",
  49275. height: math.unit(6 + 4/12, "feet"),
  49276. default: true
  49277. },
  49278. ]
  49279. ))
  49280. characterMakers.push(() => makeCharacter(
  49281. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49282. {
  49283. front: {
  49284. height: math.unit(5 + 8/12, "feet"),
  49285. name: "Front",
  49286. image: {
  49287. source: "./media/characters/dee-ditto/front.svg",
  49288. extra: 1874/1785,
  49289. bottom: 68/1942
  49290. }
  49291. },
  49292. back: {
  49293. height: math.unit(5 + 8/12, "feet"),
  49294. name: "Back",
  49295. image: {
  49296. source: "./media/characters/dee-ditto/back.svg",
  49297. extra: 1870/1783,
  49298. bottom: 77/1947
  49299. }
  49300. },
  49301. },
  49302. [
  49303. {
  49304. name: "Normal",
  49305. height: math.unit(5 + 8/12, "feet"),
  49306. default: true
  49307. },
  49308. ]
  49309. ))
  49310. characterMakers.push(() => makeCharacter(
  49311. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49312. {
  49313. front: {
  49314. height: math.unit(7 + 6/12, "feet"),
  49315. name: "Front",
  49316. image: {
  49317. source: "./media/characters/fey/front.svg",
  49318. extra: 995/979,
  49319. bottom: 30/1025
  49320. }
  49321. },
  49322. back: {
  49323. height: math.unit(7 + 6/12, "feet"),
  49324. name: "Back",
  49325. image: {
  49326. source: "./media/characters/fey/back.svg",
  49327. extra: 1079/1008,
  49328. bottom: 5/1084
  49329. }
  49330. },
  49331. dressed: {
  49332. height: math.unit(7 + 6/12, "feet"),
  49333. name: "Dressed",
  49334. image: {
  49335. source: "./media/characters/fey/dressed.svg",
  49336. extra: 995/979,
  49337. bottom: 30/1025
  49338. }
  49339. },
  49340. },
  49341. [
  49342. {
  49343. name: "Normal",
  49344. height: math.unit(7 + 6/12, "feet"),
  49345. default: true
  49346. },
  49347. ]
  49348. ))
  49349. characterMakers.push(() => makeCharacter(
  49350. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49351. {
  49352. standing: {
  49353. height: math.unit(17, "feet"),
  49354. name: "Standing",
  49355. image: {
  49356. source: "./media/characters/aster/standing.svg",
  49357. extra: 1798/1598,
  49358. bottom: 117/1915
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(17, "feet"),
  49366. default: true
  49367. },
  49368. {
  49369. name: "Homewrecker",
  49370. height: math.unit(95, "feet")
  49371. },
  49372. {
  49373. name: "Planet Devourer",
  49374. height: math.unit(1008000, "miles")
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49380. {
  49381. front: {
  49382. height: math.unit(6 + 5/12, "feet"),
  49383. weight: math.unit(265, "lb"),
  49384. name: "Front",
  49385. image: {
  49386. source: "./media/characters/devon-childs/front.svg",
  49387. extra: 1795/1721,
  49388. bottom: 41/1836
  49389. }
  49390. },
  49391. side: {
  49392. height: math.unit(6 + 5/12, "feet"),
  49393. weight: math.unit(265, "lb"),
  49394. name: "Side",
  49395. image: {
  49396. source: "./media/characters/devon-childs/side.svg",
  49397. extra: 1812/1738,
  49398. bottom: 30/1842
  49399. }
  49400. },
  49401. back: {
  49402. height: math.unit(6 + 5/12, "feet"),
  49403. weight: math.unit(265, "lb"),
  49404. name: "Back",
  49405. image: {
  49406. source: "./media/characters/devon-childs/back.svg",
  49407. extra: 1808/1735,
  49408. bottom: 23/1831
  49409. }
  49410. },
  49411. hand: {
  49412. height: math.unit(1.464, "feet"),
  49413. name: "Hand",
  49414. image: {
  49415. source: "./media/characters/devon-childs/hand.svg"
  49416. }
  49417. },
  49418. foot: {
  49419. height: math.unit(1.6, "feet"),
  49420. name: "Foot",
  49421. image: {
  49422. source: "./media/characters/devon-childs/foot.svg"
  49423. }
  49424. },
  49425. },
  49426. [
  49427. {
  49428. name: "Micro",
  49429. height: math.unit(7, "cm")
  49430. },
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(6 + 5/12, "feet"),
  49434. default: true
  49435. },
  49436. {
  49437. name: "Macro",
  49438. height: math.unit(154, "feet")
  49439. },
  49440. ]
  49441. ))
  49442. characterMakers.push(() => makeCharacter(
  49443. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49444. {
  49445. front: {
  49446. height: math.unit(6, "feet"),
  49447. weight: math.unit(180, "lb"),
  49448. name: "Front",
  49449. image: {
  49450. source: "./media/characters/lydemox-vir/front.svg",
  49451. extra: 1632/1435,
  49452. bottom: 58/1690
  49453. }
  49454. },
  49455. frontSFW: {
  49456. height: math.unit(6, "feet"),
  49457. weight: math.unit(180, "lb"),
  49458. name: "Front (SFW)",
  49459. image: {
  49460. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49461. extra: 1632/1435,
  49462. bottom: 58/1690
  49463. }
  49464. },
  49465. back: {
  49466. height: math.unit(6, "feet"),
  49467. weight: math.unit(180, "lb"),
  49468. name: "Back",
  49469. image: {
  49470. source: "./media/characters/lydemox-vir/back.svg",
  49471. extra: 1593/1408,
  49472. bottom: 31/1624
  49473. }
  49474. },
  49475. paw: {
  49476. height: math.unit(1.85, "feet"),
  49477. name: "Paw",
  49478. image: {
  49479. source: "./media/characters/lydemox-vir/paw.svg"
  49480. }
  49481. },
  49482. dick: {
  49483. height: math.unit(1.8, "feet"),
  49484. name: "Dick",
  49485. image: {
  49486. source: "./media/characters/lydemox-vir/dick.svg"
  49487. }
  49488. },
  49489. },
  49490. [
  49491. {
  49492. name: "Macro",
  49493. height: math.unit(100, "feet"),
  49494. default: true
  49495. },
  49496. {
  49497. name: "Teramacro",
  49498. height: math.unit(1, "earth")
  49499. },
  49500. {
  49501. name: "Planetary",
  49502. height: math.unit(20, "earths")
  49503. },
  49504. ]
  49505. ))
  49506. characterMakers.push(() => makeCharacter(
  49507. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49508. {
  49509. front: {
  49510. height: math.unit(15 + 8/12, "feet"),
  49511. weight: math.unit(1237, "kg"),
  49512. name: "Front",
  49513. image: {
  49514. source: "./media/characters/mia/front.svg",
  49515. extra: 1573/1446,
  49516. bottom: 58/1631
  49517. }
  49518. },
  49519. },
  49520. [
  49521. {
  49522. name: "Small",
  49523. height: math.unit(9 + 5/12, "feet")
  49524. },
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(15 + 8/12, "feet"),
  49528. default: true
  49529. },
  49530. ]
  49531. ))
  49532. characterMakers.push(() => makeCharacter(
  49533. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49534. {
  49535. front: {
  49536. height: math.unit(10 + 6/12, "feet"),
  49537. weight: math.unit(1.3, "tons"),
  49538. name: "Front",
  49539. image: {
  49540. source: "./media/characters/mr-graves/front.svg",
  49541. extra: 1779/1695,
  49542. bottom: 198/1977
  49543. }
  49544. },
  49545. },
  49546. [
  49547. {
  49548. name: "Normal",
  49549. height: math.unit(10 + 6 /12, "feet"),
  49550. default: true
  49551. },
  49552. ]
  49553. ))
  49554. characterMakers.push(() => makeCharacter(
  49555. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49556. {
  49557. dressedFront: {
  49558. height: math.unit(5 + 8/12, "feet"),
  49559. weight: math.unit(125, "lb"),
  49560. name: "Dressed (Front)",
  49561. image: {
  49562. source: "./media/characters/jess/dressed-front.svg",
  49563. extra: 1176/1152,
  49564. bottom: 42/1218
  49565. }
  49566. },
  49567. dressedSide: {
  49568. height: math.unit(5 + 8/12, "feet"),
  49569. weight: math.unit(125, "lb"),
  49570. name: "Dressed (Side)",
  49571. image: {
  49572. source: "./media/characters/jess/dressed-side.svg",
  49573. extra: 1204/1190,
  49574. bottom: 6/1210
  49575. }
  49576. },
  49577. nudeFront: {
  49578. height: math.unit(5 + 8/12, "feet"),
  49579. weight: math.unit(125, "lb"),
  49580. name: "Nude (Front)",
  49581. image: {
  49582. source: "./media/characters/jess/nude-front.svg",
  49583. extra: 1176/1152,
  49584. bottom: 42/1218
  49585. }
  49586. },
  49587. nudeSide: {
  49588. height: math.unit(5 + 8/12, "feet"),
  49589. weight: math.unit(125, "lb"),
  49590. name: "Nude (Side)",
  49591. image: {
  49592. source: "./media/characters/jess/nude-side.svg",
  49593. extra: 1204/1190,
  49594. bottom: 6/1210
  49595. }
  49596. },
  49597. organsFront: {
  49598. height: math.unit(2.83799342105, "feet"),
  49599. name: "Organs (Front)",
  49600. image: {
  49601. source: "./media/characters/jess/organs-front.svg"
  49602. }
  49603. },
  49604. organsSide: {
  49605. height: math.unit(2.64225290474, "feet"),
  49606. name: "Organs (Side)",
  49607. image: {
  49608. source: "./media/characters/jess/organs-side.svg"
  49609. }
  49610. },
  49611. digestiveTractFront: {
  49612. height: math.unit(2.8106580871, "feet"),
  49613. name: "Digestive Tract (Front)",
  49614. image: {
  49615. source: "./media/characters/jess/digestive-tract-front.svg"
  49616. }
  49617. },
  49618. digestiveTractSide: {
  49619. height: math.unit(2.54365045014, "feet"),
  49620. name: "Digestive Tract (Side)",
  49621. image: {
  49622. source: "./media/characters/jess/digestive-tract-side.svg"
  49623. }
  49624. },
  49625. respiratorySystemFront: {
  49626. height: math.unit(1.11196233456, "feet"),
  49627. name: "Respiratory System (Front)",
  49628. image: {
  49629. source: "./media/characters/jess/respiratory-system-front.svg"
  49630. }
  49631. },
  49632. respiratorySystemSide: {
  49633. height: math.unit(0.89327966297, "feet"),
  49634. name: "Respiratory System (Side)",
  49635. image: {
  49636. source: "./media/characters/jess/respiratory-system-side.svg"
  49637. }
  49638. },
  49639. urinaryTractFront: {
  49640. height: math.unit(1.16126356186, "feet"),
  49641. name: "Urinary Tract (Front)",
  49642. image: {
  49643. source: "./media/characters/jess/urinary-tract-front.svg"
  49644. }
  49645. },
  49646. urinaryTractSide: {
  49647. height: math.unit(1.20910039627, "feet"),
  49648. name: "Urinary Tract (Side)",
  49649. image: {
  49650. source: "./media/characters/jess/urinary-tract-side.svg"
  49651. }
  49652. },
  49653. reproductiveOrgansFront: {
  49654. height: math.unit(0.48422591566, "feet"),
  49655. name: "Reproductive Organs (Front)",
  49656. image: {
  49657. source: "./media/characters/jess/reproductive-organs-front.svg"
  49658. }
  49659. },
  49660. reproductiveOrgansSide: {
  49661. height: math.unit(0.61553314481, "feet"),
  49662. name: "Reproductive Organs (Side)",
  49663. image: {
  49664. source: "./media/characters/jess/reproductive-organs-side.svg"
  49665. }
  49666. },
  49667. breastsFront: {
  49668. height: math.unit(0.47690395121, "feet"),
  49669. name: "Breasts (Front)",
  49670. image: {
  49671. source: "./media/characters/jess/breasts-front.svg"
  49672. }
  49673. },
  49674. breastsSide: {
  49675. height: math.unit(0.30556998307, "feet"),
  49676. name: "Breasts (Side)",
  49677. image: {
  49678. source: "./media/characters/jess/breasts-side.svg"
  49679. }
  49680. },
  49681. heartFront: {
  49682. height: math.unit(0.53011022622, "feet"),
  49683. name: "Heart (Front)",
  49684. image: {
  49685. source: "./media/characters/jess/heart-front.svg"
  49686. }
  49687. },
  49688. heartSide: {
  49689. height: math.unit(0.51790695213, "feet"),
  49690. name: "Heart (Side)",
  49691. image: {
  49692. source: "./media/characters/jess/heart-side.svg"
  49693. }
  49694. },
  49695. earsAndNoseFront: {
  49696. height: math.unit(0.29385483995, "feet"),
  49697. name: "Ears and Nose (Front)",
  49698. image: {
  49699. source: "./media/characters/jess/ears-and-nose-front.svg"
  49700. }
  49701. },
  49702. earsAndNoseSide: {
  49703. height: math.unit(0.18109658741, "feet"),
  49704. name: "Ears and Nose (Side)",
  49705. image: {
  49706. source: "./media/characters/jess/ears-and-nose-side.svg"
  49707. }
  49708. },
  49709. },
  49710. [
  49711. {
  49712. name: "Normal",
  49713. height: math.unit(5 + 8/12, "feet"),
  49714. default: true
  49715. },
  49716. ]
  49717. ))
  49718. characterMakers.push(() => makeCharacter(
  49719. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49720. {
  49721. front: {
  49722. height: math.unit(6, "feet"),
  49723. weight: math.unit(6.64467e-7, "grams"),
  49724. name: "Front",
  49725. image: {
  49726. source: "./media/characters/wimpering/front.svg",
  49727. extra: 597/587,
  49728. bottom: 34/631
  49729. }
  49730. },
  49731. },
  49732. [
  49733. {
  49734. name: "Micro",
  49735. height: math.unit(0.4, "mm"),
  49736. default: true
  49737. },
  49738. ]
  49739. ))
  49740. characterMakers.push(() => makeCharacter(
  49741. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49742. {
  49743. front: {
  49744. height: math.unit(5 + 2/12, "feet"),
  49745. weight: math.unit(110, "lb"),
  49746. name: "Front",
  49747. image: {
  49748. source: "./media/characters/keltre/front.svg",
  49749. extra: 1099/1057,
  49750. bottom: 22/1121
  49751. }
  49752. },
  49753. back: {
  49754. height: math.unit(5 + 2/12, "feet"),
  49755. weight: math.unit(110, "lb"),
  49756. name: "Back",
  49757. image: {
  49758. source: "./media/characters/keltre/back.svg",
  49759. extra: 1095/1053,
  49760. bottom: 17/1112
  49761. }
  49762. },
  49763. dressed: {
  49764. height: math.unit(5 + 2/12, "feet"),
  49765. weight: math.unit(110, "lb"),
  49766. name: "Dressed",
  49767. image: {
  49768. source: "./media/characters/keltre/dressed.svg",
  49769. extra: 1099/1057,
  49770. bottom: 22/1121
  49771. }
  49772. },
  49773. winter: {
  49774. height: math.unit(5 + 2/12, "feet"),
  49775. weight: math.unit(110, "lb"),
  49776. name: "Winter",
  49777. image: {
  49778. source: "./media/characters/keltre/winter.svg",
  49779. extra: 1099/1057,
  49780. bottom: 22/1121
  49781. }
  49782. },
  49783. head: {
  49784. height: math.unit(1.61 * 0.86, "feet"),
  49785. name: "Head",
  49786. image: {
  49787. source: "./media/characters/keltre/head.svg",
  49788. extra: 534/421,
  49789. bottom: 0/534
  49790. }
  49791. },
  49792. hand: {
  49793. height: math.unit(1.3 * 0.86, "feet"),
  49794. name: "Hand",
  49795. image: {
  49796. source: "./media/characters/keltre/hand.svg"
  49797. }
  49798. },
  49799. foot: {
  49800. height: math.unit(1.8 * 0.86, "feet"),
  49801. name: "Foot",
  49802. image: {
  49803. source: "./media/characters/keltre/foot.svg"
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Fine",
  49810. height: math.unit(1, "inch")
  49811. },
  49812. {
  49813. name: "Dimnutive",
  49814. height: math.unit(4, "inches")
  49815. },
  49816. {
  49817. name: "Tiny",
  49818. height: math.unit(1, "foot")
  49819. },
  49820. {
  49821. name: "Small",
  49822. height: math.unit(3, "feet")
  49823. },
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(5 + 2/12, "feet"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(6 + 2/12, "feet"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/nox/front.svg",
  49839. extra: 1917/1830,
  49840. bottom: 74/1991
  49841. }
  49842. },
  49843. back: {
  49844. height: math.unit(6 + 2/12, "feet"),
  49845. name: "Back",
  49846. image: {
  49847. source: "./media/characters/nox/back.svg",
  49848. extra: 1896/1815,
  49849. bottom: 21/1917
  49850. }
  49851. },
  49852. head: {
  49853. height: math.unit(1.1, "feet"),
  49854. name: "Head",
  49855. image: {
  49856. source: "./media/characters/nox/head.svg",
  49857. extra: 874/704,
  49858. bottom: 0/874
  49859. }
  49860. },
  49861. tattoo: {
  49862. height: math.unit(0.729, "feet"),
  49863. name: "Tattoo",
  49864. image: {
  49865. source: "./media/characters/nox/tattoo.svg"
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Normal",
  49872. height: math.unit(6 + 2/12, "feet")
  49873. },
  49874. {
  49875. name: "Gigamacro",
  49876. height: math.unit(2, "earths"),
  49877. default: true
  49878. },
  49879. {
  49880. name: "Cosmic",
  49881. height: math.unit(867, "yottameters")
  49882. },
  49883. ]
  49884. ))
  49885. characterMakers.push(() => makeCharacter(
  49886. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49887. {
  49888. front: {
  49889. height: math.unit(6, "feet"),
  49890. weight: math.unit(150, "lb"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/caspian/front.svg",
  49894. extra: 1443/1359,
  49895. bottom: 0/1443
  49896. }
  49897. },
  49898. back: {
  49899. height: math.unit(6, "feet"),
  49900. weight: math.unit(150, "lb"),
  49901. name: "Back",
  49902. image: {
  49903. source: "./media/characters/caspian/back.svg",
  49904. extra: 1379/1309,
  49905. bottom: 0/1379
  49906. }
  49907. },
  49908. head: {
  49909. height: math.unit(0.9, "feet"),
  49910. name: "Head",
  49911. image: {
  49912. source: "./media/characters/caspian/head.svg",
  49913. extra: 692/492,
  49914. bottom: 0/692
  49915. }
  49916. },
  49917. headAlt: {
  49918. height: math.unit(0.95, "feet"),
  49919. name: "Head (Alt)",
  49920. image: {
  49921. source: "./media/characters/caspian/head-alt.svg",
  49922. extra: 668/508,
  49923. bottom: 0/668
  49924. }
  49925. },
  49926. hand: {
  49927. height: math.unit(0.8, "feet"),
  49928. name: "Hand",
  49929. image: {
  49930. source: "./media/characters/caspian/hand.svg"
  49931. }
  49932. },
  49933. paw: {
  49934. height: math.unit(0.95, "feet"),
  49935. name: "Paw",
  49936. image: {
  49937. source: "./media/characters/caspian/paw.svg"
  49938. }
  49939. },
  49940. },
  49941. [
  49942. {
  49943. name: "Normal",
  49944. height: math.unit(162, "feet"),
  49945. default: true
  49946. },
  49947. ]
  49948. ))
  49949. characterMakers.push(() => makeCharacter(
  49950. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49951. {
  49952. front: {
  49953. height: math.unit(6, "feet"),
  49954. name: "Front",
  49955. image: {
  49956. source: "./media/characters/myra-aisling/front.svg",
  49957. extra: 1268/1166,
  49958. bottom: 73/1341
  49959. }
  49960. },
  49961. back: {
  49962. height: math.unit(6, "feet"),
  49963. name: "Back",
  49964. image: {
  49965. source: "./media/characters/myra-aisling/back.svg",
  49966. extra: 1249/1149,
  49967. bottom: 79/1328
  49968. }
  49969. },
  49970. dressed: {
  49971. height: math.unit(6, "feet"),
  49972. name: "Dressed",
  49973. image: {
  49974. source: "./media/characters/myra-aisling/dressed.svg",
  49975. extra: 1290/1189,
  49976. bottom: 47/1337
  49977. }
  49978. },
  49979. hand: {
  49980. height: math.unit(1.1, "feet"),
  49981. name: "Hand",
  49982. image: {
  49983. source: "./media/characters/myra-aisling/hand.svg"
  49984. }
  49985. },
  49986. paw: {
  49987. height: math.unit(1.23, "feet"),
  49988. name: "Paw",
  49989. image: {
  49990. source: "./media/characters/myra-aisling/paw.svg"
  49991. }
  49992. },
  49993. },
  49994. [
  49995. {
  49996. name: "Normal",
  49997. height: math.unit(160, "feet"),
  49998. default: true
  49999. },
  50000. ]
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50004. {
  50005. front: {
  50006. height: math.unit(6, "feet"),
  50007. name: "Front",
  50008. image: {
  50009. source: "./media/characters/tenley-sidero/front.svg",
  50010. extra: 1365/1276,
  50011. bottom: 47/1412
  50012. }
  50013. },
  50014. back: {
  50015. height: math.unit(6, "feet"),
  50016. name: "Back",
  50017. image: {
  50018. source: "./media/characters/tenley-sidero/back.svg",
  50019. extra: 1383/1283,
  50020. bottom: 35/1418
  50021. }
  50022. },
  50023. dressed: {
  50024. height: math.unit(6, "feet"),
  50025. name: "Dressed",
  50026. image: {
  50027. source: "./media/characters/tenley-sidero/dressed.svg",
  50028. extra: 1364/1275,
  50029. bottom: 42/1406
  50030. }
  50031. },
  50032. head: {
  50033. height: math.unit(1.47, "feet"),
  50034. name: "Head",
  50035. image: {
  50036. source: "./media/characters/tenley-sidero/head.svg",
  50037. extra: 610/490,
  50038. bottom: 0/610
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Normal",
  50045. height: math.unit(154, "feet"),
  50046. default: true
  50047. },
  50048. ]
  50049. ))
  50050. characterMakers.push(() => makeCharacter(
  50051. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50052. {
  50053. front: {
  50054. height: math.unit(5, "inches"),
  50055. name: "Front",
  50056. image: {
  50057. source: "./media/characters/mallory/front.svg",
  50058. extra: 1919/1678,
  50059. bottom: 29/1948
  50060. }
  50061. },
  50062. hand: {
  50063. height: math.unit(0.73, "inches"),
  50064. name: "Hand",
  50065. image: {
  50066. source: "./media/characters/mallory/hand.svg"
  50067. }
  50068. },
  50069. paw: {
  50070. height: math.unit(0.68, "inches"),
  50071. name: "Paw",
  50072. image: {
  50073. source: "./media/characters/mallory/paw.svg"
  50074. }
  50075. },
  50076. },
  50077. [
  50078. {
  50079. name: "Small",
  50080. height: math.unit(5, "inches"),
  50081. default: true
  50082. },
  50083. ]
  50084. ))
  50085. characterMakers.push(() => makeCharacter(
  50086. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50087. {
  50088. naked: {
  50089. height: math.unit(6, "feet"),
  50090. name: "Naked",
  50091. image: {
  50092. source: "./media/characters/mab/naked.svg",
  50093. extra: 1855/1757,
  50094. bottom: 208/2063
  50095. }
  50096. },
  50097. outside: {
  50098. height: math.unit(6, "feet"),
  50099. name: "Outside",
  50100. image: {
  50101. source: "./media/characters/mab/outside.svg",
  50102. extra: 1855/1757,
  50103. bottom: 208/2063
  50104. }
  50105. },
  50106. party: {
  50107. height: math.unit(6, "feet"),
  50108. name: "Party",
  50109. image: {
  50110. source: "./media/characters/mab/party.svg",
  50111. extra: 1855/1757,
  50112. bottom: 208/2063
  50113. }
  50114. },
  50115. },
  50116. [
  50117. {
  50118. name: "Normal",
  50119. height: math.unit(165, "feet"),
  50120. default: true
  50121. },
  50122. ]
  50123. ))
  50124. characterMakers.push(() => makeCharacter(
  50125. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50126. {
  50127. feral: {
  50128. height: math.unit(12, "feet"),
  50129. weight: math.unit(20000, "lb"),
  50130. name: "Side",
  50131. image: {
  50132. source: "./media/characters/winter/feral.svg",
  50133. extra: 1286/943,
  50134. bottom: 112/1398
  50135. },
  50136. form: "feral",
  50137. default: true
  50138. },
  50139. feralNsfw: {
  50140. height: math.unit(12, "feet"),
  50141. weight: math.unit(20000, "lb"),
  50142. name: "Side (NSFW)",
  50143. image: {
  50144. source: "./media/characters/winter/feral-nsfw.svg",
  50145. extra: 1286/943,
  50146. bottom: 112/1398
  50147. },
  50148. form: "feral"
  50149. },
  50150. dick: {
  50151. height: math.unit(3.79, "feet"),
  50152. name: "Dick",
  50153. image: {
  50154. source: "./media/characters/winter/dick.svg"
  50155. },
  50156. form: "feral"
  50157. },
  50158. anthro: {
  50159. height: math.unit(12, "feet"),
  50160. weight: math.unit(10, "tons"),
  50161. name: "Anthro",
  50162. image: {
  50163. source: "./media/characters/winter/anthro.svg",
  50164. extra: 1701/1553,
  50165. bottom: 64/1765
  50166. },
  50167. form: "anthro",
  50168. default: true
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Big",
  50174. height: math.unit(12, "feet"),
  50175. default: true,
  50176. form: "feral"
  50177. },
  50178. {
  50179. name: "Big",
  50180. height: math.unit(12, "feet"),
  50181. default: true,
  50182. form: "anthro"
  50183. },
  50184. ],
  50185. {
  50186. "feral": {
  50187. name: "Feral",
  50188. default: true
  50189. },
  50190. "anthro": {
  50191. name: "Anthro"
  50192. }
  50193. }
  50194. ))
  50195. characterMakers.push(() => makeCharacter(
  50196. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50197. {
  50198. front: {
  50199. height: math.unit(4.1, "inches"),
  50200. name: "Front",
  50201. image: {
  50202. source: "./media/characters/alto/front.svg",
  50203. extra: 736/627,
  50204. bottom: 90/826
  50205. }
  50206. },
  50207. },
  50208. [
  50209. {
  50210. name: "Normal",
  50211. height: math.unit(4.1, "inches"),
  50212. default: true
  50213. },
  50214. ]
  50215. ))
  50216. characterMakers.push(() => makeCharacter(
  50217. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50218. {
  50219. sitting: {
  50220. height: math.unit(3, "feet"),
  50221. name: "Sitting",
  50222. image: {
  50223. source: "./media/characters/ratstrid-v/sitting.svg",
  50224. extra: 355/310,
  50225. bottom: 136/491
  50226. }
  50227. },
  50228. },
  50229. [
  50230. {
  50231. name: "Normal",
  50232. height: math.unit(3, "feet"),
  50233. default: true
  50234. },
  50235. ]
  50236. ))
  50237. characterMakers.push(() => makeCharacter(
  50238. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50239. {
  50240. back: {
  50241. height: math.unit(6, "feet"),
  50242. weight: math.unit(450, "lb"),
  50243. name: "Back",
  50244. image: {
  50245. source: "./media/characters/siz/back.svg",
  50246. extra: 1449/1274,
  50247. bottom: 13/1462
  50248. }
  50249. },
  50250. },
  50251. [
  50252. {
  50253. name: "Smallest",
  50254. height: math.unit(18 + 3/12, "feet")
  50255. },
  50256. {
  50257. name: "Modest",
  50258. height: math.unit(56 + 8/12, "feet"),
  50259. default: true
  50260. },
  50261. {
  50262. name: "Largest",
  50263. height: math.unit(3590, "feet")
  50264. },
  50265. ]
  50266. ))
  50267. characterMakers.push(() => makeCharacter(
  50268. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50269. {
  50270. front: {
  50271. height: math.unit(5 + 9/12, "feet"),
  50272. weight: math.unit(150, "lb"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/ven/front.svg",
  50276. extra: 1372/1320,
  50277. bottom: 73/1445
  50278. }
  50279. },
  50280. side: {
  50281. height: math.unit(5 + 9/12, "feet"),
  50282. weight: math.unit(1150, "lb"),
  50283. name: "Side",
  50284. image: {
  50285. source: "./media/characters/ven/side.svg",
  50286. extra: 1119/1070,
  50287. bottom: 42/1161
  50288. },
  50289. default: true
  50290. },
  50291. },
  50292. [
  50293. {
  50294. name: "Normal",
  50295. height: math.unit(5 + 9/12, "feet"),
  50296. default: true
  50297. },
  50298. ]
  50299. ))
  50300. characterMakers.push(() => makeCharacter(
  50301. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50302. {
  50303. front: {
  50304. height: math.unit(12, "feet"),
  50305. weight: math.unit(1000, "kg"),
  50306. name: "Front",
  50307. image: {
  50308. source: "./media/characters/maple/front.svg",
  50309. extra: 1193/1081,
  50310. bottom: 22/1215
  50311. }
  50312. },
  50313. },
  50314. [
  50315. {
  50316. name: "Compressed",
  50317. height: math.unit(7, "feet")
  50318. },
  50319. {
  50320. name: "Normal",
  50321. height: math.unit(12, "feet"),
  50322. default: true
  50323. },
  50324. ]
  50325. ))
  50326. characterMakers.push(() => makeCharacter(
  50327. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50328. {
  50329. front: {
  50330. height: math.unit(9, "feet"),
  50331. weight: math.unit(1500, "lb"),
  50332. name: "Front",
  50333. image: {
  50334. source: "./media/characters/nora/front.svg",
  50335. extra: 1348/1286,
  50336. bottom: 218/1566
  50337. }
  50338. },
  50339. erect: {
  50340. height: math.unit(9, "feet"),
  50341. weight: math.unit(11500, "lb"),
  50342. name: "Erect",
  50343. image: {
  50344. source: "./media/characters/nora/erect.svg",
  50345. extra: 1488/1433,
  50346. bottom: 133/1621
  50347. }
  50348. },
  50349. },
  50350. [
  50351. {
  50352. name: "Normal",
  50353. height: math.unit(9, "feet"),
  50354. default: true
  50355. },
  50356. ]
  50357. ))
  50358. characterMakers.push(() => makeCharacter(
  50359. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50360. {
  50361. front: {
  50362. height: math.unit(25, "feet"),
  50363. weight: math.unit(27500, "lb"),
  50364. name: "Front",
  50365. image: {
  50366. source: "./media/characters/north-caudin/front.svg",
  50367. extra: 1184/1082,
  50368. bottom: 23/1207
  50369. }
  50370. },
  50371. },
  50372. [
  50373. {
  50374. name: "Compressed",
  50375. height: math.unit(10, "feet")
  50376. },
  50377. {
  50378. name: "Normal",
  50379. height: math.unit(25, "feet"),
  50380. default: true
  50381. },
  50382. ]
  50383. ))
  50384. characterMakers.push(() => makeCharacter(
  50385. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50386. {
  50387. front: {
  50388. height: math.unit(9, "feet"),
  50389. weight: math.unit(1250, "lb"),
  50390. name: "Front",
  50391. image: {
  50392. source: "./media/characters/merrian/front.svg",
  50393. extra: 2393/2304,
  50394. bottom: 40/2433
  50395. }
  50396. },
  50397. },
  50398. [
  50399. {
  50400. name: "Normal",
  50401. height: math.unit(9, "feet"),
  50402. default: true
  50403. },
  50404. ]
  50405. ))
  50406. characterMakers.push(() => makeCharacter(
  50407. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50408. {
  50409. front: {
  50410. height: math.unit(9, "feet"),
  50411. weight: math.unit(1000, "lb"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/hazel/front.svg",
  50415. extra: 2351/2298,
  50416. bottom: 38/2389
  50417. }
  50418. },
  50419. },
  50420. [
  50421. {
  50422. name: "Normal",
  50423. height: math.unit(9, "feet"),
  50424. default: true
  50425. },
  50426. ]
  50427. ))
  50428. characterMakers.push(() => makeCharacter(
  50429. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50430. {
  50431. front: {
  50432. height: math.unit(13, "feet"),
  50433. weight: math.unit(3200, "lb"),
  50434. name: "Front",
  50435. image: {
  50436. source: "./media/characters/emma/front.svg",
  50437. extra: 2263/2029,
  50438. bottom: 68/2331
  50439. }
  50440. },
  50441. },
  50442. [
  50443. {
  50444. name: "Normal",
  50445. height: math.unit(13, "feet"),
  50446. default: true
  50447. },
  50448. ]
  50449. ))
  50450. characterMakers.push(() => makeCharacter(
  50451. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50452. {
  50453. front: {
  50454. height: math.unit(11 + 9/12, "feet"),
  50455. weight: math.unit(2500, "lb"),
  50456. name: "Front",
  50457. image: {
  50458. source: "./media/characters/ilumina/front.svg",
  50459. extra: 2248/2209,
  50460. bottom: 164/2412
  50461. }
  50462. },
  50463. },
  50464. [
  50465. {
  50466. name: "Normal",
  50467. height: math.unit(11 + 9/12, "feet"),
  50468. default: true
  50469. },
  50470. ]
  50471. ))
  50472. characterMakers.push(() => makeCharacter(
  50473. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50474. {
  50475. front: {
  50476. height: math.unit(8 + 10/12, "feet"),
  50477. weight: math.unit(1350, "lb"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/moonshine/front.svg",
  50481. extra: 2395/2288,
  50482. bottom: 40/2435
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(8 + 10/12, "feet"),
  50490. default: true
  50491. },
  50492. ]
  50493. ))
  50494. characterMakers.push(() => makeCharacter(
  50495. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50496. {
  50497. front: {
  50498. height: math.unit(14, "feet"),
  50499. weight: math.unit(3400, "lb"),
  50500. name: "Front",
  50501. image: {
  50502. source: "./media/characters/aletia/front.svg",
  50503. extra: 1185/1052,
  50504. bottom: 21/1206
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Compressed",
  50511. height: math.unit(8, "feet")
  50512. },
  50513. {
  50514. name: "Normal",
  50515. height: math.unit(14, "feet"),
  50516. default: true
  50517. },
  50518. ]
  50519. ))
  50520. characterMakers.push(() => makeCharacter(
  50521. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50522. {
  50523. front: {
  50524. height: math.unit(17, "feet"),
  50525. weight: math.unit(6500, "lb"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/deidra/front.svg",
  50529. extra: 1201/1081,
  50530. bottom: 16/1217
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Compressed",
  50537. height: math.unit(9 + 6/12, "feet")
  50538. },
  50539. {
  50540. name: "Normal",
  50541. height: math.unit(17, "feet"),
  50542. default: true
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(7 + 4/12, "feet"),
  50551. weight: math.unit(280, "lb"),
  50552. name: "Front",
  50553. image: {
  50554. source: "./media/characters/freki-yrmori/front.svg",
  50555. extra: 1286/1182,
  50556. bottom: 29/1315
  50557. }
  50558. },
  50559. maw: {
  50560. height: math.unit(0.9, "feet"),
  50561. name: "Maw",
  50562. image: {
  50563. source: "./media/characters/freki-yrmori/maw.svg"
  50564. }
  50565. },
  50566. },
  50567. [
  50568. {
  50569. name: "Normal",
  50570. height: math.unit(7 + 4/12, "feet"),
  50571. default: true
  50572. },
  50573. {
  50574. name: "Macro",
  50575. height: math.unit(38.5, "meters")
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50581. {
  50582. side: {
  50583. height: math.unit(47.2, "meters"),
  50584. weight: math.unit(10000, "tons"),
  50585. name: "Side",
  50586. image: {
  50587. source: "./media/characters/aetherios/side.svg",
  50588. extra: 2363/642,
  50589. bottom: 221/2584
  50590. }
  50591. },
  50592. top: {
  50593. height: math.unit(240, "meters"),
  50594. weight: math.unit(10000, "tons"),
  50595. name: "Top",
  50596. image: {
  50597. source: "./media/characters/aetherios/top.svg"
  50598. }
  50599. },
  50600. bottom: {
  50601. height: math.unit(240, "meters"),
  50602. weight: math.unit(10000, "tons"),
  50603. name: "Bottom",
  50604. image: {
  50605. source: "./media/characters/aetherios/bottom.svg"
  50606. }
  50607. },
  50608. head: {
  50609. height: math.unit(38.6, "meters"),
  50610. name: "Head",
  50611. image: {
  50612. source: "./media/characters/aetherios/head.svg",
  50613. extra: 1335/1112,
  50614. bottom: 0/1335
  50615. }
  50616. },
  50617. front: {
  50618. height: math.unit(29, "meters"),
  50619. name: "Front",
  50620. image: {
  50621. source: "./media/characters/aetherios/front.svg",
  50622. extra: 1266/953,
  50623. bottom: 158/1424
  50624. }
  50625. },
  50626. maw: {
  50627. height: math.unit(16.37, "meters"),
  50628. name: "Maw",
  50629. image: {
  50630. source: "./media/characters/aetherios/maw.svg",
  50631. extra: 748/637,
  50632. bottom: 0/748
  50633. },
  50634. extraAttributes: {
  50635. preyCapacity: {
  50636. name: "Capacity",
  50637. power: 3,
  50638. type: "volume",
  50639. base: math.unit(1000, "people")
  50640. },
  50641. tongueSize: {
  50642. name: "Tongue Size",
  50643. power: 2,
  50644. type: "area",
  50645. base: math.unit(21, "m^2")
  50646. }
  50647. }
  50648. },
  50649. forepaw: {
  50650. height: math.unit(18, "meters"),
  50651. name: "Forepaw",
  50652. image: {
  50653. source: "./media/characters/aetherios/forepaw.svg"
  50654. }
  50655. },
  50656. hindpaw: {
  50657. height: math.unit(23, "meters"),
  50658. name: "Hindpaw",
  50659. image: {
  50660. source: "./media/characters/aetherios/hindpaw.svg"
  50661. }
  50662. },
  50663. genitals: {
  50664. height: math.unit(42, "meters"),
  50665. name: "Genitals",
  50666. image: {
  50667. source: "./media/characters/aetherios/genitals.svg"
  50668. }
  50669. },
  50670. },
  50671. [
  50672. {
  50673. name: "Normal",
  50674. height: math.unit(47.2, "meters"),
  50675. default: true
  50676. },
  50677. {
  50678. name: "Macro",
  50679. height: math.unit(160, "meters")
  50680. },
  50681. {
  50682. name: "Mega",
  50683. height: math.unit(1.87, "km")
  50684. },
  50685. {
  50686. name: "Giga",
  50687. height: math.unit(40000, "km")
  50688. },
  50689. {
  50690. name: "Stellar",
  50691. height: math.unit(158000000, "km")
  50692. },
  50693. {
  50694. name: "Cosmic",
  50695. height: math.unit(9.46e12, "km")
  50696. },
  50697. ]
  50698. ))
  50699. characterMakers.push(() => makeCharacter(
  50700. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50701. {
  50702. front: {
  50703. height: math.unit(5 + 4/12, "feet"),
  50704. weight: math.unit(80, "lb"),
  50705. name: "Front",
  50706. image: {
  50707. source: "./media/characters/mizu-gieeg/front.svg",
  50708. extra: 850/709,
  50709. bottom: 52/902
  50710. }
  50711. },
  50712. back: {
  50713. height: math.unit(5 + 4/12, "feet"),
  50714. weight: math.unit(80, "lb"),
  50715. name: "Back",
  50716. image: {
  50717. source: "./media/characters/mizu-gieeg/back.svg",
  50718. extra: 882/745,
  50719. bottom: 25/907
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Normal",
  50726. height: math.unit(5 + 4/12, "feet"),
  50727. default: true
  50728. },
  50729. ]
  50730. ))
  50731. characterMakers.push(() => makeCharacter(
  50732. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50733. {
  50734. front: {
  50735. height: math.unit(6, "feet"),
  50736. name: "Front",
  50737. image: {
  50738. source: "./media/characters/roselle-st-papier/front.svg",
  50739. extra: 1430/1280,
  50740. bottom: 37/1467
  50741. }
  50742. },
  50743. back: {
  50744. height: math.unit(6, "feet"),
  50745. name: "Back",
  50746. image: {
  50747. source: "./media/characters/roselle-st-papier/back.svg",
  50748. extra: 1491/1296,
  50749. bottom: 23/1514
  50750. }
  50751. },
  50752. ear: {
  50753. height: math.unit(1.26, "feet"),
  50754. name: "Ear",
  50755. image: {
  50756. source: "./media/characters/roselle-st-papier/ear.svg"
  50757. }
  50758. },
  50759. },
  50760. [
  50761. {
  50762. name: "Normal",
  50763. height: math.unit(150, "feet"),
  50764. default: true
  50765. },
  50766. ]
  50767. ))
  50768. characterMakers.push(() => makeCharacter(
  50769. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50770. {
  50771. front: {
  50772. height: math.unit(1, "inches"),
  50773. name: "Front",
  50774. image: {
  50775. source: "./media/characters/valargent/front.svg",
  50776. extra: 1825/1694,
  50777. bottom: 62/1887
  50778. }
  50779. },
  50780. back: {
  50781. height: math.unit(1, "inches"),
  50782. name: "Back",
  50783. image: {
  50784. source: "./media/characters/valargent/back.svg",
  50785. extra: 1775/1682,
  50786. bottom: 88/1863
  50787. }
  50788. },
  50789. },
  50790. [
  50791. {
  50792. name: "Micro",
  50793. height: math.unit(1, "inch"),
  50794. default: true
  50795. },
  50796. ]
  50797. ))
  50798. characterMakers.push(() => makeCharacter(
  50799. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50800. {
  50801. front: {
  50802. height: math.unit(3.4, "meters"),
  50803. name: "Front",
  50804. image: {
  50805. source: "./media/characters/zarina/front.svg",
  50806. extra: 1733/1425,
  50807. bottom: 93/1826
  50808. }
  50809. },
  50810. squatting: {
  50811. height: math.unit(2.14, "meters"),
  50812. name: "Squatting",
  50813. image: {
  50814. source: "./media/characters/zarina/squatting.svg",
  50815. extra: 1073/788,
  50816. bottom: 63/1136
  50817. }
  50818. },
  50819. back: {
  50820. height: math.unit(2.14, "meters"),
  50821. name: "Back",
  50822. image: {
  50823. source: "./media/characters/zarina/back.svg",
  50824. extra: 1128/885,
  50825. bottom: 0/1128
  50826. }
  50827. },
  50828. },
  50829. [
  50830. {
  50831. name: "Normal",
  50832. height: math.unit(3.4, "meters"),
  50833. default: true
  50834. },
  50835. {
  50836. name: "Big",
  50837. height: math.unit(5, "meters")
  50838. },
  50839. {
  50840. name: "Macro",
  50841. height: math.unit(110, "meters")
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50847. {
  50848. front: {
  50849. height: math.unit(7, "feet"),
  50850. name: "Front",
  50851. image: {
  50852. source: "./media/characters/ventus-astro-fox/front.svg",
  50853. extra: 1792/1623,
  50854. bottom: 28/1820
  50855. }
  50856. },
  50857. back: {
  50858. height: math.unit(7, "feet"),
  50859. name: "Back",
  50860. image: {
  50861. source: "./media/characters/ventus-astro-fox/back.svg",
  50862. extra: 1789/1620,
  50863. bottom: 31/1820
  50864. }
  50865. },
  50866. outfit: {
  50867. height: math.unit(7, "feet"),
  50868. name: "Outfit",
  50869. image: {
  50870. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50871. extra: 1054/925,
  50872. bottom: 15/1069
  50873. }
  50874. },
  50875. head: {
  50876. height: math.unit(1.12, "feet"),
  50877. name: "Head",
  50878. image: {
  50879. source: "./media/characters/ventus-astro-fox/head.svg",
  50880. extra: 866/504,
  50881. bottom: 0/866
  50882. }
  50883. },
  50884. hand: {
  50885. height: math.unit(1, "feet"),
  50886. name: "Hand",
  50887. image: {
  50888. source: "./media/characters/ventus-astro-fox/hand.svg"
  50889. }
  50890. },
  50891. paw: {
  50892. height: math.unit(1.5, "feet"),
  50893. name: "Paw",
  50894. image: {
  50895. source: "./media/characters/ventus-astro-fox/paw.svg"
  50896. }
  50897. },
  50898. },
  50899. [
  50900. {
  50901. name: "Normal",
  50902. height: math.unit(7, "feet"),
  50903. default: true
  50904. },
  50905. {
  50906. name: "Macro",
  50907. height: math.unit(200, "feet")
  50908. },
  50909. {
  50910. name: "Cosmic",
  50911. height: math.unit(3, "universes")
  50912. },
  50913. ]
  50914. ))
  50915. characterMakers.push(() => makeCharacter(
  50916. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50917. {
  50918. front: {
  50919. height: math.unit(3, "meters"),
  50920. weight: math.unit(7000, "lb"),
  50921. name: "Front",
  50922. image: {
  50923. source: "./media/characters/core-t/front.svg",
  50924. extra: 5729/4941,
  50925. bottom: 1129/6858
  50926. }
  50927. },
  50928. },
  50929. [
  50930. {
  50931. name: "Big",
  50932. height: math.unit(3, "meters"),
  50933. default: true
  50934. },
  50935. ]
  50936. ))
  50937. characterMakers.push(() => makeCharacter(
  50938. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50939. {
  50940. normal: {
  50941. height: math.unit(6 + 6/12, "feet"),
  50942. weight: math.unit(275, "lb"),
  50943. name: "Front",
  50944. image: {
  50945. source: "./media/characters/cadbunny/normal.svg",
  50946. extra: 1129/947,
  50947. bottom: 93/1222
  50948. },
  50949. default: true,
  50950. form: "normal"
  50951. },
  50952. gigantamax: {
  50953. height: math.unit(26, "feet"),
  50954. weight: math.unit(16000, "lb"),
  50955. name: "Front",
  50956. image: {
  50957. source: "./media/characters/cadbunny/gigantamax.svg",
  50958. extra: 1133/944,
  50959. bottom: 90/1223
  50960. },
  50961. default: true,
  50962. form: "gigantamax"
  50963. },
  50964. },
  50965. [
  50966. {
  50967. name: "Normal",
  50968. height: math.unit(6 + 6/12, "feet"),
  50969. default: true,
  50970. form: "normal"
  50971. },
  50972. {
  50973. name: "Small",
  50974. height: math.unit(26, "feet"),
  50975. default: true,
  50976. form: "gigantamax"
  50977. },
  50978. {
  50979. name: "Large",
  50980. height: math.unit(78, "feet"),
  50981. form: "gigantamax"
  50982. },
  50983. ],
  50984. {
  50985. "normal": {
  50986. name: "Normal",
  50987. default: true
  50988. },
  50989. "gigantamax": {
  50990. name: "Gigantamax"
  50991. }
  50992. }
  50993. ))
  50994. characterMakers.push(() => makeCharacter(
  50995. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50996. {
  50997. anthroFront: {
  50998. height: math.unit(8, "feet"),
  50999. weight: math.unit(300, "lb"),
  51000. name: "Front",
  51001. image: {
  51002. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51003. extra: 1272/1176,
  51004. bottom: 53/1325
  51005. },
  51006. form: "anthro",
  51007. default: true
  51008. },
  51009. feralSide: {
  51010. height: math.unit(4, "feet"),
  51011. weight: math.unit(250, "lb"),
  51012. name: "Side",
  51013. image: {
  51014. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51015. extra: 731/621,
  51016. bottom: 0/731
  51017. },
  51018. form: "feral",
  51019. default: true
  51020. },
  51021. },
  51022. [
  51023. {
  51024. name: "Regular",
  51025. height: math.unit(8, "feet"),
  51026. form: "anthro"
  51027. },
  51028. {
  51029. name: "Macro",
  51030. height: math.unit(250, "feet"),
  51031. form: "anthro",
  51032. default: true
  51033. },
  51034. {
  51035. name: "Regular",
  51036. height: math.unit(4, "feet"),
  51037. form: "feral"
  51038. },
  51039. {
  51040. name: "Macro",
  51041. height: math.unit(125, "feet"),
  51042. form: "feral",
  51043. default: true
  51044. },
  51045. ],
  51046. {
  51047. "anthro": {
  51048. name: "Anthro",
  51049. default: true
  51050. },
  51051. "feral": {
  51052. name: "Feral",
  51053. },
  51054. }
  51055. ))
  51056. characterMakers.push(() => makeCharacter(
  51057. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51058. {
  51059. front: {
  51060. height: math.unit(11 + 10/12, "feet"),
  51061. weight: math.unit(1587, "kg"),
  51062. name: "Front",
  51063. image: {
  51064. source: "./media/characters/maple-javira-dragon/front.svg",
  51065. extra: 1136/744,
  51066. bottom: 73/1209
  51067. }
  51068. },
  51069. side: {
  51070. height: math.unit(11 + 10/12, "feet"),
  51071. weight: math.unit(1587, "kg"),
  51072. name: "Side",
  51073. image: {
  51074. source: "./media/characters/maple-javira-dragon/side.svg",
  51075. extra: 712/505,
  51076. bottom: 17/729
  51077. }
  51078. },
  51079. head: {
  51080. height: math.unit(8.05, "feet"),
  51081. name: "Head",
  51082. image: {
  51083. source: "./media/characters/maple-javira-dragon/head.svg",
  51084. extra: 1420/1344,
  51085. bottom: 0/1420
  51086. }
  51087. },
  51088. },
  51089. [
  51090. {
  51091. name: "Normal",
  51092. height: math.unit(11 + 10/12, "feet"),
  51093. default: true
  51094. },
  51095. ]
  51096. ))
  51097. characterMakers.push(() => makeCharacter(
  51098. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51099. {
  51100. front: {
  51101. height: math.unit(117, "cm"),
  51102. weight: math.unit(50, "kg"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/sonia-wyverntail/front.svg",
  51106. extra: 708/592,
  51107. bottom: 25/733
  51108. }
  51109. },
  51110. },
  51111. [
  51112. {
  51113. name: "Normal",
  51114. height: math.unit(117, "cm"),
  51115. default: true
  51116. },
  51117. ]
  51118. ))
  51119. characterMakers.push(() => makeCharacter(
  51120. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51121. {
  51122. front: {
  51123. height: math.unit(6 + 5/12, "feet"),
  51124. name: "Front",
  51125. image: {
  51126. source: "./media/characters/micah/front.svg",
  51127. extra: 1758/1546,
  51128. bottom: 214/1972
  51129. }
  51130. },
  51131. },
  51132. [
  51133. {
  51134. name: "Normal",
  51135. height: math.unit(6 + 5/12, "feet"),
  51136. default: true
  51137. },
  51138. ]
  51139. ))
  51140. characterMakers.push(() => makeCharacter(
  51141. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51142. {
  51143. front: {
  51144. height: math.unit(5 + 10/12, "feet"),
  51145. weight: math.unit(220, "lb"),
  51146. name: "Front",
  51147. image: {
  51148. source: "./media/characters/zarya/front.svg",
  51149. extra: 593/572,
  51150. bottom: 50/643
  51151. }
  51152. },
  51153. back: {
  51154. height: math.unit(5 + 10/12, "feet"),
  51155. weight: math.unit(220, "lb"),
  51156. name: "Back",
  51157. image: {
  51158. source: "./media/characters/zarya/back.svg",
  51159. extra: 603/582,
  51160. bottom: 38/641
  51161. }
  51162. },
  51163. },
  51164. [
  51165. {
  51166. name: "Normal",
  51167. height: math.unit(5 + 10/12, "feet"),
  51168. default: true
  51169. },
  51170. ]
  51171. ))
  51172. characterMakers.push(() => makeCharacter(
  51173. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51174. {
  51175. front: {
  51176. height: math.unit(7.5, "feet"),
  51177. name: "Front",
  51178. image: {
  51179. source: "./media/characters/sven-hatisson/front.svg",
  51180. extra: 917/857,
  51181. bottom: 42/959
  51182. }
  51183. },
  51184. back: {
  51185. height: math.unit(7.5, "feet"),
  51186. name: "Back",
  51187. image: {
  51188. source: "./media/characters/sven-hatisson/back.svg",
  51189. extra: 903/856,
  51190. bottom: 15/918
  51191. }
  51192. },
  51193. },
  51194. [
  51195. {
  51196. name: "Base Height",
  51197. height: math.unit(7.5, "feet")
  51198. },
  51199. {
  51200. name: "Usual Height",
  51201. height: math.unit(13.5, "feet"),
  51202. default: true
  51203. },
  51204. {
  51205. name: "Smaller Macro",
  51206. height: math.unit(85, "feet")
  51207. },
  51208. {
  51209. name: "Moderate Macro",
  51210. height: math.unit(320, "feet")
  51211. },
  51212. {
  51213. name: "Large Macro",
  51214. height: math.unit(1000, "feet")
  51215. },
  51216. {
  51217. name: "Largest Size",
  51218. height: math.unit(2, "miles")
  51219. },
  51220. ]
  51221. ))
  51222. characterMakers.push(() => makeCharacter(
  51223. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51224. {
  51225. side: {
  51226. height: math.unit(1.8, "meters"),
  51227. weight: math.unit(275, "kg"),
  51228. name: "Side",
  51229. image: {
  51230. source: "./media/characters/terra/side.svg",
  51231. extra: 1273/1147,
  51232. bottom: 0/1273
  51233. }
  51234. },
  51235. },
  51236. [
  51237. {
  51238. name: "Normal",
  51239. height: math.unit(16.2, "meters"),
  51240. default: true
  51241. },
  51242. ]
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51246. {
  51247. borzoiFront: {
  51248. height: math.unit(6 + 9/12, "feet"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/rae/borzoi-front.svg",
  51252. extra: 1161/1098,
  51253. bottom: 31/1192
  51254. },
  51255. form: "borzoi",
  51256. default: true
  51257. },
  51258. werewolfFront: {
  51259. height: math.unit(8 + 7/12, "feet"),
  51260. name: "Front",
  51261. image: {
  51262. source: "./media/characters/rae/werewolf-front.svg",
  51263. extra: 1411/1334,
  51264. bottom: 127/1538
  51265. },
  51266. form: "werewolf",
  51267. default: true
  51268. },
  51269. },
  51270. [
  51271. {
  51272. name: "Normal",
  51273. height: math.unit(6 + 9/12, "feet"),
  51274. default: true,
  51275. form: "borzoi"
  51276. },
  51277. {
  51278. name: "Normal",
  51279. height: math.unit(8 + 7/12, "feet"),
  51280. default: true,
  51281. form: "werewolf"
  51282. },
  51283. ],
  51284. {
  51285. "borzoi": {
  51286. name: "Borzoi",
  51287. default: true
  51288. },
  51289. "werewolf": {
  51290. name: "Werewolf",
  51291. },
  51292. }
  51293. ))
  51294. characterMakers.push(() => makeCharacter(
  51295. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51296. {
  51297. front: {
  51298. height: math.unit(8 + 7/12, "feet"),
  51299. weight: math.unit(482, "lb"),
  51300. name: "Front",
  51301. image: {
  51302. source: "./media/characters/kit/front.svg",
  51303. extra: 1247/1103,
  51304. bottom: 41/1288
  51305. }
  51306. },
  51307. back: {
  51308. height: math.unit(8 + 7/12, "feet"),
  51309. weight: math.unit(482, "lb"),
  51310. name: "Back",
  51311. image: {
  51312. source: "./media/characters/kit/back.svg",
  51313. extra: 1252/1123,
  51314. bottom: 21/1273
  51315. }
  51316. },
  51317. paw: {
  51318. height: math.unit(1.46, "feet"),
  51319. name: "Paw",
  51320. image: {
  51321. source: "./media/characters/kit/paw.svg"
  51322. }
  51323. },
  51324. },
  51325. [
  51326. {
  51327. name: "Normal",
  51328. height: math.unit(2.61, "meters"),
  51329. default: true
  51330. },
  51331. {
  51332. name: "\"Tall\"",
  51333. height: math.unit(8.21, "meters")
  51334. },
  51335. {
  51336. name: "Tall",
  51337. height: math.unit(19.6, "meters")
  51338. },
  51339. {
  51340. name: "Very Tall",
  51341. height: math.unit(57.91, "meters")
  51342. },
  51343. {
  51344. name: "Semi-Macro",
  51345. height: math.unit(138.64, "meters")
  51346. },
  51347. {
  51348. name: "Macro",
  51349. height: math.unit(831.99, "meters")
  51350. },
  51351. {
  51352. name: "EX-Macro",
  51353. height: math.unit(96451121, "meters")
  51354. },
  51355. {
  51356. name: "S1-Omnipotent",
  51357. height: math.unit(4.42074e+9, "meters")
  51358. },
  51359. {
  51360. name: "S2-Omnipotent",
  51361. height: math.unit(9.42074e+17, "meters")
  51362. },
  51363. {
  51364. name: "Omnipotent",
  51365. height: math.unit(4.23112e+24, "meters")
  51366. },
  51367. {
  51368. name: "Hypergod",
  51369. height: math.unit(5.05176e+27, "meters")
  51370. },
  51371. {
  51372. name: "Hypergod-EX",
  51373. height: math.unit(9.45532e+49, "meters")
  51374. },
  51375. {
  51376. name: "Hypergod-SP",
  51377. height: math.unit(9.45532e+195, "meters")
  51378. },
  51379. ]
  51380. ))
  51381. characterMakers.push(() => makeCharacter(
  51382. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51383. {
  51384. side: {
  51385. height: math.unit(0.6, "meters"),
  51386. weight: math.unit(24, "kg"),
  51387. name: "Side",
  51388. image: {
  51389. source: "./media/characters/celeste/side.svg",
  51390. extra: 810/517,
  51391. bottom: 53/863
  51392. }
  51393. },
  51394. },
  51395. [
  51396. {
  51397. name: "Velociraptor",
  51398. height: math.unit(0.6, "meters"),
  51399. default: true
  51400. },
  51401. {
  51402. name: "Utahraptor",
  51403. height: math.unit(1.8, "meters")
  51404. },
  51405. {
  51406. name: "Gallimimus",
  51407. height: math.unit(4.0, "meters")
  51408. },
  51409. {
  51410. name: "Large",
  51411. height: math.unit(20, "meters")
  51412. },
  51413. {
  51414. name: "Planetary",
  51415. height: math.unit(50, "megameters")
  51416. },
  51417. {
  51418. name: "Stellar",
  51419. height: math.unit(1.5, "gigameters")
  51420. },
  51421. {
  51422. name: "Galactic",
  51423. height: math.unit(100, "exameters")
  51424. },
  51425. ]
  51426. ))
  51427. characterMakers.push(() => makeCharacter(
  51428. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51429. {
  51430. front: {
  51431. height: math.unit(6, "feet"),
  51432. weight: math.unit(210, "lb"),
  51433. name: "Front",
  51434. image: {
  51435. source: "./media/characters/glacia/front.svg",
  51436. extra: 958/901,
  51437. bottom: 45/1003
  51438. }
  51439. },
  51440. },
  51441. [
  51442. {
  51443. name: "Macro",
  51444. height: math.unit(1000, "meters"),
  51445. default: true
  51446. },
  51447. ]
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51451. {
  51452. front: {
  51453. height: math.unit(4, "meters"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/giri/front.svg",
  51457. extra: 966/894,
  51458. bottom: 21/987
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Normal",
  51465. height: math.unit(4, "meters"),
  51466. default: true
  51467. },
  51468. ]
  51469. ))
  51470. characterMakers.push(() => makeCharacter(
  51471. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51472. {
  51473. back: {
  51474. height: math.unit(4, "feet"),
  51475. weight: math.unit(37, "lb"),
  51476. name: "Back",
  51477. image: {
  51478. source: "./media/characters/tin/back.svg",
  51479. extra: 845/780,
  51480. bottom: 28/873
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Normal",
  51487. height: math.unit(4, "feet"),
  51488. default: true
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51494. {
  51495. front: {
  51496. height: math.unit(25, "feet"),
  51497. name: "Front",
  51498. image: {
  51499. source: "./media/characters/cadenza-vivace/front.svg",
  51500. extra: 1842/1578,
  51501. bottom: 30/1872
  51502. }
  51503. },
  51504. },
  51505. [
  51506. {
  51507. name: "Macro",
  51508. height: math.unit(25, "feet"),
  51509. default: true
  51510. },
  51511. ]
  51512. ))
  51513. characterMakers.push(() => makeCharacter(
  51514. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51515. {
  51516. front: {
  51517. height: math.unit(10, "feet"),
  51518. weight: math.unit(625, "kg"),
  51519. name: "Front",
  51520. image: {
  51521. source: "./media/characters/zain/front.svg",
  51522. extra: 1682/1498,
  51523. bottom: 223/1905
  51524. }
  51525. },
  51526. back: {
  51527. height: math.unit(10, "feet"),
  51528. weight: math.unit(625, "kg"),
  51529. name: "Back",
  51530. image: {
  51531. source: "./media/characters/zain/back.svg",
  51532. extra: 1814/1657,
  51533. bottom: 152/1966
  51534. }
  51535. },
  51536. head: {
  51537. height: math.unit(10, "feet"),
  51538. weight: math.unit(625, "kg"),
  51539. name: "Head",
  51540. image: {
  51541. source: "./media/characters/zain/head.svg",
  51542. extra: 1059/762,
  51543. bottom: 0/1059
  51544. }
  51545. },
  51546. },
  51547. [
  51548. {
  51549. name: "Normal",
  51550. height: math.unit(10, "feet"),
  51551. default: true
  51552. },
  51553. ]
  51554. ))
  51555. characterMakers.push(() => makeCharacter(
  51556. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51557. {
  51558. front: {
  51559. height: math.unit(6 + 5/12, "feet"),
  51560. weight: math.unit(750, "lb"),
  51561. name: "Front",
  51562. image: {
  51563. source: "./media/characters/ruchex/front.svg",
  51564. extra: 877/820,
  51565. bottom: 17/894
  51566. },
  51567. extraAttributes: {
  51568. "width": {
  51569. name: "Width",
  51570. power: 1,
  51571. type: "length",
  51572. base: math.unit(4.757, "feet")
  51573. },
  51574. }
  51575. },
  51576. },
  51577. [
  51578. {
  51579. name: "Normal",
  51580. height: math.unit(6 + 5/12, "feet"),
  51581. default: true
  51582. },
  51583. ]
  51584. ))
  51585. characterMakers.push(() => makeCharacter(
  51586. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51587. {
  51588. dressedFront: {
  51589. height: math.unit(191, "cm"),
  51590. weight: math.unit(80, "kg"),
  51591. name: "Front",
  51592. image: {
  51593. source: "./media/characters/buster/dressed-front.svg",
  51594. extra: 1022/973,
  51595. bottom: 69/1091
  51596. }
  51597. },
  51598. dressedBack: {
  51599. height: math.unit(191, "cm"),
  51600. weight: math.unit(80, "kg"),
  51601. name: "Back",
  51602. image: {
  51603. source: "./media/characters/buster/dressed-back.svg",
  51604. extra: 1018/970,
  51605. bottom: 55/1073
  51606. }
  51607. },
  51608. nudeFront: {
  51609. height: math.unit(191, "cm"),
  51610. weight: math.unit(80, "kg"),
  51611. name: "Front (Nude)",
  51612. image: {
  51613. source: "./media/characters/buster/nude-front.svg",
  51614. extra: 1022/973,
  51615. bottom: 69/1091
  51616. }
  51617. },
  51618. nudeBack: {
  51619. height: math.unit(191, "cm"),
  51620. weight: math.unit(80, "kg"),
  51621. name: "Back (Nude)",
  51622. image: {
  51623. source: "./media/characters/buster/nude-back.svg",
  51624. extra: 1018/970,
  51625. bottom: 55/1073
  51626. }
  51627. },
  51628. dick: {
  51629. height: math.unit(2.59, "feet"),
  51630. name: "Dick",
  51631. image: {
  51632. source: "./media/characters/buster/dick.svg"
  51633. }
  51634. },
  51635. ass: {
  51636. height: math.unit(1.2, "feet"),
  51637. name: "Ass",
  51638. image: {
  51639. source: "./media/characters/buster/ass.svg"
  51640. }
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(191, "cm"),
  51647. default: true
  51648. },
  51649. ]
  51650. ))
  51651. characterMakers.push(() => makeCharacter(
  51652. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51653. {
  51654. side: {
  51655. height: math.unit(8.1, "feet"),
  51656. weight: math.unit(3500, "lb"),
  51657. name: "Side",
  51658. image: {
  51659. source: "./media/characters/sonya/side.svg",
  51660. extra: 1730/1317,
  51661. bottom: 86/1816
  51662. }
  51663. },
  51664. },
  51665. [
  51666. {
  51667. name: "Normal",
  51668. height: math.unit(8.1, "feet"),
  51669. default: true
  51670. },
  51671. ]
  51672. ))
  51673. characterMakers.push(() => makeCharacter(
  51674. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51675. {
  51676. front: {
  51677. height: math.unit(6, "feet"),
  51678. weight: math.unit(150, "lb"),
  51679. name: "Front",
  51680. image: {
  51681. source: "./media/characters/cadence-andrysiak/front.svg",
  51682. extra: 1164/1121,
  51683. bottom: 60/1224
  51684. }
  51685. },
  51686. back: {
  51687. height: math.unit(6, "feet"),
  51688. weight: math.unit(150, "lb"),
  51689. name: "Back",
  51690. image: {
  51691. source: "./media/characters/cadence-andrysiak/back.svg",
  51692. extra: 1200/1165,
  51693. bottom: 9/1209
  51694. }
  51695. },
  51696. dressed: {
  51697. height: math.unit(6, "feet"),
  51698. weight: math.unit(150, "lb"),
  51699. name: "Dressed",
  51700. image: {
  51701. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51702. extra: 1164/1121,
  51703. bottom: 60/1224
  51704. }
  51705. },
  51706. },
  51707. [
  51708. {
  51709. name: "Micro",
  51710. height: math.unit(1, "mm")
  51711. },
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(6, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(60, "inches"),
  51724. weight: math.unit(16, "lb"),
  51725. preyCapacity: math.unit(80, "liters"),
  51726. name: "Front",
  51727. image: {
  51728. source: "./media/characters/penny-lynx/front.svg",
  51729. extra: 1959/1769,
  51730. bottom: 49/2008
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Nokia",
  51737. height: math.unit(2, "inches")
  51738. },
  51739. {
  51740. name: "Desktop",
  51741. height: math.unit(24, "inches")
  51742. },
  51743. {
  51744. name: "TV",
  51745. height: math.unit(60, "inches")
  51746. },
  51747. {
  51748. name: "Jumbotron",
  51749. height: math.unit(12, "feet")
  51750. },
  51751. {
  51752. name: "Billboard",
  51753. height: math.unit(48, "feet"),
  51754. default: true
  51755. },
  51756. {
  51757. name: "IMAX",
  51758. height: math.unit(96, "feet")
  51759. },
  51760. {
  51761. name: "SINGULARITY",
  51762. height: math.unit(864938, "miles")
  51763. },
  51764. ]
  51765. ))
  51766. characterMakers.push(() => makeCharacter(
  51767. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51768. {
  51769. front: {
  51770. height: math.unit(5 + 4/12, "feet"),
  51771. weight: math.unit(230, "lb"),
  51772. name: "Front",
  51773. image: {
  51774. source: "./media/characters/sukebe/front.svg",
  51775. extra: 2130/2038,
  51776. bottom: 90/2220
  51777. }
  51778. },
  51779. back: {
  51780. height: math.unit(3.48, "feet"),
  51781. weight: math.unit(230, "lb"),
  51782. name: "Back",
  51783. image: {
  51784. source: "./media/characters/sukebe/back.svg",
  51785. extra: 1670/1604,
  51786. bottom: 0/1670
  51787. }
  51788. },
  51789. },
  51790. [
  51791. {
  51792. name: "Normal",
  51793. height: math.unit(5 + 4/12, "feet"),
  51794. default: true
  51795. },
  51796. ]
  51797. ))
  51798. characterMakers.push(() => makeCharacter(
  51799. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51800. {
  51801. front: {
  51802. height: math.unit(6, "feet"),
  51803. name: "Front",
  51804. image: {
  51805. source: "./media/characters/nylla/front.svg",
  51806. extra: 1868/1699,
  51807. bottom: 97/1965
  51808. }
  51809. },
  51810. back: {
  51811. height: math.unit(6, "feet"),
  51812. name: "Back",
  51813. image: {
  51814. source: "./media/characters/nylla/back.svg",
  51815. extra: 1889/1712,
  51816. bottom: 93/1982
  51817. }
  51818. },
  51819. frontNsfw: {
  51820. height: math.unit(6, "feet"),
  51821. name: "Front (NSFW)",
  51822. image: {
  51823. source: "./media/characters/nylla/front-nsfw.svg",
  51824. extra: 1868/1699,
  51825. bottom: 97/1965
  51826. },
  51827. extraAttributes: {
  51828. "dickLength": {
  51829. name: "Dick Length",
  51830. power: 1,
  51831. type: "length",
  51832. base: math.unit(1.4, "feet")
  51833. },
  51834. "cumVolume": {
  51835. name: "Cum Volume",
  51836. power: 3,
  51837. type: "volume",
  51838. base: math.unit(100, "mL")
  51839. },
  51840. }
  51841. },
  51842. backNsfw: {
  51843. height: math.unit(6, "feet"),
  51844. name: "Back (NSFW)",
  51845. image: {
  51846. source: "./media/characters/nylla/back-nsfw.svg",
  51847. extra: 1889/1712,
  51848. bottom: 93/1982
  51849. }
  51850. },
  51851. maw: {
  51852. height: math.unit(2.10, "feet"),
  51853. name: "Maw",
  51854. image: {
  51855. source: "./media/characters/nylla/maw.svg"
  51856. }
  51857. },
  51858. paws: {
  51859. height: math.unit(2.06, "feet"),
  51860. name: "Paws",
  51861. image: {
  51862. source: "./media/characters/nylla/paws.svg"
  51863. }
  51864. },
  51865. muzzle: {
  51866. height: math.unit(0.61, "feet"),
  51867. name: "Muzzle",
  51868. image: {
  51869. source: "./media/characters/nylla/muzzle.svg"
  51870. }
  51871. },
  51872. sheath: {
  51873. height: math.unit(1.305, "feet"),
  51874. name: "Sheath",
  51875. image: {
  51876. source: "./media/characters/nylla/sheath.svg"
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Micro",
  51883. height: math.unit(7.5, "inches")
  51884. },
  51885. {
  51886. name: "Normal",
  51887. height: math.unit(7, "feet"),
  51888. default: true
  51889. },
  51890. {
  51891. name: "Macro",
  51892. height: math.unit(60, "feet")
  51893. },
  51894. {
  51895. name: "Mega",
  51896. height: math.unit(200, "feet")
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51902. {
  51903. front: {
  51904. height: math.unit(10, "feet"),
  51905. weight: math.unit(2300, "lb"),
  51906. name: "Front",
  51907. image: {
  51908. source: "./media/characters/hunt3r/front.svg",
  51909. extra: 1909/1742,
  51910. bottom: 46/1955
  51911. }
  51912. },
  51913. },
  51914. [
  51915. {
  51916. name: "Normal",
  51917. height: math.unit(10, "feet"),
  51918. default: true
  51919. },
  51920. ]
  51921. ))
  51922. characterMakers.push(() => makeCharacter(
  51923. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51924. {
  51925. dressed: {
  51926. height: math.unit(11, "feet"),
  51927. weight: math.unit(18500, "lb"),
  51928. preyCapacity: math.unit(9, "people"),
  51929. name: "Dressed",
  51930. image: {
  51931. source: "./media/characters/cylphis/dressed.svg",
  51932. extra: 1028/1003,
  51933. bottom: 75/1103
  51934. },
  51935. },
  51936. undressed: {
  51937. height: math.unit(11, "feet"),
  51938. weight: math.unit(18500, "lb"),
  51939. preyCapacity: math.unit(9, "people"),
  51940. name: "Undressed",
  51941. image: {
  51942. source: "./media/characters/cylphis/undressed.svg",
  51943. extra: 1028/1003,
  51944. bottom: 75/1103
  51945. }
  51946. },
  51947. full: {
  51948. height: math.unit(11, "feet"),
  51949. weight: math.unit(18500 + 150*9, "lb"),
  51950. preyCapacity: math.unit(9, "people"),
  51951. name: "Full",
  51952. image: {
  51953. source: "./media/characters/cylphis/full.svg",
  51954. extra: 1028/1003,
  51955. bottom: 75/1103
  51956. }
  51957. },
  51958. },
  51959. [
  51960. {
  51961. name: "Small",
  51962. height: math.unit(8, "feet")
  51963. },
  51964. {
  51965. name: "Normal",
  51966. height: math.unit(11, "feet"),
  51967. default: true
  51968. },
  51969. ]
  51970. ))
  51971. characterMakers.push(() => makeCharacter(
  51972. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51973. {
  51974. front: {
  51975. height: math.unit(2 + 7/12, "feet"),
  51976. name: "Front",
  51977. image: {
  51978. source: "./media/characters/orishan/front.svg",
  51979. extra: 1058/1023,
  51980. bottom: 23/1081
  51981. }
  51982. },
  51983. back: {
  51984. height: math.unit(2 + 7/12, "feet"),
  51985. name: "Back",
  51986. image: {
  51987. source: "./media/characters/orishan/back.svg",
  51988. extra: 1058/1023,
  51989. bottom: 23/1081
  51990. }
  51991. },
  51992. },
  51993. [
  51994. {
  51995. name: "Micro",
  51996. height: math.unit(2, "cm")
  51997. },
  51998. {
  51999. name: "Normal",
  52000. height: math.unit(2 + 7/12, "feet"),
  52001. default: true
  52002. },
  52003. ]
  52004. ))
  52005. characterMakers.push(() => makeCharacter(
  52006. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52007. {
  52008. front: {
  52009. height: math.unit(3, "meters"),
  52010. weight: math.unit(508, "kg"),
  52011. name: "Front",
  52012. image: {
  52013. source: "./media/characters/seranis/front.svg",
  52014. extra: 1478/1454,
  52015. bottom: 41/1519
  52016. }
  52017. },
  52018. },
  52019. [
  52020. {
  52021. name: "Normal",
  52022. height: math.unit(3, "meters"),
  52023. default: true
  52024. },
  52025. {
  52026. name: "Macro",
  52027. height: math.unit(108, "meters")
  52028. },
  52029. {
  52030. name: "Megamacro",
  52031. height: math.unit(1250, "meters")
  52032. },
  52033. ]
  52034. ))
  52035. characterMakers.push(() => makeCharacter(
  52036. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52037. {
  52038. undressed: {
  52039. height: math.unit(5 + 3/12, "feet"),
  52040. name: "Undressed",
  52041. image: {
  52042. source: "./media/characters/ankou/undressed.svg",
  52043. extra: 1301/1213,
  52044. bottom: 87/1388
  52045. }
  52046. },
  52047. dressed: {
  52048. height: math.unit(5 + 3/12, "feet"),
  52049. name: "Dressed",
  52050. image: {
  52051. source: "./media/characters/ankou/dressed.svg",
  52052. extra: 1301/1213,
  52053. bottom: 87/1388
  52054. }
  52055. },
  52056. head: {
  52057. height: math.unit(1.61, "feet"),
  52058. name: "Head",
  52059. image: {
  52060. source: "./media/characters/ankou/head.svg"
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(5 + 3/12, "feet"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52074. {
  52075. side: {
  52076. height: math.unit(6 + 3/12, "feet"),
  52077. weight: math.unit(200, "kg"),
  52078. name: "Side",
  52079. image: {
  52080. source: "./media/characters/juniper-skunktaur/side.svg",
  52081. extra: 1574/1229,
  52082. bottom: 38/1612
  52083. }
  52084. },
  52085. front: {
  52086. height: math.unit(6 + 3/12, "feet"),
  52087. weight: math.unit(200, "kg"),
  52088. name: "Front",
  52089. image: {
  52090. source: "./media/characters/juniper-skunktaur/front.svg",
  52091. extra: 1337/1278,
  52092. bottom: 22/1359
  52093. }
  52094. },
  52095. back: {
  52096. height: math.unit(6 + 3/12, "feet"),
  52097. weight: math.unit(200, "kg"),
  52098. name: "Back",
  52099. image: {
  52100. source: "./media/characters/juniper-skunktaur/back.svg",
  52101. extra: 1618/1273,
  52102. bottom: 13/1631
  52103. }
  52104. },
  52105. top: {
  52106. height: math.unit(2.62, "feet"),
  52107. weight: math.unit(200, "kg"),
  52108. name: "Top",
  52109. image: {
  52110. source: "./media/characters/juniper-skunktaur/top.svg"
  52111. }
  52112. },
  52113. },
  52114. [
  52115. {
  52116. name: "Normal",
  52117. height: math.unit(6 + 3/12, "feet"),
  52118. default: true
  52119. },
  52120. ]
  52121. ))
  52122. characterMakers.push(() => makeCharacter(
  52123. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52124. {
  52125. front: {
  52126. height: math.unit(20.5, "feet"),
  52127. name: "Front",
  52128. image: {
  52129. source: "./media/characters/rei/front.svg",
  52130. extra: 1349/1195,
  52131. bottom: 31/1380
  52132. }
  52133. },
  52134. back: {
  52135. height: math.unit(20.5, "feet"),
  52136. name: "Back",
  52137. image: {
  52138. source: "./media/characters/rei/back.svg",
  52139. extra: 1358/1204,
  52140. bottom: 22/1380
  52141. }
  52142. },
  52143. pawsDigi: {
  52144. height: math.unit(3.45, "feet"),
  52145. name: "Paws (Digi)",
  52146. image: {
  52147. source: "./media/characters/rei/paws-digi.svg"
  52148. }
  52149. },
  52150. pawsPlanti: {
  52151. height: math.unit(3.45, "feet"),
  52152. name: "Paws (Planti)",
  52153. image: {
  52154. source: "./media/characters/rei/paws-planti.svg"
  52155. }
  52156. },
  52157. },
  52158. [
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(20.5, "feet"),
  52162. default: true
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(5 + 11/12, "feet"),
  52171. name: "Front",
  52172. image: {
  52173. source: "./media/characters/carina/front.svg",
  52174. extra: 1720/1449,
  52175. bottom: 14/1734
  52176. }
  52177. },
  52178. back: {
  52179. height: math.unit(5 + 11/12, "feet"),
  52180. name: "Back",
  52181. image: {
  52182. source: "./media/characters/carina/back.svg",
  52183. extra: 1493/1445,
  52184. bottom: 17/1510
  52185. }
  52186. },
  52187. paw: {
  52188. height: math.unit(0.92, "feet"),
  52189. name: "Paw",
  52190. image: {
  52191. source: "./media/characters/carina/paw.svg"
  52192. }
  52193. },
  52194. },
  52195. [
  52196. {
  52197. name: "Normal",
  52198. height: math.unit(5 + 11/12, "feet"),
  52199. default: true
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52205. {
  52206. front: {
  52207. height: math.unit(4.88, "meters"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/maya/front.svg",
  52211. extra: 1222/1145,
  52212. bottom: 57/1279
  52213. }
  52214. },
  52215. },
  52216. [
  52217. {
  52218. name: "Normal",
  52219. height: math.unit(4.88, "meters"),
  52220. default: true
  52221. },
  52222. {
  52223. name: "Macro",
  52224. height: math.unit(38.1, "meters")
  52225. },
  52226. {
  52227. name: "Macro+",
  52228. height: math.unit(152.4, "meters")
  52229. },
  52230. {
  52231. name: "Macro++",
  52232. height: math.unit(16.09, "km")
  52233. },
  52234. {
  52235. name: "Mega-macro",
  52236. height: math.unit(700, "megameters")
  52237. },
  52238. ]
  52239. ))
  52240. characterMakers.push(() => makeCharacter(
  52241. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52242. {
  52243. front: {
  52244. height: math.unit(6 + 2/12, "feet"),
  52245. weight: math.unit(500, "lb"),
  52246. preyCapacity: math.unit(4, "people"),
  52247. name: "Front",
  52248. image: {
  52249. source: "./media/characters/yepir/front.svg"
  52250. }
  52251. },
  52252. side: {
  52253. height: math.unit(6 + 2/12, "feet"),
  52254. weight: math.unit(500, "lb"),
  52255. preyCapacity: math.unit(4, "people"),
  52256. name: "Side",
  52257. image: {
  52258. source: "./media/characters/yepir/side.svg"
  52259. }
  52260. },
  52261. paw: {
  52262. height: math.unit(1.05, "feet"),
  52263. name: "Paw",
  52264. image: {
  52265. source: "./media/characters/yepir/paw.svg"
  52266. }
  52267. },
  52268. },
  52269. [
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(6 + 2/12, "feet"),
  52273. default: true
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(5 + 4/12, "feet"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/russec/front.svg",
  52285. extra: 1926/1626,
  52286. bottom: 72/1998
  52287. }
  52288. },
  52289. back: {
  52290. height: math.unit(5 + 4/12, "feet"),
  52291. name: "Back",
  52292. image: {
  52293. source: "./media/characters/russec/back.svg",
  52294. extra: 1910/1591,
  52295. bottom: 48/1958
  52296. }
  52297. },
  52298. },
  52299. [
  52300. {
  52301. name: "Small",
  52302. height: math.unit(5 + 4/12, "feet")
  52303. },
  52304. {
  52305. name: "Normal",
  52306. height: math.unit(72, "feet"),
  52307. default: true
  52308. },
  52309. ]
  52310. ))
  52311. characterMakers.push(() => makeCharacter(
  52312. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52313. {
  52314. side: {
  52315. height: math.unit(12, "feet"),
  52316. name: "Side",
  52317. image: {
  52318. source: "./media/characters/cianus/side.svg",
  52319. extra: 808/526,
  52320. bottom: 61/869
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(12, "feet"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52334. {
  52335. front: {
  52336. height: math.unit(9 + 6/12, "feet"),
  52337. weight: math.unit(300, "lb"),
  52338. name: "Front",
  52339. image: {
  52340. source: "./media/characters/ahab/front.svg",
  52341. extra: 1897/1868,
  52342. bottom: 121/2018
  52343. }
  52344. },
  52345. frontNsfw: {
  52346. height: math.unit(9 + 6/12, "feet"),
  52347. weight: math.unit(300, "lb"),
  52348. name: "Front-nsfw",
  52349. image: {
  52350. source: "./media/characters/ahab/front-nsfw.svg",
  52351. extra: 1897/1868,
  52352. bottom: 121/2018
  52353. }
  52354. },
  52355. },
  52356. [
  52357. {
  52358. name: "Normal",
  52359. height: math.unit(9 + 6/12, "feet")
  52360. },
  52361. {
  52362. name: "Macro",
  52363. height: math.unit(657, "feet"),
  52364. default: true
  52365. },
  52366. ]
  52367. ))
  52368. characterMakers.push(() => makeCharacter(
  52369. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52370. {
  52371. front: {
  52372. height: math.unit(2.69, "meters"),
  52373. weight: math.unit(132, "kg"),
  52374. name: "Front",
  52375. image: {
  52376. source: "./media/characters/aarkus/front.svg",
  52377. extra: 1400/1231,
  52378. bottom: 34/1434
  52379. }
  52380. },
  52381. back: {
  52382. height: math.unit(2.69, "meters"),
  52383. weight: math.unit(132, "kg"),
  52384. name: "Back",
  52385. image: {
  52386. source: "./media/characters/aarkus/back.svg",
  52387. extra: 1381/1218,
  52388. bottom: 30/1411
  52389. }
  52390. },
  52391. frontNsfw: {
  52392. height: math.unit(2.69, "meters"),
  52393. weight: math.unit(132, "kg"),
  52394. name: "Front (NSFW)",
  52395. image: {
  52396. source: "./media/characters/aarkus/front-nsfw.svg",
  52397. extra: 1400/1231,
  52398. bottom: 34/1434
  52399. }
  52400. },
  52401. foot: {
  52402. height: math.unit(1.45, "feet"),
  52403. name: "Foot",
  52404. image: {
  52405. source: "./media/characters/aarkus/foot.svg"
  52406. }
  52407. },
  52408. head: {
  52409. height: math.unit(2.85, "feet"),
  52410. name: "Head",
  52411. image: {
  52412. source: "./media/characters/aarkus/head.svg"
  52413. }
  52414. },
  52415. headAlt: {
  52416. height: math.unit(3.07, "feet"),
  52417. name: "Head (Alt)",
  52418. image: {
  52419. source: "./media/characters/aarkus/head-alt.svg"
  52420. }
  52421. },
  52422. mouth: {
  52423. height: math.unit(1.25, "feet"),
  52424. name: "Mouth",
  52425. image: {
  52426. source: "./media/characters/aarkus/mouth.svg"
  52427. }
  52428. },
  52429. dick: {
  52430. height: math.unit(1.77, "feet"),
  52431. name: "Dick",
  52432. image: {
  52433. source: "./media/characters/aarkus/dick.svg"
  52434. }
  52435. },
  52436. },
  52437. [
  52438. {
  52439. name: "Normal",
  52440. height: math.unit(2.69, "meters"),
  52441. default: true
  52442. },
  52443. {
  52444. name: "Macro",
  52445. height: math.unit(269, "meters")
  52446. },
  52447. {
  52448. name: "Macro+",
  52449. height: math.unit(672.5, "meters")
  52450. },
  52451. {
  52452. name: "Megamacro",
  52453. height: math.unit(2.017, "km")
  52454. },
  52455. ]
  52456. ))
  52457. characterMakers.push(() => makeCharacter(
  52458. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52459. {
  52460. front: {
  52461. height: math.unit(23.47, "cm"),
  52462. weight: math.unit(600, "grams"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/diode/front.svg",
  52466. extra: 1778/1396,
  52467. bottom: 95/1873
  52468. }
  52469. },
  52470. side: {
  52471. height: math.unit(23.47, "cm"),
  52472. weight: math.unit(600, "grams"),
  52473. name: "Side",
  52474. image: {
  52475. source: "./media/characters/diode/side.svg",
  52476. extra: 1831/1404,
  52477. bottom: 86/1917
  52478. }
  52479. },
  52480. wings: {
  52481. height: math.unit(0.683, "feet"),
  52482. name: "Wings",
  52483. image: {
  52484. source: "./media/characters/diode/wings.svg"
  52485. }
  52486. },
  52487. },
  52488. [
  52489. {
  52490. name: "Normal",
  52491. height: math.unit(23.47, "cm"),
  52492. default: true
  52493. },
  52494. ]
  52495. ))
  52496. characterMakers.push(() => makeCharacter(
  52497. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52498. {
  52499. front: {
  52500. height: math.unit(6 + 3/12, "feet"),
  52501. weight: math.unit(250, "lb"),
  52502. name: "Front",
  52503. image: {
  52504. source: "./media/characters/reika/front.svg",
  52505. extra: 1120/1078,
  52506. bottom: 86/1206
  52507. }
  52508. },
  52509. },
  52510. [
  52511. {
  52512. name: "Normal",
  52513. height: math.unit(6 + 3/12, "feet"),
  52514. default: true
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52520. {
  52521. front: {
  52522. height: math.unit(16 + 8/12, "feet"),
  52523. weight: math.unit(9000, "lb"),
  52524. name: "Front",
  52525. image: {
  52526. source: "./media/characters/lokuto-takama/front.svg",
  52527. extra: 1774/1632,
  52528. bottom: 147/1921
  52529. },
  52530. extraAttributes: {
  52531. "bustWidth": {
  52532. name: "Bust Width",
  52533. power: 1,
  52534. type: "length",
  52535. base: math.unit(2.4, "meters")
  52536. },
  52537. "breastWeight": {
  52538. name: "Breast Weight",
  52539. power: 3,
  52540. type: "mass",
  52541. base: math.unit(1000, "kg")
  52542. },
  52543. }
  52544. },
  52545. },
  52546. [
  52547. {
  52548. name: "Normal",
  52549. height: math.unit(16 + 8/12, "feet"),
  52550. default: true
  52551. },
  52552. ]
  52553. ))
  52554. characterMakers.push(() => makeCharacter(
  52555. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52556. {
  52557. front: {
  52558. height: math.unit(10, "cm"),
  52559. weight: math.unit(850, "grams"),
  52560. name: "Front",
  52561. image: {
  52562. source: "./media/characters/owak-bone/front.svg",
  52563. extra: 1965/1801,
  52564. bottom: 31/1996
  52565. }
  52566. },
  52567. },
  52568. [
  52569. {
  52570. name: "Normal",
  52571. height: math.unit(10, "cm"),
  52572. default: true
  52573. },
  52574. ]
  52575. ))
  52576. characterMakers.push(() => makeCharacter(
  52577. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52578. {
  52579. front: {
  52580. height: math.unit(2 + 6/12, "feet"),
  52581. weight: math.unit(9, "lb"),
  52582. name: "Front",
  52583. image: {
  52584. source: "./media/characters/muffin/front.svg",
  52585. extra: 1220/1195,
  52586. bottom: 84/1304
  52587. }
  52588. },
  52589. },
  52590. [
  52591. {
  52592. name: "Normal",
  52593. height: math.unit(2 + 6/12, "feet"),
  52594. default: true
  52595. },
  52596. ]
  52597. ))
  52598. characterMakers.push(() => makeCharacter(
  52599. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52600. {
  52601. front: {
  52602. height: math.unit(7, "feet"),
  52603. name: "Front",
  52604. image: {
  52605. source: "./media/characters/chimera/front.svg",
  52606. extra: 1752/1614,
  52607. bottom: 68/1820
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Normal",
  52614. height: math.unit(7, "feet")
  52615. },
  52616. {
  52617. name: "Gigamacro",
  52618. height: math.unit(2.9, "gigameters"),
  52619. default: true
  52620. },
  52621. {
  52622. name: "Universal",
  52623. height: math.unit(1.56e26, "yottameters")
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52629. {
  52630. front: {
  52631. height: math.unit(3, "feet"),
  52632. weight: math.unit(20, "lb"),
  52633. name: "Front",
  52634. image: {
  52635. source: "./media/characters/kit-fennec-fox/front.svg",
  52636. extra: 1027/932,
  52637. bottom: 16/1043
  52638. }
  52639. },
  52640. back: {
  52641. height: math.unit(3, "feet"),
  52642. weight: math.unit(20, "lb"),
  52643. name: "Back",
  52644. image: {
  52645. source: "./media/characters/kit-fennec-fox/back.svg",
  52646. extra: 1027/932,
  52647. bottom: 16/1043
  52648. }
  52649. },
  52650. },
  52651. [
  52652. {
  52653. name: "Normal",
  52654. height: math.unit(3, "feet"),
  52655. default: true
  52656. },
  52657. ]
  52658. ))
  52659. characterMakers.push(() => makeCharacter(
  52660. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52661. {
  52662. front: {
  52663. height: math.unit(167, "cm"),
  52664. name: "Front",
  52665. image: {
  52666. source: "./media/characters/blue-otter/front.svg",
  52667. extra: 1951/1920,
  52668. bottom: 31/1982
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Otter-Sized",
  52675. height: math.unit(100, "cm")
  52676. },
  52677. {
  52678. name: "Normal",
  52679. height: math.unit(167, "cm"),
  52680. default: true
  52681. },
  52682. ]
  52683. ))
  52684. characterMakers.push(() => makeCharacter(
  52685. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52686. {
  52687. front: {
  52688. height: math.unit(4 + 4/12, "feet"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52692. extra: 1072/1067,
  52693. bottom: 117/1189
  52694. }
  52695. },
  52696. back: {
  52697. height: math.unit(4 + 4/12, "feet"),
  52698. name: "Back",
  52699. image: {
  52700. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52701. extra: 1135/1129,
  52702. bottom: 57/1192
  52703. }
  52704. },
  52705. head: {
  52706. height: math.unit(1.77, "feet"),
  52707. name: "Head",
  52708. image: {
  52709. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52710. }
  52711. },
  52712. },
  52713. [
  52714. {
  52715. name: "Normal",
  52716. height: math.unit(4 + 4/12, "feet"),
  52717. default: true
  52718. },
  52719. ]
  52720. ))
  52721. characterMakers.push(() => makeCharacter(
  52722. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52723. {
  52724. front: {
  52725. height: math.unit(2, "inches"),
  52726. name: "Front",
  52727. image: {
  52728. source: "./media/characters/carley-hartford/front.svg",
  52729. extra: 1035/988,
  52730. bottom: 23/1058
  52731. }
  52732. },
  52733. back: {
  52734. height: math.unit(2, "inches"),
  52735. name: "Back",
  52736. image: {
  52737. source: "./media/characters/carley-hartford/back.svg",
  52738. extra: 1035/988,
  52739. bottom: 23/1058
  52740. }
  52741. },
  52742. dressed: {
  52743. height: math.unit(2, "inches"),
  52744. name: "Dressed",
  52745. image: {
  52746. source: "./media/characters/carley-hartford/dressed.svg",
  52747. extra: 651/620,
  52748. bottom: 0/651
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Micro",
  52755. height: math.unit(2, "inches"),
  52756. default: true
  52757. },
  52758. {
  52759. name: "Macro",
  52760. height: math.unit(6 + 3/12, "feet")
  52761. },
  52762. ]
  52763. ))
  52764. characterMakers.push(() => makeCharacter(
  52765. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52766. {
  52767. front: {
  52768. height: math.unit(2 + 3/12, "feet"),
  52769. weight: math.unit(15 + 7/16, "lb"),
  52770. name: "Front",
  52771. image: {
  52772. source: "./media/characters/duke/front.svg",
  52773. extra: 910/815,
  52774. bottom: 30/940
  52775. }
  52776. },
  52777. },
  52778. [
  52779. {
  52780. name: "Normal",
  52781. height: math.unit(2 + 3/12, "feet"),
  52782. default: true
  52783. },
  52784. ]
  52785. ))
  52786. characterMakers.push(() => makeCharacter(
  52787. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52788. {
  52789. front: {
  52790. height: math.unit(5 + 4/12, "feet"),
  52791. weight: math.unit(156, "lb"),
  52792. name: "Front",
  52793. image: {
  52794. source: "./media/characters/dein/front.svg",
  52795. extra: 855/815,
  52796. bottom: 48/903
  52797. }
  52798. },
  52799. side: {
  52800. height: math.unit(5 + 4/12, "feet"),
  52801. weight: math.unit(156, "lb"),
  52802. name: "side",
  52803. image: {
  52804. source: "./media/characters/dein/side.svg",
  52805. extra: 846/803,
  52806. bottom: 25/871
  52807. }
  52808. },
  52809. maw: {
  52810. height: math.unit(1.45, "feet"),
  52811. name: "Maw",
  52812. image: {
  52813. source: "./media/characters/dein/maw.svg"
  52814. }
  52815. },
  52816. },
  52817. [
  52818. {
  52819. name: "Ferret Sized",
  52820. height: math.unit(2 + 5/12, "feet")
  52821. },
  52822. {
  52823. name: "Normal",
  52824. height: math.unit(5 + 4/12, "feet"),
  52825. default: true
  52826. },
  52827. ]
  52828. ))
  52829. characterMakers.push(() => makeCharacter(
  52830. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52831. {
  52832. front: {
  52833. height: math.unit(84 + 8/12, "feet"),
  52834. weight: math.unit(942180, "lb"),
  52835. name: "Front",
  52836. image: {
  52837. source: "./media/characters/daurine-arima/front.svg",
  52838. extra: 1989/1782,
  52839. bottom: 37/2026
  52840. }
  52841. },
  52842. side: {
  52843. height: math.unit(84 + 8/12, "feet"),
  52844. weight: math.unit(942180, "lb"),
  52845. name: "Side",
  52846. image: {
  52847. source: "./media/characters/daurine-arima/side.svg",
  52848. extra: 1997/1790,
  52849. bottom: 21/2018
  52850. }
  52851. },
  52852. back: {
  52853. height: math.unit(84 + 8/12, "feet"),
  52854. weight: math.unit(942180, "lb"),
  52855. name: "Back",
  52856. image: {
  52857. source: "./media/characters/daurine-arima/back.svg",
  52858. extra: 1992/1800,
  52859. bottom: 12/2004
  52860. }
  52861. },
  52862. head: {
  52863. height: math.unit(15.5, "feet"),
  52864. name: "Head",
  52865. image: {
  52866. source: "./media/characters/daurine-arima/head.svg"
  52867. }
  52868. },
  52869. headAlt: {
  52870. height: math.unit(19.19, "feet"),
  52871. name: "Head (Alt)",
  52872. image: {
  52873. source: "./media/characters/daurine-arima/head-alt.svg"
  52874. }
  52875. },
  52876. },
  52877. [
  52878. {
  52879. name: "Minimum height",
  52880. height: math.unit(8 + 10/12, "feet")
  52881. },
  52882. {
  52883. name: "Comfort height",
  52884. height: math.unit(19 + 6 /12, "feet")
  52885. },
  52886. {
  52887. name: "\"Normal\" height",
  52888. height: math.unit(28 + 10/12, "feet")
  52889. },
  52890. {
  52891. name: "Base height",
  52892. height: math.unit(84 + 8/12, "feet"),
  52893. default: true
  52894. },
  52895. {
  52896. name: "Mini-macro",
  52897. height: math.unit(2360, "feet")
  52898. },
  52899. {
  52900. name: "Macro",
  52901. height: math.unit(10, "miles")
  52902. },
  52903. {
  52904. name: "Goddess",
  52905. height: math.unit(9.99e40, "yottameters")
  52906. },
  52907. ]
  52908. ))
  52909. characterMakers.push(() => makeCharacter(
  52910. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52911. {
  52912. front: {
  52913. height: math.unit(2.3, "meters"),
  52914. name: "Front",
  52915. image: {
  52916. source: "./media/characters/cilenomon/front.svg",
  52917. extra: 1963/1778,
  52918. bottom: 54/2017
  52919. }
  52920. },
  52921. },
  52922. [
  52923. {
  52924. name: "Normal",
  52925. height: math.unit(2.3, "meters"),
  52926. default: true
  52927. },
  52928. {
  52929. name: "Big",
  52930. height: math.unit(5, "meters")
  52931. },
  52932. {
  52933. name: "Macro",
  52934. height: math.unit(30, "meters")
  52935. },
  52936. {
  52937. name: "True",
  52938. height: math.unit(1, "universe")
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52944. {
  52945. front: {
  52946. height: math.unit(5, "feet"),
  52947. name: "Front",
  52948. image: {
  52949. source: "./media/characters/sen-mink/front.svg",
  52950. extra: 1727/1675,
  52951. bottom: 35/1762
  52952. }
  52953. },
  52954. },
  52955. [
  52956. {
  52957. name: "Normal",
  52958. height: math.unit(5, "feet"),
  52959. default: true
  52960. },
  52961. ]
  52962. ))
  52963. characterMakers.push(() => makeCharacter(
  52964. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52965. {
  52966. front: {
  52967. height: math.unit(5.42999, "feet"),
  52968. weight: math.unit(100, "lb"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/ophois/front.svg",
  52972. extra: 1429/1286,
  52973. bottom: 60/1489
  52974. }
  52975. },
  52976. },
  52977. [
  52978. {
  52979. name: "Normal",
  52980. height: math.unit(5.42999, "feet"),
  52981. default: true
  52982. },
  52983. ]
  52984. ))
  52985. characterMakers.push(() => makeCharacter(
  52986. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52987. {
  52988. front: {
  52989. height: math.unit(2, "meters"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/riley/front.svg",
  52993. extra: 1779/1754,
  52994. bottom: 139/1918
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Normal",
  53001. height: math.unit(2, "meters"),
  53002. default: true
  53003. },
  53004. ]
  53005. ))
  53006. characterMakers.push(() => makeCharacter(
  53007. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53008. {
  53009. front: {
  53010. height: math.unit(6 + 2/12, "feet"),
  53011. weight: math.unit(195, "lb"),
  53012. preyCapacity: math.unit(6, "people"),
  53013. name: "Front",
  53014. image: {
  53015. source: "./media/characters/shuken-flash/front.svg",
  53016. extra: 1905/1739,
  53017. bottom: 65/1970
  53018. }
  53019. },
  53020. back: {
  53021. height: math.unit(6 + 2/12, "feet"),
  53022. weight: math.unit(195, "lb"),
  53023. preyCapacity: math.unit(6, "people"),
  53024. name: "Back",
  53025. image: {
  53026. source: "./media/characters/shuken-flash/back.svg",
  53027. extra: 1912/1751,
  53028. bottom: 13/1925
  53029. }
  53030. },
  53031. },
  53032. [
  53033. {
  53034. name: "Normal",
  53035. height: math.unit(6 + 2/12, "feet"),
  53036. default: true
  53037. },
  53038. ]
  53039. ))
  53040. characterMakers.push(() => makeCharacter(
  53041. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53042. {
  53043. front: {
  53044. height: math.unit(5 + 9/12, "feet"),
  53045. weight: math.unit(150, "lb"),
  53046. name: "Front",
  53047. image: {
  53048. source: "./media/characters/plat/front.svg",
  53049. extra: 1816/1703,
  53050. bottom: 43/1859
  53051. }
  53052. },
  53053. side: {
  53054. height: math.unit(5 + 9/12, "feet"),
  53055. weight: math.unit(300, "lb"),
  53056. name: "Side",
  53057. image: {
  53058. source: "./media/characters/plat/side.svg",
  53059. extra: 1824/1699,
  53060. bottom: 18/1842
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Normal",
  53067. height: math.unit(5 + 9/12, "feet"),
  53068. default: true
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53074. {
  53075. front: {
  53076. height: math.unit(9, "feet"),
  53077. weight: math.unit(1800, "lb"),
  53078. name: "Front",
  53079. image: {
  53080. source: "./media/characters/elaine/front.svg",
  53081. extra: 1833/1354,
  53082. bottom: 25/1858
  53083. }
  53084. },
  53085. back: {
  53086. height: math.unit(8.8, "feet"),
  53087. weight: math.unit(1800, "lb"),
  53088. name: "Back",
  53089. image: {
  53090. source: "./media/characters/elaine/back.svg",
  53091. extra: 1641/1233,
  53092. bottom: 53/1694
  53093. }
  53094. },
  53095. },
  53096. [
  53097. {
  53098. name: "Normal",
  53099. height: math.unit(9, "feet"),
  53100. default: true
  53101. },
  53102. ]
  53103. ))
  53104. characterMakers.push(() => makeCharacter(
  53105. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53106. {
  53107. front: {
  53108. height: math.unit(17 + 9/12, "feet"),
  53109. weight: math.unit(8000, "lb"),
  53110. name: "Front",
  53111. image: {
  53112. source: "./media/characters/vera-raven/front.svg",
  53113. extra: 1457/1412,
  53114. bottom: 121/1578
  53115. }
  53116. },
  53117. side: {
  53118. height: math.unit(17 + 9/12, "feet"),
  53119. weight: math.unit(8000, "lb"),
  53120. name: "Side",
  53121. image: {
  53122. source: "./media/characters/vera-raven/side.svg",
  53123. extra: 1510/1464,
  53124. bottom: 54/1564
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(17 + 9/12, "feet"),
  53132. default: true
  53133. },
  53134. ]
  53135. ))
  53136. characterMakers.push(() => makeCharacter(
  53137. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53138. {
  53139. dressed: {
  53140. height: math.unit(6 + 9/12, "feet"),
  53141. name: "Dressed",
  53142. image: {
  53143. source: "./media/characters/nakisha/dressed.svg",
  53144. extra: 1909/1757,
  53145. bottom: 48/1957
  53146. }
  53147. },
  53148. nude: {
  53149. height: math.unit(6 + 9/12, "feet"),
  53150. name: "Nude",
  53151. image: {
  53152. source: "./media/characters/nakisha/nude.svg",
  53153. extra: 1917/1765,
  53154. bottom: 34/1951
  53155. }
  53156. },
  53157. },
  53158. [
  53159. {
  53160. name: "Normal",
  53161. height: math.unit(6 + 9/12, "feet"),
  53162. default: true
  53163. },
  53164. ]
  53165. ))
  53166. characterMakers.push(() => makeCharacter(
  53167. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53168. {
  53169. front: {
  53170. height: math.unit(87, "meters"),
  53171. name: "Front",
  53172. image: {
  53173. source: "./media/characters/serafin/front.svg",
  53174. extra: 1919/1776,
  53175. bottom: 65/1984
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(87, "meters"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(6, "feet"),
  53192. weight: math.unit(200, "lb"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/poptart/front.svg",
  53196. extra: 615/583,
  53197. bottom: 23/638
  53198. }
  53199. },
  53200. back: {
  53201. height: math.unit(6, "feet"),
  53202. weight: math.unit(200, "lb"),
  53203. name: "Back",
  53204. image: {
  53205. source: "./media/characters/poptart/back.svg",
  53206. extra: 617/584,
  53207. bottom: 22/639
  53208. }
  53209. },
  53210. frontNsfw: {
  53211. height: math.unit(6, "feet"),
  53212. weight: math.unit(200, "lb"),
  53213. name: "Front (NSFW)",
  53214. image: {
  53215. source: "./media/characters/poptart/front-nsfw.svg",
  53216. extra: 615/583,
  53217. bottom: 23/638
  53218. }
  53219. },
  53220. backNsfw: {
  53221. height: math.unit(6, "feet"),
  53222. weight: math.unit(200, "lb"),
  53223. name: "Back (NSFW)",
  53224. image: {
  53225. source: "./media/characters/poptart/back-nsfw.svg",
  53226. extra: 617/584,
  53227. bottom: 22/639
  53228. }
  53229. },
  53230. hand: {
  53231. height: math.unit(1.14, "feet"),
  53232. name: "Hand",
  53233. image: {
  53234. source: "./media/characters/poptart/hand.svg"
  53235. }
  53236. },
  53237. foot: {
  53238. height: math.unit(1.5, "feet"),
  53239. name: "Foot",
  53240. image: {
  53241. source: "./media/characters/poptart/foot.svg"
  53242. }
  53243. },
  53244. },
  53245. [
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(6, "feet"),
  53249. default: true
  53250. },
  53251. {
  53252. name: "Grande",
  53253. height: math.unit(350, "feet")
  53254. },
  53255. {
  53256. name: "Massif",
  53257. height: math.unit(967, "feet")
  53258. },
  53259. ]
  53260. ))
  53261. characterMakers.push(() => makeCharacter(
  53262. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53263. {
  53264. hyenaSide: {
  53265. height: math.unit(120, "cm"),
  53266. weight: math.unit(120, "lb"),
  53267. name: "Side",
  53268. image: {
  53269. source: "./media/characters/trance/hyena-side.svg",
  53270. extra: 998/904,
  53271. bottom: 76/1074
  53272. }
  53273. },
  53274. },
  53275. [
  53276. {
  53277. name: "Normal",
  53278. height: math.unit(120, "cm"),
  53279. default: true
  53280. },
  53281. {
  53282. name: "Dire",
  53283. height: math.unit(230, "cm")
  53284. },
  53285. {
  53286. name: "Macro",
  53287. height: math.unit(37, "feet")
  53288. },
  53289. ]
  53290. ))
  53291. characterMakers.push(() => makeCharacter(
  53292. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53293. {
  53294. front: {
  53295. height: math.unit(6 + 3/12, "feet"),
  53296. name: "Front",
  53297. image: {
  53298. source: "./media/characters/michael-berretta/front.svg",
  53299. extra: 515/494,
  53300. bottom: 20/535
  53301. }
  53302. },
  53303. back: {
  53304. height: math.unit(6 + 3/12, "feet"),
  53305. name: "Back",
  53306. image: {
  53307. source: "./media/characters/michael-berretta/back.svg",
  53308. extra: 520/497,
  53309. bottom: 21/541
  53310. }
  53311. },
  53312. frontNsfw: {
  53313. height: math.unit(6 + 3/12, "feet"),
  53314. name: "Front (NSFW)",
  53315. image: {
  53316. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53317. extra: 515/494,
  53318. bottom: 20/535
  53319. }
  53320. },
  53321. dick: {
  53322. height: math.unit(1, "feet"),
  53323. name: "Dick",
  53324. image: {
  53325. source: "./media/characters/michael-berretta/dick.svg"
  53326. }
  53327. },
  53328. },
  53329. [
  53330. {
  53331. name: "Normal",
  53332. height: math.unit(6 + 3/12, "feet"),
  53333. default: true
  53334. },
  53335. {
  53336. name: "Big",
  53337. height: math.unit(12, "feet")
  53338. },
  53339. {
  53340. name: "Macro",
  53341. height: math.unit(187.5, "feet")
  53342. },
  53343. ]
  53344. ))
  53345. characterMakers.push(() => makeCharacter(
  53346. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53347. {
  53348. front: {
  53349. height: math.unit(9 + 9/12, "feet"),
  53350. weight: math.unit(1244, "lb"),
  53351. name: "Front",
  53352. image: {
  53353. source: "./media/characters/stella-edgecomb/front.svg",
  53354. extra: 1835/1706,
  53355. bottom: 49/1884
  53356. }
  53357. },
  53358. pen: {
  53359. height: math.unit(0.95, "feet"),
  53360. name: "Pen",
  53361. image: {
  53362. source: "./media/characters/stella-edgecomb/pen.svg"
  53363. }
  53364. },
  53365. },
  53366. [
  53367. {
  53368. name: "Cozy Bear",
  53369. height: math.unit(0.5, "inches")
  53370. },
  53371. {
  53372. name: "Normal",
  53373. height: math.unit(9 + 9/12, "feet"),
  53374. default: true
  53375. },
  53376. {
  53377. name: "Giga Bear",
  53378. height: math.unit(1, "mile")
  53379. },
  53380. {
  53381. name: "Great Bear",
  53382. height: math.unit(53, "miles")
  53383. },
  53384. {
  53385. name: "Goddess Bear",
  53386. height: math.unit(40000, "miles")
  53387. },
  53388. {
  53389. name: "Sun Bear",
  53390. height: math.unit(900000, "miles")
  53391. },
  53392. ]
  53393. ))
  53394. characterMakers.push(() => makeCharacter(
  53395. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53396. {
  53397. anthroFront: {
  53398. height: math.unit(556, "cm"),
  53399. weight: math.unit(2650, "kg"),
  53400. preyCapacity: math.unit(3, "people"),
  53401. name: "Front",
  53402. image: {
  53403. source: "./media/characters/ash´iika/front.svg",
  53404. extra: 710/673,
  53405. bottom: 15/725
  53406. },
  53407. form: "anthro",
  53408. default: true
  53409. },
  53410. anthroSide: {
  53411. height: math.unit(556, "cm"),
  53412. weight: math.unit(2650, "kg"),
  53413. preyCapacity: math.unit(3, "people"),
  53414. name: "Side",
  53415. image: {
  53416. source: "./media/characters/ash´iika/side.svg",
  53417. extra: 696/676,
  53418. bottom: 13/709
  53419. },
  53420. form: "anthro"
  53421. },
  53422. anthroDressed: {
  53423. height: math.unit(556, "cm"),
  53424. weight: math.unit(2650, "kg"),
  53425. preyCapacity: math.unit(3, "people"),
  53426. name: "Dressed",
  53427. image: {
  53428. source: "./media/characters/ash´iika/dressed.svg",
  53429. extra: 710/673,
  53430. bottom: 15/725
  53431. },
  53432. form: "anthro"
  53433. },
  53434. anthroHead: {
  53435. height: math.unit(3.5, "feet"),
  53436. name: "Head",
  53437. image: {
  53438. source: "./media/characters/ash´iika/head.svg",
  53439. extra: 348/291,
  53440. bottom: 45/393
  53441. },
  53442. form: "anthro"
  53443. },
  53444. feralSide: {
  53445. height: math.unit(870, "cm"),
  53446. weight: math.unit(17500, "kg"),
  53447. preyCapacity: math.unit(15, "people"),
  53448. name: "Side",
  53449. image: {
  53450. source: "./media/characters/ash´iika/feral.svg",
  53451. extra: 595/199,
  53452. bottom: 7/602
  53453. },
  53454. form: "feral",
  53455. default: true,
  53456. },
  53457. },
  53458. [
  53459. {
  53460. name: "Normal",
  53461. height: math.unit(556, "cm"),
  53462. default: true,
  53463. form: "anthro"
  53464. },
  53465. {
  53466. name: "Macro",
  53467. height: math.unit(88, "meters"),
  53468. form: "anthro"
  53469. },
  53470. {
  53471. name: "Normal",
  53472. height: math.unit(870, "cm"),
  53473. default: true,
  53474. form: "feral"
  53475. },
  53476. {
  53477. name: "Large",
  53478. height: math.unit(25, "meters"),
  53479. form: "feral"
  53480. },
  53481. ],
  53482. {
  53483. "anthro": {
  53484. name: "Anthro",
  53485. default: true
  53486. },
  53487. "feral": {
  53488. name: "Feral",
  53489. },
  53490. }
  53491. ))
  53492. characterMakers.push(() => makeCharacter(
  53493. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53494. {
  53495. front: {
  53496. height: math.unit(10, "feet"),
  53497. weight: math.unit(800, "lb"),
  53498. name: "Front",
  53499. image: {
  53500. source: "./media/characters/yen/front.svg",
  53501. extra: 443/411,
  53502. bottom: 6/449
  53503. }
  53504. },
  53505. sleeping: {
  53506. height: math.unit(10, "feet"),
  53507. weight: math.unit(800, "lb"),
  53508. name: "Sleeping",
  53509. image: {
  53510. source: "./media/characters/yen/sleeping.svg",
  53511. extra: 470/422,
  53512. bottom: 0/470
  53513. }
  53514. },
  53515. head: {
  53516. height: math.unit(2.2, "feet"),
  53517. name: "Head",
  53518. image: {
  53519. source: "./media/characters/yen/head.svg"
  53520. }
  53521. },
  53522. headAlt: {
  53523. height: math.unit(2.1, "feet"),
  53524. name: "Head (Alt)",
  53525. image: {
  53526. source: "./media/characters/yen/head-alt.svg"
  53527. }
  53528. },
  53529. },
  53530. [
  53531. {
  53532. name: "Normal",
  53533. height: math.unit(10, "feet"),
  53534. default: true
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(12, "feet"),
  53543. name: "Front",
  53544. image: {
  53545. source: "./media/characters/citra/front.svg",
  53546. extra: 1950/1710,
  53547. bottom: 47/1997
  53548. }
  53549. },
  53550. },
  53551. [
  53552. {
  53553. name: "Normal",
  53554. height: math.unit(12, "feet"),
  53555. default: true
  53556. },
  53557. ]
  53558. ))
  53559. characterMakers.push(() => makeCharacter(
  53560. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53561. {
  53562. side: {
  53563. height: math.unit(7 + 10/12, "feet"),
  53564. name: "Side",
  53565. image: {
  53566. source: "./media/characters/sholstim/side.svg",
  53567. extra: 786/682,
  53568. bottom: 40/826
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(7 + 10/12, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(3.10, "meters"),
  53585. name: "Front",
  53586. image: {
  53587. source: "./media/characters/aggyn/front.svg",
  53588. extra: 1188/963,
  53589. bottom: 24/1212
  53590. }
  53591. },
  53592. },
  53593. [
  53594. {
  53595. name: "Normal",
  53596. height: math.unit(3.10, "meters"),
  53597. default: true
  53598. },
  53599. ]
  53600. ))
  53601. characterMakers.push(() => makeCharacter(
  53602. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53603. {
  53604. front: {
  53605. height: math.unit(7 + 5/12, "feet"),
  53606. weight: math.unit(687, "lb"),
  53607. name: "Front",
  53608. image: {
  53609. source: "./media/characters/alsandair-hergenroether/front.svg",
  53610. extra: 1251/1186,
  53611. bottom: 75/1326
  53612. }
  53613. },
  53614. back: {
  53615. height: math.unit(7 + 5/12, "feet"),
  53616. weight: math.unit(687, "lb"),
  53617. name: "Back",
  53618. image: {
  53619. source: "./media/characters/alsandair-hergenroether/back.svg",
  53620. extra: 1290/1229,
  53621. bottom: 17/1307
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Max Compression",
  53628. height: math.unit(7 + 5/12, "feet"),
  53629. default: true
  53630. },
  53631. {
  53632. name: "\"Normal\"",
  53633. height: math.unit(2, "universes")
  53634. },
  53635. ]
  53636. ))
  53637. characterMakers.push(() => makeCharacter(
  53638. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53639. {
  53640. front: {
  53641. height: math.unit(4 + 1/12, "feet"),
  53642. weight: math.unit(92, "lb"),
  53643. name: "Front",
  53644. image: {
  53645. source: "./media/characters/ie/front.svg",
  53646. extra: 1585/1352,
  53647. bottom: 91/1676
  53648. }
  53649. },
  53650. },
  53651. [
  53652. {
  53653. name: "Normal",
  53654. height: math.unit(4 + 1/12, "feet"),
  53655. default: true
  53656. },
  53657. ]
  53658. ))
  53659. characterMakers.push(() => makeCharacter(
  53660. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53661. {
  53662. anthro: {
  53663. height: math.unit(6, "feet"),
  53664. weight: math.unit(150, "lb"),
  53665. name: "Front",
  53666. image: {
  53667. source: "./media/characters/willow/anthro.svg",
  53668. extra: 1073/986,
  53669. bottom: 34/1107
  53670. },
  53671. form: "anthro",
  53672. default: true
  53673. },
  53674. taur: {
  53675. height: math.unit(6, "feet"),
  53676. weight: math.unit(150, "lb"),
  53677. name: "Side",
  53678. image: {
  53679. source: "./media/characters/willow/taur.svg",
  53680. extra: 647/512,
  53681. bottom: 136/783
  53682. },
  53683. form: "taur",
  53684. default: true
  53685. },
  53686. },
  53687. [
  53688. {
  53689. name: "Humanoid",
  53690. height: math.unit(2.7, "meters"),
  53691. form: "anthro"
  53692. },
  53693. {
  53694. name: "Normal",
  53695. height: math.unit(9, "meters"),
  53696. form: "anthro",
  53697. default: true
  53698. },
  53699. {
  53700. name: "Humanoid",
  53701. height: math.unit(2.1, "meters"),
  53702. form: "taur"
  53703. },
  53704. {
  53705. name: "Normal",
  53706. height: math.unit(7, "meters"),
  53707. form: "taur",
  53708. default: true
  53709. },
  53710. ],
  53711. {
  53712. "anthro": {
  53713. name: "Anthro",
  53714. default: true
  53715. },
  53716. "taur": {
  53717. name: "Taur",
  53718. },
  53719. }
  53720. ))
  53721. characterMakers.push(() => makeCharacter(
  53722. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53723. {
  53724. front: {
  53725. height: math.unit(2 + 5/12, "feet"),
  53726. name: "Front",
  53727. image: {
  53728. source: "./media/characters/kyan/front.svg",
  53729. extra: 460/334,
  53730. bottom: 23/483
  53731. },
  53732. extraAttributes: {
  53733. "toeLength": {
  53734. name: "Toe Length",
  53735. power: 1,
  53736. type: "length",
  53737. base: math.unit(7, "cm")
  53738. },
  53739. "toeclawLength": {
  53740. name: "Toeclaw Length",
  53741. power: 1,
  53742. type: "length",
  53743. base: math.unit(4.7, "cm")
  53744. },
  53745. "earHeight": {
  53746. name: "Ear Height",
  53747. power: 1,
  53748. type: "length",
  53749. base: math.unit(14.1, "cm")
  53750. },
  53751. }
  53752. },
  53753. paws: {
  53754. height: math.unit(0.45, "feet"),
  53755. name: "Paws",
  53756. image: {
  53757. source: "./media/characters/kyan/paws.svg",
  53758. extra: 581/581,
  53759. bottom: 114/695
  53760. }
  53761. },
  53762. },
  53763. [
  53764. {
  53765. name: "Normal",
  53766. height: math.unit(2 + 5/12, "feet"),
  53767. default: true
  53768. },
  53769. ]
  53770. ))
  53771. characterMakers.push(() => makeCharacter(
  53772. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53773. {
  53774. front: {
  53775. height: math.unit(2 + 2/3, "feet"),
  53776. name: "Front",
  53777. image: {
  53778. source: "./media/characters/xazzon/front.svg",
  53779. extra: 1109/984,
  53780. bottom: 42/1151
  53781. }
  53782. },
  53783. back: {
  53784. height: math.unit(2 + 2/3, "feet"),
  53785. name: "Back",
  53786. image: {
  53787. source: "./media/characters/xazzon/back.svg",
  53788. extra: 1095/971,
  53789. bottom: 23/1118
  53790. }
  53791. },
  53792. },
  53793. [
  53794. {
  53795. name: "Normal",
  53796. height: math.unit(2 + 2/3, "feet"),
  53797. default: true
  53798. },
  53799. ]
  53800. ))
  53801. characterMakers.push(() => makeCharacter(
  53802. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53803. {
  53804. dressed: {
  53805. height: math.unit(5 + 7/12, "feet"),
  53806. weight: math.unit(173, "lb"),
  53807. name: "Dressed",
  53808. image: {
  53809. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53810. extra: 3262/2862,
  53811. bottom: 188/3450
  53812. }
  53813. },
  53814. undressed: {
  53815. height: math.unit(5 + 7/12, "feet"),
  53816. weight: math.unit(173, "lb"),
  53817. name: "Undressed",
  53818. image: {
  53819. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53820. extra: 3262/2862,
  53821. bottom: 188/3450
  53822. }
  53823. },
  53824. },
  53825. [
  53826. {
  53827. name: "The void",
  53828. height: math.unit(7.29193e-34, "angstroms")
  53829. },
  53830. {
  53831. name: "Uh-Oh.",
  53832. height: math.unit(5.734e-7, "angstroms")
  53833. },
  53834. {
  53835. name: "Pico",
  53836. height: math.unit(0.876, "angstroms")
  53837. },
  53838. {
  53839. name: "Nano",
  53840. height: math.unit(0.000134200, "mm")
  53841. },
  53842. {
  53843. name: "Micro",
  53844. height: math.unit(0.0673020, "mm")
  53845. },
  53846. {
  53847. name: "Tiny",
  53848. height: math.unit(2.4, "mm")
  53849. },
  53850. {
  53851. name: "Actual Normal",
  53852. height: math.unit(3, "inches"),
  53853. default: true
  53854. },
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(5 + 8/12, "feet")
  53858. },
  53859. {
  53860. name: "Giant",
  53861. height: math.unit(12, "feet")
  53862. },
  53863. {
  53864. name: "City Ruler",
  53865. height: math.unit(270, "meters")
  53866. },
  53867. {
  53868. name: "Giga",
  53869. height: math.unit(1117.6, "km")
  53870. },
  53871. {
  53872. name: "All-Powerful Queen",
  53873. height: math.unit(70.8, "gigameters")
  53874. },
  53875. {
  53876. name: "'Goddess'",
  53877. height: math.unit(600, "yottameters")
  53878. },
  53879. {
  53880. name: "Biggest!",
  53881. height: math.unit(4.23e5, "yottameters")
  53882. },
  53883. ]
  53884. ))
  53885. characterMakers.push(() => makeCharacter(
  53886. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53887. {
  53888. front: {
  53889. height: math.unit(8, "feet"),
  53890. weight: math.unit(300, "lb"),
  53891. name: "Front",
  53892. image: {
  53893. source: "./media/characters/khyla-shadowsong/front.svg",
  53894. extra: 861/798,
  53895. bottom: 32/893
  53896. }
  53897. },
  53898. side: {
  53899. height: math.unit(8, "feet"),
  53900. weight: math.unit(300, "lb"),
  53901. name: "Side",
  53902. image: {
  53903. source: "./media/characters/khyla-shadowsong/side.svg",
  53904. extra: 790/750,
  53905. bottom: 87/877
  53906. }
  53907. },
  53908. back: {
  53909. height: math.unit(8, "feet"),
  53910. weight: math.unit(300, "lb"),
  53911. name: "Back",
  53912. image: {
  53913. source: "./media/characters/khyla-shadowsong/back.svg",
  53914. extra: 855/808,
  53915. bottom: 14/869
  53916. }
  53917. },
  53918. head: {
  53919. height: math.unit(2.7, "feet"),
  53920. name: "Head",
  53921. image: {
  53922. source: "./media/characters/khyla-shadowsong/head.svg"
  53923. }
  53924. },
  53925. },
  53926. [
  53927. {
  53928. name: "Micro",
  53929. height: math.unit(6, "inches")
  53930. },
  53931. {
  53932. name: "Normal",
  53933. height: math.unit(8, "feet"),
  53934. default: true
  53935. },
  53936. ]
  53937. ))
  53938. characterMakers.push(() => makeCharacter(
  53939. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53940. {
  53941. hyperFront: {
  53942. height: math.unit(9 + 4/12, "feet"),
  53943. weight: math.unit(2000, "lb"),
  53944. name: "Front",
  53945. image: {
  53946. source: "./media/characters/tiden/hyper-front.svg",
  53947. extra: 400/382,
  53948. bottom: 6/406
  53949. },
  53950. form: "hyper",
  53951. },
  53952. regularFront: {
  53953. height: math.unit(7 + 10/12, "feet"),
  53954. weight: math.unit(470, "lb"),
  53955. name: "Front",
  53956. image: {
  53957. source: "./media/characters/tiden/regular-front.svg",
  53958. extra: 468/442,
  53959. bottom: 6/474
  53960. },
  53961. form: "regular",
  53962. },
  53963. },
  53964. [
  53965. {
  53966. name: "Normal",
  53967. height: math.unit(9 + 4/12, "feet"),
  53968. default: true,
  53969. form: "hyper"
  53970. },
  53971. {
  53972. name: "Normal",
  53973. height: math.unit(7 + 10/12, "feet"),
  53974. default: true,
  53975. form: "regular"
  53976. },
  53977. ],
  53978. {
  53979. "hyper": {
  53980. name: "Hyper",
  53981. default: true
  53982. },
  53983. "regular": {
  53984. name: "Regular",
  53985. },
  53986. }
  53987. ))
  53988. characterMakers.push(() => makeCharacter(
  53989. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53990. {
  53991. side: {
  53992. height: math.unit(6, "feet"),
  53993. weight: math.unit(150, "lb"),
  53994. name: "Side",
  53995. image: {
  53996. source: "./media/characters/jason-crowe/side.svg",
  53997. extra: 1771/766,
  53998. bottom: 219/1990
  53999. }
  54000. },
  54001. },
  54002. [
  54003. {
  54004. name: "Pocket Gryphon",
  54005. height: math.unit(6, "cm")
  54006. },
  54007. {
  54008. name: "Raven",
  54009. height: math.unit(60, "cm")
  54010. },
  54011. {
  54012. name: "Normal",
  54013. height: math.unit(1, "meter"),
  54014. default: true
  54015. },
  54016. ]
  54017. ))
  54018. characterMakers.push(() => makeCharacter(
  54019. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54020. {
  54021. front: {
  54022. height: math.unit(9 + 6/12, "feet"),
  54023. weight: math.unit(1100, "lb"),
  54024. name: "Front",
  54025. image: {
  54026. source: "./media/characters/django/front.svg",
  54027. extra: 1231/1136,
  54028. bottom: 34/1265
  54029. }
  54030. },
  54031. side: {
  54032. height: math.unit(9 + 6/12, "feet"),
  54033. weight: math.unit(1100, "lb"),
  54034. name: "Side",
  54035. image: {
  54036. source: "./media/characters/django/side.svg",
  54037. extra: 1267/1174,
  54038. bottom: 9/1276
  54039. }
  54040. },
  54041. },
  54042. [
  54043. {
  54044. name: "Normal",
  54045. height: math.unit(9 + 6/12, "feet"),
  54046. default: true
  54047. },
  54048. {
  54049. name: "Macro 1",
  54050. height: math.unit(50, "feet")
  54051. },
  54052. {
  54053. name: "Macro 2",
  54054. height: math.unit(500, "feet")
  54055. },
  54056. {
  54057. name: "Mega Macro",
  54058. height: math.unit(5300, "feet")
  54059. },
  54060. ]
  54061. ))
  54062. characterMakers.push(() => makeCharacter(
  54063. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54064. {
  54065. frontSfw: {
  54066. height: math.unit(120, "cm"),
  54067. weight: math.unit(15, "kg"),
  54068. name: "Front (SFW)",
  54069. image: {
  54070. source: "./media/characters/eri/front-sfw.svg",
  54071. extra: 1014/939,
  54072. bottom: 37/1051
  54073. },
  54074. form: "moth",
  54075. },
  54076. frontNsfw: {
  54077. height: math.unit(120, "cm"),
  54078. weight: math.unit(15, "kg"),
  54079. name: "Front (NSFW)",
  54080. image: {
  54081. source: "./media/characters/eri/front-nsfw.svg",
  54082. extra: 1014/939,
  54083. bottom: 37/1051
  54084. },
  54085. form: "moth",
  54086. default: true
  54087. },
  54088. egg: {
  54089. height: math.unit(10, "cm"),
  54090. name: "Egg",
  54091. image: {
  54092. source: "./media/characters/eri/egg.svg"
  54093. },
  54094. form: "egg",
  54095. default: true
  54096. },
  54097. },
  54098. [
  54099. {
  54100. name: "Normal",
  54101. height: math.unit(120, "cm"),
  54102. default: true,
  54103. form: "moth"
  54104. },
  54105. {
  54106. name: "Normal",
  54107. height: math.unit(10, "cm"),
  54108. default: true,
  54109. form: "egg"
  54110. },
  54111. ],
  54112. {
  54113. "moth": {
  54114. name: "Moth",
  54115. default: true
  54116. },
  54117. "egg": {
  54118. name: "Egg",
  54119. },
  54120. }
  54121. ))
  54122. characterMakers.push(() => makeCharacter(
  54123. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54124. {
  54125. front: {
  54126. height: math.unit(200, "feet"),
  54127. name: "Front",
  54128. image: {
  54129. source: "./media/characters/bishop-dowser/front.svg",
  54130. extra: 933/868,
  54131. bottom: 106/1039
  54132. }
  54133. },
  54134. },
  54135. [
  54136. {
  54137. name: "Giant",
  54138. height: math.unit(200, "feet"),
  54139. default: true
  54140. },
  54141. ]
  54142. ))
  54143. characterMakers.push(() => makeCharacter(
  54144. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54145. {
  54146. front: {
  54147. height: math.unit(2, "meters"),
  54148. preyCapacity: math.unit(3, "people"),
  54149. name: "Front",
  54150. image: {
  54151. source: "./media/characters/fryra/front.svg",
  54152. extra: 1025/948,
  54153. bottom: 30/1055
  54154. },
  54155. extraAttributes: {
  54156. "breastVolume": {
  54157. name: "Breast Volume",
  54158. power: 3,
  54159. type: "volume",
  54160. base: math.unit(8, "liters")
  54161. },
  54162. }
  54163. },
  54164. back: {
  54165. height: math.unit(2, "meters"),
  54166. preyCapacity: math.unit(3, "people"),
  54167. name: "Back",
  54168. image: {
  54169. source: "./media/characters/fryra/back.svg",
  54170. extra: 993/938,
  54171. bottom: 38/1031
  54172. },
  54173. extraAttributes: {
  54174. "breastVolume": {
  54175. name: "Breast Volume",
  54176. power: 3,
  54177. type: "volume",
  54178. base: math.unit(8, "liters")
  54179. },
  54180. }
  54181. },
  54182. head: {
  54183. height: math.unit(1.33, "feet"),
  54184. name: "Head",
  54185. image: {
  54186. source: "./media/characters/fryra/head.svg"
  54187. }
  54188. },
  54189. maw: {
  54190. height: math.unit(0.56, "feet"),
  54191. name: "Maw",
  54192. image: {
  54193. source: "./media/characters/fryra/maw.svg"
  54194. }
  54195. },
  54196. },
  54197. [
  54198. {
  54199. name: "Micro",
  54200. height: math.unit(5, "cm")
  54201. },
  54202. {
  54203. name: "Normal",
  54204. height: math.unit(2, "meters"),
  54205. default: true
  54206. },
  54207. {
  54208. name: "Small Macro",
  54209. height: math.unit(8, "meters")
  54210. },
  54211. {
  54212. name: "Macro",
  54213. height: math.unit(50, "meters")
  54214. },
  54215. {
  54216. name: "Megamacro",
  54217. height: math.unit(1, "km")
  54218. },
  54219. {
  54220. name: "Planetary",
  54221. height: math.unit(300000, "km")
  54222. },
  54223. {
  54224. name: "Universal",
  54225. height: math.unit(250, "lightyears")
  54226. },
  54227. {
  54228. name: "Fabric of Reality",
  54229. height: math.unit(1000, "multiverses")
  54230. },
  54231. ]
  54232. ))
  54233. characterMakers.push(() => makeCharacter(
  54234. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54235. {
  54236. frontDressed: {
  54237. height: math.unit(6 + 2/12, "feet"),
  54238. name: "Front (Dressed)",
  54239. image: {
  54240. source: "./media/characters/fiera/front-dressed.svg",
  54241. extra: 1883/1793,
  54242. bottom: 70/1953
  54243. }
  54244. },
  54245. backDressed: {
  54246. height: math.unit(6 + 2/12, "feet"),
  54247. name: "Back (Dressed)",
  54248. image: {
  54249. source: "./media/characters/fiera/back-dressed.svg",
  54250. extra: 1847/1780,
  54251. bottom: 70/1917
  54252. }
  54253. },
  54254. frontNude: {
  54255. height: math.unit(6 + 2/12, "feet"),
  54256. name: "Front (Nude)",
  54257. image: {
  54258. source: "./media/characters/fiera/front-nude.svg",
  54259. extra: 1875/1785,
  54260. bottom: 66/1941
  54261. }
  54262. },
  54263. backNude: {
  54264. height: math.unit(6 + 2/12, "feet"),
  54265. name: "Back (Nude)",
  54266. image: {
  54267. source: "./media/characters/fiera/back-nude.svg",
  54268. extra: 1855/1788,
  54269. bottom: 44/1899
  54270. }
  54271. },
  54272. maw: {
  54273. height: math.unit(1.3, "feet"),
  54274. name: "Maw",
  54275. image: {
  54276. source: "./media/characters/fiera/maw.svg"
  54277. }
  54278. },
  54279. paw: {
  54280. height: math.unit(1, "feet"),
  54281. name: "Paw",
  54282. image: {
  54283. source: "./media/characters/fiera/paw.svg"
  54284. }
  54285. },
  54286. shoe: {
  54287. height: math.unit(1.05, "feet"),
  54288. name: "Shoe",
  54289. image: {
  54290. source: "./media/characters/fiera/shoe.svg"
  54291. }
  54292. },
  54293. },
  54294. [
  54295. {
  54296. name: "Normal",
  54297. height: math.unit(6 + 2/12, "feet"),
  54298. default: true
  54299. },
  54300. {
  54301. name: "Size Difference",
  54302. height: math.unit(13, "feet")
  54303. },
  54304. {
  54305. name: "Macro",
  54306. height: math.unit(60, "feet")
  54307. },
  54308. {
  54309. name: "Mega Macro",
  54310. height: math.unit(200, "feet")
  54311. },
  54312. ]
  54313. ))
  54314. characterMakers.push(() => makeCharacter(
  54315. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54316. {
  54317. back: {
  54318. height: math.unit(6, "feet"),
  54319. name: "Back",
  54320. image: {
  54321. source: "./media/characters/flare/back.svg",
  54322. extra: 1883/1765,
  54323. bottom: 32/1915
  54324. }
  54325. },
  54326. },
  54327. [
  54328. {
  54329. name: "Normal",
  54330. height: math.unit(6 + 2/12, "feet"),
  54331. default: true
  54332. },
  54333. {
  54334. name: "Size Difference",
  54335. height: math.unit(13, "feet")
  54336. },
  54337. {
  54338. name: "Macro",
  54339. height: math.unit(60, "feet")
  54340. },
  54341. {
  54342. name: "Macro 2",
  54343. height: math.unit(100, "feet")
  54344. },
  54345. {
  54346. name: "Mega Macro",
  54347. height: math.unit(200, "feet")
  54348. },
  54349. ]
  54350. ))
  54351. characterMakers.push(() => makeCharacter(
  54352. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54353. {
  54354. front: {
  54355. height: math.unit(2.2, "m"),
  54356. weight: math.unit(300, "kg"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/hanna/front.svg",
  54360. extra: 1696/1502,
  54361. bottom: 206/1902
  54362. }
  54363. },
  54364. },
  54365. [
  54366. {
  54367. name: "Humanoid",
  54368. height: math.unit(2.2, "meters")
  54369. },
  54370. {
  54371. name: "Normal",
  54372. height: math.unit(4.8, "meters"),
  54373. default: true
  54374. },
  54375. ]
  54376. ))
  54377. characterMakers.push(() => makeCharacter(
  54378. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54379. {
  54380. front: {
  54381. height: math.unit(2.8, "meters"),
  54382. name: "Front",
  54383. image: {
  54384. source: "./media/characters/argo/front.svg",
  54385. extra: 731/518,
  54386. bottom: 84/815
  54387. }
  54388. },
  54389. },
  54390. [
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(3, "meters"),
  54394. default: true
  54395. },
  54396. ]
  54397. ))
  54398. characterMakers.push(() => makeCharacter(
  54399. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54400. {
  54401. side: {
  54402. height: math.unit(3.8, "meters"),
  54403. name: "Side",
  54404. image: {
  54405. source: "./media/characters/sybil/side.svg",
  54406. extra: 382/361,
  54407. bottom: 25/407
  54408. }
  54409. },
  54410. },
  54411. [
  54412. {
  54413. name: "Normal",
  54414. height: math.unit(3.8, "meters"),
  54415. default: true
  54416. },
  54417. ]
  54418. ))
  54419. characterMakers.push(() => makeCharacter(
  54420. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54421. {
  54422. side: {
  54423. height: math.unit(6, "meters"),
  54424. name: "Side",
  54425. image: {
  54426. source: "./media/characters/plum/side.svg",
  54427. extra: 858/755,
  54428. bottom: 45/903
  54429. },
  54430. form: "taur",
  54431. default: true
  54432. },
  54433. back: {
  54434. height: math.unit(6.3, "meters"),
  54435. name: "Back",
  54436. image: {
  54437. source: "./media/characters/plum/back.svg",
  54438. extra: 887/813,
  54439. bottom: 32/919
  54440. },
  54441. form: "taur",
  54442. },
  54443. feral: {
  54444. height: math.unit(5.5, "meter"),
  54445. name: "Front",
  54446. image: {
  54447. source: "./media/characters/plum/feral.svg",
  54448. extra: 568/403,
  54449. bottom: 51/619
  54450. },
  54451. form: "feral",
  54452. default: true
  54453. },
  54454. head: {
  54455. height: math.unit(1.46, "meter"),
  54456. name: "Head",
  54457. image: {
  54458. source: "./media/characters/plum/head.svg"
  54459. },
  54460. form: "taur"
  54461. },
  54462. tailTop: {
  54463. height: math.unit(5.6, "meter"),
  54464. name: "Tail (Top)",
  54465. image: {
  54466. source: "./media/characters/plum/tail-top.svg"
  54467. },
  54468. form: "taur",
  54469. },
  54470. tailBottom: {
  54471. height: math.unit(5.6, "meter"),
  54472. name: "Tail (Bottom)",
  54473. image: {
  54474. source: "./media/characters/plum/tail-bottom.svg"
  54475. },
  54476. form: "taur",
  54477. },
  54478. feralHead: {
  54479. height: math.unit(2.56549521, "meter"),
  54480. name: "Head",
  54481. image: {
  54482. source: "./media/characters/plum/head.svg"
  54483. },
  54484. form: "feral"
  54485. },
  54486. feralTailTop: {
  54487. height: math.unit(5.44728435, "meter"),
  54488. name: "Tail (Top)",
  54489. image: {
  54490. source: "./media/characters/plum/tail-top.svg"
  54491. },
  54492. form: "feral",
  54493. },
  54494. feralTailBottom: {
  54495. height: math.unit(5.44728435, "meter"),
  54496. name: "Tail (Bottom)",
  54497. image: {
  54498. source: "./media/characters/plum/tail-bottom.svg"
  54499. },
  54500. form: "feral",
  54501. },
  54502. },
  54503. [
  54504. {
  54505. name: "Normal",
  54506. height: math.unit(6, "meters"),
  54507. default: true,
  54508. form: "taur"
  54509. },
  54510. {
  54511. name: "Normal",
  54512. height: math.unit(5.5, "meters"),
  54513. default: true,
  54514. form: "feral"
  54515. },
  54516. ],
  54517. {
  54518. "taur": {
  54519. name: "Taur",
  54520. default: true
  54521. },
  54522. "feral": {
  54523. name: "Feral",
  54524. },
  54525. }
  54526. ))
  54527. characterMakers.push(() => makeCharacter(
  54528. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54529. {
  54530. front: {
  54531. height: math.unit(6, "feet"),
  54532. weight: math.unit(115, "lb"),
  54533. name: "Front",
  54534. image: {
  54535. source: "./media/characters/celeste-kitsune/front.svg",
  54536. extra: 393/366,
  54537. bottom: 7/400
  54538. }
  54539. },
  54540. side: {
  54541. height: math.unit(6, "feet"),
  54542. weight: math.unit(115, "lb"),
  54543. name: "Side",
  54544. image: {
  54545. source: "./media/characters/celeste-kitsune/side.svg",
  54546. extra: 818/765,
  54547. bottom: 40/858
  54548. }
  54549. },
  54550. },
  54551. [
  54552. {
  54553. name: "Megamacro",
  54554. height: math.unit(1500, "miles"),
  54555. default: true
  54556. },
  54557. ]
  54558. ))
  54559. characterMakers.push(() => makeCharacter(
  54560. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54561. {
  54562. front: {
  54563. height: math.unit(8, "meters"),
  54564. name: "Front",
  54565. image: {
  54566. source: "./media/characters/io/front.svg",
  54567. extra: 865/722,
  54568. bottom: 58/923
  54569. }
  54570. },
  54571. back: {
  54572. height: math.unit(8, "meters"),
  54573. name: "Back",
  54574. image: {
  54575. source: "./media/characters/io/back.svg",
  54576. extra: 920/776,
  54577. bottom: 42/962
  54578. }
  54579. },
  54580. head: {
  54581. height: math.unit(5.09, "meters"),
  54582. name: "Head",
  54583. image: {
  54584. source: "./media/characters/io/head.svg"
  54585. }
  54586. },
  54587. hand: {
  54588. height: math.unit(1.6, "meters"),
  54589. name: "Hand",
  54590. image: {
  54591. source: "./media/characters/io/hand.svg"
  54592. }
  54593. },
  54594. foot: {
  54595. height: math.unit(2.4, "meters"),
  54596. name: "Foot",
  54597. image: {
  54598. source: "./media/characters/io/foot.svg"
  54599. }
  54600. },
  54601. },
  54602. [
  54603. {
  54604. name: "Normal",
  54605. height: math.unit(8, "meters"),
  54606. default: true
  54607. },
  54608. ]
  54609. ))
  54610. characterMakers.push(() => makeCharacter(
  54611. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54612. {
  54613. side: {
  54614. height: math.unit(6 + 3/12, "feet"),
  54615. weight: math.unit(225, "lb"),
  54616. name: "Side",
  54617. image: {
  54618. source: "./media/characters/silas/side.svg",
  54619. extra: 703/653,
  54620. bottom: 23/726
  54621. },
  54622. extraAttributes: {
  54623. "pawLength": {
  54624. name: "Paw Length",
  54625. power: 1,
  54626. type: "length",
  54627. base: math.unit(12, "inches")
  54628. },
  54629. "pawWidth": {
  54630. name: "Paw Width",
  54631. power: 1,
  54632. type: "length",
  54633. base: math.unit(4.5, "inches")
  54634. },
  54635. "pawArea": {
  54636. name: "Paw Area",
  54637. power: 2,
  54638. type: "area",
  54639. base: math.unit(12 * 4.5, "inches^2")
  54640. },
  54641. }
  54642. },
  54643. },
  54644. [
  54645. {
  54646. name: "Normal",
  54647. height: math.unit(6 + 3/12, "feet"),
  54648. default: true
  54649. },
  54650. ]
  54651. ))
  54652. characterMakers.push(() => makeCharacter(
  54653. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54654. {
  54655. back: {
  54656. height: math.unit(1.6, "meters"),
  54657. weight: math.unit(150, "lb"),
  54658. name: "Back",
  54659. image: {
  54660. source: "./media/characters/zari/back.svg",
  54661. extra: 424/411,
  54662. bottom: 32/456
  54663. },
  54664. extraAttributes: {
  54665. "bladderCapacity": {
  54666. name: "Bladder Size",
  54667. power: 3,
  54668. type: "volume",
  54669. base: math.unit(500, "mL")
  54670. },
  54671. "bladderFlow": {
  54672. name: "Flow Rate",
  54673. power: 3,
  54674. type: "volume",
  54675. base: math.unit(25, "mL")
  54676. },
  54677. }
  54678. },
  54679. },
  54680. [
  54681. {
  54682. name: "Normal",
  54683. height: math.unit(1.6, "meters"),
  54684. default: true
  54685. },
  54686. ]
  54687. ))
  54688. characterMakers.push(() => makeCharacter(
  54689. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54690. {
  54691. front: {
  54692. height: math.unit(25, "feet"),
  54693. weight: math.unit(5, "tons"),
  54694. name: "Front",
  54695. image: {
  54696. source: "./media/characters/charlie-human/front.svg",
  54697. extra: 1870/1740,
  54698. bottom: 102/1972
  54699. },
  54700. extraAttributes: {
  54701. "dickLength": {
  54702. name: "Dick Length",
  54703. power: 1,
  54704. type: "length",
  54705. base: math.unit(9, "feet")
  54706. },
  54707. }
  54708. },
  54709. back: {
  54710. height: math.unit(25, "feet"),
  54711. weight: math.unit(5, "tons"),
  54712. name: "Back",
  54713. image: {
  54714. source: "./media/characters/charlie-human/back.svg",
  54715. extra: 1858/1733,
  54716. bottom: 105/1963
  54717. },
  54718. extraAttributes: {
  54719. "dickLength": {
  54720. name: "Dick Length",
  54721. power: 1,
  54722. type: "length",
  54723. base: math.unit(9, "feet")
  54724. },
  54725. }
  54726. },
  54727. },
  54728. [
  54729. {
  54730. name: "\"Normal\"",
  54731. height: math.unit(6 + 4/12, "feet")
  54732. },
  54733. {
  54734. name: "Big",
  54735. height: math.unit(25, "feet"),
  54736. default: true
  54737. },
  54738. ]
  54739. ))
  54740. characterMakers.push(() => makeCharacter(
  54741. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54742. {
  54743. front: {
  54744. height: math.unit(6 + 4/12, "feet"),
  54745. weight: math.unit(320, "lb"),
  54746. name: "Front",
  54747. image: {
  54748. source: "./media/characters/ookitsu/front.svg",
  54749. extra: 1160/976,
  54750. bottom: 38/1198
  54751. }
  54752. },
  54753. frontNsfw: {
  54754. height: math.unit(6 + 4/12, "feet"),
  54755. weight: math.unit(320, "lb"),
  54756. name: "Front (NSFW)",
  54757. image: {
  54758. source: "./media/characters/ookitsu/front-nsfw.svg",
  54759. extra: 1160/976,
  54760. bottom: 38/1198
  54761. }
  54762. },
  54763. back: {
  54764. height: math.unit(6 + 4/12, "feet"),
  54765. weight: math.unit(320, "lb"),
  54766. name: "Back",
  54767. image: {
  54768. source: "./media/characters/ookitsu/back.svg",
  54769. extra: 1030/975,
  54770. bottom: 70/1100
  54771. }
  54772. },
  54773. head: {
  54774. height: math.unit(1.79, "feet"),
  54775. name: "Head",
  54776. image: {
  54777. source: "./media/characters/ookitsu/head.svg"
  54778. }
  54779. },
  54780. hand: {
  54781. height: math.unit(0.92, "feet"),
  54782. name: "Hand",
  54783. image: {
  54784. source: "./media/characters/ookitsu/hand.svg"
  54785. }
  54786. },
  54787. tails: {
  54788. height: math.unit(3.3, "feet"),
  54789. name: "Tails",
  54790. image: {
  54791. source: "./media/characters/ookitsu/tails.svg"
  54792. }
  54793. },
  54794. dick: {
  54795. height: math.unit(1.10833, "feet"),
  54796. name: "Dick",
  54797. image: {
  54798. source: "./media/characters/ookitsu/dick.svg"
  54799. }
  54800. },
  54801. },
  54802. [
  54803. {
  54804. name: "Normal",
  54805. height: math.unit(6 + 4/12, "feet"),
  54806. default: true
  54807. },
  54808. {
  54809. name: "Macro",
  54810. height: math.unit(30, "feet")
  54811. },
  54812. ]
  54813. ))
  54814. characterMakers.push(() => makeCharacter(
  54815. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54816. {
  54817. anthroFront: {
  54818. height: math.unit(6, "feet"),
  54819. weight: math.unit(250, "lb"),
  54820. name: "Front",
  54821. image: {
  54822. source: "./media/characters/jhusky/anthro-front.svg",
  54823. extra: 474/439,
  54824. bottom: 7/481
  54825. },
  54826. form: "anthro",
  54827. default: true
  54828. },
  54829. taurSideSfw: {
  54830. height: math.unit(6 + 4/12, "feet"),
  54831. weight: math.unit(500, "lb"),
  54832. name: "Side (SFW)",
  54833. image: {
  54834. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54835. extra: 1741/1629,
  54836. bottom: 196/1937
  54837. },
  54838. form: "taur",
  54839. default: true
  54840. },
  54841. taurSideNsfw: {
  54842. height: math.unit(6 + 4/12, "feet"),
  54843. weight: math.unit(500, "lb"),
  54844. name: "Taur (NSFW)",
  54845. image: {
  54846. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54847. extra: 1741/1629,
  54848. bottom: 196/1937
  54849. },
  54850. form: "taur",
  54851. },
  54852. },
  54853. [
  54854. {
  54855. name: "Huge",
  54856. height: math.unit(500, "feet"),
  54857. form: "anthro"
  54858. },
  54859. {
  54860. name: "Macro",
  54861. height: math.unit(1000, "feet"),
  54862. default: true,
  54863. form: "anthro"
  54864. },
  54865. {
  54866. name: "Megamacro",
  54867. height: math.unit(10000, "feet"),
  54868. form: "anthro"
  54869. },
  54870. {
  54871. name: "Huge",
  54872. height: math.unit(528, "feet"),
  54873. form: "taur"
  54874. },
  54875. {
  54876. name: "Macro",
  54877. height: math.unit(1056, "feet"),
  54878. default: true,
  54879. form: "taur"
  54880. },
  54881. {
  54882. name: "Megamacro",
  54883. height: math.unit(10556, "feet"),
  54884. form: "taur"
  54885. },
  54886. ],
  54887. {
  54888. "anthro": {
  54889. name: "Anthro",
  54890. default: true
  54891. },
  54892. "taur": {
  54893. name: "Taur",
  54894. },
  54895. }
  54896. ))
  54897. characterMakers.push(() => makeCharacter(
  54898. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54899. {
  54900. front: {
  54901. height: math.unit(8, "feet"),
  54902. weight: math.unit(500, "lb"),
  54903. name: "Front",
  54904. image: {
  54905. source: "./media/characters/armail/front.svg",
  54906. extra: 1753/1669,
  54907. bottom: 155/1908
  54908. }
  54909. },
  54910. back: {
  54911. height: math.unit(8, "feet"),
  54912. weight: math.unit(500, "lb"),
  54913. name: "Back",
  54914. image: {
  54915. source: "./media/characters/armail/back.svg",
  54916. extra: 1872/1803,
  54917. bottom: 63/1935
  54918. }
  54919. },
  54920. },
  54921. [
  54922. {
  54923. name: "Micro",
  54924. height: math.unit(0.25, "feet")
  54925. },
  54926. {
  54927. name: "Normal",
  54928. height: math.unit(8, "feet"),
  54929. default: true
  54930. },
  54931. {
  54932. name: "Mini-macro",
  54933. height: math.unit(30, "feet")
  54934. },
  54935. {
  54936. name: "Macro",
  54937. height: math.unit(400, "feet")
  54938. },
  54939. {
  54940. name: "Mega-macro",
  54941. height: math.unit(6000, "feet")
  54942. },
  54943. ]
  54944. ))
  54945. characterMakers.push(() => makeCharacter(
  54946. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54947. {
  54948. front: {
  54949. height: math.unit(6 + 7/12, "feet"),
  54950. weight: math.unit(210, "lb"),
  54951. name: "Front",
  54952. image: {
  54953. source: "./media/characters/wilfred-t-buxton/front.svg",
  54954. extra: 1068/882,
  54955. bottom: 28/1096
  54956. }
  54957. },
  54958. },
  54959. [
  54960. {
  54961. name: "Normal",
  54962. height: math.unit(6 + 7/12, "feet"),
  54963. default: true
  54964. },
  54965. ]
  54966. ))
  54967. //characters
  54968. function makeCharacters() {
  54969. const results = [];
  54970. characterMakers.forEach(character => {
  54971. results.push(character());
  54972. });
  54973. return results;
  54974. }