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.
 
 
 

51825 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. }
  2003. //species
  2004. function getSpeciesInfo(speciesList) {
  2005. let result = new Set();
  2006. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2007. result.add(entry)
  2008. });
  2009. return Array.from(result);
  2010. };
  2011. function getSpeciesInfoHelper(species) {
  2012. if (!speciesData[species]) {
  2013. console.warn(species + " doesn't exist");
  2014. return [];
  2015. }
  2016. if (speciesData[species].parents) {
  2017. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2018. } else {
  2019. return [species];
  2020. }
  2021. }
  2022. characterMakers.push(() => makeCharacter(
  2023. {
  2024. name: "Fen",
  2025. species: ["crux"],
  2026. description: {
  2027. title: "Bio",
  2028. text: "Very furry. Sheds on everything."
  2029. },
  2030. tags: [
  2031. "anthro",
  2032. "goo"
  2033. ]
  2034. },
  2035. {
  2036. front: {
  2037. height: math.unit(12, "feet"),
  2038. weight: math.unit(2400, "lb"),
  2039. name: "Front",
  2040. image: {
  2041. source: "./media/characters/fen/front.svg",
  2042. extra: 1804/1562,
  2043. bottom: 205/2009
  2044. },
  2045. extraAttributes: {
  2046. pawSize: {
  2047. name: "Paw Size",
  2048. power: 2,
  2049. type: "area",
  2050. base: math.unit(0.35, "m^2")
  2051. }
  2052. }
  2053. },
  2054. diving: {
  2055. height: math.unit(4.9, "meters"),
  2056. weight: math.unit(2400, "lb"),
  2057. name: "Diving",
  2058. image: {
  2059. source: "./media/characters/fen/diving.svg"
  2060. }
  2061. },
  2062. goo: {
  2063. height: math.unit(12, "feet"),
  2064. weight: math.unit(3600, "lb"),
  2065. volume: math.unit(1000, "liters"),
  2066. preyCapacity: math.unit(6, "people"),
  2067. name: "Goo",
  2068. image: {
  2069. source: "./media/characters/fen/goo.svg",
  2070. extra: 1307/1071,
  2071. bottom: 134/1441
  2072. }
  2073. },
  2074. maw: {
  2075. height: math.unit(5.03, "feet"),
  2076. name: "Maw",
  2077. image: {
  2078. source: "./media/characters/fen/maw.svg"
  2079. }
  2080. },
  2081. gooCeiling: {
  2082. height: math.unit(6.6, "feet"),
  2083. weight: math.unit(3000, "lb"),
  2084. volume: math.unit(1000, "liters"),
  2085. preyCapacity: math.unit(6, "people"),
  2086. name: "Goo (Ceiling)",
  2087. image: {
  2088. source: "./media/characters/fen/goo-ceiling.svg"
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(12, "feet"),
  2093. weight: math.unit(2400, "lb"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/fen/back.svg",
  2097. },
  2098. info: {
  2099. description: {
  2100. mode: "append",
  2101. text: "\n\nHe is not currently looking at you."
  2102. }
  2103. }
  2104. },
  2105. full: {
  2106. height: math.unit(1.85, "meter"),
  2107. weight: math.unit(3200, "lb"),
  2108. name: "Full",
  2109. image: {
  2110. source: "./media/characters/fen/full.svg",
  2111. extra: 1133/859,
  2112. bottom: 145/1278
  2113. },
  2114. info: {
  2115. description: {
  2116. mode: "append",
  2117. text: "\n\nMunch."
  2118. }
  2119. }
  2120. },
  2121. gooLounging: {
  2122. height: math.unit(4.53, "feet"),
  2123. weight: math.unit(3000, "lb"),
  2124. preyCapacity: math.unit(6, "people"),
  2125. name: "Goo (Lounging)",
  2126. image: {
  2127. source: "./media/characters/fen/goo-lounging.svg",
  2128. bottom: 116 / 613
  2129. }
  2130. },
  2131. lounging: {
  2132. height: math.unit(10.52, "feet"),
  2133. weight: math.unit(2400, "lb"),
  2134. name: "Lounging",
  2135. image: {
  2136. source: "./media/characters/fen/lounging.svg"
  2137. }
  2138. },
  2139. },
  2140. [
  2141. {
  2142. name: "Small",
  2143. height: math.unit(2.2428, "meter")
  2144. },
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(12, "feet"),
  2148. default: true,
  2149. },
  2150. {
  2151. name: "Big",
  2152. height: math.unit(20, "feet")
  2153. },
  2154. {
  2155. name: "Minimacro",
  2156. height: math.unit(40, "feet"),
  2157. info: {
  2158. description: {
  2159. mode: "append",
  2160. text: "\n\nTOO DAMN BIG"
  2161. }
  2162. }
  2163. },
  2164. {
  2165. name: "Macro",
  2166. height: math.unit(100, "feet"),
  2167. info: {
  2168. description: {
  2169. mode: "append",
  2170. text: "\n\nTOO DAMN BIG"
  2171. }
  2172. }
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(2, "miles")
  2177. },
  2178. {
  2179. name: "Gigamacro",
  2180. height: math.unit(10, "earths")
  2181. },
  2182. ]
  2183. ))
  2184. characterMakers.push(() => makeCharacter(
  2185. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2186. {
  2187. front: {
  2188. height: math.unit(183, "cm"),
  2189. weight: math.unit(80, "kg"),
  2190. name: "Front",
  2191. image: {
  2192. source: "./media/characters/sofia-fluttertail/front.svg",
  2193. bottom: 0.01,
  2194. extra: 2154 / 2081
  2195. }
  2196. },
  2197. frontAlt: {
  2198. height: math.unit(183, "cm"),
  2199. weight: math.unit(80, "kg"),
  2200. name: "Front (alt)",
  2201. image: {
  2202. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2203. }
  2204. },
  2205. back: {
  2206. height: math.unit(183, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Back",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/back.svg"
  2211. }
  2212. },
  2213. kneeling: {
  2214. height: math.unit(125, "cm"),
  2215. weight: math.unit(80, "kg"),
  2216. name: "Kneeling",
  2217. image: {
  2218. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2219. extra: 1033 / 977,
  2220. bottom: 23.7 / 1057
  2221. }
  2222. },
  2223. maw: {
  2224. height: math.unit(183 / 5, "cm"),
  2225. name: "Maw",
  2226. image: {
  2227. source: "./media/characters/sofia-fluttertail/maw.svg"
  2228. }
  2229. },
  2230. mawcloseup: {
  2231. height: math.unit(183 / 5 * 0.41, "cm"),
  2232. name: "Maw (Closeup)",
  2233. image: {
  2234. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2235. }
  2236. },
  2237. paws: {
  2238. height: math.unit(1.17, "feet"),
  2239. name: "Paws",
  2240. image: {
  2241. source: "./media/characters/sofia-fluttertail/paws.svg",
  2242. extra: 851 / 851,
  2243. bottom: 17 / 868
  2244. }
  2245. },
  2246. },
  2247. [
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(1.83, "meter")
  2251. },
  2252. {
  2253. name: "Size Thief",
  2254. height: math.unit(18, "feet")
  2255. },
  2256. {
  2257. name: "50 Foot Collie",
  2258. height: math.unit(50, "feet")
  2259. },
  2260. {
  2261. name: "Macro",
  2262. height: math.unit(96, "feet"),
  2263. default: true
  2264. },
  2265. {
  2266. name: "Megamerger",
  2267. height: math.unit(650, "feet")
  2268. },
  2269. ]
  2270. ))
  2271. characterMakers.push(() => makeCharacter(
  2272. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2273. {
  2274. front: {
  2275. height: math.unit(7, "feet"),
  2276. weight: math.unit(100, "kg"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/march/front.svg",
  2280. extra: 1992/1851,
  2281. bottom: 39/2031
  2282. }
  2283. },
  2284. foot: {
  2285. height: math.unit(0.9, "feet"),
  2286. name: "Foot",
  2287. image: {
  2288. source: "./media/characters/march/foot.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Normal",
  2295. height: math.unit(7.9, "feet")
  2296. },
  2297. {
  2298. name: "Macro",
  2299. height: math.unit(220, "meters")
  2300. },
  2301. {
  2302. name: "Megamacro",
  2303. height: math.unit(2.98, "km"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Gigamacro",
  2308. height: math.unit(15963, "km")
  2309. },
  2310. {
  2311. name: "Teramacro",
  2312. height: math.unit(2980000000, "km")
  2313. },
  2314. {
  2315. name: "Examacro",
  2316. height: math.unit(250, "parsecs")
  2317. },
  2318. ]
  2319. ))
  2320. characterMakers.push(() => makeCharacter(
  2321. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2322. {
  2323. front: {
  2324. height: math.unit(6, "feet"),
  2325. weight: math.unit(60, "kg"),
  2326. name: "Front",
  2327. image: {
  2328. source: "./media/characters/noir/front.svg",
  2329. extra: 1,
  2330. bottom: 0.032
  2331. }
  2332. },
  2333. },
  2334. [
  2335. {
  2336. name: "Normal",
  2337. height: math.unit(6.6, "feet")
  2338. },
  2339. {
  2340. name: "Macro",
  2341. height: math.unit(500, "feet")
  2342. },
  2343. {
  2344. name: "Megamacro",
  2345. height: math.unit(2.5, "km"),
  2346. default: true
  2347. },
  2348. {
  2349. name: "Gigamacro",
  2350. height: math.unit(22500, "km")
  2351. },
  2352. {
  2353. name: "Teramacro",
  2354. height: math.unit(2500000000, "km")
  2355. },
  2356. {
  2357. name: "Examacro",
  2358. height: math.unit(200, "parsecs")
  2359. },
  2360. ]
  2361. ))
  2362. characterMakers.push(() => makeCharacter(
  2363. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2364. {
  2365. front: {
  2366. height: math.unit(7, "feet"),
  2367. weight: math.unit(100, "kg"),
  2368. name: "Front",
  2369. image: {
  2370. source: "./media/characters/okuri/front.svg",
  2371. extra: 739/665,
  2372. bottom: 39/778
  2373. }
  2374. },
  2375. back: {
  2376. height: math.unit(7, "feet"),
  2377. weight: math.unit(100, "kg"),
  2378. name: "Back",
  2379. image: {
  2380. source: "./media/characters/okuri/back.svg",
  2381. extra: 734/653,
  2382. bottom: 13/747
  2383. }
  2384. },
  2385. sitting: {
  2386. height: math.unit(2.95, "feet"),
  2387. weight: math.unit(100, "kg"),
  2388. name: "Sitting",
  2389. image: {
  2390. source: "./media/characters/okuri/sitting.svg",
  2391. extra: 370/318,
  2392. bottom: 99/469
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Smallest",
  2399. height: math.unit(5 + 2/12, "feet")
  2400. },
  2401. {
  2402. name: "Smaller",
  2403. height: math.unit(300, "feet")
  2404. },
  2405. {
  2406. name: "Small",
  2407. height: math.unit(1000, "feet")
  2408. },
  2409. {
  2410. name: "Macro",
  2411. height: math.unit(1, "mile")
  2412. },
  2413. {
  2414. name: "Mega Macro (Small)",
  2415. height: math.unit(20, "km")
  2416. },
  2417. {
  2418. name: "Mega Macro (Large)",
  2419. height: math.unit(600, "km")
  2420. },
  2421. {
  2422. name: "Giga Macro",
  2423. height: math.unit(10000, "km")
  2424. },
  2425. {
  2426. name: "Normal",
  2427. height: math.unit(577560, "km"),
  2428. default: true
  2429. },
  2430. {
  2431. name: "Large",
  2432. height: math.unit(4, "galaxies")
  2433. },
  2434. {
  2435. name: "Largest",
  2436. height: math.unit(15, "multiverses")
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(7, "feet"),
  2445. weight: math.unit(100, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/manny/front.svg",
  2449. extra: 1,
  2450. bottom: 0.06
  2451. }
  2452. },
  2453. back: {
  2454. height: math.unit(7, "feet"),
  2455. weight: math.unit(100, "kg"),
  2456. name: "Back",
  2457. image: {
  2458. source: "./media/characters/manny/back.svg",
  2459. extra: 1,
  2460. bottom: 0.014
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Normal",
  2467. height: math.unit(7, "feet"),
  2468. },
  2469. {
  2470. name: "Macro",
  2471. height: math.unit(78, "feet"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Macro+",
  2476. height: math.unit(300, "meters")
  2477. },
  2478. {
  2479. name: "Macro++",
  2480. height: math.unit(2400, "meters")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(5167, "meters")
  2485. },
  2486. {
  2487. name: "Gigamacro",
  2488. height: math.unit(41769, "miles")
  2489. },
  2490. ]
  2491. ))
  2492. characterMakers.push(() => makeCharacter(
  2493. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2494. {
  2495. front: {
  2496. height: math.unit(7, "feet"),
  2497. weight: math.unit(100, "kg"),
  2498. name: "Front",
  2499. image: {
  2500. source: "./media/characters/adake/front-1.svg"
  2501. }
  2502. },
  2503. frontAlt: {
  2504. height: math.unit(7, "feet"),
  2505. weight: math.unit(100, "kg"),
  2506. name: "Front (Alt)",
  2507. image: {
  2508. source: "./media/characters/adake/front-2.svg",
  2509. extra: 1,
  2510. bottom: 0.01
  2511. }
  2512. },
  2513. back: {
  2514. height: math.unit(7, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Back",
  2517. image: {
  2518. source: "./media/characters/adake/back.svg",
  2519. }
  2520. },
  2521. kneel: {
  2522. height: math.unit(5.385, "feet"),
  2523. weight: math.unit(100, "kg"),
  2524. name: "Kneeling",
  2525. image: {
  2526. source: "./media/characters/adake/kneel.svg",
  2527. bottom: 0.052
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7, "feet"),
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(78, "feet"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Macro+",
  2543. height: math.unit(300, "meters")
  2544. },
  2545. {
  2546. name: "Macro++",
  2547. height: math.unit(2400, "meters")
  2548. },
  2549. {
  2550. name: "Megamacro",
  2551. height: math.unit(5167, "meters")
  2552. },
  2553. {
  2554. name: "Gigamacro",
  2555. height: math.unit(41769, "miles")
  2556. },
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(1.65, "meters"),
  2564. weight: math.unit(50, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/elijah/front.svg",
  2568. extra: 858 / 830,
  2569. bottom: 95.5 / 953.8559
  2570. }
  2571. },
  2572. back: {
  2573. height: math.unit(1.65, "meters"),
  2574. weight: math.unit(50, "kg"),
  2575. name: "Back",
  2576. image: {
  2577. source: "./media/characters/elijah/back.svg",
  2578. extra: 895 / 850,
  2579. bottom: 5.3 / 897.956
  2580. }
  2581. },
  2582. frontNsfw: {
  2583. height: math.unit(1.65, "meters"),
  2584. weight: math.unit(50, "kg"),
  2585. name: "Front (NSFW)",
  2586. image: {
  2587. source: "./media/characters/elijah/front-nsfw.svg",
  2588. extra: 858 / 830,
  2589. bottom: 95.5 / 953.8559
  2590. }
  2591. },
  2592. backNsfw: {
  2593. height: math.unit(1.65, "meters"),
  2594. weight: math.unit(50, "kg"),
  2595. name: "Back (NSFW)",
  2596. image: {
  2597. source: "./media/characters/elijah/back-nsfw.svg",
  2598. extra: 895 / 850,
  2599. bottom: 5.3 / 897.956
  2600. }
  2601. },
  2602. dick: {
  2603. height: math.unit(1, "feet"),
  2604. name: "Dick",
  2605. image: {
  2606. source: "./media/characters/elijah/dick.svg"
  2607. }
  2608. },
  2609. beakOpen: {
  2610. height: math.unit(1.25, "feet"),
  2611. name: "Beak (Open)",
  2612. image: {
  2613. source: "./media/characters/elijah/beak-open.svg"
  2614. }
  2615. },
  2616. beakShut: {
  2617. height: math.unit(1.25, "feet"),
  2618. name: "Beak (Shut)",
  2619. image: {
  2620. source: "./media/characters/elijah/beak-shut.svg"
  2621. }
  2622. },
  2623. footFlexing: {
  2624. height: math.unit(1.61, "feet"),
  2625. name: "Foot (Flexing)",
  2626. image: {
  2627. source: "./media/characters/elijah/foot-flexing.svg"
  2628. }
  2629. },
  2630. footStepping: {
  2631. height: math.unit(1.44, "feet"),
  2632. name: "Foot (Stepping)",
  2633. image: {
  2634. source: "./media/characters/elijah/foot-stepping.svg"
  2635. }
  2636. },
  2637. plantigradeLeg: {
  2638. height: math.unit(2.34, "feet"),
  2639. name: "Plantigrade Leg",
  2640. image: {
  2641. source: "./media/characters/elijah/plantigrade-leg.svg"
  2642. }
  2643. },
  2644. plantigradeFootLeft: {
  2645. height: math.unit(0.9, "feet"),
  2646. name: "Plantigrade Foot (Left)",
  2647. image: {
  2648. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2649. }
  2650. },
  2651. plantigradeFootRight: {
  2652. height: math.unit(0.9, "feet"),
  2653. name: "Plantigrade Foot (Right)",
  2654. image: {
  2655. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2656. }
  2657. },
  2658. },
  2659. [
  2660. {
  2661. name: "Normal",
  2662. height: math.unit(1.65, "meters")
  2663. },
  2664. {
  2665. name: "Macro",
  2666. height: math.unit(55, "meters"),
  2667. default: true
  2668. },
  2669. {
  2670. name: "Macro+",
  2671. height: math.unit(105, "meters")
  2672. },
  2673. ]
  2674. ))
  2675. characterMakers.push(() => makeCharacter(
  2676. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2677. {
  2678. front: {
  2679. height: math.unit(7 + 2/12, "feet"),
  2680. weight: math.unit(320, "kg"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/rai/front.svg",
  2684. extra: 1802/1696,
  2685. bottom: 68/1870
  2686. }
  2687. },
  2688. frontDressed: {
  2689. height: math.unit(7 + 2/12, "feet"),
  2690. weight: math.unit(320, "kg"),
  2691. name: "Front (Dressed)",
  2692. image: {
  2693. source: "./media/characters/rai/front-dressed.svg",
  2694. extra: 1802/1696,
  2695. bottom: 68/1870
  2696. }
  2697. },
  2698. side: {
  2699. height: math.unit(7 + 2/12, "feet"),
  2700. weight: math.unit(320, "kg"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/rai/side.svg",
  2704. extra: 1789/1710,
  2705. bottom: 115/1904
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(7 + 2/12, "feet"),
  2710. weight: math.unit(320, "kg"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/rai/back.svg",
  2714. extra: 1770/1707,
  2715. bottom: 28/1798
  2716. }
  2717. },
  2718. feral: {
  2719. height: math.unit(9.5, "feet"),
  2720. weight: math.unit(640, "kg"),
  2721. name: "Feral",
  2722. image: {
  2723. source: "./media/characters/rai/feral.svg",
  2724. extra: 945/553,
  2725. bottom: 176/1121
  2726. }
  2727. },
  2728. dragon: {
  2729. height: math.unit(23, "feet"),
  2730. weight: math.unit(50000, "lb"),
  2731. name: "Dragon",
  2732. image: {
  2733. source: "./media/characters/rai/dragon.svg",
  2734. extra: 2498 / 2030,
  2735. bottom: 85.2 / 2584
  2736. }
  2737. },
  2738. maw: {
  2739. height: math.unit(1.69, "feet"),
  2740. name: "Maw",
  2741. image: {
  2742. source: "./media/characters/rai/maw.svg"
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(7 + 2/12, "feet")
  2750. },
  2751. {
  2752. name: "Big",
  2753. height: math.unit(11, "feet")
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(302, "feet"),
  2758. default: true
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2764. {
  2765. frontDressed: {
  2766. height: math.unit(216, "feet"),
  2767. weight: math.unit(7000000, "lb"),
  2768. name: "Front (Dressed)",
  2769. image: {
  2770. source: "./media/characters/jazzy/front-dressed.svg",
  2771. extra: 2738 / 2651,
  2772. bottom: 41.8 / 2786
  2773. }
  2774. },
  2775. backDressed: {
  2776. height: math.unit(216, "feet"),
  2777. weight: math.unit(7000000, "lb"),
  2778. name: "Back (Dressed)",
  2779. image: {
  2780. source: "./media/characters/jazzy/back-dressed.svg",
  2781. extra: 2775 / 2673,
  2782. bottom: 36.8 / 2817
  2783. }
  2784. },
  2785. front: {
  2786. height: math.unit(216, "feet"),
  2787. weight: math.unit(7000000, "lb"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/jazzy/front.svg",
  2791. extra: 2738 / 2651,
  2792. bottom: 41.8 / 2786
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(216, "feet"),
  2797. weight: math.unit(7000000, "lb"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/jazzy/back.svg",
  2801. extra: 2775 / 2673,
  2802. bottom: 36.8 / 2817
  2803. }
  2804. },
  2805. maw: {
  2806. height: math.unit(20, "feet"),
  2807. name: "Maw",
  2808. image: {
  2809. source: "./media/characters/jazzy/maw.svg"
  2810. }
  2811. },
  2812. paws: {
  2813. height: math.unit(27.5, "feet"),
  2814. name: "Paws",
  2815. image: {
  2816. source: "./media/characters/jazzy/paws.svg"
  2817. }
  2818. },
  2819. eye: {
  2820. height: math.unit(4.4, "feet"),
  2821. name: "Eye",
  2822. image: {
  2823. source: "./media/characters/jazzy/eye.svg"
  2824. }
  2825. },
  2826. droneOffense: {
  2827. height: math.unit(9.5, "inches"),
  2828. name: "Drone (Offense)",
  2829. image: {
  2830. source: "./media/characters/jazzy/drone-offense.svg"
  2831. }
  2832. },
  2833. droneRecon: {
  2834. height: math.unit(9.5, "inches"),
  2835. name: "Drone (Recon)",
  2836. image: {
  2837. source: "./media/characters/jazzy/drone-recon.svg"
  2838. }
  2839. },
  2840. droneDefense: {
  2841. height: math.unit(9.5, "inches"),
  2842. name: "Drone (Defense)",
  2843. image: {
  2844. source: "./media/characters/jazzy/drone-defense.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(216, "feet"),
  2852. default: true
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(9 + 6/12, "feet"),
  2861. weight: math.unit(700, "lb"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/flamm/front.svg",
  2865. extra: 1751/1632,
  2866. bottom: 46/1797
  2867. }
  2868. },
  2869. buff: {
  2870. height: math.unit(9 + 6/12, "feet"),
  2871. weight: math.unit(950, "lb"),
  2872. name: "Buff",
  2873. image: {
  2874. source: "./media/characters/flamm/buff.svg",
  2875. extra: 3018/2874,
  2876. bottom: 221/3239
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(9.5, "feet")
  2884. },
  2885. {
  2886. name: "Macro",
  2887. height: math.unit(200, "feet"),
  2888. default: true
  2889. },
  2890. ]
  2891. ))
  2892. characterMakers.push(() => makeCharacter(
  2893. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2894. {
  2895. front: {
  2896. height: math.unit(5 + 3/12, "feet"),
  2897. weight: math.unit(60, "kg"),
  2898. name: "Front",
  2899. image: {
  2900. source: "./media/characters/zephiro/front.svg",
  2901. extra: 2309 / 2162,
  2902. bottom: 0.069
  2903. }
  2904. },
  2905. side: {
  2906. height: math.unit(5 + 3/12, "feet"),
  2907. weight: math.unit(60, "kg"),
  2908. name: "Side",
  2909. image: {
  2910. source: "./media/characters/zephiro/side.svg",
  2911. extra: 2403 / 2279,
  2912. bottom: 0.015
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(5 + 3/12, "feet"),
  2917. weight: math.unit(60, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/zephiro/back.svg",
  2921. extra: 2373 / 2244,
  2922. bottom: 0.013
  2923. }
  2924. },
  2925. hand: {
  2926. height: math.unit(0.68, "feet"),
  2927. name: "Hand",
  2928. image: {
  2929. source: "./media/characters/zephiro/hand.svg"
  2930. }
  2931. },
  2932. paw: {
  2933. height: math.unit(1, "feet"),
  2934. name: "Paw",
  2935. image: {
  2936. source: "./media/characters/zephiro/paw.svg"
  2937. }
  2938. },
  2939. beans: {
  2940. height: math.unit(0.93, "feet"),
  2941. name: "Beans",
  2942. image: {
  2943. source: "./media/characters/zephiro/beans.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Micro",
  2950. height: math.unit(3, "inches")
  2951. },
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(5 + 3 / 12, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(118, "feet")
  2960. },
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(5, "feet"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/fory/front.svg",
  2972. extra: 2862 / 2674,
  2973. bottom: 180 / 3043.8
  2974. }
  2975. },
  2976. back: {
  2977. height: math.unit(5, "feet"),
  2978. weight: math.unit(90, "kg"),
  2979. name: "Back",
  2980. image: {
  2981. source: "./media/characters/fory/back.svg",
  2982. extra: 2962 / 2791,
  2983. bottom: 106 / 3071.8
  2984. }
  2985. },
  2986. foot: {
  2987. height: math.unit(2.14, "feet"),
  2988. name: "Foot",
  2989. image: {
  2990. source: "./media/characters/fory/foot.svg"
  2991. }
  2992. },
  2993. },
  2994. [
  2995. {
  2996. name: "Normal",
  2997. height: math.unit(5, "feet")
  2998. },
  2999. {
  3000. name: "Macro",
  3001. height: math.unit(50, "feet"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Megamacro",
  3006. height: math.unit(10, "miles")
  3007. },
  3008. {
  3009. name: "Gigamacro",
  3010. height: math.unit(5, "earths")
  3011. },
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/kurrikage/front.svg",
  3023. extra: 1845/1733,
  3024. bottom: 119/1964
  3025. }
  3026. },
  3027. back: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(90, "kg"),
  3030. name: "Back",
  3031. image: {
  3032. source: "./media/characters/kurrikage/back.svg",
  3033. extra: 1790/1677,
  3034. bottom: 61/1851
  3035. }
  3036. },
  3037. dressed: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(90, "kg"),
  3040. name: "Dressed",
  3041. image: {
  3042. source: "./media/characters/kurrikage/dressed.svg",
  3043. extra: 1845/1733,
  3044. bottom: 119/1964
  3045. }
  3046. },
  3047. foot: {
  3048. height: math.unit(1.5, "feet"),
  3049. name: "Foot",
  3050. image: {
  3051. source: "./media/characters/kurrikage/foot.svg"
  3052. }
  3053. },
  3054. staff: {
  3055. height: math.unit(6.7, "feet"),
  3056. name: "Staff",
  3057. image: {
  3058. source: "./media/characters/kurrikage/staff.svg"
  3059. }
  3060. },
  3061. peek: {
  3062. height: math.unit(1.05, "feet"),
  3063. name: "Peeking",
  3064. image: {
  3065. source: "./media/characters/kurrikage/peek.svg",
  3066. bottom: 0.08
  3067. }
  3068. },
  3069. },
  3070. [
  3071. {
  3072. name: "Normal",
  3073. height: math.unit(12, "feet"),
  3074. default: true
  3075. },
  3076. {
  3077. name: "Big",
  3078. height: math.unit(20, "feet")
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(500, "feet")
  3083. },
  3084. {
  3085. name: "Megamacro",
  3086. height: math.unit(20, "miles")
  3087. },
  3088. ]
  3089. ))
  3090. characterMakers.push(() => makeCharacter(
  3091. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3092. {
  3093. front: {
  3094. height: math.unit(6, "feet"),
  3095. weight: math.unit(75, "kg"),
  3096. name: "Front",
  3097. image: {
  3098. source: "./media/characters/shingo/front.svg",
  3099. extra: 1900/1825,
  3100. bottom: 82/1982
  3101. }
  3102. },
  3103. side: {
  3104. height: math.unit(6, "feet"),
  3105. weight: math.unit(75, "kg"),
  3106. name: "Side",
  3107. image: {
  3108. source: "./media/characters/shingo/side.svg",
  3109. extra: 1930/1865,
  3110. bottom: 16/1946
  3111. }
  3112. },
  3113. back: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Back",
  3117. image: {
  3118. source: "./media/characters/shingo/back.svg",
  3119. extra: 1922/1852,
  3120. bottom: 16/1938
  3121. }
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(6, "feet"),
  3125. weight: math.unit(150, "lb"),
  3126. name: "Front-dressed",
  3127. image: {
  3128. source: "./media/characters/shingo/front-dressed.svg",
  3129. extra: 1900/1825,
  3130. bottom: 82/1982
  3131. }
  3132. },
  3133. paw: {
  3134. height: math.unit(1.29, "feet"),
  3135. name: "Paw",
  3136. image: {
  3137. source: "./media/characters/shingo/paw.svg"
  3138. }
  3139. },
  3140. hand: {
  3141. height: math.unit(1.07, "feet"),
  3142. name: "Hand",
  3143. image: {
  3144. source: "./media/characters/shingo/hand.svg"
  3145. }
  3146. },
  3147. frontAlt: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(75, "kg"),
  3150. name: "Front (Alt)",
  3151. image: {
  3152. source: "./media/characters/shingo/front-alt.svg",
  3153. extra: 3511 / 3338,
  3154. bottom: 0.005
  3155. }
  3156. },
  3157. frontAlt2: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Front (Alt 2)",
  3161. image: {
  3162. source: "./media/characters/shingo/front-alt-2.svg",
  3163. extra: 706/681,
  3164. bottom: 11/717
  3165. }
  3166. },
  3167. pawAlt: {
  3168. height: math.unit(1, "feet"),
  3169. name: "Paw (Alt)",
  3170. image: {
  3171. source: "./media/characters/shingo/paw-alt.svg"
  3172. }
  3173. },
  3174. },
  3175. [
  3176. {
  3177. name: "Micro",
  3178. height: math.unit(4, "inches")
  3179. },
  3180. {
  3181. name: "Normal",
  3182. height: math.unit(6, "feet"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(108, "feet")
  3188. },
  3189. {
  3190. name: "Macro+",
  3191. height: math.unit(1500, "feet")
  3192. },
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3197. {
  3198. side: {
  3199. height: math.unit(6, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Side",
  3202. image: {
  3203. source: "./media/characters/aigey/side.svg"
  3204. }
  3205. },
  3206. },
  3207. [
  3208. {
  3209. name: "Macro",
  3210. height: math.unit(200, "feet"),
  3211. default: true
  3212. },
  3213. {
  3214. name: "Megamacro",
  3215. height: math.unit(100, "miles")
  3216. },
  3217. ]
  3218. )
  3219. )
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(5 + 5 / 12, "feet"),
  3225. weight: math.unit(75, "kg"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/natasha/front.svg",
  3229. extra: 859 / 824,
  3230. bottom: 23 / 879.6
  3231. }
  3232. },
  3233. frontNsfw: {
  3234. height: math.unit(5 + 5 / 12, "feet"),
  3235. weight: math.unit(75, "kg"),
  3236. name: "Front (NSFW)",
  3237. image: {
  3238. source: "./media/characters/natasha/front-nsfw.svg",
  3239. extra: 859 / 824,
  3240. bottom: 23 / 879.6
  3241. }
  3242. },
  3243. frontErect: {
  3244. height: math.unit(5 + 5 / 12, "feet"),
  3245. weight: math.unit(75, "kg"),
  3246. name: "Front (Erect)",
  3247. image: {
  3248. source: "./media/characters/natasha/front-erect.svg",
  3249. extra: 859 / 824,
  3250. bottom: 23 / 879.6
  3251. }
  3252. },
  3253. back: {
  3254. height: math.unit(5 + 5 / 12, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Back",
  3257. image: {
  3258. source: "./media/characters/natasha/back.svg",
  3259. extra: 887.9 / 852.6,
  3260. bottom: 9.7 / 896.4
  3261. }
  3262. },
  3263. backAlt: {
  3264. height: math.unit(5 + 5 / 12, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back (Alt)",
  3267. image: {
  3268. source: "./media/characters/natasha/back-alt.svg",
  3269. extra: 1236.7 / 1192,
  3270. bottom: 22.3 / 1258.2
  3271. }
  3272. },
  3273. dick: {
  3274. height: math.unit(1.772, "feet"),
  3275. name: "Dick",
  3276. image: {
  3277. source: "./media/characters/natasha/dick.svg"
  3278. }
  3279. },
  3280. paw: {
  3281. height: math.unit(0.250, "meters"),
  3282. name: "Paw",
  3283. image: {
  3284. source: "./media/characters/natasha/paw.svg"
  3285. }
  3286. },
  3287. },
  3288. [
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(5 + 5 / 12, "feet")
  3292. },
  3293. {
  3294. name: "Large",
  3295. height: math.unit(12, "feet")
  3296. },
  3297. {
  3298. name: "Macro",
  3299. height: math.unit(100, "feet"),
  3300. default: true
  3301. },
  3302. {
  3303. name: "Macro+",
  3304. height: math.unit(260, "feet")
  3305. },
  3306. {
  3307. name: "Macro++",
  3308. height: math.unit(1, "mile")
  3309. },
  3310. ]
  3311. ))
  3312. characterMakers.push(() => makeCharacter(
  3313. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3314. {
  3315. front: {
  3316. height: math.unit(6, "feet"),
  3317. weight: math.unit(75, "kg"),
  3318. name: "Front",
  3319. image: {
  3320. source: "./media/characters/malik/front.svg"
  3321. }
  3322. },
  3323. side: {
  3324. height: math.unit(6, "feet"),
  3325. weight: math.unit(75, "kg"),
  3326. name: "Side",
  3327. image: {
  3328. source: "./media/characters/malik/side.svg",
  3329. extra: 1.1539
  3330. }
  3331. },
  3332. back: {
  3333. height: math.unit(6, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/malik/back.svg"
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(156, "feet"),
  3345. default: true
  3346. },
  3347. {
  3348. name: "Macro+",
  3349. height: math.unit(1188, "feet")
  3350. },
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3355. {
  3356. front: {
  3357. height: math.unit(6, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Front",
  3360. image: {
  3361. source: "./media/characters/sefer/front.svg",
  3362. extra: 848 / 659,
  3363. bottom: 28.3 / 876.442
  3364. }
  3365. },
  3366. back: {
  3367. height: math.unit(6, "feet"),
  3368. weight: math.unit(75, "kg"),
  3369. name: "Back",
  3370. image: {
  3371. source: "./media/characters/sefer/back.svg",
  3372. extra: 864 / 695,
  3373. bottom: 10 / 871
  3374. }
  3375. },
  3376. frontDressed: {
  3377. height: math.unit(6, "feet"),
  3378. weight: math.unit(75, "kg"),
  3379. name: "Front (Dressed)",
  3380. image: {
  3381. source: "./media/characters/sefer/front-dressed.svg",
  3382. extra: 839 / 653,
  3383. bottom: 37.6 / 878
  3384. }
  3385. },
  3386. },
  3387. [
  3388. {
  3389. name: "Normal",
  3390. height: math.unit(6, "feet"),
  3391. default: true
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3397. {
  3398. body: {
  3399. height: math.unit(2.2428, "meter"),
  3400. weight: math.unit(124.738, "kg"),
  3401. name: "Body",
  3402. image: {
  3403. extra: 1225 / 1050,
  3404. source: "./media/characters/north/front.svg"
  3405. }
  3406. }
  3407. },
  3408. [
  3409. {
  3410. name: "Micro",
  3411. height: math.unit(4, "inches")
  3412. },
  3413. {
  3414. name: "Macro",
  3415. height: math.unit(63, "meters")
  3416. },
  3417. {
  3418. name: "Megamacro",
  3419. height: math.unit(101, "miles"),
  3420. default: true
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3426. {
  3427. angled: {
  3428. height: math.unit(4, "meter"),
  3429. weight: math.unit(150, "kg"),
  3430. name: "Angled",
  3431. image: {
  3432. source: "./media/characters/talan/angled-sfw.svg",
  3433. bottom: 29 / 3734
  3434. }
  3435. },
  3436. angledNsfw: {
  3437. height: math.unit(4, "meter"),
  3438. weight: math.unit(150, "kg"),
  3439. name: "Angled (NSFW)",
  3440. image: {
  3441. source: "./media/characters/talan/angled-nsfw.svg",
  3442. bottom: 29 / 3734
  3443. }
  3444. },
  3445. frontNsfw: {
  3446. height: math.unit(4, "meter"),
  3447. weight: math.unit(150, "kg"),
  3448. name: "Front (NSFW)",
  3449. image: {
  3450. source: "./media/characters/talan/front-nsfw.svg",
  3451. bottom: 29 / 3734
  3452. }
  3453. },
  3454. sideNsfw: {
  3455. height: math.unit(4, "meter"),
  3456. weight: math.unit(150, "kg"),
  3457. name: "Side (NSFW)",
  3458. image: {
  3459. source: "./media/characters/talan/side-nsfw.svg",
  3460. bottom: 29 / 3734
  3461. }
  3462. },
  3463. back: {
  3464. height: math.unit(4, "meter"),
  3465. weight: math.unit(150, "kg"),
  3466. name: "Back",
  3467. image: {
  3468. source: "./media/characters/talan/back.svg"
  3469. }
  3470. },
  3471. dickBottom: {
  3472. height: math.unit(0.621, "meter"),
  3473. name: "Dick (Bottom)",
  3474. image: {
  3475. source: "./media/characters/talan/dick-bottom.svg"
  3476. }
  3477. },
  3478. dickTop: {
  3479. height: math.unit(0.621, "meter"),
  3480. name: "Dick (Top)",
  3481. image: {
  3482. source: "./media/characters/talan/dick-top.svg"
  3483. }
  3484. },
  3485. dickSide: {
  3486. height: math.unit(0.305, "meter"),
  3487. name: "Dick (Side)",
  3488. image: {
  3489. source: "./media/characters/talan/dick-side.svg"
  3490. }
  3491. },
  3492. dickFront: {
  3493. height: math.unit(0.305, "meter"),
  3494. name: "Dick (Front)",
  3495. image: {
  3496. source: "./media/characters/talan/dick-front.svg"
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(4, "meters")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(100, "meters")
  3508. },
  3509. {
  3510. name: "Megamacro",
  3511. height: math.unit(2, "miles"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(5000, "miles")
  3517. },
  3518. {
  3519. name: "Teramacro",
  3520. height: math.unit(100, "parsecs")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(90, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/gael'rathus/front.svg"
  3533. }
  3534. },
  3535. frontAlt: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Front (alt)",
  3539. image: {
  3540. source: "./media/characters/gael'rathus/front-alt.svg"
  3541. }
  3542. },
  3543. frontAlt2: {
  3544. height: math.unit(2, "meter"),
  3545. weight: math.unit(90, "kg"),
  3546. name: "Front (alt 2)",
  3547. image: {
  3548. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(9, "feet"),
  3556. default: true
  3557. },
  3558. {
  3559. name: "Large",
  3560. height: math.unit(25, "feet")
  3561. },
  3562. {
  3563. name: "Macro",
  3564. height: math.unit(0.25, "miles")
  3565. },
  3566. {
  3567. name: "Megamacro",
  3568. height: math.unit(10, "miles")
  3569. }
  3570. ]
  3571. ))
  3572. characterMakers.push(() => makeCharacter(
  3573. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3574. {
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(140, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/sosha/side.svg",
  3581. bottom: 0.042
  3582. }
  3583. },
  3584. },
  3585. [
  3586. {
  3587. name: "Normal",
  3588. height: math.unit(12, "feet"),
  3589. default: true
  3590. }
  3591. ]
  3592. ))
  3593. characterMakers.push(() => makeCharacter(
  3594. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3595. {
  3596. side: {
  3597. height: math.unit(5 + 5 / 12, "feet"),
  3598. weight: math.unit(170, "kg"),
  3599. name: "Side",
  3600. image: {
  3601. source: "./media/characters/runnola/side.svg",
  3602. extra: 741 / 448,
  3603. bottom: 0.05
  3604. }
  3605. },
  3606. },
  3607. [
  3608. {
  3609. name: "Small",
  3610. height: math.unit(3, "feet")
  3611. },
  3612. {
  3613. name: "Normal",
  3614. height: math.unit(5 + 5 / 12, "feet"),
  3615. default: true
  3616. },
  3617. {
  3618. name: "Big",
  3619. height: math.unit(10, "feet")
  3620. },
  3621. ]
  3622. ))
  3623. characterMakers.push(() => makeCharacter(
  3624. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3625. {
  3626. front: {
  3627. height: math.unit(2, "meter"),
  3628. weight: math.unit(50, "kg"),
  3629. name: "Front",
  3630. image: {
  3631. source: "./media/characters/kurribird/front.svg",
  3632. bottom: 0.015
  3633. }
  3634. },
  3635. frontAlt: {
  3636. height: math.unit(1.5, "meter"),
  3637. weight: math.unit(50, "kg"),
  3638. name: "Front (Alt)",
  3639. image: {
  3640. source: "./media/characters/kurribird/front-alt.svg",
  3641. extra: 1.45
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(7, "feet")
  3649. },
  3650. {
  3651. name: "Big",
  3652. height: math.unit(12, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(1500, "feet")
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(2, "miles")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(80, "kg"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/elbial/front.svg",
  3674. extra: 1643 / 1556,
  3675. bottom: 60.2 / 1696
  3676. }
  3677. },
  3678. side: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(80, "kg"),
  3681. name: "Side",
  3682. image: {
  3683. source: "./media/characters/elbial/side.svg",
  3684. extra: 1601/1528,
  3685. bottom: 97/1698
  3686. }
  3687. },
  3688. back: {
  3689. height: math.unit(2, "meter"),
  3690. weight: math.unit(80, "kg"),
  3691. name: "Back",
  3692. image: {
  3693. source: "./media/characters/elbial/back.svg",
  3694. extra: 1653/1569,
  3695. bottom: 20/1673
  3696. }
  3697. },
  3698. frontDressed: {
  3699. height: math.unit(2, "meter"),
  3700. weight: math.unit(80, "kg"),
  3701. name: "Front (Dressed)",
  3702. image: {
  3703. source: "./media/characters/elbial/front-dressed.svg",
  3704. extra: 1638/1569,
  3705. bottom: 70/1708
  3706. }
  3707. },
  3708. genitals: {
  3709. height: math.unit(2 / 3.367, "meter"),
  3710. name: "Genitals",
  3711. image: {
  3712. source: "./media/characters/elbial/genitals.svg"
  3713. }
  3714. },
  3715. },
  3716. [
  3717. {
  3718. name: "Large",
  3719. height: math.unit(100, "feet")
  3720. },
  3721. {
  3722. name: "Macro",
  3723. height: math.unit(500, "feet"),
  3724. default: true
  3725. },
  3726. {
  3727. name: "Megamacro",
  3728. height: math.unit(10, "miles")
  3729. },
  3730. {
  3731. name: "Gigamacro",
  3732. height: math.unit(25000, "miles")
  3733. },
  3734. {
  3735. name: "Full-Size",
  3736. height: math.unit(8000000, "gigaparsecs")
  3737. }
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(2, "meter"),
  3745. weight: math.unit(60, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/noah/front.svg"
  3749. }
  3750. },
  3751. talons: {
  3752. height: math.unit(0.315, "meter"),
  3753. name: "Talons",
  3754. image: {
  3755. source: "./media/characters/noah/talons.svg"
  3756. }
  3757. }
  3758. },
  3759. [
  3760. {
  3761. name: "Large",
  3762. height: math.unit(50, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(750, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Megamacro",
  3771. height: math.unit(50, "miles")
  3772. },
  3773. {
  3774. name: "Gigamacro",
  3775. height: math.unit(100000, "miles")
  3776. },
  3777. {
  3778. name: "Full-Size",
  3779. height: math.unit(3000000000, "miles")
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(2, "meter"),
  3788. weight: math.unit(80, "kg"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/natalya/front.svg"
  3792. }
  3793. },
  3794. back: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Back",
  3798. image: {
  3799. source: "./media/characters/natalya/back.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Normal",
  3806. height: math.unit(150, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Megamacro",
  3811. height: math.unit(5, "miles")
  3812. },
  3813. {
  3814. name: "Full-Size",
  3815. height: math.unit(600, "kiloparsecs")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/erestrebah/front.svg",
  3828. extra: 1262/1162,
  3829. bottom: 96/1358
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/erestrebah/back.svg",
  3838. extra: 1257/1139,
  3839. bottom: 13/1270
  3840. }
  3841. },
  3842. wing: {
  3843. height: math.unit(2, "meter"),
  3844. weight: math.unit(50, "kg"),
  3845. name: "Wing",
  3846. image: {
  3847. source: "./media/characters/erestrebah/wing.svg",
  3848. extra: 1262/1162,
  3849. bottom: 96/1358
  3850. }
  3851. },
  3852. mouth: {
  3853. height: math.unit(0.39, "feet"),
  3854. name: "Mouth",
  3855. image: {
  3856. source: "./media/characters/erestrebah/mouth.svg"
  3857. }
  3858. }
  3859. },
  3860. [
  3861. {
  3862. name: "Normal",
  3863. height: math.unit(10, "feet")
  3864. },
  3865. {
  3866. name: "Large",
  3867. height: math.unit(50, "feet"),
  3868. default: true
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(300, "feet")
  3873. },
  3874. {
  3875. name: "Macro+",
  3876. height: math.unit(750, "feet")
  3877. },
  3878. {
  3879. name: "Megamacro",
  3880. height: math.unit(3, "miles")
  3881. }
  3882. ]
  3883. ))
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(2, "meter"),
  3889. weight: math.unit(80, "kg"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/jennifer/front.svg",
  3893. bottom: 0.11,
  3894. extra: 1.16
  3895. }
  3896. },
  3897. frontAlt: {
  3898. height: math.unit(2, "meter"),
  3899. weight: math.unit(80, "kg"),
  3900. name: "Front (Alt)",
  3901. image: {
  3902. source: "./media/characters/jennifer/front-alt.svg"
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Canon Height",
  3909. height: math.unit(120, "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Macro+",
  3914. height: math.unit(300, "feet")
  3915. },
  3916. {
  3917. name: "Megamacro",
  3918. height: math.unit(20000, "feet")
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(2, "meter"),
  3927. weight: math.unit(50, "kg"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/kalista/front.svg",
  3931. extra: 1314/1145,
  3932. bottom: 101/1415
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(2, "meter"),
  3937. weight: math.unit(50, "kg"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/kalista/back.svg",
  3941. extra: 1366 / 1156,
  3942. bottom: 33.9 / 1362.78
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Uncomfortably Small",
  3949. height: math.unit(10, "feet")
  3950. },
  3951. {
  3952. name: "Small",
  3953. height: math.unit(30, "feet")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(100, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Macro+",
  3962. height: math.unit(2000, "feet")
  3963. },
  3964. {
  3965. name: "True Form",
  3966. height: math.unit(8924, "miles")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(120, "kg"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/ggv/front.svg"
  3979. }
  3980. },
  3981. side: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(120, "kg"),
  3984. name: "Side",
  3985. image: {
  3986. source: "./media/characters/ggv/side.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Extremely Puny",
  3993. height: math.unit(9 + 5 / 12, "feet")
  3994. },
  3995. {
  3996. name: "Horribly Small",
  3997. height: math.unit(47.7, "miles"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Reasonably Sized",
  4002. height: math.unit(25000, "parsecs")
  4003. },
  4004. {
  4005. name: "Slightly Uncompressed",
  4006. height: math.unit(7.77e31, "parsecs")
  4007. },
  4008. {
  4009. name: "Omniversal",
  4010. height: math.unit(1e300, "meters")
  4011. },
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(75, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/napalm/front.svg"
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(2, "meter"),
  4027. weight: math.unit(75, "lb"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/napalm/back.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Standard",
  4037. height: math.unit(55, "feet"),
  4038. default: true
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(7 + 5 / 6, "feet"),
  4047. weight: math.unit(325, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/asana/front.svg",
  4051. extra: 1133 / 1060,
  4052. bottom: 15.2 / 1148.6
  4053. }
  4054. },
  4055. back: {
  4056. height: math.unit(7 + 5 / 6, "feet"),
  4057. weight: math.unit(325, "lb"),
  4058. name: "Back",
  4059. image: {
  4060. source: "./media/characters/asana/back.svg",
  4061. extra: 1114 / 1043,
  4062. bottom: 5 / 1120
  4063. }
  4064. },
  4065. dressedDark: {
  4066. height: math.unit(7 + 5 / 6, "feet"),
  4067. weight: math.unit(325, "lb"),
  4068. name: "Dressed (Dark)",
  4069. image: {
  4070. source: "./media/characters/asana/dressed-dark.svg",
  4071. extra: 1133 / 1060,
  4072. bottom: 15.2 / 1148.6
  4073. }
  4074. },
  4075. dressedLight: {
  4076. height: math.unit(7 + 5 / 6, "feet"),
  4077. weight: math.unit(325, "lb"),
  4078. name: "Dressed (Light)",
  4079. image: {
  4080. source: "./media/characters/asana/dressed-light.svg",
  4081. extra: 1133 / 1060,
  4082. bottom: 15.2 / 1148.6
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Standard",
  4089. height: math.unit(7 + 5 / 6, "feet"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Large",
  4094. height: math.unit(10, "meters")
  4095. },
  4096. {
  4097. name: "Macro",
  4098. height: math.unit(2500, "meters")
  4099. },
  4100. {
  4101. name: "Megamacro",
  4102. height: math.unit(5e6, "meters")
  4103. },
  4104. {
  4105. name: "Examacro",
  4106. height: math.unit(5e12, "lightyears")
  4107. },
  4108. {
  4109. name: "Max Size",
  4110. height: math.unit(1e31, "lightyears")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(60, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/ebony/front.svg",
  4123. bottom: 0.03,
  4124. extra: 1045 / 810 + 0.03
  4125. }
  4126. },
  4127. side: {
  4128. height: math.unit(2, "meter"),
  4129. weight: math.unit(60, "kg"),
  4130. name: "Side",
  4131. image: {
  4132. source: "./media/characters/ebony/side.svg",
  4133. bottom: 0.03,
  4134. extra: 1045 / 810 + 0.03
  4135. }
  4136. },
  4137. back: {
  4138. height: math.unit(2, "meter"),
  4139. weight: math.unit(60, "kg"),
  4140. name: "Back",
  4141. image: {
  4142. source: "./media/characters/ebony/back.svg",
  4143. bottom: 0.01,
  4144. extra: 1045 / 810 + 0.01
  4145. }
  4146. },
  4147. },
  4148. [
  4149. // TODO check why I did this lol
  4150. {
  4151. name: "Standard",
  4152. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(200, "feet")
  4158. },
  4159. {
  4160. name: "Gigamacro",
  4161. height: math.unit(13000, "km")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(175, "lb"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/mountain/front.svg",
  4174. extra: 972 / 955,
  4175. bottom: 64 / 1036.6
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(175, "lb"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/mountain/back.svg",
  4184. extra: 970 / 950,
  4185. bottom: 28.25 / 999
  4186. }
  4187. },
  4188. },
  4189. [
  4190. {
  4191. name: "Large",
  4192. height: math.unit(20, "meters")
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(300, "meters")
  4197. },
  4198. {
  4199. name: "Gigamacro",
  4200. height: math.unit(10000, "km"),
  4201. default: true
  4202. },
  4203. {
  4204. name: "Examacro",
  4205. height: math.unit(10e9, "lightyears")
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(8, "feet"),
  4214. weight: math.unit(500, "lb"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/rick/front.svg"
  4218. }
  4219. }
  4220. },
  4221. [
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(8, "feet"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro",
  4229. height: math.unit(5, "km")
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(120, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/ona/front.svg"
  4242. }
  4243. },
  4244. frontAlt: {
  4245. height: math.unit(8, "feet"),
  4246. weight: math.unit(120, "lb"),
  4247. name: "Front (Alt)",
  4248. image: {
  4249. source: "./media/characters/ona/front-alt.svg"
  4250. }
  4251. },
  4252. back: {
  4253. height: math.unit(8, "feet"),
  4254. weight: math.unit(120, "lb"),
  4255. name: "Back",
  4256. image: {
  4257. source: "./media/characters/ona/back.svg"
  4258. }
  4259. },
  4260. foot: {
  4261. height: math.unit(1.1, "feet"),
  4262. name: "Foot",
  4263. image: {
  4264. source: "./media/characters/ona/foot.svg"
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Megamacro",
  4271. height: math.unit(70, "km"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Gigamacro",
  4276. height: math.unit(681818, "miles")
  4277. },
  4278. {
  4279. name: "Examacro",
  4280. height: math.unit(3800000, "lightyears")
  4281. },
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(12, "feet"),
  4289. weight: math.unit(3000, "lb"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/mech/front.svg",
  4293. extra: 2900 / 2770,
  4294. bottom: 110 / 3010
  4295. }
  4296. },
  4297. back: {
  4298. height: math.unit(12, "feet"),
  4299. weight: math.unit(3000, "lb"),
  4300. name: "Back",
  4301. image: {
  4302. source: "./media/characters/mech/back.svg",
  4303. extra: 3011 / 2890,
  4304. bottom: 94 / 3105
  4305. }
  4306. },
  4307. maw: {
  4308. height: math.unit(3.07, "feet"),
  4309. name: "Maw",
  4310. image: {
  4311. source: "./media/characters/mech/maw.svg"
  4312. }
  4313. },
  4314. head: {
  4315. height: math.unit(2.82, "feet"),
  4316. name: "Head",
  4317. image: {
  4318. source: "./media/characters/mech/head.svg"
  4319. }
  4320. },
  4321. dick: {
  4322. height: math.unit(1.43, "feet"),
  4323. name: "Dick",
  4324. image: {
  4325. source: "./media/characters/mech/dick.svg"
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(12, "feet")
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(300, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Macro+",
  4341. height: math.unit(1500, "feet")
  4342. },
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(1.3, "meter"),
  4350. weight: math.unit(30, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/gregory/front.svg",
  4354. }
  4355. }
  4356. },
  4357. [
  4358. {
  4359. name: "Normal",
  4360. height: math.unit(1.3, "meter"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Macro",
  4365. height: math.unit(20, "meter")
  4366. }
  4367. ]
  4368. ))
  4369. characterMakers.push(() => makeCharacter(
  4370. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4371. {
  4372. front: {
  4373. height: math.unit(2.8, "meter"),
  4374. weight: math.unit(200, "kg"),
  4375. name: "Front",
  4376. image: {
  4377. source: "./media/characters/elory/front.svg",
  4378. }
  4379. }
  4380. },
  4381. [
  4382. {
  4383. name: "Normal",
  4384. height: math.unit(2.8, "meter"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Macro",
  4389. height: math.unit(38, "meter")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(470, "feet"),
  4398. weight: math.unit(924, "tons"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/angelpatamon/front.svg",
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Normal",
  4408. height: math.unit(470, "feet"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Deity Size I",
  4413. height: math.unit(28651.2, "km")
  4414. },
  4415. {
  4416. name: "Deity Size II",
  4417. height: math.unit(171907.2, "km")
  4418. }
  4419. ]
  4420. ))
  4421. characterMakers.push(() => makeCharacter(
  4422. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4423. {
  4424. side: {
  4425. height: math.unit(7.2, "meter"),
  4426. weight: math.unit(8.2, "tons"),
  4427. name: "Side",
  4428. image: {
  4429. source: "./media/characters/cryae/side.svg",
  4430. extra: 3500 / 1500
  4431. }
  4432. }
  4433. },
  4434. [
  4435. {
  4436. name: "Normal",
  4437. height: math.unit(7.2, "meter"),
  4438. default: true
  4439. }
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4444. {
  4445. front: {
  4446. height: math.unit(6, "feet"),
  4447. weight: math.unit(175, "lb"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/xera/front.svg",
  4451. extra: 2377 / 1972,
  4452. bottom: 75.5 / 2452
  4453. }
  4454. },
  4455. side: {
  4456. height: math.unit(6, "feet"),
  4457. weight: math.unit(175, "lb"),
  4458. name: "Side",
  4459. image: {
  4460. source: "./media/characters/xera/side.svg",
  4461. extra: 2345 / 2019,
  4462. bottom: 39.7 / 2384
  4463. }
  4464. },
  4465. back: {
  4466. height: math.unit(6, "feet"),
  4467. weight: math.unit(175, "lb"),
  4468. name: "Back",
  4469. image: {
  4470. source: "./media/characters/xera/back.svg",
  4471. extra: 2095 / 1984,
  4472. bottom: 67 / 2166
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Small",
  4479. height: math.unit(10, "feet")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(500, "meters"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Macro+",
  4488. height: math.unit(10, "km")
  4489. },
  4490. {
  4491. name: "Gigamacro",
  4492. height: math.unit(25000, "km")
  4493. },
  4494. {
  4495. name: "Teramacro",
  4496. height: math.unit(3e6, "km")
  4497. }
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4502. {
  4503. front: {
  4504. height: math.unit(6, "feet"),
  4505. weight: math.unit(175, "lb"),
  4506. name: "Front",
  4507. image: {
  4508. source: "./media/characters/nebula/front.svg",
  4509. extra: 2566 / 2362,
  4510. bottom: 81 / 2644
  4511. }
  4512. }
  4513. },
  4514. [
  4515. {
  4516. name: "Small",
  4517. height: math.unit(4.5, "meters")
  4518. },
  4519. {
  4520. name: "Macro",
  4521. height: math.unit(1500, "meters"),
  4522. default: true
  4523. },
  4524. {
  4525. name: "Megamacro",
  4526. height: math.unit(150, "km")
  4527. },
  4528. {
  4529. name: "Gigamacro",
  4530. height: math.unit(27000, "km")
  4531. }
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4536. {
  4537. front: {
  4538. height: math.unit(6, "feet"),
  4539. weight: math.unit(225, "lb"),
  4540. name: "Front",
  4541. image: {
  4542. source: "./media/characters/abysgar/front.svg",
  4543. extra: 1739/1614,
  4544. bottom: 71/1810
  4545. }
  4546. },
  4547. frontNsfw: {
  4548. height: math.unit(6, "feet"),
  4549. weight: math.unit(225, "lb"),
  4550. name: "Front (NSFW)",
  4551. image: {
  4552. source: "./media/characters/abysgar/front-nsfw.svg",
  4553. extra: 1739/1614,
  4554. bottom: 71/1810
  4555. }
  4556. },
  4557. back: {
  4558. height: math.unit(4.6, "feet"),
  4559. weight: math.unit(225, "lb"),
  4560. name: "Back",
  4561. image: {
  4562. source: "./media/characters/abysgar/back.svg",
  4563. extra: 1384/1327,
  4564. bottom: 0/1384
  4565. }
  4566. },
  4567. head: {
  4568. height: math.unit(1.25, "feet"),
  4569. name: "Head",
  4570. image: {
  4571. source: "./media/characters/abysgar/head.svg",
  4572. extra: 669/569,
  4573. bottom: 0/669
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Small",
  4580. height: math.unit(4.5, "meters")
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(1250, "meters"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(125, "km")
  4590. },
  4591. {
  4592. name: "Gigamacro",
  4593. height: math.unit(26000, "km")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(6, "feet"),
  4602. weight: math.unit(180, "lb"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/yakuz/front.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Small",
  4612. height: math.unit(5, "meters")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(1500, "meters"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(200, "km")
  4622. },
  4623. {
  4624. name: "Gigamacro",
  4625. height: math.unit(100000, "km")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(175, "lb"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/mirova/front.svg",
  4638. extra: 3334 / 3071,
  4639. bottom: 42 / 3375.6
  4640. }
  4641. }
  4642. },
  4643. [
  4644. {
  4645. name: "Small",
  4646. height: math.unit(5, "meters")
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(900, "meters"),
  4651. default: true
  4652. },
  4653. {
  4654. name: "Megamacro",
  4655. height: math.unit(135, "km")
  4656. },
  4657. {
  4658. name: "Gigamacro",
  4659. height: math.unit(20000, "km")
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4665. {
  4666. side: {
  4667. height: math.unit(28.35, "feet"),
  4668. weight: math.unit(99.75, "tons"),
  4669. name: "Side",
  4670. image: {
  4671. source: "./media/characters/asana-mech/side.svg",
  4672. extra: 923 / 699,
  4673. bottom: 50 / 975
  4674. }
  4675. },
  4676. chaingun: {
  4677. height: math.unit(7, "feet"),
  4678. weight: math.unit(2400, "lb"),
  4679. name: "Chaingun",
  4680. image: {
  4681. source: "./media/characters/asana-mech/chaingun.svg"
  4682. }
  4683. },
  4684. laser: {
  4685. height: math.unit(7.12, "feet"),
  4686. weight: math.unit(2000, "lb"),
  4687. name: "Laser",
  4688. image: {
  4689. source: "./media/characters/asana-mech/laser.svg"
  4690. }
  4691. },
  4692. },
  4693. [
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(28.35, "feet"),
  4697. default: true
  4698. },
  4699. {
  4700. name: "Macro",
  4701. height: math.unit(2500, "feet")
  4702. },
  4703. {
  4704. name: "Megamacro",
  4705. height: math.unit(25, "miles")
  4706. },
  4707. {
  4708. name: "Examacro",
  4709. height: math.unit(6e8, "lightyears")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(5, "meters"),
  4718. weight: math.unit(1000, "kg"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/asche/front.svg",
  4722. extra: 1258 / 1190,
  4723. bottom: 47 / 1305
  4724. }
  4725. },
  4726. frontUnderwear: {
  4727. height: math.unit(5, "meters"),
  4728. weight: math.unit(1000, "kg"),
  4729. name: "Front (Underwear)",
  4730. image: {
  4731. source: "./media/characters/asche/front-underwear.svg",
  4732. extra: 1258 / 1190,
  4733. bottom: 47 / 1305
  4734. }
  4735. },
  4736. frontDressed: {
  4737. height: math.unit(5, "meters"),
  4738. weight: math.unit(1000, "kg"),
  4739. name: "Front (Dressed)",
  4740. image: {
  4741. source: "./media/characters/asche/front-dressed.svg",
  4742. extra: 1258 / 1190,
  4743. bottom: 47 / 1305
  4744. }
  4745. },
  4746. frontArmor: {
  4747. height: math.unit(5, "meters"),
  4748. weight: math.unit(1000, "kg"),
  4749. name: "Front (Armored)",
  4750. image: {
  4751. source: "./media/characters/asche/front-armored.svg",
  4752. extra: 1374 / 1308,
  4753. bottom: 23 / 1397
  4754. }
  4755. },
  4756. mp724: {
  4757. height: math.unit(0.96, "meters"),
  4758. weight: math.unit(38, "kg"),
  4759. name: "H&K MP724",
  4760. image: {
  4761. source: "./media/characters/asche/h&k-mp724.svg"
  4762. }
  4763. },
  4764. side: {
  4765. height: math.unit(5, "meters"),
  4766. weight: math.unit(1000, "kg"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/asche/side.svg",
  4770. extra: 1717 / 1609,
  4771. bottom: 0.005
  4772. }
  4773. },
  4774. back: {
  4775. height: math.unit(5, "meters"),
  4776. weight: math.unit(1000, "kg"),
  4777. name: "Back",
  4778. image: {
  4779. source: "./media/characters/asche/back.svg",
  4780. extra: 1570 / 1501
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "DEFCON 5",
  4787. height: math.unit(5, "meters")
  4788. },
  4789. {
  4790. name: "DEFCON 4",
  4791. height: math.unit(500, "meters"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "DEFCON 3",
  4796. height: math.unit(5, "km")
  4797. },
  4798. {
  4799. name: "DEFCON 2",
  4800. height: math.unit(500, "km")
  4801. },
  4802. {
  4803. name: "DEFCON 1",
  4804. height: math.unit(500000, "km")
  4805. },
  4806. {
  4807. name: "DEFCON 0",
  4808. height: math.unit(3, "gigaparsecs")
  4809. },
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(2, "meters"),
  4817. weight: math.unit(76, "kg"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/gale/front.svg"
  4821. }
  4822. },
  4823. frontAlt1: {
  4824. height: math.unit(2, "meters"),
  4825. weight: math.unit(76, "kg"),
  4826. name: "Front (Alt 1)",
  4827. image: {
  4828. source: "./media/characters/gale/front-alt-1.svg"
  4829. }
  4830. },
  4831. frontAlt2: {
  4832. height: math.unit(2, "meters"),
  4833. weight: math.unit(76, "kg"),
  4834. name: "Front (Alt 2)",
  4835. image: {
  4836. source: "./media/characters/gale/front-alt-2.svg"
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(7, "feet")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(150, "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro+",
  4852. height: math.unit(300, "feet")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(5 + 10/12, "feet"),
  4861. weight: math.unit(67, "kg"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/draylen/front.svg",
  4865. extra: 832/777,
  4866. bottom: 85/917
  4867. }
  4868. }
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(5 + 10/12, "feet")
  4874. },
  4875. {
  4876. name: "Macro",
  4877. height: math.unit(150, "feet"),
  4878. default: true
  4879. }
  4880. ]
  4881. ))
  4882. characterMakers.push(() => makeCharacter(
  4883. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4884. {
  4885. front: {
  4886. height: math.unit(7 + 9 / 12, "feet"),
  4887. weight: math.unit(379, "lbs"),
  4888. name: "Front",
  4889. image: {
  4890. source: "./media/characters/chez/front.svg"
  4891. }
  4892. },
  4893. side: {
  4894. height: math.unit(7 + 9 / 12, "feet"),
  4895. weight: math.unit(379, "lbs"),
  4896. name: "Side",
  4897. image: {
  4898. source: "./media/characters/chez/side.svg"
  4899. }
  4900. }
  4901. },
  4902. [
  4903. {
  4904. name: "Normal",
  4905. height: math.unit(7 + 9 / 12, "feet"),
  4906. default: true
  4907. },
  4908. {
  4909. name: "God King",
  4910. height: math.unit(9750000, "meters")
  4911. }
  4912. ]
  4913. ))
  4914. characterMakers.push(() => makeCharacter(
  4915. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4916. {
  4917. front: {
  4918. height: math.unit(6, "feet"),
  4919. weight: math.unit(275, "lbs"),
  4920. name: "Front",
  4921. image: {
  4922. source: "./media/characters/kaylum/front.svg",
  4923. bottom: 0.01,
  4924. extra: 1166 / 1031
  4925. }
  4926. },
  4927. frontWingless: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(275, "lbs"),
  4930. name: "Front (Wingless)",
  4931. image: {
  4932. source: "./media/characters/kaylum/front-wingless.svg",
  4933. bottom: 0.01,
  4934. extra: 1117 / 1031
  4935. }
  4936. }
  4937. },
  4938. [
  4939. {
  4940. name: "Normal",
  4941. height: math.unit(3.05, "meters")
  4942. },
  4943. {
  4944. name: "Master",
  4945. height: math.unit(5.5, "meters")
  4946. },
  4947. {
  4948. name: "Rampage",
  4949. height: math.unit(19, "meters")
  4950. },
  4951. {
  4952. name: "Macro Lite",
  4953. height: math.unit(37, "meters")
  4954. },
  4955. {
  4956. name: "Hyper Predator",
  4957. height: math.unit(61, "meters")
  4958. },
  4959. {
  4960. name: "Macro",
  4961. height: math.unit(138, "meters"),
  4962. default: true
  4963. }
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4968. {
  4969. front: {
  4970. height: math.unit(5 + 5 / 12, "feet"),
  4971. weight: math.unit(120, "lbs"),
  4972. name: "Front",
  4973. image: {
  4974. source: "./media/characters/geta/front.svg",
  4975. extra: 1003/933,
  4976. bottom: 21/1024
  4977. }
  4978. },
  4979. paw: {
  4980. height: math.unit(0.35, "feet"),
  4981. name: "Paw",
  4982. image: {
  4983. source: "./media/characters/geta/paw.svg"
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Micro",
  4990. height: math.unit(3, "inches"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(5 + 5 / 12, "feet")
  4996. }
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(300, "lbs"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/tyrnn/front.svg"
  5008. }
  5009. }
  5010. },
  5011. [
  5012. {
  5013. name: "Main Height",
  5014. height: math.unit(355, "feet"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Fave. Height",
  5019. height: math.unit(2400, "feet")
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6, "feet"),
  5028. weight: math.unit(300, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/appledectomy/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(2500, "feet")
  5039. },
  5040. {
  5041. name: "Megamacro",
  5042. height: math.unit(50, "miles"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Gigamacro",
  5047. height: math.unit(5000, "miles")
  5048. },
  5049. {
  5050. name: "Teramacro",
  5051. height: math.unit(250000, "miles")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(200, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/vulpes/front.svg",
  5064. extra: 573 / 543,
  5065. bottom: 0.033
  5066. }
  5067. },
  5068. side: {
  5069. height: math.unit(6, "feet"),
  5070. weight: math.unit(200, "lbs"),
  5071. name: "Side",
  5072. image: {
  5073. source: "./media/characters/vulpes/side.svg",
  5074. extra: 577 / 549,
  5075. bottom: 11 / 588
  5076. }
  5077. },
  5078. back: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(200, "lbs"),
  5081. name: "Back",
  5082. image: {
  5083. source: "./media/characters/vulpes/back.svg",
  5084. extra: 573 / 549,
  5085. bottom: 20 / 593
  5086. }
  5087. },
  5088. feet: {
  5089. height: math.unit(1.276, "feet"),
  5090. name: "Feet",
  5091. image: {
  5092. source: "./media/characters/vulpes/feet.svg"
  5093. }
  5094. },
  5095. maw: {
  5096. height: math.unit(1.18, "feet"),
  5097. name: "Maw",
  5098. image: {
  5099. source: "./media/characters/vulpes/maw.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Micro",
  5106. height: math.unit(2, "inches")
  5107. },
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(6.3, "feet")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(850, "feet")
  5115. },
  5116. {
  5117. name: "Megamacro",
  5118. height: math.unit(7500, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Gigamacro",
  5123. height: math.unit(570000, "miles")
  5124. }
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5129. {
  5130. front: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(210, "lbs"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/rain-fallen/front.svg"
  5136. }
  5137. },
  5138. side: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(210, "lbs"),
  5141. name: "Side",
  5142. image: {
  5143. source: "./media/characters/rain-fallen/side.svg"
  5144. }
  5145. },
  5146. back: {
  5147. height: math.unit(6, "feet"),
  5148. weight: math.unit(210, "lbs"),
  5149. name: "Back",
  5150. image: {
  5151. source: "./media/characters/rain-fallen/back.svg"
  5152. }
  5153. },
  5154. feral: {
  5155. height: math.unit(9, "feet"),
  5156. weight: math.unit(700, "lbs"),
  5157. name: "Feral",
  5158. image: {
  5159. source: "./media/characters/rain-fallen/feral.svg"
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Meddling with Mortals",
  5166. height: math.unit(8 + 8/12, "feet")
  5167. },
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(5, "meter")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(150, "meter"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(278e6, "meter")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(2e9, "meter")
  5184. },
  5185. {
  5186. name: "Teramacro",
  5187. height: math.unit(8e12, "meter")
  5188. },
  5189. {
  5190. name: "Devourer",
  5191. height: math.unit(14, "zettameters")
  5192. },
  5193. {
  5194. name: "Scarlet King",
  5195. height: math.unit(18, "yottameters")
  5196. },
  5197. {
  5198. name: "Void",
  5199. height: math.unit(1e88, "yottameters")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5205. {
  5206. standing: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(180, "lbs"),
  5209. name: "Standing",
  5210. image: {
  5211. source: "./media/characters/zaakira/standing.svg",
  5212. extra: 1599/1504,
  5213. bottom: 39/1638
  5214. }
  5215. },
  5216. laying: {
  5217. height: math.unit(3.3, "feet"),
  5218. weight: math.unit(180, "lbs"),
  5219. name: "Laying",
  5220. image: {
  5221. source: "./media/characters/zaakira/laying.svg"
  5222. }
  5223. },
  5224. },
  5225. [
  5226. {
  5227. name: "Normal",
  5228. height: math.unit(12, "feet")
  5229. },
  5230. {
  5231. name: "Macro",
  5232. height: math.unit(279, "feet"),
  5233. default: true
  5234. }
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5239. {
  5240. femSfw: {
  5241. height: math.unit(8, "feet"),
  5242. weight: math.unit(350, "lb"),
  5243. name: "Fem",
  5244. image: {
  5245. source: "./media/characters/sigvald/fem-sfw.svg",
  5246. extra: 182 / 164,
  5247. bottom: 8.7 / 190.5
  5248. }
  5249. },
  5250. femNsfw: {
  5251. height: math.unit(8, "feet"),
  5252. weight: math.unit(350, "lb"),
  5253. name: "Fem (NSFW)",
  5254. image: {
  5255. source: "./media/characters/sigvald/fem-nsfw.svg",
  5256. extra: 182 / 164,
  5257. bottom: 8.7 / 190.5
  5258. }
  5259. },
  5260. maleNsfw: {
  5261. height: math.unit(8, "feet"),
  5262. weight: math.unit(350, "lb"),
  5263. name: "Male (NSFW)",
  5264. image: {
  5265. source: "./media/characters/sigvald/male-nsfw.svg",
  5266. extra: 182 / 164,
  5267. bottom: 8.7 / 190.5
  5268. }
  5269. },
  5270. hermNsfw: {
  5271. height: math.unit(8, "feet"),
  5272. weight: math.unit(350, "lb"),
  5273. name: "Herm (NSFW)",
  5274. image: {
  5275. source: "./media/characters/sigvald/herm-nsfw.svg",
  5276. extra: 182 / 164,
  5277. bottom: 8.7 / 190.5
  5278. }
  5279. },
  5280. dick: {
  5281. height: math.unit(2.36, "feet"),
  5282. name: "Dick",
  5283. image: {
  5284. source: "./media/characters/sigvald/dick.svg"
  5285. }
  5286. },
  5287. eye: {
  5288. height: math.unit(0.31, "feet"),
  5289. name: "Eye",
  5290. image: {
  5291. source: "./media/characters/sigvald/eye.svg"
  5292. }
  5293. },
  5294. mouth: {
  5295. height: math.unit(0.92, "feet"),
  5296. name: "Mouth",
  5297. image: {
  5298. source: "./media/characters/sigvald/mouth.svg"
  5299. }
  5300. },
  5301. paws: {
  5302. height: math.unit(2.2, "feet"),
  5303. name: "Paws",
  5304. image: {
  5305. source: "./media/characters/sigvald/paws.svg"
  5306. }
  5307. }
  5308. },
  5309. [
  5310. {
  5311. name: "Normal",
  5312. height: math.unit(8, "feet")
  5313. },
  5314. {
  5315. name: "Large",
  5316. height: math.unit(12, "feet")
  5317. },
  5318. {
  5319. name: "Larger",
  5320. height: math.unit(20, "feet")
  5321. },
  5322. {
  5323. name: "Macro",
  5324. height: math.unit(150, "feet")
  5325. },
  5326. {
  5327. name: "Macro+",
  5328. height: math.unit(200, "feet"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5335. {
  5336. side: {
  5337. height: math.unit(12, "feet"),
  5338. weight: math.unit(2000, "kg"),
  5339. name: "Side",
  5340. image: {
  5341. source: "./media/characters/scott/side.svg",
  5342. extra: 754 / 724,
  5343. bottom: 0.069
  5344. }
  5345. },
  5346. upright: {
  5347. height: math.unit(12, "feet"),
  5348. weight: math.unit(2000, "kg"),
  5349. name: "Upright",
  5350. image: {
  5351. source: "./media/characters/scott/upright.svg",
  5352. extra: 3881 / 3722,
  5353. bottom: 0.05
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(12, "feet"),
  5361. default: true
  5362. },
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5367. {
  5368. side: {
  5369. height: math.unit(8, "meters"),
  5370. weight: math.unit(84755, "lbs"),
  5371. name: "Side",
  5372. image: {
  5373. source: "./media/characters/tobias/side.svg",
  5374. extra: 1474 / 1096,
  5375. bottom: 38.9 / 1513.1235
  5376. }
  5377. },
  5378. },
  5379. [
  5380. {
  5381. name: "Normal",
  5382. height: math.unit(8, "meters"),
  5383. default: true
  5384. },
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5389. {
  5390. front: {
  5391. height: math.unit(5.5, "feet"),
  5392. weight: math.unit(400, "lbs"),
  5393. name: "Front",
  5394. image: {
  5395. source: "./media/characters/kieran/front.svg",
  5396. extra: 2694 / 2364,
  5397. bottom: 217 / 2908
  5398. }
  5399. },
  5400. side: {
  5401. height: math.unit(5.5, "feet"),
  5402. weight: math.unit(400, "lbs"),
  5403. name: "Side",
  5404. image: {
  5405. source: "./media/characters/kieran/side.svg",
  5406. extra: 875 / 777,
  5407. bottom: 84.6 / 959
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(5.5, "feet"),
  5415. default: true
  5416. },
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5421. {
  5422. side: {
  5423. height: math.unit(2, "meters"),
  5424. weight: math.unit(70, "kg"),
  5425. name: "Side",
  5426. image: {
  5427. source: "./media/characters/sanya/side.svg",
  5428. bottom: 0.02,
  5429. extra: 1.02
  5430. }
  5431. },
  5432. },
  5433. [
  5434. {
  5435. name: "Small",
  5436. height: math.unit(2, "meters")
  5437. },
  5438. {
  5439. name: "Normal",
  5440. height: math.unit(3, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(16, "meters"),
  5445. default: true
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(2, "meters"),
  5454. weight: math.unit(120, "kg"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/miranda/front.svg",
  5458. extra: 195 / 185,
  5459. bottom: 10.9 / 206.5
  5460. }
  5461. },
  5462. back: {
  5463. height: math.unit(2, "meters"),
  5464. weight: math.unit(120, "kg"),
  5465. name: "Back",
  5466. image: {
  5467. source: "./media/characters/miranda/back.svg",
  5468. extra: 201 / 193,
  5469. bottom: 2.3 / 203.7
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(10, "feet"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "James", species: ["deer"], tags: ["anthro"] },
  5483. {
  5484. side: {
  5485. height: math.unit(2, "meters"),
  5486. weight: math.unit(100, "kg"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/james/front.svg",
  5490. extra: 10 / 8.5
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Normal",
  5497. height: math.unit(8.5, "feet"),
  5498. default: true
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5504. {
  5505. side: {
  5506. height: math.unit(9.5, "feet"),
  5507. weight: math.unit(2500, "lbs"),
  5508. name: "Side",
  5509. image: {
  5510. source: "./media/characters/heather/side.svg"
  5511. }
  5512. },
  5513. },
  5514. [
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(9.5, "feet"),
  5518. default: true
  5519. }
  5520. ]
  5521. ))
  5522. characterMakers.push(() => makeCharacter(
  5523. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5524. {
  5525. side: {
  5526. height: math.unit(6.5, "feet"),
  5527. weight: math.unit(400, "lbs"),
  5528. name: "Side",
  5529. image: {
  5530. source: "./media/characters/lukas/side.svg",
  5531. extra: 7.25 / 6.5
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(6.5, "feet"),
  5539. default: true
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(5, "feet"),
  5548. weight: math.unit(3000, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/louise/side.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(5, "feet"),
  5559. default: true
  5560. }
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5565. {
  5566. side: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(150, "lbs"),
  5569. name: "Side",
  5570. image: {
  5571. source: "./media/characters/ramona/side.svg",
  5572. extra: 871/854,
  5573. bottom: 41/912
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(5.3, "meters"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Macro",
  5585. height: math.unit(20, "stories")
  5586. },
  5587. {
  5588. name: "Macro+",
  5589. height: math.unit(50, "stories")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5595. {
  5596. standing: {
  5597. height: math.unit(5.75, "feet"),
  5598. weight: math.unit(160, "lbs"),
  5599. name: "Standing",
  5600. image: {
  5601. source: "./media/characters/deerpuff/standing.svg",
  5602. extra: 682 / 624
  5603. }
  5604. },
  5605. sitting: {
  5606. height: math.unit(5.75 / 1.79, "feet"),
  5607. weight: math.unit(160, "lbs"),
  5608. name: "Sitting",
  5609. image: {
  5610. source: "./media/characters/deerpuff/sitting.svg",
  5611. bottom: 44 / 400,
  5612. extra: 1
  5613. }
  5614. },
  5615. taurLaying: {
  5616. height: math.unit(6, "feet"),
  5617. weight: math.unit(400, "lbs"),
  5618. name: "Taur (Laying)",
  5619. image: {
  5620. source: "./media/characters/deerpuff/taur-laying.svg"
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Puffball",
  5627. height: math.unit(6, "inches")
  5628. },
  5629. {
  5630. name: "Normalpuff",
  5631. height: math.unit(5.75, "feet")
  5632. },
  5633. {
  5634. name: "Macropuff",
  5635. height: math.unit(1500, "feet"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Megapuff",
  5640. height: math.unit(500, "miles")
  5641. },
  5642. {
  5643. name: "Gigapuff",
  5644. height: math.unit(250000, "miles")
  5645. },
  5646. {
  5647. name: "Omegapuff",
  5648. height: math.unit(1000, "lightyears")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5654. {
  5655. stomping: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(170, "lbs"),
  5658. name: "Stomping",
  5659. image: {
  5660. source: "./media/characters/vivian/stomping.svg"
  5661. }
  5662. },
  5663. sitting: {
  5664. height: math.unit(6 / 1.75, "feet"),
  5665. weight: math.unit(170, "lbs"),
  5666. name: "Sitting",
  5667. image: {
  5668. source: "./media/characters/vivian/sitting.svg",
  5669. bottom: 1 / 6.4,
  5670. extra: 1,
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(7, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Macro",
  5682. height: math.unit(10, "stories")
  5683. },
  5684. {
  5685. name: "Macro+",
  5686. height: math.unit(30, "stories")
  5687. },
  5688. {
  5689. name: "Megamacro",
  5690. height: math.unit(10, "miles")
  5691. },
  5692. {
  5693. name: "Megamacro+",
  5694. height: math.unit(2750000, "meters")
  5695. },
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(160, "lbs"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/prince/front.svg",
  5707. extra: 3400 / 3000
  5708. }
  5709. },
  5710. jumping: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(160, "lbs"),
  5713. name: "Jumping",
  5714. image: {
  5715. source: "./media/characters/prince/jump.svg",
  5716. extra: 2555 / 2134
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(7.75, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Not cute",
  5728. height: math.unit(17, "feet")
  5729. },
  5730. {
  5731. name: "I said NOT",
  5732. height: math.unit(91, "feet")
  5733. },
  5734. {
  5735. name: "Please stop",
  5736. height: math.unit(560, "feet")
  5737. },
  5738. {
  5739. name: "What have you done",
  5740. height: math.unit(2200, "feet")
  5741. },
  5742. {
  5743. name: "Deer God",
  5744. height: math.unit(3.6, "miles")
  5745. },
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5750. {
  5751. standing: {
  5752. height: math.unit(6, "feet"),
  5753. weight: math.unit(300, "lbs"),
  5754. name: "Standing",
  5755. image: {
  5756. source: "./media/characters/psymon/standing.svg",
  5757. extra: 1888 / 1810,
  5758. bottom: 0.05
  5759. }
  5760. },
  5761. slithering: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(300, "lbs"),
  5764. name: "Slithering",
  5765. image: {
  5766. source: "./media/characters/psymon/slithering.svg",
  5767. extra: 1330 / 1224
  5768. }
  5769. },
  5770. slitheringAlt: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(300, "lbs"),
  5773. name: "Slithering (Alt)",
  5774. image: {
  5775. source: "./media/characters/psymon/slithering-alt.svg",
  5776. extra: 1330 / 1224
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(11.25, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Large",
  5788. height: math.unit(27, "feet")
  5789. },
  5790. {
  5791. name: "Giant",
  5792. height: math.unit(87, "feet")
  5793. },
  5794. {
  5795. name: "Macro",
  5796. height: math.unit(365, "feet")
  5797. },
  5798. {
  5799. name: "Megamacro",
  5800. height: math.unit(3, "miles")
  5801. },
  5802. {
  5803. name: "World Serpent",
  5804. height: math.unit(8000, "miles")
  5805. },
  5806. ]
  5807. ))
  5808. characterMakers.push(() => makeCharacter(
  5809. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5810. {
  5811. front: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(180, "lbs"),
  5814. name: "Front",
  5815. image: {
  5816. source: "./media/characters/daimos/front.svg",
  5817. extra: 4160 / 3897,
  5818. bottom: 0.021
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(8, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Big Dog",
  5830. height: math.unit(22, "feet")
  5831. },
  5832. {
  5833. name: "Macro",
  5834. height: math.unit(127, "feet")
  5835. },
  5836. {
  5837. name: "Megamacro",
  5838. height: math.unit(3600, "feet")
  5839. },
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5844. {
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(180, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/blake/side.svg",
  5851. extra: 1212 / 1120,
  5852. bottom: 0.05
  5853. }
  5854. },
  5855. crouched: {
  5856. height: math.unit(6 * 0.57, "feet"),
  5857. weight: math.unit(180, "lbs"),
  5858. name: "Crouched",
  5859. image: {
  5860. source: "./media/characters/blake/crouched.svg",
  5861. extra: 840 / 587,
  5862. bottom: 0.04
  5863. }
  5864. },
  5865. bent: {
  5866. height: math.unit(6 * 0.75, "feet"),
  5867. weight: math.unit(180, "lbs"),
  5868. name: "Bent",
  5869. image: {
  5870. source: "./media/characters/blake/bent.svg",
  5871. extra: 592 / 544,
  5872. bottom: 0.035
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(8 + 1 / 6, "feet"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Big Backside",
  5884. height: math.unit(37, "feet")
  5885. },
  5886. {
  5887. name: "Subway Shredder",
  5888. height: math.unit(72, "feet")
  5889. },
  5890. {
  5891. name: "City Carver",
  5892. height: math.unit(1675, "feet")
  5893. },
  5894. {
  5895. name: "Tectonic Tweaker",
  5896. height: math.unit(2300, "miles")
  5897. },
  5898. ]
  5899. ))
  5900. characterMakers.push(() => makeCharacter(
  5901. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5902. {
  5903. front: {
  5904. height: math.unit(6, "feet"),
  5905. weight: math.unit(180, "lbs"),
  5906. name: "Front",
  5907. image: {
  5908. source: "./media/characters/guisetto/front.svg",
  5909. extra: 856 / 817,
  5910. bottom: 0.06
  5911. }
  5912. },
  5913. airborne: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(180, "lbs"),
  5916. name: "Airborne",
  5917. image: {
  5918. source: "./media/characters/guisetto/airborne.svg",
  5919. extra: 584 / 525
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Normal",
  5926. height: math.unit(10 + 11 / 12, "feet"),
  5927. default: true
  5928. },
  5929. {
  5930. name: "Large",
  5931. height: math.unit(35, "feet")
  5932. },
  5933. {
  5934. name: "Macro",
  5935. height: math.unit(475, "feet")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(180, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/luxor/front.svg",
  5948. extra: 2940 / 2152
  5949. }
  5950. },
  5951. back: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(180, "lbs"),
  5954. name: "Back",
  5955. image: {
  5956. source: "./media/characters/luxor/back.svg",
  5957. extra: 1083 / 960
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(5 + 5 / 6, "feet"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Lamp",
  5969. height: math.unit(50, "feet")
  5970. },
  5971. {
  5972. name: "Lämp",
  5973. height: math.unit(300, "feet")
  5974. },
  5975. {
  5976. name: "The sun is a lamp",
  5977. height: math.unit(250000, "miles")
  5978. },
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5983. {
  5984. front: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(50, "lbs"),
  5987. name: "Front",
  5988. image: {
  5989. source: "./media/characters/huoyan/front.svg"
  5990. }
  5991. },
  5992. side: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(180, "lbs"),
  5995. name: "Side",
  5996. image: {
  5997. source: "./media/characters/huoyan/side.svg"
  5998. }
  5999. },
  6000. },
  6001. [
  6002. {
  6003. name: "Chef",
  6004. height: math.unit(9, "feet")
  6005. },
  6006. {
  6007. name: "Normal",
  6008. height: math.unit(65, "feet"),
  6009. default: true
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(780, "feet")
  6014. },
  6015. {
  6016. name: "Flaming Mountain",
  6017. height: math.unit(4.8, "miles")
  6018. },
  6019. {
  6020. name: "Celestial",
  6021. height: math.unit(765000, "miles")
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(5 + 3 / 4, "feet"),
  6030. weight: math.unit(120, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/tails/front.svg"
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(5 + 3 / 4, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(4, "feet"),
  6050. weight: math.unit(50, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/rainy/front.svg"
  6054. }
  6055. }
  6056. },
  6057. [
  6058. {
  6059. name: "Macro",
  6060. height: math.unit(800, "feet"),
  6061. default: true
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(150, "lbs"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/rainier/front.svg"
  6074. }
  6075. }
  6076. },
  6077. [
  6078. {
  6079. name: "Micro",
  6080. height: math.unit(2, "mm"),
  6081. default: true
  6082. }
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(8 + 4/12, "feet"),
  6090. weight: math.unit(450, "kilograms"),
  6091. volume: math.unit(5, "cups"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/andy-renard/front.svg",
  6095. extra: 1839/1726,
  6096. bottom: 134/1973
  6097. }
  6098. },
  6099. back: {
  6100. height: math.unit(8 + 4/12, "feet"),
  6101. weight: math.unit(450, "kilograms"),
  6102. volume: math.unit(5, "cups"),
  6103. name: "Back",
  6104. image: {
  6105. source: "./media/characters/andy-renard/back.svg",
  6106. extra: 1838/1710,
  6107. bottom: 105/1943
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Tall",
  6114. height: math.unit(8 + 4/12, "feet")
  6115. },
  6116. {
  6117. name: "Mini Macro",
  6118. height: math.unit(15, "feet"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(100, "feet")
  6124. },
  6125. {
  6126. name: "Mega Macro",
  6127. height: math.unit(1000, "feet")
  6128. },
  6129. {
  6130. name: "Giga Macro",
  6131. height: math.unit(10, "miles")
  6132. },
  6133. {
  6134. name: "God Macro",
  6135. height: math.unit(1, "multiverse")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(210, "lbs"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/cimmaron/front-sfw.svg",
  6148. extra: 701 / 676,
  6149. bottom: 0.046
  6150. }
  6151. },
  6152. back: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(210, "lbs"),
  6155. name: "Back",
  6156. image: {
  6157. source: "./media/characters/cimmaron/back-sfw.svg",
  6158. extra: 701 / 676,
  6159. bottom: 0.046
  6160. }
  6161. },
  6162. frontNsfw: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(210, "lbs"),
  6165. name: "Front (NSFW)",
  6166. image: {
  6167. source: "./media/characters/cimmaron/front-nsfw.svg",
  6168. extra: 701 / 676,
  6169. bottom: 0.046
  6170. }
  6171. },
  6172. backNsfw: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(210, "lbs"),
  6175. name: "Back (NSFW)",
  6176. image: {
  6177. source: "./media/characters/cimmaron/back-nsfw.svg",
  6178. extra: 701 / 676,
  6179. bottom: 0.046
  6180. }
  6181. },
  6182. dick: {
  6183. height: math.unit(1.714, "feet"),
  6184. name: "Dick",
  6185. image: {
  6186. source: "./media/characters/cimmaron/dick.svg"
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(6, "feet"),
  6194. default: true
  6195. },
  6196. {
  6197. name: "Macro Mayor",
  6198. height: math.unit(350, "meters")
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(200, "lbs"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/akari/front.svg",
  6211. extra: 962 / 901,
  6212. bottom: 0.04
  6213. }
  6214. }
  6215. },
  6216. [
  6217. {
  6218. name: "Micro",
  6219. height: math.unit(5, "inches"),
  6220. default: true
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(7, "feet")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(140, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/cynosura/front.svg",
  6237. extra: 896 / 847
  6238. }
  6239. },
  6240. back: {
  6241. height: math.unit(6, "feet"),
  6242. weight: math.unit(140, "lbs"),
  6243. name: "Back",
  6244. image: {
  6245. source: "./media/characters/cynosura/back.svg",
  6246. extra: 1365 / 1250
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Micro",
  6253. height: math.unit(4, "inches")
  6254. },
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(5.75, "feet"),
  6258. default: true
  6259. },
  6260. {
  6261. name: "Tall",
  6262. height: math.unit(10, "feet")
  6263. },
  6264. {
  6265. name: "Big",
  6266. height: math.unit(20, "feet")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(50, "feet")
  6271. },
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6276. {
  6277. front: {
  6278. height: math.unit(13 + 2/12, "feet"),
  6279. weight: math.unit(800, "kg"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/gin/front.svg",
  6283. extra: 1312/1191,
  6284. bottom: 45/1357
  6285. }
  6286. },
  6287. mouth: {
  6288. height: math.unit(2.39 * 1.8, "feet"),
  6289. name: "Mouth",
  6290. image: {
  6291. source: "./media/characters/gin/mouth.svg"
  6292. }
  6293. },
  6294. hand: {
  6295. height: math.unit(1.57 * 2.19, "feet"),
  6296. name: "Hand",
  6297. image: {
  6298. source: "./media/characters/gin/hand.svg"
  6299. }
  6300. },
  6301. foot: {
  6302. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6303. name: "Foot",
  6304. image: {
  6305. source: "./media/characters/gin/foot.svg"
  6306. }
  6307. },
  6308. sole: {
  6309. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6310. name: "Sole",
  6311. image: {
  6312. source: "./media/characters/gin/sole.svg"
  6313. }
  6314. },
  6315. },
  6316. [
  6317. {
  6318. name: "Very Small",
  6319. height: math.unit(13 + 2 / 12, "feet")
  6320. },
  6321. {
  6322. name: "Micro",
  6323. height: math.unit(600, "miles")
  6324. },
  6325. {
  6326. name: "Regular",
  6327. height: math.unit(20, "earths"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(2.2, "solarradii")
  6333. },
  6334. {
  6335. name: "Teramacro",
  6336. height: math.unit(1.2, "galaxies")
  6337. },
  6338. {
  6339. name: "Omegamacro",
  6340. height: math.unit(200, "universes")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(6 + 1 / 6, "feet"),
  6349. weight: math.unit(178, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/guy/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(6 + 1 / 6, "feet"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Large",
  6364. height: math.unit(25 + 7 / 12, "feet")
  6365. },
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(60 + 9 / 12, "feet")
  6369. },
  6370. {
  6371. name: "Macro+",
  6372. height: math.unit(246, "feet")
  6373. },
  6374. {
  6375. name: "Macro++",
  6376. height: math.unit(878, "feet")
  6377. }
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(9, "feet"),
  6385. weight: math.unit(800, "lbs"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/tiberius/front.svg",
  6389. extra: 2295 / 2071
  6390. }
  6391. },
  6392. back: {
  6393. height: math.unit(9, "feet"),
  6394. weight: math.unit(800, "lbs"),
  6395. name: "Back",
  6396. image: {
  6397. source: "./media/characters/tiberius/back.svg",
  6398. extra: 2373 / 2160
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(9, "feet"),
  6406. default: true
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6412. {
  6413. front: {
  6414. height: math.unit(6, "feet"),
  6415. weight: math.unit(600, "lbs"),
  6416. name: "Front",
  6417. image: {
  6418. source: "./media/characters/surgo/front.svg",
  6419. extra: 3591 / 2227
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(600, "lbs"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/surgo/back.svg",
  6428. extra: 3557 / 2228
  6429. }
  6430. },
  6431. laying: {
  6432. height: math.unit(6 * 0.85, "feet"),
  6433. weight: math.unit(600, "lbs"),
  6434. name: "Laying",
  6435. image: {
  6436. source: "./media/characters/surgo/laying.svg"
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(6, "feet"),
  6444. default: true
  6445. }
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6450. {
  6451. side: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(150, "lbs"),
  6454. name: "Side",
  6455. image: {
  6456. source: "./media/characters/cibus/side.svg",
  6457. extra: 800 / 400
  6458. }
  6459. },
  6460. },
  6461. [
  6462. {
  6463. name: "Normal",
  6464. height: math.unit(6, "feet"),
  6465. default: true
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(240, "lbs"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/nibbles/front.svg"
  6478. }
  6479. },
  6480. side: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(240, "lbs"),
  6483. name: "Side",
  6484. image: {
  6485. source: "./media/characters/nibbles/side.svg"
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(9, "feet"),
  6493. default: true
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6499. {
  6500. side: {
  6501. height: math.unit(5 + 1 / 6, "feet"),
  6502. weight: math.unit(130, "lbs"),
  6503. name: "Side",
  6504. image: {
  6505. source: "./media/characters/rikky/side.svg",
  6506. extra: 851 / 801
  6507. }
  6508. },
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(5 + 1 / 6, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(152, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(7, "miles")
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6528. {
  6529. side: {
  6530. height: math.unit(370, "cm"),
  6531. weight: math.unit(350, "lbs"),
  6532. name: "Side",
  6533. image: {
  6534. source: "./media/characters/malfressa/side.svg"
  6535. }
  6536. },
  6537. walking: {
  6538. height: math.unit(370, "cm"),
  6539. weight: math.unit(350, "lbs"),
  6540. name: "Walking",
  6541. image: {
  6542. source: "./media/characters/malfressa/walking.svg"
  6543. }
  6544. },
  6545. feral: {
  6546. height: math.unit(2500, "cm"),
  6547. weight: math.unit(100000, "lbs"),
  6548. name: "Feral",
  6549. image: {
  6550. source: "./media/characters/malfressa/feral.svg",
  6551. extra: 2108 / 837,
  6552. bottom: 0.02
  6553. }
  6554. },
  6555. },
  6556. [
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(370, "cm")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(300, "meters"),
  6564. default: true
  6565. }
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(60, "kg"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/jaro/front.svg",
  6577. extra: 845/817,
  6578. bottom: 45/890
  6579. }
  6580. },
  6581. back: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(60, "kg"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/jaro/back.svg",
  6587. extra: 847/817,
  6588. bottom: 34/881
  6589. }
  6590. },
  6591. },
  6592. [
  6593. {
  6594. name: "Micro",
  6595. height: math.unit(7, "inches")
  6596. },
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(5.5, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Minimacro",
  6604. height: math.unit(20, "feet")
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(200, "meters")
  6609. }
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(195, "lb"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/rogue/front.svg"
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Macro",
  6627. height: math.unit(90, "feet"),
  6628. default: true
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6634. {
  6635. standing: {
  6636. height: math.unit(5 + 8 / 12, "feet"),
  6637. weight: math.unit(140, "lb"),
  6638. name: "Standing",
  6639. image: {
  6640. source: "./media/characters/piper/standing.svg",
  6641. extra: 1440/1284,
  6642. bottom: 66/1506
  6643. }
  6644. },
  6645. running: {
  6646. height: math.unit(5 + 8 / 12, "feet"),
  6647. weight: math.unit(140, "lb"),
  6648. name: "Running",
  6649. image: {
  6650. source: "./media/characters/piper/running.svg",
  6651. extra: 3948/3655,
  6652. bottom: 0/3948
  6653. }
  6654. },
  6655. sole: {
  6656. height: math.unit(0.81, "feet"),
  6657. weight: math.unit(2, "kg"),
  6658. name: "Sole",
  6659. image: {
  6660. source: "./media/characters/piper/sole.svg"
  6661. }
  6662. },
  6663. nipple: {
  6664. height: math.unit(0.25, "feet"),
  6665. weight: math.unit(1.5, "lb"),
  6666. name: "Nipple",
  6667. image: {
  6668. source: "./media/characters/piper/nipple.svg"
  6669. }
  6670. },
  6671. head: {
  6672. height: math.unit(1.1, "feet"),
  6673. name: "Head",
  6674. image: {
  6675. source: "./media/characters/piper/head.svg"
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(2, "inches")
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(5 + 8 / 12, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(250, "feet"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Megamacro",
  6695. height: math.unit(7, "miles")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(220, "lb"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/gemini/front.svg"
  6708. }
  6709. },
  6710. back: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(220, "lb"),
  6713. name: "Back",
  6714. image: {
  6715. source: "./media/characters/gemini/back.svg"
  6716. }
  6717. },
  6718. kneeling: {
  6719. height: math.unit(6 / 1.5, "feet"),
  6720. weight: math.unit(220, "lb"),
  6721. name: "Kneeling",
  6722. image: {
  6723. source: "./media/characters/gemini/kneeling.svg",
  6724. bottom: 0.02
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(300, "meters"),
  6732. default: true
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(6900, "meters")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6742. {
  6743. anthro: {
  6744. height: math.unit(2.35, "meters"),
  6745. weight: math.unit(73, "kg"),
  6746. name: "Anthro",
  6747. image: {
  6748. source: "./media/characters/alicia/anthro.svg",
  6749. extra: 2571 / 2385,
  6750. bottom: 75 / 2648
  6751. }
  6752. },
  6753. paw: {
  6754. height: math.unit(1.32, "feet"),
  6755. name: "Paw",
  6756. image: {
  6757. source: "./media/characters/alicia/paw.svg"
  6758. }
  6759. },
  6760. feral: {
  6761. height: math.unit(1.69, "meters"),
  6762. weight: math.unit(73, "kg"),
  6763. name: "Feral",
  6764. image: {
  6765. source: "./media/characters/alicia/feral.svg",
  6766. extra: 2123 / 1715,
  6767. bottom: 222 / 2349
  6768. }
  6769. },
  6770. },
  6771. [
  6772. {
  6773. name: "Normal",
  6774. height: math.unit(2.35, "meters")
  6775. },
  6776. {
  6777. name: "Macro",
  6778. height: math.unit(60, "meters"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(10000, "kilometers")
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(7, "feet"),
  6792. weight: math.unit(250, "lbs"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/archy/front.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Micro",
  6802. height: math.unit(1, "inch")
  6803. },
  6804. {
  6805. name: "Shorty",
  6806. height: math.unit(5, "feet")
  6807. },
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(7, "feet")
  6811. },
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(600, "meters"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Megamacro",
  6819. height: math.unit(1, "mile")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(1.65, "meters"),
  6828. weight: math.unit(74, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/berri/front.svg",
  6832. extra: 857 / 837,
  6833. bottom: 18 / 877
  6834. }
  6835. },
  6836. bum: {
  6837. height: math.unit(1.46, "feet"),
  6838. name: "Bum",
  6839. image: {
  6840. source: "./media/characters/berri/bum.svg"
  6841. }
  6842. },
  6843. mouth: {
  6844. height: math.unit(0.44, "feet"),
  6845. name: "Mouth",
  6846. image: {
  6847. source: "./media/characters/berri/mouth.svg"
  6848. }
  6849. },
  6850. paw: {
  6851. height: math.unit(0.826, "feet"),
  6852. name: "Paw",
  6853. image: {
  6854. source: "./media/characters/berri/paw.svg"
  6855. }
  6856. },
  6857. },
  6858. [
  6859. {
  6860. name: "Normal",
  6861. height: math.unit(1.65, "meters")
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(60, "m"),
  6866. default: true
  6867. },
  6868. {
  6869. name: "Megamacro",
  6870. height: math.unit(9.213, "km")
  6871. },
  6872. {
  6873. name: "Planet Eater",
  6874. height: math.unit(489, "megameters")
  6875. },
  6876. {
  6877. name: "Teramacro",
  6878. height: math.unit(2471635000000, "meters")
  6879. },
  6880. {
  6881. name: "Examacro",
  6882. height: math.unit(8.0624e+26, "meters")
  6883. }
  6884. ]
  6885. ))
  6886. characterMakers.push(() => makeCharacter(
  6887. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6888. {
  6889. front: {
  6890. height: math.unit(1.72, "meters"),
  6891. weight: math.unit(68, "kg"),
  6892. name: "Front",
  6893. image: {
  6894. source: "./media/characters/lexi/front.svg"
  6895. }
  6896. }
  6897. },
  6898. [
  6899. {
  6900. name: "Very Smol",
  6901. height: math.unit(10, "mm")
  6902. },
  6903. {
  6904. name: "Micro",
  6905. height: math.unit(6.8, "cm"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(1.72, "m")
  6911. }
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(1.69, "meters"),
  6919. weight: math.unit(68, "kg"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/martin/front.svg",
  6923. extra: 596 / 581
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Micro",
  6930. height: math.unit(6.85, "cm"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Normal",
  6935. height: math.unit(1.69, "m")
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(1.69, "meters"),
  6944. weight: math.unit(68, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/juno/front.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Micro",
  6954. height: math.unit(7, "cm")
  6955. },
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(1.89, "m")
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(353, "meters"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(1.93, "meters"),
  6972. weight: math.unit(83, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/samantha/front.svg"
  6976. }
  6977. },
  6978. frontClothed: {
  6979. height: math.unit(1.93, "meters"),
  6980. weight: math.unit(83, "kg"),
  6981. name: "Front (Clothed)",
  6982. image: {
  6983. source: "./media/characters/samantha/front-clothed.svg"
  6984. }
  6985. },
  6986. back: {
  6987. height: math.unit(1.93, "meters"),
  6988. weight: math.unit(83, "kg"),
  6989. name: "Back",
  6990. image: {
  6991. source: "./media/characters/samantha/back.svg"
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Normal",
  6998. height: math.unit(1.93, "m")
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(74, "meters"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Macro+",
  7007. height: math.unit(223, "meters"),
  7008. },
  7009. {
  7010. name: "Megamacro",
  7011. height: math.unit(8381, "meters"),
  7012. },
  7013. {
  7014. name: "Megamacro+",
  7015. height: math.unit(12000, "kilometers")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(1.92, "meters"),
  7024. weight: math.unit(80, "kg"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/dr-clay/front.svg"
  7028. }
  7029. },
  7030. frontClothed: {
  7031. height: math.unit(1.92, "meters"),
  7032. weight: math.unit(80, "kg"),
  7033. name: "Front (Clothed)",
  7034. image: {
  7035. source: "./media/characters/dr-clay/front-clothed.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(1.92, "m")
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(214, "meters"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Macro+",
  7051. height: math.unit(12.237, "meters"),
  7052. },
  7053. {
  7054. name: "Megamacro",
  7055. height: math.unit(557, "megameters"),
  7056. },
  7057. {
  7058. name: "Unimaginable",
  7059. height: math.unit(120e9, "lightyears")
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(2, "meters"),
  7068. weight: math.unit(80, "kg"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Teramacro",
  7078. height: math.unit(500000, "lightyears"),
  7079. default: true
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7085. {
  7086. crux: {
  7087. height: math.unit(2, "meters"),
  7088. weight: math.unit(150, "kg"),
  7089. name: "Crux",
  7090. image: {
  7091. source: "./media/characters/vemus/crux.svg",
  7092. extra: 1074/936,
  7093. bottom: 23/1097
  7094. }
  7095. },
  7096. skunkTanuki: {
  7097. height: math.unit(2, "meters"),
  7098. weight: math.unit(150, "kg"),
  7099. name: "Skunk-Tanuki",
  7100. image: {
  7101. source: "./media/characters/vemus/skunk-tanuki.svg",
  7102. extra: 926/893,
  7103. bottom: 20/946
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(3.75, "meters"),
  7111. default: true
  7112. },
  7113. {
  7114. name: "Big",
  7115. height: math.unit(8, "meters")
  7116. },
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(100, "meters")
  7120. },
  7121. {
  7122. name: "Macro+",
  7123. height: math.unit(1500, "meters")
  7124. },
  7125. {
  7126. name: "Stellar",
  7127. height: math.unit(14e8, "meters")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(2, "meters"),
  7136. weight: math.unit(70, "kg"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/beherit/front.svg",
  7140. extra: 1234/1109,
  7141. bottom: 55/1289
  7142. }
  7143. }
  7144. },
  7145. [
  7146. {
  7147. name: "Normal",
  7148. height: math.unit(6, "feet")
  7149. },
  7150. {
  7151. name: "Lorg",
  7152. height: math.unit(25, "feet"),
  7153. default: true
  7154. },
  7155. {
  7156. name: "Lorger",
  7157. height: math.unit(75, "feet")
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(200, "meters")
  7162. },
  7163. ]
  7164. ))
  7165. characterMakers.push(() => makeCharacter(
  7166. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7167. {
  7168. front: {
  7169. height: math.unit(2, "meters"),
  7170. weight: math.unit(150, "kg"),
  7171. name: "Front",
  7172. image: {
  7173. source: "./media/characters/everett/front.svg",
  7174. extra: 1017/866,
  7175. bottom: 86/1103
  7176. }
  7177. },
  7178. paw: {
  7179. height: math.unit(2 / 3.6, "meters"),
  7180. name: "Paw",
  7181. image: {
  7182. source: "./media/characters/everett/paw.svg"
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(15, "feet"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Lorg",
  7194. height: math.unit(70, "feet"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Lorger",
  7199. height: math.unit(250, "feet")
  7200. },
  7201. {
  7202. name: "Macro",
  7203. height: math.unit(500, "meters")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(2, "meters"),
  7212. weight: math.unit(86, "kg"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/rose/front.svg",
  7216. extra: 1785/1636,
  7217. bottom: 30/1815
  7218. },
  7219. form: "liom",
  7220. default: true
  7221. },
  7222. frontSporty: {
  7223. height: math.unit(2, "meters"),
  7224. weight: math.unit(86, "kg"),
  7225. name: "Front (Sporty)",
  7226. image: {
  7227. source: "./media/characters/rose/front-sporty.svg",
  7228. extra: 350/335,
  7229. bottom: 10/360
  7230. },
  7231. form: "liom"
  7232. },
  7233. frontAlt: {
  7234. height: math.unit(1.6, "meters"),
  7235. weight: math.unit(86, "kg"),
  7236. name: "Front (Alt)",
  7237. image: {
  7238. source: "./media/characters/rose/front-alt.svg",
  7239. extra: 299/283,
  7240. bottom: 3/302
  7241. },
  7242. form: "liom"
  7243. },
  7244. plush: {
  7245. height: math.unit(2, "meters"),
  7246. weight: math.unit(86/3, "kg"),
  7247. name: "Plush",
  7248. image: {
  7249. source: "./media/characters/rose/plush.svg",
  7250. extra: 361/337,
  7251. bottom: 11/372
  7252. },
  7253. form: "plush",
  7254. default: true
  7255. },
  7256. faeStanding: {
  7257. height: math.unit(10, "cm"),
  7258. weight: math.unit(10, "grams"),
  7259. name: "Standing",
  7260. image: {
  7261. source: "./media/characters/rose/fae-standing.svg",
  7262. extra: 1189/1060,
  7263. bottom: 27/1216
  7264. },
  7265. form: "fae",
  7266. default: true
  7267. },
  7268. faeSitting: {
  7269. height: math.unit(5, "cm"),
  7270. weight: math.unit(10, "grams"),
  7271. name: "Sitting",
  7272. image: {
  7273. source: "./media/characters/rose/fae-sitting.svg",
  7274. extra: 737/577,
  7275. bottom: 356/1093
  7276. },
  7277. form: "fae"
  7278. },
  7279. faePaw: {
  7280. height: math.unit(1.35, "cm"),
  7281. name: "Paw",
  7282. image: {
  7283. source: "./media/characters/rose/fae-paw.svg"
  7284. },
  7285. form: "fae"
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "True Micro",
  7291. height: math.unit(9, "cm"),
  7292. form: "liom"
  7293. },
  7294. {
  7295. name: "Micro",
  7296. height: math.unit(16, "cm"),
  7297. form: "liom"
  7298. },
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(1.85, "meters"),
  7302. default: true,
  7303. form: "liom"
  7304. },
  7305. {
  7306. name: "Mini-Macro",
  7307. height: math.unit(5, "meters"),
  7308. form: "liom"
  7309. },
  7310. {
  7311. name: "Macro",
  7312. height: math.unit(15, "meters"),
  7313. form: "liom"
  7314. },
  7315. {
  7316. name: "True Macro",
  7317. height: math.unit(40, "meters"),
  7318. form: "liom"
  7319. },
  7320. {
  7321. name: "City Scale",
  7322. height: math.unit(1, "km"),
  7323. form: "liom"
  7324. },
  7325. {
  7326. name: "Plushie",
  7327. height: math.unit(9, "cm"),
  7328. form: "plush",
  7329. default: true
  7330. },
  7331. {
  7332. name: "Fae",
  7333. height: math.unit(10, "cm"),
  7334. form: "fae",
  7335. default: true
  7336. },
  7337. ],
  7338. {
  7339. "liom": {
  7340. name: "Liom"
  7341. },
  7342. "plush": {
  7343. name: "Plush"
  7344. },
  7345. "fae": {
  7346. name: "Fae Fox",
  7347. default: true
  7348. }
  7349. }
  7350. ))
  7351. characterMakers.push(() => makeCharacter(
  7352. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7353. {
  7354. front: {
  7355. height: math.unit(2, "meters"),
  7356. weight: math.unit(350, "lbs"),
  7357. name: "Front",
  7358. image: {
  7359. source: "./media/characters/regal/front.svg"
  7360. }
  7361. },
  7362. back: {
  7363. height: math.unit(2, "meters"),
  7364. weight: math.unit(350, "lbs"),
  7365. name: "Back",
  7366. image: {
  7367. source: "./media/characters/regal/back.svg"
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(350, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(4 + 11 / 12, "feet"),
  7384. weight: math.unit(100, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/opal/front.svg"
  7388. }
  7389. },
  7390. frontAlt: {
  7391. height: math.unit(4 + 11 / 12, "feet"),
  7392. weight: math.unit(100, "lbs"),
  7393. name: "Front (Alt)",
  7394. image: {
  7395. source: "./media/characters/opal/front-alt.svg"
  7396. }
  7397. },
  7398. },
  7399. [
  7400. {
  7401. name: "Small",
  7402. height: math.unit(4 + 11 / 12, "feet")
  7403. },
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(20, "feet"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(120, "feet")
  7412. },
  7413. {
  7414. name: "Megamacro",
  7415. height: math.unit(80, "miles")
  7416. },
  7417. {
  7418. name: "True Size",
  7419. height: math.unit(100000, "lightyears")
  7420. },
  7421. ]
  7422. ))
  7423. characterMakers.push(() => makeCharacter(
  7424. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7425. {
  7426. front: {
  7427. height: math.unit(6, "feet"),
  7428. weight: math.unit(200, "lbs"),
  7429. name: "Front",
  7430. image: {
  7431. source: "./media/characters/vector-wuff/front.svg"
  7432. }
  7433. }
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(2.8, "meters")
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(450, "meters"),
  7443. default: true
  7444. },
  7445. {
  7446. name: "Megamacro",
  7447. height: math.unit(15, "kilometers")
  7448. }
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(256, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/dannik/front.svg"
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(69.57, "meters"),
  7467. default: true
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(120, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/azura-saharah/front.svg"
  7480. }
  7481. },
  7482. back: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(120, "lbs"),
  7485. name: "Back",
  7486. image: {
  7487. source: "./media/characters/azura-saharah/back.svg"
  7488. }
  7489. },
  7490. },
  7491. [
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(100, "feet"),
  7495. default: true
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7501. {
  7502. side: {
  7503. height: math.unit(5 + 4 / 12, "feet"),
  7504. weight: math.unit(163, "lbs"),
  7505. name: "Side",
  7506. image: {
  7507. source: "./media/characters/kennedy/side.svg"
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Standard Doggo",
  7514. height: math.unit(5 + 4 / 12, "feet")
  7515. },
  7516. {
  7517. name: "Big Doggo",
  7518. height: math.unit(25 + 3 / 12, "feet"),
  7519. default: true
  7520. },
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7525. {
  7526. front: {
  7527. height: math.unit(5 + 5/12, "feet"),
  7528. weight: math.unit(100, "lbs"),
  7529. name: "Front",
  7530. image: {
  7531. source: "./media/characters/odios-de-lunar/front.svg",
  7532. extra: 1468/1323,
  7533. bottom: 22/1490
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(3, "inches")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5.5, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(100, "feet")
  7550. },
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7555. {
  7556. back: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(220, "lbs"),
  7559. name: "Back",
  7560. image: {
  7561. source: "./media/characters/mandake/back.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Normal",
  7568. height: math.unit(7, "feet"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(78, "feet")
  7574. },
  7575. {
  7576. name: "Macro+",
  7577. height: math.unit(300, "meters")
  7578. },
  7579. {
  7580. name: "Macro++",
  7581. height: math.unit(2400, "feet")
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(5167, "meters")
  7586. },
  7587. {
  7588. name: "Gigamacro",
  7589. height: math.unit(41769, "miles")
  7590. },
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(120, "lbs"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/yozey/front.svg"
  7602. }
  7603. },
  7604. frontAlt: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(120, "lbs"),
  7607. name: "Front (Alt)",
  7608. image: {
  7609. source: "./media/characters/yozey/front-alt.svg"
  7610. }
  7611. },
  7612. side: {
  7613. height: math.unit(6, "feet"),
  7614. weight: math.unit(120, "lbs"),
  7615. name: "Side",
  7616. image: {
  7617. source: "./media/characters/yozey/side.svg"
  7618. }
  7619. },
  7620. },
  7621. [
  7622. {
  7623. name: "Micro",
  7624. height: math.unit(3, "inches"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(6, "feet")
  7630. }
  7631. ]
  7632. ))
  7633. characterMakers.push(() => makeCharacter(
  7634. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7635. {
  7636. front: {
  7637. height: math.unit(6, "feet"),
  7638. weight: math.unit(103, "lbs"),
  7639. name: "Front",
  7640. image: {
  7641. source: "./media/characters/valeska-voss/front.svg"
  7642. }
  7643. }
  7644. },
  7645. [
  7646. {
  7647. name: "Mini-Sized Sub",
  7648. height: math.unit(3.1, "inches")
  7649. },
  7650. {
  7651. name: "Mid-Sized Sub",
  7652. height: math.unit(6.2, "inches")
  7653. },
  7654. {
  7655. name: "Full-Sized Sub",
  7656. height: math.unit(9.3, "inches")
  7657. },
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(5 + 2 / 12, "foot"),
  7661. default: true
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(160, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/gene-zeta/front.svg",
  7674. extra: 3006 / 2826,
  7675. bottom: 182 / 3188
  7676. }
  7677. }
  7678. },
  7679. [
  7680. {
  7681. name: "Micro",
  7682. height: math.unit(6, "inches")
  7683. },
  7684. {
  7685. name: "Normal",
  7686. height: math.unit(5 + 11 / 12, "foot"),
  7687. default: true
  7688. },
  7689. {
  7690. name: "Macro",
  7691. height: math.unit(140, "feet")
  7692. },
  7693. {
  7694. name: "Supercharged",
  7695. height: math.unit(2500, "feet")
  7696. },
  7697. ]
  7698. ))
  7699. characterMakers.push(() => makeCharacter(
  7700. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7701. {
  7702. front: {
  7703. height: math.unit(6, "feet"),
  7704. weight: math.unit(350, "lbs"),
  7705. name: "Front",
  7706. image: {
  7707. source: "./media/characters/razinox/front.svg",
  7708. extra: 1686 / 1548,
  7709. bottom: 28.2 / 1868
  7710. }
  7711. },
  7712. back: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(350, "lbs"),
  7715. name: "Back",
  7716. image: {
  7717. source: "./media/characters/razinox/back.svg",
  7718. extra: 1660 / 1590,
  7719. bottom: 15 / 1665
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Normal",
  7726. height: math.unit(10 + 8 / 12, "foot")
  7727. },
  7728. {
  7729. name: "Minimacro",
  7730. height: math.unit(15, "foot")
  7731. },
  7732. {
  7733. name: "Macro",
  7734. height: math.unit(60, "foot"),
  7735. default: true
  7736. },
  7737. {
  7738. name: "Megamacro",
  7739. height: math.unit(5, "miles")
  7740. },
  7741. {
  7742. name: "Gigamacro",
  7743. height: math.unit(6000, "miles")
  7744. },
  7745. ]
  7746. ))
  7747. characterMakers.push(() => makeCharacter(
  7748. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7749. {
  7750. front: {
  7751. height: math.unit(6, "feet"),
  7752. weight: math.unit(150, "lbs"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/cobalt/front.svg"
  7756. }
  7757. }
  7758. },
  7759. [
  7760. {
  7761. name: "Normal",
  7762. height: math.unit(8 + 1 / 12, "foot")
  7763. },
  7764. {
  7765. name: "Macro",
  7766. height: math.unit(111, "foot"),
  7767. default: true
  7768. },
  7769. {
  7770. name: "Supracosmic",
  7771. height: math.unit(1e42, "feet")
  7772. },
  7773. ]
  7774. ))
  7775. characterMakers.push(() => makeCharacter(
  7776. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7777. {
  7778. front: {
  7779. height: math.unit(5, "inches"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/amanda/front.svg",
  7783. extra: 926/791,
  7784. bottom: 38/964
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(5, "inches"),
  7789. name: "Back",
  7790. image: {
  7791. source: "./media/characters/amanda/back.svg",
  7792. extra: 909/805,
  7793. bottom: 43/952
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Micro",
  7800. height: math.unit(5, "inches"),
  7801. default: true
  7802. },
  7803. ]
  7804. ))
  7805. characterMakers.push(() => makeCharacter(
  7806. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7807. {
  7808. front: {
  7809. height: math.unit(2.75, "meters"),
  7810. weight: math.unit(1200, "lb"),
  7811. name: "Front",
  7812. image: {
  7813. source: "./media/characters/teal/front.svg",
  7814. extra: 2463 / 2320,
  7815. bottom: 166 / 2629
  7816. }
  7817. },
  7818. back: {
  7819. height: math.unit(2.75, "meters"),
  7820. weight: math.unit(1200, "lb"),
  7821. name: "Back",
  7822. image: {
  7823. source: "./media/characters/teal/back.svg",
  7824. extra: 2580 / 2489,
  7825. bottom: 151 / 2731
  7826. }
  7827. },
  7828. sitting: {
  7829. height: math.unit(1.9, "meters"),
  7830. weight: math.unit(1200, "lb"),
  7831. name: "Sitting",
  7832. image: {
  7833. source: "./media/characters/teal/sitting.svg",
  7834. extra: 623 / 590,
  7835. bottom: 121 / 744
  7836. }
  7837. },
  7838. standing: {
  7839. height: math.unit(2.75, "meters"),
  7840. weight: math.unit(1200, "lb"),
  7841. name: "Standing",
  7842. image: {
  7843. source: "./media/characters/teal/standing.svg",
  7844. extra: 923 / 893,
  7845. bottom: 60 / 983
  7846. }
  7847. },
  7848. stretching: {
  7849. height: math.unit(3.65, "meters"),
  7850. weight: math.unit(1200, "lb"),
  7851. name: "Stretching",
  7852. image: {
  7853. source: "./media/characters/teal/stretching.svg",
  7854. extra: 1276 / 1244,
  7855. bottom: 0 / 1276
  7856. }
  7857. },
  7858. legged: {
  7859. height: math.unit(1.3, "meters"),
  7860. weight: math.unit(100, "lb"),
  7861. name: "Legged",
  7862. image: {
  7863. source: "./media/characters/teal/legged.svg",
  7864. extra: 462 / 437,
  7865. bottom: 24 / 486
  7866. }
  7867. },
  7868. naga: {
  7869. height: math.unit(5.4, "meters"),
  7870. weight: math.unit(4000, "lb"),
  7871. name: "Naga",
  7872. image: {
  7873. source: "./media/characters/teal/naga.svg",
  7874. extra: 1902 / 1858,
  7875. bottom: 0 / 1902
  7876. }
  7877. },
  7878. hand: {
  7879. height: math.unit(0.52, "meters"),
  7880. name: "Hand",
  7881. image: {
  7882. source: "./media/characters/teal/hand.svg"
  7883. }
  7884. },
  7885. maw: {
  7886. height: math.unit(0.43, "meters"),
  7887. name: "Maw",
  7888. image: {
  7889. source: "./media/characters/teal/maw.svg"
  7890. }
  7891. },
  7892. slit: {
  7893. height: math.unit(0.25, "meters"),
  7894. name: "Slit",
  7895. image: {
  7896. source: "./media/characters/teal/slit.svg"
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(2.75, "meters"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(300, "feet")
  7909. },
  7910. {
  7911. name: "Macro+",
  7912. height: math.unit(2000, "feet")
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7918. {
  7919. frontCat: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(180, "lbs"),
  7922. name: "Front (Cat)",
  7923. image: {
  7924. source: "./media/characters/ravin-amulet/front-cat.svg"
  7925. }
  7926. },
  7927. frontCatAlt: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(180, "lbs"),
  7930. name: "Front (Alt, Cat)",
  7931. image: {
  7932. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7933. }
  7934. },
  7935. frontWerewolf: {
  7936. height: math.unit(6 * 1.2, "feet"),
  7937. weight: math.unit(225, "lbs"),
  7938. name: "Front (Werewolf)",
  7939. image: {
  7940. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7941. }
  7942. },
  7943. backWerewolf: {
  7944. height: math.unit(6 * 1.2, "feet"),
  7945. weight: math.unit(225, "lbs"),
  7946. name: "Back (Werewolf)",
  7947. image: {
  7948. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Nano",
  7955. height: math.unit(1, "micrometer")
  7956. },
  7957. {
  7958. name: "Micro",
  7959. height: math.unit(1, "inch")
  7960. },
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(6, "feet"),
  7964. default: true
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(60, "feet")
  7969. }
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(165, "lbs"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/fluoresce/front.svg"
  7981. }
  7982. }
  7983. },
  7984. [
  7985. {
  7986. name: "Micro",
  7987. height: math.unit(6, "cm")
  7988. },
  7989. {
  7990. name: "Normal",
  7991. height: math.unit(5 + 7 / 12, "feet"),
  7992. default: true
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(56, "feet")
  7997. },
  7998. {
  7999. name: "Megamacro",
  8000. height: math.unit(1.9, "miles")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(9 + 6 / 12, "feet"),
  8009. weight: math.unit(523, "lbs"),
  8010. name: "Side",
  8011. image: {
  8012. source: "./media/characters/aurora/side.svg"
  8013. }
  8014. }
  8015. },
  8016. [
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(9 + 6 / 12, "feet")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(96, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro+",
  8028. height: math.unit(243, "feet")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(194, "cm"),
  8037. weight: math.unit(90, "kg"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/ranek/front.svg",
  8041. extra: 1862/1791,
  8042. bottom: 80/1942
  8043. }
  8044. },
  8045. back: {
  8046. height: math.unit(194, "cm"),
  8047. weight: math.unit(90, "kg"),
  8048. name: "Back",
  8049. image: {
  8050. source: "./media/characters/ranek/back.svg",
  8051. extra: 1853/1787,
  8052. bottom: 74/1927
  8053. }
  8054. },
  8055. feral: {
  8056. height: math.unit(30, "cm"),
  8057. weight: math.unit(1.6, "lbs"),
  8058. name: "Feral",
  8059. image: {
  8060. source: "./media/characters/ranek/feral.svg",
  8061. extra: 990/631,
  8062. bottom: 29/1019
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(194, "cm"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(100, "meters")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(5 + 6 / 12, "feet"),
  8083. weight: math.unit(153, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/andrew-cooper/front.svg"
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Nano",
  8093. height: math.unit(1, "mm")
  8094. },
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(2, "inches")
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(5 + 6 / 12, "feet"),
  8102. default: true
  8103. }
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(6, "feet"),
  8111. weight: math.unit(180, "lbs"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/akane-sato/front.svg",
  8115. extra: 1219 / 1140
  8116. }
  8117. },
  8118. back: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(180, "lbs"),
  8121. name: "Back",
  8122. image: {
  8123. source: "./media/characters/akane-sato/back.svg",
  8124. extra: 1219 / 1170
  8125. }
  8126. },
  8127. },
  8128. [
  8129. {
  8130. name: "Normal",
  8131. height: math.unit(2.5, "meters")
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(250, "meters"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Megamacro",
  8140. height: math.unit(25, "km")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(6, "feet"),
  8149. weight: math.unit(65, "kg"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/rook/front.svg",
  8153. extra: 960 / 950
  8154. }
  8155. }
  8156. },
  8157. [
  8158. {
  8159. name: "Normal",
  8160. height: math.unit(8.8, "feet")
  8161. },
  8162. {
  8163. name: "Macro",
  8164. height: math.unit(88, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Megamacro",
  8169. height: math.unit(8, "miles")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(12 + 2 / 12, "feet"),
  8178. weight: math.unit(808, "lbs"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/prodigy/front.svg"
  8182. }
  8183. }
  8184. },
  8185. [
  8186. {
  8187. name: "Normal",
  8188. height: math.unit(12 + 2 / 12, "feet"),
  8189. default: true
  8190. },
  8191. {
  8192. name: "Macro",
  8193. height: math.unit(143, "feet")
  8194. },
  8195. {
  8196. name: "Macro+",
  8197. height: math.unit(400, "feet")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(225, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/daniel/front.svg"
  8210. }
  8211. },
  8212. leaning: {
  8213. height: math.unit(6, "feet"),
  8214. weight: math.unit(225, "lbs"),
  8215. name: "Leaning",
  8216. image: {
  8217. source: "./media/characters/daniel/leaning.svg"
  8218. }
  8219. },
  8220. },
  8221. [
  8222. {
  8223. name: "Macro",
  8224. height: math.unit(1000, "feet"),
  8225. default: true
  8226. },
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(88, "lbs"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/chiros/front.svg",
  8238. extra: 306 / 226
  8239. }
  8240. },
  8241. side: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(88, "lbs"),
  8244. name: "Side",
  8245. image: {
  8246. source: "./media/characters/chiros/side.svg",
  8247. extra: 306 / 226
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(6, "cm"),
  8255. default: true
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8261. {
  8262. front: {
  8263. height: math.unit(6, "feet"),
  8264. weight: math.unit(100, "lbs"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/selka/front.svg",
  8268. extra: 947 / 887
  8269. }
  8270. }
  8271. },
  8272. [
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(5, "cm"),
  8276. default: true
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(8 + 3 / 12, "feet"),
  8285. weight: math.unit(424, "lbs"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/verin/front.svg",
  8289. extra: 1845 / 1550
  8290. }
  8291. },
  8292. frontArmored: {
  8293. height: math.unit(8 + 3 / 12, "feet"),
  8294. weight: math.unit(424, "lbs"),
  8295. name: "Front (Armored)",
  8296. image: {
  8297. source: "./media/characters/verin/front-armor.svg",
  8298. extra: 1845 / 1550,
  8299. bottom: 0.01
  8300. }
  8301. },
  8302. back: {
  8303. height: math.unit(8 + 3 / 12, "feet"),
  8304. weight: math.unit(424, "lbs"),
  8305. name: "Back",
  8306. image: {
  8307. source: "./media/characters/verin/back.svg",
  8308. bottom: 0.1,
  8309. extra: 1
  8310. }
  8311. },
  8312. foot: {
  8313. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8314. name: "Foot",
  8315. image: {
  8316. source: "./media/characters/verin/foot.svg"
  8317. }
  8318. },
  8319. },
  8320. [
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(8 + 3 / 12, "feet")
  8324. },
  8325. {
  8326. name: "Minimacro",
  8327. height: math.unit(21, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(626, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(2.718, "meters"),
  8341. weight: math.unit(150, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/sovrim-terraquian/front.svg",
  8345. extra: 1752/1689,
  8346. bottom: 36/1788
  8347. }
  8348. },
  8349. back: {
  8350. height: math.unit(2.718, "meters"),
  8351. weight: math.unit(150, "lbs"),
  8352. name: "Back",
  8353. image: {
  8354. source: "./media/characters/sovrim-terraquian/back.svg",
  8355. extra: 1698/1657,
  8356. bottom: 58/1756
  8357. }
  8358. },
  8359. tongue: {
  8360. height: math.unit(2.865, "feet"),
  8361. name: "Tongue",
  8362. image: {
  8363. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8364. }
  8365. },
  8366. hand: {
  8367. height: math.unit(1.61, "feet"),
  8368. name: "Hand",
  8369. image: {
  8370. source: "./media/characters/sovrim-terraquian/hand.svg"
  8371. }
  8372. },
  8373. foot: {
  8374. height: math.unit(1.05, "feet"),
  8375. name: "Foot",
  8376. image: {
  8377. source: "./media/characters/sovrim-terraquian/foot.svg"
  8378. }
  8379. },
  8380. footAlt: {
  8381. height: math.unit(0.88, "feet"),
  8382. name: "Foot (Alt)",
  8383. image: {
  8384. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Micro",
  8391. height: math.unit(2, "inches")
  8392. },
  8393. {
  8394. name: "Small",
  8395. height: math.unit(1, "meter")
  8396. },
  8397. {
  8398. name: "Normal",
  8399. height: math.unit(Math.E, "meters"),
  8400. default: true
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(20, "meters")
  8405. },
  8406. {
  8407. name: "Macro+",
  8408. height: math.unit(400, "meters")
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(7, "feet"),
  8417. weight: math.unit(489, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/reece-silvermane/front.svg",
  8421. bottom: 0.02,
  8422. extra: 1
  8423. }
  8424. },
  8425. },
  8426. [
  8427. {
  8428. name: "Macro",
  8429. height: math.unit(1.5, "miles"),
  8430. default: true
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(6, "feet"),
  8439. weight: math.unit(78, "kg"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/kane/front.svg",
  8443. extra: 978 / 899
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(2.1, "m"),
  8451. },
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(1, "km"),
  8455. default: true
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(200, "kg"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/tegon/front.svg",
  8468. bottom: 0.01,
  8469. extra: 1
  8470. }
  8471. },
  8472. },
  8473. [
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(1, "inch")
  8477. },
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(6 + 3 / 12, "feet"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(300, "feet")
  8486. },
  8487. {
  8488. name: "Megamacro",
  8489. height: math.unit(69, "miles")
  8490. },
  8491. ]
  8492. ))
  8493. characterMakers.push(() => makeCharacter(
  8494. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8495. {
  8496. side: {
  8497. height: math.unit(6, "feet"),
  8498. weight: math.unit(2304, "lbs"),
  8499. name: "Side",
  8500. image: {
  8501. source: "./media/characters/arcturax/side.svg",
  8502. extra: 790 / 376,
  8503. bottom: 0.01
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Micro",
  8510. height: math.unit(2, "inch")
  8511. },
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(6, "feet")
  8515. },
  8516. {
  8517. name: "Macro",
  8518. height: math.unit(39, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Megamacro",
  8523. height: math.unit(7, "miles")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(6, "feet"),
  8532. weight: math.unit(50, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/sentri/front.svg",
  8536. extra: 1750 / 1570,
  8537. bottom: 0.025
  8538. }
  8539. },
  8540. frontAlt: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(50, "lbs"),
  8543. name: "Front (Alt)",
  8544. image: {
  8545. source: "./media/characters/sentri/front-alt.svg",
  8546. extra: 1750 / 1570,
  8547. bottom: 0.025
  8548. }
  8549. },
  8550. },
  8551. [
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(15, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(2500, "feet")
  8560. }
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8565. {
  8566. front: {
  8567. height: math.unit(5 + 8 / 12, "feet"),
  8568. weight: math.unit(130, "lbs"),
  8569. name: "Front",
  8570. image: {
  8571. source: "./media/characters/corvin/front.svg",
  8572. extra: 1803 / 1629
  8573. }
  8574. },
  8575. frontShirt: {
  8576. height: math.unit(5 + 8 / 12, "feet"),
  8577. weight: math.unit(130, "lbs"),
  8578. name: "Front (Shirt)",
  8579. image: {
  8580. source: "./media/characters/corvin/front-shirt.svg",
  8581. extra: 1803 / 1629
  8582. }
  8583. },
  8584. frontPoncho: {
  8585. height: math.unit(5 + 8 / 12, "feet"),
  8586. weight: math.unit(130, "lbs"),
  8587. name: "Front (Poncho)",
  8588. image: {
  8589. source: "./media/characters/corvin/front-poncho.svg",
  8590. extra: 1803 / 1629
  8591. }
  8592. },
  8593. side: {
  8594. height: math.unit(5 + 8 / 12, "feet"),
  8595. weight: math.unit(130, "lbs"),
  8596. name: "Side",
  8597. image: {
  8598. source: "./media/characters/corvin/side.svg",
  8599. extra: 1012 / 945
  8600. }
  8601. },
  8602. back: {
  8603. height: math.unit(5 + 8 / 12, "feet"),
  8604. weight: math.unit(130, "lbs"),
  8605. name: "Back",
  8606. image: {
  8607. source: "./media/characters/corvin/back.svg",
  8608. extra: 1803 / 1629
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Micro",
  8615. height: math.unit(3, "inches")
  8616. },
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(5 + 8 / 12, "feet")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(300, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(500, "miles")
  8629. }
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8634. {
  8635. front: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(135, "lbs"),
  8638. name: "Front",
  8639. image: {
  8640. source: "./media/characters/q/front.svg",
  8641. extra: 854 / 752,
  8642. bottom: 0.005
  8643. }
  8644. },
  8645. back: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(130, "lbs"),
  8648. name: "Back",
  8649. image: {
  8650. source: "./media/characters/q/back.svg",
  8651. extra: 854 / 752
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(90, "feet"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Extra Macro",
  8663. height: math.unit(300, "feet"),
  8664. },
  8665. {
  8666. name: "BIG WALF",
  8667. height: math.unit(750, "feet"),
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(150, "lbs"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/carley/front.svg",
  8680. extra: 3927 / 3540,
  8681. bottom: 29.2 / 735
  8682. }
  8683. }
  8684. },
  8685. [
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(6 + 3 / 12, "feet")
  8689. },
  8690. {
  8691. name: "Macro",
  8692. height: math.unit(185, "feet"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Megamacro",
  8697. height: math.unit(8, "miles"),
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(3, "feet"),
  8706. weight: math.unit(28, "lbs"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/citrine/front.svg"
  8710. }
  8711. }
  8712. },
  8713. [
  8714. {
  8715. name: "Normal",
  8716. height: math.unit(3, "feet"),
  8717. default: true
  8718. }
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8723. {
  8724. front: {
  8725. height: math.unit(14, "feet"),
  8726. weight: math.unit(1450, "kg"),
  8727. preyCapacity: math.unit(15, "people"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/aura-starwind/front.svg",
  8731. extra: 1440/1327,
  8732. bottom: 11/1451
  8733. }
  8734. },
  8735. side: {
  8736. height: math.unit(14, "feet"),
  8737. weight: math.unit(1450, "kg"),
  8738. preyCapacity: math.unit(15, "people"),
  8739. name: "Side",
  8740. image: {
  8741. source: "./media/characters/aura-starwind/side.svg",
  8742. extra: 1654 / 1497
  8743. }
  8744. },
  8745. taur: {
  8746. height: math.unit(18, "feet"),
  8747. weight: math.unit(5500, "kg"),
  8748. preyCapacity: math.unit(50, "people"),
  8749. name: "Taur",
  8750. image: {
  8751. source: "./media/characters/aura-starwind/taur.svg",
  8752. extra: 1760 / 1650
  8753. }
  8754. },
  8755. feral: {
  8756. height: math.unit(46, "feet"),
  8757. weight: math.unit(25000, "kg"),
  8758. preyCapacity: math.unit(120, "people"),
  8759. name: "Feral",
  8760. image: {
  8761. source: "./media/characters/aura-starwind/feral.svg"
  8762. }
  8763. },
  8764. },
  8765. [
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(14, "feet"),
  8769. default: true
  8770. },
  8771. {
  8772. name: "Macro",
  8773. height: math.unit(50, "meters")
  8774. },
  8775. {
  8776. name: "Megamacro",
  8777. height: math.unit(5000, "meters")
  8778. },
  8779. {
  8780. name: "Gigamacro",
  8781. height: math.unit(100000, "kilometers")
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(2 + 7 / 12, "feet"),
  8790. weight: math.unit(32, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/rivet/front.svg",
  8794. extra: 1716 / 1658,
  8795. bottom: 0.03
  8796. }
  8797. },
  8798. foot: {
  8799. height: math.unit(0.551, "feet"),
  8800. name: "Rivet's Foot",
  8801. image: {
  8802. source: "./media/characters/rivet/foot.svg"
  8803. },
  8804. rename: true
  8805. }
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(1.5, "inches"),
  8811. },
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(2 + 7 / 12, "feet"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Macro",
  8819. height: math.unit(85, "feet")
  8820. },
  8821. {
  8822. name: "Megamacro",
  8823. height: math.unit(2.2, "km")
  8824. }
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(5 + 9 / 12, "feet"),
  8832. weight: math.unit(150, "lbs"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/coffee/front.svg",
  8836. extra: 3666 / 3032,
  8837. bottom: 0.04
  8838. }
  8839. },
  8840. foot: {
  8841. height: math.unit(1.29, "feet"),
  8842. name: "Foot",
  8843. image: {
  8844. source: "./media/characters/coffee/foot.svg"
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(2, "inches"),
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(800, "feet")
  8861. },
  8862. {
  8863. name: "Megamacro",
  8864. height: math.unit(25, "miles")
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(200, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/chari-gal/front.svg",
  8877. extra: 1568 / 1385,
  8878. bottom: 0.047
  8879. }
  8880. },
  8881. gigantamax: {
  8882. height: math.unit(6 * 16, "feet"),
  8883. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8884. name: "Gigantamax",
  8885. image: {
  8886. source: "./media/characters/chari-gal/gigantamax.svg",
  8887. extra: 1124 / 888,
  8888. bottom: 0.03
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(5 + 7 / 12, "feet")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(200, "feet"),
  8900. default: true
  8901. }
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(150, "lbs"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/nova/front.svg",
  8913. extra: 5000 / 4722,
  8914. bottom: 0.02
  8915. }
  8916. }
  8917. },
  8918. [
  8919. {
  8920. name: "Micro-",
  8921. height: math.unit(0.8, "inches")
  8922. },
  8923. {
  8924. name: "Micro",
  8925. height: math.unit(2, "inches"),
  8926. default: true
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(3 + 1 / 12, "feet"),
  8935. weight: math.unit(21.7, "lbs"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/argent/front.svg",
  8939. extra: 1471 / 1331,
  8940. bottom: 100.8 / 1575.5
  8941. }
  8942. }
  8943. },
  8944. [
  8945. {
  8946. name: "Micro",
  8947. height: math.unit(2, "inches")
  8948. },
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(3 + 1 / 12, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Macro",
  8956. height: math.unit(120, "feet")
  8957. },
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8962. {
  8963. lamp: {
  8964. height: math.unit(7 * 1559 / 989, "feet"),
  8965. name: "Magic Lamp",
  8966. image: {
  8967. source: "./media/characters/mira-al-cul/lamp.svg",
  8968. extra: 1617 / 1559
  8969. }
  8970. },
  8971. front: {
  8972. height: math.unit(7, "feet"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/mira-al-cul/front.svg",
  8976. extra: 1044 / 990
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Heavily Restricted",
  8983. height: math.unit(7 * 1559 / 989, "feet")
  8984. },
  8985. {
  8986. name: "Freshly Freed",
  8987. height: math.unit(50 * 1559 / 989, "feet")
  8988. },
  8989. {
  8990. name: "World Encompassing",
  8991. height: math.unit(10000 * 1559 / 989, "miles")
  8992. },
  8993. {
  8994. name: "Galactic",
  8995. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8996. },
  8997. {
  8998. name: "Palmed Universe",
  8999. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Multiversal Matriarch",
  9004. height: math.unit(8.87e10, "yottameters")
  9005. },
  9006. {
  9007. name: "Void Mother",
  9008. height: math.unit(3.14e110, "yottaparsecs")
  9009. },
  9010. {
  9011. name: "Toying with Transcendence",
  9012. height: math.unit(1e307, "meters")
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9018. {
  9019. front: {
  9020. height: math.unit(17 + 1 / 12, "feet"),
  9021. weight: math.unit(476.2 * 5, "lbs"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/kuro-shi-uchū/front.svg",
  9025. extra: 2329 / 1835,
  9026. bottom: 0.02
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Micro",
  9033. height: math.unit(2, "inches")
  9034. },
  9035. {
  9036. name: "Normal",
  9037. height: math.unit(12, "meters")
  9038. },
  9039. {
  9040. name: "Planetary",
  9041. height: math.unit(0.00929, "AU"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Universal",
  9046. height: math.unit(20, "gigaparsecs")
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(5 + 2 / 12, "feet"),
  9055. weight: math.unit(120, "lbs"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/katherine/front.svg",
  9059. extra: 2075 / 1969
  9060. }
  9061. },
  9062. dress: {
  9063. height: math.unit(5 + 2 / 12, "feet"),
  9064. weight: math.unit(120, "lbs"),
  9065. name: "Dress",
  9066. image: {
  9067. source: "./media/characters/katherine/dress.svg",
  9068. extra: 2258 / 2064
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Micro",
  9075. height: math.unit(1, "inches"),
  9076. default: true
  9077. },
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(5 + 2 / 12, "feet")
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(100, "meters")
  9085. },
  9086. {
  9087. name: "Megamacro",
  9088. height: math.unit(80, "miles")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(7 + 8 / 12, "feet"),
  9097. weight: math.unit(250, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/yevis/front.svg",
  9101. extra: 1938 / 1755
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Mortal",
  9108. height: math.unit(7 + 8 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Battle",
  9112. height: math.unit(25 + 11 / 12, "feet")
  9113. },
  9114. {
  9115. name: "Wrath",
  9116. height: math.unit(1654 + 11 / 12, "feet")
  9117. },
  9118. {
  9119. name: "Planet Destroyer",
  9120. height: math.unit(12000, "miles")
  9121. },
  9122. {
  9123. name: "Galaxy Conqueror",
  9124. height: math.unit(1.45, "zettameters"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Universal War",
  9129. height: math.unit(184, "gigaparsecs")
  9130. },
  9131. {
  9132. name: "Eternity War",
  9133. height: math.unit(1.98e55, "yottaparsecs")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(5 + 8 / 12, "feet"),
  9142. weight: math.unit(63, "kg"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/xavier/front.svg",
  9146. extra: 944 / 883
  9147. }
  9148. },
  9149. frontStretch: {
  9150. height: math.unit(5 + 8 / 12, "feet"),
  9151. weight: math.unit(63, "kg"),
  9152. name: "Stretching",
  9153. image: {
  9154. source: "./media/characters/xavier/front-stretch.svg",
  9155. extra: 962 / 820
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(5 + 8 / 12, "feet")
  9163. },
  9164. {
  9165. name: "Macro",
  9166. height: math.unit(100, "meters"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "McLargeHuge",
  9171. height: math.unit(10, "miles")
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(5 + 5 / 12, "feet"),
  9180. weight: math.unit(150, "lb"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/joshii/front.svg",
  9184. extra: 765 / 653,
  9185. bottom: 51 / 816
  9186. }
  9187. },
  9188. foot: {
  9189. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9190. name: "Foot",
  9191. image: {
  9192. source: "./media/characters/joshii/foot.svg"
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Micro",
  9199. height: math.unit(2, "inches"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(5 + 5 / 12, "feet")
  9205. },
  9206. {
  9207. name: "Macro",
  9208. height: math.unit(785, "feet")
  9209. },
  9210. {
  9211. name: "Megamacro",
  9212. height: math.unit(24.5, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(150, "lb"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/goddess-elizabeth/front.svg",
  9225. extra: 1800 / 1525,
  9226. bottom: 0.005
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/goddess-elizabeth/foot.svg"
  9234. }
  9235. },
  9236. mouth: {
  9237. height: math.unit(6, "feet"),
  9238. name: "Mouth",
  9239. image: {
  9240. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Micro",
  9247. height: math.unit(12, "feet")
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(80, "miles"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(15000, "parsecs")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(5 + 9 / 12, "feet"),
  9265. weight: math.unit(144, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/kara/front.svg"
  9269. }
  9270. },
  9271. feet: {
  9272. height: math.unit(6 / 6.765, "feet"),
  9273. name: "Kara's Feet",
  9274. rename: true,
  9275. image: {
  9276. source: "./media/characters/kara/feet.svg"
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(5 + 9 / 12, "feet")
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(174, "feet"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(18, "feet"),
  9297. weight: math.unit(4050, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/tyrone/front.svg",
  9301. extra: 2405 / 2270,
  9302. bottom: 182 / 2587
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(18, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(300, "feet")
  9315. },
  9316. {
  9317. name: "Megamacro",
  9318. height: math.unit(15, "km")
  9319. },
  9320. {
  9321. name: "Gigamacro",
  9322. height: math.unit(500, "km")
  9323. },
  9324. {
  9325. name: "Teramacro",
  9326. height: math.unit(0.5, "gigameters")
  9327. },
  9328. {
  9329. name: "Omnimacro",
  9330. height: math.unit(1e252, "yottauniverse")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(7 + 8 / 12, "feet"),
  9339. weight: math.unit(120, "lb"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/danny/front.svg",
  9343. extra: 1490 / 1350
  9344. }
  9345. },
  9346. back: {
  9347. height: math.unit(7 + 8 / 12, "feet"),
  9348. weight: math.unit(120, "lb"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/danny/back.svg",
  9352. extra: 1490 / 1350
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Normal",
  9359. height: math.unit(7 + 8 / 12, "feet"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(3.5, "inches"),
  9369. weight: math.unit(19, "grams"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/mallow/front.svg",
  9373. extra: 471 / 431
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(3.5, "inches"),
  9378. weight: math.unit(19, "grams"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/mallow/back.svg",
  9382. extra: 471 / 431
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(3.5, "inches"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(9, "feet"),
  9399. weight: math.unit(230, "kg"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/starry-aqua/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(9, "feet"),
  9407. weight: math.unit(230, "kg"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/starry-aqua/back.svg"
  9411. }
  9412. },
  9413. hand: {
  9414. height: math.unit(9 * 0.1168, "feet"),
  9415. name: "Hand",
  9416. image: {
  9417. source: "./media/characters/starry-aqua/hand.svg"
  9418. }
  9419. },
  9420. foot: {
  9421. height: math.unit(9 * 0.18, "feet"),
  9422. name: "Foot",
  9423. image: {
  9424. source: "./media/characters/starry-aqua/foot.svg"
  9425. }
  9426. }
  9427. },
  9428. [
  9429. {
  9430. name: "Micro",
  9431. height: math.unit(3, "inches")
  9432. },
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(9, "feet")
  9436. },
  9437. {
  9438. name: "Macro",
  9439. height: math.unit(300, "feet"),
  9440. default: true
  9441. },
  9442. {
  9443. name: "Megamacro",
  9444. height: math.unit(3200, "feet")
  9445. }
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(15, "feet"),
  9453. weight: math.unit(5026, "lb"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/luka-towers/front.svg",
  9457. extra: 1269/1133,
  9458. bottom: 51/1320
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(15, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Minimacro",
  9470. height: math.unit(25, "feet")
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(320, "feet")
  9475. },
  9476. {
  9477. name: "Megamacro",
  9478. height: math.unit(35000, "feet")
  9479. },
  9480. {
  9481. name: "Gigamacro",
  9482. height: math.unit(4000, "miles")
  9483. },
  9484. {
  9485. name: "Teramacro",
  9486. height: math.unit(15000, "miles")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/natalie-nightring/front.svg",
  9499. extra: 1,
  9500. bottom: 0.06
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Uh Oh",
  9507. height: math.unit(0.1, "mm")
  9508. },
  9509. {
  9510. name: "Small",
  9511. height: math.unit(3, "inches")
  9512. },
  9513. {
  9514. name: "Human Scale",
  9515. height: math.unit(6, "feet")
  9516. },
  9517. {
  9518. name: "Librarian",
  9519. height: math.unit(50, "feet"),
  9520. default: true
  9521. },
  9522. {
  9523. name: "Immense",
  9524. height: math.unit(200, "miles")
  9525. },
  9526. ]
  9527. ))
  9528. characterMakers.push(() => makeCharacter(
  9529. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9530. {
  9531. front: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(180, "lbs"),
  9534. name: "Front",
  9535. image: {
  9536. source: "./media/characters/danni-rosie/front.svg",
  9537. extra: 1260 / 1128,
  9538. bottom: 0.022
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(2, "inches"),
  9546. default: true
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(5 + 9 / 12, "feet"),
  9555. weight: math.unit(220, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/samantha-kruse/front.svg",
  9559. extra: (985 / 935),
  9560. bottom: 0.03
  9561. }
  9562. },
  9563. frontUndressed: {
  9564. height: math.unit(5 + 9 / 12, "feet"),
  9565. weight: math.unit(220, "lb"),
  9566. name: "Front (Undressed)",
  9567. image: {
  9568. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9569. extra: (973 / 923),
  9570. bottom: 0.025
  9571. }
  9572. },
  9573. fat: {
  9574. height: math.unit(5 + 9 / 12, "feet"),
  9575. weight: math.unit(900, "lb"),
  9576. name: "Front (Fat)",
  9577. image: {
  9578. source: "./media/characters/samantha-kruse/fat.svg",
  9579. extra: 2688 / 2561
  9580. }
  9581. },
  9582. },
  9583. [
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(5 + 9 / 12, "feet"),
  9587. default: true
  9588. }
  9589. ]
  9590. ))
  9591. characterMakers.push(() => makeCharacter(
  9592. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9593. {
  9594. back: {
  9595. height: math.unit(5 + 4 / 12, "feet"),
  9596. weight: math.unit(4963, "lb"),
  9597. name: "Back",
  9598. image: {
  9599. source: "./media/characters/amelia-rosie/back.svg",
  9600. extra: 1113 / 963,
  9601. bottom: 0.01
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Level 0",
  9608. height: math.unit(5 + 4 / 12, "feet")
  9609. },
  9610. {
  9611. name: "Level 1",
  9612. height: math.unit(164597, "feet"),
  9613. default: true
  9614. },
  9615. {
  9616. name: "Level 2",
  9617. height: math.unit(956243, "miles")
  9618. },
  9619. {
  9620. name: "Level 3",
  9621. height: math.unit(29421709423, "miles")
  9622. },
  9623. {
  9624. name: "Level 4",
  9625. height: math.unit(154, "lightyears")
  9626. },
  9627. {
  9628. name: "Level 5",
  9629. height: math.unit(4738272, "lightyears")
  9630. },
  9631. {
  9632. name: "Level 6",
  9633. height: math.unit(145787152896, "lightyears")
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(5 + 11 / 12, "feet"),
  9642. weight: math.unit(65, "kg"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/rook-kitara/front.svg",
  9646. extra: 1347 / 1274,
  9647. bottom: 0.005
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Totally Unfair",
  9654. height: math.unit(1.8, "mm")
  9655. },
  9656. {
  9657. name: "Lap Rookie",
  9658. height: math.unit(1.4, "feet")
  9659. },
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(5 + 11 / 12, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "How Did This Happen",
  9667. height: math.unit(80, "miles")
  9668. }
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(7, "feet"),
  9676. weight: math.unit(300, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/pisces/front.svg",
  9680. extra: 2255 / 2115,
  9681. bottom: 0.03
  9682. }
  9683. },
  9684. back: {
  9685. height: math.unit(7, "feet"),
  9686. weight: math.unit(300, "lb"),
  9687. name: "Back",
  9688. image: {
  9689. source: "./media/characters/pisces/back.svg",
  9690. extra: 2146 / 2055,
  9691. bottom: 0.04
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(7, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Swimming Pool",
  9703. height: math.unit(12.2, "meters")
  9704. },
  9705. {
  9706. name: "Olympic Swimming Pool",
  9707. height: math.unit(56.3, "meters")
  9708. },
  9709. {
  9710. name: "Lake Superior",
  9711. height: math.unit(93900, "meters")
  9712. },
  9713. {
  9714. name: "Mediterranean Sea",
  9715. height: math.unit(644457, "meters")
  9716. },
  9717. {
  9718. name: "World's Oceans",
  9719. height: math.unit(4567491, "meters")
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(2.3, "meters"),
  9728. weight: math.unit(120, "kg"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/zelas/front.svg"
  9732. }
  9733. },
  9734. side: {
  9735. height: math.unit(2.3, "meters"),
  9736. weight: math.unit(120, "kg"),
  9737. name: "Side",
  9738. image: {
  9739. source: "./media/characters/zelas/side.svg"
  9740. }
  9741. },
  9742. back: {
  9743. height: math.unit(2.3, "meters"),
  9744. weight: math.unit(120, "kg"),
  9745. name: "Back",
  9746. image: {
  9747. source: "./media/characters/zelas/back.svg"
  9748. }
  9749. },
  9750. foot: {
  9751. height: math.unit(1.116, "feet"),
  9752. name: "Foot",
  9753. image: {
  9754. source: "./media/characters/zelas/foot.svg"
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(2.3, "meters")
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(30, "meters"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(1, "inch"),
  9775. weight: math.unit(0.21, "grams"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/talbot/front.svg",
  9779. extra: 594 / 544
  9780. }
  9781. },
  9782. },
  9783. [
  9784. {
  9785. name: "Micro",
  9786. height: math.unit(1, "inch"),
  9787. default: true
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9793. {
  9794. front: {
  9795. height: math.unit(3 + 3 / 12, "feet"),
  9796. weight: math.unit(51.8, "lb"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/fliss/front.svg",
  9800. extra: 840 / 640
  9801. }
  9802. },
  9803. },
  9804. [
  9805. {
  9806. name: "Teeny Tiny",
  9807. height: math.unit(1, "mm")
  9808. },
  9809. {
  9810. name: "Small",
  9811. height: math.unit(1, "inch"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Standard Sylveon",
  9816. height: math.unit(3 + 3 / 12, "feet")
  9817. },
  9818. {
  9819. name: "Large Nuisance",
  9820. height: math.unit(33, "feet")
  9821. },
  9822. {
  9823. name: "City Filler",
  9824. height: math.unit(3000, "feet")
  9825. },
  9826. {
  9827. name: "New Horizon",
  9828. height: math.unit(6000, "miles")
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(5, "cm"),
  9837. weight: math.unit(1.94, "g"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/fleta/front.svg",
  9841. extra: 835 / 803
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(5, "cm"),
  9846. weight: math.unit(1.94, "g"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/fleta/back.svg",
  9850. extra: 835 / 803
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Micro",
  9857. height: math.unit(5, "cm"),
  9858. default: true
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(225, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/dominic/front.svg",
  9871. extra: 1770 / 1620,
  9872. bottom: 0.025
  9873. }
  9874. },
  9875. back: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(225, "lb"),
  9878. name: "Back",
  9879. image: {
  9880. source: "./media/characters/dominic/back.svg",
  9881. extra: 1745 / 1620,
  9882. bottom: 0.065
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Nano",
  9889. height: math.unit(0.1, "mm")
  9890. },
  9891. {
  9892. name: "Micro-",
  9893. height: math.unit(1, "mm")
  9894. },
  9895. {
  9896. name: "Micro",
  9897. height: math.unit(4, "inches")
  9898. },
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(6 + 4 / 12, "feet"),
  9902. default: true
  9903. },
  9904. {
  9905. name: "Macro",
  9906. height: math.unit(115, "feet")
  9907. },
  9908. {
  9909. name: "Macro+",
  9910. height: math.unit(955, "feet")
  9911. },
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(8990, "feet")
  9915. },
  9916. {
  9917. name: "Gigmacro",
  9918. height: math.unit(9310, "miles")
  9919. },
  9920. {
  9921. name: "Teramacro",
  9922. height: math.unit(1567005010, "miles")
  9923. },
  9924. {
  9925. name: "Examacro",
  9926. height: math.unit(1425, "parsecs")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(400, "feet"),
  9935. weight: math.unit(44444444, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/major-colonel/front.svg"
  9939. }
  9940. },
  9941. back: {
  9942. height: math.unit(400, "feet"),
  9943. weight: math.unit(44444444, "lb"),
  9944. name: "Back",
  9945. image: {
  9946. source: "./media/characters/major-colonel/back.svg"
  9947. }
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(400, "feet"),
  9954. default: true
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9960. {
  9961. catFront: {
  9962. height: math.unit(6, "feet"),
  9963. weight: math.unit(120, "lb"),
  9964. name: "Front (Cat Side)",
  9965. image: {
  9966. source: "./media/characters/axel-lycan/cat-front.svg",
  9967. extra: 430 / 402,
  9968. bottom: 43 / 472.35
  9969. }
  9970. },
  9971. catBack: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(120, "lb"),
  9974. name: "Back (Cat Side)",
  9975. image: {
  9976. source: "./media/characters/axel-lycan/cat-back.svg",
  9977. extra: 447 / 419,
  9978. bottom: 23.3 / 469
  9979. }
  9980. },
  9981. wolfFront: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(120, "lb"),
  9984. name: "Front (Wolf Side)",
  9985. image: {
  9986. source: "./media/characters/axel-lycan/wolf-front.svg",
  9987. extra: 485 / 456,
  9988. bottom: 19 / 504
  9989. }
  9990. },
  9991. wolfBack: {
  9992. height: math.unit(6, "feet"),
  9993. weight: math.unit(120, "lb"),
  9994. name: "Back (Wolf Side)",
  9995. image: {
  9996. source: "./media/characters/axel-lycan/wolf-back.svg",
  9997. extra: 475 / 438,
  9998. bottom: 39.2 / 514
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Macro",
  10005. height: math.unit(1, "km"),
  10006. default: true
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10012. {
  10013. front: {
  10014. height: math.unit(5 + 9 / 12, "feet"),
  10015. weight: math.unit(175, "lb"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/vanrel-hyena/front.svg",
  10019. extra: 1086 / 1010,
  10020. bottom: 0.04
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(5 + 9 / 12, "feet"),
  10028. default: true
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10034. {
  10035. front: {
  10036. height: math.unit(6, "feet"),
  10037. weight: math.unit(103, "lb"),
  10038. name: "Front",
  10039. image: {
  10040. source: "./media/characters/abbott-absol/front.svg",
  10041. extra: 2010 / 1842
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Megamicro",
  10048. height: math.unit(0.1, "mm")
  10049. },
  10050. {
  10051. name: "Micro",
  10052. height: math.unit(1, "inch")
  10053. },
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(6, "feet"),
  10057. default: true
  10058. },
  10059. ]
  10060. ))
  10061. characterMakers.push(() => makeCharacter(
  10062. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10063. {
  10064. front: {
  10065. height: math.unit(6, "feet"),
  10066. weight: math.unit(264, "lb"),
  10067. name: "Front",
  10068. image: {
  10069. source: "./media/characters/hector/front.svg",
  10070. extra: 2280 / 2130,
  10071. bottom: 0.07
  10072. }
  10073. },
  10074. },
  10075. [
  10076. {
  10077. name: "Normal",
  10078. height: math.unit(12.25, "foot"),
  10079. default: true
  10080. },
  10081. {
  10082. name: "Macro",
  10083. height: math.unit(160, "feet")
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/sal/front.svg",
  10096. extra: 1846 / 1699,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(10, "miles"),
  10105. default: true
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10111. {
  10112. front: {
  10113. height: math.unit(3, "meters"),
  10114. weight: math.unit(450, "kg"),
  10115. name: "front",
  10116. image: {
  10117. source: "./media/characters/ranger/front.svg",
  10118. extra: 2401 / 2243,
  10119. bottom: 0.05
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Normal",
  10126. height: math.unit(3, "meters"),
  10127. default: true
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10133. {
  10134. front: {
  10135. height: math.unit(14, "feet"),
  10136. weight: math.unit(800, "kg"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/theresa/front.svg",
  10140. extra: 3575 / 3346,
  10141. bottom: 0.03
  10142. }
  10143. },
  10144. },
  10145. [
  10146. {
  10147. name: "Normal",
  10148. height: math.unit(14, "feet"),
  10149. default: true
  10150. },
  10151. ]
  10152. ))
  10153. characterMakers.push(() => makeCharacter(
  10154. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10155. {
  10156. front: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(3, "kg"),
  10159. name: "Front",
  10160. image: {
  10161. source: "./media/characters/ine/front.svg",
  10162. extra: 678 / 539,
  10163. bottom: 0.023
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(2.265, "feet"),
  10171. default: true
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5, "feet"),
  10180. weight: math.unit(30, "kg"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/vial/front.svg",
  10184. extra: 1365 / 1277,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5, "feet"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10199. {
  10200. side: {
  10201. height: math.unit(3.4, "meters"),
  10202. weight: math.unit(1000, "lb"),
  10203. name: "Side",
  10204. image: {
  10205. source: "./media/characters/rovoska/side.svg",
  10206. extra: 4403 / 1515
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(3.4, "meters"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(8, "feet"),
  10223. weight: math.unit(315, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/gunner-rotthbauer/front.svg"
  10227. }
  10228. },
  10229. back: {
  10230. height: math.unit(8, "feet"),
  10231. weight: math.unit(315, "lb"),
  10232. name: "Back",
  10233. image: {
  10234. source: "./media/characters/gunner-rotthbauer/back.svg"
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Micro",
  10241. height: math.unit(3.5, "inches")
  10242. },
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(8, "feet"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(250, "feet")
  10251. },
  10252. {
  10253. name: "Megamacro",
  10254. height: math.unit(1, "AU")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(5 + 5 / 12, "feet"),
  10263. weight: math.unit(140, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/allatia/front.svg",
  10267. extra: 1227 / 1180,
  10268. bottom: 0.027
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Normal",
  10275. height: math.unit(5 + 5 / 12, "feet")
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(250, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(8, "miles")
  10285. }
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(120, "lb"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/tene/front.svg",
  10297. extra: 814/750,
  10298. bottom: 36/850
  10299. }
  10300. },
  10301. stomping: {
  10302. height: math.unit(2.025, "meters"),
  10303. weight: math.unit(120, "lb"),
  10304. name: "Stomping",
  10305. image: {
  10306. source: "./media/characters/tene/stomping.svg",
  10307. extra: 885/821,
  10308. bottom: 15/900
  10309. }
  10310. },
  10311. sitting: {
  10312. height: math.unit(1, "meter"),
  10313. weight: math.unit(120, "lb"),
  10314. name: "Sitting",
  10315. image: {
  10316. source: "./media/characters/tene/sitting.svg",
  10317. extra: 396/366,
  10318. bottom: 79/475
  10319. }
  10320. },
  10321. smiling: {
  10322. height: math.unit(1.2, "feet"),
  10323. name: "Smiling",
  10324. image: {
  10325. source: "./media/characters/tene/smiling.svg",
  10326. extra: 1364/1071,
  10327. bottom: 0/1364
  10328. }
  10329. },
  10330. smug: {
  10331. height: math.unit(1.3, "feet"),
  10332. name: "Smug",
  10333. image: {
  10334. source: "./media/characters/tene/smug.svg",
  10335. extra: 1323/1082,
  10336. bottom: 0/1323
  10337. }
  10338. },
  10339. feral: {
  10340. height: math.unit(3.9, "feet"),
  10341. weight: math.unit(250, "lb"),
  10342. name: "Feral",
  10343. image: {
  10344. source: "./media/characters/tene/feral.svg",
  10345. extra: 717 / 458,
  10346. bottom: 0.179
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(6, "feet")
  10354. },
  10355. {
  10356. name: "Macro",
  10357. height: math.unit(300, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(5, "miles")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10368. {
  10369. side: {
  10370. height: math.unit(6, "feet"),
  10371. name: "Side",
  10372. image: {
  10373. source: "./media/characters/evander/side.svg",
  10374. extra: 877 / 477
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Normal",
  10381. height: math.unit(0.83, "meters"),
  10382. default: true
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(12, "feet"),
  10391. weight: math.unit(1000, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10395. extra: 1762 / 1611
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(12, "feet"),
  10400. weight: math.unit(1000, "lb"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10404. extra: 1762 / 1611
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(12, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Kaiju",
  10416. height: math.unit(150, "feet")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/zero-alurus/front.svg"
  10429. }
  10430. },
  10431. back: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Back",
  10435. image: {
  10436. source: "./media/characters/zero-alurus/back.svg"
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Normal",
  10443. height: math.unit(5 + 10 / 12, "feet")
  10444. },
  10445. {
  10446. name: "Macro",
  10447. height: math.unit(60, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Macro+",
  10452. height: math.unit(450, "feet")
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(200, "lb"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/mega-shi/front.svg",
  10465. extra: 1279 / 1250,
  10466. bottom: 0.02
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(200, "lb"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/mega-shi/back.svg",
  10475. extra: 1279 / 1250,
  10476. bottom: 0.02
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(16 + 6 / 12, "feet")
  10484. },
  10485. {
  10486. name: "Third Dimension",
  10487. height: math.unit(40, "meters")
  10488. },
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(660, "feet"),
  10492. default: true
  10493. },
  10494. {
  10495. name: "Megamacro",
  10496. height: math.unit(10, "miles")
  10497. },
  10498. {
  10499. name: "Planetary Launch",
  10500. height: math.unit(500, "miles")
  10501. },
  10502. {
  10503. name: "Interstellar",
  10504. height: math.unit(1e9, "miles")
  10505. },
  10506. {
  10507. name: "Leaving the Universe",
  10508. height: math.unit(1, "gigaparsec")
  10509. },
  10510. {
  10511. name: "Travelling Universes",
  10512. height: math.unit(30e15, "parsecs")
  10513. },
  10514. ]
  10515. ))
  10516. characterMakers.push(() => makeCharacter(
  10517. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10518. {
  10519. front: {
  10520. height: math.unit(5 + 4/12, "feet"),
  10521. weight: math.unit(120, "lb"),
  10522. name: "Front",
  10523. image: {
  10524. source: "./media/characters/odyssey/front.svg",
  10525. extra: 1747/1571,
  10526. bottom: 47/1794
  10527. }
  10528. },
  10529. side: {
  10530. height: math.unit(5.1, "feet"),
  10531. weight: math.unit(120, "lb"),
  10532. name: "Side",
  10533. image: {
  10534. source: "./media/characters/odyssey/side.svg",
  10535. extra: 1847/1619,
  10536. bottom: 47/1894
  10537. }
  10538. },
  10539. lounging: {
  10540. height: math.unit(1.464, "feet"),
  10541. weight: math.unit(120, "lb"),
  10542. name: "Lounging",
  10543. image: {
  10544. source: "./media/characters/odyssey/lounging.svg",
  10545. extra: 1235/837,
  10546. bottom: 551/1786
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(5 + 4 / 12, "feet")
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(1, "km")
  10558. },
  10559. {
  10560. name: "Megamacro",
  10561. height: math.unit(3000, "km")
  10562. },
  10563. {
  10564. name: "Gigamacro",
  10565. height: math.unit(1, "AU"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Omniversal",
  10570. height: math.unit(100e14, "lightyears")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(300, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/mekuto/front.svg",
  10583. extra: 921 / 832,
  10584. bottom: 0.03
  10585. }
  10586. },
  10587. hand: {
  10588. height: math.unit(6 / 10.24, "feet"),
  10589. name: "Hand",
  10590. image: {
  10591. source: "./media/characters/mekuto/hand.svg"
  10592. }
  10593. },
  10594. foot: {
  10595. height: math.unit(6 / 5.05, "feet"),
  10596. name: "Foot",
  10597. image: {
  10598. source: "./media/characters/mekuto/foot.svg"
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Minimicro",
  10605. height: math.unit(0.2, "inches")
  10606. },
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(1.5, "inches")
  10610. },
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(5 + 11 / 12, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Minimacro",
  10618. height: math.unit(17 + 9 / 12, "feet")
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(177.5, "feet")
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(152, "miles")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(6.5, "inches"),
  10635. weight: math.unit(13, "oz"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/dafydd-tomos/front.svg",
  10639. extra: 2990 / 2603,
  10640. bottom: 0.03
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Micro",
  10647. height: math.unit(6.5, "inches"),
  10648. default: true
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(150, "lb"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/splinter/front.svg",
  10661. extra: 2990 / 2882,
  10662. bottom: 0.04
  10663. }
  10664. },
  10665. back: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(150, "lb"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/splinter/back.svg",
  10671. extra: 2990 / 2882,
  10672. bottom: 0.04
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(6, "feet")
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(230, "meters"),
  10684. default: true
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10690. {
  10691. front: {
  10692. height: math.unit(4 + 10 / 12, "feet"),
  10693. weight: math.unit(480, "lb"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/snow-gabumon/front.svg",
  10697. extra: 1140 / 963,
  10698. bottom: 0.058
  10699. }
  10700. },
  10701. back: {
  10702. height: math.unit(4 + 10 / 12, "feet"),
  10703. weight: math.unit(480, "lb"),
  10704. name: "Back",
  10705. image: {
  10706. source: "./media/characters/snow-gabumon/back.svg",
  10707. extra: 1115 / 962,
  10708. bottom: 0.041
  10709. }
  10710. },
  10711. frontUndresed: {
  10712. height: math.unit(4 + 10 / 12, "feet"),
  10713. weight: math.unit(480, "lb"),
  10714. name: "Front (Undressed)",
  10715. image: {
  10716. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10717. extra: 1061 / 960,
  10718. bottom: 0.045
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Micro",
  10725. height: math.unit(1, "inch")
  10726. },
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(4 + 10 / 12, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Macro",
  10734. height: math.unit(200, "feet")
  10735. },
  10736. {
  10737. name: "Megamacro",
  10738. height: math.unit(120, "miles")
  10739. },
  10740. {
  10741. name: "Gigamacro",
  10742. height: math.unit(9800, "miles")
  10743. },
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(1.7, "meters"),
  10751. weight: math.unit(140, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/moody/front.svg",
  10755. extra: 3226 / 3007,
  10756. bottom: 0.087
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Micro",
  10763. height: math.unit(1, "mm")
  10764. },
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(1.7, "meters"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Macro",
  10772. height: math.unit(80, "meters")
  10773. },
  10774. {
  10775. name: "Macro+",
  10776. height: math.unit(500, "meters")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(6, "feet"),
  10785. weight: math.unit(150, "lb"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/zyas/front.svg",
  10789. extra: 1180 / 1120,
  10790. bottom: 0.045
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(10, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(500, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(5, "miles")
  10807. },
  10808. {
  10809. name: "Teramacro",
  10810. height: math.unit(150000, "miles")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(150, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/cuon/front.svg",
  10823. extra: 1390 / 1320,
  10824. bottom: 0.008
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Micro",
  10831. height: math.unit(3, "inches")
  10832. },
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(18 + 9 / 12, "feet"),
  10836. default: true
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(360, "feet")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(360, "miles")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(2.4, "meters"),
  10853. weight: math.unit(70, "kg"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/nyanuxk/front.svg",
  10857. extra: 1172 / 1084,
  10858. bottom: 0.065
  10859. }
  10860. },
  10861. side: {
  10862. height: math.unit(2.4, "meters"),
  10863. weight: math.unit(70, "kg"),
  10864. name: "Side",
  10865. image: {
  10866. source: "./media/characters/nyanuxk/side.svg",
  10867. extra: 1190 / 1132,
  10868. bottom: 0.007
  10869. }
  10870. },
  10871. back: {
  10872. height: math.unit(2.4, "meters"),
  10873. weight: math.unit(70, "kg"),
  10874. name: "Back",
  10875. image: {
  10876. source: "./media/characters/nyanuxk/back.svg",
  10877. extra: 1200 / 1141,
  10878. bottom: 0.015
  10879. }
  10880. },
  10881. foot: {
  10882. height: math.unit(0.52, "meters"),
  10883. name: "Foot",
  10884. image: {
  10885. source: "./media/characters/nyanuxk/foot.svg"
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Micro",
  10892. height: math.unit(2, "cm")
  10893. },
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(2.4, "meters"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Smaller Macro",
  10901. height: math.unit(120, "meters")
  10902. },
  10903. {
  10904. name: "Bigger Macro",
  10905. height: math.unit(1.2, "km")
  10906. },
  10907. {
  10908. name: "Megamacro",
  10909. height: math.unit(15, "kilometers")
  10910. },
  10911. {
  10912. name: "Gigamacro",
  10913. height: math.unit(2000, "km")
  10914. },
  10915. {
  10916. name: "Teramacro",
  10917. height: math.unit(500000, "km")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10923. {
  10924. side: {
  10925. height: math.unit(6, "feet"),
  10926. name: "Side",
  10927. image: {
  10928. source: "./media/characters/ailbhe/side.svg",
  10929. extra: 757 / 464,
  10930. bottom: 0.041
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(1.07, "meters"),
  10938. default: true
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(6, "feet"),
  10947. weight: math.unit(120, "kg"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/zevulfius/front.svg",
  10951. extra: 965 / 903
  10952. }
  10953. },
  10954. side: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(120, "kg"),
  10957. name: "Side",
  10958. image: {
  10959. source: "./media/characters/zevulfius/side.svg",
  10960. extra: 939 / 900
  10961. }
  10962. },
  10963. back: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(120, "kg"),
  10966. name: "Back",
  10967. image: {
  10968. source: "./media/characters/zevulfius/back.svg",
  10969. extra: 918 / 854,
  10970. bottom: 0.005
  10971. }
  10972. },
  10973. foot: {
  10974. height: math.unit(6 / 3.72, "feet"),
  10975. name: "Foot",
  10976. image: {
  10977. source: "./media/characters/zevulfius/foot.svg"
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Macro",
  10984. height: math.unit(750, "meters")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(20, "km"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Gigamacro",
  10993. height: math.unit(2000, "km")
  10994. },
  10995. {
  10996. name: "Teramacro",
  10997. height: math.unit(250000, "km")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(100, "feet"),
  11006. weight: math.unit(350, "kg"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/rikes/front.svg",
  11010. extra: 1565 / 1483,
  11011. bottom: 0.017
  11012. }
  11013. },
  11014. },
  11015. [
  11016. {
  11017. name: "Macro",
  11018. height: math.unit(100, "feet"),
  11019. default: true
  11020. },
  11021. ]
  11022. ))
  11023. characterMakers.push(() => makeCharacter(
  11024. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11025. {
  11026. front: {
  11027. height: math.unit(8, "feet"),
  11028. weight: math.unit(356, "lb"),
  11029. name: "Front",
  11030. image: {
  11031. source: "./media/characters/adam-silver-mane/front.svg",
  11032. extra: 1036/937,
  11033. bottom: 63/1099
  11034. }
  11035. },
  11036. side: {
  11037. height: math.unit(8, "feet"),
  11038. weight: math.unit(356, "lb"),
  11039. name: "Side",
  11040. image: {
  11041. source: "./media/characters/adam-silver-mane/side.svg",
  11042. extra: 997/901,
  11043. bottom: 59/1056
  11044. }
  11045. },
  11046. frontNsfw: {
  11047. height: math.unit(8, "feet"),
  11048. weight: math.unit(356, "lb"),
  11049. name: "Front (NSFW)",
  11050. image: {
  11051. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11052. extra: 1036/937,
  11053. bottom: 63/1099
  11054. }
  11055. },
  11056. sideNsfw: {
  11057. height: math.unit(8, "feet"),
  11058. weight: math.unit(356, "lb"),
  11059. name: "Side (NSFW)",
  11060. image: {
  11061. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11062. extra: 997/901,
  11063. bottom: 59/1056
  11064. }
  11065. },
  11066. dick: {
  11067. height: math.unit(2.1, "feet"),
  11068. name: "Dick",
  11069. image: {
  11070. source: "./media/characters/adam-silver-mane/dick.svg"
  11071. }
  11072. },
  11073. taur: {
  11074. height: math.unit(16, "feet"),
  11075. weight: math.unit(1500, "kg"),
  11076. name: "Taur",
  11077. image: {
  11078. source: "./media/characters/adam-silver-mane/taur.svg",
  11079. extra: 1713 / 1571,
  11080. bottom: 0.01
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(8, "feet")
  11088. },
  11089. {
  11090. name: "Minimacro",
  11091. height: math.unit(80, "feet")
  11092. },
  11093. {
  11094. name: "MDA",
  11095. height: math.unit(80, "meters")
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(800, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(8000, "feet")
  11105. },
  11106. {
  11107. name: "Gigamacro",
  11108. height: math.unit(800, "miles")
  11109. },
  11110. {
  11111. name: "Teramacro",
  11112. height: math.unit(80000, "miles")
  11113. },
  11114. {
  11115. name: "Celestial",
  11116. height: math.unit(8e6, "miles")
  11117. },
  11118. {
  11119. name: "Star Dragon",
  11120. height: math.unit(800000, "parsecs")
  11121. },
  11122. {
  11123. name: "Godly",
  11124. height: math.unit(800, "teraparsecs")
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11130. {
  11131. front: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(150, "lb"),
  11134. name: "Front",
  11135. image: {
  11136. source: "./media/characters/ky'owin/front.svg",
  11137. extra: 3888 / 3068,
  11138. bottom: 0.015
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(6 + 8 / 12, "feet")
  11146. },
  11147. {
  11148. name: "Large",
  11149. height: math.unit(68, "feet")
  11150. },
  11151. {
  11152. name: "Macro",
  11153. height: math.unit(132, "feet")
  11154. },
  11155. {
  11156. name: "Macro+",
  11157. height: math.unit(340, "feet")
  11158. },
  11159. {
  11160. name: "Macro++",
  11161. height: math.unit(680, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(1, "mile")
  11167. },
  11168. {
  11169. name: "Megamacro+",
  11170. height: math.unit(10, "miles")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(4, "feet"),
  11179. weight: math.unit(50, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/mal/front.svg",
  11183. extra: 785 / 724,
  11184. bottom: 0.07
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(4, "inches")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(4, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(200, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(150, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/jordan-deware/front.svg",
  11213. extra: 1191 / 1012
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Nano",
  11220. height: math.unit(0.01, "mm")
  11221. },
  11222. {
  11223. name: "Minimicro",
  11224. height: math.unit(1, "mm")
  11225. },
  11226. {
  11227. name: "Micro",
  11228. height: math.unit(0.5, "inches")
  11229. },
  11230. {
  11231. name: "Normal",
  11232. height: math.unit(4, "feet"),
  11233. default: true
  11234. },
  11235. {
  11236. name: "Minimacro",
  11237. height: math.unit(40, "meters")
  11238. },
  11239. {
  11240. name: "Small Macro",
  11241. height: math.unit(400, "meters")
  11242. },
  11243. {
  11244. name: "Macro",
  11245. height: math.unit(4, "miles")
  11246. },
  11247. {
  11248. name: "Megamacro",
  11249. height: math.unit(40, "miles")
  11250. },
  11251. {
  11252. name: "Megamacro+",
  11253. height: math.unit(400, "miles")
  11254. },
  11255. {
  11256. name: "Gigamacro",
  11257. height: math.unit(400000, "miles")
  11258. },
  11259. ]
  11260. ))
  11261. characterMakers.push(() => makeCharacter(
  11262. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11263. {
  11264. side: {
  11265. height: math.unit(6, "feet"),
  11266. weight: math.unit(150, "lb"),
  11267. name: "Side",
  11268. image: {
  11269. source: "./media/characters/kimiko/side.svg",
  11270. extra: 600 / 358
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(15, "feet"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Macro",
  11282. height: math.unit(220, "feet")
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(1450, "feet")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(11500, "feet")
  11291. },
  11292. {
  11293. name: "Gigamacro",
  11294. height: math.unit(9500, "miles")
  11295. },
  11296. {
  11297. name: "Teramacro",
  11298. height: math.unit(2208005005, "miles")
  11299. },
  11300. {
  11301. name: "Examacro",
  11302. height: math.unit(2750, "parsecs")
  11303. },
  11304. {
  11305. name: "Zettamacro",
  11306. height: math.unit(101500, "parsecs")
  11307. },
  11308. ]
  11309. ))
  11310. characterMakers.push(() => makeCharacter(
  11311. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11312. {
  11313. front: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(70, "kg"),
  11316. name: "Front",
  11317. image: {
  11318. source: "./media/characters/andrew-sleepy/front.svg"
  11319. }
  11320. },
  11321. side: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(70, "kg"),
  11324. name: "Side",
  11325. image: {
  11326. source: "./media/characters/andrew-sleepy/side.svg"
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Micro",
  11333. height: math.unit(1, "mm"),
  11334. default: true
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/judio/front.svg",
  11347. extra: 1258 / 1110
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(5 + 6 / 12, "feet")
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(1000, "feet"),
  11359. default: true
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(10, "miles")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11369. {
  11370. frontDressed: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(68, "kg"),
  11373. name: "Front (Dressed)",
  11374. image: {
  11375. source: "./media/characters/nomaxice/front-dressed.svg",
  11376. extra: 1137/824,
  11377. bottom: 74/1211
  11378. }
  11379. },
  11380. frontShorts: {
  11381. height: math.unit(6, "feet"),
  11382. weight: math.unit(68, "kg"),
  11383. name: "Front (Shorts)",
  11384. image: {
  11385. source: "./media/characters/nomaxice/front-shorts.svg",
  11386. extra: 1137/824,
  11387. bottom: 74/1211
  11388. }
  11389. },
  11390. back: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(68, "kg"),
  11393. name: "Back",
  11394. image: {
  11395. source: "./media/characters/nomaxice/back.svg",
  11396. extra: 822/786,
  11397. bottom: 39/861
  11398. }
  11399. },
  11400. hand: {
  11401. height: math.unit(0.565, "feet"),
  11402. name: "Hand",
  11403. image: {
  11404. source: "./media/characters/nomaxice/hand.svg"
  11405. }
  11406. },
  11407. foot: {
  11408. height: math.unit(1, "feet"),
  11409. name: "Foot",
  11410. image: {
  11411. source: "./media/characters/nomaxice/foot.svg"
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Micro",
  11418. height: math.unit(8, "cm")
  11419. },
  11420. {
  11421. name: "Norm",
  11422. height: math.unit(1.82, "m")
  11423. },
  11424. {
  11425. name: "Norm+",
  11426. height: math.unit(8.8, "feet"),
  11427. default: true
  11428. },
  11429. {
  11430. name: "Big",
  11431. height: math.unit(8, "meters")
  11432. },
  11433. {
  11434. name: "Macro",
  11435. height: math.unit(18, "meters")
  11436. },
  11437. {
  11438. name: "Macro+",
  11439. height: math.unit(88, "meters")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(12, "feet"),
  11448. weight: math.unit(1.5, "tons"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/dydros/front.svg",
  11452. extra: 863 / 800,
  11453. bottom: 0.015
  11454. }
  11455. },
  11456. back: {
  11457. height: math.unit(12, "feet"),
  11458. weight: math.unit(1.5, "tons"),
  11459. name: "Back",
  11460. image: {
  11461. source: "./media/characters/dydros/back.svg",
  11462. extra: 900 / 843,
  11463. bottom: 0.005
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Normal",
  11470. height: math.unit(12, "feet"),
  11471. default: true
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(100, "kg"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/riggi/front.svg",
  11484. extra: 5787 / 5303
  11485. }
  11486. },
  11487. hyper: {
  11488. height: math.unit(6 * 5 / 3, "feet"),
  11489. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11490. name: "Hyper",
  11491. image: {
  11492. source: "./media/characters/riggi/hyper.svg",
  11493. extra: 3595 / 3485
  11494. }
  11495. },
  11496. },
  11497. [
  11498. {
  11499. name: "Small Macro",
  11500. height: math.unit(50, "feet")
  11501. },
  11502. {
  11503. name: "Default",
  11504. height: math.unit(200, "feet"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Loom",
  11509. height: math.unit(10000, "feet")
  11510. },
  11511. {
  11512. name: "Cruising Altitude",
  11513. height: math.unit(30000, "feet")
  11514. },
  11515. {
  11516. name: "Megamacro",
  11517. height: math.unit(100, "miles")
  11518. },
  11519. {
  11520. name: "Continent Sized",
  11521. height: math.unit(2800, "miles")
  11522. },
  11523. {
  11524. name: "Earth Sized",
  11525. height: math.unit(8000, "miles")
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11531. {
  11532. front: {
  11533. height: math.unit(6, "feet"),
  11534. weight: math.unit(250, "lb"),
  11535. name: "Front",
  11536. image: {
  11537. source: "./media/characters/alexi/front.svg",
  11538. extra: 3483 / 3291,
  11539. bottom: 0.04
  11540. }
  11541. },
  11542. back: {
  11543. height: math.unit(6, "feet"),
  11544. weight: math.unit(250, "lb"),
  11545. name: "Back",
  11546. image: {
  11547. source: "./media/characters/alexi/back.svg",
  11548. extra: 3533 / 3356,
  11549. bottom: 0.021
  11550. }
  11551. },
  11552. frontTransforming: {
  11553. height: math.unit(8.58, "feet"),
  11554. weight: math.unit(1300, "lb"),
  11555. name: "Transforming",
  11556. image: {
  11557. source: "./media/characters/alexi/front-transforming.svg",
  11558. extra: 437 / 409,
  11559. bottom: 19 / 458.66
  11560. }
  11561. },
  11562. frontTransformed: {
  11563. height: math.unit(12.5, "feet"),
  11564. weight: math.unit(4000, "lb"),
  11565. name: "Transformed",
  11566. image: {
  11567. source: "./media/characters/alexi/front-transformed.svg",
  11568. extra: 639 / 614,
  11569. bottom: 30.55 / 671
  11570. }
  11571. },
  11572. },
  11573. [
  11574. {
  11575. name: "Normal",
  11576. height: math.unit(14, "feet"),
  11577. default: true
  11578. },
  11579. {
  11580. name: "Minimacro",
  11581. height: math.unit(30, "meters")
  11582. },
  11583. {
  11584. name: "Macro",
  11585. height: math.unit(500, "meters")
  11586. },
  11587. {
  11588. name: "Megamacro",
  11589. height: math.unit(9000, "km")
  11590. },
  11591. {
  11592. name: "Teramacro",
  11593. height: math.unit(384000, "km")
  11594. },
  11595. ]
  11596. ))
  11597. characterMakers.push(() => makeCharacter(
  11598. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11599. {
  11600. front: {
  11601. height: math.unit(6, "feet"),
  11602. weight: math.unit(150, "lb"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/kayroo/front.svg",
  11606. extra: 1153 / 1038,
  11607. bottom: 0.06
  11608. }
  11609. },
  11610. foot: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(150, "lb"),
  11613. name: "Foot",
  11614. image: {
  11615. source: "./media/characters/kayroo/foot.svg"
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(8, "feet"),
  11623. default: true
  11624. },
  11625. {
  11626. name: "Minimacro",
  11627. height: math.unit(250, "feet")
  11628. },
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(2800, "feet")
  11632. },
  11633. {
  11634. name: "Megamacro",
  11635. height: math.unit(5200, "feet")
  11636. },
  11637. {
  11638. name: "Gigamacro",
  11639. height: math.unit(27000, "feet")
  11640. },
  11641. {
  11642. name: "Omega",
  11643. height: math.unit(45000, "feet")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11649. {
  11650. front: {
  11651. height: math.unit(18, "feet"),
  11652. weight: math.unit(5800, "lb"),
  11653. name: "Front",
  11654. image: {
  11655. source: "./media/characters/rhys/front.svg",
  11656. extra: 3386 / 3090,
  11657. bottom: 0.07
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(18, "feet"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Working Size",
  11669. height: math.unit(200, "feet")
  11670. },
  11671. {
  11672. name: "Demolition Size",
  11673. height: math.unit(2000, "feet")
  11674. },
  11675. {
  11676. name: "Maximum Licensed Size",
  11677. height: math.unit(5, "miles")
  11678. },
  11679. {
  11680. name: "Maximum Observed Size",
  11681. height: math.unit(10, "yottameters")
  11682. },
  11683. ]
  11684. ))
  11685. characterMakers.push(() => makeCharacter(
  11686. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11687. {
  11688. front: {
  11689. height: math.unit(6, "feet"),
  11690. weight: math.unit(250, "lb"),
  11691. name: "Front",
  11692. image: {
  11693. source: "./media/characters/toto/front.svg",
  11694. extra: 527 / 479,
  11695. bottom: 0.05
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Micro",
  11702. height: math.unit(3, "feet")
  11703. },
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(10, "feet")
  11707. },
  11708. {
  11709. name: "Macro",
  11710. height: math.unit(150, "feet"),
  11711. default: true
  11712. },
  11713. {
  11714. name: "Megamacro",
  11715. height: math.unit(1200, "feet")
  11716. },
  11717. ]
  11718. ))
  11719. characterMakers.push(() => makeCharacter(
  11720. { name: "King", species: ["lion"], tags: ["anthro"] },
  11721. {
  11722. back: {
  11723. height: math.unit(6, "feet"),
  11724. weight: math.unit(150, "lb"),
  11725. name: "Back",
  11726. image: {
  11727. source: "./media/characters/king/back.svg"
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(2, "inches")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(8, "feet")
  11739. },
  11740. {
  11741. name: "Macro",
  11742. height: math.unit(200, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Megamacro",
  11747. height: math.unit(50, "miles")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(11, "feet"),
  11756. weight: math.unit(1400, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/cordite/front.svg",
  11760. extra: 1919/1827,
  11761. bottom: 40/1959
  11762. }
  11763. },
  11764. side: {
  11765. height: math.unit(11, "feet"),
  11766. weight: math.unit(1400, "lb"),
  11767. name: "Side",
  11768. image: {
  11769. source: "./media/characters/cordite/side.svg",
  11770. extra: 1908/1793,
  11771. bottom: 38/1946
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(11, "feet"),
  11776. weight: math.unit(1400, "lb"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/cordite/back.svg",
  11780. extra: 1938/1837,
  11781. bottom: 10/1948
  11782. }
  11783. },
  11784. feral: {
  11785. height: math.unit(2, "feet"),
  11786. weight: math.unit(90, "lb"),
  11787. name: "Feral",
  11788. image: {
  11789. source: "./media/characters/cordite/feral.svg",
  11790. extra: 1260 / 755,
  11791. bottom: 0.05
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Normal",
  11798. height: math.unit(11, "feet"),
  11799. default: true
  11800. },
  11801. ]
  11802. ))
  11803. characterMakers.push(() => makeCharacter(
  11804. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11805. {
  11806. front: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Front",
  11810. image: {
  11811. source: "./media/characters/pianostrong/front.svg",
  11812. extra: 6577 / 6254,
  11813. bottom: 0.02
  11814. }
  11815. },
  11816. side: {
  11817. height: math.unit(6, "feet"),
  11818. weight: math.unit(150, "lb"),
  11819. name: "Side",
  11820. image: {
  11821. source: "./media/characters/pianostrong/side.svg",
  11822. extra: 6106 / 5730
  11823. }
  11824. },
  11825. back: {
  11826. height: math.unit(6, "feet"),
  11827. weight: math.unit(150, "lb"),
  11828. name: "Back",
  11829. image: {
  11830. source: "./media/characters/pianostrong/back.svg",
  11831. extra: 6085 / 5733,
  11832. bottom: 0.01
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Macro",
  11839. height: math.unit(100, "feet")
  11840. },
  11841. {
  11842. name: "Macro+",
  11843. height: math.unit(300, "feet"),
  11844. default: true
  11845. },
  11846. {
  11847. name: "Macro++",
  11848. height: math.unit(1000, "feet")
  11849. },
  11850. ]
  11851. ))
  11852. characterMakers.push(() => makeCharacter(
  11853. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11854. {
  11855. front: {
  11856. height: math.unit(6, "feet"),
  11857. weight: math.unit(150, "lb"),
  11858. name: "Front",
  11859. image: {
  11860. source: "./media/characters/kona/front.svg",
  11861. extra: 2960 / 2629,
  11862. bottom: 0.005
  11863. }
  11864. },
  11865. },
  11866. [
  11867. {
  11868. name: "Normal",
  11869. height: math.unit(11 + 8 / 12, "feet")
  11870. },
  11871. {
  11872. name: "Macro",
  11873. height: math.unit(850, "feet"),
  11874. default: true
  11875. },
  11876. {
  11877. name: "Macro+",
  11878. height: math.unit(1.5, "km"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(80, "miles")
  11884. },
  11885. {
  11886. name: "Gigamacro",
  11887. height: math.unit(3500, "miles")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. side: {
  11895. height: math.unit(1.9, "meters"),
  11896. weight: math.unit(326, "kg"),
  11897. name: "Side",
  11898. image: {
  11899. source: "./media/characters/levi/side.svg",
  11900. extra: 1704 / 1334,
  11901. bottom: 0.02
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(1.9, "meters"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(20, "meters")
  11914. },
  11915. {
  11916. name: "Macro+",
  11917. height: math.unit(200, "meters")
  11918. },
  11919. {
  11920. name: "Megamacro",
  11921. height: math.unit(2, "km")
  11922. },
  11923. {
  11924. name: "Megamacro+",
  11925. height: math.unit(20, "km")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(2500, "km")
  11930. },
  11931. {
  11932. name: "Gigamacro+",
  11933. height: math.unit(120000, "km")
  11934. },
  11935. {
  11936. name: "Teramacro",
  11937. height: math.unit(7.77e6, "km")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6 + 4/12, "feet"),
  11946. weight: math.unit(190, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/bmc/front.svg",
  11950. extra: 1626/1472,
  11951. bottom: 79/1705
  11952. }
  11953. },
  11954. back: {
  11955. height: math.unit(6 + 4/12, "feet"),
  11956. weight: math.unit(190, "lb"),
  11957. name: "Back",
  11958. image: {
  11959. source: "./media/characters/bmc/back.svg",
  11960. extra: 1640/1479,
  11961. bottom: 45/1685
  11962. }
  11963. },
  11964. frontArmor: {
  11965. height: math.unit(6 + 4/12, "feet"),
  11966. weight: math.unit(190, "lb"),
  11967. name: "Front-armor",
  11968. image: {
  11969. source: "./media/characters/bmc/front-armor.svg",
  11970. extra: 1538/1468,
  11971. bottom: 79/1617
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Human-sized",
  11978. height: math.unit(6 + 4 / 12, "feet")
  11979. },
  11980. {
  11981. name: "Interactive Size",
  11982. height: math.unit(25, "feet")
  11983. },
  11984. {
  11985. name: "Small",
  11986. height: math.unit(250, "feet")
  11987. },
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(1250, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Good Day",
  11995. height: math.unit(88, "miles")
  11996. },
  11997. {
  11998. name: "Largest Measured Size",
  11999. height: math.unit(105.960, "galaxies")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(20, "feet"),
  12008. weight: math.unit(2016, "kg"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/sven-the-kaiju/front.svg",
  12012. extra: 1277/1250,
  12013. bottom: 35/1312
  12014. }
  12015. },
  12016. mouth: {
  12017. height: math.unit(1.85, "feet"),
  12018. name: "Mouth",
  12019. image: {
  12020. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Fairy",
  12027. height: math.unit(6, "inches")
  12028. },
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(20, "feet"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Rampage",
  12036. height: math.unit(200, "feet")
  12037. },
  12038. {
  12039. name: "Archfey Forest Guardian",
  12040. height: math.unit(1, "mile")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(4, "meters"),
  12049. weight: math.unit(2, "tons"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/marik/front.svg",
  12053. extra: 1057 / 1003,
  12054. bottom: 0.08
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(4, "meters"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(20, "meters")
  12067. },
  12068. {
  12069. name: "Megamacro",
  12070. height: math.unit(50, "km")
  12071. },
  12072. {
  12073. name: "Gigamacro",
  12074. height: math.unit(100, "km")
  12075. },
  12076. {
  12077. name: "Alpha Macro",
  12078. height: math.unit(7.88e7, "yottameters")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(110, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/mel/front.svg",
  12091. extra: 736 / 617,
  12092. bottom: 0.017
  12093. }
  12094. },
  12095. },
  12096. [
  12097. {
  12098. name: "Pico",
  12099. height: math.unit(3, "pm")
  12100. },
  12101. {
  12102. name: "Nano",
  12103. height: math.unit(3, "nm")
  12104. },
  12105. {
  12106. name: "Micro",
  12107. height: math.unit(0.3, "mm"),
  12108. default: true
  12109. },
  12110. {
  12111. name: "Micro+",
  12112. height: math.unit(3, "mm")
  12113. },
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(5 + 10.5 / 12, "feet")
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12122. {
  12123. kaiju: {
  12124. height: math.unit(1.75, "meters"),
  12125. weight: math.unit(55, "kg"),
  12126. name: "Kaiju",
  12127. image: {
  12128. source: "./media/characters/lykonous/kaiju.svg",
  12129. extra: 1055 / 946,
  12130. bottom: 0.135
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(2.5, "meters"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Kaiju Dragon",
  12142. height: math.unit(60, "meters")
  12143. },
  12144. {
  12145. name: "Mega Kaiju",
  12146. height: math.unit(120, "km")
  12147. },
  12148. {
  12149. name: "Giga Kaiju",
  12150. height: math.unit(200, "megameters")
  12151. },
  12152. {
  12153. name: "Terra Kaiju",
  12154. height: math.unit(400, "gigameters")
  12155. },
  12156. {
  12157. name: "Kaiju Dragon God",
  12158. height: math.unit(13000, "exaparsecs")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/blü/front.svg",
  12171. extra: 1883 / 1564,
  12172. bottom: 0.031
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(13, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Big Boi",
  12184. height: math.unit(150, "meters")
  12185. },
  12186. {
  12187. name: "Mini Stomper",
  12188. height: math.unit(300, "meters")
  12189. },
  12190. {
  12191. name: "Macro",
  12192. height: math.unit(1000, "meters")
  12193. },
  12194. {
  12195. name: "Megamacro",
  12196. height: math.unit(11000, "meters")
  12197. },
  12198. {
  12199. name: "Gigamacro",
  12200. height: math.unit(11000, "km")
  12201. },
  12202. {
  12203. name: "Teramacro",
  12204. height: math.unit(420000, "km")
  12205. },
  12206. {
  12207. name: "Examacro",
  12208. height: math.unit(120, "parsecs")
  12209. },
  12210. {
  12211. name: "God Tho",
  12212. height: math.unit(98000000000, "parsecs")
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12218. {
  12219. taurFront: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(200, "lb"),
  12222. name: "Taur (Front)",
  12223. image: {
  12224. source: "./media/characters/scales/taur-front.svg",
  12225. extra: 1,
  12226. bottom: 0.05
  12227. }
  12228. },
  12229. taurBack: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(200, "lb"),
  12232. name: "Taur (Back)",
  12233. image: {
  12234. source: "./media/characters/scales/taur-back.svg",
  12235. extra: 1,
  12236. bottom: 0.08
  12237. }
  12238. },
  12239. anthro: {
  12240. height: math.unit(6 * 7 / 12, "feet"),
  12241. weight: math.unit(100, "lb"),
  12242. name: "Anthro",
  12243. image: {
  12244. source: "./media/characters/scales/anthro.svg",
  12245. extra: 1,
  12246. bottom: 0.06
  12247. }
  12248. },
  12249. },
  12250. [
  12251. {
  12252. name: "Normal",
  12253. height: math.unit(12, "feet"),
  12254. default: true
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6, "feet"),
  12263. weight: math.unit(150, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/koragos/front.svg",
  12267. extra: 841 / 794,
  12268. bottom: 0.035
  12269. }
  12270. },
  12271. back: {
  12272. height: math.unit(6, "feet"),
  12273. weight: math.unit(150, "lb"),
  12274. name: "Back",
  12275. image: {
  12276. source: "./media/characters/koragos/back.svg",
  12277. extra: 841 / 810,
  12278. bottom: 0.022
  12279. }
  12280. },
  12281. },
  12282. [
  12283. {
  12284. name: "Normal",
  12285. height: math.unit(6 + 11 / 12, "feet"),
  12286. default: true
  12287. },
  12288. {
  12289. name: "Macro",
  12290. height: math.unit(490, "feet")
  12291. },
  12292. {
  12293. name: "Megamacro",
  12294. height: math.unit(10, "miles")
  12295. },
  12296. {
  12297. name: "Gigamacro",
  12298. height: math.unit(50, "miles")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(250, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/xylrem/front.svg",
  12311. extra: 3323 / 3050,
  12312. bottom: 0.065
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Micro",
  12319. height: math.unit(4, "feet")
  12320. },
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(16, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(2720, "feet")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(25000, "miles")
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12338. {
  12339. front: {
  12340. height: math.unit(8, "feet"),
  12341. weight: math.unit(250, "kg"),
  12342. name: "Front",
  12343. image: {
  12344. source: "./media/characters/ikideru/front.svg",
  12345. extra: 930 / 870,
  12346. bottom: 0.087
  12347. }
  12348. },
  12349. back: {
  12350. height: math.unit(8, "feet"),
  12351. weight: math.unit(250, "kg"),
  12352. name: "Back",
  12353. image: {
  12354. source: "./media/characters/ikideru/back.svg",
  12355. extra: 919 / 852,
  12356. bottom: 0.055
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Rare",
  12363. height: math.unit(8, "feet"),
  12364. default: true
  12365. },
  12366. {
  12367. name: "Playful Loom",
  12368. height: math.unit(80, "feet")
  12369. },
  12370. {
  12371. name: "City Leaner",
  12372. height: math.unit(230, "feet")
  12373. },
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(2500, "feet")
  12377. },
  12378. {
  12379. name: "Gigamacro",
  12380. height: math.unit(26400, "feet")
  12381. },
  12382. {
  12383. name: "Tectonic Shifter",
  12384. height: math.unit(1.7, "megameters")
  12385. },
  12386. {
  12387. name: "Planet Carer",
  12388. height: math.unit(21, "megameters")
  12389. },
  12390. {
  12391. name: "God",
  12392. height: math.unit(11157.22, "parsecs")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(120, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/neo/front.svg"
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Micro",
  12411. height: math.unit(2, "inches"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Human Size",
  12416. height: math.unit(5 + 8 / 12, "feet")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(13 + 10 / 12, "feet"),
  12425. weight: math.unit(5320, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/chauncey-chantz/front.svg",
  12429. extra: 1587 / 1435,
  12430. bottom: 0.02
  12431. }
  12432. },
  12433. },
  12434. [
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(13 + 10 / 12, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(45, "feet")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(250, "miles")
  12447. },
  12448. {
  12449. name: "Planetary",
  12450. height: math.unit(10000, "miles")
  12451. },
  12452. {
  12453. name: "Galactic",
  12454. height: math.unit(40000, "parsecs")
  12455. },
  12456. {
  12457. name: "Universal",
  12458. height: math.unit(1, "yottameter")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12464. {
  12465. front: {
  12466. height: math.unit(6, "feet"),
  12467. weight: math.unit(150, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/epifox/front.svg",
  12471. extra: 1,
  12472. bottom: 0.075
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(6, "inches")
  12480. },
  12481. {
  12482. name: "Normal",
  12483. height: math.unit(12, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Macro",
  12488. height: math.unit(3810, "feet")
  12489. },
  12490. {
  12491. name: "Megamacro",
  12492. height: math.unit(500, "miles")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(1.8796, "m"),
  12501. weight: math.unit(230, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/colin-t/front.svg",
  12505. extra: 1272 / 1193,
  12506. bottom: 0.07
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Micro",
  12513. height: math.unit(0.571, "meters")
  12514. },
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(1.8796, "meters"),
  12518. default: true
  12519. },
  12520. {
  12521. name: "Tall",
  12522. height: math.unit(4, "meters")
  12523. },
  12524. {
  12525. name: "Macro",
  12526. height: math.unit(67.241, "meters")
  12527. },
  12528. {
  12529. name: "Megamacro",
  12530. height: math.unit(371.856, "meters")
  12531. },
  12532. {
  12533. name: "Planetary",
  12534. height: math.unit(12631.5689, "km")
  12535. },
  12536. ]
  12537. ))
  12538. characterMakers.push(() => makeCharacter(
  12539. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12540. {
  12541. front: {
  12542. height: math.unit(1.85, "meters"),
  12543. weight: math.unit(80, "kg"),
  12544. name: "Front",
  12545. image: {
  12546. source: "./media/characters/matvei/front.svg",
  12547. extra: 614 / 594,
  12548. bottom: 0.01
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Normal",
  12555. height: math.unit(1.85, "meters"),
  12556. default: true
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12562. {
  12563. front: {
  12564. height: math.unit(5 + 9 / 12, "feet"),
  12565. weight: math.unit(70, "lb"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/quincy/front.svg",
  12569. extra: 3041 / 2751
  12570. }
  12571. },
  12572. back: {
  12573. height: math.unit(5 + 9 / 12, "feet"),
  12574. weight: math.unit(70, "lb"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/quincy/back.svg",
  12578. extra: 3041 / 2751
  12579. }
  12580. },
  12581. flying: {
  12582. height: math.unit(5 + 4 / 12, "feet"),
  12583. weight: math.unit(70, "lb"),
  12584. name: "Flying",
  12585. image: {
  12586. source: "./media/characters/quincy/flying.svg",
  12587. extra: 1044 / 930
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Micro",
  12594. height: math.unit(3, "cm")
  12595. },
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(5 + 9 / 12, "feet")
  12599. },
  12600. {
  12601. name: "Macro",
  12602. height: math.unit(200, "meters"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(1000, "meters")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(3 + 11/12, "feet"),
  12616. weight: math.unit(50, "lb"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/vanrel/front.svg",
  12620. extra: 1104/949,
  12621. bottom: 52/1156
  12622. }
  12623. },
  12624. back: {
  12625. height: math.unit(3 + 11/12, "feet"),
  12626. weight: math.unit(50, "lb"),
  12627. name: "Back",
  12628. image: {
  12629. source: "./media/characters/vanrel/back.svg",
  12630. extra: 1119/976,
  12631. bottom: 37/1156
  12632. }
  12633. },
  12634. tome: {
  12635. height: math.unit(1.35, "feet"),
  12636. weight: math.unit(10, "lb"),
  12637. name: "Vanrel's Tome",
  12638. rename: true,
  12639. image: {
  12640. source: "./media/characters/vanrel/tome.svg"
  12641. }
  12642. },
  12643. beans: {
  12644. height: math.unit(0.89, "feet"),
  12645. name: "Beans",
  12646. image: {
  12647. source: "./media/characters/vanrel/beans.svg"
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(3 + 11/12, "feet"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(7 + 5 / 12, "feet"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/kuiper-vanrel/front.svg",
  12667. extra: 1219/1169,
  12668. bottom: 69/1288
  12669. }
  12670. },
  12671. back: {
  12672. height: math.unit(7 + 5 / 12, "feet"),
  12673. name: "Back",
  12674. image: {
  12675. source: "./media/characters/kuiper-vanrel/back.svg",
  12676. extra: 1236/1193,
  12677. bottom: 27/1263
  12678. }
  12679. },
  12680. foot: {
  12681. height: math.unit(0.55, "meters"),
  12682. name: "Foot",
  12683. image: {
  12684. source: "./media/characters/kuiper-vanrel/foot.svg",
  12685. }
  12686. },
  12687. battle: {
  12688. height: math.unit(6.824, "feet"),
  12689. name: "Battle",
  12690. image: {
  12691. source: "./media/characters/kuiper-vanrel/battle.svg",
  12692. extra: 1466 / 1327,
  12693. bottom: 29 / 1492.5
  12694. }
  12695. },
  12696. meerkui: {
  12697. height: math.unit(18, "inches"),
  12698. name: "Meerkui",
  12699. image: {
  12700. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12701. extra: 1354/1289,
  12702. bottom: 69/1423
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(7 + 5 / 12, "feet"),
  12710. default: true
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(8 + 5 / 12, "feet"),
  12719. name: "Front",
  12720. image: {
  12721. source: "./media/characters/keset-vanrel/front.svg",
  12722. extra: 1231/1148,
  12723. bottom: 82/1313
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(8 + 5 / 12, "feet"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/keset-vanrel/back.svg",
  12731. extra: 1240/1174,
  12732. bottom: 33/1273
  12733. }
  12734. },
  12735. hand: {
  12736. height: math.unit(0.6, "meters"),
  12737. name: "Hand",
  12738. image: {
  12739. source: "./media/characters/keset-vanrel/hand.svg"
  12740. }
  12741. },
  12742. foot: {
  12743. height: math.unit(0.94978, "meters"),
  12744. name: "Foot",
  12745. image: {
  12746. source: "./media/characters/keset-vanrel/foot.svg"
  12747. }
  12748. },
  12749. battle: {
  12750. height: math.unit(7.408, "feet"),
  12751. name: "Battle",
  12752. image: {
  12753. source: "./media/characters/keset-vanrel/battle.svg",
  12754. extra: 1890 / 1386,
  12755. bottom: 73.28 / 1970
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(8 + 5 / 12, "feet"),
  12763. default: true
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Neos", species: ["mew"], 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/neos/front.svg",
  12776. extra: 1696 / 992,
  12777. bottom: 0.14
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(54, "cm"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(100, "m")
  12790. },
  12791. {
  12792. name: "Megamacro",
  12793. height: math.unit(10, "km")
  12794. },
  12795. {
  12796. name: "Megamacro+",
  12797. height: math.unit(100, "km")
  12798. },
  12799. {
  12800. name: "Gigamacro",
  12801. height: math.unit(100, "Mm")
  12802. },
  12803. {
  12804. name: "Teramacro",
  12805. height: math.unit(100, "Gm")
  12806. },
  12807. {
  12808. name: "Examacro",
  12809. height: math.unit(100, "Em")
  12810. },
  12811. {
  12812. name: "Godly",
  12813. height: math.unit(10000, "Ym")
  12814. },
  12815. {
  12816. name: "Beyond Godly",
  12817. height: math.unit(25, "multiverses")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12823. {
  12824. feminine: {
  12825. height: math.unit(5, "feet"),
  12826. weight: math.unit(100, "lb"),
  12827. name: "Feminine",
  12828. image: {
  12829. source: "./media/characters/sammy-mouse/feminine.svg",
  12830. extra: 2526 / 2425,
  12831. bottom: 0.123
  12832. }
  12833. },
  12834. masculine: {
  12835. height: math.unit(5, "feet"),
  12836. weight: math.unit(100, "lb"),
  12837. name: "Masculine",
  12838. image: {
  12839. source: "./media/characters/sammy-mouse/masculine.svg",
  12840. extra: 2526 / 2425,
  12841. bottom: 0.123
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Micro",
  12848. height: math.unit(5, "inches")
  12849. },
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(5, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro",
  12857. height: math.unit(60, "feet")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(4, "feet"),
  12866. weight: math.unit(50, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/kole/front.svg",
  12870. extra: 1423 / 1303,
  12871. bottom: 0.025
  12872. }
  12873. },
  12874. back: {
  12875. height: math.unit(4, "feet"),
  12876. weight: math.unit(50, "lb"),
  12877. name: "Back",
  12878. image: {
  12879. source: "./media/characters/kole/back.svg",
  12880. extra: 1426 / 1280,
  12881. bottom: 0.02
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(4, "feet"),
  12889. default: true
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(2.5, "feet"),
  12898. weight: math.unit(32, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/rufran/front.svg",
  12902. extra: 1313/885,
  12903. bottom: 94/1407
  12904. }
  12905. },
  12906. side: {
  12907. height: math.unit(2.5, "feet"),
  12908. weight: math.unit(32, "lb"),
  12909. name: "Side",
  12910. image: {
  12911. source: "./media/characters/rufran/side.svg",
  12912. extra: 1109/852,
  12913. bottom: 118/1227
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(2.5, "feet"),
  12918. weight: math.unit(32, "lb"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/rufran/back.svg",
  12922. extra: 1280/878,
  12923. bottom: 131/1411
  12924. }
  12925. },
  12926. mouth: {
  12927. height: math.unit(1.13, "feet"),
  12928. name: "Mouth",
  12929. image: {
  12930. source: "./media/characters/rufran/mouth.svg"
  12931. }
  12932. },
  12933. foot: {
  12934. height: math.unit(1.33, "feet"),
  12935. name: "Foot",
  12936. image: {
  12937. source: "./media/characters/rufran/foot.svg"
  12938. }
  12939. },
  12940. koboldFront: {
  12941. height: math.unit(2 + 6 / 12, "feet"),
  12942. weight: math.unit(20, "lb"),
  12943. name: "Front (Kobold)",
  12944. image: {
  12945. source: "./media/characters/rufran/kobold-front.svg",
  12946. extra: 2041 / 1839,
  12947. bottom: 0.055
  12948. }
  12949. },
  12950. koboldBack: {
  12951. height: math.unit(2 + 6 / 12, "feet"),
  12952. weight: math.unit(20, "lb"),
  12953. name: "Back (Kobold)",
  12954. image: {
  12955. source: "./media/characters/rufran/kobold-back.svg",
  12956. extra: 2054 / 1839,
  12957. bottom: 0.01
  12958. }
  12959. },
  12960. koboldHand: {
  12961. height: math.unit(0.2166, "meters"),
  12962. name: "Hand (Kobold)",
  12963. image: {
  12964. source: "./media/characters/rufran/kobold-hand.svg"
  12965. }
  12966. },
  12967. koboldFoot: {
  12968. height: math.unit(0.185, "meters"),
  12969. name: "Foot (Kobold)",
  12970. image: {
  12971. source: "./media/characters/rufran/kobold-foot.svg"
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Micro",
  12978. height: math.unit(1, "inch")
  12979. },
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(2 + 6 / 12, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Big",
  12987. height: math.unit(60, "feet")
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(325, "feet")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(0.3, "meters"),
  13000. weight: math.unit(3.5, "kg"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/chip/front.svg",
  13004. extra: 748 / 674
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Micro",
  13011. height: math.unit(1, "inch"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13018. {
  13019. side: {
  13020. height: math.unit(2.3, "meters"),
  13021. weight: math.unit(3500, "lb"),
  13022. name: "Side",
  13023. image: {
  13024. source: "./media/characters/torvid/side.svg",
  13025. extra: 1972 / 722,
  13026. bottom: 0.035
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(2.3, "meters"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(2, "meters"),
  13043. weight: math.unit(150.5, "kg"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/susan/front.svg",
  13047. extra: 693 / 635,
  13048. bottom: 0.05
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Megamacro",
  13055. height: math.unit(505, "miles"),
  13056. default: true
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(150, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/raindrops/front.svg",
  13069. extra: 2655 / 2461,
  13070. bottom: 49 / 2705
  13071. }
  13072. },
  13073. back: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Back",
  13077. image: {
  13078. source: "./media/characters/raindrops/back.svg",
  13079. extra: 2574 / 2400,
  13080. bottom: 65 / 2634
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Micro",
  13087. height: math.unit(6, "inches")
  13088. },
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(6 + 2 / 12, "feet")
  13092. },
  13093. {
  13094. name: "Macro",
  13095. height: math.unit(131, "feet"),
  13096. default: true
  13097. },
  13098. {
  13099. name: "Megamacro",
  13100. height: math.unit(15, "miles")
  13101. },
  13102. {
  13103. name: "Gigamacro",
  13104. height: math.unit(4000, "miles")
  13105. },
  13106. {
  13107. name: "Teramacro",
  13108. height: math.unit(315000, "miles")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13114. {
  13115. front: {
  13116. height: math.unit(2.794, "meters"),
  13117. weight: math.unit(325, "kg"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/tezwa/front.svg",
  13121. extra: 2083 / 1906,
  13122. bottom: 0.031
  13123. }
  13124. },
  13125. foot: {
  13126. height: math.unit(0.687, "meters"),
  13127. name: "Foot",
  13128. image: {
  13129. source: "./media/characters/tezwa/foot.svg"
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Normal",
  13136. height: math.unit(9 + 2 / 12, "feet"),
  13137. default: true
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(58, "feet"),
  13146. weight: math.unit(89000, "lb"),
  13147. name: "Front",
  13148. image: {
  13149. source: "./media/characters/typhus/front.svg",
  13150. extra: 816 / 800,
  13151. bottom: 0.065
  13152. }
  13153. },
  13154. },
  13155. [
  13156. {
  13157. name: "Macro",
  13158. height: math.unit(58, "feet"),
  13159. default: true
  13160. },
  13161. ]
  13162. ))
  13163. characterMakers.push(() => makeCharacter(
  13164. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13165. {
  13166. front: {
  13167. height: math.unit(12, "feet"),
  13168. weight: math.unit(6, "tonnes"),
  13169. name: "Front",
  13170. image: {
  13171. source: "./media/characters/lyra-von-wulf/front.svg",
  13172. extra: 1,
  13173. bottom: 0.10
  13174. }
  13175. },
  13176. frontMecha: {
  13177. height: math.unit(12, "feet"),
  13178. weight: math.unit(12, "tonnes"),
  13179. name: "Front (Mecha)",
  13180. image: {
  13181. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13182. extra: 1,
  13183. bottom: 0.042
  13184. }
  13185. },
  13186. maw: {
  13187. height: math.unit(2.2, "feet"),
  13188. name: "Maw",
  13189. image: {
  13190. source: "./media/characters/lyra-von-wulf/maw.svg"
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(12, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Classic",
  13202. height: math.unit(50, "feet")
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(500, "feet")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(1, "mile")
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(400, "miles")
  13215. },
  13216. {
  13217. name: "Teramacro",
  13218. height: math.unit(22000, "miles")
  13219. },
  13220. {
  13221. name: "Solarmacro",
  13222. height: math.unit(8600000, "miles")
  13223. },
  13224. {
  13225. name: "Galactic",
  13226. height: math.unit(1057000, "lightyears")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6 + 10 / 12, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/dixon/front.svg",
  13239. extra: 3361 / 3209,
  13240. bottom: 0.01
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Normal",
  13247. height: math.unit(6 + 10 / 12, "feet"),
  13248. default: true
  13249. },
  13250. {
  13251. name: "Big",
  13252. height: math.unit(12, "meters")
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(500, "meters")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(2, "km")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(185, "cm"),
  13269. weight: math.unit(68, "kg"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/kauko/front.svg",
  13273. extra: 1455 / 1421,
  13274. bottom: 0.03
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(185, "cm"),
  13279. weight: math.unit(68, "kg"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/kauko/back.svg",
  13283. extra: 1455 / 1421,
  13284. bottom: 0.004
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(185, "cm"),
  13292. default: true
  13293. },
  13294. ]
  13295. ))
  13296. characterMakers.push(() => makeCharacter(
  13297. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13298. {
  13299. front: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "kg"),
  13302. name: "Front",
  13303. image: {
  13304. source: "./media/characters/varg/front.svg",
  13305. extra: 1108 / 1018,
  13306. bottom: 0.0375
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Normal",
  13313. height: math.unit(5, "meters")
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(200, "meters")
  13318. },
  13319. {
  13320. name: "Megamacro",
  13321. height: math.unit(20, "kilometers")
  13322. },
  13323. {
  13324. name: "True Size",
  13325. height: math.unit(211, "km"),
  13326. default: true
  13327. },
  13328. {
  13329. name: "Gigamacro",
  13330. height: math.unit(1000, "km")
  13331. },
  13332. {
  13333. name: "Gigamacro+",
  13334. height: math.unit(8000, "km")
  13335. },
  13336. {
  13337. name: "Teramacro",
  13338. height: math.unit(1000000, "km")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(7 + 7 / 12, "feet"),
  13347. weight: math.unit(267, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/dayza/front.svg",
  13351. extra: 1262 / 1200,
  13352. bottom: 0.035
  13353. }
  13354. },
  13355. side: {
  13356. height: math.unit(7 + 7 / 12, "feet"),
  13357. weight: math.unit(267, "lb"),
  13358. name: "Side",
  13359. image: {
  13360. source: "./media/characters/dayza/side.svg",
  13361. extra: 1295 / 1245,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. back: {
  13366. height: math.unit(7 + 7 / 12, "feet"),
  13367. weight: math.unit(267, "lb"),
  13368. name: "Back",
  13369. image: {
  13370. source: "./media/characters/dayza/back.svg",
  13371. extra: 1241 / 1170
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(7 + 7 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(155, "feet")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(6 + 5 / 12, "feet"),
  13392. weight: math.unit(160, "lb"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/xanthos/front.svg",
  13396. extra: 1,
  13397. bottom: 0.04
  13398. }
  13399. },
  13400. back: {
  13401. height: math.unit(6 + 5 / 12, "feet"),
  13402. weight: math.unit(160, "lb"),
  13403. name: "Back",
  13404. image: {
  13405. source: "./media/characters/xanthos/back.svg",
  13406. extra: 1,
  13407. bottom: 0.03
  13408. }
  13409. },
  13410. hand: {
  13411. height: math.unit(0.928, "feet"),
  13412. name: "Hand",
  13413. image: {
  13414. source: "./media/characters/xanthos/hand.svg"
  13415. }
  13416. },
  13417. foot: {
  13418. height: math.unit(1.286, "feet"),
  13419. name: "Foot",
  13420. image: {
  13421. source: "./media/characters/xanthos/foot.svg"
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(6 + 5 / 12, "feet"),
  13429. default: true
  13430. },
  13431. {
  13432. name: "Normal+",
  13433. height: math.unit(6, "meters")
  13434. },
  13435. {
  13436. name: "Macro",
  13437. height: math.unit(40, "feet")
  13438. },
  13439. {
  13440. name: "Macro+",
  13441. height: math.unit(200, "meters")
  13442. },
  13443. {
  13444. name: "Megamacro",
  13445. height: math.unit(20, "km")
  13446. },
  13447. {
  13448. name: "Megamacro+",
  13449. height: math.unit(100, "km")
  13450. },
  13451. {
  13452. name: "Gigamacro",
  13453. height: math.unit(200, "megameters")
  13454. },
  13455. {
  13456. name: "Gigamacro+",
  13457. height: math.unit(1.5, "gigameters")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6 + 3 / 12, "feet"),
  13466. weight: math.unit(215, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/grynn/front.svg",
  13470. extra: 4627 / 4209,
  13471. bottom: 0.047
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Micro",
  13478. height: math.unit(6, "inches")
  13479. },
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(6 + 3 / 12, "feet"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Big",
  13487. height: math.unit(104, "feet")
  13488. },
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(944, "feet")
  13492. },
  13493. {
  13494. name: "Macro+",
  13495. height: math.unit(9480, "feet")
  13496. },
  13497. {
  13498. name: "Megamacro",
  13499. height: math.unit(78752, "feet")
  13500. },
  13501. {
  13502. name: "Megamacro+",
  13503. height: math.unit(630128, "feet")
  13504. },
  13505. {
  13506. name: "Megamacro++",
  13507. height: math.unit(3150695, "feet")
  13508. },
  13509. ]
  13510. ))
  13511. characterMakers.push(() => makeCharacter(
  13512. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13513. {
  13514. front: {
  13515. height: math.unit(7 + 5 / 12, "feet"),
  13516. weight: math.unit(450, "lb"),
  13517. name: "Front",
  13518. image: {
  13519. source: "./media/characters/mocha-aura/front.svg",
  13520. extra: 1907 / 1817,
  13521. bottom: 0.04
  13522. }
  13523. },
  13524. back: {
  13525. height: math.unit(7 + 5 / 12, "feet"),
  13526. weight: math.unit(450, "lb"),
  13527. name: "Back",
  13528. image: {
  13529. source: "./media/characters/mocha-aura/back.svg",
  13530. extra: 1900 / 1825,
  13531. bottom: 0.045
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Nano",
  13538. height: math.unit(1, "nm")
  13539. },
  13540. {
  13541. name: "Megamicro",
  13542. height: math.unit(1, "mm")
  13543. },
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(3, "inches")
  13547. },
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(7 + 5 / 12, "feet"),
  13551. default: true
  13552. },
  13553. {
  13554. name: "Macro",
  13555. height: math.unit(30, "feet")
  13556. },
  13557. {
  13558. name: "Megamacro",
  13559. height: math.unit(3500, "feet")
  13560. },
  13561. {
  13562. name: "Teramacro",
  13563. height: math.unit(500000, "miles")
  13564. },
  13565. {
  13566. name: "Petamacro",
  13567. height: math.unit(50000000000000000, "parsecs")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/ilisha-devya/front.svg",
  13580. extra: 1053/1049,
  13581. bottom: 270/1323
  13582. }
  13583. },
  13584. back: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(150, "lb"),
  13587. name: "Back",
  13588. image: {
  13589. source: "./media/characters/ilisha-devya/back.svg",
  13590. extra: 1131/1128,
  13591. bottom: 39/1170
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(500, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(10, "miles")
  13604. },
  13605. {
  13606. name: "Gigamacro",
  13607. height: math.unit(100000, "miles")
  13608. },
  13609. {
  13610. name: "Examacro",
  13611. height: math.unit(1e9, "lightyears")
  13612. },
  13613. {
  13614. name: "Omniversal",
  13615. height: math.unit(1e33, "lightyears")
  13616. },
  13617. {
  13618. name: "Beyond Infinite",
  13619. height: math.unit(1e100, "lightyears")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13625. {
  13626. Side: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Side",
  13630. image: {
  13631. source: "./media/characters/mira/side.svg",
  13632. extra: 900 / 799,
  13633. bottom: 0.02
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Human Size",
  13640. height: math.unit(6, "feet")
  13641. },
  13642. {
  13643. name: "Macro",
  13644. height: math.unit(100, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(10, "miles")
  13650. },
  13651. {
  13652. name: "Gigamacro",
  13653. height: math.unit(25000, "miles")
  13654. },
  13655. {
  13656. name: "Teramacro",
  13657. height: math.unit(300, "AU")
  13658. },
  13659. {
  13660. name: "Full Size",
  13661. height: math.unit(4.5e10, "lightyears")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(150, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/holly/front.svg",
  13674. extra: 639 / 606
  13675. }
  13676. },
  13677. back: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Back",
  13681. image: {
  13682. source: "./media/characters/holly/back.svg",
  13683. extra: 623 / 598
  13684. }
  13685. },
  13686. frontWorking: {
  13687. height: math.unit(6, "feet"),
  13688. weight: math.unit(150, "lb"),
  13689. name: "Front (Working)",
  13690. image: {
  13691. source: "./media/characters/holly/front-working.svg",
  13692. extra: 607 / 577,
  13693. bottom: 0.048
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(12 + 3 / 12, "feet"),
  13701. default: true
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/porter/front.svg",
  13714. extra: 1,
  13715. bottom: 0.01
  13716. }
  13717. },
  13718. frontRobes: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(150, "lb"),
  13721. name: "Front (Robes)",
  13722. image: {
  13723. source: "./media/characters/porter/front-robes.svg",
  13724. extra: 1.01,
  13725. bottom: 0.01
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(11 + 9 / 12, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13739. {
  13740. legendary: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(150, "lb"),
  13743. name: "Legendary",
  13744. image: {
  13745. source: "./media/characters/lucy/legendary.svg",
  13746. extra: 1355 / 1100,
  13747. bottom: 0.045
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Legendary",
  13754. height: math.unit(86882 * 2, "miles"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(6, "feet"),
  13764. weight: math.unit(150, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/drusilla/front.svg",
  13768. extra: 678 / 635,
  13769. bottom: 0.03
  13770. }
  13771. },
  13772. back: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Back",
  13776. image: {
  13777. source: "./media/characters/drusilla/back.svg",
  13778. extra: 678 / 635,
  13779. bottom: 0.005
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Macro",
  13786. height: math.unit(100, "feet")
  13787. },
  13788. {
  13789. name: "Canon Height",
  13790. height: math.unit(2000, "feet"),
  13791. default: true
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(180, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/renard-thatch/front.svg",
  13804. extra: 2411 / 2275,
  13805. bottom: 0.01
  13806. }
  13807. },
  13808. frontPosing: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(180, "lb"),
  13811. name: "Front (Posing)",
  13812. image: {
  13813. source: "./media/characters/renard-thatch/front-posing.svg",
  13814. extra: 2381 / 2261,
  13815. bottom: 0.01
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(180, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/renard-thatch/back.svg",
  13824. extra: 2428 / 2288
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Micro",
  13831. height: math.unit(3, "inches")
  13832. },
  13833. {
  13834. name: "Default",
  13835. height: math.unit(6, "feet"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(75, "feet")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(1450, "feet"),
  13849. weight: math.unit(1.21e6, "tons"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/sekvra/front.svg",
  13853. extra: 1193/1190,
  13854. bottom: 78/1271
  13855. }
  13856. },
  13857. side: {
  13858. height: math.unit(1450, "feet"),
  13859. weight: math.unit(1.21e6, "tons"),
  13860. name: "Side",
  13861. image: {
  13862. source: "./media/characters/sekvra/side.svg",
  13863. extra: 1193/1190,
  13864. bottom: 52/1245
  13865. }
  13866. },
  13867. back: {
  13868. height: math.unit(1450, "feet"),
  13869. weight: math.unit(1.21e6, "tons"),
  13870. name: "Back",
  13871. image: {
  13872. source: "./media/characters/sekvra/back.svg",
  13873. extra: 1219/1216,
  13874. bottom: 21/1240
  13875. }
  13876. },
  13877. frontClothed: {
  13878. height: math.unit(1450, "feet"),
  13879. weight: math.unit(1.21e6, "tons"),
  13880. name: "Front (Clothed)",
  13881. image: {
  13882. source: "./media/characters/sekvra/front-clothed.svg",
  13883. extra: 1192/1189,
  13884. bottom: 79/1271
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Macro",
  13891. height: math.unit(1450, "feet"),
  13892. default: true
  13893. },
  13894. {
  13895. name: "Megamacro",
  13896. height: math.unit(15000, "feet")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/carmine/front.svg",
  13909. extra: 1,
  13910. bottom: 0.035
  13911. }
  13912. },
  13913. frontArmor: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Front (Armor)",
  13917. image: {
  13918. source: "./media/characters/carmine/front-armor.svg",
  13919. extra: 1,
  13920. bottom: 0.035
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Large",
  13927. height: math.unit(1, "mile")
  13928. },
  13929. {
  13930. name: "Huge",
  13931. height: math.unit(40, "miles"),
  13932. default: true
  13933. },
  13934. {
  13935. name: "Colossal",
  13936. height: math.unit(2500, "miles")
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13942. {
  13943. front: {
  13944. height: math.unit(6, "feet"),
  13945. weight: math.unit(150, "lb"),
  13946. name: "Front",
  13947. image: {
  13948. source: "./media/characters/elyssia/front.svg",
  13949. extra: 2201 / 2035,
  13950. bottom: 0.05
  13951. }
  13952. },
  13953. frontClothed: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front (Clothed)",
  13957. image: {
  13958. source: "./media/characters/elyssia/front-clothed.svg",
  13959. extra: 2201 / 2035,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. back: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(150, "lb"),
  13966. name: "Back",
  13967. image: {
  13968. source: "./media/characters/elyssia/back.svg",
  13969. extra: 2201 / 2035,
  13970. bottom: 0.013
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Smaller",
  13977. height: math.unit(150, "feet")
  13978. },
  13979. {
  13980. name: "Standard",
  13981. height: math.unit(1400, "feet"),
  13982. default: true
  13983. },
  13984. {
  13985. name: "Distracted",
  13986. height: math.unit(15000, "feet")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(7 + 4/12, "feet"),
  13995. weight: math.unit(690, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/geno-maxwell/front.svg",
  13999. extra: 984/856,
  14000. bottom: 87/1071
  14001. }
  14002. },
  14003. back: {
  14004. height: math.unit(7 + 4/12, "feet"),
  14005. weight: math.unit(690, "lb"),
  14006. name: "Back",
  14007. image: {
  14008. source: "./media/characters/geno-maxwell/back.svg",
  14009. extra: 981/854,
  14010. bottom: 57/1038
  14011. }
  14012. },
  14013. frontCostume: {
  14014. height: math.unit(7 + 4/12, "feet"),
  14015. weight: math.unit(690, "lb"),
  14016. name: "Front (Costume)",
  14017. image: {
  14018. source: "./media/characters/geno-maxwell/front-costume.svg",
  14019. extra: 984/856,
  14020. bottom: 87/1071
  14021. }
  14022. },
  14023. backcostume: {
  14024. height: math.unit(7 + 4/12, "feet"),
  14025. weight: math.unit(690, "lb"),
  14026. name: "Back (Costume)",
  14027. image: {
  14028. source: "./media/characters/geno-maxwell/back-costume.svg",
  14029. extra: 981/854,
  14030. bottom: 57/1038
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Micro",
  14037. height: math.unit(3, "inches")
  14038. },
  14039. {
  14040. name: "Normal",
  14041. height: math.unit(7 + 4 / 12, "feet"),
  14042. default: true
  14043. },
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(220, "feet")
  14047. },
  14048. {
  14049. name: "Megamacro",
  14050. height: math.unit(11, "miles")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(7 + 4/12, "feet"),
  14059. weight: math.unit(750, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/regena-maxwell/front.svg",
  14063. extra: 984/856,
  14064. bottom: 87/1071
  14065. }
  14066. },
  14067. back: {
  14068. height: math.unit(7 + 4/12, "feet"),
  14069. weight: math.unit(750, "lb"),
  14070. name: "Back",
  14071. image: {
  14072. source: "./media/characters/regena-maxwell/back.svg",
  14073. extra: 981/854,
  14074. bottom: 57/1038
  14075. }
  14076. },
  14077. frontCostume: {
  14078. height: math.unit(7 + 4/12, "feet"),
  14079. weight: math.unit(750, "lb"),
  14080. name: "Front (Costume)",
  14081. image: {
  14082. source: "./media/characters/regena-maxwell/front-costume.svg",
  14083. extra: 984/856,
  14084. bottom: 87/1071
  14085. }
  14086. },
  14087. backcostume: {
  14088. height: math.unit(7 + 4/12, "feet"),
  14089. weight: math.unit(750, "lb"),
  14090. name: "Back (Costume)",
  14091. image: {
  14092. source: "./media/characters/regena-maxwell/back-costume.svg",
  14093. extra: 981/854,
  14094. bottom: 57/1038
  14095. }
  14096. },
  14097. },
  14098. [
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(7 + 4 / 12, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(220, "feet")
  14107. },
  14108. {
  14109. name: "Megamacro",
  14110. height: math.unit(11, "miles")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(6, "feet"),
  14119. weight: math.unit(150, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14123. extra: 860 / 690,
  14124. bottom: 0.03
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(1.7, "meters"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(6, "feet"),
  14141. weight: math.unit(150, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/quilly/front.svg",
  14145. extra: 890 / 776
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Gigamacro",
  14152. height: math.unit(404090, "miles"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(7 + 8 / 12, "feet"),
  14162. weight: math.unit(350, "lb"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/tempest/front.svg",
  14166. extra: 1175 / 1086,
  14167. bottom: 0.02
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Normal",
  14174. height: math.unit(7 + 8 / 12, "feet"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14181. {
  14182. side: {
  14183. height: math.unit(4 + 5 / 12, "feet"),
  14184. weight: math.unit(80, "lb"),
  14185. name: "Side",
  14186. image: {
  14187. source: "./media/characters/rodger/side.svg",
  14188. extra: 1235 / 1118
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Micro",
  14195. height: math.unit(1, "inch")
  14196. },
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(4 + 5 / 12, "feet"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(120, "feet")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/danyel/front.svg",
  14217. extra: 1185 / 1123,
  14218. bottom: 0.05
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Shrunken",
  14225. height: math.unit(0.5, "mm")
  14226. },
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(1, "mm"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Upsized",
  14234. height: math.unit(5 + 5 / 12, "feet")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(5 + 6 / 12, "feet"),
  14243. weight: math.unit(200, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/vivian-bijoux/front.svg",
  14247. extra: 1217/1209,
  14248. bottom: 76/1293
  14249. }
  14250. },
  14251. back: {
  14252. height: math.unit(5 + 6 / 12, "feet"),
  14253. weight: math.unit(200, "lb"),
  14254. name: "Back",
  14255. image: {
  14256. source: "./media/characters/vivian-bijoux/back.svg",
  14257. extra: 1214/1208,
  14258. bottom: 51/1265
  14259. }
  14260. },
  14261. dressed: {
  14262. height: math.unit(5 + 6 / 12, "feet"),
  14263. weight: math.unit(200, "lb"),
  14264. name: "Dressed",
  14265. image: {
  14266. source: "./media/characters/vivian-bijoux/dressed.svg",
  14267. extra: 1217/1209,
  14268. bottom: 76/1293
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Normal",
  14275. height: math.unit(5 + 6 / 12, "feet"),
  14276. default: true
  14277. },
  14278. {
  14279. name: "Bad Dream",
  14280. height: math.unit(500, "feet")
  14281. },
  14282. {
  14283. name: "Nightmare",
  14284. height: math.unit(500, "miles")
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(6 + 1 / 12, "feet"),
  14293. weight: math.unit(260, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/zeta/front.svg",
  14297. extra: 1968 / 1889,
  14298. bottom: 0.06
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(6 + 1 / 12, "feet"),
  14303. weight: math.unit(260, "lb"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/zeta/back.svg",
  14307. extra: 1944 / 1858,
  14308. bottom: 0.03
  14309. }
  14310. },
  14311. hand: {
  14312. height: math.unit(1.112, "feet"),
  14313. name: "Hand",
  14314. image: {
  14315. source: "./media/characters/zeta/hand.svg"
  14316. }
  14317. },
  14318. foot: {
  14319. height: math.unit(1.48, "feet"),
  14320. name: "Foot",
  14321. image: {
  14322. source: "./media/characters/zeta/foot.svg"
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Micro",
  14329. height: math.unit(6, "inches")
  14330. },
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(6 + 1 / 12, "feet"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Macro",
  14338. height: math.unit(20, "feet")
  14339. },
  14340. ]
  14341. ))
  14342. characterMakers.push(() => makeCharacter(
  14343. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14344. {
  14345. front: {
  14346. height: math.unit(6, "feet"),
  14347. weight: math.unit(150, "lb"),
  14348. name: "Front",
  14349. image: {
  14350. source: "./media/characters/jamie-larsen/front.svg",
  14351. extra: 962 / 933,
  14352. bottom: 0.02
  14353. }
  14354. },
  14355. back: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Back",
  14359. image: {
  14360. source: "./media/characters/jamie-larsen/back.svg",
  14361. extra: 997 / 946
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Macro",
  14368. height: math.unit(28 + 7 / 12, "feet"),
  14369. default: true
  14370. },
  14371. {
  14372. name: "Macro+",
  14373. height: math.unit(180, "feet")
  14374. },
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(10, "miles")
  14378. },
  14379. {
  14380. name: "Gigamacro",
  14381. height: math.unit(200000, "miles")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(120, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/vance/front.svg",
  14394. extra: 1980 / 1890,
  14395. bottom: 0.09
  14396. }
  14397. },
  14398. back: {
  14399. height: math.unit(6, "feet"),
  14400. weight: math.unit(120, "lb"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/vance/back.svg",
  14404. extra: 2081 / 1994,
  14405. bottom: 0.014
  14406. }
  14407. },
  14408. hand: {
  14409. height: math.unit(0.88, "feet"),
  14410. name: "Hand",
  14411. image: {
  14412. source: "./media/characters/vance/hand.svg"
  14413. }
  14414. },
  14415. foot: {
  14416. height: math.unit(0.64, "feet"),
  14417. name: "Foot",
  14418. image: {
  14419. source: "./media/characters/vance/foot.svg"
  14420. }
  14421. },
  14422. },
  14423. [
  14424. {
  14425. name: "Small",
  14426. height: math.unit(90, "feet"),
  14427. default: true
  14428. },
  14429. {
  14430. name: "Macro",
  14431. height: math.unit(100, "meters")
  14432. },
  14433. {
  14434. name: "Megamacro",
  14435. height: math.unit(15, "miles")
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(180, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/xochitl/front.svg",
  14448. extra: 2297 / 2261,
  14449. bottom: 0.065
  14450. }
  14451. },
  14452. back: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(180, "lb"),
  14455. name: "Back",
  14456. image: {
  14457. source: "./media/characters/xochitl/back.svg",
  14458. extra: 2386 / 2354,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. foot: {
  14463. height: math.unit(6 / 5 * 1.15, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Foot",
  14466. image: {
  14467. source: "./media/characters/xochitl/foot.svg"
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "Macro",
  14474. height: math.unit(80, "feet")
  14475. },
  14476. {
  14477. name: "Macro+",
  14478. height: math.unit(400, "feet"),
  14479. default: true
  14480. },
  14481. {
  14482. name: "Gigamacro",
  14483. height: math.unit(80000, "miles")
  14484. },
  14485. {
  14486. name: "Gigamacro+",
  14487. height: math.unit(400000, "miles")
  14488. },
  14489. {
  14490. name: "Teramacro",
  14491. height: math.unit(300, "AU")
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(6, "feet"),
  14500. weight: math.unit(150, "lb"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/vincent/front.svg",
  14504. extra: 1130 / 1080,
  14505. bottom: 0.055
  14506. }
  14507. },
  14508. beak: {
  14509. height: math.unit(6 * 0.1, "feet"),
  14510. name: "Beak",
  14511. image: {
  14512. source: "./media/characters/vincent/beak.svg"
  14513. }
  14514. },
  14515. hand: {
  14516. height: math.unit(6 * 0.85, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Hand",
  14519. image: {
  14520. source: "./media/characters/vincent/hand.svg"
  14521. }
  14522. },
  14523. foot: {
  14524. height: math.unit(6 * 0.19, "feet"),
  14525. weight: math.unit(150, "lb"),
  14526. name: "Foot",
  14527. image: {
  14528. source: "./media/characters/vincent/foot.svg"
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Base",
  14535. height: math.unit(6 + 5 / 12, "feet"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Macro",
  14540. height: math.unit(300, "feet")
  14541. },
  14542. {
  14543. name: "Megamacro",
  14544. height: math.unit(2, "miles")
  14545. },
  14546. {
  14547. name: "Gigamacro",
  14548. height: math.unit(1000, "miles")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(2, "meters"),
  14557. weight: math.unit(500, "kg"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/coatl/front.svg",
  14561. extra: 3948 / 3500,
  14562. bottom: 0.082
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(4, "meters")
  14570. },
  14571. {
  14572. name: "Macro",
  14573. height: math.unit(100, "meters"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro+",
  14578. height: math.unit(300, "meters")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(3, "gigameters")
  14583. },
  14584. {
  14585. name: "Megamacro+",
  14586. height: math.unit(300, "terameters")
  14587. },
  14588. {
  14589. name: "Megamacro++",
  14590. height: math.unit(3, "lightyears")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(50, "kg"),
  14600. name: "front",
  14601. image: {
  14602. source: "./media/characters/shiroryu/front.svg",
  14603. extra: 1990 / 1935
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Mortal Mingling",
  14610. height: math.unit(3, "meters")
  14611. },
  14612. {
  14613. name: "Kaiju-ish",
  14614. height: math.unit(250, "meters")
  14615. },
  14616. {
  14617. name: "Somewhat Godly",
  14618. height: math.unit(400, "km"),
  14619. default: true
  14620. },
  14621. {
  14622. name: "Planetary",
  14623. height: math.unit(300, "megameters")
  14624. },
  14625. {
  14626. name: "Galaxy-dwarfing",
  14627. height: math.unit(450, "kiloparsecs")
  14628. },
  14629. {
  14630. name: "Universe Eater",
  14631. height: math.unit(150, "gigaparsecs")
  14632. },
  14633. {
  14634. name: "Almost Immeasurable",
  14635. height: math.unit(1.3e266, "yottaparsecs")
  14636. },
  14637. ]
  14638. ))
  14639. characterMakers.push(() => makeCharacter(
  14640. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14641. {
  14642. front: {
  14643. height: math.unit(6, "feet"),
  14644. weight: math.unit(150, "lb"),
  14645. name: "Front",
  14646. image: {
  14647. source: "./media/characters/umeko/front.svg",
  14648. extra: 1,
  14649. bottom: 0.019
  14650. }
  14651. },
  14652. frontArmored: {
  14653. height: math.unit(6, "feet"),
  14654. weight: math.unit(150, "lb"),
  14655. name: "Front (Armored)",
  14656. image: {
  14657. source: "./media/characters/umeko/front-armored.svg",
  14658. extra: 1,
  14659. bottom: 0.021
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(220, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Guardian Dragon",
  14671. height: math.unit(50, "miles")
  14672. },
  14673. {
  14674. name: "Cosmic",
  14675. height: math.unit(800000, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(6, "feet"),
  14684. weight: math.unit(150, "lb"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/cassidy/front.svg",
  14688. extra: 810/808,
  14689. bottom: 41/851
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Canon Height",
  14696. height: math.unit(120, "feet"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro+",
  14701. height: math.unit(400, "feet")
  14702. },
  14703. {
  14704. name: "Macro++",
  14705. height: math.unit(4000, "feet")
  14706. },
  14707. {
  14708. name: "Megamacro",
  14709. height: math.unit(3, "miles")
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(6, "feet"),
  14718. weight: math.unit(150, "lb"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/isaac/front.svg",
  14722. extra: 896 / 815,
  14723. bottom: 0.11
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Human Size",
  14730. height: math.unit(8, "feet"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(400, "feet")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(50, "miles")
  14740. },
  14741. {
  14742. name: "Canon Height",
  14743. height: math.unit(200, "AU")
  14744. },
  14745. ]
  14746. ))
  14747. characterMakers.push(() => makeCharacter(
  14748. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14749. {
  14750. front: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(72, "kg"),
  14753. name: "Front",
  14754. image: {
  14755. source: "./media/characters/sleekit/front.svg",
  14756. extra: 4693 / 4487,
  14757. bottom: 0.012
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Minimum Height",
  14764. height: math.unit(10, "meters")
  14765. },
  14766. {
  14767. name: "Smaller",
  14768. height: math.unit(25, "meters")
  14769. },
  14770. {
  14771. name: "Larger",
  14772. height: math.unit(38, "meters"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Maximum height",
  14777. height: math.unit(100, "meters")
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(6, "feet"),
  14786. weight: math.unit(150, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/nillia/front.svg",
  14790. extra: 2195 / 2037,
  14791. bottom: 0.005
  14792. }
  14793. },
  14794. back: {
  14795. height: math.unit(6, "feet"),
  14796. weight: math.unit(150, "lb"),
  14797. name: "Back",
  14798. image: {
  14799. source: "./media/characters/nillia/back.svg",
  14800. extra: 2195 / 2037,
  14801. bottom: 0.005
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Canon Height",
  14808. height: math.unit(489, "feet"),
  14809. default: true
  14810. }
  14811. ]
  14812. ))
  14813. characterMakers.push(() => makeCharacter(
  14814. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14815. {
  14816. front: {
  14817. height: math.unit(6, "feet"),
  14818. weight: math.unit(150, "lb"),
  14819. name: "Front",
  14820. image: {
  14821. source: "./media/characters/mesmyriza/front.svg",
  14822. extra: 2067 / 1784,
  14823. bottom: 0.035
  14824. }
  14825. },
  14826. foot: {
  14827. height: math.unit(6 / (250 / 35), "feet"),
  14828. name: "Foot",
  14829. image: {
  14830. source: "./media/characters/mesmyriza/foot.svg"
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Macro",
  14837. height: math.unit(457, "meters"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Megamacro",
  14842. height: math.unit(8, "megameters")
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(250, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/saudade/front.svg",
  14855. extra: 1172 / 1139,
  14856. bottom: 0.035
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Micro",
  14863. height: math.unit(3, "inches")
  14864. },
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(6, "feet"),
  14868. default: true
  14869. },
  14870. {
  14871. name: "Macro",
  14872. height: math.unit(50, "feet")
  14873. },
  14874. {
  14875. name: "Megamacro",
  14876. height: math.unit(2800, "feet")
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(5 + 4 / 12, "feet"),
  14885. weight: math.unit(100, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/keireer/front.svg",
  14889. extra: 716 / 666,
  14890. bottom: 0.05
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Normal",
  14897. height: math.unit(5 + 4 / 12, "feet"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(90, "kg"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/mirja/front.svg",
  14911. extra: 1789 / 1683,
  14912. bottom: 0.05
  14913. }
  14914. },
  14915. frontDressed: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(90, "lb"),
  14918. name: "Front (Dressed)",
  14919. image: {
  14920. source: "./media/characters/mirja/front-dressed.svg",
  14921. extra: 1789 / 1683,
  14922. bottom: 0.05
  14923. }
  14924. },
  14925. back: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(90, "lb"),
  14928. name: "Back",
  14929. image: {
  14930. source: "./media/characters/mirja/back.svg",
  14931. extra: 953 / 917,
  14932. bottom: 0.017
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "\"Incognito\"",
  14939. height: math.unit(3, "meters")
  14940. },
  14941. {
  14942. name: "Strolling Size",
  14943. height: math.unit(15, "km")
  14944. },
  14945. {
  14946. name: "Larger Strolling Size",
  14947. height: math.unit(400, "km")
  14948. },
  14949. {
  14950. name: "Preferred Size",
  14951. height: math.unit(5000, "km")
  14952. },
  14953. {
  14954. name: "True Size",
  14955. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(15, "feet"),
  14965. weight: math.unit(880, "kg"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/nightraver/front.svg",
  14969. extra: 2444 / 2160,
  14970. bottom: 0.027
  14971. }
  14972. },
  14973. back: {
  14974. height: math.unit(15, "feet"),
  14975. weight: math.unit(880, "kg"),
  14976. name: "Back",
  14977. image: {
  14978. source: "./media/characters/nightraver/back.svg",
  14979. extra: 2309 / 2180,
  14980. bottom: 0.005
  14981. }
  14982. },
  14983. sole: {
  14984. height: math.unit(2.878, "feet"),
  14985. name: "Sole",
  14986. image: {
  14987. source: "./media/characters/nightraver/sole.svg"
  14988. }
  14989. },
  14990. foot: {
  14991. height: math.unit(2.285, "feet"),
  14992. name: "Foot",
  14993. image: {
  14994. source: "./media/characters/nightraver/foot.svg"
  14995. }
  14996. },
  14997. maw: {
  14998. height: math.unit(2.67, "feet"),
  14999. name: "Maw",
  15000. image: {
  15001. source: "./media/characters/nightraver/maw.svg"
  15002. }
  15003. },
  15004. },
  15005. [
  15006. {
  15007. name: "Micro",
  15008. height: math.unit(1, "cm")
  15009. },
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(15, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Macro",
  15017. height: math.unit(300, "feet")
  15018. },
  15019. {
  15020. name: "Megamacro",
  15021. height: math.unit(300, "miles")
  15022. },
  15023. {
  15024. name: "Gigamacro",
  15025. height: math.unit(10000, "miles")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15031. {
  15032. side: {
  15033. height: math.unit(2, "inches"),
  15034. weight: math.unit(5, "grams"),
  15035. name: "Side",
  15036. image: {
  15037. source: "./media/characters/arc/side.svg"
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Micro",
  15044. height: math.unit(2, "inches"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(1.1938, "meters"),
  15054. weight: math.unit(54, "kg"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/nebula-shahar/front.svg",
  15058. extra: 1642 / 1436,
  15059. bottom: 0.06
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Megamicro",
  15066. height: math.unit(0.3, "mm")
  15067. },
  15068. {
  15069. name: "Micro",
  15070. height: math.unit(3, "cm")
  15071. },
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(138, "cm"),
  15075. default: true
  15076. },
  15077. {
  15078. name: "Macro",
  15079. height: math.unit(30, "m")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(5.24, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/shayla/front.svg",
  15092. extra: 1512 / 1414,
  15093. bottom: 0.01
  15094. }
  15095. },
  15096. back: {
  15097. height: math.unit(5.24, "feet"),
  15098. weight: math.unit(150, "lb"),
  15099. name: "Back",
  15100. image: {
  15101. source: "./media/characters/shayla/back.svg",
  15102. extra: 1512 / 1414
  15103. }
  15104. },
  15105. hand: {
  15106. height: math.unit(0.7781496062992126, "feet"),
  15107. name: "Hand",
  15108. image: {
  15109. source: "./media/characters/shayla/hand.svg"
  15110. }
  15111. },
  15112. foot: {
  15113. height: math.unit(1.4206036745406823, "feet"),
  15114. name: "Foot",
  15115. image: {
  15116. source: "./media/characters/shayla/foot.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Micro",
  15123. height: math.unit(0.32, "feet")
  15124. },
  15125. {
  15126. name: "Normal",
  15127. height: math.unit(5.24, "feet"),
  15128. default: true
  15129. },
  15130. {
  15131. name: "Macro",
  15132. height: math.unit(492.12, "feet")
  15133. },
  15134. {
  15135. name: "Megamacro",
  15136. height: math.unit(186.41, "miles")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(2.2, "m"),
  15145. weight: math.unit(120, "kg"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/pia-jr/front.svg",
  15149. extra: 1000 / 970,
  15150. bottom: 0.035
  15151. }
  15152. },
  15153. hand: {
  15154. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15155. name: "Hand",
  15156. image: {
  15157. source: "./media/characters/pia-jr/hand.svg"
  15158. }
  15159. },
  15160. paw: {
  15161. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15162. name: "Paw",
  15163. image: {
  15164. source: "./media/characters/pia-jr/paw.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Micro",
  15171. height: math.unit(1.2, "cm")
  15172. },
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(2.2, "m"),
  15176. default: true
  15177. },
  15178. {
  15179. name: "Macro",
  15180. height: math.unit(180, "m")
  15181. },
  15182. {
  15183. name: "Megamacro",
  15184. height: math.unit(420, "km")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(2, "m"),
  15193. weight: math.unit(115, "kg"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/pia-sr/front.svg",
  15197. extra: 760 / 730,
  15198. bottom: 0.015
  15199. }
  15200. },
  15201. back: {
  15202. height: math.unit(2, "m"),
  15203. weight: math.unit(115, "kg"),
  15204. name: "Back",
  15205. image: {
  15206. source: "./media/characters/pia-sr/back.svg",
  15207. extra: 760 / 730,
  15208. bottom: 0.01
  15209. }
  15210. },
  15211. hand: {
  15212. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15213. name: "Hand",
  15214. image: {
  15215. source: "./media/characters/pia-sr/hand.svg"
  15216. }
  15217. },
  15218. foot: {
  15219. height: math.unit(1.83, "feet"),
  15220. name: "Foot",
  15221. image: {
  15222. source: "./media/characters/pia-sr/foot.svg"
  15223. }
  15224. },
  15225. },
  15226. [
  15227. {
  15228. name: "Micro",
  15229. height: math.unit(88, "mm")
  15230. },
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(2, "m"),
  15234. default: true
  15235. },
  15236. {
  15237. name: "Macro",
  15238. height: math.unit(200, "m")
  15239. },
  15240. {
  15241. name: "Megamacro",
  15242. height: math.unit(420, "km")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(8 + 2 / 12, "feet"),
  15251. weight: math.unit(300, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/kibibyte/front.svg",
  15255. extra: 2221 / 2098,
  15256. bottom: 0.04
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(8 + 2 / 12, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Socialable Macro",
  15268. height: math.unit(50, "feet")
  15269. },
  15270. {
  15271. name: "Macro",
  15272. height: math.unit(300, "feet")
  15273. },
  15274. {
  15275. name: "Megamacro",
  15276. height: math.unit(500, "miles")
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/felix/front.svg",
  15289. extra: 762 / 722,
  15290. bottom: 0.02
  15291. }
  15292. },
  15293. frontClothed: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Front (Clothed)",
  15297. image: {
  15298. source: "./media/characters/felix/front-clothed.svg",
  15299. extra: 762 / 722,
  15300. bottom: 0.02
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Normal",
  15307. height: math.unit(6 + 8 / 12, "feet"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Macro",
  15312. height: math.unit(2600, "feet")
  15313. },
  15314. {
  15315. name: "Megamacro",
  15316. height: math.unit(450, "miles")
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(6 + 1 / 12, "feet"),
  15325. weight: math.unit(250, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/tobo/front.svg",
  15329. extra: 608 / 586,
  15330. bottom: 0.023
  15331. }
  15332. },
  15333. back: {
  15334. height: math.unit(6 + 1 / 12, "feet"),
  15335. weight: math.unit(250, "lb"),
  15336. name: "Back",
  15337. image: {
  15338. source: "./media/characters/tobo/back.svg",
  15339. extra: 608 / 586
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Nano",
  15346. height: math.unit(2, "nm")
  15347. },
  15348. {
  15349. name: "Megamicro",
  15350. height: math.unit(0.1, "mm")
  15351. },
  15352. {
  15353. name: "Micro",
  15354. height: math.unit(1, "inch"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Human-sized",
  15359. height: math.unit(6 + 1 / 12, "feet")
  15360. },
  15361. {
  15362. name: "Macro",
  15363. height: math.unit(250, "feet")
  15364. },
  15365. {
  15366. name: "Megamacro",
  15367. height: math.unit(75, "miles")
  15368. },
  15369. {
  15370. name: "Texas-sized",
  15371. height: math.unit(750, "miles")
  15372. },
  15373. {
  15374. name: "Teramacro",
  15375. height: math.unit(50000, "miles")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(269, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/danny-kapowsky/front.svg",
  15388. extra: 766 / 736,
  15389. bottom: 0.044
  15390. }
  15391. },
  15392. back: {
  15393. height: math.unit(6, "feet"),
  15394. weight: math.unit(269, "lb"),
  15395. name: "Back",
  15396. image: {
  15397. source: "./media/characters/danny-kapowsky/back.svg",
  15398. extra: 797 / 760,
  15399. bottom: 0.025
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(150, "feet"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Macro+",
  15411. height: math.unit(200, "feet")
  15412. },
  15413. {
  15414. name: "Macro++",
  15415. height: math.unit(300, "feet")
  15416. },
  15417. {
  15418. name: "Macro+++",
  15419. height: math.unit(400, "feet")
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15425. {
  15426. side: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(170, "lb"),
  15429. name: "Side",
  15430. image: {
  15431. source: "./media/characters/finn/side.svg",
  15432. extra: 1953 / 1807,
  15433. bottom: 0.057
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Megamacro",
  15440. height: math.unit(14445, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15447. {
  15448. front: {
  15449. height: math.unit(5 + 6 / 12, "feet"),
  15450. weight: math.unit(125, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/roy/front.svg",
  15454. extra: 1,
  15455. bottom: 0.11
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Micro",
  15462. height: math.unit(3, "inches"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Normal",
  15467. height: math.unit(5 + 6 / 12, "feet")
  15468. },
  15469. {
  15470. name: "Lesser Macro",
  15471. height: math.unit(60, "feet")
  15472. },
  15473. {
  15474. name: "Greater Macro",
  15475. height: math.unit(120, "feet")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(100, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/aevsivs/front.svg",
  15488. extra: 1,
  15489. bottom: 0.03
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(100, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/aevsivs/back.svg"
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Micro",
  15504. height: math.unit(2, "inches"),
  15505. default: true
  15506. },
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(5, "feet")
  15510. },
  15511. ]
  15512. ))
  15513. characterMakers.push(() => makeCharacter(
  15514. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15515. {
  15516. front: {
  15517. height: math.unit(5 + 7 / 12, "feet"),
  15518. weight: math.unit(159, "lb"),
  15519. name: "Front",
  15520. image: {
  15521. source: "./media/characters/hildegard/front.svg",
  15522. extra: 289 / 269,
  15523. bottom: 7.63 / 297.8
  15524. }
  15525. },
  15526. back: {
  15527. height: math.unit(5 + 7 / 12, "feet"),
  15528. weight: math.unit(159, "lb"),
  15529. name: "Back",
  15530. image: {
  15531. source: "./media/characters/hildegard/back.svg",
  15532. extra: 280 / 260,
  15533. bottom: 2.3 / 282
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(5 + 7 / 12, "feet"),
  15541. default: true
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15547. {
  15548. bernard: {
  15549. height: math.unit(2 + 7 / 12, "feet"),
  15550. weight: math.unit(66, "lb"),
  15551. name: "Bernard",
  15552. rename: true,
  15553. image: {
  15554. source: "./media/characters/bernard-wilder/bernard.svg",
  15555. extra: 192 / 128,
  15556. bottom: 0.05
  15557. }
  15558. },
  15559. wilder: {
  15560. height: math.unit(5 + 8 / 12, "feet"),
  15561. weight: math.unit(143, "lb"),
  15562. name: "Wilder",
  15563. rename: true,
  15564. image: {
  15565. source: "./media/characters/bernard-wilder/wilder.svg",
  15566. extra: 361 / 312,
  15567. bottom: 0.02
  15568. }
  15569. },
  15570. },
  15571. [
  15572. {
  15573. name: "Normal",
  15574. height: math.unit(2 + 7 / 12, "feet"),
  15575. default: true
  15576. },
  15577. ]
  15578. ))
  15579. characterMakers.push(() => makeCharacter(
  15580. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15581. {
  15582. anthro: {
  15583. height: math.unit(6 + 1 / 12, "feet"),
  15584. weight: math.unit(155, "lb"),
  15585. name: "Anthro",
  15586. image: {
  15587. source: "./media/characters/hearth/anthro.svg",
  15588. extra: 1178/1136,
  15589. bottom: 28/1206
  15590. }
  15591. },
  15592. feral: {
  15593. height: math.unit(3.78, "feet"),
  15594. weight: math.unit(35, "kg"),
  15595. name: "Feral",
  15596. image: {
  15597. source: "./media/characters/hearth/feral.svg",
  15598. extra: 153 / 135,
  15599. bottom: 0.03
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(6 + 1 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(182, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/ingrid/front.svg",
  15620. extra: 294 / 268,
  15621. bottom: 0.027
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(6, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15635. {
  15636. eevee: {
  15637. height: math.unit(2 + 10 / 12, "feet"),
  15638. weight: math.unit(86, "lb"),
  15639. name: "Malgam",
  15640. image: {
  15641. source: "./media/characters/malgam/eevee.svg",
  15642. extra: 952/784,
  15643. bottom: 38/990
  15644. }
  15645. },
  15646. sylveon: {
  15647. height: math.unit(4, "feet"),
  15648. weight: math.unit(101, "lb"),
  15649. name: "Future Malgam",
  15650. rename: true,
  15651. image: {
  15652. source: "./media/characters/malgam/sylveon.svg",
  15653. extra: 371 / 325,
  15654. bottom: 0.015
  15655. }
  15656. },
  15657. gigantamax: {
  15658. height: math.unit(50, "feet"),
  15659. name: "Gigantamax Malgam",
  15660. rename: true,
  15661. image: {
  15662. source: "./media/characters/malgam/gigantamax.svg"
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(2 + 10 / 12, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(5 + 11 / 12, "feet"),
  15679. weight: math.unit(188, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/fleur/front.svg",
  15683. extra: 309 / 283,
  15684. bottom: 0.007
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(5 + 11 / 12, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(5 + 4 / 12, "feet"),
  15701. weight: math.unit(122, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/jude/front.svg",
  15705. extra: 288 / 273,
  15706. bottom: 0.03
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(5 + 4 / 12, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(5 + 11 / 12, "feet"),
  15723. weight: math.unit(190, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/seara/front.svg",
  15727. extra: 1,
  15728. bottom: 0.05
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(5 + 11 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(16 + 5 / 12, "feet"),
  15745. weight: math.unit(524, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/caspian-lugia/front.svg",
  15749. extra: 1,
  15750. bottom: 0.04
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(16 + 5 / 12, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(5 + 7 / 12, "feet"),
  15767. weight: math.unit(170, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/mika/front.svg",
  15771. extra: 1,
  15772. bottom: 0.016
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(5 + 7 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6 + 2 / 12, "feet"),
  15789. weight: math.unit(268, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/sol/front.svg",
  15793. extra: 247 / 231,
  15794. bottom: 0.05
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(6 + 2 / 12, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15808. {
  15809. buizel: {
  15810. height: math.unit(2 + 5 / 12, "feet"),
  15811. weight: math.unit(87, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/umiko/buizel.svg",
  15815. extra: 172 / 157,
  15816. bottom: 0.01
  15817. },
  15818. form: "buizel",
  15819. default: true
  15820. },
  15821. floatzel: {
  15822. height: math.unit(5 + 9 / 12, "feet"),
  15823. weight: math.unit(250, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/umiko/floatzel.svg",
  15827. extra: 1076/1006,
  15828. bottom: 15/1091
  15829. },
  15830. form: "floatzel",
  15831. default: true
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(2 + 5 / 12, "feet"),
  15838. form: "buizel",
  15839. default: true
  15840. },
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(5 + 9 / 12, "feet"),
  15844. form: "floatzel",
  15845. default: true
  15846. },
  15847. ],
  15848. {
  15849. "buizel": {
  15850. name: "Buizel"
  15851. },
  15852. "floatzel": {
  15853. name: "Floatzel",
  15854. default: true
  15855. }
  15856. }
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15860. {
  15861. front: {
  15862. height: math.unit(6 + 2 / 12, "feet"),
  15863. weight: math.unit(146, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/iliac/front.svg",
  15867. extra: 389 / 365,
  15868. bottom: 0.035
  15869. }
  15870. },
  15871. },
  15872. [
  15873. {
  15874. name: "Normal",
  15875. height: math.unit(6 + 2 / 12, "feet"),
  15876. default: true
  15877. },
  15878. ]
  15879. ))
  15880. characterMakers.push(() => makeCharacter(
  15881. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15882. {
  15883. front: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(170, "lb"),
  15886. name: "Front",
  15887. image: {
  15888. source: "./media/characters/topaz/front.svg",
  15889. extra: 317 / 303,
  15890. bottom: 0.055
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(6, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(5 + 11 / 12, "feet"),
  15907. weight: math.unit(144, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/gabriel/front.svg",
  15911. extra: 285 / 262,
  15912. bottom: 0.004
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(5 + 11 / 12, "feet"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15926. {
  15927. side: {
  15928. height: math.unit(6 + 5 / 12, "feet"),
  15929. weight: math.unit(300, "lb"),
  15930. name: "Side",
  15931. image: {
  15932. source: "./media/characters/tempest-suicune/side.svg",
  15933. extra: 195 / 154,
  15934. bottom: 0.04
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Normal",
  15941. height: math.unit(6 + 5 / 12, "feet"),
  15942. default: true
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(7 + 2 / 12, "feet"),
  15951. weight: math.unit(322, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/vulcan/front.svg",
  15955. extra: 154 / 147,
  15956. bottom: 0.04
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(7 + 2 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 10 / 12, "feet"),
  15973. weight: math.unit(264, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/gault/front.svg",
  15977. extra: 161 / 140,
  15978. bottom: 0.028
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 10 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(6, "feet"),
  15995. weight: math.unit(150, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/shard/front.svg",
  15999. extra: 273 / 238,
  16000. bottom: 0.02
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(3 + 6 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(5 + 11 / 12, "feet"),
  16017. weight: math.unit(146, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/ashe/front.svg",
  16021. extra: 400 / 373,
  16022. bottom: 0.01
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(5 + 11 / 12, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(5 + 5 / 12, "feet"),
  16039. weight: math.unit(135, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/beatrix/front.svg",
  16043. extra: 392 / 379,
  16044. bottom: 0.01
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Normal",
  16051. height: math.unit(6, "feet"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(6 + 2/12, "feet"),
  16061. weight: math.unit(135, "lb"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/ignatius/front.svg",
  16065. extra: 1380/1259,
  16066. bottom: 27/1407
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Normal",
  16073. height: math.unit(6 + 2/12, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(6 + 2 / 12, "feet"),
  16083. weight: math.unit(138, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/mei-li/front.svg",
  16087. extra: 237 / 229,
  16088. bottom: 0.03
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Normal",
  16095. height: math.unit(6 + 2 / 12, "feet"),
  16096. default: true
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(2 + 4 / 12, "feet"),
  16105. weight: math.unit(62, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/puru/front.svg",
  16109. extra: 206 / 149,
  16110. bottom: 0.06
  16111. }
  16112. },
  16113. },
  16114. [
  16115. {
  16116. name: "Normal",
  16117. height: math.unit(2 + 4 / 12, "feet"),
  16118. default: true
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16124. {
  16125. anthro: {
  16126. height: math.unit(5 + 8/12, "feet"),
  16127. weight: math.unit(200, "lb"),
  16128. energyNeed: math.unit(2000, "kcal"),
  16129. name: "Anthro",
  16130. image: {
  16131. source: "./media/characters/kee/anthro.svg",
  16132. extra: 3251/3184,
  16133. bottom: 250/3501
  16134. }
  16135. },
  16136. taur: {
  16137. height: math.unit(11, "feet"),
  16138. weight: math.unit(500, "lb"),
  16139. energyNeed: math.unit(5000, "kcal"),
  16140. name: "Taur",
  16141. image: {
  16142. source: "./media/characters/kee/taur.svg",
  16143. extra: 1362/1320,
  16144. bottom: 83/1445
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Normal",
  16151. height: math.unit(5 + 8/12, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Macro",
  16156. height: math.unit(35, "feet")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16162. {
  16163. anthro: {
  16164. height: math.unit(7, "feet"),
  16165. weight: math.unit(190, "lb"),
  16166. name: "Anthro",
  16167. image: {
  16168. source: "./media/characters/cobalt-dracha/anthro.svg",
  16169. extra: 231 / 225,
  16170. bottom: 0.04
  16171. }
  16172. },
  16173. feral: {
  16174. height: math.unit(9 + 7 / 12, "feet"),
  16175. weight: math.unit(294, "lb"),
  16176. name: "Feral",
  16177. image: {
  16178. source: "./media/characters/cobalt-dracha/feral.svg",
  16179. extra: 692 / 633,
  16180. bottom: 0.05
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Normal",
  16187. height: math.unit(7, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16194. {
  16195. fallen: {
  16196. height: math.unit(11 + 8 / 12, "feet"),
  16197. weight: math.unit(485, "lb"),
  16198. name: "Java (Fallen)",
  16199. rename: true,
  16200. image: {
  16201. source: "./media/characters/java/fallen.svg",
  16202. extra: 226 / 208,
  16203. bottom: 0.005
  16204. }
  16205. },
  16206. godkin: {
  16207. height: math.unit(10 + 6 / 12, "feet"),
  16208. weight: math.unit(328, "lb"),
  16209. name: "Java (Godkin)",
  16210. rename: true,
  16211. image: {
  16212. source: "./media/characters/java/godkin.svg",
  16213. extra: 1104/1068,
  16214. bottom: 36/1140
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(11 + 8 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(5 + 9 / 12, "feet"),
  16231. weight: math.unit(170, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/purna/front.svg",
  16235. extra: 239 / 229,
  16236. bottom: 0.01
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(5 + 9 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(5 + 9 / 12, "feet"),
  16253. weight: math.unit(142, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/kuva/front.svg",
  16257. extra: 281 / 271,
  16258. bottom: 0.006
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(5 + 9 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16272. {
  16273. anthro: {
  16274. height: math.unit(9 + 2 / 12, "feet"),
  16275. weight: math.unit(270, "lb"),
  16276. name: "Anthro",
  16277. image: {
  16278. source: "./media/characters/embra/anthro.svg",
  16279. extra: 200 / 187,
  16280. bottom: 0.02
  16281. }
  16282. },
  16283. feral: {
  16284. height: math.unit(18 + 8 / 12, "feet"),
  16285. weight: math.unit(576, "lb"),
  16286. name: "Feral",
  16287. image: {
  16288. source: "./media/characters/embra/feral.svg",
  16289. extra: 152 / 137,
  16290. bottom: 0.037
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(9 + 2 / 12, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16304. {
  16305. anthro: {
  16306. height: math.unit(10 + 9 / 12, "feet"),
  16307. weight: math.unit(224, "lb"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/grottos/anthro.svg",
  16311. extra: 350 / 332,
  16312. bottom: 0.045
  16313. }
  16314. },
  16315. feral: {
  16316. height: math.unit(20 + 7 / 12, "feet"),
  16317. weight: math.unit(629, "lb"),
  16318. name: "Feral",
  16319. image: {
  16320. source: "./media/characters/grottos/feral.svg",
  16321. extra: 207 / 190,
  16322. bottom: 0.05
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(10 + 9 / 12, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16336. {
  16337. anthro: {
  16338. height: math.unit(9 + 6 / 12, "feet"),
  16339. weight: math.unit(298, "lb"),
  16340. name: "Anthro",
  16341. image: {
  16342. source: "./media/characters/frifna/anthro.svg",
  16343. extra: 282 / 269,
  16344. bottom: 0.015
  16345. }
  16346. },
  16347. feral: {
  16348. height: math.unit(16 + 2 / 12, "feet"),
  16349. weight: math.unit(624, "lb"),
  16350. name: "Feral",
  16351. image: {
  16352. source: "./media/characters/frifna/feral.svg"
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(9 + 6 / 12, "feet"),
  16360. default: true
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16366. {
  16367. front: {
  16368. height: math.unit(6 + 2 / 12, "feet"),
  16369. weight: math.unit(168, "lb"),
  16370. name: "Front",
  16371. image: {
  16372. source: "./media/characters/elise/front.svg",
  16373. extra: 276 / 271
  16374. }
  16375. },
  16376. },
  16377. [
  16378. {
  16379. name: "Normal",
  16380. height: math.unit(6 + 2 / 12, "feet"),
  16381. default: true
  16382. },
  16383. ]
  16384. ))
  16385. characterMakers.push(() => makeCharacter(
  16386. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16387. {
  16388. front: {
  16389. height: math.unit(5 + 10 / 12, "feet"),
  16390. weight: math.unit(210, "lb"),
  16391. name: "Front",
  16392. image: {
  16393. source: "./media/characters/glade/front.svg",
  16394. extra: 258 / 247,
  16395. bottom: 0.008
  16396. }
  16397. },
  16398. },
  16399. [
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(5 + 10 / 12, "feet"),
  16403. default: true
  16404. },
  16405. ]
  16406. ))
  16407. characterMakers.push(() => makeCharacter(
  16408. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16409. {
  16410. front: {
  16411. height: math.unit(5 + 10 / 12, "feet"),
  16412. weight: math.unit(129, "lb"),
  16413. name: "Front",
  16414. image: {
  16415. source: "./media/characters/rina/front.svg",
  16416. extra: 266 / 255,
  16417. bottom: 0.005
  16418. }
  16419. },
  16420. },
  16421. [
  16422. {
  16423. name: "Normal",
  16424. height: math.unit(5 + 10 / 12, "feet"),
  16425. default: true
  16426. },
  16427. ]
  16428. ))
  16429. characterMakers.push(() => makeCharacter(
  16430. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16431. {
  16432. front: {
  16433. height: math.unit(6 + 1 / 12, "feet"),
  16434. weight: math.unit(192, "lb"),
  16435. name: "Front",
  16436. image: {
  16437. source: "./media/characters/veronica/front.svg",
  16438. extra: 319 / 309,
  16439. bottom: 0.005
  16440. }
  16441. },
  16442. },
  16443. [
  16444. {
  16445. name: "Normal",
  16446. height: math.unit(6 + 1 / 12, "feet"),
  16447. default: true
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(9 + 3 / 12, "feet"),
  16456. weight: math.unit(1100, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/braxton/front.svg",
  16460. extra: 1057 / 984,
  16461. bottom: 0.05
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Normal",
  16468. height: math.unit(9 + 3 / 12, "feet")
  16469. },
  16470. {
  16471. name: "Giant",
  16472. height: math.unit(300, "feet"),
  16473. default: true
  16474. },
  16475. {
  16476. name: "Macro",
  16477. height: math.unit(700, "feet")
  16478. },
  16479. {
  16480. name: "Megamacro",
  16481. height: math.unit(6000, "feet")
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(6 + 7 / 12, "feet"),
  16490. weight: math.unit(150, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/blue-feyonics/front.svg",
  16494. extra: 1403 / 1306,
  16495. bottom: 0.047
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(6 + 7 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(1.8, "meters"),
  16512. weight: math.unit(60, "kg"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/maxwell/front.svg",
  16516. extra: 2060 / 1873
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Micro",
  16523. height: math.unit(1, "mm")
  16524. },
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(1.8, "meter"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Macro",
  16532. height: math.unit(30, "meters")
  16533. },
  16534. {
  16535. name: "Megamacro",
  16536. height: math.unit(10, "km")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(6, "feet"),
  16545. weight: math.unit(150, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/jack/front.svg",
  16549. extra: 1754 / 1640,
  16550. bottom: 0.01
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(80000, "feet"),
  16558. default: true
  16559. },
  16560. {
  16561. name: "Max size",
  16562. height: math.unit(10, "lightyears")
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16568. {
  16569. urban: {
  16570. height: math.unit(5, "feet"),
  16571. weight: math.unit(240, "lb"),
  16572. name: "Urban",
  16573. image: {
  16574. source: "./media/characters/cafat/urban.svg",
  16575. extra: 1223/1126,
  16576. bottom: 205/1428
  16577. }
  16578. },
  16579. summer: {
  16580. height: math.unit(5, "feet"),
  16581. weight: math.unit(240, "lb"),
  16582. name: "Summer",
  16583. image: {
  16584. source: "./media/characters/cafat/summer.svg",
  16585. extra: 1223/1126,
  16586. bottom: 205/1428
  16587. }
  16588. },
  16589. winter: {
  16590. height: math.unit(5, "feet"),
  16591. weight: math.unit(240, "lb"),
  16592. name: "Winter",
  16593. image: {
  16594. source: "./media/characters/cafat/winter.svg",
  16595. extra: 1223/1126,
  16596. bottom: 205/1428
  16597. }
  16598. },
  16599. lingerie: {
  16600. height: math.unit(5, "feet"),
  16601. weight: math.unit(240, "lb"),
  16602. name: "Lingerie",
  16603. image: {
  16604. source: "./media/characters/cafat/lingerie.svg",
  16605. extra: 1223/1126,
  16606. bottom: 205/1428
  16607. }
  16608. },
  16609. upright: {
  16610. height: math.unit(6.3, "feet"),
  16611. weight: math.unit(240, "lb"),
  16612. name: "Upright",
  16613. image: {
  16614. source: "./media/characters/cafat/upright.svg",
  16615. bottom: 0.01
  16616. }
  16617. },
  16618. uprightFull: {
  16619. height: math.unit(6.3, "feet"),
  16620. weight: math.unit(240, "lb"),
  16621. name: "Upright (Full)",
  16622. image: {
  16623. source: "./media/characters/cafat/upright-full.svg",
  16624. bottom: 0.01
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Small",
  16631. height: math.unit(5, "feet"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Large",
  16636. height: math.unit(13, "feet")
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16642. {
  16643. front: {
  16644. height: math.unit(6, "feet"),
  16645. weight: math.unit(150, "lb"),
  16646. name: "Front",
  16647. image: {
  16648. source: "./media/characters/verin-raharra/front.svg",
  16649. extra: 5019 / 4835,
  16650. bottom: 0.023
  16651. }
  16652. },
  16653. },
  16654. [
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(7 + 5 / 12, "feet"),
  16658. default: true
  16659. },
  16660. {
  16661. name: "Upsized",
  16662. height: math.unit(20, "feet")
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(7, "feet"),
  16671. weight: math.unit(230, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/nakata/front.svg",
  16675. extra: 1.005,
  16676. bottom: 0.01
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(7, "feet"),
  16684. default: true
  16685. },
  16686. {
  16687. name: "Big",
  16688. height: math.unit(14, "feet")
  16689. },
  16690. {
  16691. name: "Macro",
  16692. height: math.unit(400, "feet")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16698. {
  16699. front: {
  16700. height: math.unit(4.91, "feet"),
  16701. weight: math.unit(100, "lb"),
  16702. name: "Front",
  16703. image: {
  16704. source: "./media/characters/lily/front.svg",
  16705. extra: 1585 / 1415,
  16706. bottom: 0.02
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(4.91, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16720. {
  16721. laying: {
  16722. height: math.unit(4 + 4 / 12, "feet"),
  16723. weight: math.unit(600, "lb"),
  16724. name: "Laying",
  16725. image: {
  16726. source: "./media/characters/sheila/laying.svg",
  16727. extra: 1333 / 1265,
  16728. bottom: 0.16
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(4 + 4 / 12, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(190, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/sax/front.svg",
  16749. extra: 1187 / 973,
  16750. bottom: 0.042
  16751. }
  16752. },
  16753. },
  16754. [
  16755. {
  16756. name: "Micro",
  16757. height: math.unit(4, "inches"),
  16758. default: true
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/pandora/front.svg",
  16771. extra: 2720 / 2556,
  16772. bottom: 0.015
  16773. }
  16774. },
  16775. back: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(150, "lb"),
  16778. name: "Back",
  16779. image: {
  16780. source: "./media/characters/pandora/back.svg",
  16781. extra: 2720 / 2556,
  16782. bottom: 0.01
  16783. }
  16784. },
  16785. beans: {
  16786. height: math.unit(6 / 8, "feet"),
  16787. name: "Beans",
  16788. image: {
  16789. source: "./media/characters/pandora/beans.svg"
  16790. }
  16791. },
  16792. collar: {
  16793. height: math.unit(0.31, "feet"),
  16794. name: "Collar",
  16795. image: {
  16796. source: "./media/characters/pandora/collar.svg"
  16797. }
  16798. },
  16799. skirt: {
  16800. height: math.unit(6, "feet"),
  16801. weight: math.unit(150, "lb"),
  16802. name: "Skirt",
  16803. image: {
  16804. source: "./media/characters/pandora/skirt.svg",
  16805. extra: 1622 / 1525,
  16806. bottom: 0.015
  16807. }
  16808. },
  16809. hoodie: {
  16810. height: math.unit(6, "feet"),
  16811. weight: math.unit(150, "lb"),
  16812. name: "Hoodie",
  16813. image: {
  16814. source: "./media/characters/pandora/hoodie.svg",
  16815. extra: 1622 / 1525,
  16816. bottom: 0.015
  16817. }
  16818. },
  16819. casual: {
  16820. height: math.unit(6, "feet"),
  16821. weight: math.unit(150, "lb"),
  16822. name: "Casual",
  16823. image: {
  16824. source: "./media/characters/pandora/casual.svg",
  16825. extra: 1622 / 1525,
  16826. bottom: 0.015
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(6, "feet")
  16834. },
  16835. {
  16836. name: "Big Steppy",
  16837. height: math.unit(1, "km"),
  16838. default: true
  16839. },
  16840. {
  16841. name: "Galactic Steppy",
  16842. height: math.unit(2, "gigameters")
  16843. },
  16844. ]
  16845. ))
  16846. characterMakers.push(() => makeCharacter(
  16847. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16848. {
  16849. side: {
  16850. height: math.unit(10, "feet"),
  16851. weight: math.unit(800, "kg"),
  16852. name: "Side",
  16853. image: {
  16854. source: "./media/characters/venio-darcony/side.svg",
  16855. extra: 1373 / 1003,
  16856. bottom: 0.037
  16857. }
  16858. },
  16859. front: {
  16860. height: math.unit(19, "feet"),
  16861. weight: math.unit(800, "kg"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/venio-darcony/front.svg"
  16865. }
  16866. },
  16867. back: {
  16868. height: math.unit(19, "feet"),
  16869. weight: math.unit(800, "kg"),
  16870. name: "Back",
  16871. image: {
  16872. source: "./media/characters/venio-darcony/back.svg"
  16873. }
  16874. },
  16875. sideNsfw: {
  16876. height: math.unit(10, "feet"),
  16877. weight: math.unit(800, "kg"),
  16878. name: "Side (NSFW)",
  16879. image: {
  16880. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16881. extra: 1373 / 1003,
  16882. bottom: 0.037
  16883. }
  16884. },
  16885. frontNsfw: {
  16886. height: math.unit(19, "feet"),
  16887. weight: math.unit(800, "kg"),
  16888. name: "Front (NSFW)",
  16889. image: {
  16890. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16891. }
  16892. },
  16893. backNsfw: {
  16894. height: math.unit(19, "feet"),
  16895. weight: math.unit(800, "kg"),
  16896. name: "Back (NSFW)",
  16897. image: {
  16898. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16899. }
  16900. },
  16901. sideArmored: {
  16902. height: math.unit(10, "feet"),
  16903. weight: math.unit(800, "kg"),
  16904. name: "Side (Armored)",
  16905. image: {
  16906. source: "./media/characters/venio-darcony/side-armored.svg",
  16907. extra: 1373 / 1003,
  16908. bottom: 0.037
  16909. }
  16910. },
  16911. frontArmored: {
  16912. height: math.unit(19, "feet"),
  16913. weight: math.unit(900, "kg"),
  16914. name: "Front (Armored)",
  16915. image: {
  16916. source: "./media/characters/venio-darcony/front-armored.svg"
  16917. }
  16918. },
  16919. backArmored: {
  16920. height: math.unit(19, "feet"),
  16921. weight: math.unit(900, "kg"),
  16922. name: "Back (Armored)",
  16923. image: {
  16924. source: "./media/characters/venio-darcony/back-armored.svg"
  16925. }
  16926. },
  16927. sword: {
  16928. height: math.unit(10, "feet"),
  16929. weight: math.unit(50, "lb"),
  16930. name: "Sword",
  16931. image: {
  16932. source: "./media/characters/venio-darcony/sword.svg"
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(10, "feet")
  16940. },
  16941. {
  16942. name: "Macro",
  16943. height: math.unit(130, "feet"),
  16944. default: true
  16945. },
  16946. {
  16947. name: "Macro+",
  16948. height: math.unit(240, "feet")
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(6, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/veski/front.svg",
  16961. extra: 1299 / 1225,
  16962. bottom: 0.04
  16963. }
  16964. },
  16965. back: {
  16966. height: math.unit(6, "feet"),
  16967. weight: math.unit(150, "lb"),
  16968. name: "Back",
  16969. image: {
  16970. source: "./media/characters/veski/back.svg",
  16971. extra: 1299 / 1225,
  16972. bottom: 0.008
  16973. }
  16974. },
  16975. maw: {
  16976. height: math.unit(1.5 * 1.21, "feet"),
  16977. name: "Maw",
  16978. image: {
  16979. source: "./media/characters/veski/maw.svg"
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Macro",
  16986. height: math.unit(2, "km"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(5 + 7 / 12, "feet"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/isabelle/front.svg",
  16999. extra: 2130 / 1976,
  17000. bottom: 0.05
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Supermicro",
  17007. height: math.unit(10, "micrometers")
  17008. },
  17009. {
  17010. name: "Micro",
  17011. height: math.unit(1, "inch")
  17012. },
  17013. {
  17014. name: "Tiny",
  17015. height: math.unit(5, "inches")
  17016. },
  17017. {
  17018. name: "Standard",
  17019. height: math.unit(5 + 7 / 12, "inches")
  17020. },
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(80, "meters"),
  17024. default: true
  17025. },
  17026. {
  17027. name: "Megamacro",
  17028. height: math.unit(250, "meters")
  17029. },
  17030. {
  17031. name: "Gigamacro",
  17032. height: math.unit(5, "km")
  17033. },
  17034. {
  17035. name: "Cosmic",
  17036. height: math.unit(2.5e6, "miles")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/hanzo/front.svg",
  17049. extra: 374 / 344,
  17050. bottom: 0.02
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(8, "feet"),
  17058. default: true
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17064. {
  17065. front: {
  17066. height: math.unit(7, "feet"),
  17067. weight: math.unit(130, "lb"),
  17068. name: "Front",
  17069. image: {
  17070. source: "./media/characters/anna/front.svg",
  17071. extra: 169 / 145,
  17072. bottom: 0.06
  17073. }
  17074. },
  17075. full: {
  17076. height: math.unit(4.96, "feet"),
  17077. weight: math.unit(220, "lb"),
  17078. name: "Full",
  17079. image: {
  17080. source: "./media/characters/anna/full.svg",
  17081. extra: 138 / 114,
  17082. bottom: 0.15
  17083. }
  17084. },
  17085. tongue: {
  17086. height: math.unit(2.53, "feet"),
  17087. name: "Tongue",
  17088. image: {
  17089. source: "./media/characters/anna/tongue.svg"
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Normal",
  17096. height: math.unit(7, "feet"),
  17097. default: true
  17098. },
  17099. ]
  17100. ))
  17101. characterMakers.push(() => makeCharacter(
  17102. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17103. {
  17104. front: {
  17105. height: math.unit(7, "feet"),
  17106. weight: math.unit(150, "lb"),
  17107. name: "Front",
  17108. image: {
  17109. source: "./media/characters/ian-corvid/front.svg",
  17110. extra: 150 / 142,
  17111. bottom: 0.02
  17112. }
  17113. },
  17114. back: {
  17115. height: math.unit(7, "feet"),
  17116. weight: math.unit(150, "lb"),
  17117. name: "Back",
  17118. image: {
  17119. source: "./media/characters/ian-corvid/back.svg",
  17120. extra: 150 / 143,
  17121. bottom: 0.01
  17122. }
  17123. },
  17124. stomping: {
  17125. height: math.unit(7, "feet"),
  17126. weight: math.unit(150, "lb"),
  17127. name: "Stomping",
  17128. image: {
  17129. source: "./media/characters/ian-corvid/stomping.svg",
  17130. extra: 76 / 72
  17131. }
  17132. },
  17133. sitting: {
  17134. height: math.unit(7 / 1.8, "feet"),
  17135. weight: math.unit(150, "lb"),
  17136. name: "Sitting",
  17137. image: {
  17138. source: "./media/characters/ian-corvid/sitting.svg",
  17139. extra: 1400 / 1269,
  17140. bottom: 0.15
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Tiny Microw",
  17147. height: math.unit(1, "inch")
  17148. },
  17149. {
  17150. name: "Microw",
  17151. height: math.unit(6, "inches")
  17152. },
  17153. {
  17154. name: "Crow",
  17155. height: math.unit(7 + 1 / 12, "feet"),
  17156. default: true
  17157. },
  17158. {
  17159. name: "Macrow",
  17160. height: math.unit(176, "feet")
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(5 + 7 / 12, "feet"),
  17169. weight: math.unit(147, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/natalie-kellon/front.svg",
  17173. extra: 1214 / 1141,
  17174. bottom: 0.02
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Micro",
  17181. height: math.unit(1 / 16, "inch")
  17182. },
  17183. {
  17184. name: "Tiny",
  17185. height: math.unit(4, "inches")
  17186. },
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(5 + 7 / 12, "feet"),
  17190. default: true
  17191. },
  17192. {
  17193. name: "Amazon",
  17194. height: math.unit(12, "feet")
  17195. },
  17196. {
  17197. name: "Giantess",
  17198. height: math.unit(160, "meters")
  17199. },
  17200. {
  17201. name: "Titaness",
  17202. height: math.unit(800, "meters")
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/alluria/front.svg",
  17215. extra: 806 / 738,
  17216. bottom: 0.01
  17217. }
  17218. },
  17219. side: {
  17220. height: math.unit(6, "feet"),
  17221. weight: math.unit(150, "lb"),
  17222. name: "Side",
  17223. image: {
  17224. source: "./media/characters/alluria/side.svg",
  17225. extra: 800 / 750,
  17226. }
  17227. },
  17228. back: {
  17229. height: math.unit(6, "feet"),
  17230. weight: math.unit(150, "lb"),
  17231. name: "Back",
  17232. image: {
  17233. source: "./media/characters/alluria/back.svg",
  17234. extra: 806 / 738,
  17235. }
  17236. },
  17237. frontMaid: {
  17238. height: math.unit(6, "feet"),
  17239. weight: math.unit(150, "lb"),
  17240. name: "Front (Maid)",
  17241. image: {
  17242. source: "./media/characters/alluria/front-maid.svg",
  17243. extra: 806 / 738,
  17244. bottom: 0.01
  17245. }
  17246. },
  17247. sideMaid: {
  17248. height: math.unit(6, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Side (Maid)",
  17251. image: {
  17252. source: "./media/characters/alluria/side-maid.svg",
  17253. extra: 800 / 750,
  17254. bottom: 0.005
  17255. }
  17256. },
  17257. backMaid: {
  17258. height: math.unit(6, "feet"),
  17259. weight: math.unit(150, "lb"),
  17260. name: "Back (Maid)",
  17261. image: {
  17262. source: "./media/characters/alluria/back-maid.svg",
  17263. extra: 806 / 738,
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Micro",
  17270. height: math.unit(6, "inches"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/kyle/front.svg",
  17284. extra: 1069 / 962,
  17285. bottom: 77.228 / 1727.45
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(150, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(6, "feet"),
  17302. weight: math.unit(300, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/duncan/front.svg",
  17306. extra: 1650 / 1482,
  17307. bottom: 0.05
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(100, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 4 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/memory/front.svg",
  17328. extra: 3641 / 3545,
  17329. bottom: 0.03
  17330. }
  17331. },
  17332. back: {
  17333. height: math.unit(5 + 4 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Back",
  17336. image: {
  17337. source: "./media/characters/memory/back.svg",
  17338. extra: 3641 / 3545,
  17339. bottom: 0.025
  17340. }
  17341. },
  17342. frontSkirt: {
  17343. height: math.unit(5 + 4 / 12, "feet"),
  17344. weight: math.unit(220, "lb"),
  17345. name: "Front (Skirt)",
  17346. image: {
  17347. source: "./media/characters/memory/front-skirt.svg",
  17348. extra: 3641 / 3545,
  17349. bottom: 0.03
  17350. }
  17351. },
  17352. frontDress: {
  17353. height: math.unit(5 + 4 / 12, "feet"),
  17354. weight: math.unit(220, "lb"),
  17355. name: "Front (Dress)",
  17356. image: {
  17357. source: "./media/characters/memory/front-dress.svg",
  17358. extra: 3641 / 3545,
  17359. bottom: 0.03
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Micro",
  17366. height: math.unit(6, "inches"),
  17367. default: true
  17368. },
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(5 + 4 / 12, "feet")
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(4 + 11 / 12, "feet"),
  17380. weight: math.unit(100, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/luno/front.svg",
  17384. extra: 1535 / 1487,
  17385. bottom: 0.03
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Micro",
  17392. height: math.unit(3, "inches")
  17393. },
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(4 + 11 / 12, "feet"),
  17397. default: true
  17398. },
  17399. {
  17400. name: "Macro",
  17401. height: math.unit(300, "feet")
  17402. },
  17403. {
  17404. name: "Megamacro",
  17405. height: math.unit(700, "miles")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(6 + 2 / 12, "feet"),
  17414. weight: math.unit(170, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/jamesy/front.svg",
  17418. extra: 440 / 382,
  17419. bottom: 0.005
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Micro",
  17426. height: math.unit(3, "inches")
  17427. },
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(6 + 2 / 12, "feet"),
  17431. default: true
  17432. },
  17433. {
  17434. name: "Macro",
  17435. height: math.unit(300, "feet")
  17436. },
  17437. {
  17438. name: "Megamacro",
  17439. height: math.unit(700, "miles")
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(6, "feet"),
  17448. weight: math.unit(160, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/mark/front.svg",
  17452. extra: 3300 / 3100,
  17453. bottom: 136.42 / 3440.47
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Macro",
  17460. height: math.unit(120, "meters")
  17461. },
  17462. {
  17463. name: "Bigger Macro",
  17464. height: math.unit(350, "meters")
  17465. },
  17466. {
  17467. name: "Megamacro",
  17468. height: math.unit(8, "km"),
  17469. default: true
  17470. },
  17471. {
  17472. name: "Continental",
  17473. height: math.unit(4550, "km")
  17474. },
  17475. {
  17476. name: "Planetary",
  17477. height: math.unit(65000, "km")
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6, "feet"),
  17486. weight: math.unit(400, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/mac/front.svg",
  17490. extra: 1048 / 987.7,
  17491. bottom: 60 / 1107.6,
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Macro",
  17498. height: math.unit(500, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(190, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/bari/front.svg",
  17512. extra: 3156 / 2880,
  17513. bottom: 0.03
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(5 + 2 / 12, "feet"),
  17518. weight: math.unit(190, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/bari/back.svg",
  17522. extra: 3260 / 2834,
  17523. bottom: 0.025
  17524. }
  17525. },
  17526. frontPlush: {
  17527. height: math.unit(5 + 2 / 12, "feet"),
  17528. weight: math.unit(190, "lb"),
  17529. name: "Front (Plush)",
  17530. image: {
  17531. source: "./media/characters/bari/front-plush.svg",
  17532. extra: 1112 / 1061,
  17533. bottom: 0.002
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(3, "inches")
  17541. },
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(5 + 2 / 12, "feet"),
  17545. default: true
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(20, "feet")
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(6 + 1 / 12, "feet"),
  17558. weight: math.unit(275, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/hunter-misha-raven/front.svg"
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Mortal",
  17568. height: math.unit(6 + 1 / 12, "feet")
  17569. },
  17570. {
  17571. name: "Divine",
  17572. height: math.unit(1.12134e34, "parsecs"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 3 / 12, "feet"),
  17582. weight: math.unit(220, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/max-calore/front.svg",
  17586. extra: 1700 / 1648,
  17587. bottom: 0.01
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(6 + 3 / 12, "feet"),
  17592. weight: math.unit(220, "lb"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/max-calore/back.svg",
  17596. extra: 1700 / 1648,
  17597. bottom: 0.01
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(6 + 3 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17611. {
  17612. side: {
  17613. height: math.unit(2 + 8 / 12, "feet"),
  17614. weight: math.unit(99, "lb"),
  17615. name: "Side",
  17616. image: {
  17617. source: "./media/characters/aspen/side.svg",
  17618. extra: 152 / 138,
  17619. bottom: 0.032
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(2 + 8 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17633. {
  17634. side: {
  17635. height: math.unit(3 + 2 / 12, "feet"),
  17636. weight: math.unit(224, "lb"),
  17637. name: "Side",
  17638. image: {
  17639. source: "./media/characters/sheila-feral-wolf/side.svg",
  17640. extra: 179 / 166,
  17641. bottom: 0.03
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(3 + 2 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17655. {
  17656. side: {
  17657. height: math.unit(1 + 9 / 12, "feet"),
  17658. weight: math.unit(38, "lb"),
  17659. name: "Side",
  17660. image: {
  17661. source: "./media/characters/michelle/side.svg",
  17662. extra: 147 / 136.7,
  17663. bottom: 0.03
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(1 + 9 / 12, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(1.54, "feet"),
  17680. weight: math.unit(50, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/nino/front.svg"
  17684. }
  17685. },
  17686. },
  17687. [
  17688. {
  17689. name: "Normal",
  17690. height: math.unit(1.54, "feet"),
  17691. default: true
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(1.49, "feet"),
  17700. weight: math.unit(45, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/viola/front.svg"
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(1.49, "feet"),
  17711. default: true
  17712. },
  17713. ]
  17714. ))
  17715. characterMakers.push(() => makeCharacter(
  17716. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17717. {
  17718. front: {
  17719. height: math.unit(6 + 5 / 12, "feet"),
  17720. weight: math.unit(580, "lb"),
  17721. name: "Front",
  17722. image: {
  17723. source: "./media/characters/atlas/front.svg",
  17724. extra: 298.5 / 290,
  17725. bottom: 0.015
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(6 + 5 / 12, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17739. {
  17740. side: {
  17741. height: math.unit(15.6, "inches"),
  17742. weight: math.unit(10, "lb"),
  17743. name: "Side",
  17744. image: {
  17745. source: "./media/characters/davy/side.svg",
  17746. extra: 200 / 170,
  17747. bottom: 0.01
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(15.6, "inches"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17761. {
  17762. side: {
  17763. height: math.unit(4 + 8 / 12, "feet"),
  17764. weight: math.unit(166, "lb"),
  17765. name: "Side",
  17766. image: {
  17767. source: "./media/characters/fiona/side.svg",
  17768. extra: 232 / 220,
  17769. bottom: 0.03
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Normal",
  17776. height: math.unit(4 + 8 / 12, "feet"),
  17777. default: true
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17783. {
  17784. front: {
  17785. height: math.unit(26, "inches"),
  17786. weight: math.unit(35, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/lyla/front.svg",
  17790. bottom: 0.1
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(3, "feet"),
  17798. default: true
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17804. {
  17805. side: {
  17806. height: math.unit(1.8, "feet"),
  17807. weight: math.unit(44, "lb"),
  17808. name: "Side",
  17809. image: {
  17810. source: "./media/characters/perseus/side.svg",
  17811. bottom: 0.21
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(1.8, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17825. {
  17826. side: {
  17827. height: math.unit(4 + 2 / 12, "feet"),
  17828. weight: math.unit(20, "lb"),
  17829. name: "Side",
  17830. image: {
  17831. source: "./media/characters/remus/side.svg"
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(4 + 2 / 12, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17845. {
  17846. front: {
  17847. height: math.unit(4 + 11 / 12, "feet"),
  17848. weight: math.unit(114, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/raf/front.svg",
  17852. extra: 1504/1339,
  17853. bottom: 26/1530
  17854. }
  17855. },
  17856. side: {
  17857. height: math.unit(4 + 11 / 12, "feet"),
  17858. weight: math.unit(114, "lb"),
  17859. name: "Side",
  17860. image: {
  17861. source: "./media/characters/raf/side.svg",
  17862. extra: 1466/1316,
  17863. bottom: 29/1495
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(2, "inches")
  17871. },
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(4 + 11 / 12, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(70, "feet")
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(1.5, "meters"),
  17888. weight: math.unit(68, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/liam-einarr/front.svg",
  17892. extra: 2822 / 2666
  17893. }
  17894. },
  17895. back: {
  17896. height: math.unit(1.5, "meters"),
  17897. weight: math.unit(68, "kg"),
  17898. name: "Back",
  17899. image: {
  17900. source: "./media/characters/liam-einarr/back.svg",
  17901. extra: 2822 / 2666,
  17902. bottom: 0.015
  17903. }
  17904. },
  17905. },
  17906. [
  17907. {
  17908. name: "Normal",
  17909. height: math.unit(1.5, "meters"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(150, "meters")
  17915. },
  17916. {
  17917. name: "Megamacro",
  17918. height: math.unit(35, "km")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(75, "kg"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/linda/front.svg",
  17931. extra: 930 / 874,
  17932. bottom: 0.004
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(6, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(6 + 8 / 12, "feet"),
  17949. weight: math.unit(220, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/caylex/front.svg",
  17953. extra: 821 / 772,
  17954. bottom: 0.07
  17955. }
  17956. },
  17957. back: {
  17958. height: math.unit(6 + 8 / 12, "feet"),
  17959. weight: math.unit(220, "lb"),
  17960. name: "Back",
  17961. image: {
  17962. source: "./media/characters/caylex/back.svg",
  17963. extra: 821 / 772,
  17964. bottom: 0.022
  17965. }
  17966. },
  17967. hand: {
  17968. height: math.unit(1.25, "feet"),
  17969. name: "Hand",
  17970. image: {
  17971. source: "./media/characters/caylex/hand.svg"
  17972. }
  17973. },
  17974. foot: {
  17975. height: math.unit(1.6, "feet"),
  17976. name: "Foot",
  17977. image: {
  17978. source: "./media/characters/caylex/foot.svg"
  17979. }
  17980. },
  17981. armored: {
  17982. height: math.unit(6 + 8 / 12, "feet"),
  17983. weight: math.unit(250, "lb"),
  17984. name: "Armored",
  17985. image: {
  17986. source: "./media/characters/caylex/armored.svg",
  17987. extra: 1420 / 1310,
  17988. bottom: 0.045
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(6 + 8 / 12, "feet"),
  17996. default: true
  17997. },
  17998. {
  17999. name: "Normal+",
  18000. height: math.unit(12, "feet")
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(7 + 6 / 12, "feet"),
  18009. weight: math.unit(288, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/alana/front.svg",
  18013. extra: 679 / 653,
  18014. bottom: 22.5 / 701
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(7 + 6 / 12, "feet")
  18022. },
  18023. {
  18024. name: "Large",
  18025. height: math.unit(50, "feet")
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(100, "feet"),
  18030. default: true
  18031. },
  18032. {
  18033. name: "Macro+",
  18034. height: math.unit(200, "feet")
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6 + 1 / 12, "feet"),
  18043. weight: math.unit(210, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/hasani/front.svg",
  18047. extra: 244 / 232,
  18048. bottom: 0.01
  18049. }
  18050. },
  18051. back: {
  18052. height: math.unit(6 + 1 / 12, "feet"),
  18053. weight: math.unit(210, "lb"),
  18054. name: "Back",
  18055. image: {
  18056. source: "./media/characters/hasani/back.svg",
  18057. extra: 244 / 232,
  18058. bottom: 0.01
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(6 + 1 / 12, "feet")
  18066. },
  18067. {
  18068. name: "Macro",
  18069. height: math.unit(175, "feet"),
  18070. default: true
  18071. },
  18072. ]
  18073. ))
  18074. characterMakers.push(() => makeCharacter(
  18075. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18076. {
  18077. front: {
  18078. height: math.unit(1.82, "meters"),
  18079. weight: math.unit(140, "lb"),
  18080. name: "Front",
  18081. image: {
  18082. source: "./media/characters/nita/front.svg",
  18083. extra: 2473 / 2363,
  18084. bottom: 0.01
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(1.82, "m")
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(300, "m")
  18096. },
  18097. {
  18098. name: "Mistake Canon",
  18099. height: math.unit(0.5, "miles"),
  18100. default: true
  18101. },
  18102. {
  18103. name: "Big Mistake",
  18104. height: math.unit(13, "miles")
  18105. },
  18106. {
  18107. name: "Playing God",
  18108. height: math.unit(2450, "miles")
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(4, "feet"),
  18117. weight: math.unit(120, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/shiriko/front.svg",
  18121. extra: 970/934,
  18122. bottom: 5/975
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Normal",
  18129. height: math.unit(4, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(6, "feet"),
  18139. name: "front",
  18140. image: {
  18141. source: "./media/characters/deja/front.svg",
  18142. extra: 926 / 840,
  18143. bottom: 0.07
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Planck Length",
  18150. height: math.unit(1.6e-35, "meters")
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(30.48, "meters"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Universal",
  18159. height: math.unit(8.8e26, "meters")
  18160. },
  18161. ]
  18162. ))
  18163. characterMakers.push(() => makeCharacter(
  18164. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18165. {
  18166. side: {
  18167. height: math.unit(8, "feet"),
  18168. weight: math.unit(6300, "lb"),
  18169. name: "Side",
  18170. image: {
  18171. source: "./media/characters/anima/side.svg",
  18172. bottom: 0.035
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(8, "feet"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(8, "feet"),
  18189. weight: math.unit(350, "lb"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/bianca/front.svg",
  18193. extra: 234 / 225,
  18194. bottom: 0.03
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(8, "feet"),
  18202. default: true
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(150, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/adinia/front.svg",
  18215. extra: 1845 / 1672,
  18216. bottom: 0.02
  18217. }
  18218. },
  18219. back: {
  18220. height: math.unit(6, "feet"),
  18221. weight: math.unit(150, "lb"),
  18222. name: "Back",
  18223. image: {
  18224. source: "./media/characters/adinia/back.svg",
  18225. extra: 1845 / 1672,
  18226. bottom: 0.002
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(11 + 5 / 12, "feet"),
  18234. default: true
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(3, "meters"),
  18243. weight: math.unit(200, "kg"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/lykasa/front.svg",
  18247. extra: 1076 / 976,
  18248. bottom: 0.06
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(3, "meters")
  18256. },
  18257. {
  18258. name: "Kaiju",
  18259. height: math.unit(120, "meters"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Mega Kaiju",
  18264. height: math.unit(240, "km")
  18265. },
  18266. {
  18267. name: "Giga Kaiju",
  18268. height: math.unit(400, "megameters")
  18269. },
  18270. {
  18271. name: "Tera Kaiju",
  18272. height: math.unit(800, "gigameters")
  18273. },
  18274. {
  18275. name: "Kaiju Dragon Goddess",
  18276. height: math.unit(26, "zettaparsecs")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18282. {
  18283. side: {
  18284. height: math.unit(283 / 124 * 6, "feet"),
  18285. weight: math.unit(35000, "lb"),
  18286. name: "Side",
  18287. image: {
  18288. source: "./media/characters/malfaren/side.svg",
  18289. extra: 1310/529,
  18290. bottom: 24/1334
  18291. }
  18292. },
  18293. front: {
  18294. height: math.unit(22.36, "feet"),
  18295. weight: math.unit(35000, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/malfaren/front.svg",
  18299. extra: 1237/1115,
  18300. bottom: 32/1269
  18301. }
  18302. },
  18303. maw: {
  18304. height: math.unit(6.9, "feet"),
  18305. name: "Maw",
  18306. image: {
  18307. source: "./media/characters/malfaren/maw.svg"
  18308. }
  18309. },
  18310. dick: {
  18311. height: math.unit(6.19, "feet"),
  18312. name: "Dick",
  18313. image: {
  18314. source: "./media/characters/malfaren/dick.svg"
  18315. }
  18316. },
  18317. eye: {
  18318. height: math.unit(0.69, "feet"),
  18319. name: "Eye",
  18320. image: {
  18321. source: "./media/characters/malfaren/eye.svg"
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Big",
  18328. height: math.unit(283 / 162 * 6, "feet"),
  18329. },
  18330. {
  18331. name: "Bigger",
  18332. height: math.unit(283 / 124 * 6, "feet")
  18333. },
  18334. {
  18335. name: "Massive",
  18336. height: math.unit(283 / 92 * 6, "feet"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "👀💦",
  18341. height: math.unit(283 / 73 * 6, "feet"),
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18347. {
  18348. front: {
  18349. height: math.unit(1.7, "m"),
  18350. weight: math.unit(70, "kg"),
  18351. name: "Front",
  18352. image: {
  18353. source: "./media/characters/kernel/front.svg",
  18354. extra: 222 / 210,
  18355. bottom: 0.007
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Nano",
  18362. height: math.unit(17, "micrometers")
  18363. },
  18364. {
  18365. name: "Micro",
  18366. height: math.unit(1.7, "mm")
  18367. },
  18368. {
  18369. name: "Small",
  18370. height: math.unit(1.7, "cm")
  18371. },
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(1.7, "m"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(1.75, "meters"),
  18384. weight: math.unit(65, "kg"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/jayne-folest/front.svg",
  18388. extra: 2115 / 2007,
  18389. bottom: 0.02
  18390. }
  18391. },
  18392. back: {
  18393. height: math.unit(1.75, "meters"),
  18394. weight: math.unit(65, "kg"),
  18395. name: "Back",
  18396. image: {
  18397. source: "./media/characters/jayne-folest/back.svg",
  18398. extra: 2115 / 2007,
  18399. bottom: 0.005
  18400. }
  18401. },
  18402. frontClothed: {
  18403. height: math.unit(1.75, "meters"),
  18404. weight: math.unit(65, "kg"),
  18405. name: "Front (Clothed)",
  18406. image: {
  18407. source: "./media/characters/jayne-folest/front-clothed.svg",
  18408. extra: 2115 / 2007,
  18409. bottom: 0.035
  18410. }
  18411. },
  18412. hand: {
  18413. height: math.unit(1 / 1.260, "feet"),
  18414. name: "Hand",
  18415. image: {
  18416. source: "./media/characters/jayne-folest/hand.svg"
  18417. }
  18418. },
  18419. foot: {
  18420. height: math.unit(1 / 0.918, "feet"),
  18421. name: "Foot",
  18422. image: {
  18423. source: "./media/characters/jayne-folest/foot.svg"
  18424. }
  18425. },
  18426. },
  18427. [
  18428. {
  18429. name: "Micro",
  18430. height: math.unit(4, "cm")
  18431. },
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(1.75, "meters")
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(47.5, "meters"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(180, "cm"),
  18448. weight: math.unit(70, "kg"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/algier/front.svg",
  18452. extra: 596 / 572,
  18453. bottom: 0.04
  18454. }
  18455. },
  18456. back: {
  18457. height: math.unit(180, "cm"),
  18458. weight: math.unit(70, "kg"),
  18459. name: "Back",
  18460. image: {
  18461. source: "./media/characters/algier/back.svg",
  18462. extra: 596 / 572,
  18463. bottom: 0.025
  18464. }
  18465. },
  18466. frontdressed: {
  18467. height: math.unit(180, "cm"),
  18468. weight: math.unit(150, "kg"),
  18469. name: "Front-dressed",
  18470. image: {
  18471. source: "./media/characters/algier/front-dressed.svg",
  18472. extra: 596 / 572,
  18473. bottom: 0.038
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(5, "cm")
  18481. },
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(180, "cm"),
  18485. default: true
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(64, "m")
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18495. {
  18496. upright: {
  18497. height: math.unit(7, "feet"),
  18498. weight: math.unit(300, "lb"),
  18499. name: "Upright",
  18500. image: {
  18501. source: "./media/characters/pretzel/upright.svg",
  18502. extra: 534 / 522,
  18503. bottom: 0.065
  18504. }
  18505. },
  18506. sprawling: {
  18507. height: math.unit(3.75, "feet"),
  18508. weight: math.unit(300, "lb"),
  18509. name: "Sprawling",
  18510. image: {
  18511. source: "./media/characters/pretzel/sprawling.svg",
  18512. extra: 314 / 281,
  18513. bottom: 0.1
  18514. }
  18515. },
  18516. tongue: {
  18517. height: math.unit(2, "feet"),
  18518. name: "Tongue",
  18519. image: {
  18520. source: "./media/characters/pretzel/tongue.svg"
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(7, "feet"),
  18528. default: true
  18529. },
  18530. {
  18531. name: "Oversized",
  18532. height: math.unit(15, "feet")
  18533. },
  18534. {
  18535. name: "Huge",
  18536. height: math.unit(30, "feet")
  18537. },
  18538. {
  18539. name: "Macro",
  18540. height: math.unit(250, "feet")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18546. {
  18547. sideFront: {
  18548. height: math.unit(5 + 2 / 12, "feet"),
  18549. weight: math.unit(120, "lb"),
  18550. name: "Front Side",
  18551. image: {
  18552. source: "./media/characters/roxi/side-front.svg",
  18553. extra: 2924 / 2717,
  18554. bottom: 0.08
  18555. }
  18556. },
  18557. sideBack: {
  18558. height: math.unit(5 + 2 / 12, "feet"),
  18559. weight: math.unit(120, "lb"),
  18560. name: "Back Side",
  18561. image: {
  18562. source: "./media/characters/roxi/side-back.svg",
  18563. extra: 2904 / 2693,
  18564. bottom: 0.06
  18565. }
  18566. },
  18567. front: {
  18568. height: math.unit(5 + 2 / 12, "feet"),
  18569. weight: math.unit(120, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/roxi/front.svg",
  18573. extra: 2028 / 1907,
  18574. bottom: 0.01
  18575. }
  18576. },
  18577. frontAlt: {
  18578. height: math.unit(5 + 2 / 12, "feet"),
  18579. weight: math.unit(120, "lb"),
  18580. name: "Front (Alt)",
  18581. image: {
  18582. source: "./media/characters/roxi/front-alt.svg",
  18583. extra: 1828 / 1798,
  18584. bottom: 0.01
  18585. }
  18586. },
  18587. sitting: {
  18588. height: math.unit(2.8, "feet"),
  18589. weight: math.unit(120, "lb"),
  18590. name: "Sitting",
  18591. image: {
  18592. source: "./media/characters/roxi/sitting.svg",
  18593. extra: 2660 / 2462,
  18594. bottom: 0.1
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(5 + 2 / 12, "feet"),
  18602. default: true
  18603. },
  18604. ]
  18605. ))
  18606. characterMakers.push(() => makeCharacter(
  18607. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18608. {
  18609. side: {
  18610. height: math.unit(55, "feet"),
  18611. weight: math.unit(153, "tons"),
  18612. name: "Side",
  18613. image: {
  18614. source: "./media/characters/shadow/side.svg",
  18615. extra: 701 / 628,
  18616. bottom: 0.02
  18617. }
  18618. },
  18619. flying: {
  18620. height: math.unit(145, "feet"),
  18621. weight: math.unit(153, "tons"),
  18622. name: "Flying",
  18623. image: {
  18624. source: "./media/characters/shadow/flying.svg"
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(55, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18638. {
  18639. front: {
  18640. height: math.unit(6, "feet"),
  18641. weight: math.unit(200, "lb"),
  18642. name: "Front",
  18643. image: {
  18644. source: "./media/characters/marcie/front.svg",
  18645. extra: 960 / 876,
  18646. bottom: 58 / 1017.87
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Macro",
  18653. height: math.unit(1, "mile"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(7, "feet"),
  18663. weight: math.unit(200, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/kachina/front.svg",
  18667. extra: 1290.68 / 1119,
  18668. bottom: 36.5 / 1327.18
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(7, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18682. {
  18683. looking: {
  18684. height: math.unit(2, "meters"),
  18685. weight: math.unit(300, "kg"),
  18686. name: "Looking",
  18687. image: {
  18688. source: "./media/characters/kash/looking.svg",
  18689. extra: 474 / 344,
  18690. bottom: 0.03
  18691. }
  18692. },
  18693. side: {
  18694. height: math.unit(2, "meters"),
  18695. weight: math.unit(300, "kg"),
  18696. name: "Side",
  18697. image: {
  18698. source: "./media/characters/kash/side.svg",
  18699. extra: 302 / 251,
  18700. bottom: 0.03
  18701. }
  18702. },
  18703. front: {
  18704. height: math.unit(2, "meters"),
  18705. weight: math.unit(300, "kg"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/kash/front.svg",
  18709. extra: 495 / 360,
  18710. bottom: 0.015
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(2, "meters"),
  18718. default: true
  18719. },
  18720. {
  18721. name: "Big",
  18722. height: math.unit(3, "meters")
  18723. },
  18724. {
  18725. name: "Large",
  18726. height: math.unit(5, "meters")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18732. {
  18733. feeding: {
  18734. height: math.unit(6.7, "feet"),
  18735. weight: math.unit(350, "lb"),
  18736. name: "Feeding",
  18737. image: {
  18738. source: "./media/characters/lalim/feeding.svg",
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(6.7, "feet"),
  18746. default: true
  18747. },
  18748. ]
  18749. ))
  18750. characterMakers.push(() => makeCharacter(
  18751. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18752. {
  18753. front: {
  18754. height: math.unit(9.5, "feet"),
  18755. weight: math.unit(600, "lb"),
  18756. name: "Front",
  18757. image: {
  18758. source: "./media/characters/de'vout/front.svg",
  18759. extra: 1443 / 1328,
  18760. bottom: 0.025
  18761. }
  18762. },
  18763. back: {
  18764. height: math.unit(9.5, "feet"),
  18765. weight: math.unit(600, "lb"),
  18766. name: "Back",
  18767. image: {
  18768. source: "./media/characters/de'vout/back.svg",
  18769. extra: 1443 / 1328
  18770. }
  18771. },
  18772. frontDressed: {
  18773. height: math.unit(9.5, "feet"),
  18774. weight: math.unit(600, "lb"),
  18775. name: "Front (Dressed",
  18776. image: {
  18777. source: "./media/characters/de'vout/front-dressed.svg",
  18778. extra: 1443 / 1328,
  18779. bottom: 0.025
  18780. }
  18781. },
  18782. backDressed: {
  18783. height: math.unit(9.5, "feet"),
  18784. weight: math.unit(600, "lb"),
  18785. name: "Back (Dressed",
  18786. image: {
  18787. source: "./media/characters/de'vout/back-dressed.svg",
  18788. extra: 1443 / 1328
  18789. }
  18790. },
  18791. },
  18792. [
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(9.5, "feet"),
  18796. default: true
  18797. },
  18798. ]
  18799. ))
  18800. characterMakers.push(() => makeCharacter(
  18801. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18802. {
  18803. front: {
  18804. height: math.unit(8, "feet"),
  18805. weight: math.unit(225, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/talana/front.svg",
  18809. extra: 1410 / 1300,
  18810. bottom: 0.015
  18811. }
  18812. },
  18813. frontDressed: {
  18814. height: math.unit(8, "feet"),
  18815. weight: math.unit(225, "lb"),
  18816. name: "Front (Dressed",
  18817. image: {
  18818. source: "./media/characters/talana/front-dressed.svg",
  18819. extra: 1410 / 1300,
  18820. bottom: 0.015
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(8, "feet"),
  18828. default: true
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18834. {
  18835. side: {
  18836. height: math.unit(7.2, "feet"),
  18837. weight: math.unit(150, "lb"),
  18838. name: "Side",
  18839. image: {
  18840. source: "./media/characters/xeauvok/side.svg",
  18841. extra: 1975 / 1523,
  18842. bottom: 0.07
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(7.2, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18856. {
  18857. side: {
  18858. height: math.unit(4, "meters"),
  18859. weight: math.unit(2200, "kg"),
  18860. name: "Side",
  18861. image: {
  18862. source: "./media/characters/zara/side.svg",
  18863. extra: 765/744,
  18864. bottom: 156/921
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(4, "meters"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18878. {
  18879. side: {
  18880. height: math.unit(6, "feet"),
  18881. weight: math.unit(150, "lb"),
  18882. name: "Side",
  18883. image: {
  18884. source: "./media/characters/richard-dragon/side.svg",
  18885. extra: 845 / 340,
  18886. bottom: 0.017
  18887. }
  18888. },
  18889. maw: {
  18890. height: math.unit(2.97, "feet"),
  18891. name: "Maw",
  18892. image: {
  18893. source: "./media/characters/richard-dragon/maw.svg"
  18894. }
  18895. },
  18896. },
  18897. [
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(4, "feet"),
  18905. weight: math.unit(100, "lb"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/richard-smeargle/front.svg",
  18909. extra: 2952 / 2820,
  18910. bottom: 0.028
  18911. }
  18912. },
  18913. },
  18914. [
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(4, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Dynamax",
  18922. height: math.unit(20, "meters")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(6, "feet"),
  18931. weight: math.unit(110, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/klay/front.svg",
  18935. extra: 962 / 883,
  18936. bottom: 0.04
  18937. }
  18938. },
  18939. back: {
  18940. height: math.unit(6, "feet"),
  18941. weight: math.unit(110, "lb"),
  18942. name: "Back",
  18943. image: {
  18944. source: "./media/characters/klay/back.svg",
  18945. extra: 962 / 883
  18946. }
  18947. },
  18948. beans: {
  18949. height: math.unit(1.15, "feet"),
  18950. name: "Beans",
  18951. image: {
  18952. source: "./media/characters/klay/beans.svg"
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Micro",
  18959. height: math.unit(6, "inches")
  18960. },
  18961. {
  18962. name: "Mini",
  18963. height: math.unit(3, "feet")
  18964. },
  18965. {
  18966. name: "Normal",
  18967. height: math.unit(6, "feet"),
  18968. default: true
  18969. },
  18970. {
  18971. name: "Big",
  18972. height: math.unit(25, "feet")
  18973. },
  18974. {
  18975. name: "Macro",
  18976. height: math.unit(100, "feet")
  18977. },
  18978. {
  18979. name: "Megamacro",
  18980. height: math.unit(400, "feet")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6, "feet"),
  18989. weight: math.unit(160, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/marcus/front.svg",
  18993. extra: 734 / 676,
  18994. bottom: 0.03
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Little",
  19001. height: math.unit(6, "feet")
  19002. },
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(110, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(250, "feet")
  19011. },
  19012. {
  19013. name: "Megamacro",
  19014. height: math.unit(1000, "feet")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(7, "feet"),
  19023. weight: math.unit(275, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/claude-delroute/front.svg",
  19027. extra: 902/827,
  19028. bottom: 26/928
  19029. }
  19030. },
  19031. side: {
  19032. height: math.unit(7, "feet"),
  19033. weight: math.unit(275, "lb"),
  19034. name: "Side",
  19035. image: {
  19036. source: "./media/characters/claude-delroute/side.svg",
  19037. extra: 908/853,
  19038. bottom: 16/924
  19039. }
  19040. },
  19041. back: {
  19042. height: math.unit(7, "feet"),
  19043. weight: math.unit(275, "lb"),
  19044. name: "Back",
  19045. image: {
  19046. source: "./media/characters/claude-delroute/back.svg",
  19047. extra: 911/829,
  19048. bottom: 18/929
  19049. }
  19050. },
  19051. maw: {
  19052. height: math.unit(0.6407, "meters"),
  19053. name: "Maw",
  19054. image: {
  19055. source: "./media/characters/claude-delroute/maw.svg"
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(7, "feet"),
  19063. default: true
  19064. },
  19065. {
  19066. name: "Lorge",
  19067. height: math.unit(20, "feet")
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19073. {
  19074. front: {
  19075. height: math.unit(8 + 4 / 12, "feet"),
  19076. weight: math.unit(600, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/dragonien/front.svg",
  19080. extra: 100 / 94,
  19081. bottom: 3.3 / 103.3445
  19082. }
  19083. },
  19084. back: {
  19085. height: math.unit(8 + 4 / 12, "feet"),
  19086. weight: math.unit(600, "lb"),
  19087. name: "Back",
  19088. image: {
  19089. source: "./media/characters/dragonien/back.svg",
  19090. extra: 776 / 746,
  19091. bottom: 6.4 / 782.0616
  19092. }
  19093. },
  19094. foot: {
  19095. height: math.unit(1.54, "feet"),
  19096. name: "Foot",
  19097. image: {
  19098. source: "./media/characters/dragonien/foot.svg",
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(8 + 4 / 12, "feet"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(200, "feet")
  19111. },
  19112. {
  19113. name: "Megamacro",
  19114. height: math.unit(1, "mile")
  19115. },
  19116. {
  19117. name: "Gigamacro",
  19118. height: math.unit(1000, "miles")
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(5 + 2 / 12, "feet"),
  19127. weight: math.unit(110, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/desta/front.svg",
  19131. extra: 767 / 726,
  19132. bottom: 11.7 / 779
  19133. }
  19134. },
  19135. back: {
  19136. height: math.unit(5 + 2 / 12, "feet"),
  19137. weight: math.unit(110, "lb"),
  19138. name: "Back",
  19139. image: {
  19140. source: "./media/characters/desta/back.svg",
  19141. extra: 777 / 728,
  19142. bottom: 6 / 784
  19143. }
  19144. },
  19145. frontAlt: {
  19146. height: math.unit(5 + 2 / 12, "feet"),
  19147. weight: math.unit(110, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/desta/front-alt.svg",
  19151. extra: 1482 / 1417
  19152. }
  19153. },
  19154. side: {
  19155. height: math.unit(5 + 2 / 12, "feet"),
  19156. weight: math.unit(110, "lb"),
  19157. name: "Side",
  19158. image: {
  19159. source: "./media/characters/desta/side.svg",
  19160. extra: 2579 / 2491,
  19161. bottom: 0.053
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(6, "inches")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(5 + 2 / 12, "feet"),
  19173. default: true
  19174. },
  19175. {
  19176. name: "Macro",
  19177. height: math.unit(62, "feet")
  19178. },
  19179. {
  19180. name: "Megamacro",
  19181. height: math.unit(1800, "feet")
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(10, "feet"),
  19190. weight: math.unit(700, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/storm-alystar/front.svg",
  19194. extra: 2112 / 1898,
  19195. bottom: 0.034
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Micro",
  19202. height: math.unit(3.5, "inches")
  19203. },
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(10, "feet"),
  19207. default: true
  19208. },
  19209. {
  19210. name: "Macro",
  19211. height: math.unit(400, "feet")
  19212. },
  19213. {
  19214. name: "Deific",
  19215. height: math.unit(60, "miles")
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(2.35, "meters"),
  19224. weight: math.unit(119, "kg"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/ilia/front.svg",
  19228. extra: 1285 / 1255,
  19229. bottom: 0.06
  19230. }
  19231. },
  19232. },
  19233. [
  19234. {
  19235. name: "Normal",
  19236. height: math.unit(2.35, "meters")
  19237. },
  19238. {
  19239. name: "Macro",
  19240. height: math.unit(140, "meters"),
  19241. default: true
  19242. },
  19243. {
  19244. name: "Megamacro",
  19245. height: math.unit(100, "miles")
  19246. },
  19247. ]
  19248. ))
  19249. characterMakers.push(() => makeCharacter(
  19250. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19251. {
  19252. front: {
  19253. height: math.unit(6 + 5 / 12, "feet"),
  19254. weight: math.unit(190, "lb"),
  19255. name: "Front",
  19256. image: {
  19257. source: "./media/characters/kingdead/front.svg",
  19258. extra: 1228 / 1177
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Micro",
  19265. height: math.unit(7, "inches")
  19266. },
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(6 + 5 / 12, "feet")
  19270. },
  19271. {
  19272. name: "Macro",
  19273. height: math.unit(150, "feet"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Megamacro",
  19278. height: math.unit(200, "miles")
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(8, "feet"),
  19287. weight: math.unit(600, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/kyrehx/front.svg",
  19291. extra: 1195 / 1095,
  19292. bottom: 0.034
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Micro",
  19299. height: math.unit(2, "inches")
  19300. },
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(8, "feet"),
  19304. default: true
  19305. },
  19306. {
  19307. name: "Macro",
  19308. height: math.unit(255, "feet")
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19317. weight: math.unit(184, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/xang/front.svg",
  19321. extra: 845 / 755
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19329. default: true
  19330. },
  19331. {
  19332. name: "Macro",
  19333. height: math.unit(0.935 * 146, "feet")
  19334. },
  19335. {
  19336. name: "Megamacro",
  19337. height: math.unit(0.935 * 3, "miles")
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19343. {
  19344. frontDressed: {
  19345. height: math.unit(5 + 7 / 12, "feet"),
  19346. weight: math.unit(140, "lb"),
  19347. name: "Front (Dressed)",
  19348. image: {
  19349. source: "./media/characters/doc-weardno/front-dressed.svg",
  19350. extra: 263 / 234
  19351. }
  19352. },
  19353. backDressed: {
  19354. height: math.unit(5 + 7 / 12, "feet"),
  19355. weight: math.unit(140, "lb"),
  19356. name: "Back (Dressed)",
  19357. image: {
  19358. source: "./media/characters/doc-weardno/back-dressed.svg",
  19359. extra: 266 / 238
  19360. }
  19361. },
  19362. front: {
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. weight: math.unit(140, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/doc-weardno/front.svg",
  19368. extra: 254 / 233
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Micro",
  19375. height: math.unit(3, "inches")
  19376. },
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(5 + 7 / 12, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(25, "feet")
  19385. },
  19386. {
  19387. name: "Megamacro",
  19388. height: math.unit(2, "miles")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6 + 2 / 12, "feet"),
  19397. weight: math.unit(153, "lb"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/seth-whilst/front.svg",
  19401. bottom: 0.07
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Micro",
  19408. height: math.unit(5, "inches")
  19409. },
  19410. {
  19411. name: "Normal",
  19412. height: math.unit(6 + 2 / 12, "feet"),
  19413. default: true
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(3, "inches"),
  19422. weight: math.unit(8, "grams"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/pocket-jabari/front.svg",
  19426. extra: 1024 / 974,
  19427. bottom: 0.039
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Minimicro",
  19434. height: math.unit(8, "mm")
  19435. },
  19436. {
  19437. name: "Micro",
  19438. height: math.unit(3, "inches"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Normal",
  19443. height: math.unit(3, "feet")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19449. {
  19450. frontDressed: {
  19451. height: math.unit(15, "feet"),
  19452. weight: math.unit(3280, "lb"),
  19453. name: "Front (Dressed)",
  19454. image: {
  19455. source: "./media/characters/sapphy/front-dressed.svg",
  19456. extra: 1951/1654,
  19457. bottom: 194/2145
  19458. },
  19459. form: "anthro",
  19460. default: true
  19461. },
  19462. backDressed: {
  19463. height: math.unit(15, "feet"),
  19464. weight: math.unit(3280, "lb"),
  19465. name: "Back (Dressed)",
  19466. image: {
  19467. source: "./media/characters/sapphy/back-dressed.svg",
  19468. extra: 2058/1918,
  19469. bottom: 125/2183
  19470. },
  19471. form: "anthro"
  19472. },
  19473. frontNude: {
  19474. height: math.unit(15, "feet"),
  19475. weight: math.unit(3280, "lb"),
  19476. name: "Front (Nude)",
  19477. image: {
  19478. source: "./media/characters/sapphy/front-nude.svg",
  19479. extra: 1951/1654,
  19480. bottom: 194/2145
  19481. },
  19482. form: "anthro"
  19483. },
  19484. backNude: {
  19485. height: math.unit(15, "feet"),
  19486. weight: math.unit(3280, "lb"),
  19487. name: "Back (Nude)",
  19488. image: {
  19489. source: "./media/characters/sapphy/back-nude.svg",
  19490. extra: 2058/1918,
  19491. bottom: 125/2183
  19492. },
  19493. form: "anthro"
  19494. },
  19495. full: {
  19496. height: math.unit(15, "feet"),
  19497. weight: math.unit(3280, "lb"),
  19498. name: "Full",
  19499. image: {
  19500. source: "./media/characters/sapphy/full.svg",
  19501. extra: 1396/1317,
  19502. bottom: 44/1440
  19503. },
  19504. form: "anthro"
  19505. },
  19506. dick: {
  19507. height: math.unit(3.8, "feet"),
  19508. name: "Dick",
  19509. image: {
  19510. source: "./media/characters/sapphy/dick.svg"
  19511. },
  19512. form: "anthro"
  19513. },
  19514. feral: {
  19515. height: math.unit(35, "feet"),
  19516. weight: math.unit(160, "tons"),
  19517. name: "Feral",
  19518. image: {
  19519. source: "./media/characters/sapphy/feral.svg",
  19520. extra: 1050/573,
  19521. bottom: 60/1110
  19522. },
  19523. form: "feral",
  19524. default: true
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(15, "feet"),
  19531. form: "anthro"
  19532. },
  19533. {
  19534. name: "Casual Macro",
  19535. height: math.unit(120, "feet"),
  19536. form: "anthro"
  19537. },
  19538. {
  19539. name: "Macro",
  19540. height: math.unit(2150, "feet"),
  19541. default: true,
  19542. form: "anthro"
  19543. },
  19544. {
  19545. name: "Megamacro",
  19546. height: math.unit(8, "miles"),
  19547. form: "anthro"
  19548. },
  19549. {
  19550. name: "Galaxy Mom",
  19551. height: math.unit(6, "megalightyears"),
  19552. form: "anthro"
  19553. },
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(35, "feet"),
  19557. form: "feral",
  19558. default: true
  19559. },
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(300, "feet"),
  19563. form: "feral"
  19564. },
  19565. {
  19566. name: "Galaxy Mom",
  19567. height: math.unit(10, "megalightyears"),
  19568. form: "feral"
  19569. },
  19570. ],
  19571. {
  19572. "anthro": {
  19573. name: "Anthro",
  19574. default: true
  19575. },
  19576. "feral": {
  19577. name: "Feral"
  19578. }
  19579. }
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(6, "feet"),
  19586. weight: math.unit(170, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/kiro/front.svg",
  19590. extra: 1064 / 1012,
  19591. bottom: 0.052
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Micro",
  19598. height: math.unit(6, "inches")
  19599. },
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(6, "feet"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Macro",
  19607. height: math.unit(72, "feet")
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(5 + 9 / 12, "feet"),
  19616. weight: math.unit(175, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/irishfox/front.svg",
  19620. extra: 1912 / 1680,
  19621. bottom: 0.02
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Nano",
  19628. height: math.unit(1, "mm")
  19629. },
  19630. {
  19631. name: "Micro",
  19632. height: math.unit(2, "inches")
  19633. },
  19634. {
  19635. name: "Normal",
  19636. height: math.unit(5 + 9 / 12, "feet"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Macro",
  19641. height: math.unit(45, "feet")
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19647. {
  19648. front: {
  19649. height: math.unit(6 + 1 / 12, "feet"),
  19650. weight: math.unit(75, "lb"),
  19651. name: "Front",
  19652. image: {
  19653. source: "./media/characters/aronai-sieyes/front.svg",
  19654. extra: 1532/1450,
  19655. bottom: 42/1574
  19656. }
  19657. },
  19658. side: {
  19659. height: math.unit(6 + 1 / 12, "feet"),
  19660. weight: math.unit(75, "lb"),
  19661. name: "Side",
  19662. image: {
  19663. source: "./media/characters/aronai-sieyes/side.svg",
  19664. extra: 1422/1365,
  19665. bottom: 148/1570
  19666. }
  19667. },
  19668. back: {
  19669. height: math.unit(6 + 1 / 12, "feet"),
  19670. weight: math.unit(75, "lb"),
  19671. name: "Back",
  19672. image: {
  19673. source: "./media/characters/aronai-sieyes/back.svg",
  19674. extra: 1526/1464,
  19675. bottom: 51/1577
  19676. }
  19677. },
  19678. dressed: {
  19679. height: math.unit(6 + 1 / 12, "feet"),
  19680. weight: math.unit(75, "lb"),
  19681. name: "Dressed",
  19682. image: {
  19683. source: "./media/characters/aronai-sieyes/dressed.svg",
  19684. extra: 1559/1483,
  19685. bottom: 39/1598
  19686. }
  19687. },
  19688. slit: {
  19689. height: math.unit(1.3, "feet"),
  19690. name: "Slit",
  19691. image: {
  19692. source: "./media/characters/aronai-sieyes/slit.svg"
  19693. }
  19694. },
  19695. slitSpread: {
  19696. height: math.unit(0.9, "feet"),
  19697. name: "Slit (Spread)",
  19698. image: {
  19699. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19700. }
  19701. },
  19702. rump: {
  19703. height: math.unit(1.3, "feet"),
  19704. name: "Rump",
  19705. image: {
  19706. source: "./media/characters/aronai-sieyes/rump.svg"
  19707. }
  19708. },
  19709. maw: {
  19710. height: math.unit(1.25, "feet"),
  19711. name: "Maw",
  19712. image: {
  19713. source: "./media/characters/aronai-sieyes/maw.svg"
  19714. }
  19715. },
  19716. feral: {
  19717. height: math.unit(18, "feet"),
  19718. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19719. name: "Feral",
  19720. image: {
  19721. source: "./media/characters/aronai-sieyes/feral.svg",
  19722. extra: 1530 / 1240,
  19723. bottom: 0.035
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Micro",
  19730. height: math.unit(2, "inches")
  19731. },
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(6 + 1 / 12, "feet"),
  19735. default: true
  19736. }
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(12, "feet"),
  19744. weight: math.unit(410, "kg"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/xuna/front.svg",
  19748. extra: 2184 / 1980
  19749. }
  19750. },
  19751. side: {
  19752. height: math.unit(12, "feet"),
  19753. weight: math.unit(410, "kg"),
  19754. name: "Side",
  19755. image: {
  19756. source: "./media/characters/xuna/side.svg",
  19757. extra: 2184 / 1980
  19758. }
  19759. },
  19760. back: {
  19761. height: math.unit(12, "feet"),
  19762. weight: math.unit(410, "kg"),
  19763. name: "Back",
  19764. image: {
  19765. source: "./media/characters/xuna/back.svg",
  19766. extra: 2184 / 1980
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Nano glow",
  19773. height: math.unit(10, "nm")
  19774. },
  19775. {
  19776. name: "Micro floof",
  19777. height: math.unit(0.3, "m")
  19778. },
  19779. {
  19780. name: "Huggable softy boi",
  19781. height: math.unit(3.6576, "m"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Admirable floof",
  19786. height: math.unit(80, "meters")
  19787. },
  19788. {
  19789. name: "Gentle macro",
  19790. height: math.unit(300, "meters")
  19791. },
  19792. {
  19793. name: "Very careful floof",
  19794. height: math.unit(3200, "meters")
  19795. },
  19796. {
  19797. name: "The mega floof",
  19798. height: math.unit(36000, "meters")
  19799. },
  19800. {
  19801. name: "Giga-fur-Wicker",
  19802. height: math.unit(4800000, "meters")
  19803. },
  19804. {
  19805. name: "Licky world",
  19806. height: math.unit(20000000, "meters")
  19807. },
  19808. {
  19809. name: "Floofy cyan sun",
  19810. height: math.unit(1500000000, "meters")
  19811. },
  19812. {
  19813. name: "Milky Wicker",
  19814. height: math.unit(1000000000000000000000, "meters")
  19815. },
  19816. {
  19817. name: "The observing Wicker",
  19818. height: math.unit(999999999999999999999999999, "meters")
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19824. {
  19825. front: {
  19826. height: math.unit(5 + 9 / 12, "feet"),
  19827. weight: math.unit(150, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/arokha-sieyes/front.svg",
  19831. extra: 1425 / 1284,
  19832. bottom: 0.05
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(5 + 9 / 12, "feet")
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(30, "meters"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(6, "feet"),
  19853. weight: math.unit(180, "lb"),
  19854. name: "Front",
  19855. image: {
  19856. source: "./media/characters/arokh-sieyes/front.svg",
  19857. extra: 1830 / 1769,
  19858. bottom: 0.01
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Normal",
  19865. height: math.unit(6, "feet")
  19866. },
  19867. {
  19868. name: "Macro",
  19869. height: math.unit(30, "meters"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19876. {
  19877. side: {
  19878. height: math.unit(13 + 1 / 12, "feet"),
  19879. weight: math.unit(8.5, "tonnes"),
  19880. name: "Side",
  19881. image: {
  19882. source: "./media/characters/goldeneye/side.svg",
  19883. extra: 1182 / 778,
  19884. bottom: 0.067
  19885. }
  19886. },
  19887. paw: {
  19888. height: math.unit(3.4, "feet"),
  19889. name: "Paw",
  19890. image: {
  19891. source: "./media/characters/goldeneye/paw.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(13 + 1 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6 + 1 / 12, "feet"),
  19908. weight: math.unit(210, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/leonardo-lycheborne/front.svg",
  19912. extra: 776/723,
  19913. bottom: 34/810
  19914. }
  19915. },
  19916. side: {
  19917. height: math.unit(6 + 1 / 12, "feet"),
  19918. weight: math.unit(210, "lb"),
  19919. name: "Side",
  19920. image: {
  19921. source: "./media/characters/leonardo-lycheborne/side.svg",
  19922. extra: 780/728,
  19923. bottom: 12/792
  19924. }
  19925. },
  19926. back: {
  19927. height: math.unit(6 + 1 / 12, "feet"),
  19928. weight: math.unit(210, "lb"),
  19929. name: "Back",
  19930. image: {
  19931. source: "./media/characters/leonardo-lycheborne/back.svg",
  19932. extra: 775/721,
  19933. bottom: 17/792
  19934. }
  19935. },
  19936. hand: {
  19937. height: math.unit(1.08, "feet"),
  19938. name: "Hand",
  19939. image: {
  19940. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19941. }
  19942. },
  19943. foot: {
  19944. height: math.unit(1.32, "feet"),
  19945. name: "Foot",
  19946. image: {
  19947. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19948. }
  19949. },
  19950. maw: {
  19951. height: math.unit(1, "feet"),
  19952. name: "Maw",
  19953. image: {
  19954. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19955. }
  19956. },
  19957. were: {
  19958. height: math.unit(20, "feet"),
  19959. weight: math.unit(7800, "lb"),
  19960. name: "Were",
  19961. image: {
  19962. source: "./media/characters/leonardo-lycheborne/were.svg",
  19963. extra: 1224/1165,
  19964. bottom: 72/1296
  19965. }
  19966. },
  19967. feral: {
  19968. height: math.unit(7.5, "feet"),
  19969. weight: math.unit(600, "lb"),
  19970. name: "Feral",
  19971. image: {
  19972. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19973. extra: 797/702,
  19974. bottom: 139/936
  19975. }
  19976. },
  19977. taur: {
  19978. height: math.unit(11, "feet"),
  19979. weight: math.unit(3300, "lb"),
  19980. name: "Taur",
  19981. image: {
  19982. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19983. extra: 1271/1197,
  19984. bottom: 47/1318
  19985. }
  19986. },
  19987. barghest: {
  19988. height: math.unit(11, "feet"),
  19989. weight: math.unit(1300, "lb"),
  19990. name: "Barghest",
  19991. image: {
  19992. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19993. extra: 1291/1204,
  19994. bottom: 37/1328
  19995. }
  19996. },
  19997. dick: {
  19998. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19999. name: "Dick",
  20000. image: {
  20001. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20002. }
  20003. },
  20004. dickWere: {
  20005. height: math.unit((20) / 3.8, "feet"),
  20006. name: "Dick (Were)",
  20007. image: {
  20008. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(6 + 1 / 12, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(10, "feet"),
  20025. weight: math.unit(350, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/jet/front.svg",
  20029. extra: 2050 / 1980,
  20030. bottom: 0.013
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(10, "feet"),
  20035. weight: math.unit(350, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/jet/back.svg",
  20039. extra: 2050 / 1980,
  20040. bottom: 0.013
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Micro",
  20047. height: math.unit(6, "inches")
  20048. },
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(10, "feet"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(100, "feet")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20062. {
  20063. front: {
  20064. height: math.unit(15, "feet"),
  20065. weight: math.unit(2800, "lb"),
  20066. name: "Front",
  20067. image: {
  20068. source: "./media/characters/tanarath/front.svg",
  20069. extra: 2392 / 2220,
  20070. bottom: 0.03
  20071. }
  20072. },
  20073. back: {
  20074. height: math.unit(15, "feet"),
  20075. weight: math.unit(2800, "lb"),
  20076. name: "Back",
  20077. image: {
  20078. source: "./media/characters/tanarath/back.svg",
  20079. extra: 2392 / 2220,
  20080. bottom: 0.03
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(15, "feet"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(7 + 1 / 12, "feet"),
  20097. weight: math.unit(175, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/patty-cattybatty/front.svg",
  20101. extra: 908 / 874,
  20102. bottom: 0.025
  20103. }
  20104. },
  20105. },
  20106. [
  20107. {
  20108. name: "Micro",
  20109. height: math.unit(1, "inch")
  20110. },
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(7 + 1 / 12, "feet")
  20114. },
  20115. {
  20116. name: "Mini Macro",
  20117. height: math.unit(155, "feet")
  20118. },
  20119. {
  20120. name: "Macro",
  20121. height: math.unit(1077, "feet")
  20122. },
  20123. {
  20124. name: "Mega Macro",
  20125. height: math.unit(47650, "feet"),
  20126. default: true
  20127. },
  20128. {
  20129. name: "Giga Macro",
  20130. height: math.unit(440, "miles")
  20131. },
  20132. {
  20133. name: "Tera Macro",
  20134. height: math.unit(8700, "miles")
  20135. },
  20136. {
  20137. name: "Planetary Macro",
  20138. height: math.unit(32700, "miles")
  20139. },
  20140. {
  20141. name: "Solar Macro",
  20142. height: math.unit(550000, "miles")
  20143. },
  20144. {
  20145. name: "Celestial Macro",
  20146. height: math.unit(2.5, "AU")
  20147. },
  20148. ]
  20149. ))
  20150. characterMakers.push(() => makeCharacter(
  20151. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20152. {
  20153. front: {
  20154. height: math.unit(4 + 5 / 12, "feet"),
  20155. weight: math.unit(90, "lb"),
  20156. name: "Front",
  20157. image: {
  20158. source: "./media/characters/cappu/front.svg",
  20159. extra: 1247 / 1152,
  20160. bottom: 0.012
  20161. }
  20162. },
  20163. },
  20164. [
  20165. {
  20166. name: "Normal",
  20167. height: math.unit(4 + 5 / 12, "feet"),
  20168. default: true
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20174. {
  20175. frontDressed: {
  20176. height: math.unit(70, "cm"),
  20177. weight: math.unit(6, "kg"),
  20178. name: "Front (Dressed)",
  20179. image: {
  20180. source: "./media/characters/sebi/front-dressed.svg",
  20181. extra: 713.5 / 686.5,
  20182. bottom: 0.003
  20183. }
  20184. },
  20185. front: {
  20186. height: math.unit(70, "cm"),
  20187. weight: math.unit(5, "kg"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/sebi/front.svg",
  20191. extra: 713.5 / 686.5,
  20192. bottom: 0.003
  20193. }
  20194. }
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(70, "cm"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Macro",
  20204. height: math.unit(8, "meters")
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(6, "feet"),
  20213. weight: math.unit(150, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/typhek/front.svg",
  20217. extra: 1948 / 1929,
  20218. bottom: 0.025
  20219. }
  20220. },
  20221. side: {
  20222. height: math.unit(6, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Side",
  20225. image: {
  20226. source: "./media/characters/typhek/side.svg",
  20227. extra: 2034 / 2010,
  20228. bottom: 0.003
  20229. }
  20230. },
  20231. back: {
  20232. height: math.unit(6, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Back",
  20235. image: {
  20236. source: "./media/characters/typhek/back.svg",
  20237. extra: 2005 / 1978,
  20238. bottom: 0.004
  20239. }
  20240. },
  20241. palm: {
  20242. height: math.unit(1.2, "feet"),
  20243. name: "Palm",
  20244. image: {
  20245. source: "./media/characters/typhek/palm.svg"
  20246. }
  20247. },
  20248. fist: {
  20249. height: math.unit(1.1, "feet"),
  20250. name: "Fist",
  20251. image: {
  20252. source: "./media/characters/typhek/fist.svg"
  20253. }
  20254. },
  20255. foot: {
  20256. height: math.unit(1.57, "feet"),
  20257. name: "Foot",
  20258. image: {
  20259. source: "./media/characters/typhek/foot.svg"
  20260. }
  20261. },
  20262. sole: {
  20263. height: math.unit(2.05, "feet"),
  20264. name: "Sole",
  20265. image: {
  20266. source: "./media/characters/typhek/sole.svg"
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(40, "stories"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Megamacro",
  20278. height: math.unit(1, "mile")
  20279. },
  20280. {
  20281. name: "Gigamacro",
  20282. height: math.unit(4000, "solarradii")
  20283. },
  20284. {
  20285. name: "Universal",
  20286. height: math.unit(1.1, "universes")
  20287. }
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20292. {
  20293. side: {
  20294. height: math.unit(5 + 7 / 12, "feet"),
  20295. weight: math.unit(150, "lb"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/kassy/side.svg",
  20299. extra: 1280 / 1225,
  20300. bottom: 0.002
  20301. }
  20302. },
  20303. front: {
  20304. height: math.unit(5 + 7 / 12, "feet"),
  20305. weight: math.unit(150, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/kassy/front.svg",
  20309. extra: 1280 / 1225,
  20310. bottom: 0.025
  20311. }
  20312. },
  20313. back: {
  20314. height: math.unit(5 + 7 / 12, "feet"),
  20315. weight: math.unit(150, "lb"),
  20316. name: "Back",
  20317. image: {
  20318. source: "./media/characters/kassy/back.svg",
  20319. extra: 1280 / 1225,
  20320. bottom: 0.002
  20321. }
  20322. },
  20323. foot: {
  20324. height: math.unit(1.266, "feet"),
  20325. name: "Foot",
  20326. image: {
  20327. source: "./media/characters/kassy/foot.svg"
  20328. }
  20329. },
  20330. },
  20331. [
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(5 + 7 / 12, "feet")
  20335. },
  20336. {
  20337. name: "Macro",
  20338. height: math.unit(137, "feet"),
  20339. default: true
  20340. },
  20341. {
  20342. name: "Megamacro",
  20343. height: math.unit(1, "mile")
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20349. {
  20350. front: {
  20351. height: math.unit(6 + 1 / 12, "feet"),
  20352. weight: math.unit(200, "lb"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/neil/front.svg",
  20356. extra: 1326 / 1250,
  20357. bottom: 0.023
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(6 + 1 / 12, "feet"),
  20365. default: true
  20366. },
  20367. {
  20368. name: "Macro",
  20369. height: math.unit(200, "feet")
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20375. {
  20376. front: {
  20377. height: math.unit(5 + 9 / 12, "feet"),
  20378. weight: math.unit(190, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/atticus/front.svg",
  20382. extra: 2934 / 2785,
  20383. bottom: 0.025
  20384. }
  20385. },
  20386. },
  20387. [
  20388. {
  20389. name: "Normal",
  20390. height: math.unit(5 + 9 / 12, "feet"),
  20391. default: true
  20392. },
  20393. {
  20394. name: "Macro",
  20395. height: math.unit(180, "feet")
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20401. {
  20402. side: {
  20403. height: math.unit(9, "feet"),
  20404. weight: math.unit(650, "lb"),
  20405. name: "Side",
  20406. image: {
  20407. source: "./media/characters/milo/side.svg",
  20408. extra: 2644 / 2310,
  20409. bottom: 0.032
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(9, "feet"),
  20417. default: true
  20418. },
  20419. {
  20420. name: "Macro",
  20421. height: math.unit(300, "feet")
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20427. {
  20428. side: {
  20429. height: math.unit(8, "meters"),
  20430. weight: math.unit(90000, "kg"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/ijzer/side.svg",
  20434. extra: 2756 / 1600,
  20435. bottom: 0.01
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Small",
  20442. height: math.unit(3, "meters")
  20443. },
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(8, "meters"),
  20447. default: true
  20448. },
  20449. {
  20450. name: "Normal+",
  20451. height: math.unit(10, "meters")
  20452. },
  20453. {
  20454. name: "Bigger",
  20455. height: math.unit(24, "meters")
  20456. },
  20457. {
  20458. name: "Huge",
  20459. height: math.unit(80, "meters")
  20460. },
  20461. ]
  20462. ))
  20463. characterMakers.push(() => makeCharacter(
  20464. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20465. {
  20466. front: {
  20467. height: math.unit(6 + 2 / 12, "feet"),
  20468. weight: math.unit(153, "lb"),
  20469. name: "Front",
  20470. image: {
  20471. source: "./media/characters/luca-cervicum/front.svg",
  20472. extra: 370 / 327,
  20473. bottom: 0.015
  20474. }
  20475. },
  20476. back: {
  20477. height: math.unit(6 + 2 / 12, "feet"),
  20478. weight: math.unit(153, "lb"),
  20479. name: "Back",
  20480. image: {
  20481. source: "./media/characters/luca-cervicum/back.svg",
  20482. extra: 367 / 333,
  20483. bottom: 0.005
  20484. }
  20485. },
  20486. frontGear: {
  20487. height: math.unit(6 + 2 / 12, "feet"),
  20488. weight: math.unit(173, "lb"),
  20489. name: "Front (Gear)",
  20490. image: {
  20491. source: "./media/characters/luca-cervicum/front-gear.svg",
  20492. extra: 377 / 333,
  20493. bottom: 0.006
  20494. }
  20495. },
  20496. },
  20497. [
  20498. {
  20499. name: "Normal",
  20500. height: math.unit(6 + 2 / 12, "feet"),
  20501. default: true
  20502. },
  20503. ]
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(6 + 1 / 12, "feet"),
  20510. weight: math.unit(304, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/oliver/front.svg",
  20514. extra: 157 / 143,
  20515. bottom: 0.08
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Normal",
  20522. height: math.unit(6 + 1 / 12, "feet"),
  20523. default: true
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(5 + 7 / 12, "feet"),
  20532. weight: math.unit(140, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/shane/front.svg",
  20536. extra: 304 / 289,
  20537. bottom: 0.005
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(5 + 7 / 12, "feet"),
  20545. default: true
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(5 + 9 / 12, "feet"),
  20554. weight: math.unit(178, "lb"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/shin/front.svg",
  20558. extra: 159 / 151,
  20559. bottom: 0.015
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(5 + 9 / 12, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(5 + 10 / 12, "feet"),
  20576. weight: math.unit(168, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/xerxes/front.svg",
  20580. extra: 282 / 260,
  20581. bottom: 0.045
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(5 + 10 / 12, "feet"),
  20589. default: true
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(6 + 7 / 12, "feet"),
  20598. weight: math.unit(208, "lb"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/chaska/front.svg",
  20602. extra: 332 / 319,
  20603. bottom: 0.015
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(6 + 7 / 12, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(5 + 8 / 12, "feet"),
  20620. weight: math.unit(208, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/enuk/front.svg",
  20624. extra: 437 / 406,
  20625. bottom: 0.02
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(5 + 8 / 12, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(5 + 10 / 12, "feet"),
  20642. weight: math.unit(252, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/bruun/front.svg",
  20646. extra: 197 / 187,
  20647. bottom: 0.012
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Normal",
  20654. height: math.unit(5 + 10 / 12, "feet"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(6 + 10 / 12, "feet"),
  20664. weight: math.unit(255, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/alexeev/front.svg",
  20668. extra: 213 / 200,
  20669. bottom: 0.05
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(6 + 10 / 12, "feet"),
  20677. default: true
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(2 + 8 / 12, "feet"),
  20686. weight: math.unit(22, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/evelyn/front.svg",
  20690. extra: 208 / 180
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(2 + 8 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(5 + 9 / 12, "feet"),
  20707. weight: math.unit(139, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/inca/front.svg",
  20711. extra: 294 / 291,
  20712. bottom: 0.03
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(5 + 9 / 12, "feet"),
  20720. default: true
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20726. {
  20727. front: {
  20728. height: math.unit(6 + 3 / 12, "feet"),
  20729. weight: math.unit(185, "lb"),
  20730. name: "Front",
  20731. image: {
  20732. source: "./media/characters/mera/front.svg",
  20733. extra: 291 / 277,
  20734. bottom: 0.03
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(6 + 3 / 12, "feet"),
  20742. default: true
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(6 + 7 / 12, "feet"),
  20751. weight: math.unit(160, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/ceres/front.svg",
  20755. extra: 1023 / 950,
  20756. bottom: 0.027
  20757. }
  20758. },
  20759. back: {
  20760. height: math.unit(6 + 7 / 12, "feet"),
  20761. weight: math.unit(160, "lb"),
  20762. name: "Back",
  20763. image: {
  20764. source: "./media/characters/ceres/back.svg",
  20765. extra: 1023 / 950
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(6 + 7 / 12, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20779. {
  20780. front: {
  20781. height: math.unit(5 + 10 / 12, "feet"),
  20782. weight: math.unit(150, "lb"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/kris/front.svg",
  20786. extra: 885 / 803,
  20787. bottom: 0.03
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(5 + 10 / 12, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20801. {
  20802. front: {
  20803. height: math.unit(7, "feet"),
  20804. weight: math.unit(120, "kg"),
  20805. name: "Front",
  20806. image: {
  20807. source: "./media/characters/taluthus/front.svg",
  20808. extra: 903 / 833,
  20809. bottom: 0.015
  20810. }
  20811. },
  20812. },
  20813. [
  20814. {
  20815. name: "Normal",
  20816. height: math.unit(7, "feet"),
  20817. default: true
  20818. },
  20819. {
  20820. name: "Macro",
  20821. height: math.unit(300, "feet")
  20822. },
  20823. ]
  20824. ))
  20825. characterMakers.push(() => makeCharacter(
  20826. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20827. {
  20828. front: {
  20829. height: math.unit(5 + 9 / 12, "feet"),
  20830. weight: math.unit(145, "lb"),
  20831. name: "Front",
  20832. image: {
  20833. source: "./media/characters/dawn/front.svg",
  20834. extra: 2094 / 2016,
  20835. bottom: 0.025
  20836. }
  20837. },
  20838. back: {
  20839. height: math.unit(5 + 9 / 12, "feet"),
  20840. weight: math.unit(160, "lb"),
  20841. name: "Back",
  20842. image: {
  20843. source: "./media/characters/dawn/back.svg",
  20844. extra: 2112 / 2080,
  20845. bottom: 0.005
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(6 + 7 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20859. {
  20860. anthro: {
  20861. height: math.unit(8 + 3 / 12, "feet"),
  20862. weight: math.unit(450, "lb"),
  20863. name: "Anthro",
  20864. image: {
  20865. source: "./media/characters/arador/anthro.svg",
  20866. extra: 1835 / 1718,
  20867. bottom: 0.025
  20868. }
  20869. },
  20870. feral: {
  20871. height: math.unit(4, "feet"),
  20872. weight: math.unit(200, "lb"),
  20873. name: "Feral",
  20874. image: {
  20875. source: "./media/characters/arador/feral.svg",
  20876. extra: 1683 / 1514,
  20877. bottom: 0.07
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(8 + 3 / 12, "feet")
  20885. },
  20886. {
  20887. name: "Macro",
  20888. height: math.unit(82.5, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20895. {
  20896. front: {
  20897. height: math.unit(5 + 10 / 12, "feet"),
  20898. weight: math.unit(125, "lb"),
  20899. name: "Front",
  20900. image: {
  20901. source: "./media/characters/dharsi/front.svg",
  20902. extra: 716 / 630,
  20903. bottom: 0.035
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Nano",
  20910. height: math.unit(100, "nm")
  20911. },
  20912. {
  20913. name: "Micro",
  20914. height: math.unit(2, "inches")
  20915. },
  20916. {
  20917. name: "Normal",
  20918. height: math.unit(5 + 10 / 12, "feet"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Macro",
  20923. height: math.unit(1000, "feet")
  20924. },
  20925. {
  20926. name: "Megamacro",
  20927. height: math.unit(10, "miles")
  20928. },
  20929. {
  20930. name: "Gigamacro",
  20931. height: math.unit(3000, "miles")
  20932. },
  20933. {
  20934. name: "Teramacro",
  20935. height: math.unit(500000, "miles")
  20936. },
  20937. {
  20938. name: "Teramacro+",
  20939. height: math.unit(30, "galaxies")
  20940. },
  20941. ]
  20942. ))
  20943. characterMakers.push(() => makeCharacter(
  20944. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20945. {
  20946. front: {
  20947. height: math.unit(6, "feet"),
  20948. weight: math.unit(150, "lb"),
  20949. name: "Front",
  20950. image: {
  20951. source: "./media/characters/deathy/front.svg",
  20952. extra: 1552 / 1463,
  20953. bottom: 0.025
  20954. }
  20955. },
  20956. side: {
  20957. height: math.unit(6, "feet"),
  20958. weight: math.unit(150, "lb"),
  20959. name: "Side",
  20960. image: {
  20961. source: "./media/characters/deathy/side.svg",
  20962. extra: 1604 / 1455,
  20963. bottom: 0.025
  20964. }
  20965. },
  20966. back: {
  20967. height: math.unit(6, "feet"),
  20968. weight: math.unit(150, "lb"),
  20969. name: "Back",
  20970. image: {
  20971. source: "./media/characters/deathy/back.svg",
  20972. extra: 1580 / 1463,
  20973. bottom: 0.005
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Micro",
  20980. height: math.unit(5, "millimeters")
  20981. },
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(6 + 5 / 12, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20991. {
  20992. front: {
  20993. height: math.unit(16, "feet"),
  20994. weight: math.unit(4000, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/juniper/front.svg",
  20998. bottom: 0.04
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Normal",
  21005. height: math.unit(16, "feet"),
  21006. default: true
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(6, "feet"),
  21015. weight: math.unit(150, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/hipster/front.svg",
  21019. extra: 1312 / 1209,
  21020. bottom: 0.025
  21021. }
  21022. },
  21023. back: {
  21024. height: math.unit(6, "feet"),
  21025. weight: math.unit(150, "lb"),
  21026. name: "Back",
  21027. image: {
  21028. source: "./media/characters/hipster/back.svg",
  21029. extra: 1281 / 1196,
  21030. bottom: 0.01
  21031. }
  21032. },
  21033. },
  21034. [
  21035. {
  21036. name: "Micro",
  21037. height: math.unit(1, "mm")
  21038. },
  21039. {
  21040. name: "Normal",
  21041. height: math.unit(4, "inches"),
  21042. default: true
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(500, "feet")
  21047. },
  21048. {
  21049. name: "Megamacro",
  21050. height: math.unit(1000, "miles")
  21051. },
  21052. ]
  21053. ))
  21054. characterMakers.push(() => makeCharacter(
  21055. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21056. {
  21057. front: {
  21058. height: math.unit(6, "feet"),
  21059. weight: math.unit(150, "lb"),
  21060. name: "Front",
  21061. image: {
  21062. source: "./media/characters/tendirmuldr/front.svg",
  21063. extra: 1878 / 1772,
  21064. bottom: 0.015
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Megamacro",
  21071. height: math.unit(1500, "miles"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21078. {
  21079. front: {
  21080. height: math.unit(14, "feet"),
  21081. weight: math.unit(12000, "lb"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/mort/front.svg",
  21085. extra: 365 / 318,
  21086. bottom: 0.01
  21087. }
  21088. },
  21089. side: {
  21090. height: math.unit(14, "feet"),
  21091. weight: math.unit(12000, "lb"),
  21092. name: "Side",
  21093. image: {
  21094. source: "./media/characters/mort/side.svg",
  21095. extra: 365 / 318,
  21096. bottom: 0.052
  21097. },
  21098. default: true
  21099. },
  21100. back: {
  21101. height: math.unit(14, "feet"),
  21102. weight: math.unit(12000, "lb"),
  21103. name: "Back",
  21104. image: {
  21105. source: "./media/characters/mort/back.svg",
  21106. extra: 371 / 332,
  21107. bottom: 0.18
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(14, "feet"),
  21115. default: true
  21116. },
  21117. ]
  21118. ))
  21119. characterMakers.push(() => makeCharacter(
  21120. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21121. {
  21122. front: {
  21123. height: math.unit(8, "feet"),
  21124. weight: math.unit(1, "ton"),
  21125. name: "Front",
  21126. image: {
  21127. source: "./media/characters/lycoa/front.svg",
  21128. extra: 1836/1728,
  21129. bottom: 81/1917
  21130. }
  21131. },
  21132. back: {
  21133. height: math.unit(8, "feet"),
  21134. weight: math.unit(1, "ton"),
  21135. name: "Back",
  21136. image: {
  21137. source: "./media/characters/lycoa/back.svg",
  21138. extra: 1785/1720,
  21139. bottom: 91/1876
  21140. }
  21141. },
  21142. head: {
  21143. height: math.unit(1.6243, "feet"),
  21144. name: "Head",
  21145. image: {
  21146. source: "./media/characters/lycoa/head.svg",
  21147. extra: 1011/782,
  21148. bottom: 0/1011
  21149. }
  21150. },
  21151. tailmaw: {
  21152. height: math.unit(1.9, "feet"),
  21153. name: "Tailmaw",
  21154. image: {
  21155. source: "./media/characters/lycoa/tailmaw.svg"
  21156. }
  21157. },
  21158. tentacles: {
  21159. height: math.unit(2.1, "feet"),
  21160. name: "Tentacles",
  21161. image: {
  21162. source: "./media/characters/lycoa/tentacles.svg"
  21163. }
  21164. },
  21165. dick: {
  21166. height: math.unit(1.73, "feet"),
  21167. name: "Dick",
  21168. image: {
  21169. source: "./media/characters/lycoa/dick.svg"
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(8, "feet"),
  21177. default: true
  21178. },
  21179. {
  21180. name: "Macro",
  21181. height: math.unit(30, "feet")
  21182. },
  21183. ]
  21184. ))
  21185. characterMakers.push(() => makeCharacter(
  21186. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21187. {
  21188. front: {
  21189. height: math.unit(4 + 2 / 12, "feet"),
  21190. weight: math.unit(70, "lb"),
  21191. name: "Front",
  21192. image: {
  21193. source: "./media/characters/naldara/front.svg",
  21194. extra: 1664/1387,
  21195. bottom: 81/1745
  21196. },
  21197. form: "anthro",
  21198. default: true
  21199. },
  21200. naga: {
  21201. height: math.unit(20, "feet"),
  21202. weight: math.unit(15000, "kg"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/naldara/naga.svg",
  21206. extra: 1590/1396,
  21207. bottom: 285/1875
  21208. },
  21209. form: "naga",
  21210. default: true
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(4 + 2 / 12, "feet"),
  21217. form: "anthro",
  21218. default: true
  21219. },
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(20, "feet"),
  21223. form: "naga",
  21224. default: true
  21225. },
  21226. ],
  21227. {
  21228. "anthro": {
  21229. name: "Anthro",
  21230. default: true
  21231. },
  21232. "naga": {
  21233. name: "Naga"
  21234. }
  21235. }
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21239. {
  21240. front: {
  21241. height: math.unit(13 + 7 / 12, "feet"),
  21242. weight: math.unit(1500, "lb"),
  21243. name: "Front",
  21244. image: {
  21245. source: "./media/characters/briar/front.svg",
  21246. extra: 1223/1157,
  21247. bottom: 123/1346
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(13 + 7 / 12, "feet"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21261. {
  21262. side: {
  21263. height: math.unit(16, "feet"),
  21264. weight: math.unit(500, "lb"),
  21265. name: "Side",
  21266. image: {
  21267. source: "./media/characters/vanguard/side.svg",
  21268. extra: 1022/914,
  21269. bottom: 30/1052
  21270. }
  21271. },
  21272. sideAlt: {
  21273. height: math.unit(10, "feet"),
  21274. weight: math.unit(500, "lb"),
  21275. name: "Side (Alt)",
  21276. image: {
  21277. source: "./media/characters/vanguard/side-alt.svg",
  21278. extra: 502 / 425,
  21279. bottom: 0.087
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(17.71, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(7.5, "feet"),
  21296. weight: math.unit(2, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/artemis/work-safe-front.svg",
  21300. extra: 1192 / 1075,
  21301. bottom: 0.07
  21302. },
  21303. form: "work-safe",
  21304. default: true
  21305. },
  21306. frontNsfw: {
  21307. height: math.unit(7.5, "feet"),
  21308. weight: math.unit(2, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/artemis/calibrating-front.svg",
  21312. extra: 1192 / 1075,
  21313. bottom: 0.07
  21314. },
  21315. form: "calibrating",
  21316. default: true
  21317. },
  21318. frontNsfwer: {
  21319. height: math.unit(7.5, "feet"),
  21320. weight: math.unit(2, "lb"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/artemis/oversize-load-front.svg",
  21324. extra: 1192 / 1075,
  21325. bottom: 0.07
  21326. },
  21327. form: "oversize-load",
  21328. default: true
  21329. },
  21330. side: {
  21331. height: math.unit(7.5, "feet"),
  21332. weight: math.unit(2, "lb"),
  21333. name: "Side",
  21334. image: {
  21335. source: "./media/characters/artemis/work-safe-side.svg",
  21336. extra: 1192 / 1075,
  21337. bottom: 0.07
  21338. },
  21339. form: "work-safe"
  21340. },
  21341. sideNsfw: {
  21342. height: math.unit(7.5, "feet"),
  21343. weight: math.unit(2, "lb"),
  21344. name: "Side",
  21345. image: {
  21346. source: "./media/characters/artemis/calibrating-side.svg",
  21347. extra: 1192 / 1075,
  21348. bottom: 0.07
  21349. },
  21350. form: "calibrating"
  21351. },
  21352. sideNsfwer: {
  21353. height: math.unit(7.5, "feet"),
  21354. weight: math.unit(2, "lb"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/artemis/oversize-load-side.svg",
  21358. extra: 1192 / 1075,
  21359. bottom: 0.07
  21360. },
  21361. form: "oversize-load"
  21362. },
  21363. maw: {
  21364. height: math.unit(1.1, "feet"),
  21365. name: "Maw",
  21366. image: {
  21367. source: "./media/characters/artemis/maw.svg"
  21368. },
  21369. form: "work-safe"
  21370. },
  21371. stomach: {
  21372. height: math.unit(0.95, "feet"),
  21373. name: "Stomach",
  21374. image: {
  21375. source: "./media/characters/artemis/stomach.svg"
  21376. },
  21377. form: "work-safe"
  21378. },
  21379. dickCanine: {
  21380. height: math.unit(1, "feet"),
  21381. name: "Dick (Canine)",
  21382. image: {
  21383. source: "./media/characters/artemis/dick-canine.svg"
  21384. },
  21385. form: "calibrating"
  21386. },
  21387. dickEquine: {
  21388. height: math.unit(0.85, "feet"),
  21389. name: "Dick (Equine)",
  21390. image: {
  21391. source: "./media/characters/artemis/dick-equine.svg"
  21392. },
  21393. form: "calibrating"
  21394. },
  21395. dickExotic: {
  21396. height: math.unit(0.85, "feet"),
  21397. name: "Dick (Exotic)",
  21398. image: {
  21399. source: "./media/characters/artemis/dick-exotic.svg"
  21400. },
  21401. form: "calibrating"
  21402. },
  21403. dickCanineBigger: {
  21404. height: math.unit(1 * 1.33, "feet"),
  21405. name: "Dick (Canine)",
  21406. image: {
  21407. source: "./media/characters/artemis/dick-canine.svg"
  21408. },
  21409. form: "oversize-load"
  21410. },
  21411. dickEquineBigger: {
  21412. height: math.unit(0.85 * 1.33, "feet"),
  21413. name: "Dick (Equine)",
  21414. image: {
  21415. source: "./media/characters/artemis/dick-equine.svg"
  21416. },
  21417. form: "oversize-load"
  21418. },
  21419. dickExoticBigger: {
  21420. height: math.unit(0.85 * 1.33, "feet"),
  21421. name: "Dick (Exotic)",
  21422. image: {
  21423. source: "./media/characters/artemis/dick-exotic.svg"
  21424. },
  21425. form: "oversize-load"
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Normal",
  21431. height: math.unit(7.5, "feet"),
  21432. form: "work-safe",
  21433. default: true
  21434. },
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(7.5, "feet"),
  21438. form: "calibrating",
  21439. default: true
  21440. },
  21441. {
  21442. name: "Normal",
  21443. height: math.unit(7.5, "feet"),
  21444. form: "oversize-load",
  21445. default: true
  21446. },
  21447. {
  21448. name: "Enlarged",
  21449. height: math.unit(12, "feet"),
  21450. form: "work-safe",
  21451. },
  21452. {
  21453. name: "Enlarged",
  21454. height: math.unit(12, "feet"),
  21455. form: "calibrating",
  21456. },
  21457. {
  21458. name: "Enlarged",
  21459. height: math.unit(12, "feet"),
  21460. form: "oversize-load",
  21461. },
  21462. ],
  21463. {
  21464. "work-safe": {
  21465. name: "Work-Safe",
  21466. default: true
  21467. },
  21468. "calibrating": {
  21469. name: "Calibrating"
  21470. },
  21471. "oversize-load": {
  21472. name: "Oversize Load"
  21473. }
  21474. }
  21475. ))
  21476. characterMakers.push(() => makeCharacter(
  21477. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21478. {
  21479. front: {
  21480. height: math.unit(5 + 3 / 12, "feet"),
  21481. weight: math.unit(160, "lb"),
  21482. name: "Front",
  21483. image: {
  21484. source: "./media/characters/kira/front.svg",
  21485. extra: 906 / 786,
  21486. bottom: 0.01
  21487. }
  21488. },
  21489. back: {
  21490. height: math.unit(5 + 3 / 12, "feet"),
  21491. weight: math.unit(160, "lb"),
  21492. name: "Back",
  21493. image: {
  21494. source: "./media/characters/kira/back.svg",
  21495. extra: 882 / 757,
  21496. bottom: 0.005
  21497. }
  21498. },
  21499. frontDressed: {
  21500. height: math.unit(5 + 3 / 12, "feet"),
  21501. weight: math.unit(160, "lb"),
  21502. name: "Front (Dressed)",
  21503. image: {
  21504. source: "./media/characters/kira/front-dressed.svg",
  21505. extra: 906 / 786,
  21506. bottom: 0.01
  21507. }
  21508. },
  21509. beans: {
  21510. height: math.unit(0.92, "feet"),
  21511. name: "Beans",
  21512. image: {
  21513. source: "./media/characters/kira/beans.svg"
  21514. }
  21515. },
  21516. },
  21517. [
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(5 + 3 / 12, "feet"),
  21521. default: true
  21522. },
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(5 + 4 / 12, "feet"),
  21530. weight: math.unit(145, "lb"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/scramble/front.svg",
  21534. extra: 763 / 727,
  21535. bottom: 0.05
  21536. }
  21537. },
  21538. back: {
  21539. height: math.unit(5 + 4 / 12, "feet"),
  21540. weight: math.unit(145, "lb"),
  21541. name: "Back",
  21542. image: {
  21543. source: "./media/characters/scramble/back.svg",
  21544. extra: 826 / 737,
  21545. bottom: 0.002
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(5 + 4 / 12, "feet"),
  21553. default: true
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21559. {
  21560. side: {
  21561. height: math.unit(6 + 2 / 12, "feet"),
  21562. weight: math.unit(190, "lb"),
  21563. name: "Side",
  21564. image: {
  21565. source: "./media/characters/biscuit/side.svg",
  21566. extra: 858 / 791,
  21567. bottom: 0.044
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Normal",
  21574. height: math.unit(6 + 2 / 12, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21581. {
  21582. front: {
  21583. height: math.unit(5 + 2 / 12, "feet"),
  21584. weight: math.unit(120, "lb"),
  21585. name: "Front",
  21586. image: {
  21587. source: "./media/characters/poffin/front.svg",
  21588. extra: 786 / 680,
  21589. bottom: 0.005
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(5 + 2 / 12, "feet"),
  21597. default: true
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(6 + 3 / 12, "feet"),
  21606. weight: math.unit(519, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/dhari/front.svg",
  21610. extra: 1048 / 946,
  21611. bottom: 0.015
  21612. }
  21613. },
  21614. back: {
  21615. height: math.unit(6 + 3 / 12, "feet"),
  21616. weight: math.unit(519, "lb"),
  21617. name: "Back",
  21618. image: {
  21619. source: "./media/characters/dhari/back.svg",
  21620. extra: 1048 / 931,
  21621. bottom: 0.005
  21622. }
  21623. },
  21624. frontDressed: {
  21625. height: math.unit(6 + 3 / 12, "feet"),
  21626. weight: math.unit(519, "lb"),
  21627. name: "Front (Dressed)",
  21628. image: {
  21629. source: "./media/characters/dhari/front-dressed.svg",
  21630. extra: 1713 / 1546,
  21631. bottom: 0.02
  21632. }
  21633. },
  21634. backDressed: {
  21635. height: math.unit(6 + 3 / 12, "feet"),
  21636. weight: math.unit(519, "lb"),
  21637. name: "Back (Dressed)",
  21638. image: {
  21639. source: "./media/characters/dhari/back-dressed.svg",
  21640. extra: 1699 / 1537,
  21641. bottom: 0.01
  21642. }
  21643. },
  21644. maw: {
  21645. height: math.unit(0.95, "feet"),
  21646. name: "Maw",
  21647. image: {
  21648. source: "./media/characters/dhari/maw.svg"
  21649. }
  21650. },
  21651. wereFront: {
  21652. height: math.unit(12 + 8 / 12, "feet"),
  21653. weight: math.unit(4000, "lb"),
  21654. name: "Front (Were)",
  21655. image: {
  21656. source: "./media/characters/dhari/were-front.svg",
  21657. extra: 1065 / 969,
  21658. bottom: 0.015
  21659. }
  21660. },
  21661. wereBack: {
  21662. height: math.unit(12 + 8 / 12, "feet"),
  21663. weight: math.unit(4000, "lb"),
  21664. name: "Back (Were)",
  21665. image: {
  21666. source: "./media/characters/dhari/were-back.svg",
  21667. extra: 1065 / 969,
  21668. bottom: 0.012
  21669. }
  21670. },
  21671. wereMaw: {
  21672. height: math.unit(0.625, "meters"),
  21673. name: "Maw (Were)",
  21674. image: {
  21675. source: "./media/characters/dhari/were-maw.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(6 + 3 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21689. {
  21690. anthro: {
  21691. height: math.unit(5 + 7 / 12, "feet"),
  21692. weight: math.unit(175, "lb"),
  21693. name: "Anthro",
  21694. image: {
  21695. source: "./media/characters/rena-dyne/anthro.svg",
  21696. extra: 1849 / 1785,
  21697. bottom: 0.005
  21698. }
  21699. },
  21700. taur: {
  21701. height: math.unit(15 + 6 / 12, "feet"),
  21702. weight: math.unit(8000, "lb"),
  21703. name: "Taur",
  21704. image: {
  21705. source: "./media/characters/rena-dyne/taur.svg",
  21706. extra: 2315 / 2234,
  21707. bottom: 0.033
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(5 + 7 / 12, "feet"),
  21715. default: true
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21721. {
  21722. front: {
  21723. height: math.unit(8, "feet"),
  21724. weight: math.unit(600, "lb"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/weremeep/front.svg",
  21728. extra: 967 / 862,
  21729. bottom: 0.01
  21730. }
  21731. },
  21732. },
  21733. [
  21734. {
  21735. name: "Normal",
  21736. height: math.unit(8, "feet"),
  21737. default: true
  21738. },
  21739. {
  21740. name: "Lorg",
  21741. height: math.unit(12, "feet")
  21742. },
  21743. {
  21744. name: "Oh Lawd She Comin'",
  21745. height: math.unit(20, "feet")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21751. {
  21752. front: {
  21753. height: math.unit(4, "feet"),
  21754. weight: math.unit(90, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/reza/front.svg",
  21758. extra: 1183 / 1111,
  21759. bottom: 0.017
  21760. }
  21761. },
  21762. back: {
  21763. height: math.unit(4, "feet"),
  21764. weight: math.unit(90, "lb"),
  21765. name: "Back",
  21766. image: {
  21767. source: "./media/characters/reza/back.svg",
  21768. extra: 1183 / 1111,
  21769. bottom: 0.01
  21770. }
  21771. },
  21772. drake: {
  21773. height: math.unit(30, "feet"),
  21774. weight: math.unit(246960, "lb"),
  21775. name: "Drake",
  21776. image: {
  21777. source: "./media/characters/reza/drake.svg",
  21778. extra: 2350 / 2024,
  21779. bottom: 60.7 / 2403
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(4, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21793. {
  21794. side: {
  21795. height: math.unit(15, "feet"),
  21796. weight: math.unit(14, "tons"),
  21797. name: "Side",
  21798. image: {
  21799. source: "./media/characters/athea/side.svg",
  21800. extra: 960 / 540,
  21801. bottom: 0.003
  21802. }
  21803. },
  21804. sitting: {
  21805. height: math.unit(6 * 2.85, "feet"),
  21806. weight: math.unit(14, "tons"),
  21807. name: "Sitting",
  21808. image: {
  21809. source: "./media/characters/athea/sitting.svg",
  21810. extra: 621 / 581,
  21811. bottom: 0.075
  21812. }
  21813. },
  21814. maw: {
  21815. height: math.unit(7.59498031496063, "feet"),
  21816. name: "Maw",
  21817. image: {
  21818. source: "./media/characters/athea/maw.svg"
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Lap Cat",
  21825. height: math.unit(2.5, "feet")
  21826. },
  21827. {
  21828. name: "Minimacro",
  21829. height: math.unit(15, "feet"),
  21830. default: true
  21831. },
  21832. {
  21833. name: "Macro",
  21834. height: math.unit(120, "feet")
  21835. },
  21836. {
  21837. name: "Macro+",
  21838. height: math.unit(640, "feet")
  21839. },
  21840. {
  21841. name: "Colossus",
  21842. height: math.unit(2.2, "miles")
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(8 + 8 / 12, "feet"),
  21851. weight: math.unit(130, "kg"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/seroko/front.svg",
  21855. extra: 1385 / 1280,
  21856. bottom: 0.025
  21857. }
  21858. },
  21859. back: {
  21860. height: math.unit(8 + 8 / 12, "feet"),
  21861. weight: math.unit(130, "kg"),
  21862. name: "Back",
  21863. image: {
  21864. source: "./media/characters/seroko/back.svg",
  21865. extra: 1369 / 1238,
  21866. bottom: 0.018
  21867. }
  21868. },
  21869. frontDressed: {
  21870. height: math.unit(8 + 8 / 12, "feet"),
  21871. weight: math.unit(130, "kg"),
  21872. name: "Front (Dressed)",
  21873. image: {
  21874. source: "./media/characters/seroko/front-dressed.svg",
  21875. extra: 1366 / 1275,
  21876. bottom: 0.03
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(8 + 8 / 12, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21890. {
  21891. front: {
  21892. height: math.unit(5.5, "feet"),
  21893. weight: math.unit(160, "lb"),
  21894. name: "Front",
  21895. image: {
  21896. source: "./media/characters/quatzi/front.svg",
  21897. extra: 2346 / 2242,
  21898. bottom: 0.015
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(5.5, "feet"),
  21906. default: true
  21907. },
  21908. {
  21909. name: "Big",
  21910. height: math.unit(7.7, "feet")
  21911. },
  21912. ]
  21913. ))
  21914. characterMakers.push(() => makeCharacter(
  21915. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21916. {
  21917. front: {
  21918. height: math.unit(5 + 11 / 12, "feet"),
  21919. weight: math.unit(180, "lb"),
  21920. name: "Front",
  21921. image: {
  21922. source: "./media/characters/sen/front.svg",
  21923. extra: 1321 / 1254,
  21924. bottom: 0.015
  21925. }
  21926. },
  21927. side: {
  21928. height: math.unit(5 + 11 / 12, "feet"),
  21929. weight: math.unit(180, "lb"),
  21930. name: "Side",
  21931. image: {
  21932. source: "./media/characters/sen/side.svg",
  21933. extra: 1321 / 1254,
  21934. bottom: 0.007
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(5 + 11 / 12, "feet"),
  21939. weight: math.unit(180, "lb"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/sen/back.svg",
  21943. extra: 1321 / 1254
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 11 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(166.6, "cm"),
  21960. weight: math.unit(66.6, "kg"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/fruity/front.svg",
  21964. extra: 1510 / 1386,
  21965. bottom: 0.04
  21966. }
  21967. },
  21968. back: {
  21969. height: math.unit(166.6, "cm"),
  21970. weight: math.unit(66.6, "lb"),
  21971. name: "Back",
  21972. image: {
  21973. source: "./media/characters/fruity/back.svg",
  21974. extra: 1563 / 1435,
  21975. bottom: 0.005
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(166.6, "cm"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Demonic",
  21987. height: math.unit(166.6, "feet")
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21993. {
  21994. side: {
  21995. height: math.unit(10, "feet"),
  21996. weight: math.unit(500, "lb"),
  21997. name: "Side",
  21998. image: {
  21999. source: "./media/characters/zost/side.svg",
  22000. extra: 2870/2533,
  22001. bottom: 252/3122
  22002. }
  22003. },
  22004. mawFront: {
  22005. height: math.unit(1.08, "meters"),
  22006. name: "Maw (Front)",
  22007. image: {
  22008. source: "./media/characters/zost/maw-front.svg"
  22009. }
  22010. },
  22011. mawSide: {
  22012. height: math.unit(2.66, "feet"),
  22013. name: "Maw (Side)",
  22014. image: {
  22015. source: "./media/characters/zost/maw-side.svg"
  22016. }
  22017. },
  22018. wingspan: {
  22019. height: math.unit(7.4, "feet"),
  22020. name: "Wingspan",
  22021. image: {
  22022. source: "./media/characters/zost/wingspan.svg"
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(10, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(5 + 4 / 12, "feet"),
  22039. weight: math.unit(120, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/luci/front.svg",
  22043. extra: 1985 / 1884,
  22044. bottom: 0.04
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/luci/back.svg",
  22053. extra: 1892 / 1791,
  22054. bottom: 0.002
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(5 + 4 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(1500, "feet"),
  22071. weight: math.unit(3.8e6, "tons"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/2th/front.svg",
  22075. extra: 3489 / 3350,
  22076. bottom: 0.1
  22077. }
  22078. },
  22079. foot: {
  22080. height: math.unit(461, "feet"),
  22081. name: "Foot",
  22082. image: {
  22083. source: "./media/characters/2th/foot.svg"
  22084. }
  22085. },
  22086. },
  22087. [
  22088. {
  22089. name: "\"Micro\"",
  22090. height: math.unit(15 + 7 / 12, "feet")
  22091. },
  22092. {
  22093. name: "Normal",
  22094. height: math.unit(1500, "feet"),
  22095. default: true
  22096. },
  22097. {
  22098. name: "Macro",
  22099. height: math.unit(5000, "feet")
  22100. },
  22101. {
  22102. name: "Megamacro",
  22103. height: math.unit(15, "miles")
  22104. },
  22105. {
  22106. name: "Gigamacro",
  22107. height: math.unit(4000, "miles")
  22108. },
  22109. {
  22110. name: "Galactic",
  22111. height: math.unit(50, "AU")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22117. {
  22118. front: {
  22119. height: math.unit(5 + 6 / 12, "feet"),
  22120. weight: math.unit(220, "lb"),
  22121. name: "Front",
  22122. image: {
  22123. source: "./media/characters/amethyst/front.svg",
  22124. extra: 2078 / 2040,
  22125. bottom: 0.045
  22126. }
  22127. },
  22128. back: {
  22129. height: math.unit(5 + 6 / 12, "feet"),
  22130. weight: math.unit(220, "lb"),
  22131. name: "Back",
  22132. image: {
  22133. source: "./media/characters/amethyst/back.svg",
  22134. extra: 2021 / 1989,
  22135. bottom: 0.02
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(5 + 6 / 12, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(4 + 11 / 12, "feet"),
  22152. weight: math.unit(120, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/yumi-akiyama/front.svg",
  22156. extra: 1327 / 1235,
  22157. bottom: 0.02
  22158. }
  22159. },
  22160. back: {
  22161. height: math.unit(4 + 11 / 12, "feet"),
  22162. weight: math.unit(120, "lb"),
  22163. name: "Back",
  22164. image: {
  22165. source: "./media/characters/yumi-akiyama/back.svg",
  22166. extra: 1287 / 1245,
  22167. bottom: 0.002
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Galactic",
  22174. height: math.unit(50, "galaxies"),
  22175. default: true
  22176. },
  22177. {
  22178. name: "Universal",
  22179. height: math.unit(100, "universes")
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(8, "feet"),
  22188. weight: math.unit(500, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/rifter-yrmori/front.svg",
  22192. extra: 1180 / 1125,
  22193. bottom: 0.02
  22194. }
  22195. },
  22196. back: {
  22197. height: math.unit(8, "feet"),
  22198. weight: math.unit(500, "lb"),
  22199. name: "Back",
  22200. image: {
  22201. source: "./media/characters/rifter-yrmori/back.svg",
  22202. extra: 1190 / 1145,
  22203. bottom: 0.001
  22204. }
  22205. },
  22206. wings: {
  22207. height: math.unit(7.75, "feet"),
  22208. weight: math.unit(500, "lb"),
  22209. name: "Wings",
  22210. image: {
  22211. source: "./media/characters/rifter-yrmori/wings.svg",
  22212. extra: 1357 / 1285
  22213. }
  22214. },
  22215. maw: {
  22216. height: math.unit(0.8, "feet"),
  22217. name: "Maw",
  22218. image: {
  22219. source: "./media/characters/rifter-yrmori/maw.svg"
  22220. }
  22221. },
  22222. mawfront: {
  22223. height: math.unit(1.45, "feet"),
  22224. name: "Maw (Front)",
  22225. image: {
  22226. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(8, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Macro",
  22238. height: math.unit(42, "meters")
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22244. {
  22245. were: {
  22246. height: math.unit(25 + 6 / 12, "feet"),
  22247. weight: math.unit(10000, "lb"),
  22248. name: "Were",
  22249. image: {
  22250. source: "./media/characters/tahajin/were.svg",
  22251. extra: 801 / 770,
  22252. bottom: 0.042
  22253. }
  22254. },
  22255. aquatic: {
  22256. height: math.unit(6 + 4 / 12, "feet"),
  22257. weight: math.unit(160, "lb"),
  22258. name: "Aquatic",
  22259. image: {
  22260. source: "./media/characters/tahajin/aquatic.svg",
  22261. extra: 572 / 542,
  22262. bottom: 0.04
  22263. }
  22264. },
  22265. chow: {
  22266. height: math.unit(8 + 11 / 12, "feet"),
  22267. weight: math.unit(450, "lb"),
  22268. name: "Chow",
  22269. image: {
  22270. source: "./media/characters/tahajin/chow.svg",
  22271. extra: 660 / 640,
  22272. bottom: 0.015
  22273. }
  22274. },
  22275. demiNaga: {
  22276. height: math.unit(6 + 8 / 12, "feet"),
  22277. weight: math.unit(300, "lb"),
  22278. name: "Demi Naga",
  22279. image: {
  22280. source: "./media/characters/tahajin/demi-naga.svg",
  22281. extra: 643 / 615,
  22282. bottom: 0.1
  22283. }
  22284. },
  22285. data: {
  22286. height: math.unit(5, "inches"),
  22287. weight: math.unit(0.1, "lb"),
  22288. name: "Data",
  22289. image: {
  22290. source: "./media/characters/tahajin/data.svg"
  22291. }
  22292. },
  22293. fluu: {
  22294. height: math.unit(5 + 7 / 12, "feet"),
  22295. weight: math.unit(140, "lb"),
  22296. name: "Fluu",
  22297. image: {
  22298. source: "./media/characters/tahajin/fluu.svg",
  22299. extra: 628 / 592,
  22300. bottom: 0.02
  22301. }
  22302. },
  22303. starWarrior: {
  22304. height: math.unit(4 + 5 / 12, "feet"),
  22305. weight: math.unit(50, "lb"),
  22306. name: "Star Warrior",
  22307. image: {
  22308. source: "./media/characters/tahajin/star-warrior.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(25 + 6 / 12, "feet"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(8, "feet"),
  22325. weight: math.unit(350, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/gabira/front.svg",
  22329. extra: 608 / 580,
  22330. bottom: 0.03
  22331. }
  22332. },
  22333. back: {
  22334. height: math.unit(8, "feet"),
  22335. weight: math.unit(350, "lb"),
  22336. name: "Back",
  22337. image: {
  22338. source: "./media/characters/gabira/back.svg",
  22339. extra: 608 / 580,
  22340. bottom: 0.03
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(8, "feet"),
  22348. default: true
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(5 + 3 / 12, "feet"),
  22357. weight: math.unit(137, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/sasha-katraine/front.svg",
  22361. extra: 1745/1694,
  22362. bottom: 37/1782
  22363. }
  22364. },
  22365. back: {
  22366. height: math.unit(5 + 3 / 12, "feet"),
  22367. weight: math.unit(137, "lb"),
  22368. name: "Back",
  22369. image: {
  22370. source: "./media/characters/sasha-katraine/back.svg",
  22371. extra: 1776/1699,
  22372. bottom: 26/1802
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Micro",
  22379. height: math.unit(5, "inches")
  22380. },
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(5 + 3 / 12, "feet"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22390. {
  22391. side: {
  22392. height: math.unit(4, "inches"),
  22393. weight: math.unit(200, "grams"),
  22394. name: "Side",
  22395. image: {
  22396. source: "./media/characters/der/side.svg",
  22397. extra: 719 / 400,
  22398. bottom: 30.6 / 749.9187
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Micro",
  22405. height: math.unit(4, "inches"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22412. {
  22413. side: {
  22414. height: math.unit(30, "meters"),
  22415. weight: math.unit(700, "tonnes"),
  22416. name: "Side",
  22417. image: {
  22418. source: "./media/characters/fixerdragon/side.svg",
  22419. extra: (1293.0514 - 116.03) / 1106.86,
  22420. bottom: 116.03 / 1293.0514
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Planck",
  22427. height: math.unit(1.6e-35, "meters")
  22428. },
  22429. {
  22430. name: "Micro",
  22431. height: math.unit(0.4, "meters")
  22432. },
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(30, "meters"),
  22436. default: true
  22437. },
  22438. {
  22439. name: "Megamacro",
  22440. height: math.unit(1.2, "megameters")
  22441. },
  22442. {
  22443. name: "Teramacro",
  22444. height: math.unit(130, "terameters")
  22445. },
  22446. {
  22447. name: "Yottamacro",
  22448. height: math.unit(6200, "yottameters")
  22449. },
  22450. ]
  22451. ));
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(8, "feet"),
  22457. weight: math.unit(250, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/kite/front.svg",
  22461. extra: 2796 / 2659,
  22462. bottom: 0.002
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(8, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Macro",
  22474. height: math.unit(360, "feet")
  22475. },
  22476. {
  22477. name: "Megamacro",
  22478. height: math.unit(1500, "feet")
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(5 + 11/12, "feet"),
  22487. weight: math.unit(170, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/poojawa-vynar/front.svg",
  22491. extra: 1735/1585,
  22492. bottom: 96/1831
  22493. }
  22494. },
  22495. back: {
  22496. height: math.unit(5 + 11/12, "feet"),
  22497. weight: math.unit(170, "lb"),
  22498. name: "Back",
  22499. image: {
  22500. source: "./media/characters/poojawa-vynar/back.svg",
  22501. extra: 1749/1607,
  22502. bottom: 28/1777
  22503. }
  22504. },
  22505. male: {
  22506. height: math.unit(5 + 11/12, "feet"),
  22507. weight: math.unit(170, "lb"),
  22508. name: "Male",
  22509. image: {
  22510. source: "./media/characters/poojawa-vynar/male.svg",
  22511. extra: 1855/1713,
  22512. bottom: 63/1918
  22513. }
  22514. },
  22515. taur: {
  22516. height: math.unit(5 + 11/12, "feet"),
  22517. weight: math.unit(170, "lb"),
  22518. name: "Taur",
  22519. image: {
  22520. source: "./media/characters/poojawa-vynar/taur.svg",
  22521. extra: 1151/1059,
  22522. bottom: 356/1507
  22523. }
  22524. },
  22525. frontDressed: {
  22526. height: math.unit(5 + 11/12, "feet"),
  22527. weight: math.unit(170, "lb"),
  22528. name: "Front (Dressed)",
  22529. image: {
  22530. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22531. extra: 1735/1585,
  22532. bottom: 96/1831
  22533. }
  22534. },
  22535. backDressed: {
  22536. height: math.unit(5 + 11/12, "feet"),
  22537. weight: math.unit(170, "lb"),
  22538. name: "Back (Dressed)",
  22539. image: {
  22540. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22541. extra: 1749/1607,
  22542. bottom: 28/1777
  22543. }
  22544. },
  22545. maleDressed: {
  22546. height: math.unit(5 + 11/12, "feet"),
  22547. weight: math.unit(170, "lb"),
  22548. name: "Male (Dressed)",
  22549. image: {
  22550. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22551. extra: 1855/1713,
  22552. bottom: 63/1918
  22553. }
  22554. },
  22555. taurDressed: {
  22556. height: math.unit(5 + 11/12, "feet"),
  22557. weight: math.unit(170, "lb"),
  22558. name: "Taur (Dressed)",
  22559. image: {
  22560. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22561. extra: 1151/1059,
  22562. bottom: 356/1507
  22563. }
  22564. },
  22565. maw: {
  22566. height: math.unit(1.46, "feet"),
  22567. name: "Maw",
  22568. image: {
  22569. source: "./media/characters/poojawa-vynar/maw.svg"
  22570. }
  22571. },
  22572. head: {
  22573. height: math.unit(2.34, "feet"),
  22574. name: "Head",
  22575. image: {
  22576. source: "./media/characters/poojawa-vynar/head.svg"
  22577. }
  22578. },
  22579. paw: {
  22580. height: math.unit(1.61, "feet"),
  22581. name: "Paw",
  22582. image: {
  22583. source: "./media/characters/poojawa-vynar/paw.svg"
  22584. }
  22585. },
  22586. pawToering: {
  22587. height: math.unit(1.72, "feet"),
  22588. name: "Paw (Toering)",
  22589. image: {
  22590. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22591. }
  22592. },
  22593. toering: {
  22594. height: math.unit(2.9, "inches"),
  22595. name: "Toering",
  22596. image: {
  22597. source: "./media/characters/poojawa-vynar/toering.svg"
  22598. }
  22599. },
  22600. shaft: {
  22601. height: math.unit(0.625, "feet"),
  22602. name: "Shaft",
  22603. image: {
  22604. source: "./media/characters/poojawa-vynar/shaft.svg"
  22605. }
  22606. },
  22607. spade: {
  22608. height: math.unit(0.42, "feet"),
  22609. name: "Spade",
  22610. image: {
  22611. source: "./media/characters/poojawa-vynar/spade.svg"
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Shortstack",
  22618. height: math.unit(4, "feet")
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 11 / 12, "feet"),
  22623. default: true
  22624. },
  22625. {
  22626. name: "Tauric",
  22627. height: math.unit(4, "meters")
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22633. {
  22634. front: {
  22635. height: math.unit(293, "meters"),
  22636. weight: math.unit(70400, "tons"),
  22637. name: "Front",
  22638. image: {
  22639. source: "./media/characters/violette/front.svg",
  22640. extra: 1227 / 1180,
  22641. bottom: 0.005
  22642. }
  22643. },
  22644. back: {
  22645. height: math.unit(293, "meters"),
  22646. weight: math.unit(70400, "tons"),
  22647. name: "Back",
  22648. image: {
  22649. source: "./media/characters/violette/back.svg",
  22650. extra: 1227 / 1180,
  22651. bottom: 0.005
  22652. }
  22653. },
  22654. },
  22655. [
  22656. {
  22657. name: "Macro",
  22658. height: math.unit(293, "meters"),
  22659. default: true
  22660. },
  22661. ]
  22662. ))
  22663. characterMakers.push(() => makeCharacter(
  22664. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22665. {
  22666. front: {
  22667. height: math.unit(1050, "feet"),
  22668. weight: math.unit(200000, "tons"),
  22669. name: "Front",
  22670. image: {
  22671. source: "./media/characters/alessandra/front.svg",
  22672. extra: 960 / 912,
  22673. bottom: 0.06
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Macro",
  22680. height: math.unit(1050, "feet")
  22681. },
  22682. {
  22683. name: "Macro+",
  22684. height: math.unit(900, "meters"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22691. {
  22692. front: {
  22693. height: math.unit(5, "feet"),
  22694. weight: math.unit(187, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/person/front.svg",
  22698. extra: 3087 / 2945,
  22699. bottom: 91 / 3181
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Micro",
  22706. height: math.unit(3, "inches")
  22707. },
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(5, "feet"),
  22711. default: true
  22712. },
  22713. {
  22714. name: "Macro",
  22715. height: math.unit(90, "feet")
  22716. },
  22717. {
  22718. name: "Max Size",
  22719. height: math.unit(280, "feet")
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22725. {
  22726. front: {
  22727. height: math.unit(4.5, "meters"),
  22728. weight: math.unit(3200, "lb"),
  22729. name: "Front",
  22730. image: {
  22731. source: "./media/characters/ty/front.svg",
  22732. extra: 1038 / 960,
  22733. bottom: 31.156 / 1068
  22734. }
  22735. },
  22736. back: {
  22737. height: math.unit(4.5, "meters"),
  22738. weight: math.unit(3200, "lb"),
  22739. name: "Back",
  22740. image: {
  22741. source: "./media/characters/ty/back.svg",
  22742. extra: 1044 / 966,
  22743. bottom: 7.48 / 1049
  22744. }
  22745. },
  22746. },
  22747. [
  22748. {
  22749. name: "Normal",
  22750. height: math.unit(4.5, "meters"),
  22751. default: true
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22757. {
  22758. front: {
  22759. height: math.unit(5 + 4 / 12, "feet"),
  22760. weight: math.unit(115, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/rocky/front.svg",
  22764. extra: 1012 / 975,
  22765. bottom: 54 / 1066
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(5 + 4 / 12, "feet"),
  22773. default: true
  22774. },
  22775. ]
  22776. ))
  22777. characterMakers.push(() => makeCharacter(
  22778. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22779. {
  22780. upright: {
  22781. height: math.unit(6, "meters"),
  22782. weight: math.unit(4000, "kg"),
  22783. name: "Upright",
  22784. image: {
  22785. source: "./media/characters/ruin/upright.svg",
  22786. extra: 668 / 661,
  22787. bottom: 42 / 799.8396
  22788. }
  22789. },
  22790. },
  22791. [
  22792. {
  22793. name: "Normal",
  22794. height: math.unit(6, "meters"),
  22795. default: true
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22801. {
  22802. front: {
  22803. height: math.unit(5, "feet"),
  22804. weight: math.unit(106, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/robin/front.svg",
  22808. extra: 862 / 799,
  22809. bottom: 42.4 / 914.8856
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Normal",
  22816. height: math.unit(5, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22823. {
  22824. side: {
  22825. height: math.unit(3, "feet"),
  22826. weight: math.unit(225, "lb"),
  22827. name: "Side",
  22828. image: {
  22829. source: "./media/characters/saian/side.svg",
  22830. extra: 566 / 356,
  22831. bottom: 79.7 / 643
  22832. }
  22833. },
  22834. maw: {
  22835. height: math.unit(2.85, "feet"),
  22836. name: "Maw",
  22837. image: {
  22838. source: "./media/characters/saian/maw.svg"
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Normal",
  22845. height: math.unit(3, "feet"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22852. {
  22853. side: {
  22854. height: math.unit(8, "feet"),
  22855. weight: math.unit(300, "lb"),
  22856. name: "Side",
  22857. image: {
  22858. source: "./media/characters/equus-silvermane/side.svg",
  22859. extra: 2176 / 2050,
  22860. bottom: 65.7 / 2245
  22861. }
  22862. },
  22863. front: {
  22864. height: math.unit(8, "feet"),
  22865. weight: math.unit(300, "lb"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/equus-silvermane/front.svg",
  22869. extra: 4633 / 4400,
  22870. bottom: 71.3 / 4706.915
  22871. }
  22872. },
  22873. sideStepping: {
  22874. height: math.unit(8, "feet"),
  22875. weight: math.unit(300, "lb"),
  22876. name: "Side (Stepping)",
  22877. image: {
  22878. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22879. extra: 1968 / 1860,
  22880. bottom: 16.4 / 1989
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(8, "feet")
  22888. },
  22889. {
  22890. name: "Minimacro",
  22891. height: math.unit(75, "feet"),
  22892. default: true
  22893. },
  22894. {
  22895. name: "Macro",
  22896. height: math.unit(150, "feet")
  22897. },
  22898. {
  22899. name: "Macro+",
  22900. height: math.unit(1000, "feet")
  22901. },
  22902. {
  22903. name: "Megamacro",
  22904. height: math.unit(1, "mile")
  22905. },
  22906. ]
  22907. ))
  22908. characterMakers.push(() => makeCharacter(
  22909. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22910. {
  22911. side: {
  22912. height: math.unit(20, "feet"),
  22913. weight: math.unit(30000, "kg"),
  22914. name: "Side",
  22915. image: {
  22916. source: "./media/characters/windar/side.svg",
  22917. extra: 1491 / 1248,
  22918. bottom: 82.56 / 1568
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Normal",
  22925. height: math.unit(20, "feet"),
  22926. default: true
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22932. {
  22933. side: {
  22934. height: math.unit(15.66, "feet"),
  22935. weight: math.unit(150, "lb"),
  22936. name: "Side",
  22937. image: {
  22938. source: "./media/characters/melody/side.svg",
  22939. extra: 1097 / 944,
  22940. bottom: 11.8 / 1109
  22941. }
  22942. },
  22943. sideOutfit: {
  22944. height: math.unit(15.66, "feet"),
  22945. weight: math.unit(150, "lb"),
  22946. name: "Side (Outfit)",
  22947. image: {
  22948. source: "./media/characters/melody/side-outfit.svg",
  22949. extra: 1097 / 944,
  22950. bottom: 11.8 / 1109
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Normal",
  22957. height: math.unit(15.66, "feet"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22964. {
  22965. front: {
  22966. height: math.unit(8, "feet"),
  22967. weight: math.unit(325, "lb"),
  22968. name: "Front",
  22969. image: {
  22970. source: "./media/characters/windera/front.svg",
  22971. extra: 3180 / 2845,
  22972. bottom: 178 / 3365
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(8, "feet"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22986. {
  22987. front: {
  22988. height: math.unit(28.75, "feet"),
  22989. weight: math.unit(2000, "kg"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/sonear/front.svg",
  22993. extra: 1041.1 / 964.9,
  22994. bottom: 53.7 / 1096.6
  22995. }
  22996. },
  22997. },
  22998. [
  22999. {
  23000. name: "Normal",
  23001. height: math.unit(28.75, "feet"),
  23002. default: true
  23003. },
  23004. ]
  23005. ))
  23006. characterMakers.push(() => makeCharacter(
  23007. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23008. {
  23009. side: {
  23010. height: math.unit(25.5, "feet"),
  23011. weight: math.unit(23000, "kg"),
  23012. name: "Side",
  23013. image: {
  23014. source: "./media/characters/kanara/side.svg"
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(25.5, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23028. {
  23029. side: {
  23030. height: math.unit(10, "feet"),
  23031. weight: math.unit(1000, "kg"),
  23032. name: "Side",
  23033. image: {
  23034. source: "./media/characters/ereus/side.svg",
  23035. extra: 1157 / 959,
  23036. bottom: 153 / 1312.5
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Normal",
  23043. height: math.unit(10, "feet"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23050. {
  23051. side: {
  23052. height: math.unit(4.5, "feet"),
  23053. weight: math.unit(500, "lb"),
  23054. name: "Side",
  23055. image: {
  23056. source: "./media/characters/e-ter/side.svg",
  23057. extra: 1550 / 1248,
  23058. bottom: 146 / 1694
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(4.5, "feet"),
  23066. default: true
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23072. {
  23073. side: {
  23074. height: math.unit(9.7, "feet"),
  23075. weight: math.unit(4000, "kg"),
  23076. name: "Side",
  23077. image: {
  23078. source: "./media/characters/yamie/side.svg"
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Normal",
  23085. height: math.unit(9.7, "feet"),
  23086. default: true
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23092. {
  23093. front: {
  23094. height: math.unit(50, "feet"),
  23095. weight: math.unit(50000, "kg"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/anders/front.svg",
  23099. extra: 570 / 539,
  23100. bottom: 14.7 / 586.7
  23101. }
  23102. },
  23103. },
  23104. [
  23105. {
  23106. name: "Large",
  23107. height: math.unit(50, "feet")
  23108. },
  23109. {
  23110. name: "Macro",
  23111. height: math.unit(2000, "feet"),
  23112. default: true
  23113. },
  23114. {
  23115. name: "Megamacro",
  23116. height: math.unit(12, "miles")
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23122. {
  23123. front: {
  23124. height: math.unit(7 + 2 / 12, "feet"),
  23125. weight: math.unit(300, "lb"),
  23126. name: "Front",
  23127. image: {
  23128. source: "./media/characters/reban/front.svg",
  23129. extra: 1287/1212,
  23130. bottom: 148/1435
  23131. }
  23132. },
  23133. head: {
  23134. height: math.unit(1.95, "feet"),
  23135. name: "Head",
  23136. image: {
  23137. source: "./media/characters/reban/head.svg"
  23138. }
  23139. },
  23140. maw: {
  23141. height: math.unit(0.95, "feet"),
  23142. name: "Maw",
  23143. image: {
  23144. source: "./media/characters/reban/maw.svg"
  23145. }
  23146. },
  23147. foot: {
  23148. height: math.unit(1.65, "feet"),
  23149. name: "Foot",
  23150. image: {
  23151. source: "./media/characters/reban/foot.svg"
  23152. }
  23153. },
  23154. dick: {
  23155. height: math.unit(7 / 5, "feet"),
  23156. name: "Dick",
  23157. image: {
  23158. source: "./media/characters/reban/dick.svg"
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Natural Height",
  23165. height: math.unit(7 + 2 / 12, "feet")
  23166. },
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(500, "feet"),
  23170. default: true
  23171. },
  23172. {
  23173. name: "Canon Height",
  23174. height: math.unit(50, "AU")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(6, "feet"),
  23183. weight: math.unit(150, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/terrance-keayes/front.svg",
  23187. extra: 1.005,
  23188. bottom: 151 / 1615
  23189. }
  23190. },
  23191. side: {
  23192. height: math.unit(6, "feet"),
  23193. weight: math.unit(150, "lb"),
  23194. name: "Side",
  23195. image: {
  23196. source: "./media/characters/terrance-keayes/side.svg",
  23197. extra: 1.005,
  23198. bottom: 129.4 / 1544
  23199. }
  23200. },
  23201. back: {
  23202. height: math.unit(6, "feet"),
  23203. weight: math.unit(150, "lb"),
  23204. name: "Back",
  23205. image: {
  23206. source: "./media/characters/terrance-keayes/back.svg",
  23207. extra: 1.005,
  23208. bottom: 58.4 / 1557.3
  23209. }
  23210. },
  23211. dick: {
  23212. height: math.unit(6 * 0.208, "feet"),
  23213. name: "Dick",
  23214. image: {
  23215. source: "./media/characters/terrance-keayes/dick.svg"
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Canon Height",
  23222. height: math.unit(35, "miles"),
  23223. default: true
  23224. },
  23225. ]
  23226. ))
  23227. characterMakers.push(() => makeCharacter(
  23228. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23229. {
  23230. front: {
  23231. height: math.unit(6, "feet"),
  23232. weight: math.unit(150, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/ofelia/front.svg",
  23236. extra: 1130/1117,
  23237. bottom: 91/1221
  23238. }
  23239. },
  23240. back: {
  23241. height: math.unit(6, "feet"),
  23242. weight: math.unit(150, "lb"),
  23243. name: "Back",
  23244. image: {
  23245. source: "./media/characters/ofelia/back.svg",
  23246. extra: 1172/1159,
  23247. bottom: 28/1200
  23248. }
  23249. },
  23250. maw: {
  23251. height: math.unit(1, "feet"),
  23252. name: "Maw",
  23253. image: {
  23254. source: "./media/characters/ofelia/maw.svg"
  23255. }
  23256. },
  23257. foot: {
  23258. height: math.unit(1.949, "feet"),
  23259. name: "Foot",
  23260. image: {
  23261. source: "./media/characters/ofelia/foot.svg"
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Canon Height",
  23268. height: math.unit(2000, "miles"),
  23269. default: true
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23275. {
  23276. front: {
  23277. height: math.unit(6, "feet"),
  23278. weight: math.unit(150, "lb"),
  23279. name: "Front",
  23280. image: {
  23281. source: "./media/characters/samuel/front.svg",
  23282. extra: 265 / 258,
  23283. bottom: 2 / 266.1566
  23284. }
  23285. },
  23286. },
  23287. [
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(100, "feet"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Full Size",
  23295. height: math.unit(1000, "miles")
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(6, "feet"),
  23304. weight: math.unit(300, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/beishir-kiel/front.svg",
  23308. extra: 569 / 547,
  23309. bottom: 41.9 / 609
  23310. }
  23311. },
  23312. maw: {
  23313. height: math.unit(6 * 0.202, "feet"),
  23314. name: "Maw",
  23315. image: {
  23316. source: "./media/characters/beishir-kiel/maw.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Macro",
  23323. height: math.unit(300, "feet"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(5 + 7/12, "feet"),
  23333. weight: math.unit(120, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/logan-grey/front.svg",
  23337. extra: 1836/1738,
  23338. bottom: 108/1944
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(5 + 7/12, "feet"),
  23343. weight: math.unit(120, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/logan-grey/back.svg",
  23347. extra: 1880/1794,
  23348. bottom: 24/1904
  23349. }
  23350. },
  23351. frontSfw: {
  23352. height: math.unit(5 + 7/12, "feet"),
  23353. weight: math.unit(120, "lb"),
  23354. name: "Front (SFW)",
  23355. image: {
  23356. source: "./media/characters/logan-grey/front-sfw.svg",
  23357. extra: 1836/1738,
  23358. bottom: 108/1944
  23359. }
  23360. },
  23361. backSfw: {
  23362. height: math.unit(5 + 7/12, "feet"),
  23363. weight: math.unit(120, "lb"),
  23364. name: "Back (SFW)",
  23365. image: {
  23366. source: "./media/characters/logan-grey/back-sfw.svg",
  23367. extra: 1880/1794,
  23368. bottom: 24/1904
  23369. }
  23370. },
  23371. hands: {
  23372. height: math.unit(0.84, "feet"),
  23373. name: "Hands",
  23374. image: {
  23375. source: "./media/characters/logan-grey/hands.svg"
  23376. }
  23377. },
  23378. paws: {
  23379. height: math.unit(0.72, "feet"),
  23380. name: "Paws",
  23381. image: {
  23382. source: "./media/characters/logan-grey/paws.svg"
  23383. }
  23384. },
  23385. cock: {
  23386. height: math.unit(1.45, "feet"),
  23387. name: "Cock",
  23388. image: {
  23389. source: "./media/characters/logan-grey/cock.svg"
  23390. }
  23391. },
  23392. cockAlt: {
  23393. height: math.unit(1.437, "feet"),
  23394. name: "Cock (alt)",
  23395. image: {
  23396. source: "./media/characters/logan-grey/cock-alt.svg"
  23397. }
  23398. },
  23399. },
  23400. [
  23401. {
  23402. name: "Normal",
  23403. height: math.unit(5 + 8 / 12, "feet")
  23404. },
  23405. {
  23406. name: "The 500 Foot Femboy",
  23407. height: math.unit(500, "feet"),
  23408. default: true
  23409. },
  23410. {
  23411. name: "Megmacro",
  23412. height: math.unit(20, "miles")
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23418. {
  23419. front: {
  23420. height: math.unit(8 + 2 / 12, "feet"),
  23421. weight: math.unit(275, "lb"),
  23422. name: "Front",
  23423. image: {
  23424. source: "./media/characters/draganta/front.svg",
  23425. extra: 1177 / 1135,
  23426. bottom: 33.46 / 1212.1
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Normal",
  23433. height: math.unit(8 + 6 / 12, "feet"),
  23434. default: true
  23435. },
  23436. {
  23437. name: "Macro",
  23438. height: math.unit(150, "feet")
  23439. },
  23440. {
  23441. name: "Megamacro",
  23442. height: math.unit(1000, "miles")
  23443. },
  23444. ]
  23445. ))
  23446. characterMakers.push(() => makeCharacter(
  23447. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23448. {
  23449. front: {
  23450. height: math.unit(1.72, "m"),
  23451. weight: math.unit(80, "lb"),
  23452. name: "Front",
  23453. image: {
  23454. source: "./media/characters/voski/front.svg",
  23455. extra: 2076.22 / 2022.4,
  23456. bottom: 102.7 / 2177.3866
  23457. }
  23458. },
  23459. frontFlaccid: {
  23460. height: math.unit(1.72, "m"),
  23461. weight: math.unit(80, "lb"),
  23462. name: "Front (Flaccid)",
  23463. image: {
  23464. source: "./media/characters/voski/front-flaccid.svg",
  23465. extra: 2076.22 / 2022.4,
  23466. bottom: 102.7 / 2177.3866
  23467. }
  23468. },
  23469. frontErect: {
  23470. height: math.unit(1.72, "m"),
  23471. weight: math.unit(80, "lb"),
  23472. name: "Front (Erect)",
  23473. image: {
  23474. source: "./media/characters/voski/front-erect.svg",
  23475. extra: 2076.22 / 2022.4,
  23476. bottom: 102.7 / 2177.3866
  23477. }
  23478. },
  23479. back: {
  23480. height: math.unit(1.72, "m"),
  23481. weight: math.unit(80, "lb"),
  23482. name: "Back",
  23483. image: {
  23484. source: "./media/characters/voski/back.svg",
  23485. extra: 2104 / 2051,
  23486. bottom: 10.45 / 2113.63
  23487. }
  23488. },
  23489. },
  23490. [
  23491. {
  23492. name: "Normal",
  23493. height: math.unit(1.72, "m")
  23494. },
  23495. {
  23496. name: "Macro",
  23497. height: math.unit(55, "m"),
  23498. default: true
  23499. },
  23500. {
  23501. name: "Macro+",
  23502. height: math.unit(300, "m")
  23503. },
  23504. {
  23505. name: "Macro++",
  23506. height: math.unit(700, "m")
  23507. },
  23508. {
  23509. name: "Macro+++",
  23510. height: math.unit(4500, "m")
  23511. },
  23512. {
  23513. name: "Macro++++",
  23514. height: math.unit(45, "km")
  23515. },
  23516. {
  23517. name: "Macro+++++",
  23518. height: math.unit(1220, "km")
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(2.3, "m"),
  23527. weight: math.unit(304, "kg"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/icowom-lee/front.svg",
  23531. extra: 985 / 955,
  23532. bottom: 25.4 / 1012
  23533. }
  23534. },
  23535. fronttentacles: {
  23536. height: math.unit(2.3, "m"),
  23537. weight: math.unit(304, "kg"),
  23538. name: "Front-tentacles",
  23539. image: {
  23540. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23541. extra: 985 / 955,
  23542. bottom: 25.4 / 1012
  23543. }
  23544. },
  23545. back: {
  23546. height: math.unit(2.3, "m"),
  23547. weight: math.unit(304, "kg"),
  23548. name: "Back",
  23549. image: {
  23550. source: "./media/characters/icowom-lee/back.svg",
  23551. extra: 975 / 954,
  23552. bottom: 9.5 / 985
  23553. }
  23554. },
  23555. backtentacles: {
  23556. height: math.unit(2.3, "m"),
  23557. weight: math.unit(304, "kg"),
  23558. name: "Back-tentacles",
  23559. image: {
  23560. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23561. extra: 975 / 954,
  23562. bottom: 9.5 / 985
  23563. }
  23564. },
  23565. frontDressed: {
  23566. height: math.unit(2.3, "m"),
  23567. weight: math.unit(304, "kg"),
  23568. name: "Front (Dressed)",
  23569. image: {
  23570. source: "./media/characters/icowom-lee/front-dressed.svg",
  23571. extra: 3076 / 2933,
  23572. bottom: 51.4 / 3125.1889
  23573. }
  23574. },
  23575. rump: {
  23576. height: math.unit(0.776, "meters"),
  23577. name: "Rump",
  23578. image: {
  23579. source: "./media/characters/icowom-lee/rump.svg"
  23580. }
  23581. },
  23582. genitals: {
  23583. height: math.unit(0.78, "meters"),
  23584. name: "Genitals",
  23585. image: {
  23586. source: "./media/characters/icowom-lee/genitals.svg"
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(2.3, "meters"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(94, "meters"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(22, "meters"),
  23608. weight: math.unit(21000, "kg"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/shock-diamond/front.svg",
  23612. extra: 2204 / 2053,
  23613. bottom: 65 / 2239.47
  23614. }
  23615. },
  23616. frontNude: {
  23617. height: math.unit(22, "meters"),
  23618. weight: math.unit(21000, "kg"),
  23619. name: "Front (Nude)",
  23620. image: {
  23621. source: "./media/characters/shock-diamond/front-nude.svg",
  23622. extra: 2514 / 2285,
  23623. bottom: 13 / 2527.56
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(3, "meters")
  23631. },
  23632. {
  23633. name: "Macro",
  23634. height: math.unit(22, "meters"),
  23635. default: true
  23636. },
  23637. ]
  23638. ))
  23639. characterMakers.push(() => makeCharacter(
  23640. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23641. {
  23642. front: {
  23643. height: math.unit(5 + 4 / 12, "feet"),
  23644. weight: math.unit(120, "lb"),
  23645. name: "Front",
  23646. image: {
  23647. source: "./media/characters/rory/front.svg",
  23648. extra: 1318/1241,
  23649. bottom: 42/1360
  23650. }
  23651. },
  23652. back: {
  23653. height: math.unit(5 + 4 / 12, "feet"),
  23654. weight: math.unit(120, "lb"),
  23655. name: "Back",
  23656. image: {
  23657. source: "./media/characters/rory/back.svg",
  23658. extra: 1318/1241,
  23659. bottom: 42/1360
  23660. }
  23661. },
  23662. butt: {
  23663. height: math.unit(1.74, "feet"),
  23664. name: "Butt",
  23665. image: {
  23666. source: "./media/characters/rory/butt.svg"
  23667. }
  23668. },
  23669. dick: {
  23670. height: math.unit(1.02, "feet"),
  23671. name: "Dick",
  23672. image: {
  23673. source: "./media/characters/rory/dick.svg"
  23674. }
  23675. },
  23676. paws: {
  23677. height: math.unit(1, "feet"),
  23678. name: "Paws",
  23679. image: {
  23680. source: "./media/characters/rory/paws.svg"
  23681. }
  23682. },
  23683. frontAlt: {
  23684. height: math.unit(5 + 4 / 12, "feet"),
  23685. weight: math.unit(120, "lb"),
  23686. name: "Front (Alt)",
  23687. image: {
  23688. source: "./media/characters/rory/front-alt.svg",
  23689. extra: 589 / 556,
  23690. bottom: 45.7 / 635.76
  23691. }
  23692. },
  23693. frontAltNude: {
  23694. height: math.unit(5 + 4 / 12, "feet"),
  23695. weight: math.unit(120, "lb"),
  23696. name: "Front (Alt, Nude)",
  23697. image: {
  23698. source: "./media/characters/rory/front-alt-nude.svg",
  23699. extra: 589 / 556,
  23700. bottom: 45.7 / 635.76
  23701. }
  23702. },
  23703. side: {
  23704. height: math.unit(5 + 4 / 12, "feet"),
  23705. weight: math.unit(120, "lb"),
  23706. name: "Side",
  23707. image: {
  23708. source: "./media/characters/rory/side.svg",
  23709. extra: 597 / 564,
  23710. bottom: 55 / 653
  23711. }
  23712. },
  23713. backAlt: {
  23714. height: math.unit(5 + 4 / 12, "feet"),
  23715. weight: math.unit(120, "lb"),
  23716. name: "Back (Alt)",
  23717. image: {
  23718. source: "./media/characters/rory/back-alt.svg",
  23719. extra: 620 / 585,
  23720. bottom: 8.86 / 630.43
  23721. }
  23722. },
  23723. dickAlt: {
  23724. height: math.unit(0.86, "feet"),
  23725. name: "Dick (Alt)",
  23726. image: {
  23727. source: "./media/characters/rory/dick-alt.svg"
  23728. }
  23729. },
  23730. },
  23731. [
  23732. {
  23733. name: "Normal",
  23734. height: math.unit(5 + 4 / 12, "feet"),
  23735. default: true
  23736. },
  23737. {
  23738. name: "Macro",
  23739. height: math.unit(100, "feet")
  23740. },
  23741. {
  23742. name: "Macro+",
  23743. height: math.unit(140, "feet")
  23744. },
  23745. {
  23746. name: "Macro++",
  23747. height: math.unit(300, "feet")
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(5 + 9 / 12, "feet"),
  23756. weight: math.unit(190, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/sprisk/front.svg",
  23760. extra: 1225 / 1180,
  23761. bottom: 42.7 / 1266.4
  23762. }
  23763. },
  23764. frontNsfw: {
  23765. height: math.unit(5 + 9 / 12, "feet"),
  23766. weight: math.unit(190, "lb"),
  23767. name: "Front (NSFW)",
  23768. image: {
  23769. source: "./media/characters/sprisk/front-nsfw.svg",
  23770. extra: 1225 / 1180,
  23771. bottom: 42.7 / 1266.4
  23772. }
  23773. },
  23774. back: {
  23775. height: math.unit(5 + 9 / 12, "feet"),
  23776. weight: math.unit(190, "lb"),
  23777. name: "Back",
  23778. image: {
  23779. source: "./media/characters/sprisk/back.svg",
  23780. extra: 1247 / 1200,
  23781. bottom: 5.6 / 1253.04
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Tiny",
  23788. height: math.unit(2, "inches")
  23789. },
  23790. {
  23791. name: "Normal",
  23792. height: math.unit(5 + 9 / 12, "feet"),
  23793. default: true
  23794. },
  23795. {
  23796. name: "Mini Macro",
  23797. height: math.unit(18, "feet")
  23798. },
  23799. {
  23800. name: "Macro",
  23801. height: math.unit(100, "feet")
  23802. },
  23803. {
  23804. name: "MACRO",
  23805. height: math.unit(50, "miles")
  23806. },
  23807. {
  23808. name: "M A C R O",
  23809. height: math.unit(300, "miles")
  23810. },
  23811. ]
  23812. ))
  23813. characterMakers.push(() => makeCharacter(
  23814. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23815. {
  23816. side: {
  23817. height: math.unit(15.6, "meters"),
  23818. weight: math.unit(700000, "kg"),
  23819. name: "Side",
  23820. image: {
  23821. source: "./media/characters/bunsen/side.svg",
  23822. extra: 1644 / 358
  23823. }
  23824. },
  23825. foot: {
  23826. height: math.unit(1.611 * 1644 / 358, "meter"),
  23827. name: "Foot",
  23828. image: {
  23829. source: "./media/characters/bunsen/foot.svg"
  23830. }
  23831. },
  23832. },
  23833. [
  23834. {
  23835. name: "Small",
  23836. height: math.unit(10, "feet")
  23837. },
  23838. {
  23839. name: "Normal",
  23840. height: math.unit(15.6, "meters"),
  23841. default: true
  23842. },
  23843. ]
  23844. ))
  23845. characterMakers.push(() => makeCharacter(
  23846. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23847. {
  23848. front: {
  23849. height: math.unit(4 + 11 / 12, "feet"),
  23850. weight: math.unit(140, "lb"),
  23851. name: "Front",
  23852. image: {
  23853. source: "./media/characters/sesh/front.svg",
  23854. extra: 3420 / 3231,
  23855. bottom: 72 / 3949.5
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(4 + 11 / 12, "feet")
  23863. },
  23864. {
  23865. name: "Grown",
  23866. height: math.unit(15, "feet"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(1500, "feet")
  23872. },
  23873. {
  23874. name: "Megamacro",
  23875. height: math.unit(30, "miles")
  23876. },
  23877. {
  23878. name: "Continental",
  23879. height: math.unit(3000, "miles")
  23880. },
  23881. {
  23882. name: "Gravity Mass",
  23883. height: math.unit(300000, "miles")
  23884. },
  23885. {
  23886. name: "Planet Buster",
  23887. height: math.unit(30000000, "miles")
  23888. },
  23889. {
  23890. name: "Big",
  23891. height: math.unit(3000000000, "miles")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(9, "feet"),
  23900. weight: math.unit(350, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/pepper/front.svg",
  23904. extra: 1448 / 1312,
  23905. bottom: 9.4 / 1457.88
  23906. }
  23907. },
  23908. back: {
  23909. height: math.unit(9, "feet"),
  23910. weight: math.unit(350, "lb"),
  23911. name: "Back",
  23912. image: {
  23913. source: "./media/characters/pepper/back.svg",
  23914. extra: 1423 / 1300,
  23915. bottom: 4.6 / 1429
  23916. }
  23917. },
  23918. maw: {
  23919. height: math.unit(0.932, "feet"),
  23920. name: "Maw",
  23921. image: {
  23922. source: "./media/characters/pepper/maw.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(9, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(6, "feet"),
  23939. weight: math.unit(150, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/maelstrom/front.svg",
  23943. extra: 2100 / 1883,
  23944. bottom: 94 / 2196.7
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Less Kaiju",
  23951. height: math.unit(200, "feet")
  23952. },
  23953. {
  23954. name: "Kaiju",
  23955. height: math.unit(400, "feet"),
  23956. default: true
  23957. },
  23958. {
  23959. name: "Kaiju-er",
  23960. height: math.unit(600, "feet")
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23966. {
  23967. front: {
  23968. height: math.unit(6 + 5 / 12, "feet"),
  23969. weight: math.unit(180, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/lexir/front.svg",
  23973. extra: 180 / 172,
  23974. bottom: 12 / 192
  23975. }
  23976. },
  23977. back: {
  23978. height: math.unit(6 + 5 / 12, "feet"),
  23979. weight: math.unit(180, "lb"),
  23980. name: "Back",
  23981. image: {
  23982. source: "./media/characters/lexir/back.svg",
  23983. extra: 1273/1201,
  23984. bottom: 39/1312
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Very Smal",
  23991. height: math.unit(1, "nm")
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(6 + 5 / 12, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(1, "mile")
  24001. },
  24002. {
  24003. name: "Megamacro",
  24004. height: math.unit(50, "miles")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(1.5, "meters"),
  24013. weight: math.unit(100, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/maksio/front.svg",
  24017. extra: 1549 / 1531,
  24018. bottom: 123.7 / 1674.5429
  24019. }
  24020. },
  24021. back: {
  24022. height: math.unit(1.5, "meters"),
  24023. weight: math.unit(100, "lb"),
  24024. name: "Back",
  24025. image: {
  24026. source: "./media/characters/maksio/back.svg",
  24027. extra: 1541 / 1509,
  24028. bottom: 97 / 1639
  24029. }
  24030. },
  24031. hand: {
  24032. height: math.unit(0.621, "feet"),
  24033. name: "Hand",
  24034. image: {
  24035. source: "./media/characters/maksio/hand.svg"
  24036. }
  24037. },
  24038. foot: {
  24039. height: math.unit(1.611, "feet"),
  24040. name: "Foot",
  24041. image: {
  24042. source: "./media/characters/maksio/foot.svg"
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Shrunken",
  24049. height: math.unit(10, "cm")
  24050. },
  24051. {
  24052. name: "Normal",
  24053. height: math.unit(150, "cm"),
  24054. default: true
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(100, "feet"),
  24063. name: "Front",
  24064. image: {
  24065. source: "./media/characters/erza-bear/front.svg",
  24066. extra: 2449 / 2390,
  24067. bottom: 46 / 2494
  24068. }
  24069. },
  24070. back: {
  24071. height: math.unit(100, "feet"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/erza-bear/back.svg",
  24075. extra: 2489 / 2430,
  24076. bottom: 85.4 / 2480
  24077. }
  24078. },
  24079. tail: {
  24080. height: math.unit(42, "feet"),
  24081. name: "Tail",
  24082. image: {
  24083. source: "./media/characters/erza-bear/tail.svg"
  24084. }
  24085. },
  24086. tongue: {
  24087. height: math.unit(8, "feet"),
  24088. name: "Tongue",
  24089. image: {
  24090. source: "./media/characters/erza-bear/tongue.svg"
  24091. }
  24092. },
  24093. dick: {
  24094. height: math.unit(10.5, "feet"),
  24095. name: "Dick",
  24096. image: {
  24097. source: "./media/characters/erza-bear/dick.svg"
  24098. }
  24099. },
  24100. dickVertical: {
  24101. height: math.unit(16.9, "feet"),
  24102. name: "Dick (Vertical)",
  24103. image: {
  24104. source: "./media/characters/erza-bear/dick-vertical.svg"
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Macro",
  24111. height: math.unit(100, "feet"),
  24112. default: true
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(172, "cm"),
  24121. weight: math.unit(73, "kg"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/violet-flor/front.svg",
  24125. extra: 1530 / 1442,
  24126. bottom: 61.9 / 1588.8
  24127. }
  24128. },
  24129. back: {
  24130. height: math.unit(180, "cm"),
  24131. weight: math.unit(73, "kg"),
  24132. name: "Back",
  24133. image: {
  24134. source: "./media/characters/violet-flor/back.svg",
  24135. extra: 1692 / 1630,
  24136. bottom: 20 / 1712
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(172, "cm"),
  24144. default: true
  24145. },
  24146. ]
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24150. {
  24151. front: {
  24152. height: math.unit(6, "feet"),
  24153. weight: math.unit(220, "lb"),
  24154. name: "Front",
  24155. image: {
  24156. source: "./media/characters/lynn-rhea/front.svg",
  24157. extra: 310 / 273
  24158. }
  24159. },
  24160. back: {
  24161. height: math.unit(6, "feet"),
  24162. weight: math.unit(220, "lb"),
  24163. name: "Back",
  24164. image: {
  24165. source: "./media/characters/lynn-rhea/back.svg",
  24166. extra: 310 / 273
  24167. }
  24168. },
  24169. dicks: {
  24170. height: math.unit(0.9, "feet"),
  24171. name: "Dicks",
  24172. image: {
  24173. source: "./media/characters/lynn-rhea/dicks.svg"
  24174. }
  24175. },
  24176. slit: {
  24177. height: math.unit(0.4, "feet"),
  24178. name: "Slit",
  24179. image: {
  24180. source: "./media/characters/lynn-rhea/slit.svg"
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Micro",
  24187. height: math.unit(1, "inch")
  24188. },
  24189. {
  24190. name: "Macro",
  24191. height: math.unit(60, "feet"),
  24192. default: true
  24193. },
  24194. {
  24195. name: "Megamacro",
  24196. height: math.unit(2, "miles")
  24197. },
  24198. {
  24199. name: "Gigamacro",
  24200. height: math.unit(3, "earths")
  24201. },
  24202. {
  24203. name: "Galactic",
  24204. height: math.unit(0.8, "galaxies")
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24210. {
  24211. front: {
  24212. height: math.unit(1600, "feet"),
  24213. weight: math.unit(85758785169, "kg"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/valathos/front.svg",
  24217. extra: 1451 / 1339
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(1600, "feet"),
  24225. default: true
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(7 + 5 / 12, "feet"),
  24234. weight: math.unit(300, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/azula/front.svg",
  24238. extra: 3208 / 2880,
  24239. bottom: 80.2 / 3277
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(7 + 5 / 12, "feet"),
  24244. weight: math.unit(300, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/azula/back.svg",
  24248. extra: 3169 / 2822,
  24249. bottom: 150.6 / 3321
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(7 + 5 / 12, "feet"),
  24257. default: true
  24258. },
  24259. {
  24260. name: "Big",
  24261. height: math.unit(20, "feet")
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(5 + 1 / 12, "feet"),
  24270. weight: math.unit(110, "lb"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/rupert/front.svg",
  24274. extra: 1549 / 1495,
  24275. bottom: 54.2 / 1604.4
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(5 + 1 / 12, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24289. {
  24290. front: {
  24291. height: math.unit(8 + 4 / 12, "feet"),
  24292. weight: math.unit(350, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/sheera-castellar/front.svg",
  24296. extra: 1957 / 1894,
  24297. bottom: 26.97 / 1975.017
  24298. }
  24299. },
  24300. side: {
  24301. height: math.unit(8 + 4 / 12, "feet"),
  24302. weight: math.unit(350, "lb"),
  24303. name: "Side",
  24304. image: {
  24305. source: "./media/characters/sheera-castellar/side.svg",
  24306. extra: 1957 / 1894
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(8 + 4 / 12, "feet"),
  24311. weight: math.unit(350, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/sheera-castellar/back.svg",
  24315. extra: 1957 / 1894
  24316. }
  24317. },
  24318. angled: {
  24319. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24320. weight: math.unit(350, "lb"),
  24321. name: "Angled",
  24322. image: {
  24323. source: "./media/characters/sheera-castellar/angled.svg",
  24324. extra: 1807 / 1707,
  24325. bottom: 68 / 1875
  24326. }
  24327. },
  24328. genitals: {
  24329. height: math.unit(2.2, "feet"),
  24330. name: "Genitals",
  24331. image: {
  24332. source: "./media/characters/sheera-castellar/genitals.svg"
  24333. }
  24334. },
  24335. taur: {
  24336. height: math.unit(10 + 6/12, "feet"),
  24337. name: "Taur",
  24338. image: {
  24339. source: "./media/characters/sheera-castellar/taur.svg",
  24340. extra: 2017/1909,
  24341. bottom: 185/2202
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(8 + 4 / 12, "feet")
  24349. },
  24350. {
  24351. name: "Macro",
  24352. height: math.unit(150, "feet"),
  24353. default: true
  24354. },
  24355. {
  24356. name: "Macro+",
  24357. height: math.unit(800, "feet")
  24358. },
  24359. ]
  24360. ))
  24361. characterMakers.push(() => makeCharacter(
  24362. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24363. {
  24364. front: {
  24365. height: math.unit(6, "feet"),
  24366. weight: math.unit(150, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/jaipur/front.svg",
  24370. extra: 3860 / 3731,
  24371. bottom: 287 / 4140
  24372. }
  24373. },
  24374. back: {
  24375. height: math.unit(6, "feet"),
  24376. weight: math.unit(150, "lb"),
  24377. name: "Back",
  24378. image: {
  24379. source: "./media/characters/jaipur/back.svg",
  24380. extra: 1637/1561,
  24381. bottom: 154/1791
  24382. }
  24383. },
  24384. },
  24385. [
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(1.85, "meters"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Macro",
  24393. height: math.unit(150, "meters")
  24394. },
  24395. {
  24396. name: "Macro+",
  24397. height: math.unit(0.5, "miles")
  24398. },
  24399. {
  24400. name: "Macro++",
  24401. height: math.unit(2.5, "miles")
  24402. },
  24403. {
  24404. name: "Macro+++",
  24405. height: math.unit(12, "miles")
  24406. },
  24407. {
  24408. name: "Macro++++",
  24409. height: math.unit(120, "miles")
  24410. },
  24411. {
  24412. name: "Macro+++++",
  24413. height: math.unit(1200, "miles")
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24419. {
  24420. front: {
  24421. height: math.unit(6, "feet"),
  24422. weight: math.unit(150, "lb"),
  24423. name: "Front",
  24424. image: {
  24425. source: "./media/characters/sheila-wolf/front.svg",
  24426. extra: 1931 / 1808,
  24427. bottom: 29.5 / 1960
  24428. }
  24429. },
  24430. dick: {
  24431. height: math.unit(1.464, "feet"),
  24432. name: "Dick",
  24433. image: {
  24434. source: "./media/characters/sheila-wolf/dick.svg"
  24435. }
  24436. },
  24437. muzzle: {
  24438. height: math.unit(0.513, "feet"),
  24439. name: "Muzzle",
  24440. image: {
  24441. source: "./media/characters/sheila-wolf/muzzle.svg"
  24442. }
  24443. },
  24444. },
  24445. [
  24446. {
  24447. name: "Macro",
  24448. height: math.unit(70, "feet"),
  24449. default: true
  24450. },
  24451. ]
  24452. ))
  24453. characterMakers.push(() => makeCharacter(
  24454. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24455. {
  24456. front: {
  24457. height: math.unit(32, "meters"),
  24458. weight: math.unit(300000, "kg"),
  24459. name: "Front",
  24460. image: {
  24461. source: "./media/characters/almor/front.svg",
  24462. extra: 1408 / 1322,
  24463. bottom: 94.6 / 1506.5
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Macro",
  24470. height: math.unit(32, "meters"),
  24471. default: true
  24472. },
  24473. ]
  24474. ))
  24475. characterMakers.push(() => makeCharacter(
  24476. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24477. {
  24478. front: {
  24479. height: math.unit(7, "feet"),
  24480. weight: math.unit(200, "lb"),
  24481. name: "Front",
  24482. image: {
  24483. source: "./media/characters/silver/front.svg",
  24484. extra: 472.1 / 450.5,
  24485. bottom: 26.5 / 499.424
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(7, "feet"),
  24493. default: true
  24494. },
  24495. {
  24496. name: "Macro",
  24497. height: math.unit(800, "feet")
  24498. },
  24499. {
  24500. name: "Megamacro",
  24501. height: math.unit(250, "miles")
  24502. },
  24503. ]
  24504. ))
  24505. characterMakers.push(() => makeCharacter(
  24506. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24507. {
  24508. front: {
  24509. height: math.unit(6, "feet"),
  24510. weight: math.unit(150, "lb"),
  24511. name: "Front",
  24512. image: {
  24513. source: "./media/characters/pliskin/front.svg",
  24514. extra: 1469 / 1359,
  24515. bottom: 70 / 1540
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Micro",
  24522. height: math.unit(3, "inches")
  24523. },
  24524. {
  24525. name: "Normal",
  24526. height: math.unit(5 + 11 / 12, "feet"),
  24527. default: true
  24528. },
  24529. {
  24530. name: "Macro",
  24531. height: math.unit(120, "feet")
  24532. },
  24533. ]
  24534. ))
  24535. characterMakers.push(() => makeCharacter(
  24536. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24537. {
  24538. front: {
  24539. height: math.unit(6, "feet"),
  24540. weight: math.unit(150, "lb"),
  24541. name: "Front",
  24542. image: {
  24543. source: "./media/characters/sammy/front.svg",
  24544. extra: 1193 / 1089,
  24545. bottom: 30.5 / 1226
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Macro",
  24552. height: math.unit(1700, "feet"),
  24553. default: true
  24554. },
  24555. {
  24556. name: "Examacro",
  24557. height: math.unit(2.5e9, "lightyears")
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24563. {
  24564. front: {
  24565. height: math.unit(21, "meters"),
  24566. weight: math.unit(12, "tonnes"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/kuru/front.svg",
  24570. extra: 4301 / 3785,
  24571. bottom: 371.3 / 4691
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(21, "meters"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24585. {
  24586. front: {
  24587. height: math.unit(23, "meters"),
  24588. weight: math.unit(12.2, "tonnes"),
  24589. name: "Front",
  24590. image: {
  24591. source: "./media/characters/rakka/front.svg",
  24592. extra: 4670 / 4169,
  24593. bottom: 301 / 4968.7
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Macro",
  24600. height: math.unit(23, "meters"),
  24601. default: true
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(6, "feet"),
  24610. weight: math.unit(150, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/rhys-feline/front.svg",
  24614. extra: 2488 / 2308,
  24615. bottom: 35.67 / 2519.19
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Really Small",
  24622. height: math.unit(1, "nm")
  24623. },
  24624. {
  24625. name: "Micro",
  24626. height: math.unit(4, "inches")
  24627. },
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(4 + 10 / 12, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(100, "feet")
  24636. },
  24637. {
  24638. name: "Megamacto",
  24639. height: math.unit(50, "miles")
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24645. {
  24646. side: {
  24647. height: math.unit(30, "feet"),
  24648. weight: math.unit(35000, "kg"),
  24649. name: "Side",
  24650. image: {
  24651. source: "./media/characters/alydar/side.svg",
  24652. extra: 234 / 222,
  24653. bottom: 6.5 / 241
  24654. }
  24655. },
  24656. front: {
  24657. height: math.unit(30, "feet"),
  24658. weight: math.unit(35000, "kg"),
  24659. name: "Front",
  24660. image: {
  24661. source: "./media/characters/alydar/front.svg",
  24662. extra: 223.37 / 210.2,
  24663. bottom: 22.3 / 246.76
  24664. }
  24665. },
  24666. top: {
  24667. height: math.unit(64.54, "feet"),
  24668. weight: math.unit(35000, "kg"),
  24669. name: "Top",
  24670. image: {
  24671. source: "./media/characters/alydar/top.svg"
  24672. }
  24673. },
  24674. anthro: {
  24675. height: math.unit(30, "feet"),
  24676. weight: math.unit(9000, "kg"),
  24677. name: "Anthro",
  24678. image: {
  24679. source: "./media/characters/alydar/anthro.svg",
  24680. extra: 432 / 421,
  24681. bottom: 7.18 / 440
  24682. }
  24683. },
  24684. maw: {
  24685. height: math.unit(11.693, "feet"),
  24686. name: "Maw",
  24687. image: {
  24688. source: "./media/characters/alydar/maw.svg"
  24689. }
  24690. },
  24691. head: {
  24692. height: math.unit(11.693, "feet"),
  24693. name: "Head",
  24694. image: {
  24695. source: "./media/characters/alydar/head.svg"
  24696. }
  24697. },
  24698. headAlt: {
  24699. height: math.unit(12.861, "feet"),
  24700. name: "Head (Alt)",
  24701. image: {
  24702. source: "./media/characters/alydar/head-alt.svg"
  24703. }
  24704. },
  24705. wing: {
  24706. height: math.unit(20.712, "feet"),
  24707. name: "Wing",
  24708. image: {
  24709. source: "./media/characters/alydar/wing.svg"
  24710. }
  24711. },
  24712. wingFeather: {
  24713. height: math.unit(9.662, "feet"),
  24714. name: "Wing Feather",
  24715. image: {
  24716. source: "./media/characters/alydar/wing-feather.svg"
  24717. }
  24718. },
  24719. countourFeather: {
  24720. height: math.unit(4.154, "feet"),
  24721. name: "Contour Feather",
  24722. image: {
  24723. source: "./media/characters/alydar/contour-feather.svg"
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Diplomatic",
  24730. height: math.unit(13, "feet"),
  24731. default: true
  24732. },
  24733. {
  24734. name: "Small",
  24735. height: math.unit(30, "feet")
  24736. },
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(95, "feet"),
  24740. default: true
  24741. },
  24742. {
  24743. name: "Large",
  24744. height: math.unit(285, "feet")
  24745. },
  24746. {
  24747. name: "Incomprehensible",
  24748. height: math.unit(450, "megameters")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24754. {
  24755. side: {
  24756. height: math.unit(11, "feet"),
  24757. weight: math.unit(1750, "kg"),
  24758. name: "Side",
  24759. image: {
  24760. source: "./media/characters/selicia/side.svg",
  24761. extra: 440 / 396,
  24762. bottom: 24.8 / 465.979
  24763. }
  24764. },
  24765. maw: {
  24766. height: math.unit(4.665, "feet"),
  24767. name: "Maw",
  24768. image: {
  24769. source: "./media/characters/selicia/maw.svg"
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Normal",
  24776. height: math.unit(11, "feet"),
  24777. default: true
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24783. {
  24784. side: {
  24785. height: math.unit(2 + 6 / 12, "feet"),
  24786. weight: math.unit(30, "lb"),
  24787. name: "Side",
  24788. image: {
  24789. source: "./media/characters/layla/side.svg",
  24790. extra: 244 / 188,
  24791. bottom: 18.2 / 262.1
  24792. }
  24793. },
  24794. back: {
  24795. height: math.unit(2 + 6 / 12, "feet"),
  24796. weight: math.unit(30, "lb"),
  24797. name: "Back",
  24798. image: {
  24799. source: "./media/characters/layla/back.svg",
  24800. extra: 308 / 241.5,
  24801. bottom: 8.9 / 316.8
  24802. }
  24803. },
  24804. cumming: {
  24805. height: math.unit(2 + 6 / 12, "feet"),
  24806. weight: math.unit(30, "lb"),
  24807. name: "Cumming",
  24808. image: {
  24809. source: "./media/characters/layla/cumming.svg",
  24810. extra: 342 / 279,
  24811. bottom: 595 / 938
  24812. }
  24813. },
  24814. dickFlaccid: {
  24815. height: math.unit(2.595, "feet"),
  24816. name: "Flaccid Genitals",
  24817. image: {
  24818. source: "./media/characters/layla/dick-flaccid.svg"
  24819. }
  24820. },
  24821. dickErect: {
  24822. height: math.unit(2.359, "feet"),
  24823. name: "Erect Genitals",
  24824. image: {
  24825. source: "./media/characters/layla/dick-erect.svg"
  24826. }
  24827. },
  24828. dragon: {
  24829. height: math.unit(40, "feet"),
  24830. name: "Dragon",
  24831. image: {
  24832. source: "./media/characters/layla/dragon.svg",
  24833. extra: 610/535,
  24834. bottom: 367/977
  24835. }
  24836. },
  24837. taur: {
  24838. height: math.unit(30, "feet"),
  24839. name: "Taur",
  24840. image: {
  24841. source: "./media/characters/layla/taur.svg",
  24842. extra: 1268/1199,
  24843. bottom: 112/1380
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Micro",
  24850. height: math.unit(1, "inch")
  24851. },
  24852. {
  24853. name: "Small",
  24854. height: math.unit(1, "foot")
  24855. },
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(2 + 6 / 12, "feet"),
  24859. default: true
  24860. },
  24861. {
  24862. name: "Macro",
  24863. height: math.unit(200, "feet")
  24864. },
  24865. {
  24866. name: "Megamacro",
  24867. height: math.unit(1000, "miles")
  24868. },
  24869. {
  24870. name: "Planetary",
  24871. height: math.unit(8000, "miles")
  24872. },
  24873. {
  24874. name: "True Layla",
  24875. height: math.unit(200000 * 7, "multiverses")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24881. {
  24882. back: {
  24883. height: math.unit(10.5, "feet"),
  24884. weight: math.unit(800, "lb"),
  24885. name: "Back",
  24886. image: {
  24887. source: "./media/characters/knox/back.svg",
  24888. extra: 1486 / 1089,
  24889. bottom: 107 / 1601.4
  24890. }
  24891. },
  24892. side: {
  24893. height: math.unit(10.5, "feet"),
  24894. weight: math.unit(800, "lb"),
  24895. name: "Side",
  24896. image: {
  24897. source: "./media/characters/knox/side.svg",
  24898. extra: 244 / 218,
  24899. bottom: 14 / 260
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Compact",
  24906. height: math.unit(10.5, "feet"),
  24907. default: true
  24908. },
  24909. {
  24910. name: "Dynamax",
  24911. height: math.unit(210, "feet")
  24912. },
  24913. {
  24914. name: "Full Macro",
  24915. height: math.unit(850, "feet")
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24921. {
  24922. front: {
  24923. height: math.unit(28, "feet"),
  24924. weight: math.unit(10500, "lb"),
  24925. name: "Front",
  24926. image: {
  24927. source: "./media/characters/kayda/front.svg",
  24928. extra: 1536 / 1428,
  24929. bottom: 68.7 / 1603
  24930. }
  24931. },
  24932. back: {
  24933. height: math.unit(28, "feet"),
  24934. weight: math.unit(10500, "lb"),
  24935. name: "Back",
  24936. image: {
  24937. source: "./media/characters/kayda/back.svg",
  24938. extra: 1557 / 1464,
  24939. bottom: 39.5 / 1597.49
  24940. }
  24941. },
  24942. dick: {
  24943. height: math.unit(3.858, "feet"),
  24944. name: "Dick",
  24945. image: {
  24946. source: "./media/characters/kayda/dick.svg"
  24947. }
  24948. },
  24949. },
  24950. [
  24951. {
  24952. name: "Macro",
  24953. height: math.unit(28, "feet"),
  24954. default: true
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(10 + 11 / 12, "feet"),
  24963. weight: math.unit(1400, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/brian/front.svg",
  24967. extra: 737 / 692,
  24968. bottom: 55.4 / 785
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(10 + 11 / 12, "feet"),
  24976. default: true
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(5 + 8 / 12, "feet"),
  24985. weight: math.unit(140, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/khemri/front.svg",
  24989. extra: 4780 / 4059,
  24990. bottom: 80.1 / 4859.25
  24991. }
  24992. },
  24993. },
  24994. [
  24995. {
  24996. name: "Micro",
  24997. height: math.unit(6, "inches")
  24998. },
  24999. {
  25000. name: "Normal",
  25001. height: math.unit(5 + 8 / 12, "feet"),
  25002. default: true
  25003. },
  25004. ]
  25005. ))
  25006. characterMakers.push(() => makeCharacter(
  25007. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25008. {
  25009. front: {
  25010. height: math.unit(13, "feet"),
  25011. weight: math.unit(1700, "lb"),
  25012. name: "Front",
  25013. image: {
  25014. source: "./media/characters/felix-braveheart/front.svg",
  25015. extra: 1222 / 1157,
  25016. bottom: 53.2 / 1280
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(13, "feet"),
  25021. weight: math.unit(1700, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/felix-braveheart/back.svg",
  25025. extra: 1277 / 1203,
  25026. bottom: 50.2 / 1327
  25027. }
  25028. },
  25029. feral: {
  25030. height: math.unit(6, "feet"),
  25031. weight: math.unit(400, "lb"),
  25032. name: "Feral",
  25033. image: {
  25034. source: "./media/characters/felix-braveheart/feral.svg",
  25035. extra: 682 / 625,
  25036. bottom: 6.9 / 688
  25037. }
  25038. },
  25039. },
  25040. [
  25041. {
  25042. name: "Normal",
  25043. height: math.unit(13, "feet"),
  25044. default: true
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25050. {
  25051. side: {
  25052. height: math.unit(5 + 11 / 12, "feet"),
  25053. weight: math.unit(1400, "lb"),
  25054. name: "Side",
  25055. image: {
  25056. source: "./media/characters/shadow-blade/side.svg",
  25057. extra: 1726 / 1267,
  25058. bottom: 58.4 / 1785
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(5 + 11 / 12, "feet"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(1 + 6 / 12, "feet"),
  25075. weight: math.unit(25, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/karla-halldor/front.svg",
  25079. extra: 1459 / 1383,
  25080. bottom: 12 / 1472
  25081. }
  25082. },
  25083. },
  25084. [
  25085. {
  25086. name: "Normal",
  25087. height: math.unit(1 + 6 / 12, "feet"),
  25088. default: true
  25089. },
  25090. ]
  25091. ))
  25092. characterMakers.push(() => makeCharacter(
  25093. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25094. {
  25095. front: {
  25096. height: math.unit(6 + 2 / 12, "feet"),
  25097. weight: math.unit(160, "lb"),
  25098. name: "Front",
  25099. image: {
  25100. source: "./media/characters/ariam/front.svg",
  25101. extra: 1073/976,
  25102. bottom: 52/1125
  25103. }
  25104. },
  25105. back: {
  25106. height: math.unit(6 + 2/12, "feet"),
  25107. weight: math.unit(160, "lb"),
  25108. name: "Back",
  25109. image: {
  25110. source: "./media/characters/ariam/back.svg",
  25111. extra: 1103/1023,
  25112. bottom: 9/1112
  25113. }
  25114. },
  25115. dressed: {
  25116. height: math.unit(6 + 2/12, "feet"),
  25117. weight: math.unit(160, "lb"),
  25118. name: "Dressed",
  25119. image: {
  25120. source: "./media/characters/ariam/dressed.svg",
  25121. extra: 1099/1009,
  25122. bottom: 25/1124
  25123. }
  25124. },
  25125. squatting: {
  25126. height: math.unit(4.1, "feet"),
  25127. weight: math.unit(160, "lb"),
  25128. name: "Squatting",
  25129. image: {
  25130. source: "./media/characters/ariam/squatting.svg",
  25131. extra: 2617 / 2112,
  25132. bottom: 61.2 / 2681,
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(6 + 2 / 12, "feet"),
  25140. default: true
  25141. },
  25142. {
  25143. name: "Normal+",
  25144. height: math.unit(4, "meters")
  25145. },
  25146. {
  25147. name: "Macro",
  25148. height: math.unit(50, "meters")
  25149. },
  25150. {
  25151. name: "Macro+",
  25152. height: math.unit(100, "meters")
  25153. },
  25154. {
  25155. name: "Megamacro",
  25156. height: math.unit(20, "km")
  25157. },
  25158. {
  25159. name: "Caretaker",
  25160. height: math.unit(444, "megameters")
  25161. },
  25162. ]
  25163. ))
  25164. characterMakers.push(() => makeCharacter(
  25165. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25166. {
  25167. front: {
  25168. height: math.unit(1.67, "meters"),
  25169. weight: math.unit(140, "lb"),
  25170. name: "Front",
  25171. image: {
  25172. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25173. extra: 438 / 410,
  25174. bottom: 0.75 / 439
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Shrunken",
  25181. height: math.unit(7.6, "cm")
  25182. },
  25183. {
  25184. name: "Human Scale",
  25185. height: math.unit(1.67, "meters")
  25186. },
  25187. {
  25188. name: "Wolxi Scale",
  25189. height: math.unit(36.7, "meters"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(1.73, "meters"),
  25199. weight: math.unit(240, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/izue-two-mothers/front.svg",
  25203. extra: 469 / 437,
  25204. bottom: 1.24 / 470.6
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Shrunken",
  25211. height: math.unit(7.86, "cm")
  25212. },
  25213. {
  25214. name: "Human Scale",
  25215. height: math.unit(1.73, "meters")
  25216. },
  25217. {
  25218. name: "Wolxi Scale",
  25219. height: math.unit(38, "meters"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(1.55, "meters"),
  25229. weight: math.unit(120, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/teeku-love-shack/front.svg",
  25233. extra: 387 / 362,
  25234. bottom: 1.51 / 388
  25235. }
  25236. },
  25237. },
  25238. [
  25239. {
  25240. name: "Shrunken",
  25241. height: math.unit(7, "cm")
  25242. },
  25243. {
  25244. name: "Human Scale",
  25245. height: math.unit(1.55, "meters")
  25246. },
  25247. {
  25248. name: "Wolxi Scale",
  25249. height: math.unit(34.1, "meters"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(1.83, "meters"),
  25259. weight: math.unit(135, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/dejma-the-red/front.svg",
  25263. extra: 480 / 458,
  25264. bottom: 1.8 / 482
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Shrunken",
  25271. height: math.unit(8.3, "cm")
  25272. },
  25273. {
  25274. name: "Human Scale",
  25275. height: math.unit(1.83, "meters")
  25276. },
  25277. {
  25278. name: "Wolxi Scale",
  25279. height: math.unit(40, "meters"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(1.78, "meters"),
  25289. weight: math.unit(65, "kg"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/aki/front.svg",
  25293. extra: 452 / 415
  25294. }
  25295. },
  25296. frontNsfw: {
  25297. height: math.unit(1.78, "meters"),
  25298. weight: math.unit(65, "kg"),
  25299. name: "Front (NSFW)",
  25300. image: {
  25301. source: "./media/characters/aki/front-nsfw.svg",
  25302. extra: 452 / 415
  25303. }
  25304. },
  25305. back: {
  25306. height: math.unit(1.78, "meters"),
  25307. weight: math.unit(65, "kg"),
  25308. name: "Back",
  25309. image: {
  25310. source: "./media/characters/aki/back.svg",
  25311. extra: 452 / 415
  25312. }
  25313. },
  25314. rump: {
  25315. height: math.unit(2.05, "feet"),
  25316. name: "Rump",
  25317. image: {
  25318. source: "./media/characters/aki/rump.svg"
  25319. }
  25320. },
  25321. dick: {
  25322. height: math.unit(0.95, "feet"),
  25323. name: "Dick",
  25324. image: {
  25325. source: "./media/characters/aki/dick.svg"
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Micro",
  25332. height: math.unit(15, "cm")
  25333. },
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(178, "cm"),
  25337. default: true
  25338. },
  25339. {
  25340. name: "Macro",
  25341. height: math.unit(214, "m")
  25342. },
  25343. {
  25344. name: "Macro+",
  25345. height: math.unit(534, "m")
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(5 + 5 / 12, "feet"),
  25354. weight: math.unit(120, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/ari/front.svg",
  25358. extra: 1550/1471,
  25359. bottom: 39/1589
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(5 + 5 / 12, "feet")
  25367. },
  25368. {
  25369. name: "Macro",
  25370. height: math.unit(100, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Megamacro",
  25375. height: math.unit(100, "miles")
  25376. },
  25377. {
  25378. name: "Gigamacro",
  25379. height: math.unit(80000, "miles")
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25385. {
  25386. side: {
  25387. height: math.unit(9, "feet"),
  25388. weight: math.unit(400, "kg"),
  25389. name: "Side",
  25390. image: {
  25391. source: "./media/characters/bolt/side.svg",
  25392. extra: 1126 / 896,
  25393. bottom: 60 / 1187.3,
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Micro",
  25400. height: math.unit(5, "inches")
  25401. },
  25402. {
  25403. name: "Normal",
  25404. height: math.unit(9, "feet"),
  25405. default: true
  25406. },
  25407. {
  25408. name: "Macro",
  25409. height: math.unit(700, "feet")
  25410. },
  25411. {
  25412. name: "Max Size",
  25413. height: math.unit(1.52e22, "yottameters")
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25419. {
  25420. front: {
  25421. height: math.unit(4.3, "meters"),
  25422. weight: math.unit(3, "tons"),
  25423. name: "Front",
  25424. image: {
  25425. source: "./media/characters/draekon-sylviar/front.svg",
  25426. extra: 2072/1512,
  25427. bottom: 74/2146
  25428. }
  25429. },
  25430. back: {
  25431. height: math.unit(4.3, "meters"),
  25432. weight: math.unit(3, "tons"),
  25433. name: "Back",
  25434. image: {
  25435. source: "./media/characters/draekon-sylviar/back.svg",
  25436. extra: 1639/1483,
  25437. bottom: 41/1680
  25438. }
  25439. },
  25440. feral: {
  25441. height: math.unit(1.15, "meters"),
  25442. weight: math.unit(3, "tons"),
  25443. name: "Feral",
  25444. image: {
  25445. source: "./media/characters/draekon-sylviar/feral.svg",
  25446. extra: 1033/395,
  25447. bottom: 130/1163
  25448. }
  25449. },
  25450. maw: {
  25451. height: math.unit(1.3, "meters"),
  25452. name: "Maw",
  25453. image: {
  25454. source: "./media/characters/draekon-sylviar/maw.svg"
  25455. }
  25456. },
  25457. mawSeparated: {
  25458. height: math.unit(1.53, "meters"),
  25459. name: "Separated Maw",
  25460. image: {
  25461. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25462. }
  25463. },
  25464. tail: {
  25465. height: math.unit(1.15, "meters"),
  25466. name: "Tail",
  25467. image: {
  25468. source: "./media/characters/draekon-sylviar/tail.svg"
  25469. }
  25470. },
  25471. tailDick: {
  25472. height: math.unit(1.15, "meters"),
  25473. name: "Tail (Dick)",
  25474. image: {
  25475. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25476. }
  25477. },
  25478. tailDickSeparated: {
  25479. height: math.unit(1.19, "meters"),
  25480. name: "Tail (Separated Dick)",
  25481. image: {
  25482. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25483. }
  25484. },
  25485. slit: {
  25486. height: math.unit(1, "meters"),
  25487. name: "Slit",
  25488. image: {
  25489. source: "./media/characters/draekon-sylviar/slit.svg"
  25490. }
  25491. },
  25492. dick: {
  25493. height: math.unit(1.15, "meters"),
  25494. name: "Dick",
  25495. image: {
  25496. source: "./media/characters/draekon-sylviar/dick.svg"
  25497. }
  25498. },
  25499. dickSeparated: {
  25500. height: math.unit(1.1, "meters"),
  25501. name: "Separated Dick",
  25502. image: {
  25503. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25504. }
  25505. },
  25506. sheath: {
  25507. height: math.unit(1.15, "meters"),
  25508. name: "Sheath",
  25509. image: {
  25510. source: "./media/characters/draekon-sylviar/sheath.svg"
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Small",
  25517. height: math.unit(4.53 / 2, "meters"),
  25518. default: true
  25519. },
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(4.53, "meters"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Large",
  25527. height: math.unit(4.53 * 2, "meters"),
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(6 + 2 / 12, "feet"),
  25536. weight: math.unit(180, "lb"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/brawler/front.svg",
  25540. extra: 3301 / 3027,
  25541. bottom: 138 / 3439
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(6 + 2 / 12, "feet"),
  25549. default: true
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25555. {
  25556. front: {
  25557. height: math.unit(11, "feet"),
  25558. weight: math.unit(1000, "lb"),
  25559. name: "Front",
  25560. image: {
  25561. source: "./media/characters/alex/front.svg",
  25562. bottom: 44.5 / 620
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Micro",
  25569. height: math.unit(5, "inches")
  25570. },
  25571. {
  25572. name: "Normal",
  25573. height: math.unit(11, "feet"),
  25574. default: true
  25575. },
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(9.5e9, "feet")
  25579. },
  25580. {
  25581. name: "Max Size",
  25582. height: math.unit(1.4e283, "yottameters")
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25588. {
  25589. female: {
  25590. height: math.unit(29.9, "m"),
  25591. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25592. name: "Female",
  25593. image: {
  25594. source: "./media/characters/zenari/female.svg",
  25595. extra: 3281.6 / 3217,
  25596. bottom: 72.2 / 3353
  25597. }
  25598. },
  25599. male: {
  25600. height: math.unit(27.7, "m"),
  25601. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25602. name: "Male",
  25603. image: {
  25604. source: "./media/characters/zenari/male.svg",
  25605. extra: 3008 / 2991,
  25606. bottom: 54.6 / 3069
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Macro",
  25613. height: math.unit(29.7, "meters"),
  25614. default: true
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25620. {
  25621. female: {
  25622. height: math.unit(23.8, "m"),
  25623. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25624. name: "Female",
  25625. image: {
  25626. source: "./media/characters/mactarian/female.svg",
  25627. extra: 2662 / 2569,
  25628. bottom: 73 / 2736
  25629. }
  25630. },
  25631. male: {
  25632. height: math.unit(23.8, "m"),
  25633. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25634. name: "Male",
  25635. image: {
  25636. source: "./media/characters/mactarian/male.svg",
  25637. extra: 2673 / 2600,
  25638. bottom: 76 / 2750
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(23.8, "meters"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25652. {
  25653. female: {
  25654. height: math.unit(19.3, "m"),
  25655. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25656. name: "Female",
  25657. image: {
  25658. source: "./media/characters/umok/female.svg",
  25659. extra: 2186 / 2078,
  25660. bottom: 87 / 2277
  25661. }
  25662. },
  25663. male: {
  25664. height: math.unit(19.5, "m"),
  25665. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25666. name: "Male",
  25667. image: {
  25668. source: "./media/characters/umok/male.svg",
  25669. extra: 2233 / 2140,
  25670. bottom: 24.4 / 2258
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Macro",
  25677. height: math.unit(19.3, "meters"),
  25678. default: true
  25679. },
  25680. ]
  25681. ))
  25682. characterMakers.push(() => makeCharacter(
  25683. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25684. {
  25685. female: {
  25686. height: math.unit(26.15, "m"),
  25687. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25688. name: "Female",
  25689. image: {
  25690. source: "./media/characters/joraxian/female.svg",
  25691. extra: 2912 / 2824,
  25692. bottom: 36 / 2956
  25693. }
  25694. },
  25695. male: {
  25696. height: math.unit(25.4, "m"),
  25697. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25698. name: "Male",
  25699. image: {
  25700. source: "./media/characters/joraxian/male.svg",
  25701. extra: 2877 / 2721,
  25702. bottom: 82 / 2967
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Macro",
  25709. height: math.unit(26.15, "meters"),
  25710. default: true
  25711. },
  25712. ]
  25713. ))
  25714. characterMakers.push(() => makeCharacter(
  25715. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25716. {
  25717. female: {
  25718. height: math.unit(21.6, "m"),
  25719. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25720. name: "Female",
  25721. image: {
  25722. source: "./media/characters/sthara/female.svg",
  25723. extra: 2516 / 2347,
  25724. bottom: 21.5 / 2537
  25725. }
  25726. },
  25727. male: {
  25728. height: math.unit(24, "m"),
  25729. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25730. name: "Male",
  25731. image: {
  25732. source: "./media/characters/sthara/male.svg",
  25733. extra: 2732 / 2607,
  25734. bottom: 23 / 2732
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Macro",
  25741. height: math.unit(21.6, "meters"),
  25742. default: true
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25748. {
  25749. front: {
  25750. height: math.unit(6 + 4 / 12, "feet"),
  25751. weight: math.unit(175, "lb"),
  25752. name: "Front",
  25753. image: {
  25754. source: "./media/characters/luka-bryzant/front.svg",
  25755. extra: 311 / 289,
  25756. bottom: 4 / 315
  25757. }
  25758. },
  25759. back: {
  25760. height: math.unit(6 + 4 / 12, "feet"),
  25761. weight: math.unit(175, "lb"),
  25762. name: "Back",
  25763. image: {
  25764. source: "./media/characters/luka-bryzant/back.svg",
  25765. extra: 311 / 289,
  25766. bottom: 3.8 / 313.7
  25767. }
  25768. },
  25769. },
  25770. [
  25771. {
  25772. name: "Micro",
  25773. height: math.unit(10, "inches")
  25774. },
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(6 + 4 / 12, "feet"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Large",
  25782. height: math.unit(12, "feet")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(5 + 7 / 12, "feet"),
  25791. weight: math.unit(185, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/aman-aquila/front.svg",
  25795. extra: 1013 / 976,
  25796. bottom: 45.6 / 1057
  25797. }
  25798. },
  25799. side: {
  25800. height: math.unit(5 + 7 / 12, "feet"),
  25801. weight: math.unit(185, "lb"),
  25802. name: "Side",
  25803. image: {
  25804. source: "./media/characters/aman-aquila/side.svg",
  25805. extra: 1054 / 1011,
  25806. bottom: 15 / 1070
  25807. }
  25808. },
  25809. back: {
  25810. height: math.unit(5 + 7 / 12, "feet"),
  25811. weight: math.unit(185, "lb"),
  25812. name: "Back",
  25813. image: {
  25814. source: "./media/characters/aman-aquila/back.svg",
  25815. extra: 1026 / 970,
  25816. bottom: 12 / 1039
  25817. }
  25818. },
  25819. head: {
  25820. height: math.unit(1.211, "feet"),
  25821. name: "Head",
  25822. image: {
  25823. source: "./media/characters/aman-aquila/head.svg",
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Minimicro",
  25830. height: math.unit(0.057, "inches")
  25831. },
  25832. {
  25833. name: "Micro",
  25834. height: math.unit(7, "inches")
  25835. },
  25836. {
  25837. name: "Mini",
  25838. height: math.unit(3 + 7 / 12, "feet")
  25839. },
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(5 + 7 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(157 + 7 / 12, "feet")
  25848. },
  25849. {
  25850. name: "Megamacro",
  25851. height: math.unit(1557 + 7 / 12, "feet")
  25852. },
  25853. {
  25854. name: "Gigamacro",
  25855. height: math.unit(15557 + 7 / 12, "feet")
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(3 + 2 / 12, "inches"),
  25864. weight: math.unit(0.3, "ounces"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/hiphae/front.svg",
  25868. extra: 1931 / 1683,
  25869. bottom: 24 / 1955
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(3 + 1 / 2, "inches"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(5 + 10 / 12, "feet"),
  25886. weight: math.unit(165, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/nicky/front.svg",
  25890. extra: 3144 / 2886,
  25891. bottom: 45.6 / 3192
  25892. }
  25893. },
  25894. back: {
  25895. height: math.unit(5 + 10 / 12, "feet"),
  25896. weight: math.unit(165, "lb"),
  25897. name: "Back",
  25898. image: {
  25899. source: "./media/characters/nicky/back.svg",
  25900. extra: 3055 / 2804,
  25901. bottom: 28.4 / 3087
  25902. }
  25903. },
  25904. frontclothed: {
  25905. height: math.unit(5 + 10 / 12, "feet"),
  25906. weight: math.unit(165, "lb"),
  25907. name: "Front-clothed",
  25908. image: {
  25909. source: "./media/characters/nicky/front-clothed.svg",
  25910. extra: 3184.9 / 2926.9,
  25911. bottom: 86.5 / 3239.9
  25912. }
  25913. },
  25914. foot: {
  25915. height: math.unit(1.16, "feet"),
  25916. name: "Foot",
  25917. image: {
  25918. source: "./media/characters/nicky/foot.svg"
  25919. }
  25920. },
  25921. feet: {
  25922. height: math.unit(1.34, "feet"),
  25923. name: "Feet",
  25924. image: {
  25925. source: "./media/characters/nicky/feet.svg"
  25926. }
  25927. },
  25928. maw: {
  25929. height: math.unit(0.9, "feet"),
  25930. name: "Maw",
  25931. image: {
  25932. source: "./media/characters/nicky/maw.svg"
  25933. }
  25934. },
  25935. },
  25936. [
  25937. {
  25938. name: "Normal",
  25939. height: math.unit(5 + 10 / 12, "feet"),
  25940. default: true
  25941. },
  25942. {
  25943. name: "Macro",
  25944. height: math.unit(60, "feet")
  25945. },
  25946. {
  25947. name: "Megamacro",
  25948. height: math.unit(1, "mile")
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25954. {
  25955. side: {
  25956. height: math.unit(10, "feet"),
  25957. weight: math.unit(600, "lb"),
  25958. name: "Side",
  25959. image: {
  25960. source: "./media/characters/blair/side.svg",
  25961. bottom: 16.6 / 475,
  25962. extra: 458 / 431
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Micro",
  25969. height: math.unit(8, "inches")
  25970. },
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(10, "feet"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(180, "feet")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(5 + 4 / 12, "feet"),
  25987. weight: math.unit(125, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/fisher/front.svg",
  25991. extra: 444 / 390,
  25992. bottom: 2 / 444.8
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Micro",
  25999. height: math.unit(4, "inches")
  26000. },
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(5 + 4 / 12, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "Macro",
  26008. height: math.unit(100, "feet")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(6.71, "feet"),
  26017. weight: math.unit(200, "lb"),
  26018. preyCapacity: math.unit(1000000, "people"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/gliss/front.svg",
  26022. extra: 2347 / 2231,
  26023. bottom: 113 / 2462
  26024. }
  26025. },
  26026. hammerspaceSize: {
  26027. height: math.unit(6.71 * 717, "feet"),
  26028. weight: math.unit(200, "lb"),
  26029. preyCapacity: math.unit(1000000, "people"),
  26030. name: "Hammerspace Size",
  26031. image: {
  26032. source: "./media/characters/gliss/front.svg",
  26033. extra: 2347 / 2231,
  26034. bottom: 113 / 2462
  26035. }
  26036. },
  26037. },
  26038. [
  26039. {
  26040. name: "Normal",
  26041. height: math.unit(6.71, "feet"),
  26042. default: true
  26043. },
  26044. ]
  26045. ))
  26046. characterMakers.push(() => makeCharacter(
  26047. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26048. {
  26049. side: {
  26050. height: math.unit(1.44, "m"),
  26051. weight: math.unit(80, "kg"),
  26052. name: "Side",
  26053. image: {
  26054. source: "./media/characters/dune-anderson/side.svg",
  26055. bottom: 49 / 1426
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Wolf-sized",
  26062. height: math.unit(1.44, "meters")
  26063. },
  26064. {
  26065. name: "Normal",
  26066. height: math.unit(5.05, "meters"),
  26067. default: true
  26068. },
  26069. {
  26070. name: "Big",
  26071. height: math.unit(14.4, "meters")
  26072. },
  26073. {
  26074. name: "Huge",
  26075. height: math.unit(144, "meters")
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(7, "feet"),
  26084. weight: math.unit(425, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/hind/front.svg",
  26088. extra: 2091 / 1860,
  26089. bottom: 129 / 2220
  26090. }
  26091. },
  26092. back: {
  26093. height: math.unit(7, "feet"),
  26094. weight: math.unit(425, "lb"),
  26095. name: "Back",
  26096. image: {
  26097. source: "./media/characters/hind/back.svg",
  26098. extra: 2091 / 1860,
  26099. bottom: 24.6 / 2309
  26100. }
  26101. },
  26102. tail: {
  26103. height: math.unit(2.8, "feet"),
  26104. name: "Tail",
  26105. image: {
  26106. source: "./media/characters/hind/tail.svg"
  26107. }
  26108. },
  26109. head: {
  26110. height: math.unit(2.55, "feet"),
  26111. name: "Head",
  26112. image: {
  26113. source: "./media/characters/hind/head.svg"
  26114. }
  26115. },
  26116. },
  26117. [
  26118. {
  26119. name: "XS",
  26120. height: math.unit(0.7, "feet")
  26121. },
  26122. {
  26123. name: "Normal",
  26124. height: math.unit(7, "feet"),
  26125. default: true
  26126. },
  26127. {
  26128. name: "XL",
  26129. height: math.unit(70, "feet")
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(2.1, "meters"),
  26138. weight: math.unit(150, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/tharquench-sizestealer/front.svg",
  26142. extra: 1605/1470,
  26143. bottom: 36/1641
  26144. }
  26145. },
  26146. frontAlt: {
  26147. height: math.unit(2.1, "meters"),
  26148. weight: math.unit(150, "lb"),
  26149. name: "Front (Alt)",
  26150. image: {
  26151. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26152. extra: 2318 / 2063,
  26153. bottom: 93.4 / 2410
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Nano",
  26160. height: math.unit(1, "mm")
  26161. },
  26162. {
  26163. name: "Micro",
  26164. height: math.unit(1, "cm")
  26165. },
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(2.1, "meters"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(7 + 5 / 12, "feet"),
  26178. weight: math.unit(357, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/solex-draconov/front.svg",
  26182. extra: 1993 / 1865,
  26183. bottom: 117 / 2111
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Natural Height",
  26190. height: math.unit(7 + 5 / 12, "feet"),
  26191. default: true
  26192. },
  26193. {
  26194. name: "Macro",
  26195. height: math.unit(350, "feet")
  26196. },
  26197. {
  26198. name: "Macro+",
  26199. height: math.unit(1000, "feet")
  26200. },
  26201. {
  26202. name: "Megamacro",
  26203. height: math.unit(20, "km")
  26204. },
  26205. {
  26206. name: "Megamacro+",
  26207. height: math.unit(1000, "km")
  26208. },
  26209. {
  26210. name: "Gigamacro",
  26211. height: math.unit(2.5, "Gm")
  26212. },
  26213. {
  26214. name: "Teramacro",
  26215. height: math.unit(15, "Tm")
  26216. },
  26217. {
  26218. name: "Galactic",
  26219. height: math.unit(30, "Zm")
  26220. },
  26221. {
  26222. name: "Universal",
  26223. height: math.unit(21000, "Ym")
  26224. },
  26225. {
  26226. name: "Omniversal",
  26227. height: math.unit(9.861e50, "Ym")
  26228. },
  26229. {
  26230. name: "Existential",
  26231. height: math.unit(1e300, "meters")
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26237. {
  26238. side: {
  26239. height: math.unit(25, "feet"),
  26240. weight: math.unit(90000, "lb"),
  26241. name: "Side",
  26242. image: {
  26243. source: "./media/characters/mandarax/side.svg",
  26244. extra: 614 / 332,
  26245. bottom: 55 / 630
  26246. }
  26247. },
  26248. lounging: {
  26249. height: math.unit(15.4, "feet"),
  26250. weight: math.unit(90000, "lb"),
  26251. name: "Lounging",
  26252. image: {
  26253. source: "./media/characters/mandarax/lounging.svg",
  26254. extra: 817/609,
  26255. bottom: 685/1502
  26256. }
  26257. },
  26258. head: {
  26259. height: math.unit(11.4, "feet"),
  26260. name: "Head",
  26261. image: {
  26262. source: "./media/characters/mandarax/head.svg"
  26263. }
  26264. },
  26265. belly: {
  26266. height: math.unit(33, "feet"),
  26267. name: "Belly",
  26268. preyCapacity: math.unit(500, "people"),
  26269. image: {
  26270. source: "./media/characters/mandarax/belly.svg"
  26271. }
  26272. },
  26273. dick: {
  26274. height: math.unit(8.46, "feet"),
  26275. name: "Dick",
  26276. image: {
  26277. source: "./media/characters/mandarax/dick.svg"
  26278. }
  26279. },
  26280. top: {
  26281. height: math.unit(28, "meters"),
  26282. name: "Top",
  26283. image: {
  26284. source: "./media/characters/mandarax/top.svg"
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Normal",
  26291. height: math.unit(25, "feet"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(5, "feet"),
  26301. weight: math.unit(90, "lb"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/pixil/front.svg",
  26305. extra: 2000 / 1618,
  26306. bottom: 12.3 / 2011
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(5, "feet"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Megamacro",
  26318. height: math.unit(10, "miles"),
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(7 + 2 / 12, "feet"),
  26327. weight: math.unit(200, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/angel/front.svg",
  26331. extra: 1830 / 1737,
  26332. bottom: 22.6 / 1854,
  26333. }
  26334. },
  26335. },
  26336. [
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(7 + 2 / 12, "feet"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Macro",
  26344. height: math.unit(1000, "feet")
  26345. },
  26346. {
  26347. name: "Megamacro",
  26348. height: math.unit(2, "miles")
  26349. },
  26350. {
  26351. name: "Gigamacro",
  26352. height: math.unit(20, "earths")
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(5, "feet"),
  26361. weight: math.unit(180, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/mekana/front.svg",
  26365. extra: 1671 / 1605,
  26366. bottom: 3.5 / 1691
  26367. }
  26368. },
  26369. side: {
  26370. height: math.unit(5, "feet"),
  26371. weight: math.unit(180, "lb"),
  26372. name: "Side",
  26373. image: {
  26374. source: "./media/characters/mekana/side.svg",
  26375. extra: 1671 / 1605,
  26376. bottom: 3.5 / 1691
  26377. }
  26378. },
  26379. back: {
  26380. height: math.unit(5, "feet"),
  26381. weight: math.unit(180, "lb"),
  26382. name: "Back",
  26383. image: {
  26384. source: "./media/characters/mekana/back.svg",
  26385. extra: 1671 / 1605,
  26386. bottom: 3.5 / 1691
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(5, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(4 + 6 / 12, "feet"),
  26403. weight: math.unit(80, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/pixie/front.svg",
  26407. extra: 1924 / 1825,
  26408. bottom: 22.4 / 1946
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(4 + 6 / 12, "feet"),
  26416. default: true
  26417. },
  26418. {
  26419. name: "Macro",
  26420. height: math.unit(40, "feet")
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(2.1, "meters"),
  26429. weight: math.unit(200, "lb"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/the-lascivious/front.svg",
  26433. extra: 1 / 0.893,
  26434. bottom: 3.5 / 573.7
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Human Scale",
  26441. height: math.unit(2.1, "meters")
  26442. },
  26443. {
  26444. name: "Wolxi Scale",
  26445. height: math.unit(46.2, "m"),
  26446. default: true
  26447. },
  26448. {
  26449. name: "Boinker of Buildings",
  26450. height: math.unit(10, "km")
  26451. },
  26452. {
  26453. name: "Shagger of Skyscrapers",
  26454. height: math.unit(40, "km")
  26455. },
  26456. {
  26457. name: "Banger of Boroughs",
  26458. height: math.unit(4000, "km")
  26459. },
  26460. {
  26461. name: "Screwer of States",
  26462. height: math.unit(100000, "km")
  26463. },
  26464. {
  26465. name: "Pounder of Planets",
  26466. height: math.unit(2000000, "km")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(6, "feet"),
  26475. weight: math.unit(150, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/aj/front.svg",
  26479. extra: 2039 / 1562,
  26480. bottom: 40 / 2079
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(11 + 6 / 12, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Megamacro",
  26492. height: math.unit(60, "megameters")
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26498. {
  26499. side: {
  26500. height: math.unit(31 + 8 / 12, "feet"),
  26501. weight: math.unit(75000, "kg"),
  26502. name: "Side",
  26503. image: {
  26504. source: "./media/characters/koros/side.svg",
  26505. extra: 1442 / 1297,
  26506. bottom: 122.7 / 1562
  26507. }
  26508. },
  26509. dicksKingsCrown: {
  26510. height: math.unit(6, "feet"),
  26511. name: "Dicks (King's Crown)",
  26512. image: {
  26513. source: "./media/characters/koros/dicks-kings-crown.svg"
  26514. }
  26515. },
  26516. dicksTailSet: {
  26517. height: math.unit(3, "feet"),
  26518. name: "Dicks (Tail Set)",
  26519. image: {
  26520. source: "./media/characters/koros/dicks-tail-set.svg"
  26521. }
  26522. },
  26523. dickCumming: {
  26524. height: math.unit(7.98, "feet"),
  26525. name: "Dick (Cumming)",
  26526. image: {
  26527. source: "./media/characters/koros/dick-cumming.svg"
  26528. }
  26529. },
  26530. dicksBack: {
  26531. height: math.unit(5.9, "feet"),
  26532. name: "Dicks (Back)",
  26533. image: {
  26534. source: "./media/characters/koros/dicks-back.svg"
  26535. }
  26536. },
  26537. dicksFront: {
  26538. height: math.unit(3.72, "feet"),
  26539. name: "Dicks (Front)",
  26540. image: {
  26541. source: "./media/characters/koros/dicks-front.svg"
  26542. }
  26543. },
  26544. dicksPeeking: {
  26545. height: math.unit(3.0, "feet"),
  26546. name: "Dicks (Peeking)",
  26547. image: {
  26548. source: "./media/characters/koros/dicks-peeking.svg"
  26549. }
  26550. },
  26551. eye: {
  26552. height: math.unit(1.7, "feet"),
  26553. name: "Eye",
  26554. image: {
  26555. source: "./media/characters/koros/eye.svg"
  26556. }
  26557. },
  26558. headFront: {
  26559. height: math.unit(11.69, "feet"),
  26560. name: "Head (Front)",
  26561. image: {
  26562. source: "./media/characters/koros/head-front.svg"
  26563. }
  26564. },
  26565. headSide: {
  26566. height: math.unit(14, "feet"),
  26567. name: "Head (Side)",
  26568. image: {
  26569. source: "./media/characters/koros/head-side.svg"
  26570. }
  26571. },
  26572. leg: {
  26573. height: math.unit(17, "feet"),
  26574. name: "Leg",
  26575. image: {
  26576. source: "./media/characters/koros/leg.svg"
  26577. }
  26578. },
  26579. mawSide: {
  26580. height: math.unit(12.8, "feet"),
  26581. name: "Maw (Side)",
  26582. image: {
  26583. source: "./media/characters/koros/maw-side.svg"
  26584. }
  26585. },
  26586. mawSpitting: {
  26587. height: math.unit(17, "feet"),
  26588. name: "Maw (Spitting)",
  26589. image: {
  26590. source: "./media/characters/koros/maw-spitting.svg"
  26591. }
  26592. },
  26593. slit: {
  26594. height: math.unit(2.8, "feet"),
  26595. name: "Slit",
  26596. image: {
  26597. source: "./media/characters/koros/slit.svg"
  26598. }
  26599. },
  26600. stomach: {
  26601. height: math.unit(6.8, "feet"),
  26602. preyCapacity: math.unit(20, "people"),
  26603. name: "Stomach",
  26604. image: {
  26605. source: "./media/characters/koros/stomach.svg"
  26606. }
  26607. },
  26608. wingspanBottom: {
  26609. height: math.unit(114, "feet"),
  26610. name: "Wingspan (Bottom)",
  26611. image: {
  26612. source: "./media/characters/koros/wingspan-bottom.svg"
  26613. }
  26614. },
  26615. wingspanTop: {
  26616. height: math.unit(104, "feet"),
  26617. name: "Wingspan (Top)",
  26618. image: {
  26619. source: "./media/characters/koros/wingspan-top.svg"
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Normal",
  26626. height: math.unit(31 + 8 / 12, "feet"),
  26627. default: true
  26628. },
  26629. ]
  26630. ))
  26631. characterMakers.push(() => makeCharacter(
  26632. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26633. {
  26634. front: {
  26635. height: math.unit(18 + 5 / 12, "feet"),
  26636. weight: math.unit(3750, "kg"),
  26637. name: "Front",
  26638. image: {
  26639. source: "./media/characters/vexx/front.svg",
  26640. extra: 426 / 396,
  26641. bottom: 31.5 / 458
  26642. }
  26643. },
  26644. maw: {
  26645. height: math.unit(6, "feet"),
  26646. name: "Maw",
  26647. image: {
  26648. source: "./media/characters/vexx/maw.svg"
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Normal",
  26655. height: math.unit(18 + 5 / 12, "feet"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(17 + 6 / 12, "feet"),
  26665. weight: math.unit(150, "lb"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/baadra/front.svg",
  26669. extra: 1694/1553,
  26670. bottom: 179/1873
  26671. }
  26672. },
  26673. frontAlt: {
  26674. height: math.unit(17 + 6 / 12, "feet"),
  26675. weight: math.unit(150, "lb"),
  26676. name: "Front (Alt)",
  26677. image: {
  26678. source: "./media/characters/baadra/front-alt.svg",
  26679. extra: 3137 / 2890,
  26680. bottom: 168.4 / 3305
  26681. }
  26682. },
  26683. back: {
  26684. height: math.unit(17 + 6 / 12, "feet"),
  26685. weight: math.unit(150, "lb"),
  26686. name: "Back",
  26687. image: {
  26688. source: "./media/characters/baadra/back.svg",
  26689. extra: 3142 / 2890,
  26690. bottom: 220 / 3371
  26691. }
  26692. },
  26693. head: {
  26694. height: math.unit(5.45, "feet"),
  26695. name: "Head",
  26696. image: {
  26697. source: "./media/characters/baadra/head.svg"
  26698. }
  26699. },
  26700. headAngry: {
  26701. height: math.unit(4.95, "feet"),
  26702. name: "Head (Angry)",
  26703. image: {
  26704. source: "./media/characters/baadra/head-angry.svg"
  26705. }
  26706. },
  26707. headOpen: {
  26708. height: math.unit(6, "feet"),
  26709. name: "Head (Open)",
  26710. image: {
  26711. source: "./media/characters/baadra/head-open.svg"
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Normal",
  26718. height: math.unit(17 + 6 / 12, "feet"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(7 + 3 / 12, "feet"),
  26728. weight: math.unit(180, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/juri/front.svg",
  26732. extra: 1401 / 1237,
  26733. bottom: 18.5 / 1418
  26734. }
  26735. },
  26736. side: {
  26737. height: math.unit(7 + 3 / 12, "feet"),
  26738. weight: math.unit(180, "lb"),
  26739. name: "Side",
  26740. image: {
  26741. source: "./media/characters/juri/side.svg",
  26742. extra: 1424 / 1242,
  26743. bottom: 18.5 / 1447
  26744. }
  26745. },
  26746. sitting: {
  26747. height: math.unit(6, "feet"),
  26748. weight: math.unit(180, "lb"),
  26749. name: "Sitting",
  26750. image: {
  26751. source: "./media/characters/juri/sitting.svg",
  26752. extra: 1270 / 1143,
  26753. bottom: 100 / 1343
  26754. }
  26755. },
  26756. back: {
  26757. height: math.unit(7 + 3 / 12, "feet"),
  26758. weight: math.unit(180, "lb"),
  26759. name: "Back",
  26760. image: {
  26761. source: "./media/characters/juri/back.svg",
  26762. extra: 1377 / 1240,
  26763. bottom: 23.7 / 1405
  26764. }
  26765. },
  26766. maw: {
  26767. height: math.unit(2.8, "feet"),
  26768. name: "Maw",
  26769. image: {
  26770. source: "./media/characters/juri/maw.svg"
  26771. }
  26772. },
  26773. stomach: {
  26774. height: math.unit(0.89, "feet"),
  26775. preyCapacity: math.unit(4, "liters"),
  26776. name: "Stomach",
  26777. image: {
  26778. source: "./media/characters/juri/stomach.svg"
  26779. }
  26780. },
  26781. },
  26782. [
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(7 + 3 / 12, "feet"),
  26786. default: true
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26792. {
  26793. fox: {
  26794. height: math.unit(5 + 6 / 12, "feet"),
  26795. weight: math.unit(140, "lb"),
  26796. name: "Fox",
  26797. image: {
  26798. source: "./media/characters/maxene-sita/fox.svg",
  26799. extra: 146 / 138,
  26800. bottom: 2.1 / 148.19
  26801. }
  26802. },
  26803. foxLaying: {
  26804. height: math.unit(1.70, "feet"),
  26805. weight: math.unit(140, "lb"),
  26806. name: "Fox (Laying)",
  26807. image: {
  26808. source: "./media/characters/maxene-sita/fox-laying.svg",
  26809. extra: 910 / 572,
  26810. bottom: 71 / 981
  26811. }
  26812. },
  26813. kitsune: {
  26814. height: math.unit(10, "feet"),
  26815. weight: math.unit(800, "lb"),
  26816. name: "Kitsune",
  26817. image: {
  26818. source: "./media/characters/maxene-sita/kitsune.svg",
  26819. extra: 185 / 176,
  26820. bottom: 4.7 / 189.9
  26821. }
  26822. },
  26823. hellhound: {
  26824. height: math.unit(10, "feet"),
  26825. weight: math.unit(700, "lb"),
  26826. name: "Hellhound",
  26827. image: {
  26828. source: "./media/characters/maxene-sita/hellhound.svg",
  26829. extra: 1600 / 1545,
  26830. bottom: 81 / 1681
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(5 + 6 / 12, "feet"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26844. {
  26845. front: {
  26846. height: math.unit(3 + 4 / 12, "feet"),
  26847. weight: math.unit(70, "lb"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/maia/front.svg",
  26851. extra: 227 / 219.5,
  26852. bottom: 40 / 267
  26853. }
  26854. },
  26855. back: {
  26856. height: math.unit(3 + 4 / 12, "feet"),
  26857. weight: math.unit(70, "lb"),
  26858. name: "Back",
  26859. image: {
  26860. source: "./media/characters/maia/back.svg",
  26861. extra: 237 / 225
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(3 + 4 / 12, "feet"),
  26869. default: true
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(5 + 10 / 12, "feet"),
  26878. weight: math.unit(197, "lb"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/jabaro/front.svg",
  26882. extra: 225 / 216,
  26883. bottom: 5.06 / 230
  26884. }
  26885. },
  26886. back: {
  26887. height: math.unit(5 + 10 / 12, "feet"),
  26888. weight: math.unit(197, "lb"),
  26889. name: "Back",
  26890. image: {
  26891. source: "./media/characters/jabaro/back.svg",
  26892. extra: 225 / 219,
  26893. bottom: 1.9 / 227
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(5 + 10 / 12, "feet"),
  26901. default: true
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(5 + 8 / 12, "feet"),
  26910. weight: math.unit(139, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/risa/front.svg",
  26914. extra: 270 / 260,
  26915. bottom: 11.2 / 282
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(5 + 8 / 12, "feet"),
  26920. weight: math.unit(139, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/risa/back.svg",
  26924. extra: 264 / 255,
  26925. bottom: 4 / 268
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(5 + 8 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(2 + 11 / 12, "feet"),
  26942. weight: math.unit(30, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/weatley/front.svg",
  26946. bottom: 10.7 / 414,
  26947. extra: 403.5 / 362
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(2 + 11 / 12, "feet"),
  26952. weight: math.unit(30, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/weatley/back.svg",
  26956. bottom: 10.7 / 414,
  26957. extra: 403.5 / 362
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(2 + 11 / 12, "feet"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(5 + 2 / 12, "feet"),
  26974. weight: math.unit(50, "kg"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/mercury-crescent/front.svg",
  26978. extra: 1088 / 1033,
  26979. bottom: 18.9 / 1109
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(5 + 2 / 12, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(2, "feet"),
  26996. weight: math.unit(15, "kg"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/diamond-jones/front.svg",
  27000. extra: 727/723,
  27001. bottom: 46/773
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(2, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(3, "feet"),
  27018. weight: math.unit(30, "kg"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/sweet-bit/front.svg",
  27022. extra: 675 / 567,
  27023. bottom: 27.7 / 703
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(3, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27037. {
  27038. side: {
  27039. height: math.unit(9.178, "feet"),
  27040. weight: math.unit(500, "lb"),
  27041. name: "Side",
  27042. image: {
  27043. source: "./media/characters/umbrazen/side.svg",
  27044. extra: 1730 / 1473,
  27045. bottom: 34.6 / 1765
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(9.178, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(10, "feet"),
  27062. weight: math.unit(750, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/arlist/front.svg",
  27066. extra: 961 / 778,
  27067. bottom: 6.2 / 986
  27068. }
  27069. },
  27070. },
  27071. [
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(10, "feet"),
  27075. default: true
  27076. },
  27077. ]
  27078. ))
  27079. characterMakers.push(() => makeCharacter(
  27080. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27081. {
  27082. front: {
  27083. height: math.unit(5 + 1 / 12, "feet"),
  27084. weight: math.unit(110, "lb"),
  27085. name: "Front",
  27086. image: {
  27087. source: "./media/characters/aradel/front.svg",
  27088. extra: 324 / 303,
  27089. bottom: 3.6 / 329.4
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Normal",
  27096. height: math.unit(5 + 1 / 12, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27103. {
  27104. dressed: {
  27105. height: math.unit(3 + 8 / 12, "feet"),
  27106. weight: math.unit(50, "lb"),
  27107. name: "Dressed",
  27108. image: {
  27109. source: "./media/characters/serryn/dressed.svg",
  27110. extra: 1792 / 1656,
  27111. bottom: 43.5 / 1840
  27112. }
  27113. },
  27114. nude: {
  27115. height: math.unit(3 + 8 / 12, "feet"),
  27116. weight: math.unit(50, "lb"),
  27117. name: "Nude",
  27118. image: {
  27119. source: "./media/characters/serryn/nude.svg",
  27120. extra: 1792 / 1656,
  27121. bottom: 43.5 / 1840
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(3 + 8 / 12, "feet"),
  27129. default: true
  27130. },
  27131. ]
  27132. ))
  27133. characterMakers.push(() => makeCharacter(
  27134. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27135. {
  27136. front: {
  27137. height: math.unit(7 + 10 / 12, "feet"),
  27138. weight: math.unit(255, "lb"),
  27139. name: "Front",
  27140. image: {
  27141. source: "./media/characters/xavier-thyme/front.svg",
  27142. extra: 3733 / 3642,
  27143. bottom: 131 / 3869
  27144. }
  27145. },
  27146. frontRaven: {
  27147. height: math.unit(7 + 10 / 12, "feet"),
  27148. weight: math.unit(255, "lb"),
  27149. name: "Front (Raven)",
  27150. image: {
  27151. source: "./media/characters/xavier-thyme/front-raven.svg",
  27152. extra: 4385 / 3642,
  27153. bottom: 131 / 4517
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Normal",
  27160. height: math.unit(7 + 10 / 12, "feet"),
  27161. default: true
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(1.6, "m"),
  27170. weight: math.unit(50, "kg"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/kiki/front.svg",
  27174. extra: 4682 / 3610,
  27175. bottom: 115 / 4777
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Normal",
  27182. height: math.unit(1.6, "meters"),
  27183. default: true
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(50, "m"),
  27192. weight: math.unit(500, "tonnes"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/ryoko/front.svg",
  27196. extra: 4632 / 3926,
  27197. bottom: 193 / 4823
  27198. }
  27199. },
  27200. },
  27201. [
  27202. {
  27203. name: "Normal",
  27204. height: math.unit(50, "meters"),
  27205. default: true
  27206. },
  27207. ]
  27208. ))
  27209. characterMakers.push(() => makeCharacter(
  27210. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27211. {
  27212. front: {
  27213. height: math.unit(30, "m"),
  27214. weight: math.unit(22, "tonnes"),
  27215. name: "Front",
  27216. image: {
  27217. source: "./media/characters/elio/front.svg",
  27218. extra: 4582 / 3720,
  27219. bottom: 236 / 4828
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(30, "meters"),
  27227. default: true
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(6 + 3 / 12, "feet"),
  27236. weight: math.unit(120, "lb"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/azura/front.svg",
  27240. extra: 1149 / 1135,
  27241. bottom: 45 / 1194
  27242. }
  27243. },
  27244. frontClothed: {
  27245. height: math.unit(6 + 3 / 12, "feet"),
  27246. weight: math.unit(120, "lb"),
  27247. name: "Front (Clothed)",
  27248. image: {
  27249. source: "./media/characters/azura/front-clothed.svg",
  27250. extra: 1149 / 1135,
  27251. bottom: 45 / 1194
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(6 + 3 / 12, "feet"),
  27259. default: true
  27260. },
  27261. {
  27262. name: "Macro",
  27263. height: math.unit(20 + 6 / 12, "feet")
  27264. },
  27265. {
  27266. name: "Megamacro",
  27267. height: math.unit(12, "miles")
  27268. },
  27269. {
  27270. name: "Gigamacro",
  27271. height: math.unit(10000, "miles")
  27272. },
  27273. {
  27274. name: "Teramacro",
  27275. height: math.unit(900000, "miles")
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27281. {
  27282. front: {
  27283. height: math.unit(12, "feet"),
  27284. weight: math.unit(1, "ton"),
  27285. capacity: math.unit(660000, "gallons"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/zeus/front.svg",
  27289. extra: 5005 / 4717,
  27290. bottom: 363 / 5388
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(12, "feet")
  27298. },
  27299. {
  27300. name: "Preferred Size",
  27301. height: math.unit(0.5, "miles"),
  27302. default: true
  27303. },
  27304. {
  27305. name: "Giga Horse",
  27306. height: math.unit(300, "miles")
  27307. },
  27308. {
  27309. name: "Riding Planets",
  27310. height: math.unit(30, "megameters")
  27311. },
  27312. {
  27313. name: "Cosmic Giant",
  27314. height: math.unit(3, "zettameters")
  27315. },
  27316. {
  27317. name: "Breeding God",
  27318. height: math.unit(9.92e22, "yottameters")
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27324. {
  27325. side: {
  27326. height: math.unit(9, "feet"),
  27327. weight: math.unit(1500, "kg"),
  27328. name: "Side",
  27329. image: {
  27330. source: "./media/characters/fang/side.svg",
  27331. extra: 924 / 866,
  27332. bottom: 47.5 / 972.3
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(9, "feet"),
  27340. default: true
  27341. },
  27342. {
  27343. name: "Macro",
  27344. height: math.unit(75 + 6 / 12, "feet")
  27345. },
  27346. {
  27347. name: "Teramacro",
  27348. height: math.unit(50000, "miles")
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27354. {
  27355. front: {
  27356. height: math.unit(10, "feet"),
  27357. weight: math.unit(2, "tons"),
  27358. name: "Front",
  27359. image: {
  27360. source: "./media/characters/rekhit/front.svg",
  27361. extra: 2796 / 2590,
  27362. bottom: 225 / 3022
  27363. }
  27364. },
  27365. },
  27366. [
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(10, "feet"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(500, "feet")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(7 + 6.451 / 12, "feet"),
  27383. weight: math.unit(310, "lb"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/dahlia-verrick/front.svg",
  27387. extra: 1488 / 1365,
  27388. bottom: 6.2 / 1495
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(7 + 6.451 / 12, "feet"),
  27393. weight: math.unit(310, "lb"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/dahlia-verrick/back.svg",
  27397. extra: 1472 / 1351,
  27398. bottom: 5.28 / 1477
  27399. }
  27400. },
  27401. frontBusiness: {
  27402. height: math.unit(7 + 6.451 / 12, "feet"),
  27403. weight: math.unit(200, "lb"),
  27404. name: "Front (Business)",
  27405. image: {
  27406. source: "./media/characters/dahlia-verrick/front-business.svg",
  27407. extra: 1478 / 1381,
  27408. bottom: 5.5 / 1484
  27409. }
  27410. },
  27411. frontCasual: {
  27412. height: math.unit(7 + 6.451 / 12, "feet"),
  27413. weight: math.unit(200, "lb"),
  27414. name: "Front (Casual)",
  27415. image: {
  27416. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27417. extra: 1478 / 1381,
  27418. bottom: 5.5 / 1484
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Travel-Sized",
  27425. height: math.unit(7.45, "inches")
  27426. },
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(7 + 6.451 / 12, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Hitting the Town",
  27434. height: math.unit(37 + 8 / 12, "feet")
  27435. },
  27436. {
  27437. name: "Stomp in the Suburbs",
  27438. height: math.unit(964 + 9.728 / 12, "feet")
  27439. },
  27440. {
  27441. name: "Sit on the City",
  27442. height: math.unit(61747 + 10.592 / 12, "feet")
  27443. },
  27444. {
  27445. name: "Glomp the Globe",
  27446. height: math.unit(252919327 + 4.832 / 12, "feet")
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(6 + 4 / 12, "feet"),
  27455. weight: math.unit(320, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/balina-mahigan/front.svg",
  27459. extra: 447 / 428,
  27460. bottom: 18 / 466
  27461. }
  27462. },
  27463. back: {
  27464. height: math.unit(6 + 4 / 12, "feet"),
  27465. weight: math.unit(320, "lb"),
  27466. name: "Back",
  27467. image: {
  27468. source: "./media/characters/balina-mahigan/back.svg",
  27469. extra: 445 / 428,
  27470. bottom: 4.07 / 448
  27471. }
  27472. },
  27473. arm: {
  27474. height: math.unit(1.88, "feet"),
  27475. name: "Arm",
  27476. image: {
  27477. source: "./media/characters/balina-mahigan/arm.svg"
  27478. }
  27479. },
  27480. backPort: {
  27481. height: math.unit(0.685, "feet"),
  27482. name: "Back Port",
  27483. image: {
  27484. source: "./media/characters/balina-mahigan/back-port.svg"
  27485. }
  27486. },
  27487. hoofpaw: {
  27488. height: math.unit(1.41, "feet"),
  27489. name: "Hoofpaw",
  27490. image: {
  27491. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27492. }
  27493. },
  27494. leftHandBack: {
  27495. height: math.unit(0.938, "feet"),
  27496. name: "Left Hand (Back)",
  27497. image: {
  27498. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27499. }
  27500. },
  27501. leftHandFront: {
  27502. height: math.unit(0.938, "feet"),
  27503. name: "Left Hand (Front)",
  27504. image: {
  27505. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27506. }
  27507. },
  27508. rightHandBack: {
  27509. height: math.unit(0.95, "feet"),
  27510. name: "Right Hand (Back)",
  27511. image: {
  27512. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27513. }
  27514. },
  27515. rightHandFront: {
  27516. height: math.unit(0.95, "feet"),
  27517. name: "Right Hand (Front)",
  27518. image: {
  27519. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(6 + 4 / 12, "feet"),
  27527. default: true
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27533. {
  27534. front: {
  27535. height: math.unit(6, "feet"),
  27536. weight: math.unit(320, "lb"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/balina-mejeri/front.svg",
  27540. extra: 517 / 488,
  27541. bottom: 44.2 / 561
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Normal",
  27548. height: math.unit(6 + 4 / 12, "feet")
  27549. },
  27550. {
  27551. name: "Business",
  27552. height: math.unit(155, "feet"),
  27553. default: true
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27559. {
  27560. kneeling: {
  27561. height: math.unit(6 + 4 / 12, "feet"),
  27562. weight: math.unit(300 * 20, "lb"),
  27563. name: "Kneeling",
  27564. image: {
  27565. source: "./media/characters/balbarian/kneeling.svg",
  27566. extra: 922 / 862,
  27567. bottom: 42.4 / 965
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(6 + 4 / 12, "feet")
  27575. },
  27576. {
  27577. name: "Treasured",
  27578. height: math.unit(18 + 9 / 12, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Macro",
  27583. height: math.unit(900, "feet")
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(6 + 4 / 12, "feet"),
  27592. weight: math.unit(325, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/balina-amarini/front.svg",
  27596. extra: 415 / 403,
  27597. bottom: 19 / 433.4
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(6 + 4 / 12, "feet"),
  27602. weight: math.unit(325, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/balina-amarini/back.svg",
  27606. extra: 415 / 403,
  27607. bottom: 13.5 / 432
  27608. }
  27609. },
  27610. overdrive: {
  27611. height: math.unit(6 + 4 / 12, "feet"),
  27612. weight: math.unit(400, "lb"),
  27613. name: "Overdrive",
  27614. image: {
  27615. source: "./media/characters/balina-amarini/overdrive.svg",
  27616. extra: 269 / 259,
  27617. bottom: 12 / 282
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Boom",
  27624. height: math.unit(9 + 10 / 12, "feet"),
  27625. default: true
  27626. },
  27627. {
  27628. name: "Macro",
  27629. height: math.unit(280, "feet")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27635. {
  27636. goddess: {
  27637. height: math.unit(600, "feet"),
  27638. weight: math.unit(2000000, "tons"),
  27639. name: "Goddess",
  27640. image: {
  27641. source: "./media/characters/lady-kubwa/goddess.svg",
  27642. extra: 1240.5 / 1223,
  27643. bottom: 22 / 1263
  27644. }
  27645. },
  27646. goddesser: {
  27647. height: math.unit(900, "feet"),
  27648. weight: math.unit(20000000, "lb"),
  27649. name: "Goddess-er",
  27650. image: {
  27651. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27652. extra: 899 / 888,
  27653. bottom: 12.6 / 912
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Macro",
  27660. height: math.unit(600, "feet"),
  27661. default: true
  27662. },
  27663. {
  27664. name: "Megamacro",
  27665. height: math.unit(250, "miles")
  27666. },
  27667. ]
  27668. ))
  27669. characterMakers.push(() => makeCharacter(
  27670. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27671. {
  27672. front: {
  27673. height: math.unit(7 + 7 / 12, "feet"),
  27674. weight: math.unit(250, "lb"),
  27675. name: "Front",
  27676. image: {
  27677. source: "./media/characters/tala-grovehorn/front.svg",
  27678. extra: 2636 / 2525,
  27679. bottom: 147 / 2781
  27680. }
  27681. },
  27682. back: {
  27683. height: math.unit(7 + 7 / 12, "feet"),
  27684. weight: math.unit(250, "lb"),
  27685. name: "Back",
  27686. image: {
  27687. source: "./media/characters/tala-grovehorn/back.svg",
  27688. extra: 2635 / 2539,
  27689. bottom: 100 / 2732.8
  27690. }
  27691. },
  27692. mouth: {
  27693. height: math.unit(1.15, "feet"),
  27694. name: "Mouth",
  27695. image: {
  27696. source: "./media/characters/tala-grovehorn/mouth.svg"
  27697. }
  27698. },
  27699. dick: {
  27700. height: math.unit(2.36, "feet"),
  27701. name: "Dick",
  27702. image: {
  27703. source: "./media/characters/tala-grovehorn/dick.svg"
  27704. }
  27705. },
  27706. slit: {
  27707. height: math.unit(0.61, "feet"),
  27708. name: "Slit",
  27709. image: {
  27710. source: "./media/characters/tala-grovehorn/slit.svg"
  27711. }
  27712. },
  27713. },
  27714. [
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27719. {
  27720. front: {
  27721. height: math.unit(7 + 7 / 12, "feet"),
  27722. weight: math.unit(225, "lb"),
  27723. name: "Front",
  27724. image: {
  27725. source: "./media/characters/epona/front.svg",
  27726. extra: 2445 / 2290,
  27727. bottom: 251 / 2696
  27728. }
  27729. },
  27730. back: {
  27731. height: math.unit(7 + 7 / 12, "feet"),
  27732. weight: math.unit(225, "lb"),
  27733. name: "Back",
  27734. image: {
  27735. source: "./media/characters/epona/back.svg",
  27736. extra: 2546 / 2408,
  27737. bottom: 44 / 2589
  27738. }
  27739. },
  27740. genitals: {
  27741. height: math.unit(1.5, "feet"),
  27742. name: "Genitals",
  27743. image: {
  27744. source: "./media/characters/epona/genitals.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(7 + 7 / 12, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(7, "feet"),
  27761. weight: math.unit(518, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/avia-bloodbourn/front.svg",
  27765. extra: 1466 / 1350,
  27766. bottom: 65 / 1527
  27767. }
  27768. },
  27769. },
  27770. [
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27775. {
  27776. front: {
  27777. height: math.unit(9.35, "feet"),
  27778. weight: math.unit(600, "lb"),
  27779. name: "Front",
  27780. image: {
  27781. source: "./media/characters/amera/front.svg",
  27782. extra: 891 / 818,
  27783. bottom: 30 / 922.7
  27784. }
  27785. },
  27786. back: {
  27787. height: math.unit(9.35, "feet"),
  27788. weight: math.unit(600, "lb"),
  27789. name: "Back",
  27790. image: {
  27791. source: "./media/characters/amera/back.svg",
  27792. extra: 876 / 824,
  27793. bottom: 6.8 / 884
  27794. }
  27795. },
  27796. dick: {
  27797. height: math.unit(2.14, "feet"),
  27798. name: "Dick",
  27799. image: {
  27800. source: "./media/characters/amera/dick.svg"
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(9.35, "feet"),
  27808. default: true
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27814. {
  27815. kneeling: {
  27816. height: math.unit(3 + 4 / 12, "feet"),
  27817. weight: math.unit(90, "lb"),
  27818. name: "Kneeling",
  27819. image: {
  27820. source: "./media/characters/rosewen/kneeling.svg",
  27821. extra: 1835 / 1571,
  27822. bottom: 27.7 / 1862
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(3 + 4 / 12, "feet"),
  27830. default: true
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(5 + 10 / 12, "feet"),
  27839. weight: math.unit(200, "lb"),
  27840. name: "Front",
  27841. image: {
  27842. source: "./media/characters/sabah/front.svg",
  27843. extra: 849 / 763,
  27844. bottom: 33.9 / 881
  27845. }
  27846. },
  27847. },
  27848. [
  27849. {
  27850. name: "Normal",
  27851. height: math.unit(5 + 10 / 12, "feet"),
  27852. default: true
  27853. },
  27854. ]
  27855. ))
  27856. characterMakers.push(() => makeCharacter(
  27857. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27858. {
  27859. front: {
  27860. height: math.unit(3 + 5 / 12, "feet"),
  27861. weight: math.unit(40, "kg"),
  27862. name: "Front",
  27863. image: {
  27864. source: "./media/characters/purple-flame/front.svg",
  27865. extra: 1577 / 1412,
  27866. bottom: 97 / 1694
  27867. }
  27868. },
  27869. frontDressed: {
  27870. height: math.unit(3 + 5 / 12, "feet"),
  27871. weight: math.unit(40, "kg"),
  27872. name: "Front (Dressed)",
  27873. image: {
  27874. source: "./media/characters/purple-flame/front-dressed.svg",
  27875. extra: 1577 / 1412,
  27876. bottom: 97 / 1694
  27877. }
  27878. },
  27879. headphones: {
  27880. height: math.unit(0.85, "feet"),
  27881. name: "Headphones",
  27882. image: {
  27883. source: "./media/characters/purple-flame/headphones.svg"
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Really Small",
  27890. height: math.unit(5, "cm")
  27891. },
  27892. {
  27893. name: "Micro",
  27894. height: math.unit(1 + 5 / 12, "feet")
  27895. },
  27896. {
  27897. name: "Normal",
  27898. height: math.unit(3 + 5 / 12, "feet"),
  27899. default: true
  27900. },
  27901. {
  27902. name: "Minimacro",
  27903. height: math.unit(125, "feet")
  27904. },
  27905. {
  27906. name: "Macro",
  27907. height: math.unit(0.5, "miles")
  27908. },
  27909. {
  27910. name: "Megamacro",
  27911. height: math.unit(50, "miles")
  27912. },
  27913. {
  27914. name: "Gigantic",
  27915. height: math.unit(750, "miles")
  27916. },
  27917. {
  27918. name: "Planetary",
  27919. height: math.unit(15000, "miles")
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27925. {
  27926. front: {
  27927. height: math.unit(14, "feet"),
  27928. weight: math.unit(959, "lb"),
  27929. name: "Front",
  27930. image: {
  27931. source: "./media/characters/arsenal/front.svg",
  27932. extra: 2357 / 2157,
  27933. bottom: 93 / 2458
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(14, "feet"),
  27941. default: true
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(6, "feet"),
  27950. weight: math.unit(150, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/adira/front.svg",
  27954. extra: 1078 / 1029,
  27955. bottom: 87 / 1166
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Micro",
  27962. height: math.unit(4, "inches"),
  27963. default: true
  27964. },
  27965. {
  27966. name: "Macro",
  27967. height: math.unit(50, "feet")
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(16, "feet"),
  27976. weight: math.unit(1000, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/grim/front.svg",
  27980. extra: 622 / 614,
  27981. bottom: 18.1 / 642
  27982. }
  27983. },
  27984. back: {
  27985. height: math.unit(16, "feet"),
  27986. weight: math.unit(1000, "lb"),
  27987. name: "Back",
  27988. image: {
  27989. source: "./media/characters/grim/back.svg",
  27990. extra: 610.6 / 602,
  27991. bottom: 40.8 / 652
  27992. }
  27993. },
  27994. hunched: {
  27995. height: math.unit(9.75, "feet"),
  27996. weight: math.unit(1000, "lb"),
  27997. name: "Hunched",
  27998. image: {
  27999. source: "./media/characters/grim/hunched.svg",
  28000. extra: 304 / 297,
  28001. bottom: 35.4 / 394
  28002. }
  28003. },
  28004. },
  28005. [
  28006. {
  28007. name: "Normal",
  28008. height: math.unit(16, "feet"),
  28009. default: true
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(2.3, "meters"),
  28018. weight: math.unit(300, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/sinja/front-sfw.svg",
  28022. extra: 1393 / 1294,
  28023. bottom: 70 / 1463
  28024. }
  28025. },
  28026. frontNsfw: {
  28027. height: math.unit(2.3, "meters"),
  28028. weight: math.unit(300, "lb"),
  28029. name: "Front (NSFW)",
  28030. image: {
  28031. source: "./media/characters/sinja/front-nsfw.svg",
  28032. extra: 1393 / 1294,
  28033. bottom: 70 / 1463
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(2.3, "meters"),
  28038. weight: math.unit(300, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/sinja/back.svg",
  28042. extra: 1393 / 1294,
  28043. bottom: 70 / 1463
  28044. }
  28045. },
  28046. head: {
  28047. height: math.unit(1.771, "feet"),
  28048. name: "Head",
  28049. image: {
  28050. source: "./media/characters/sinja/head.svg"
  28051. }
  28052. },
  28053. slit: {
  28054. height: math.unit(0.8, "feet"),
  28055. name: "Slit",
  28056. image: {
  28057. source: "./media/characters/sinja/slit.svg"
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(2.3, "meters")
  28065. },
  28066. {
  28067. name: "Macro",
  28068. height: math.unit(91, "meters"),
  28069. default: true
  28070. },
  28071. {
  28072. name: "Megamacro",
  28073. height: math.unit(91440, "meters")
  28074. },
  28075. {
  28076. name: "Gigamacro",
  28077. height: math.unit(60960000, "meters")
  28078. },
  28079. {
  28080. name: "Teramacro",
  28081. height: math.unit(9144000000, "meters")
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(1.7, "meters"),
  28090. weight: math.unit(130, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/kyu/front.svg",
  28094. extra: 415 / 395,
  28095. bottom: 5 / 420
  28096. }
  28097. },
  28098. head: {
  28099. height: math.unit(1.75, "feet"),
  28100. name: "Head",
  28101. image: {
  28102. source: "./media/characters/kyu/head.svg"
  28103. }
  28104. },
  28105. foot: {
  28106. height: math.unit(0.81, "feet"),
  28107. name: "Foot",
  28108. image: {
  28109. source: "./media/characters/kyu/foot.svg"
  28110. }
  28111. },
  28112. },
  28113. [
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(1.7, "meters")
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(131, "feet"),
  28121. default: true
  28122. },
  28123. {
  28124. name: "Megamacro",
  28125. height: math.unit(91440, "meters")
  28126. },
  28127. {
  28128. name: "Gigamacro",
  28129. height: math.unit(60960000, "meters")
  28130. },
  28131. {
  28132. name: "Teramacro",
  28133. height: math.unit(9144000000, "meters")
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(7 + 1 / 12, "feet"),
  28142. weight: math.unit(250, "lb"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/joey/front.svg",
  28146. extra: 1791 / 1537,
  28147. bottom: 28 / 1816
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Micro",
  28154. height: math.unit(3, "inches")
  28155. },
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(7 + 1 / 12, "feet"),
  28159. default: true
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(165, "cm"),
  28168. weight: math.unit(140, "lb"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/sam-evans/front.svg",
  28172. extra: 3417 / 3230,
  28173. bottom: 41.3 / 3417
  28174. }
  28175. },
  28176. frontSixTails: {
  28177. height: math.unit(165, "cm"),
  28178. weight: math.unit(140, "lb"),
  28179. name: "Front-six-tails",
  28180. image: {
  28181. source: "./media/characters/sam-evans/front-six-tails.svg",
  28182. extra: 3417 / 3230,
  28183. bottom: 41.3 / 3417
  28184. }
  28185. },
  28186. back: {
  28187. height: math.unit(165, "cm"),
  28188. weight: math.unit(140, "lb"),
  28189. name: "Back",
  28190. image: {
  28191. source: "./media/characters/sam-evans/back.svg",
  28192. extra: 3227 / 3032,
  28193. bottom: 6.8 / 3234
  28194. }
  28195. },
  28196. face: {
  28197. height: math.unit(0.68, "feet"),
  28198. name: "Face",
  28199. image: {
  28200. source: "./media/characters/sam-evans/face.svg"
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(165, "cm"),
  28208. default: true
  28209. },
  28210. {
  28211. name: "Macro",
  28212. height: math.unit(100, "meters")
  28213. },
  28214. {
  28215. name: "Macro+",
  28216. height: math.unit(800, "meters")
  28217. },
  28218. {
  28219. name: "Macro++",
  28220. height: math.unit(3, "km")
  28221. },
  28222. {
  28223. name: "Macro+++",
  28224. height: math.unit(30, "km")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(10, "feet"),
  28233. weight: math.unit(750, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/juliet-a/front.svg",
  28237. extra: 1766 / 1720,
  28238. bottom: 43 / 1809
  28239. }
  28240. },
  28241. back: {
  28242. height: math.unit(10, "feet"),
  28243. weight: math.unit(750, "lb"),
  28244. name: "Back",
  28245. image: {
  28246. source: "./media/characters/juliet-a/back.svg",
  28247. extra: 1781 / 1734,
  28248. bottom: 35 / 1810,
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(10, "feet"),
  28256. default: true
  28257. },
  28258. {
  28259. name: "Dragon Form",
  28260. height: math.unit(250, "feet")
  28261. },
  28262. {
  28263. name: "Macro",
  28264. height: math.unit(1000, "feet")
  28265. },
  28266. {
  28267. name: "Megamacro",
  28268. height: math.unit(10000, "feet")
  28269. }
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28274. {
  28275. regular: {
  28276. height: math.unit(7 + 3 / 12, "feet"),
  28277. weight: math.unit(260, "lb"),
  28278. name: "Regular",
  28279. image: {
  28280. source: "./media/characters/wild/regular.svg",
  28281. extra: 97.45 / 92,
  28282. bottom: 6.8 / 104.3
  28283. }
  28284. },
  28285. biggums: {
  28286. height: math.unit(8 + 6 / 12, "feet"),
  28287. weight: math.unit(425, "lb"),
  28288. name: "Biggums",
  28289. image: {
  28290. source: "./media/characters/wild/biggums.svg",
  28291. extra: 97.45 / 92,
  28292. bottom: 7.5 / 132.34
  28293. }
  28294. },
  28295. mawRegular: {
  28296. height: math.unit(1.24, "feet"),
  28297. name: "Maw (Regular)",
  28298. image: {
  28299. source: "./media/characters/wild/maw.svg"
  28300. }
  28301. },
  28302. mawBiggums: {
  28303. height: math.unit(1.47, "feet"),
  28304. name: "Maw (Biggums)",
  28305. image: {
  28306. source: "./media/characters/wild/maw.svg"
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Normal",
  28313. height: math.unit(7 + 3 / 12, "feet"),
  28314. default: true
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28320. {
  28321. front: {
  28322. height: math.unit(2.5, "meters"),
  28323. weight: math.unit(200, "kg"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/vidar/front.svg",
  28327. extra: 2994 / 2795,
  28328. bottom: 56 / 3061
  28329. }
  28330. },
  28331. back: {
  28332. height: math.unit(2.5, "meters"),
  28333. weight: math.unit(200, "kg"),
  28334. name: "Back",
  28335. image: {
  28336. source: "./media/characters/vidar/back.svg",
  28337. extra: 3131 / 2928,
  28338. bottom: 13.5 / 3141.5
  28339. }
  28340. },
  28341. feral: {
  28342. height: math.unit(2.5, "meters"),
  28343. weight: math.unit(2000, "kg"),
  28344. name: "Feral",
  28345. image: {
  28346. source: "./media/characters/vidar/feral.svg",
  28347. extra: 2790 / 1765,
  28348. bottom: 6 / 2796
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(2.5, "meters"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Macro",
  28360. height: math.unit(100, "meters")
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(5 + 9 / 12, "feet"),
  28369. weight: math.unit(120, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/ash/front.svg",
  28373. extra: 2189 / 1961,
  28374. bottom: 5.2 / 2194
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(5 + 9 / 12, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(9, "feet"),
  28391. weight: math.unit(10000, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/gygabite/front.svg",
  28395. bottom: 31.7 / 537.8,
  28396. extra: 505 / 370
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(9, "feet"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(12, "feet"),
  28413. weight: math.unit(35000, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/p0tat0/front.svg",
  28417. extra: 1065 / 921,
  28418. bottom: 55.7 / 1121.25
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(12, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28432. {
  28433. side: {
  28434. height: math.unit(6.5, "feet"),
  28435. weight: math.unit(800, "lb"),
  28436. name: "Side",
  28437. image: {
  28438. source: "./media/characters/dusk/side.svg",
  28439. extra: 615 / 373,
  28440. bottom: 53 / 664
  28441. }
  28442. },
  28443. sitting: {
  28444. height: math.unit(7, "feet"),
  28445. weight: math.unit(800, "lb"),
  28446. name: "Sitting",
  28447. image: {
  28448. source: "./media/characters/dusk/sitting.svg",
  28449. extra: 753 / 425,
  28450. bottom: 33 / 774
  28451. }
  28452. },
  28453. head: {
  28454. height: math.unit(6.1, "feet"),
  28455. name: "Head",
  28456. image: {
  28457. source: "./media/characters/dusk/head.svg"
  28458. }
  28459. },
  28460. },
  28461. [
  28462. {
  28463. name: "Normal",
  28464. height: math.unit(7, "feet"),
  28465. default: true
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28471. {
  28472. front: {
  28473. height: math.unit(15, "feet"),
  28474. weight: math.unit(7000, "lb"),
  28475. name: "Front",
  28476. image: {
  28477. source: "./media/characters/jay-direwolf/front.svg",
  28478. extra: 1810 / 1732,
  28479. bottom: 66 / 1892
  28480. }
  28481. },
  28482. },
  28483. [
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(15, "feet"),
  28487. default: true
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(4 + 9 / 12, "feet"),
  28496. weight: math.unit(130, "lb"),
  28497. name: "Front",
  28498. image: {
  28499. source: "./media/characters/anchovie/front.svg",
  28500. extra: 382 / 350,
  28501. bottom: 25 / 409
  28502. }
  28503. },
  28504. back: {
  28505. height: math.unit(4 + 9 / 12, "feet"),
  28506. weight: math.unit(130, "lb"),
  28507. name: "Back",
  28508. image: {
  28509. source: "./media/characters/anchovie/back.svg",
  28510. extra: 385 / 352,
  28511. bottom: 16.6 / 402
  28512. }
  28513. },
  28514. frontDressed: {
  28515. height: math.unit(4 + 9 / 12, "feet"),
  28516. weight: math.unit(130, "lb"),
  28517. name: "Front (Dressed)",
  28518. image: {
  28519. source: "./media/characters/anchovie/front-dressed.svg",
  28520. extra: 382 / 350,
  28521. bottom: 25 / 409
  28522. }
  28523. },
  28524. backDressed: {
  28525. height: math.unit(4 + 9 / 12, "feet"),
  28526. weight: math.unit(130, "lb"),
  28527. name: "Back (Dressed)",
  28528. image: {
  28529. source: "./media/characters/anchovie/back-dressed.svg",
  28530. extra: 385 / 352,
  28531. bottom: 16.6 / 402
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Micro",
  28538. height: math.unit(6.4, "inches")
  28539. },
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(4 + 9 / 12, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(2, "meters"),
  28552. weight: math.unit(180, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/acidrenamon/front.svg",
  28556. extra: 987 / 890,
  28557. bottom: 22.8 / 1009
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(2, "meters"),
  28562. weight: math.unit(180, "lb"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/acidrenamon/back.svg",
  28566. extra: 983 / 891,
  28567. bottom: 8.4 / 992
  28568. }
  28569. },
  28570. head: {
  28571. height: math.unit(1.92, "feet"),
  28572. name: "Head",
  28573. image: {
  28574. source: "./media/characters/acidrenamon/head.svg"
  28575. }
  28576. },
  28577. rump: {
  28578. height: math.unit(1.72, "feet"),
  28579. name: "Rump",
  28580. image: {
  28581. source: "./media/characters/acidrenamon/rump.svg"
  28582. }
  28583. },
  28584. tail: {
  28585. height: math.unit(4.2, "feet"),
  28586. name: "Tail",
  28587. image: {
  28588. source: "./media/characters/acidrenamon/tail.svg"
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(2, "meters"),
  28596. default: true
  28597. },
  28598. {
  28599. name: "Minimacro",
  28600. height: math.unit(7, "meters")
  28601. },
  28602. {
  28603. name: "Macro",
  28604. height: math.unit(200, "meters")
  28605. },
  28606. {
  28607. name: "Gigamacro",
  28608. height: math.unit(0.2, "earths")
  28609. },
  28610. ]
  28611. ))
  28612. characterMakers.push(() => makeCharacter(
  28613. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28614. {
  28615. front: {
  28616. height: math.unit(152, "feet"),
  28617. name: "Front",
  28618. image: {
  28619. source: "./media/characters/kenzie-lee/front.svg",
  28620. extra: 1869/1774,
  28621. bottom: 128/1997
  28622. }
  28623. },
  28624. side: {
  28625. height: math.unit(86, "feet"),
  28626. name: "Side",
  28627. image: {
  28628. source: "./media/characters/kenzie-lee/side.svg",
  28629. extra: 930/815,
  28630. bottom: 177/1107
  28631. }
  28632. },
  28633. paw: {
  28634. height: math.unit(15, "feet"),
  28635. name: "Paw",
  28636. image: {
  28637. source: "./media/characters/kenzie-lee/paw.svg"
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Kenzie Flea",
  28644. height: math.unit(2, "mm"),
  28645. default: true
  28646. },
  28647. {
  28648. name: "Micro",
  28649. height: math.unit(2, "inches")
  28650. },
  28651. {
  28652. name: "Normal",
  28653. height: math.unit(152, "feet")
  28654. },
  28655. {
  28656. name: "Megamacro",
  28657. height: math.unit(7, "miles")
  28658. },
  28659. {
  28660. name: "Gigamacro",
  28661. height: math.unit(8000, "miles")
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(6, "feet"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/withers/front.svg",
  28673. extra: 1935/1760,
  28674. bottom: 72/2007
  28675. }
  28676. },
  28677. back: {
  28678. height: math.unit(6, "feet"),
  28679. name: "Back",
  28680. image: {
  28681. source: "./media/characters/withers/back.svg",
  28682. extra: 1944/1792,
  28683. bottom: 12/1956
  28684. }
  28685. },
  28686. dressed: {
  28687. height: math.unit(6, "feet"),
  28688. name: "Dressed",
  28689. image: {
  28690. source: "./media/characters/withers/dressed.svg",
  28691. extra: 1937/1765,
  28692. bottom: 73/2010
  28693. }
  28694. },
  28695. phase1: {
  28696. height: math.unit(1.1, "feet"),
  28697. name: "Phase 1",
  28698. image: {
  28699. source: "./media/characters/withers/phase-1.svg",
  28700. extra: 1885/1232,
  28701. bottom: 0/1885
  28702. }
  28703. },
  28704. phase2: {
  28705. height: math.unit(1.05, "feet"),
  28706. name: "Phase 2",
  28707. image: {
  28708. source: "./media/characters/withers/phase-2.svg",
  28709. extra: 1792/1090,
  28710. bottom: 0/1792
  28711. }
  28712. },
  28713. partyWipe: {
  28714. height: math.unit(1.1, "feet"),
  28715. name: "Party Wipe",
  28716. image: {
  28717. source: "./media/characters/withers/party-wipe.svg",
  28718. extra: 1864/1207,
  28719. bottom: 0/1864
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Macro",
  28726. height: math.unit(167, "feet"),
  28727. default: true
  28728. },
  28729. {
  28730. name: "Megamacro",
  28731. height: math.unit(15, "miles")
  28732. }
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(6 + 7 / 12, "feet"),
  28740. weight: math.unit(250, "lb"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/nemoskii/front.svg",
  28744. extra: 2270 / 1734,
  28745. bottom: 86 / 2354
  28746. }
  28747. },
  28748. back: {
  28749. height: math.unit(6 + 7 / 12, "feet"),
  28750. weight: math.unit(250, "lb"),
  28751. name: "Back",
  28752. image: {
  28753. source: "./media/characters/nemoskii/back.svg",
  28754. extra: 1845 / 1788,
  28755. bottom: 10.5 / 1852
  28756. }
  28757. },
  28758. head: {
  28759. height: math.unit(1.31, "feet"),
  28760. name: "Head",
  28761. image: {
  28762. source: "./media/characters/nemoskii/head.svg"
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Micro",
  28769. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28770. },
  28771. {
  28772. name: "Normal",
  28773. height: math.unit(6 + 7 / 12, "feet"),
  28774. default: true
  28775. },
  28776. {
  28777. name: "Macro",
  28778. height: math.unit((6 + 7 / 12) * 150, "feet")
  28779. },
  28780. {
  28781. name: "Macro+",
  28782. height: math.unit((6 + 7 / 12) * 500, "feet")
  28783. },
  28784. {
  28785. name: "Megamacro",
  28786. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(1, "mile"),
  28795. weight: math.unit(265261.9, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/shui/front.svg",
  28799. extra: 1633 / 1564,
  28800. bottom: 91.5 / 1726
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Macro",
  28807. height: math.unit(1, "mile"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(12 + 6 / 12, "feet"),
  28817. weight: math.unit(1342, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/arokh-takakura/front.svg",
  28821. extra: 1089 / 1043,
  28822. bottom: 77.4 / 1176.7
  28823. }
  28824. },
  28825. back: {
  28826. height: math.unit(12 + 6 / 12, "feet"),
  28827. weight: math.unit(1342, "lb"),
  28828. name: "Back",
  28829. image: {
  28830. source: "./media/characters/arokh-takakura/back.svg",
  28831. extra: 1046 / 1019,
  28832. bottom: 102 / 1150
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Big",
  28839. height: math.unit(12 + 6 / 12, "feet"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(5 + 6 / 12, "feet"),
  28849. weight: math.unit(150, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/theo/front.svg",
  28853. extra: 1184 / 1131,
  28854. bottom: 7.4 / 1191
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Micro",
  28861. height: math.unit(5, "inches")
  28862. },
  28863. {
  28864. name: "Normal",
  28865. height: math.unit(5 + 6 / 12, "feet"),
  28866. default: true
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28872. {
  28873. front: {
  28874. height: math.unit(5 + 9 / 12, "feet"),
  28875. weight: math.unit(130, "lb"),
  28876. name: "Front",
  28877. image: {
  28878. source: "./media/characters/cecelia-swift/front.svg",
  28879. extra: 502 / 484,
  28880. bottom: 23 / 523
  28881. }
  28882. },
  28883. back: {
  28884. height: math.unit(5 + 9 / 12, "feet"),
  28885. weight: math.unit(130, "lb"),
  28886. name: "Back",
  28887. image: {
  28888. source: "./media/characters/cecelia-swift/back.svg",
  28889. extra: 499 / 485,
  28890. bottom: 12 / 511
  28891. }
  28892. },
  28893. head: {
  28894. height: math.unit(0.90, "feet"),
  28895. name: "Head",
  28896. image: {
  28897. source: "./media/characters/cecelia-swift/head.svg"
  28898. }
  28899. },
  28900. rump: {
  28901. height: math.unit(1.75, "feet"),
  28902. name: "Rump",
  28903. image: {
  28904. source: "./media/characters/cecelia-swift/rump.svg"
  28905. }
  28906. },
  28907. },
  28908. [
  28909. {
  28910. name: "Normal",
  28911. height: math.unit(5 + 9 / 12, "feet"),
  28912. default: true
  28913. },
  28914. {
  28915. name: "Big",
  28916. height: math.unit(50, "feet")
  28917. },
  28918. {
  28919. name: "Macro",
  28920. height: math.unit(100, "feet")
  28921. },
  28922. {
  28923. name: "Macro+",
  28924. height: math.unit(500, "feet")
  28925. },
  28926. {
  28927. name: "Macro++",
  28928. height: math.unit(1000, "feet")
  28929. },
  28930. ]
  28931. ))
  28932. characterMakers.push(() => makeCharacter(
  28933. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28934. {
  28935. front: {
  28936. height: math.unit(6, "feet"),
  28937. weight: math.unit(150, "lb"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/kaunan/front.svg",
  28941. extra: 2890 / 2523,
  28942. bottom: 49 / 2939
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Macro",
  28949. height: math.unit(150, "feet"),
  28950. default: true
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(175, "cm"),
  28959. weight: math.unit(60, "kg"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/fei/front.svg",
  28963. extra: 1873/1723,
  28964. bottom: 53/1926
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Mortal",
  28971. height: math.unit(175, "cm")
  28972. },
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(3500, "m"),
  28976. default: true
  28977. },
  28978. {
  28979. name: "Stroll",
  28980. height: math.unit(17.5, "km")
  28981. },
  28982. {
  28983. name: "Showoff",
  28984. height: math.unit(175, "km")
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(7, "feet"),
  28993. weight: math.unit(1000, "kg"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/edrax/front.svg",
  28997. extra: 2838 / 2550,
  28998. bottom: 130 / 2968
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Small",
  29005. height: math.unit(7, "feet")
  29006. },
  29007. {
  29008. name: "Normal",
  29009. height: math.unit(1500, "meters")
  29010. },
  29011. {
  29012. name: "Mega",
  29013. height: math.unit(12000000, "km"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Megamacro",
  29018. height: math.unit(10600000, "lightyears")
  29019. },
  29020. {
  29021. name: "Hypermacro",
  29022. height: math.unit(256, "yottameters")
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(10, "feet"),
  29031. weight: math.unit(750, "lb"),
  29032. name: "Front",
  29033. image: {
  29034. source: "./media/characters/clove/front.svg",
  29035. extra: 1918/1751,
  29036. bottom: 52/1970
  29037. }
  29038. },
  29039. back: {
  29040. height: math.unit(10, "feet"),
  29041. weight: math.unit(750, "lb"),
  29042. name: "Back",
  29043. image: {
  29044. source: "./media/characters/clove/back.svg",
  29045. extra: 1912/1747,
  29046. bottom: 50/1962
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(10, "feet"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(4, "feet"),
  29063. weight: math.unit(50, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/alex-rabbit/front.svg",
  29067. extra: 507 / 458,
  29068. bottom: 18.5 / 527
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(4, "feet"),
  29073. weight: math.unit(50, "lb"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/alex-rabbit/back.svg",
  29077. extra: 502 / 460,
  29078. bottom: 18.9 / 521
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(4, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(1 + 3 / 12, "feet"),
  29095. weight: math.unit(80, "lb"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/zander-rose/front.svg",
  29099. extra: 916 / 797,
  29100. bottom: 17 / 933
  29101. }
  29102. },
  29103. back: {
  29104. height: math.unit(1 + 3 / 12, "feet"),
  29105. weight: math.unit(80, "lb"),
  29106. name: "Back",
  29107. image: {
  29108. source: "./media/characters/zander-rose/back.svg",
  29109. extra: 903 / 779,
  29110. bottom: 31 / 934
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(1 + 3 / 12, "feet"),
  29118. default: true
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29124. {
  29125. anthro: {
  29126. height: math.unit(6, "feet"),
  29127. weight: math.unit(150, "lb"),
  29128. name: "Anthro",
  29129. image: {
  29130. source: "./media/characters/razz/anthro.svg",
  29131. extra: 1437 / 1343,
  29132. bottom: 48 / 1485
  29133. }
  29134. },
  29135. feral: {
  29136. height: math.unit(6, "feet"),
  29137. weight: math.unit(150, "lb"),
  29138. name: "Feral",
  29139. image: {
  29140. source: "./media/characters/razz/feral.svg",
  29141. extra: 2569 / 1385,
  29142. bottom: 95 / 2664
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(6, "feet"),
  29150. default: true
  29151. },
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29156. {
  29157. front: {
  29158. height: math.unit(9 + 4 / 12, "feet"),
  29159. weight: math.unit(500, "lb"),
  29160. name: "Front",
  29161. image: {
  29162. source: "./media/characters/morrigan/front.svg",
  29163. extra: 2707 / 2579,
  29164. bottom: 156 / 2863
  29165. }
  29166. },
  29167. },
  29168. [
  29169. {
  29170. name: "Normal",
  29171. height: math.unit(9 + 4 / 12, "feet"),
  29172. default: true
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29178. {
  29179. front: {
  29180. height: math.unit(5, "stories"),
  29181. weight: math.unit(4000, "lb"),
  29182. name: "Front",
  29183. image: {
  29184. source: "./media/characters/jenene/front.svg",
  29185. extra: 1780 / 1710,
  29186. bottom: 57 / 1837
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Normal",
  29193. height: math.unit(5, "stories"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29200. {
  29201. taurSfw: {
  29202. height: math.unit(10, "meters"),
  29203. weight: math.unit(17500, "kg"),
  29204. name: "Taur",
  29205. image: {
  29206. source: "./media/characters/faey/taur-sfw.svg",
  29207. extra: 1200 / 968,
  29208. bottom: 41 / 1241
  29209. }
  29210. },
  29211. chestmaw: {
  29212. height: math.unit(2.01, "meters"),
  29213. name: "Chestmaw",
  29214. image: {
  29215. source: "./media/characters/faey/chestmaw.svg"
  29216. }
  29217. },
  29218. foot: {
  29219. height: math.unit(2.43, "meters"),
  29220. name: "Foot",
  29221. image: {
  29222. source: "./media/characters/faey/foot.svg"
  29223. }
  29224. },
  29225. jaws: {
  29226. height: math.unit(1.66, "meters"),
  29227. name: "Jaws",
  29228. image: {
  29229. source: "./media/characters/faey/jaws.svg"
  29230. }
  29231. },
  29232. tongues: {
  29233. height: math.unit(2.01, "meters"),
  29234. name: "Tongues",
  29235. image: {
  29236. source: "./media/characters/faey/tongues.svg"
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Small",
  29243. height: math.unit(10, "meters"),
  29244. default: true
  29245. },
  29246. {
  29247. name: "Big",
  29248. height: math.unit(500000, "km")
  29249. },
  29250. ]
  29251. ))
  29252. characterMakers.push(() => makeCharacter(
  29253. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29254. {
  29255. front: {
  29256. height: math.unit(7, "feet"),
  29257. weight: math.unit(275, "lb"),
  29258. name: "Front",
  29259. image: {
  29260. source: "./media/characters/roku/front.svg",
  29261. extra: 903 / 878,
  29262. bottom: 37 / 940
  29263. }
  29264. },
  29265. },
  29266. [
  29267. {
  29268. name: "Normal",
  29269. height: math.unit(7, "feet"),
  29270. default: true
  29271. },
  29272. {
  29273. name: "Macro",
  29274. height: math.unit(500, "feet")
  29275. },
  29276. {
  29277. name: "Megamacro",
  29278. height: math.unit(200, "miles")
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29284. {
  29285. front: {
  29286. height: math.unit(6 + 2 / 12, "feet"),
  29287. weight: math.unit(150, "lb"),
  29288. name: "Front",
  29289. image: {
  29290. source: "./media/characters/lira/front.svg",
  29291. extra: 1727 / 1605,
  29292. bottom: 26 / 1753
  29293. }
  29294. },
  29295. back: {
  29296. height: math.unit(6 + 2 / 12, "feet"),
  29297. weight: math.unit(150, "lb"),
  29298. name: "Back",
  29299. image: {
  29300. source: "./media/characters/lira/back.svg",
  29301. extra: 1713/1621,
  29302. bottom: 20/1733
  29303. }
  29304. },
  29305. hand: {
  29306. height: math.unit(0.75, "feet"),
  29307. name: "Hand",
  29308. image: {
  29309. source: "./media/characters/lira/hand.svg"
  29310. }
  29311. },
  29312. maw: {
  29313. height: math.unit(0.65, "feet"),
  29314. name: "Maw",
  29315. image: {
  29316. source: "./media/characters/lira/maw.svg"
  29317. }
  29318. },
  29319. pawDigi: {
  29320. height: math.unit(1.6, "feet"),
  29321. name: "Paw Digi",
  29322. image: {
  29323. source: "./media/characters/lira/paw-digi.svg"
  29324. }
  29325. },
  29326. pawPlanti: {
  29327. height: math.unit(1.4, "feet"),
  29328. name: "Paw Planti",
  29329. image: {
  29330. source: "./media/characters/lira/paw-planti.svg"
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Normal",
  29337. height: math.unit(6 + 2 / 12, "feet"),
  29338. default: true
  29339. },
  29340. {
  29341. name: "Macro",
  29342. height: math.unit(100, "feet")
  29343. },
  29344. {
  29345. name: "Macro²",
  29346. height: math.unit(1600, "feet")
  29347. },
  29348. {
  29349. name: "Planetary",
  29350. height: math.unit(20, "earths")
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(6, "feet"),
  29359. weight: math.unit(150, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/hadjet/front.svg",
  29363. extra: 1480 / 1346,
  29364. bottom: 26 / 1506
  29365. }
  29366. },
  29367. frontNsfw: {
  29368. height: math.unit(6, "feet"),
  29369. weight: math.unit(150, "lb"),
  29370. name: "Front (NSFW)",
  29371. image: {
  29372. source: "./media/characters/hadjet/front-nsfw.svg",
  29373. extra: 1440 / 1358,
  29374. bottom: 52 / 1492
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Macro",
  29381. height: math.unit(10, "stories"),
  29382. default: true
  29383. },
  29384. {
  29385. name: "Megamacro",
  29386. height: math.unit(1.5, "miles")
  29387. },
  29388. {
  29389. name: "Megamacro+",
  29390. height: math.unit(5, "miles")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29396. {
  29397. side: {
  29398. height: math.unit(106, "feet"),
  29399. weight: math.unit(500, "tonnes"),
  29400. name: "Side",
  29401. image: {
  29402. source: "./media/characters/kodran/side.svg",
  29403. extra: 553 / 480,
  29404. bottom: 33 / 586
  29405. }
  29406. },
  29407. front: {
  29408. height: math.unit(132, "feet"),
  29409. weight: math.unit(500, "tonnes"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/kodran/front.svg",
  29413. extra: 667 / 643,
  29414. bottom: 42 / 709
  29415. }
  29416. },
  29417. flying: {
  29418. height: math.unit(350, "feet"),
  29419. weight: math.unit(500, "tonnes"),
  29420. name: "Flying",
  29421. image: {
  29422. source: "./media/characters/kodran/flying.svg"
  29423. }
  29424. },
  29425. foot: {
  29426. height: math.unit(33, "feet"),
  29427. name: "Foot",
  29428. image: {
  29429. source: "./media/characters/kodran/foot.svg"
  29430. }
  29431. },
  29432. footFront: {
  29433. height: math.unit(19, "feet"),
  29434. name: "Foot (Front)",
  29435. image: {
  29436. source: "./media/characters/kodran/foot-front.svg",
  29437. extra: 261 / 261,
  29438. bottom: 91 / 352
  29439. }
  29440. },
  29441. headFront: {
  29442. height: math.unit(53, "feet"),
  29443. name: "Head (Front)",
  29444. image: {
  29445. source: "./media/characters/kodran/head-front.svg"
  29446. }
  29447. },
  29448. headSide: {
  29449. height: math.unit(65, "feet"),
  29450. name: "Head (Side)",
  29451. image: {
  29452. source: "./media/characters/kodran/head-side.svg"
  29453. }
  29454. },
  29455. throat: {
  29456. height: math.unit(79, "feet"),
  29457. name: "Throat",
  29458. image: {
  29459. source: "./media/characters/kodran/throat.svg"
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Large",
  29466. height: math.unit(106, "feet"),
  29467. default: true
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29473. {
  29474. side: {
  29475. height: math.unit(11, "feet"),
  29476. weight: math.unit(150, "lb"),
  29477. name: "Side",
  29478. image: {
  29479. source: "./media/characters/pyxaron/side.svg",
  29480. extra: 305 / 195,
  29481. bottom: 17 / 322
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(11, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(6, "feet"),
  29498. weight: math.unit(150, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/meep/front.svg",
  29502. extra: 88 / 80,
  29503. bottom: 6 / 94
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Fun Sized",
  29510. height: math.unit(2, "inches"),
  29511. default: true
  29512. },
  29513. {
  29514. name: "Friend Sized",
  29515. height: math.unit(8, "inches")
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(15, "feet"),
  29524. weight: math.unit(2500, "lb"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/holly-rabbit/front.svg",
  29528. extra: 1433 / 1233,
  29529. bottom: 125 / 1558
  29530. }
  29531. },
  29532. dick: {
  29533. height: math.unit(4.6, "feet"),
  29534. name: "Dick",
  29535. image: {
  29536. source: "./media/characters/holly-rabbit/dick.svg"
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(15, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(250, "feet")
  29549. },
  29550. {
  29551. name: "Macro+",
  29552. height: math.unit(2500, "feet")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(3.02, "meters"),
  29561. weight: math.unit(500, "kg"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/drena/front.svg",
  29565. extra: 282 / 243,
  29566. bottom: 8 / 290
  29567. }
  29568. },
  29569. side: {
  29570. height: math.unit(3.02, "meters"),
  29571. weight: math.unit(500, "kg"),
  29572. name: "Side",
  29573. image: {
  29574. source: "./media/characters/drena/side.svg",
  29575. extra: 280 / 245,
  29576. bottom: 10 / 290
  29577. }
  29578. },
  29579. back: {
  29580. height: math.unit(3.02, "meters"),
  29581. weight: math.unit(500, "kg"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/drena/back.svg",
  29585. extra: 278 / 243,
  29586. bottom: 2 / 280
  29587. }
  29588. },
  29589. foot: {
  29590. height: math.unit(0.75, "meters"),
  29591. name: "Foot",
  29592. image: {
  29593. source: "./media/characters/drena/foot.svg"
  29594. }
  29595. },
  29596. maw: {
  29597. height: math.unit(0.82, "meters"),
  29598. name: "Maw",
  29599. image: {
  29600. source: "./media/characters/drena/maw.svg"
  29601. }
  29602. },
  29603. eating: {
  29604. height: math.unit(0.75, "meters"),
  29605. name: "Eating",
  29606. image: {
  29607. source: "./media/characters/drena/eating.svg"
  29608. }
  29609. },
  29610. rump: {
  29611. height: math.unit(0.93, "meters"),
  29612. name: "Rump",
  29613. image: {
  29614. source: "./media/characters/drena/rump.svg"
  29615. }
  29616. },
  29617. },
  29618. [
  29619. {
  29620. name: "Normal",
  29621. height: math.unit(3.02, "meters"),
  29622. default: true
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6 + 4 / 12, "feet"),
  29631. weight: math.unit(250, "lb"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/remmyzilla/front.svg",
  29635. extra: 4033 / 3588,
  29636. bottom: 123 / 4156
  29637. }
  29638. },
  29639. back: {
  29640. height: math.unit(6 + 4 / 12, "feet"),
  29641. weight: math.unit(250, "lb"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/remmyzilla/back.svg",
  29645. extra: 2687 / 2555,
  29646. bottom: 48 / 2735
  29647. }
  29648. },
  29649. paw: {
  29650. height: math.unit(1.73, "feet"),
  29651. name: "Paw",
  29652. image: {
  29653. source: "./media/characters/remmyzilla/paw.svg"
  29654. },
  29655. extraAttributes: {
  29656. "toeSize": {
  29657. name: "Toe Size",
  29658. power: 2,
  29659. type: "area",
  29660. base: math.unit(0.0035, "m^2")
  29661. },
  29662. "padSize": {
  29663. name: "Pad Size",
  29664. power: 2,
  29665. type: "area",
  29666. base: math.unit(0.015, "m^2")
  29667. },
  29668. "pawsize": {
  29669. name: "Paw Size",
  29670. power: 2,
  29671. type: "area",
  29672. base: math.unit(0.072, "m^2")
  29673. },
  29674. }
  29675. },
  29676. maw: {
  29677. height: math.unit(1.73, "feet"),
  29678. name: "Maw",
  29679. image: {
  29680. source: "./media/characters/remmyzilla/maw.svg"
  29681. }
  29682. },
  29683. },
  29684. [
  29685. {
  29686. name: "Normal",
  29687. height: math.unit(6 + 4 / 12, "feet")
  29688. },
  29689. {
  29690. name: "Minimacro",
  29691. height: math.unit(12 + 8 / 12, "feet")
  29692. },
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(640, "feet"),
  29696. default: true
  29697. },
  29698. {
  29699. name: "Megamacro",
  29700. height: math.unit(6400, "feet")
  29701. },
  29702. {
  29703. name: "Gigamacro",
  29704. height: math.unit(64000, "miles")
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(2.5, "meters"),
  29713. weight: math.unit(300, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/lawrence/front.svg",
  29717. extra: 357 / 335,
  29718. bottom: 30 / 387
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(2.5, "meters"),
  29723. weight: math.unit(300, "lb"),
  29724. name: "Back",
  29725. image: {
  29726. source: "./media/characters/lawrence/back.svg",
  29727. extra: 357 / 338,
  29728. bottom: 16 / 373
  29729. }
  29730. },
  29731. head: {
  29732. height: math.unit(0.9, "meter"),
  29733. name: "Head",
  29734. image: {
  29735. source: "./media/characters/lawrence/head.svg"
  29736. }
  29737. },
  29738. maw: {
  29739. height: math.unit(0.7, "meter"),
  29740. name: "Maw",
  29741. image: {
  29742. source: "./media/characters/lawrence/maw.svg"
  29743. }
  29744. },
  29745. footBottom: {
  29746. height: math.unit(0.5, "meter"),
  29747. name: "Foot (Bottom)",
  29748. image: {
  29749. source: "./media/characters/lawrence/foot-bottom.svg"
  29750. }
  29751. },
  29752. footTop: {
  29753. height: math.unit(0.5, "meter"),
  29754. name: "Foot (Top)",
  29755. image: {
  29756. source: "./media/characters/lawrence/foot-top.svg"
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(2.5, "meters"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Macro",
  29768. height: math.unit(95, "meters")
  29769. },
  29770. {
  29771. name: "Megamacro",
  29772. height: math.unit(150, "km")
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29778. {
  29779. front: {
  29780. height: math.unit(4.2, "meters"),
  29781. name: "Front",
  29782. image: {
  29783. source: "./media/characters/sydney/front.svg",
  29784. extra: 1323 / 1277,
  29785. bottom: 111 / 1434
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Normal",
  29792. height: math.unit(4.2, "meters"),
  29793. default: true
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29799. {
  29800. back: {
  29801. height: math.unit(201, "feet"),
  29802. name: "Back",
  29803. image: {
  29804. source: "./media/characters/jessica/back.svg",
  29805. extra: 273 / 259,
  29806. bottom: 7 / 280
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(201, "feet"),
  29814. default: true
  29815. },
  29816. {
  29817. name: "Megamacro",
  29818. height: math.unit(8, "miles")
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29824. {
  29825. side: {
  29826. height: math.unit(5.6, "m"),
  29827. weight: math.unit(8000, "kg"),
  29828. name: "Side",
  29829. image: {
  29830. source: "./media/characters/victoria/side.svg",
  29831. extra: 1542/1229,
  29832. bottom: 124/1666
  29833. }
  29834. },
  29835. maw: {
  29836. height: math.unit(7.14, "feet"),
  29837. name: "Maw",
  29838. image: {
  29839. source: "./media/characters/victoria/maw.svg"
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(5.6, "m"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29853. {
  29854. front: {
  29855. height: math.unit(5 + 6 / 12, "feet"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/cat/front.svg",
  29859. extra: 1449/1295,
  29860. bottom: 34/1483
  29861. },
  29862. form: "cat",
  29863. default: true
  29864. },
  29865. back: {
  29866. height: math.unit(5 + 6 / 12, "feet"),
  29867. name: "Back",
  29868. image: {
  29869. source: "./media/characters/cat/back.svg",
  29870. extra: 1466/1301,
  29871. bottom: 19/1485
  29872. },
  29873. form: "cat"
  29874. },
  29875. taur: {
  29876. height: math.unit(7, "feet"),
  29877. name: "Taur",
  29878. image: {
  29879. source: "./media/characters/cat/taur.svg",
  29880. extra: 1389/1233,
  29881. bottom: 83/1472
  29882. },
  29883. form: "taur",
  29884. default: true
  29885. },
  29886. lucarioFront: {
  29887. height: math.unit(4, "feet"),
  29888. name: "Lucario (Front)",
  29889. image: {
  29890. source: "./media/characters/cat/lucario-front.svg",
  29891. extra: 1149/1019,
  29892. bottom: 84/1233
  29893. },
  29894. form: "lucario",
  29895. default: true
  29896. },
  29897. lucarioBack: {
  29898. height: math.unit(4, "feet"),
  29899. name: "Lucario (Back)",
  29900. image: {
  29901. source: "./media/characters/cat/lucario-back.svg",
  29902. extra: 1190/1059,
  29903. bottom: 33/1223
  29904. },
  29905. form: "lucario"
  29906. },
  29907. megaLucario: {
  29908. height: math.unit(4, "feet"),
  29909. name: "Mega Lucario",
  29910. image: {
  29911. source: "./media/characters/cat/mega-lucario.svg",
  29912. extra: 1515 / 1319,
  29913. bottom: 63 / 1578
  29914. },
  29915. form: "lucario"
  29916. },
  29917. nickit: {
  29918. height: math.unit(2, "feet"),
  29919. name: "Nickit",
  29920. image: {
  29921. source: "./media/characters/cat/nickit.svg",
  29922. extra: 1980 / 1585,
  29923. bottom: 102 / 2082
  29924. },
  29925. form: "nickit",
  29926. default: true
  29927. },
  29928. lopunnyFront: {
  29929. height: math.unit(5, "feet"),
  29930. name: "Lopunny (Front)",
  29931. image: {
  29932. source: "./media/characters/cat/lopunny-front.svg",
  29933. extra: 1782 / 1469,
  29934. bottom: 38 / 1820
  29935. },
  29936. form: "lopunny",
  29937. default: true
  29938. },
  29939. lopunnyBack: {
  29940. height: math.unit(5, "feet"),
  29941. name: "Lopunny (Back)",
  29942. image: {
  29943. source: "./media/characters/cat/lopunny-back.svg",
  29944. extra: 1660 / 1490,
  29945. bottom: 25 / 1685
  29946. },
  29947. form: "lopunny"
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Really small",
  29953. height: math.unit(1, "nm")
  29954. },
  29955. {
  29956. name: "Micro",
  29957. height: math.unit(5, "inches")
  29958. },
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(5 + 6 / 12, "feet"),
  29962. default: true
  29963. },
  29964. {
  29965. name: "Macro",
  29966. height: math.unit(50, "feet")
  29967. },
  29968. {
  29969. name: "Macro+",
  29970. height: math.unit(150, "feet")
  29971. },
  29972. {
  29973. name: "Megamacro",
  29974. height: math.unit(100, "miles")
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29980. {
  29981. front: {
  29982. height: math.unit(63.4, "meters"),
  29983. weight: math.unit(3.28349e+6, "kilograms"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/kirina-violet/front.svg",
  29987. extra: 2812 / 2725,
  29988. bottom: 0 / 2812
  29989. }
  29990. },
  29991. back: {
  29992. height: math.unit(63.4, "meters"),
  29993. weight: math.unit(3.28349e+6, "kilograms"),
  29994. name: "Back",
  29995. image: {
  29996. source: "./media/characters/kirina-violet/back.svg",
  29997. extra: 2812 / 2725,
  29998. bottom: 0 / 2812
  29999. }
  30000. },
  30001. mouth: {
  30002. height: math.unit(4.35, "meters"),
  30003. name: "Mouth",
  30004. image: {
  30005. source: "./media/characters/kirina-violet/mouth.svg"
  30006. }
  30007. },
  30008. paw: {
  30009. height: math.unit(5.6, "meters"),
  30010. name: "Paw",
  30011. image: {
  30012. source: "./media/characters/kirina-violet/paw.svg"
  30013. }
  30014. },
  30015. tail: {
  30016. height: math.unit(18, "meters"),
  30017. name: "Tail",
  30018. image: {
  30019. source: "./media/characters/kirina-violet/tail.svg"
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Macro",
  30026. height: math.unit(63.4, "meters"),
  30027. default: true
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(75, "feet"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/cat-gigachu/front.svg",
  30039. extra: 1239/1027,
  30040. bottom: 32/1271
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(75, "feet"),
  30045. name: "Back",
  30046. image: {
  30047. source: "./media/characters/cat-gigachu/back.svg",
  30048. extra: 1229/1030,
  30049. bottom: 9/1238
  30050. }
  30051. },
  30052. },
  30053. [
  30054. {
  30055. name: "Dynamax",
  30056. height: math.unit(75, "feet"),
  30057. default: true
  30058. },
  30059. ]
  30060. ))
  30061. characterMakers.push(() => makeCharacter(
  30062. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30063. {
  30064. front: {
  30065. height: math.unit(6, "feet"),
  30066. weight: math.unit(150, "lb"),
  30067. name: "Front",
  30068. image: {
  30069. source: "./media/characters/sfaiyan/front.svg",
  30070. extra: 999 / 978,
  30071. bottom: 5 / 1004
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(1.82, "meters")
  30079. },
  30080. {
  30081. name: "Giant",
  30082. height: math.unit(2.27, "km"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30089. {
  30090. front: {
  30091. height: math.unit(179, "cm"),
  30092. weight: math.unit(100, "kg"),
  30093. name: "Front",
  30094. image: {
  30095. source: "./media/characters/raunehkeli/front.svg",
  30096. extra: 1934 / 1926,
  30097. bottom: 0 / 1934
  30098. }
  30099. },
  30100. },
  30101. [
  30102. {
  30103. name: "Normal",
  30104. height: math.unit(179, "cm")
  30105. },
  30106. {
  30107. name: "Maximum",
  30108. height: math.unit(575, "meters"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(6, "feet"),
  30118. weight: math.unit(150, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30122. extra: 2625 / 2518,
  30123. bottom: 60 / 2685
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(6 + 2 / 12, "feet")
  30131. },
  30132. {
  30133. name: "Macro",
  30134. height: math.unit(1180, "feet"),
  30135. default: true
  30136. },
  30137. ]
  30138. ))
  30139. characterMakers.push(() => makeCharacter(
  30140. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30141. {
  30142. front: {
  30143. height: math.unit(5 + 6 / 12, "feet"),
  30144. weight: math.unit(108, "lb"),
  30145. name: "Front",
  30146. image: {
  30147. source: "./media/characters/lilith-zott/front.svg",
  30148. extra: 2510 / 2238,
  30149. bottom: 100 / 2610
  30150. }
  30151. },
  30152. frontDressed: {
  30153. height: math.unit(5 + 6 / 12, "feet"),
  30154. weight: math.unit(108, "lb"),
  30155. name: "Front (Dressed)",
  30156. image: {
  30157. source: "./media/characters/lilith-zott/front-dressed.svg",
  30158. extra: 2510 / 2238,
  30159. bottom: 100 / 2610
  30160. }
  30161. },
  30162. },
  30163. [
  30164. {
  30165. name: "Normal",
  30166. height: math.unit(5 + 6 / 12, "feet")
  30167. },
  30168. {
  30169. name: "Macro",
  30170. height: math.unit(1030, "feet"),
  30171. default: true
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30177. {
  30178. front: {
  30179. height: math.unit(6, "feet"),
  30180. weight: math.unit(150, "lb"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30184. extra: 2567 / 2435,
  30185. bottom: 39 / 2606
  30186. }
  30187. },
  30188. frontSuper: {
  30189. height: math.unit(6, "feet"),
  30190. name: "Front (Super)",
  30191. image: {
  30192. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30193. extra: 2567 / 2435,
  30194. bottom: 39 / 2606
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(5 + 10 / 12, "feet")
  30202. },
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(1100, "feet"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(100, "miles"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/sona/front.svg",
  30218. extra: 2433 / 2201,
  30219. bottom: 53 / 2486
  30220. }
  30221. },
  30222. foot: {
  30223. height: math.unit(16.1, "miles"),
  30224. name: "Foot",
  30225. image: {
  30226. source: "./media/characters/sona/foot.svg"
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Macro",
  30233. height: math.unit(100, "miles"),
  30234. default: true
  30235. },
  30236. ]
  30237. ))
  30238. characterMakers.push(() => makeCharacter(
  30239. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30240. {
  30241. front: {
  30242. height: math.unit(6, "feet"),
  30243. weight: math.unit(150, "lb"),
  30244. name: "Front",
  30245. image: {
  30246. source: "./media/characters/bailey/front.svg",
  30247. extra: 1778 / 1724,
  30248. bottom: 30 / 1808
  30249. }
  30250. },
  30251. },
  30252. [
  30253. {
  30254. name: "Micro",
  30255. height: math.unit(4, "inches")
  30256. },
  30257. {
  30258. name: "Normal",
  30259. height: math.unit(5 + 5 / 12, "feet"),
  30260. default: true
  30261. },
  30262. {
  30263. name: "Macro",
  30264. height: math.unit(250, "feet")
  30265. },
  30266. {
  30267. name: "Megamacro",
  30268. height: math.unit(100, "miles")
  30269. },
  30270. ]
  30271. ))
  30272. characterMakers.push(() => makeCharacter(
  30273. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30274. {
  30275. front: {
  30276. height: math.unit(5 + 2 / 12, "feet"),
  30277. weight: math.unit(120, "lb"),
  30278. name: "Front",
  30279. image: {
  30280. source: "./media/characters/snaps/front.svg",
  30281. extra: 2370 / 2177,
  30282. bottom: 48 / 2418
  30283. }
  30284. },
  30285. back: {
  30286. height: math.unit(5 + 2 / 12, "feet"),
  30287. weight: math.unit(120, "lb"),
  30288. name: "Back",
  30289. image: {
  30290. source: "./media/characters/snaps/back.svg",
  30291. extra: 2408 / 2258,
  30292. bottom: 15 / 2423
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Micro",
  30299. height: math.unit(9, "inches")
  30300. },
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(5 + 2 / 12, "feet"),
  30304. default: true
  30305. },
  30306. {
  30307. name: "Mini Macro",
  30308. height: math.unit(10, "feet")
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(1.8, "meters"),
  30317. weight: math.unit(85, "kg"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/azteck/front.svg",
  30321. extra: 2815 / 2625,
  30322. bottom: 89 / 2904
  30323. }
  30324. },
  30325. back: {
  30326. height: math.unit(1.8, "meters"),
  30327. weight: math.unit(85, "kg"),
  30328. name: "Back",
  30329. image: {
  30330. source: "./media/characters/azteck/back.svg",
  30331. extra: 2856 / 2648,
  30332. bottom: 85 / 2941
  30333. }
  30334. },
  30335. frontDressed: {
  30336. height: math.unit(1.8, "meters"),
  30337. weight: math.unit(85, "kg"),
  30338. name: "Front (Dressed)",
  30339. image: {
  30340. source: "./media/characters/azteck/front-dressed.svg",
  30341. extra: 2147 / 2003,
  30342. bottom: 68 / 2215
  30343. }
  30344. },
  30345. head: {
  30346. height: math.unit(0.47, "meters"),
  30347. weight: math.unit(85, "kg"),
  30348. name: "Head",
  30349. image: {
  30350. source: "./media/characters/azteck/head.svg"
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Bite sized",
  30357. height: math.unit(16, "cm")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(1.8, "meters"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(6, "feet"),
  30371. weight: math.unit(150, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/pidge/front.svg",
  30375. extra: 1936/1820,
  30376. bottom: 0/1936
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(6, "feet"),
  30381. weight: math.unit(150, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/pidge/back.svg",
  30385. extra: 1938/1843,
  30386. bottom: 0/1938
  30387. }
  30388. },
  30389. casual: {
  30390. height: math.unit(6, "feet"),
  30391. weight: math.unit(150, "lb"),
  30392. name: "Casual",
  30393. image: {
  30394. source: "./media/characters/pidge/casual.svg",
  30395. extra: 1936/1820,
  30396. bottom: 0/1936
  30397. }
  30398. },
  30399. tech: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(150, "lb"),
  30402. name: "Tech",
  30403. image: {
  30404. source: "./media/characters/pidge/tech.svg",
  30405. extra: 1802/1682,
  30406. bottom: 0/1802
  30407. }
  30408. },
  30409. head: {
  30410. height: math.unit(1.61, "feet"),
  30411. name: "Head",
  30412. image: {
  30413. source: "./media/characters/pidge/head.svg"
  30414. }
  30415. },
  30416. collar: {
  30417. height: math.unit(0.82, "feet"),
  30418. name: "Collar",
  30419. image: {
  30420. source: "./media/characters/pidge/collar.svg"
  30421. }
  30422. },
  30423. },
  30424. [
  30425. {
  30426. name: "Macro",
  30427. height: math.unit(2, "mile"),
  30428. default: true
  30429. },
  30430. {
  30431. name: "PUPPY",
  30432. height: math.unit(20, "miles")
  30433. },
  30434. ]
  30435. ))
  30436. characterMakers.push(() => makeCharacter(
  30437. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30438. {
  30439. front: {
  30440. height: math.unit(6, "feet"),
  30441. weight: math.unit(150, "lb"),
  30442. name: "Front",
  30443. image: {
  30444. source: "./media/characters/en/front.svg",
  30445. extra: 1697 / 1563,
  30446. bottom: 103 / 1800
  30447. }
  30448. },
  30449. back: {
  30450. height: math.unit(6, "feet"),
  30451. weight: math.unit(150, "lb"),
  30452. name: "Back",
  30453. image: {
  30454. source: "./media/characters/en/back.svg",
  30455. extra: 1700 / 1570,
  30456. bottom: 51 / 1751
  30457. }
  30458. },
  30459. frontDressed: {
  30460. height: math.unit(6, "feet"),
  30461. weight: math.unit(150, "lb"),
  30462. name: "Front (Dressed)",
  30463. image: {
  30464. source: "./media/characters/en/front-dressed.svg",
  30465. extra: 1697 / 1563,
  30466. bottom: 103 / 1800
  30467. }
  30468. },
  30469. backDressed: {
  30470. height: math.unit(6, "feet"),
  30471. weight: math.unit(150, "lb"),
  30472. name: "Back (Dressed)",
  30473. image: {
  30474. source: "./media/characters/en/back-dressed.svg",
  30475. extra: 1700 / 1570,
  30476. bottom: 51 / 1751
  30477. }
  30478. },
  30479. },
  30480. [
  30481. {
  30482. name: "Macro",
  30483. height: math.unit(210, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "feet"),
  30493. weight: math.unit(150, "lb"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/haze-orris/front.svg",
  30497. extra: 3975 / 3525,
  30498. bottom: 137 / 4112
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Micro",
  30505. height: math.unit(150, "mm"),
  30506. default: true
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(6, "feet"),
  30515. weight: math.unit(150, "lb"),
  30516. name: "Front",
  30517. image: {
  30518. source: "./media/characters/casselene-yaro/front.svg",
  30519. extra: 4721 / 4541,
  30520. bottom: 82 / 4803
  30521. }
  30522. },
  30523. back: {
  30524. height: math.unit(6, "feet"),
  30525. weight: math.unit(150, "lb"),
  30526. name: "Back",
  30527. image: {
  30528. source: "./media/characters/casselene-yaro/back.svg",
  30529. extra: 4569 / 4377,
  30530. bottom: 69 / 4638
  30531. }
  30532. },
  30533. dressed: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(150, "lb"),
  30536. name: "Dressed",
  30537. image: {
  30538. source: "./media/characters/casselene-yaro/dressed.svg",
  30539. extra: 4721 / 4541,
  30540. bottom: 82 / 4803
  30541. }
  30542. },
  30543. maw: {
  30544. height: math.unit(1, "feet"),
  30545. name: "Maw",
  30546. image: {
  30547. source: "./media/characters/casselene-yaro/maw.svg"
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Macro",
  30554. height: math.unit(190, "feet"),
  30555. default: true
  30556. },
  30557. ]
  30558. ))
  30559. characterMakers.push(() => makeCharacter(
  30560. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30561. {
  30562. front: {
  30563. height: math.unit(10, "feet"),
  30564. weight: math.unit(15015, "lb"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/platine/front.svg",
  30568. extra: 1428/1353,
  30569. bottom: 31/1459
  30570. }
  30571. },
  30572. },
  30573. [
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(10, "feet"),
  30577. default: true
  30578. },
  30579. {
  30580. name: "Macro",
  30581. height: math.unit(100, "feet")
  30582. },
  30583. {
  30584. name: "Megamacro",
  30585. height: math.unit(1000, "feet")
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(15 + 5 / 12, "feet"),
  30594. weight: math.unit(4600, "lb"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/neapolitan-ananassa/front.svg",
  30598. extra: 2903 / 2736,
  30599. bottom: 0 / 2903
  30600. }
  30601. },
  30602. side: {
  30603. height: math.unit(15 + 5 / 12, "feet"),
  30604. weight: math.unit(4600, "lb"),
  30605. name: "Side",
  30606. image: {
  30607. source: "./media/characters/neapolitan-ananassa/side.svg",
  30608. extra: 2925 / 2719,
  30609. bottom: 0 / 2925
  30610. }
  30611. },
  30612. back: {
  30613. height: math.unit(15 + 5 / 12, "feet"),
  30614. weight: math.unit(4600, "lb"),
  30615. name: "Back",
  30616. image: {
  30617. source: "./media/characters/neapolitan-ananassa/back.svg",
  30618. extra: 2903 / 2736,
  30619. bottom: 0 / 2903
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(15 + 5 / 12, "feet"),
  30627. default: true
  30628. },
  30629. {
  30630. name: "Post-Millenium",
  30631. height: math.unit(35 + 5 / 12, "feet")
  30632. },
  30633. {
  30634. name: "Post-Era",
  30635. height: math.unit(450 + 5 / 12, "feet")
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(300, "meters"),
  30644. weight: math.unit(125000, "tonnes"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/pazuzu/front.svg",
  30648. extra: 877 / 794,
  30649. bottom: 47 / 924
  30650. }
  30651. },
  30652. },
  30653. [
  30654. {
  30655. name: "Macro",
  30656. height: math.unit(300, "meters"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30663. {
  30664. side: {
  30665. height: math.unit(10 + 7 / 12, "feet"),
  30666. weight: math.unit(2.5, "tons"),
  30667. name: "Side",
  30668. image: {
  30669. source: "./media/characters/aasha/side.svg",
  30670. extra: 1345 / 1245,
  30671. bottom: 111 / 1456
  30672. }
  30673. },
  30674. back: {
  30675. height: math.unit(10 + 7 / 12, "feet"),
  30676. weight: math.unit(2.5, "tons"),
  30677. name: "Back",
  30678. image: {
  30679. source: "./media/characters/aasha/back.svg",
  30680. extra: 1133 / 1057,
  30681. bottom: 257 / 1390
  30682. }
  30683. },
  30684. },
  30685. [
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(10 + 7 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(6 + 3 / 12, "feet"),
  30698. name: "Front",
  30699. image: {
  30700. source: "./media/characters/nevan/front.svg",
  30701. extra: 704 / 704,
  30702. bottom: 28 / 732
  30703. }
  30704. },
  30705. back: {
  30706. height: math.unit(6 + 3 / 12, "feet"),
  30707. name: "Back",
  30708. image: {
  30709. source: "./media/characters/nevan/back.svg",
  30710. extra: 714 / 714,
  30711. bottom: 21 / 735
  30712. }
  30713. },
  30714. frontFlaccid: {
  30715. height: math.unit(6 + 3 / 12, "feet"),
  30716. name: "Front (Flaccid)",
  30717. image: {
  30718. source: "./media/characters/nevan/front-flaccid.svg",
  30719. extra: 704 / 704,
  30720. bottom: 28 / 732
  30721. }
  30722. },
  30723. frontErect: {
  30724. height: math.unit(6 + 3 / 12, "feet"),
  30725. name: "Front (Erect)",
  30726. image: {
  30727. source: "./media/characters/nevan/front-erect.svg",
  30728. extra: 704 / 704,
  30729. bottom: 28 / 732
  30730. }
  30731. },
  30732. backFlaccid: {
  30733. height: math.unit(6 + 3 / 12, "feet"),
  30734. name: "Back (Flaccid)",
  30735. image: {
  30736. source: "./media/characters/nevan/back-flaccid.svg",
  30737. extra: 714 / 714,
  30738. bottom: 21 / 735
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Normal",
  30745. height: math.unit(6 + 3 / 12, "feet"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(4, "feet"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/arhan/front.svg",
  30758. extra: 3368 / 3133,
  30759. bottom: 0 / 3368
  30760. }
  30761. },
  30762. side: {
  30763. height: math.unit(4, "feet"),
  30764. name: "Side",
  30765. image: {
  30766. source: "./media/characters/arhan/side.svg",
  30767. extra: 3347 / 3105,
  30768. bottom: 0 / 3347
  30769. }
  30770. },
  30771. tongue: {
  30772. height: math.unit(1.42, "feet"),
  30773. name: "Tongue",
  30774. image: {
  30775. source: "./media/characters/arhan/tongue.svg"
  30776. }
  30777. },
  30778. head: {
  30779. height: math.unit(0.85, "feet"),
  30780. name: "Head",
  30781. image: {
  30782. source: "./media/characters/arhan/head.svg"
  30783. }
  30784. },
  30785. },
  30786. [
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(4, "feet"),
  30790. default: true
  30791. },
  30792. ]
  30793. ))
  30794. characterMakers.push(() => makeCharacter(
  30795. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30796. {
  30797. front: {
  30798. height: math.unit(5 + 7.5 / 12, "feet"),
  30799. weight: math.unit(120, "lb"),
  30800. name: "Front",
  30801. image: {
  30802. source: "./media/characters/digi-duncan/front.svg",
  30803. extra: 330 / 326,
  30804. bottom: 16 / 346
  30805. }
  30806. },
  30807. side: {
  30808. height: math.unit(5 + 7.5 / 12, "feet"),
  30809. weight: math.unit(120, "lb"),
  30810. name: "Side",
  30811. image: {
  30812. source: "./media/characters/digi-duncan/side.svg",
  30813. extra: 341 / 337,
  30814. bottom: 1 / 342
  30815. }
  30816. },
  30817. back: {
  30818. height: math.unit(5 + 7.5 / 12, "feet"),
  30819. weight: math.unit(120, "lb"),
  30820. name: "Back",
  30821. image: {
  30822. source: "./media/characters/digi-duncan/back.svg",
  30823. extra: 330 / 326,
  30824. bottom: 12 / 342
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Speck",
  30831. height: math.unit(0.25, "mm")
  30832. },
  30833. {
  30834. name: "Micro",
  30835. height: math.unit(5, "mm")
  30836. },
  30837. {
  30838. name: "Tiny",
  30839. height: math.unit(0.5, "inches"),
  30840. default: true
  30841. },
  30842. {
  30843. name: "Human",
  30844. height: math.unit(5 + 7.5 / 12, "feet")
  30845. },
  30846. {
  30847. name: "Minigiant",
  30848. height: math.unit(8 + 5.25, "feet")
  30849. },
  30850. {
  30851. name: "Giant",
  30852. height: math.unit(2000, "feet")
  30853. },
  30854. {
  30855. name: "Mega",
  30856. height: math.unit(371.1, "miles")
  30857. },
  30858. ]
  30859. ))
  30860. characterMakers.push(() => makeCharacter(
  30861. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30862. {
  30863. front: {
  30864. height: math.unit(2, "meters"),
  30865. weight: math.unit(350, "kg"),
  30866. name: "Front",
  30867. image: {
  30868. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30869. extra: 898 / 838,
  30870. bottom: 9 / 907
  30871. }
  30872. },
  30873. },
  30874. [
  30875. {
  30876. name: "Micro",
  30877. height: math.unit(8, "meters")
  30878. },
  30879. {
  30880. name: "Normal",
  30881. height: math.unit(50, "meters"),
  30882. default: true
  30883. },
  30884. {
  30885. name: "Macro",
  30886. height: math.unit(500, "meters")
  30887. },
  30888. ]
  30889. ))
  30890. characterMakers.push(() => makeCharacter(
  30891. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30892. {
  30893. front: {
  30894. height: math.unit(6 + 6 / 12, "feet"),
  30895. name: "Front",
  30896. image: {
  30897. source: "./media/characters/khardesh/front.svg",
  30898. extra: 1788/1596,
  30899. bottom: 66/1854
  30900. }
  30901. },
  30902. back: {
  30903. height: math.unit(6 + 6 / 12, "feet"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/khardesh/back.svg",
  30907. extra: 1781/1584,
  30908. bottom: 68/1849
  30909. }
  30910. },
  30911. },
  30912. [
  30913. {
  30914. name: "Normal",
  30915. height: math.unit(6 + 6 / 12, "feet"),
  30916. default: true
  30917. },
  30918. {
  30919. name: "Normal+",
  30920. height: math.unit(4, "meters")
  30921. },
  30922. {
  30923. name: "Macro",
  30924. height: math.unit(50, "meters")
  30925. },
  30926. {
  30927. name: "Macro+",
  30928. height: math.unit(100, "meters")
  30929. },
  30930. {
  30931. name: "Megamacro",
  30932. height: math.unit(20, "km")
  30933. },
  30934. ]
  30935. ))
  30936. characterMakers.push(() => makeCharacter(
  30937. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30938. {
  30939. front: {
  30940. height: math.unit(6, "feet"),
  30941. weight: math.unit(150, "lb"),
  30942. name: "Front",
  30943. image: {
  30944. source: "./media/characters/kosho/front.svg",
  30945. extra: 1847 / 1847,
  30946. bottom: 86 / 1933
  30947. }
  30948. },
  30949. },
  30950. [
  30951. {
  30952. name: "Second-stage micro",
  30953. height: math.unit(0.5, "inches")
  30954. },
  30955. {
  30956. name: "First-stage micro",
  30957. height: math.unit(6, "inches")
  30958. },
  30959. {
  30960. name: "Normal",
  30961. height: math.unit(6, "feet"),
  30962. default: true
  30963. },
  30964. {
  30965. name: "First-stage macro",
  30966. height: math.unit(72, "feet")
  30967. },
  30968. {
  30969. name: "Second-stage macro",
  30970. height: math.unit(864, "feet")
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30976. {
  30977. normal: {
  30978. height: math.unit(4 + 6 / 12, "feet"),
  30979. name: "Normal",
  30980. image: {
  30981. source: "./media/characters/hydra/normal.svg",
  30982. extra: 2833 / 2634,
  30983. bottom: 68 / 2901
  30984. }
  30985. },
  30986. smol: {
  30987. height: math.unit(0.705, "inches"),
  30988. name: "Smol",
  30989. image: {
  30990. source: "./media/characters/hydra/smol.svg",
  30991. extra: 2715 / 2540,
  30992. bottom: 0 / 2715
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(4 + 6 / 12, "feet"),
  31000. default: true
  31001. }
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(0.6, "cm"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/daz/front.svg",
  31012. extra: 1682 / 1164,
  31013. bottom: 42 / 1724
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Normal",
  31020. height: math.unit(0.6, "cm"),
  31021. default: true
  31022. },
  31023. ]
  31024. ))
  31025. characterMakers.push(() => makeCharacter(
  31026. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31027. {
  31028. front: {
  31029. height: math.unit(6, "feet"),
  31030. weight: math.unit(235, "lb"),
  31031. name: "Front",
  31032. image: {
  31033. source: "./media/characters/theo-pangolin/front.svg",
  31034. extra: 1996 / 1969,
  31035. bottom: 115 / 2111
  31036. }
  31037. },
  31038. back: {
  31039. height: math.unit(6, "feet"),
  31040. weight: math.unit(235, "lb"),
  31041. name: "Back",
  31042. image: {
  31043. source: "./media/characters/theo-pangolin/back.svg",
  31044. extra: 1979 / 1979,
  31045. bottom: 40 / 2019
  31046. }
  31047. },
  31048. feral: {
  31049. height: math.unit(2, "feet"),
  31050. weight: math.unit(30, "lb"),
  31051. name: "Feral",
  31052. image: {
  31053. source: "./media/characters/theo-pangolin/feral.svg",
  31054. extra: 803 / 791,
  31055. bottom: 181 / 984
  31056. }
  31057. },
  31058. footFive: {
  31059. height: math.unit(1.43, "feet"),
  31060. name: "Foot (Five Toes)",
  31061. image: {
  31062. source: "./media/characters/theo-pangolin/foot-five.svg"
  31063. }
  31064. },
  31065. footFour: {
  31066. height: math.unit(1.43, "feet"),
  31067. name: "Foot (Four Toes)",
  31068. image: {
  31069. source: "./media/characters/theo-pangolin/foot-four.svg"
  31070. }
  31071. },
  31072. handFour: {
  31073. height: math.unit(0.81, "feet"),
  31074. name: "Hand (Four Fingers)",
  31075. image: {
  31076. source: "./media/characters/theo-pangolin/hand-four.svg"
  31077. }
  31078. },
  31079. handThree: {
  31080. height: math.unit(0.81, "feet"),
  31081. name: "Hand (Three Fingers)",
  31082. image: {
  31083. source: "./media/characters/theo-pangolin/hand-three.svg"
  31084. }
  31085. },
  31086. headFront: {
  31087. height: math.unit(1.37, "feet"),
  31088. name: "Head (Front)",
  31089. image: {
  31090. source: "./media/characters/theo-pangolin/head-front.svg"
  31091. }
  31092. },
  31093. headSide: {
  31094. height: math.unit(1.43, "feet"),
  31095. name: "Head (Side)",
  31096. image: {
  31097. source: "./media/characters/theo-pangolin/head-side.svg"
  31098. }
  31099. },
  31100. tongue: {
  31101. height: math.unit(2.29, "feet"),
  31102. name: "Tongue",
  31103. image: {
  31104. source: "./media/characters/theo-pangolin/tongue.svg"
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(6, "feet")
  31112. },
  31113. {
  31114. name: "Macro",
  31115. height: math.unit(400, "feet"),
  31116. default: true
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6, "inches"),
  31125. weight: math.unit(0.036, "kg"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/renée/front.svg",
  31129. extra: 900 / 886,
  31130. bottom: 8 / 908
  31131. }
  31132. },
  31133. },
  31134. [
  31135. {
  31136. name: "Nano",
  31137. height: math.unit(1, "nm")
  31138. },
  31139. {
  31140. name: "Micro",
  31141. height: math.unit(1, "mm")
  31142. },
  31143. {
  31144. name: "Normal",
  31145. height: math.unit(6, "inches")
  31146. },
  31147. {
  31148. name: "Macro",
  31149. height: math.unit(2000, "feet"),
  31150. default: true
  31151. },
  31152. {
  31153. name: "Megamacro",
  31154. height: math.unit(2, "km")
  31155. },
  31156. {
  31157. name: "Gigamacro",
  31158. height: math.unit(2000, "km")
  31159. },
  31160. {
  31161. name: "Teramacro",
  31162. height: math.unit(250000, "km")
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(4, "meters"),
  31171. weight: math.unit(150, "kg"),
  31172. name: "Front",
  31173. image: {
  31174. source: "./media/characters/caledvwlch/front.svg",
  31175. extra: 1760 / 1551,
  31176. bottom: 28 / 1788
  31177. }
  31178. },
  31179. side: {
  31180. height: math.unit(4, "meters"),
  31181. weight: math.unit(150, "kg"),
  31182. name: "Side",
  31183. image: {
  31184. source: "./media/characters/caledvwlch/side.svg",
  31185. extra: 1605 / 1536,
  31186. bottom: 31 / 1636
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(4, "meters"),
  31191. weight: math.unit(150, "kg"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/caledvwlch/back.svg",
  31195. extra: 1635 / 1565,
  31196. bottom: 27 / 1662
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "\"Incognito\"",
  31203. height: math.unit(4, "meters")
  31204. },
  31205. {
  31206. name: "Small rampage",
  31207. height: math.unit(600, "meters")
  31208. },
  31209. {
  31210. name: "Mega",
  31211. height: math.unit(30, "km")
  31212. },
  31213. {
  31214. name: "Home-size",
  31215. height: math.unit(50, "km"),
  31216. default: true
  31217. },
  31218. {
  31219. name: "Giga",
  31220. height: math.unit(300, "km")
  31221. },
  31222. {
  31223. name: "Lounging",
  31224. height: math.unit(11000, "km")
  31225. },
  31226. {
  31227. name: "Planet snacking",
  31228. height: math.unit(2000000, "km")
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(215, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/sapphire-svell/front.svg",
  31241. extra: 495 / 455,
  31242. bottom: 20 / 515
  31243. }
  31244. },
  31245. back: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(216, "lb"),
  31248. name: "Back",
  31249. image: {
  31250. source: "./media/characters/sapphire-svell/back.svg",
  31251. extra: 497 / 477,
  31252. bottom: 7 / 504
  31253. }
  31254. },
  31255. maw: {
  31256. height: math.unit(1.57, "feet"),
  31257. name: "Maw",
  31258. image: {
  31259. source: "./media/characters/sapphire-svell/maw.svg"
  31260. }
  31261. },
  31262. foot: {
  31263. height: math.unit(1.07, "feet"),
  31264. name: "Foot",
  31265. image: {
  31266. source: "./media/characters/sapphire-svell/foot.svg"
  31267. }
  31268. },
  31269. toering: {
  31270. height: math.unit(1.7, "inch"),
  31271. name: "Toering",
  31272. image: {
  31273. source: "./media/characters/sapphire-svell/toering.svg"
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(300, "feet"),
  31281. default: true
  31282. },
  31283. {
  31284. name: "Augmented",
  31285. height: math.unit(1250, "feet")
  31286. },
  31287. {
  31288. name: "Unleashed",
  31289. height: math.unit(3000, "feet")
  31290. },
  31291. ]
  31292. ))
  31293. characterMakers.push(() => makeCharacter(
  31294. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31295. {
  31296. side: {
  31297. height: math.unit(2 + 3 / 12, "feet"),
  31298. weight: math.unit(110, "lb"),
  31299. name: "Side",
  31300. image: {
  31301. source: "./media/characters/glitch-flux/side.svg",
  31302. extra: 997 / 805,
  31303. bottom: 20 / 1017
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(2 + 3 / 12, "feet"),
  31311. default: true
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31317. {
  31318. front: {
  31319. height: math.unit(4, "meters"),
  31320. name: "Front",
  31321. image: {
  31322. source: "./media/characters/mid/front.svg",
  31323. extra: 507 / 476,
  31324. bottom: 17 / 524
  31325. }
  31326. },
  31327. back: {
  31328. height: math.unit(4, "meters"),
  31329. name: "Back",
  31330. image: {
  31331. source: "./media/characters/mid/back.svg",
  31332. extra: 519 / 487,
  31333. bottom: 7 / 526
  31334. }
  31335. },
  31336. stuck: {
  31337. height: math.unit(2.2, "meters"),
  31338. name: "Stuck",
  31339. image: {
  31340. source: "./media/characters/mid/stuck.svg",
  31341. extra: 1951 / 1869,
  31342. bottom: 88 / 2039
  31343. }
  31344. }
  31345. },
  31346. [
  31347. {
  31348. name: "Normal",
  31349. height: math.unit(4, "meters"),
  31350. default: true
  31351. },
  31352. {
  31353. name: "Big",
  31354. height: math.unit(10, "meters")
  31355. },
  31356. {
  31357. name: "Macro",
  31358. height: math.unit(800, "meters")
  31359. },
  31360. {
  31361. name: "Megamacro",
  31362. height: math.unit(100, "km")
  31363. },
  31364. {
  31365. name: "Overgrown",
  31366. height: math.unit(1, "parsec")
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(2.5, "meters"),
  31375. weight: math.unit(225, "kg"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/iris/front.svg",
  31379. extra: 3348 / 3251,
  31380. bottom: 205 / 3553
  31381. }
  31382. },
  31383. maw: {
  31384. height: math.unit(0.56, "meter"),
  31385. name: "Maw",
  31386. image: {
  31387. source: "./media/characters/iris/maw.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Mewter cat",
  31394. height: math.unit(1.2, "meters")
  31395. },
  31396. {
  31397. name: "Minimacro",
  31398. height: math.unit(2.5, "meters"),
  31399. default: true
  31400. },
  31401. {
  31402. name: "Macro",
  31403. height: math.unit(180, "meters")
  31404. },
  31405. {
  31406. name: "Megamacro",
  31407. height: math.unit(2746, "meters")
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31413. {
  31414. front: {
  31415. height: math.unit(6, "feet"),
  31416. weight: math.unit(135, "lb"),
  31417. name: "Front",
  31418. image: {
  31419. source: "./media/characters/axel/front.svg",
  31420. extra: 908 / 908,
  31421. bottom: 58 / 966
  31422. }
  31423. },
  31424. side: {
  31425. height: math.unit(6, "feet"),
  31426. weight: math.unit(135, "lb"),
  31427. name: "Side",
  31428. image: {
  31429. source: "./media/characters/axel/side.svg",
  31430. extra: 958 / 958,
  31431. bottom: 11 / 969
  31432. }
  31433. },
  31434. back: {
  31435. height: math.unit(6, "feet"),
  31436. weight: math.unit(135, "lb"),
  31437. name: "Back",
  31438. image: {
  31439. source: "./media/characters/axel/back.svg",
  31440. extra: 887 / 887,
  31441. bottom: 34 / 921
  31442. }
  31443. },
  31444. head: {
  31445. height: math.unit(1.07, "feet"),
  31446. name: "Head",
  31447. image: {
  31448. source: "./media/characters/axel/head.svg"
  31449. }
  31450. },
  31451. beak: {
  31452. height: math.unit(1.4, "feet"),
  31453. name: "Beak",
  31454. image: {
  31455. source: "./media/characters/axel/beak.svg"
  31456. }
  31457. },
  31458. beakSide: {
  31459. height: math.unit(1.4, "feet"),
  31460. name: "Beak Side",
  31461. image: {
  31462. source: "./media/characters/axel/beak-side.svg"
  31463. }
  31464. },
  31465. sheath: {
  31466. height: math.unit(0.5, "feet"),
  31467. name: "Sheath",
  31468. image: {
  31469. source: "./media/characters/axel/sheath.svg"
  31470. }
  31471. },
  31472. dick: {
  31473. height: math.unit(0.98, "feet"),
  31474. name: "Dick",
  31475. image: {
  31476. source: "./media/characters/axel/dick.svg"
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Macro",
  31483. height: math.unit(68, "meters"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(3.5, "meters"),
  31493. weight: math.unit(1200, "kg"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/joanna/front.svg",
  31497. extra: 1596 / 1488,
  31498. bottom: 29 / 1625
  31499. }
  31500. },
  31501. back: {
  31502. height: math.unit(3.5, "meters"),
  31503. weight: math.unit(1200, "kg"),
  31504. name: "Back",
  31505. image: {
  31506. source: "./media/characters/joanna/back.svg",
  31507. extra: 1594 / 1495,
  31508. bottom: 26 / 1620
  31509. }
  31510. },
  31511. frontShorts: {
  31512. height: math.unit(3.5, "meters"),
  31513. weight: math.unit(1200, "kg"),
  31514. name: "Front (Shorts)",
  31515. image: {
  31516. source: "./media/characters/joanna/front-shorts.svg",
  31517. extra: 1596 / 1488,
  31518. bottom: 29 / 1625
  31519. }
  31520. },
  31521. frontBiker: {
  31522. height: math.unit(3.5, "meters"),
  31523. weight: math.unit(1200, "kg"),
  31524. name: "Front (Biker)",
  31525. image: {
  31526. source: "./media/characters/joanna/front-biker.svg",
  31527. extra: 1596 / 1488,
  31528. bottom: 29 / 1625
  31529. }
  31530. },
  31531. backBiker: {
  31532. height: math.unit(3.5, "meters"),
  31533. weight: math.unit(1200, "kg"),
  31534. name: "Back (Biker)",
  31535. image: {
  31536. source: "./media/characters/joanna/back-biker.svg",
  31537. extra: 1594 / 1495,
  31538. bottom: 88 / 1682
  31539. }
  31540. },
  31541. bikeLeft: {
  31542. height: math.unit(2.4, "meters"),
  31543. weight: math.unit(1600, "kg"),
  31544. name: "Bike (Left)",
  31545. image: {
  31546. source: "./media/characters/joanna/bike-left.svg",
  31547. extra: 720 / 720,
  31548. bottom: 8 / 728
  31549. }
  31550. },
  31551. bikeRight: {
  31552. height: math.unit(2.4, "meters"),
  31553. weight: math.unit(1600, "kg"),
  31554. name: "Bike (Right)",
  31555. image: {
  31556. source: "./media/characters/joanna/bike-right.svg",
  31557. extra: 720 / 720,
  31558. bottom: 8 / 728
  31559. }
  31560. },
  31561. },
  31562. [
  31563. {
  31564. name: "Incognito",
  31565. height: math.unit(3.5, "meters")
  31566. },
  31567. {
  31568. name: "Casual Big",
  31569. height: math.unit(200, "meters")
  31570. },
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(600, "meters")
  31574. },
  31575. {
  31576. name: "Original",
  31577. height: math.unit(20, "km"),
  31578. default: true
  31579. },
  31580. {
  31581. name: "Giga",
  31582. height: math.unit(400, "km")
  31583. },
  31584. {
  31585. name: "Lounging",
  31586. height: math.unit(1500, "km")
  31587. },
  31588. {
  31589. name: "Planetary",
  31590. height: math.unit(200000, "km")
  31591. },
  31592. ]
  31593. ))
  31594. characterMakers.push(() => makeCharacter(
  31595. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31596. {
  31597. front: {
  31598. height: math.unit(6, "feet"),
  31599. weight: math.unit(150, "lb"),
  31600. name: "Front",
  31601. image: {
  31602. source: "./media/characters/hugo-sigil/front.svg",
  31603. extra: 522 / 500,
  31604. bottom: 2 / 524
  31605. }
  31606. },
  31607. back: {
  31608. height: math.unit(6, "feet"),
  31609. weight: math.unit(150, "lb"),
  31610. name: "Back",
  31611. image: {
  31612. source: "./media/characters/hugo-sigil/back.svg",
  31613. extra: 519 / 495,
  31614. bottom: 5 / 524
  31615. }
  31616. },
  31617. maw: {
  31618. height: math.unit(1.4, "feet"),
  31619. weight: math.unit(150, "lb"),
  31620. name: "Maw",
  31621. image: {
  31622. source: "./media/characters/hugo-sigil/maw.svg"
  31623. }
  31624. },
  31625. feet: {
  31626. height: math.unit(1.56, "feet"),
  31627. weight: math.unit(150, "lb"),
  31628. name: "Feet",
  31629. image: {
  31630. source: "./media/characters/hugo-sigil/feet.svg",
  31631. extra: 177 / 177,
  31632. bottom: 12 / 189
  31633. }
  31634. },
  31635. },
  31636. [
  31637. {
  31638. name: "Normal",
  31639. height: math.unit(6, "feet")
  31640. },
  31641. {
  31642. name: "Macro",
  31643. height: math.unit(200, "feet"),
  31644. default: true
  31645. },
  31646. ]
  31647. ))
  31648. characterMakers.push(() => makeCharacter(
  31649. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31650. {
  31651. front: {
  31652. height: math.unit(6, "feet"),
  31653. weight: math.unit(150, "lb"),
  31654. name: "Front",
  31655. image: {
  31656. source: "./media/characters/peri/front.svg",
  31657. extra: 2354 / 2233,
  31658. bottom: 49 / 2403
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Really Small",
  31665. height: math.unit(1, "nm")
  31666. },
  31667. {
  31668. name: "Micro",
  31669. height: math.unit(4, "inches")
  31670. },
  31671. {
  31672. name: "Normal",
  31673. height: math.unit(7, "inches"),
  31674. default: true
  31675. },
  31676. {
  31677. name: "Macro",
  31678. height: math.unit(400, "feet")
  31679. },
  31680. {
  31681. name: "Megamacro",
  31682. height: math.unit(100, "miles")
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31688. {
  31689. frontSlim: {
  31690. height: math.unit(7, "feet"),
  31691. name: "Front (Slim)",
  31692. image: {
  31693. source: "./media/characters/issilora/front-slim.svg",
  31694. extra: 529 / 449,
  31695. bottom: 53 / 582
  31696. }
  31697. },
  31698. sideSlim: {
  31699. height: math.unit(7, "feet"),
  31700. name: "Side (Slim)",
  31701. image: {
  31702. source: "./media/characters/issilora/side-slim.svg",
  31703. extra: 570 / 480,
  31704. bottom: 30 / 600
  31705. }
  31706. },
  31707. backSlim: {
  31708. height: math.unit(7, "feet"),
  31709. name: "Back (Slim)",
  31710. image: {
  31711. source: "./media/characters/issilora/back-slim.svg",
  31712. extra: 537 / 455,
  31713. bottom: 46 / 583
  31714. }
  31715. },
  31716. frontBuff: {
  31717. height: math.unit(7, "feet"),
  31718. name: "Front (Buff)",
  31719. image: {
  31720. source: "./media/characters/issilora/front-buff.svg",
  31721. extra: 2310 / 2035,
  31722. bottom: 335 / 2645
  31723. }
  31724. },
  31725. head: {
  31726. height: math.unit(1.94, "feet"),
  31727. name: "Head",
  31728. image: {
  31729. source: "./media/characters/issilora/head.svg"
  31730. }
  31731. },
  31732. },
  31733. [
  31734. {
  31735. name: "Minimum",
  31736. height: math.unit(7, "feet")
  31737. },
  31738. {
  31739. name: "Comfortable",
  31740. height: math.unit(17, "feet")
  31741. },
  31742. {
  31743. name: "Fun Size",
  31744. height: math.unit(47, "feet")
  31745. },
  31746. {
  31747. name: "Natural Macro",
  31748. height: math.unit(137, "feet"),
  31749. default: true
  31750. },
  31751. {
  31752. name: "Maximum Kaiju",
  31753. height: math.unit(397, "feet")
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31759. {
  31760. front: {
  31761. height: math.unit(50 + 9/12, "feet"),
  31762. weight: math.unit(32.8, "tons"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/irb'iiritaahn/front.svg",
  31766. extra: 1878/1826,
  31767. bottom: 326/2204
  31768. }
  31769. },
  31770. back: {
  31771. height: math.unit(50 + 9/12, "feet"),
  31772. weight: math.unit(32.8, "tons"),
  31773. name: "Back",
  31774. image: {
  31775. source: "./media/characters/irb'iiritaahn/back.svg",
  31776. extra: 2052/2018,
  31777. bottom: 152/2204
  31778. }
  31779. },
  31780. head: {
  31781. height: math.unit(12.86, "feet"),
  31782. name: "Head",
  31783. image: {
  31784. source: "./media/characters/irb'iiritaahn/head.svg"
  31785. }
  31786. },
  31787. maw: {
  31788. height: math.unit(9.66, "feet"),
  31789. name: "Maw",
  31790. image: {
  31791. source: "./media/characters/irb'iiritaahn/maw.svg"
  31792. }
  31793. },
  31794. frontDick: {
  31795. height: math.unit(8.78461, "feet"),
  31796. name: "Front Dick",
  31797. image: {
  31798. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31799. }
  31800. },
  31801. rearDick: {
  31802. height: math.unit(8.78461, "feet"),
  31803. name: "Rear Dick",
  31804. image: {
  31805. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31806. }
  31807. },
  31808. rearDickUnfolded: {
  31809. height: math.unit(8.78, "feet"),
  31810. name: "Rear Dick (Unfolded)",
  31811. image: {
  31812. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31813. }
  31814. },
  31815. wings: {
  31816. height: math.unit(43, "feet"),
  31817. name: "Wings",
  31818. image: {
  31819. source: "./media/characters/irb'iiritaahn/wings.svg"
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Macro",
  31826. height: math.unit(50 + 9/12, "feet"),
  31827. default: true
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(205, "cm"),
  31836. weight: math.unit(102, "kg"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/irbisgreif/front.svg",
  31840. extra: 785/706,
  31841. bottom: 13/798
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(205, "cm"),
  31846. weight: math.unit(102, "kg"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/irbisgreif/back.svg",
  31850. extra: 713/701,
  31851. bottom: 26/739
  31852. }
  31853. },
  31854. frontDressed: {
  31855. height: math.unit(216, "cm"),
  31856. weight: math.unit(102, "kg"),
  31857. name: "Front-dressed",
  31858. image: {
  31859. source: "./media/characters/irbisgreif/front-dressed.svg",
  31860. extra: 902/776,
  31861. bottom: 14/916
  31862. }
  31863. },
  31864. sideDressed: {
  31865. height: math.unit(195, "cm"),
  31866. weight: math.unit(102, "kg"),
  31867. name: "Side-dressed",
  31868. image: {
  31869. source: "./media/characters/irbisgreif/side-dressed.svg",
  31870. extra: 788/688,
  31871. bottom: 21/809
  31872. }
  31873. },
  31874. backDressed: {
  31875. height: math.unit(216, "cm"),
  31876. weight: math.unit(102, "kg"),
  31877. name: "Back-dressed",
  31878. image: {
  31879. source: "./media/characters/irbisgreif/back-dressed.svg",
  31880. extra: 901/783,
  31881. bottom: 10/911
  31882. }
  31883. },
  31884. dick: {
  31885. height: math.unit(0.49, "feet"),
  31886. name: "Dick",
  31887. image: {
  31888. source: "./media/characters/irbisgreif/dick.svg"
  31889. }
  31890. },
  31891. wingTop: {
  31892. height: math.unit(1.93 , "feet"),
  31893. name: "Wing-top",
  31894. image: {
  31895. source: "./media/characters/irbisgreif/wing-top.svg"
  31896. }
  31897. },
  31898. wingBottom: {
  31899. height: math.unit(1.93 , "feet"),
  31900. name: "Wing-bottom",
  31901. image: {
  31902. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(216, "cm"),
  31910. default: true
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(6, "feet"),
  31919. weight: math.unit(150, "lb"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/pride/front.svg",
  31923. extra: 1299/1230,
  31924. bottom: 18/1317
  31925. }
  31926. },
  31927. },
  31928. [
  31929. {
  31930. name: "Normal",
  31931. height: math.unit(7, "feet")
  31932. },
  31933. {
  31934. name: "Mini-macro",
  31935. height: math.unit(11, "feet")
  31936. },
  31937. {
  31938. name: "Macro",
  31939. height: math.unit(15, "meters"),
  31940. default: true
  31941. },
  31942. {
  31943. name: "Macro+",
  31944. height: math.unit(40, "meters")
  31945. },
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31950. {
  31951. front: {
  31952. height: math.unit(4 + 2 / 12, "feet"),
  31953. weight: math.unit(95, "lb"),
  31954. name: "Front",
  31955. image: {
  31956. source: "./media/characters/vaelophis-nyx/front.svg",
  31957. extra: 2532/2330,
  31958. bottom: 0/2532
  31959. }
  31960. },
  31961. back: {
  31962. height: math.unit(4 + 2 / 12, "feet"),
  31963. weight: math.unit(95, "lb"),
  31964. name: "Back",
  31965. image: {
  31966. source: "./media/characters/vaelophis-nyx/back.svg",
  31967. extra: 2484/2361,
  31968. bottom: 0/2484
  31969. }
  31970. },
  31971. feralSide: {
  31972. height: math.unit(2 + 1/12, "feet"),
  31973. weight: math.unit(20, "lb"),
  31974. name: "Feral (Side)",
  31975. image: {
  31976. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31977. extra: 1721/1581,
  31978. bottom: 70/1791
  31979. }
  31980. },
  31981. feralLazing: {
  31982. height: math.unit(1.08, "feet"),
  31983. weight: math.unit(20, "lb"),
  31984. name: "Feral (Lazing)",
  31985. image: {
  31986. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31987. extra: 822/822,
  31988. bottom: 248/1070
  31989. }
  31990. },
  31991. ear: {
  31992. height: math.unit(0.416, "feet"),
  31993. name: "Ear",
  31994. image: {
  31995. source: "./media/characters/vaelophis-nyx/ear.svg"
  31996. }
  31997. },
  31998. eye: {
  31999. height: math.unit(0.0748, "feet"),
  32000. name: "Eye",
  32001. image: {
  32002. source: "./media/characters/vaelophis-nyx/eye.svg"
  32003. }
  32004. },
  32005. mouth: {
  32006. height: math.unit(0.378, "feet"),
  32007. name: "Mouth",
  32008. image: {
  32009. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32010. }
  32011. },
  32012. spade: {
  32013. height: math.unit(0.55, "feet"),
  32014. name: "Spade",
  32015. image: {
  32016. source: "./media/characters/vaelophis-nyx/spade.svg"
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(4 + 2/12, "feet"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32030. {
  32031. front: {
  32032. height: math.unit(7, "feet"),
  32033. weight: math.unit(231, "lb"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/flux/front.svg",
  32037. extra: 919/871,
  32038. bottom: 0/919
  32039. }
  32040. },
  32041. back: {
  32042. height: math.unit(7, "feet"),
  32043. weight: math.unit(231, "lb"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/flux/back.svg",
  32047. extra: 1040/992,
  32048. bottom: 0/1040
  32049. }
  32050. },
  32051. frontDressed: {
  32052. height: math.unit(7, "feet"),
  32053. weight: math.unit(231, "lb"),
  32054. name: "Front (Dressed)",
  32055. image: {
  32056. source: "./media/characters/flux/front-dressed.svg",
  32057. extra: 919/871,
  32058. bottom: 0/919
  32059. }
  32060. },
  32061. feralSide: {
  32062. height: math.unit(5, "feet"),
  32063. weight: math.unit(150, "lb"),
  32064. name: "Feral (Side)",
  32065. image: {
  32066. source: "./media/characters/flux/feral-side.svg",
  32067. extra: 598/528,
  32068. bottom: 28/626
  32069. }
  32070. },
  32071. head: {
  32072. height: math.unit(1.585, "feet"),
  32073. name: "Head",
  32074. image: {
  32075. source: "./media/characters/flux/head.svg"
  32076. }
  32077. },
  32078. headSide: {
  32079. height: math.unit(1.74, "feet"),
  32080. name: "Head (Side)",
  32081. image: {
  32082. source: "./media/characters/flux/head-side.svg"
  32083. }
  32084. },
  32085. headSideFire: {
  32086. height: math.unit(1.76, "feet"),
  32087. name: "Head (Side, Fire)",
  32088. image: {
  32089. source: "./media/characters/flux/head-side-fire.svg"
  32090. }
  32091. },
  32092. },
  32093. [
  32094. {
  32095. name: "Normal",
  32096. height: math.unit(7, "feet"),
  32097. default: true
  32098. },
  32099. ]
  32100. ))
  32101. characterMakers.push(() => makeCharacter(
  32102. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32103. {
  32104. front: {
  32105. height: math.unit(9, "feet"),
  32106. weight: math.unit(1012, "lb"),
  32107. name: "Front",
  32108. image: {
  32109. source: "./media/characters/ulfra-lupae/front.svg",
  32110. extra: 1083/1011,
  32111. bottom: 67/1150
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Micro",
  32118. height: math.unit(6, "inches")
  32119. },
  32120. {
  32121. name: "Socializing",
  32122. height: math.unit(6 + 5/12, "feet")
  32123. },
  32124. {
  32125. name: "Normal",
  32126. height: math.unit(9, "feet"),
  32127. default: true
  32128. },
  32129. {
  32130. name: "Macro",
  32131. height: math.unit(150, "feet")
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32137. {
  32138. front: {
  32139. height: math.unit(5 + 2/12, "feet"),
  32140. weight: math.unit(120, "lb"),
  32141. name: "Front",
  32142. image: {
  32143. source: "./media/characters/timber/front.svg",
  32144. extra: 2814/2705,
  32145. bottom: 181/2995
  32146. }
  32147. },
  32148. },
  32149. [
  32150. {
  32151. name: "Normal",
  32152. height: math.unit(5 + 2/12, "feet"),
  32153. default: true
  32154. },
  32155. ]
  32156. ))
  32157. characterMakers.push(() => makeCharacter(
  32158. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32159. {
  32160. front: {
  32161. height: math.unit(9, "feet"),
  32162. name: "Front",
  32163. image: {
  32164. source: "./media/characters/nicki/front.svg",
  32165. extra: 1240/990,
  32166. bottom: 45/1285
  32167. },
  32168. form: "anthro",
  32169. default: true
  32170. },
  32171. side: {
  32172. height: math.unit(9, "feet"),
  32173. name: "Side",
  32174. image: {
  32175. source: "./media/characters/nicki/side.svg",
  32176. extra: 1047/973,
  32177. bottom: 61/1108
  32178. },
  32179. form: "anthro"
  32180. },
  32181. back: {
  32182. height: math.unit(9, "feet"),
  32183. name: "Back",
  32184. image: {
  32185. source: "./media/characters/nicki/back.svg",
  32186. extra: 1006/965,
  32187. bottom: 39/1045
  32188. },
  32189. form: "anthro"
  32190. },
  32191. taur: {
  32192. height: math.unit(15, "feet"),
  32193. name: "Taur",
  32194. image: {
  32195. source: "./media/characters/nicki/taur.svg",
  32196. extra: 1592/1347,
  32197. bottom: 0/1592
  32198. },
  32199. form: "taur",
  32200. default: true
  32201. },
  32202. },
  32203. [
  32204. {
  32205. name: "Normal",
  32206. height: math.unit(9, "feet"),
  32207. form: "anthro",
  32208. default: true
  32209. },
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(15, "feet"),
  32213. form: "taur",
  32214. default: true
  32215. }
  32216. ],
  32217. {
  32218. "anthro": {
  32219. name: "Anthro",
  32220. default: true
  32221. },
  32222. "taur": {
  32223. name: "Taur"
  32224. }
  32225. }
  32226. ))
  32227. characterMakers.push(() => makeCharacter(
  32228. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32229. {
  32230. front: {
  32231. height: math.unit(7 + 10/12, "feet"),
  32232. weight: math.unit(3.5, "tons"),
  32233. name: "Front",
  32234. image: {
  32235. source: "./media/characters/lee/front.svg",
  32236. extra: 1773/1615,
  32237. bottom: 86/1859
  32238. }
  32239. },
  32240. hand: {
  32241. height: math.unit(1.78, "feet"),
  32242. name: "Hand",
  32243. image: {
  32244. source: "./media/characters/lee/hand.svg"
  32245. }
  32246. },
  32247. maw: {
  32248. height: math.unit(1.18, "feet"),
  32249. name: "Maw",
  32250. image: {
  32251. source: "./media/characters/lee/maw.svg"
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(7 + 10/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32265. {
  32266. front: {
  32267. height: math.unit(9, "feet"),
  32268. name: "Front",
  32269. image: {
  32270. source: "./media/characters/guti/front.svg",
  32271. extra: 4551/4355,
  32272. bottom: 123/4674
  32273. }
  32274. },
  32275. tongue: {
  32276. height: math.unit(1, "feet"),
  32277. name: "Tongue",
  32278. image: {
  32279. source: "./media/characters/guti/tongue.svg"
  32280. }
  32281. },
  32282. paw: {
  32283. height: math.unit(1.18, "feet"),
  32284. name: "Paw",
  32285. image: {
  32286. source: "./media/characters/guti/paw.svg"
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(9, "feet"),
  32294. default: true
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32300. {
  32301. side: {
  32302. height: math.unit(5, "meters"),
  32303. name: "Side",
  32304. image: {
  32305. source: "./media/characters/vesper/side.svg",
  32306. extra: 1605/1518,
  32307. bottom: 0/1605
  32308. }
  32309. },
  32310. },
  32311. [
  32312. {
  32313. name: "Small",
  32314. height: math.unit(5, "meters")
  32315. },
  32316. {
  32317. name: "Sage",
  32318. height: math.unit(100, "meters"),
  32319. default: true
  32320. },
  32321. {
  32322. name: "Fun Size",
  32323. height: math.unit(600, "meters")
  32324. },
  32325. {
  32326. name: "Goddess",
  32327. height: math.unit(20000, "km")
  32328. },
  32329. {
  32330. name: "Maximum",
  32331. height: math.unit(5, "galaxies")
  32332. },
  32333. ]
  32334. ))
  32335. characterMakers.push(() => makeCharacter(
  32336. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32337. {
  32338. front: {
  32339. height: math.unit(6 + 3/12, "feet"),
  32340. weight: math.unit(190, "lb"),
  32341. name: "Front",
  32342. image: {
  32343. source: "./media/characters/gawain/front.svg",
  32344. extra: 2222/2139,
  32345. bottom: 90/2312
  32346. }
  32347. },
  32348. back: {
  32349. height: math.unit(6 + 3/12, "feet"),
  32350. weight: math.unit(190, "lb"),
  32351. name: "Back",
  32352. image: {
  32353. source: "./media/characters/gawain/back.svg",
  32354. extra: 2199/2111,
  32355. bottom: 73/2272
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(6 + 3/12, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32369. {
  32370. side: {
  32371. height: math.unit(3.5, "meters"),
  32372. weight: math.unit(16000, "lb"),
  32373. name: "Side",
  32374. image: {
  32375. source: "./media/characters/dascalti/side.svg",
  32376. extra: 392/273,
  32377. bottom: 47/439
  32378. }
  32379. },
  32380. breath: {
  32381. height: math.unit(7.4, "feet"),
  32382. name: "Breath",
  32383. image: {
  32384. source: "./media/characters/dascalti/breath.svg"
  32385. }
  32386. },
  32387. fed: {
  32388. height: math.unit(3.6, "meters"),
  32389. weight: math.unit(16000, "lb"),
  32390. name: "Fed",
  32391. image: {
  32392. source: "./media/characters/dascalti/fed.svg",
  32393. extra: 1419/820,
  32394. bottom: 95/1514
  32395. }
  32396. },
  32397. },
  32398. [
  32399. {
  32400. name: "Normal",
  32401. height: math.unit(3.5, "meters"),
  32402. default: true
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(3 + 5/12, "feet"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/mauve/front.svg",
  32414. extra: 1126/1033,
  32415. bottom: 65/1191
  32416. }
  32417. },
  32418. side: {
  32419. height: math.unit(3 + 5/12, "feet"),
  32420. name: "Side",
  32421. image: {
  32422. source: "./media/characters/mauve/side.svg",
  32423. extra: 1089/1001,
  32424. bottom: 29/1118
  32425. }
  32426. },
  32427. back: {
  32428. height: math.unit(3 + 5/12, "feet"),
  32429. name: "Back",
  32430. image: {
  32431. source: "./media/characters/mauve/back.svg",
  32432. extra: 1173/1053,
  32433. bottom: 109/1282
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(3 + 5/12, "feet"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(6 + 3/12, "feet"),
  32450. weight: math.unit(430, "lb"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/carlos/front.svg",
  32454. extra: 1964/1913,
  32455. bottom: 70/2034
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Normal",
  32462. height: math.unit(6 + 3/12, "feet"),
  32463. default: true
  32464. },
  32465. ]
  32466. ))
  32467. characterMakers.push(() => makeCharacter(
  32468. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32469. {
  32470. back: {
  32471. height: math.unit(5 + 10/12, "feet"),
  32472. weight: math.unit(200, "lb"),
  32473. name: "Back",
  32474. image: {
  32475. source: "./media/characters/jax/back.svg",
  32476. extra: 764/739,
  32477. bottom: 25/789
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(5 + 10/12, "feet"),
  32485. default: true
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(8, "feet"),
  32494. weight: math.unit(250, "lb"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/eikthynir/front.svg",
  32498. extra: 1332/1166,
  32499. bottom: 82/1414
  32500. }
  32501. },
  32502. back: {
  32503. height: math.unit(8, "feet"),
  32504. weight: math.unit(250, "lb"),
  32505. name: "Back",
  32506. image: {
  32507. source: "./media/characters/eikthynir/back.svg",
  32508. extra: 1342/1190,
  32509. bottom: 19/1361
  32510. }
  32511. },
  32512. dick: {
  32513. height: math.unit(2.35, "feet"),
  32514. name: "Dick",
  32515. image: {
  32516. source: "./media/characters/eikthynir/dick.svg"
  32517. }
  32518. },
  32519. },
  32520. [
  32521. {
  32522. name: "Normal",
  32523. height: math.unit(8, "feet"),
  32524. default: true
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32530. {
  32531. front: {
  32532. height: math.unit(99, "meters"),
  32533. weight: math.unit(13000, "tons"),
  32534. name: "Front",
  32535. image: {
  32536. source: "./media/characters/zlmos/front.svg",
  32537. extra: 2202/1992,
  32538. bottom: 315/2517
  32539. }
  32540. },
  32541. },
  32542. [
  32543. {
  32544. name: "Macro",
  32545. height: math.unit(99, "meters"),
  32546. default: true
  32547. },
  32548. ]
  32549. ))
  32550. characterMakers.push(() => makeCharacter(
  32551. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32552. {
  32553. front: {
  32554. height: math.unit(6 + 5/12, "feet"),
  32555. name: "Front",
  32556. image: {
  32557. source: "./media/characters/purri/front.svg",
  32558. extra: 1698/1610,
  32559. bottom: 32/1730
  32560. }
  32561. },
  32562. frontAlt: {
  32563. height: math.unit(6 + 5/12, "feet"),
  32564. name: "Front (Alt)",
  32565. image: {
  32566. source: "./media/characters/purri/front-alt.svg",
  32567. extra: 450/420,
  32568. bottom: 26/476
  32569. }
  32570. },
  32571. boots: {
  32572. height: math.unit(5.5, "feet"),
  32573. name: "Boots",
  32574. image: {
  32575. source: "./media/characters/purri/boots.svg",
  32576. extra: 905/853,
  32577. bottom: 18/923
  32578. }
  32579. },
  32580. lying: {
  32581. height: math.unit(2, "feet"),
  32582. name: "Lying",
  32583. image: {
  32584. source: "./media/characters/purri/lying.svg",
  32585. extra: 940/843,
  32586. bottom: 146/1086
  32587. }
  32588. },
  32589. devious: {
  32590. height: math.unit(1.77, "feet"),
  32591. name: "Devious",
  32592. image: {
  32593. source: "./media/characters/purri/devious.svg",
  32594. extra: 1440/1155,
  32595. bottom: 147/1587
  32596. }
  32597. },
  32598. bean: {
  32599. height: math.unit(1.94, "feet"),
  32600. name: "Bean",
  32601. image: {
  32602. source: "./media/characters/purri/bean.svg"
  32603. }
  32604. },
  32605. },
  32606. [
  32607. {
  32608. name: "Micro",
  32609. height: math.unit(1, "mm")
  32610. },
  32611. {
  32612. name: "Normal",
  32613. height: math.unit(6 + 5/12, "feet"),
  32614. default: true
  32615. },
  32616. {
  32617. name: "Macro :3c",
  32618. height: math.unit(2, "miles")
  32619. },
  32620. ]
  32621. ))
  32622. characterMakers.push(() => makeCharacter(
  32623. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32624. {
  32625. front: {
  32626. height: math.unit(6 + 2/12, "feet"),
  32627. weight: math.unit(250, "lb"),
  32628. name: "Front",
  32629. image: {
  32630. source: "./media/characters/moonlight/front.svg",
  32631. extra: 1044/908,
  32632. bottom: 56/1100
  32633. }
  32634. },
  32635. feral: {
  32636. height: math.unit(3 + 1/12, "feet"),
  32637. weight: math.unit(50, "kg"),
  32638. name: "Feral",
  32639. image: {
  32640. source: "./media/characters/moonlight/feral.svg",
  32641. extra: 3705/2791,
  32642. bottom: 145/3850
  32643. }
  32644. },
  32645. paw: {
  32646. height: math.unit(1, "feet"),
  32647. name: "Paw",
  32648. image: {
  32649. source: "./media/characters/moonlight/paw.svg"
  32650. }
  32651. },
  32652. paws: {
  32653. height: math.unit(0.98, "feet"),
  32654. name: "Paws",
  32655. image: {
  32656. source: "./media/characters/moonlight/paws.svg",
  32657. extra: 939/939,
  32658. bottom: 50/989
  32659. }
  32660. },
  32661. mouth: {
  32662. height: math.unit(0.48, "feet"),
  32663. name: "Mouth",
  32664. image: {
  32665. source: "./media/characters/moonlight/mouth.svg"
  32666. }
  32667. },
  32668. dick: {
  32669. height: math.unit(1.46, "feet"),
  32670. name: "Dick",
  32671. image: {
  32672. source: "./media/characters/moonlight/dick.svg"
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(6 + 2/12, "feet"),
  32680. default: true
  32681. },
  32682. {
  32683. name: "Macro",
  32684. height: math.unit(300, "feet")
  32685. },
  32686. {
  32687. name: "Macro+",
  32688. height: math.unit(1, "mile")
  32689. },
  32690. {
  32691. name: "Mt. Moon",
  32692. height: math.unit(5, "miles")
  32693. },
  32694. {
  32695. name: "Megamacro",
  32696. height: math.unit(15, "miles")
  32697. },
  32698. ]
  32699. ))
  32700. characterMakers.push(() => makeCharacter(
  32701. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32702. {
  32703. back: {
  32704. height: math.unit(6, "feet"),
  32705. weight: math.unit(150, "lb"),
  32706. name: "Back",
  32707. image: {
  32708. source: "./media/characters/sylen/back.svg",
  32709. extra: 1335/1273,
  32710. bottom: 107/1442
  32711. }
  32712. },
  32713. },
  32714. [
  32715. {
  32716. name: "Normal",
  32717. height: math.unit(5 + 5/12, "feet")
  32718. },
  32719. {
  32720. name: "Megamacro",
  32721. height: math.unit(3, "miles"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(6, "feet"),
  32731. weight: math.unit(190, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/huttser/front.svg",
  32735. extra: 1152/1058,
  32736. bottom: 23/1175
  32737. }
  32738. },
  32739. side: {
  32740. height: math.unit(6, "feet"),
  32741. weight: math.unit(190, "lb"),
  32742. name: "Side",
  32743. image: {
  32744. source: "./media/characters/huttser/side.svg",
  32745. extra: 1174/1065,
  32746. bottom: 18/1192
  32747. }
  32748. },
  32749. back: {
  32750. height: math.unit(6, "feet"),
  32751. weight: math.unit(190, "lb"),
  32752. name: "Back",
  32753. image: {
  32754. source: "./media/characters/huttser/back.svg",
  32755. extra: 1158/1056,
  32756. bottom: 12/1170
  32757. }
  32758. },
  32759. },
  32760. [
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32765. {
  32766. side: {
  32767. height: math.unit(12 + 9/12, "feet"),
  32768. weight: math.unit(15000, "lb"),
  32769. name: "Side",
  32770. image: {
  32771. source: "./media/characters/faan/side.svg",
  32772. extra: 2747/2697,
  32773. bottom: 0/2747
  32774. }
  32775. },
  32776. front: {
  32777. height: math.unit(12 + 9/12, "feet"),
  32778. weight: math.unit(15000, "lb"),
  32779. name: "Front",
  32780. image: {
  32781. source: "./media/characters/faan/front.svg",
  32782. extra: 607/571,
  32783. bottom: 24/631
  32784. }
  32785. },
  32786. head: {
  32787. height: math.unit(2.85, "feet"),
  32788. name: "Head",
  32789. image: {
  32790. source: "./media/characters/faan/head.svg"
  32791. }
  32792. },
  32793. headAlt: {
  32794. height: math.unit(3.13, "feet"),
  32795. name: "Head-alt",
  32796. image: {
  32797. source: "./media/characters/faan/head-alt.svg"
  32798. }
  32799. },
  32800. },
  32801. [
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(12 + 9/12, "feet"),
  32805. default: true
  32806. },
  32807. ]
  32808. ))
  32809. characterMakers.push(() => makeCharacter(
  32810. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32811. {
  32812. front: {
  32813. height: math.unit(6, "feet"),
  32814. weight: math.unit(300, "lb"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/tanio/front.svg",
  32818. extra: 711/673,
  32819. bottom: 25/736
  32820. }
  32821. },
  32822. },
  32823. [
  32824. {
  32825. name: "Normal",
  32826. height: math.unit(6, "feet"),
  32827. default: true
  32828. },
  32829. ]
  32830. ))
  32831. characterMakers.push(() => makeCharacter(
  32832. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32833. {
  32834. front: {
  32835. height: math.unit(3, "inches"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/noboru/front.svg",
  32839. extra: 1039/932,
  32840. bottom: 18/1057
  32841. }
  32842. },
  32843. },
  32844. [
  32845. {
  32846. name: "Micro",
  32847. height: math.unit(3, "inches"),
  32848. default: true
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32854. {
  32855. front: {
  32856. height: math.unit(1.85, "meters"),
  32857. weight: math.unit(80, "kg"),
  32858. name: "Front",
  32859. image: {
  32860. source: "./media/characters/daniel-barrett/front.svg",
  32861. extra: 355/337,
  32862. bottom: 9/364
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Pico",
  32869. height: math.unit(0.0433, "mm")
  32870. },
  32871. {
  32872. name: "Nano",
  32873. height: math.unit(1.5, "mm")
  32874. },
  32875. {
  32876. name: "Micro",
  32877. height: math.unit(5.3, "cm"),
  32878. default: true
  32879. },
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(1.85, "meters")
  32883. },
  32884. {
  32885. name: "Macro",
  32886. height: math.unit(64.7, "meters")
  32887. },
  32888. {
  32889. name: "Megamacro",
  32890. height: math.unit(2.26, "km")
  32891. },
  32892. {
  32893. name: "Gigamacro",
  32894. height: math.unit(79, "km")
  32895. },
  32896. {
  32897. name: "Teramacro",
  32898. height: math.unit(2765, "km")
  32899. },
  32900. {
  32901. name: "Petamacro",
  32902. height: math.unit(96678, "km")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(30, "meters"),
  32911. weight: math.unit(400, "tons"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/zeel/front.svg",
  32915. extra: 2599/2599,
  32916. bottom: 226/2825
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Macro",
  32923. height: math.unit(30, "meters"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32930. {
  32931. front: {
  32932. height: math.unit(6 + 7/12, "feet"),
  32933. weight: math.unit(210, "lb"),
  32934. name: "Front",
  32935. image: {
  32936. source: "./media/characters/tarn/front.svg",
  32937. extra: 3517/3220,
  32938. bottom: 91/3608
  32939. }
  32940. },
  32941. back: {
  32942. height: math.unit(6 + 7/12, "feet"),
  32943. weight: math.unit(210, "lb"),
  32944. name: "Back",
  32945. image: {
  32946. source: "./media/characters/tarn/back.svg",
  32947. extra: 3566/3241,
  32948. bottom: 34/3600
  32949. }
  32950. },
  32951. dick: {
  32952. height: math.unit(1.65, "feet"),
  32953. name: "Dick",
  32954. image: {
  32955. source: "./media/characters/tarn/dick.svg"
  32956. }
  32957. },
  32958. paw: {
  32959. height: math.unit(1.80, "feet"),
  32960. name: "Paw",
  32961. image: {
  32962. source: "./media/characters/tarn/paw.svg"
  32963. }
  32964. },
  32965. tongue: {
  32966. height: math.unit(0.97, "feet"),
  32967. name: "Tongue",
  32968. image: {
  32969. source: "./media/characters/tarn/tongue.svg"
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Micro",
  32976. height: math.unit(4, "inches")
  32977. },
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(6 + 7/12, "feet"),
  32981. default: true
  32982. },
  32983. {
  32984. name: "Macro",
  32985. height: math.unit(300, "feet")
  32986. },
  32987. ]
  32988. ))
  32989. characterMakers.push(() => makeCharacter(
  32990. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32991. {
  32992. front: {
  32993. height: math.unit(5 + 7/12, "feet"),
  32994. weight: math.unit(80, "kg"),
  32995. name: "Front",
  32996. image: {
  32997. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32998. extra: 3023/2865,
  32999. bottom: 33/3056
  33000. }
  33001. },
  33002. back: {
  33003. height: math.unit(5 + 7/12, "feet"),
  33004. weight: math.unit(80, "kg"),
  33005. name: "Back",
  33006. image: {
  33007. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33008. extra: 3020/2886,
  33009. bottom: 30/3050
  33010. }
  33011. },
  33012. dick: {
  33013. height: math.unit(0.98, "feet"),
  33014. name: "Dick",
  33015. image: {
  33016. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33017. }
  33018. },
  33019. anatomy: {
  33020. height: math.unit(2.86, "feet"),
  33021. name: "Anatomy",
  33022. image: {
  33023. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Really Small",
  33030. height: math.unit(2, "inches")
  33031. },
  33032. {
  33033. name: "Micro",
  33034. height: math.unit(5.583, "inches")
  33035. },
  33036. {
  33037. name: "Normal",
  33038. height: math.unit(5 + 7/12, "feet"),
  33039. default: true
  33040. },
  33041. {
  33042. name: "Macro",
  33043. height: math.unit(67, "feet")
  33044. },
  33045. {
  33046. name: "Megamacro",
  33047. height: math.unit(134, "feet")
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(9, "feet"),
  33056. weight: math.unit(120, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/sally/front.svg",
  33060. extra: 1506/1349,
  33061. bottom: 66/1572
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(9, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33075. {
  33076. front: {
  33077. height: math.unit(8, "feet"),
  33078. weight: math.unit(900, "lb"),
  33079. name: "Front",
  33080. image: {
  33081. source: "./media/characters/owen/front.svg",
  33082. extra: 1761/1657,
  33083. bottom: 74/1835
  33084. }
  33085. },
  33086. side: {
  33087. height: math.unit(8, "feet"),
  33088. weight: math.unit(900, "lb"),
  33089. name: "Side",
  33090. image: {
  33091. source: "./media/characters/owen/side.svg",
  33092. extra: 1797/1734,
  33093. bottom: 30/1827
  33094. }
  33095. },
  33096. back: {
  33097. height: math.unit(8, "feet"),
  33098. weight: math.unit(900, "lb"),
  33099. name: "Back",
  33100. image: {
  33101. source: "./media/characters/owen/back.svg",
  33102. extra: 1796/1706,
  33103. bottom: 59/1855
  33104. }
  33105. },
  33106. maw: {
  33107. height: math.unit(1.76, "feet"),
  33108. name: "Maw",
  33109. image: {
  33110. source: "./media/characters/owen/maw.svg"
  33111. }
  33112. },
  33113. },
  33114. [
  33115. {
  33116. name: "Normal",
  33117. height: math.unit(8, "feet"),
  33118. default: true
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33124. {
  33125. front: {
  33126. height: math.unit(4, "feet"),
  33127. weight: math.unit(400, "lb"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/ryth/front.svg",
  33131. extra: 1920/1748,
  33132. bottom: 42/1962
  33133. }
  33134. },
  33135. back: {
  33136. height: math.unit(4, "feet"),
  33137. weight: math.unit(400, "lb"),
  33138. name: "Back",
  33139. image: {
  33140. source: "./media/characters/ryth/back.svg",
  33141. extra: 1897/1690,
  33142. bottom: 89/1986
  33143. }
  33144. },
  33145. mouth: {
  33146. height: math.unit(1.39, "feet"),
  33147. name: "Mouth",
  33148. image: {
  33149. source: "./media/characters/ryth/mouth.svg"
  33150. }
  33151. },
  33152. tailmaw: {
  33153. height: math.unit(1.23, "feet"),
  33154. name: "Tailmaw",
  33155. image: {
  33156. source: "./media/characters/ryth/tailmaw.svg"
  33157. }
  33158. },
  33159. goia: {
  33160. height: math.unit(4, "meters"),
  33161. weight: math.unit(10800, "lb"),
  33162. name: "Goia",
  33163. image: {
  33164. source: "./media/characters/ryth/goia.svg",
  33165. extra: 745/640,
  33166. bottom: 107/852
  33167. }
  33168. },
  33169. goiaFront: {
  33170. height: math.unit(4, "meters"),
  33171. weight: math.unit(10800, "lb"),
  33172. name: "Goia (Front)",
  33173. image: {
  33174. source: "./media/characters/ryth/goia-front.svg",
  33175. extra: 750/586,
  33176. bottom: 114/864
  33177. }
  33178. },
  33179. goiaMaw: {
  33180. height: math.unit(5.55, "feet"),
  33181. name: "Goia Maw",
  33182. image: {
  33183. source: "./media/characters/ryth/goia-maw.svg"
  33184. }
  33185. },
  33186. goiaForepaw: {
  33187. height: math.unit(3.5, "feet"),
  33188. name: "Goia Forepaw",
  33189. image: {
  33190. source: "./media/characters/ryth/goia-forepaw.svg"
  33191. }
  33192. },
  33193. goiaHindpaw: {
  33194. height: math.unit(5.55, "feet"),
  33195. name: "Goia Hindpaw",
  33196. image: {
  33197. source: "./media/characters/ryth/goia-hindpaw.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Normal",
  33204. height: math.unit(4, "feet"),
  33205. default: true
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33211. {
  33212. front: {
  33213. height: math.unit(7, "feet"),
  33214. weight: math.unit(180, "lb"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/necrolance/front.svg",
  33218. extra: 1062/947,
  33219. bottom: 41/1103
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(7, "feet"),
  33224. weight: math.unit(180, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/necrolance/back.svg",
  33228. extra: 1045/984,
  33229. bottom: 14/1059
  33230. }
  33231. },
  33232. wing: {
  33233. height: math.unit(2.67, "feet"),
  33234. name: "Wing",
  33235. image: {
  33236. source: "./media/characters/necrolance/wing.svg"
  33237. }
  33238. },
  33239. },
  33240. [
  33241. {
  33242. name: "Normal",
  33243. height: math.unit(7, "feet"),
  33244. default: true
  33245. },
  33246. ]
  33247. ))
  33248. characterMakers.push(() => makeCharacter(
  33249. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33250. {
  33251. front: {
  33252. height: math.unit(76, "meters"),
  33253. weight: math.unit(30000, "tons"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/tyler/front.svg",
  33257. extra: 1640/1640,
  33258. bottom: 114/1754
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Macro",
  33265. height: math.unit(76, "meters"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(4 + 11/12, "feet"),
  33275. weight: math.unit(132, "lb"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/icey/front.svg",
  33279. extra: 2750/2550,
  33280. bottom: 33/2783
  33281. }
  33282. },
  33283. back: {
  33284. height: math.unit(4 + 11/12, "feet"),
  33285. weight: math.unit(132, "lb"),
  33286. name: "Back",
  33287. image: {
  33288. source: "./media/characters/icey/back.svg",
  33289. extra: 2624/2481,
  33290. bottom: 35/2659
  33291. }
  33292. },
  33293. },
  33294. [
  33295. {
  33296. name: "Normal",
  33297. height: math.unit(4 + 11/12, "feet"),
  33298. default: true
  33299. },
  33300. ]
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33304. {
  33305. front: {
  33306. height: math.unit(100, "feet"),
  33307. weight: math.unit(0, "lb"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/smile/front.svg",
  33311. extra: 2983/2912,
  33312. bottom: 162/3145
  33313. }
  33314. },
  33315. back: {
  33316. height: math.unit(100, "feet"),
  33317. weight: math.unit(0, "lb"),
  33318. name: "Back",
  33319. image: {
  33320. source: "./media/characters/smile/back.svg",
  33321. extra: 3143/3031,
  33322. bottom: 91/3234
  33323. }
  33324. },
  33325. head: {
  33326. height: math.unit(26.3, "feet"),
  33327. weight: math.unit(0, "lb"),
  33328. name: "Head",
  33329. image: {
  33330. source: "./media/characters/smile/head.svg"
  33331. }
  33332. },
  33333. collar: {
  33334. height: math.unit(5.3, "feet"),
  33335. weight: math.unit(0, "lb"),
  33336. name: "Collar",
  33337. image: {
  33338. source: "./media/characters/smile/collar.svg"
  33339. }
  33340. },
  33341. },
  33342. [
  33343. {
  33344. name: "Macro",
  33345. height: math.unit(100, "feet"),
  33346. default: true
  33347. },
  33348. ]
  33349. ))
  33350. characterMakers.push(() => makeCharacter(
  33351. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33352. {
  33353. dragon: {
  33354. height: math.unit(26, "feet"),
  33355. weight: math.unit(36, "tons"),
  33356. name: "Dragon",
  33357. image: {
  33358. source: "./media/characters/arimphae/dragon.svg",
  33359. extra: 1574/983,
  33360. bottom: 357/1931
  33361. }
  33362. },
  33363. drake: {
  33364. height: math.unit(9, "feet"),
  33365. weight: math.unit(1.5, "tons"),
  33366. name: "Drake",
  33367. image: {
  33368. source: "./media/characters/arimphae/drake.svg",
  33369. extra: 1120/925,
  33370. bottom: 435/1555
  33371. }
  33372. },
  33373. },
  33374. [
  33375. {
  33376. name: "Small",
  33377. height: math.unit(26*5/9, "feet")
  33378. },
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(26, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(8 + 9/12, "feet"),
  33391. name: "Front",
  33392. image: {
  33393. source: "./media/characters/xander/front.svg",
  33394. extra: 1237/974,
  33395. bottom: 94/1331
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(8 + 9/12, "feet"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Gaze Grabber",
  33407. height: math.unit(13 + 8/12, "feet")
  33408. },
  33409. {
  33410. name: "Jaw Dropper",
  33411. height: math.unit(27, "feet")
  33412. },
  33413. {
  33414. name: "Show Stopper",
  33415. height: math.unit(136, "feet")
  33416. },
  33417. {
  33418. name: "Superstar",
  33419. height: math.unit(1.9e6, "miles")
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33425. {
  33426. side: {
  33427. height: math.unit(2100, "feet"),
  33428. name: "Side",
  33429. image: {
  33430. source: "./media/characters/osiris/side.svg",
  33431. extra: 1105/939,
  33432. bottom: 167/1272
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(2100, "feet"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(6 + 8/12, "feet"),
  33449. weight: math.unit(225, "lb"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/rhys-londe/front.svg",
  33453. extra: 2258/2141,
  33454. bottom: 188/2446
  33455. }
  33456. },
  33457. back: {
  33458. height: math.unit(6 + 8/12, "feet"),
  33459. weight: math.unit(225, "lb"),
  33460. name: "Back",
  33461. image: {
  33462. source: "./media/characters/rhys-londe/back.svg",
  33463. extra: 2237/2137,
  33464. bottom: 63/2300
  33465. }
  33466. },
  33467. frontNsfw: {
  33468. height: math.unit(6 + 8/12, "feet"),
  33469. weight: math.unit(225, "lb"),
  33470. name: "Front (NSFW)",
  33471. image: {
  33472. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33473. extra: 2258/2141,
  33474. bottom: 188/2446
  33475. }
  33476. },
  33477. backNsfw: {
  33478. height: math.unit(6 + 8/12, "feet"),
  33479. weight: math.unit(225, "lb"),
  33480. name: "Back (NSFW)",
  33481. image: {
  33482. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33483. extra: 2237/2137,
  33484. bottom: 63/2300
  33485. }
  33486. },
  33487. dick: {
  33488. height: math.unit(30, "inches"),
  33489. name: "Dick",
  33490. image: {
  33491. source: "./media/characters/rhys-londe/dick.svg"
  33492. }
  33493. },
  33494. maw: {
  33495. height: math.unit(1.6, "feet"),
  33496. name: "Maw",
  33497. image: {
  33498. source: "./media/characters/rhys-londe/maw.svg"
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(6 + 8/12, "feet"),
  33506. default: true
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33512. {
  33513. front: {
  33514. height: math.unit(3 + 10/12, "feet"),
  33515. weight: math.unit(90, "lb"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/taivas-ensim/front.svg",
  33519. extra: 1327/1216,
  33520. bottom: 96/1423
  33521. }
  33522. },
  33523. back: {
  33524. height: math.unit(3 + 10/12, "feet"),
  33525. weight: math.unit(90, "lb"),
  33526. name: "Back",
  33527. image: {
  33528. source: "./media/characters/taivas-ensim/back.svg",
  33529. extra: 1355/1247,
  33530. bottom: 11/1366
  33531. }
  33532. },
  33533. frontNsfw: {
  33534. height: math.unit(3 + 10/12, "feet"),
  33535. weight: math.unit(90, "lb"),
  33536. name: "Front (NSFW)",
  33537. image: {
  33538. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33539. extra: 1327/1216,
  33540. bottom: 96/1423
  33541. }
  33542. },
  33543. backNsfw: {
  33544. height: math.unit(3 + 10/12, "feet"),
  33545. weight: math.unit(90, "lb"),
  33546. name: "Back (NSFW)",
  33547. image: {
  33548. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33549. extra: 1355/1247,
  33550. bottom: 11/1366
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(3 + 10/12, "feet"),
  33558. default: true
  33559. },
  33560. ]
  33561. ))
  33562. characterMakers.push(() => makeCharacter(
  33563. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33564. {
  33565. front: {
  33566. height: math.unit(9 + 6/12, "feet"),
  33567. weight: math.unit(940, "lb"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/byliss/front.svg",
  33571. extra: 1327/1290,
  33572. bottom: 82/1409
  33573. }
  33574. },
  33575. back: {
  33576. height: math.unit(9 + 6/12, "feet"),
  33577. weight: math.unit(940, "lb"),
  33578. name: "Back",
  33579. image: {
  33580. source: "./media/characters/byliss/back.svg",
  33581. extra: 1376/1349,
  33582. bottom: 9/1385
  33583. }
  33584. },
  33585. frontNsfw: {
  33586. height: math.unit(9 + 6/12, "feet"),
  33587. weight: math.unit(940, "lb"),
  33588. name: "Front (NSFW)",
  33589. image: {
  33590. source: "./media/characters/byliss/front-nsfw.svg",
  33591. extra: 1327/1290,
  33592. bottom: 82/1409
  33593. }
  33594. },
  33595. backNsfw: {
  33596. height: math.unit(9 + 6/12, "feet"),
  33597. weight: math.unit(940, "lb"),
  33598. name: "Back (NSFW)",
  33599. image: {
  33600. source: "./media/characters/byliss/back-nsfw.svg",
  33601. extra: 1376/1349,
  33602. bottom: 9/1385
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(9 + 6/12, "feet"),
  33610. default: true
  33611. },
  33612. ]
  33613. ))
  33614. characterMakers.push(() => makeCharacter(
  33615. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33616. {
  33617. front: {
  33618. height: math.unit(5 + 2/12, "feet"),
  33619. weight: math.unit(200, "lb"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/noraly/front.svg",
  33623. extra: 4985/4773,
  33624. bottom: 150/5135
  33625. }
  33626. },
  33627. full: {
  33628. height: math.unit(5 + 2/12, "feet"),
  33629. weight: math.unit(164, "lb"),
  33630. name: "Full",
  33631. image: {
  33632. source: "./media/characters/noraly/full.svg",
  33633. extra: 1114/1059,
  33634. bottom: 35/1149
  33635. }
  33636. },
  33637. fuller: {
  33638. height: math.unit(5 + 2/12, "feet"),
  33639. weight: math.unit(230, "lb"),
  33640. name: "Fuller",
  33641. image: {
  33642. source: "./media/characters/noraly/fuller.svg",
  33643. extra: 1114/1059,
  33644. bottom: 35/1149
  33645. }
  33646. },
  33647. fullest: {
  33648. height: math.unit(5 + 2/12, "feet"),
  33649. weight: math.unit(300, "lb"),
  33650. name: "Fullest",
  33651. image: {
  33652. source: "./media/characters/noraly/fullest.svg",
  33653. extra: 1114/1059,
  33654. bottom: 35/1149
  33655. }
  33656. },
  33657. },
  33658. [
  33659. {
  33660. name: "Normal",
  33661. height: math.unit(5 + 2/12, "feet"),
  33662. default: true
  33663. },
  33664. ]
  33665. ))
  33666. characterMakers.push(() => makeCharacter(
  33667. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33668. {
  33669. front: {
  33670. height: math.unit(5 + 2/12, "feet"),
  33671. weight: math.unit(210, "lb"),
  33672. name: "Front",
  33673. image: {
  33674. source: "./media/characters/pera/front.svg",
  33675. extra: 1560/1531,
  33676. bottom: 165/1725
  33677. }
  33678. },
  33679. back: {
  33680. height: math.unit(5 + 2/12, "feet"),
  33681. weight: math.unit(210, "lb"),
  33682. name: "Back",
  33683. image: {
  33684. source: "./media/characters/pera/back.svg",
  33685. extra: 1523/1493,
  33686. bottom: 152/1675
  33687. }
  33688. },
  33689. dick: {
  33690. height: math.unit(2.4, "feet"),
  33691. name: "Dick",
  33692. image: {
  33693. source: "./media/characters/pera/dick.svg"
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(5 + 2/12, "feet"),
  33701. default: true
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33707. {
  33708. front: {
  33709. height: math.unit(12, "feet"),
  33710. weight: math.unit(3200, "lb"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/julian/front.svg",
  33714. extra: 2962/2701,
  33715. bottom: 184/3146
  33716. }
  33717. },
  33718. maw: {
  33719. height: math.unit(5.35, "feet"),
  33720. name: "Maw",
  33721. image: {
  33722. source: "./media/characters/julian/maw.svg"
  33723. }
  33724. },
  33725. paw: {
  33726. height: math.unit(3.07, "feet"),
  33727. name: "Paw",
  33728. image: {
  33729. source: "./media/characters/julian/paw.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Default",
  33736. height: math.unit(12, "feet"),
  33737. default: true
  33738. },
  33739. {
  33740. name: "Big",
  33741. height: math.unit(50, "feet")
  33742. },
  33743. {
  33744. name: "Really Big",
  33745. height: math.unit(1, "mile")
  33746. },
  33747. {
  33748. name: "Extremely Big",
  33749. height: math.unit(100, "miles")
  33750. },
  33751. {
  33752. name: "Planet Hugger",
  33753. height: math.unit(200, "megameters")
  33754. },
  33755. {
  33756. name: "Unreasonably Big",
  33757. height: math.unit(1e300, "meters")
  33758. },
  33759. ]
  33760. ))
  33761. characterMakers.push(() => makeCharacter(
  33762. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33763. {
  33764. solgooleo: {
  33765. height: math.unit(4, "meters"),
  33766. weight: math.unit(6000*1.5, "kg"),
  33767. volume: math.unit(6000, "liters"),
  33768. name: "Solgooleo",
  33769. image: {
  33770. source: "./media/characters/pi/solgooleo.svg",
  33771. extra: 388/331,
  33772. bottom: 29/417
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(4, "meters"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. characterMakers.push(() => makeCharacter(
  33785. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33786. {
  33787. front: {
  33788. height: math.unit(8, "feet"),
  33789. weight: math.unit(4, "tons"),
  33790. name: "Front",
  33791. image: {
  33792. source: "./media/characters/shaun/front.svg",
  33793. extra: 503/495,
  33794. bottom: 20/523
  33795. }
  33796. },
  33797. back: {
  33798. height: math.unit(8, "feet"),
  33799. weight: math.unit(4, "tons"),
  33800. name: "Back",
  33801. image: {
  33802. source: "./media/characters/shaun/back.svg",
  33803. extra: 487/480,
  33804. bottom: 20/507
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Lorg",
  33811. height: math.unit(8, "feet"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33818. {
  33819. frontAnthro: {
  33820. height: math.unit(7, "feet"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/sini/front-anthro.svg",
  33824. extra: 726/678,
  33825. bottom: 35/761
  33826. },
  33827. form: "anthro",
  33828. default: true
  33829. },
  33830. backAnthro: {
  33831. height: math.unit(7, "feet"),
  33832. name: "Back",
  33833. image: {
  33834. source: "./media/characters/sini/back-anthro.svg",
  33835. extra: 743/701,
  33836. bottom: 12/755
  33837. },
  33838. form: "anthro",
  33839. },
  33840. frontAnthroNsfw: {
  33841. height: math.unit(7, "feet"),
  33842. name: "Front (NSFW)",
  33843. image: {
  33844. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33845. extra: 726/678,
  33846. bottom: 35/761
  33847. },
  33848. form: "anthro"
  33849. },
  33850. backAnthroNsfw: {
  33851. height: math.unit(7, "feet"),
  33852. name: "Back (NSFW)",
  33853. image: {
  33854. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33855. extra: 743/701,
  33856. bottom: 12/755
  33857. },
  33858. form: "anthro",
  33859. },
  33860. mawAnthro: {
  33861. height: math.unit(2.14, "feet"),
  33862. name: "Maw",
  33863. image: {
  33864. source: "./media/characters/sini/maw-anthro.svg"
  33865. },
  33866. form: "anthro"
  33867. },
  33868. dick: {
  33869. height: math.unit(1.45, "feet"),
  33870. name: "Dick",
  33871. image: {
  33872. source: "./media/characters/sini/dick-anthro.svg"
  33873. },
  33874. form: "anthro"
  33875. },
  33876. feral: {
  33877. height: math.unit(16, "feet"),
  33878. name: "Feral",
  33879. image: {
  33880. source: "./media/characters/sini/feral.svg",
  33881. extra: 814/605,
  33882. bottom: 11/825
  33883. },
  33884. form: "feral",
  33885. default: true
  33886. },
  33887. feralNsfw: {
  33888. height: math.unit(16, "feet"),
  33889. name: "Feral (NSFW)",
  33890. image: {
  33891. source: "./media/characters/sini/feral-nsfw.svg",
  33892. extra: 814/605,
  33893. bottom: 11/825
  33894. },
  33895. form: "feral"
  33896. },
  33897. mawFeral: {
  33898. height: math.unit(5.66, "feet"),
  33899. name: "Maw",
  33900. image: {
  33901. source: "./media/characters/sini/maw-feral.svg"
  33902. },
  33903. form: "feral",
  33904. },
  33905. pawFeral: {
  33906. height: math.unit(5.17, "feet"),
  33907. name: "Paw",
  33908. image: {
  33909. source: "./media/characters/sini/paw-feral.svg"
  33910. },
  33911. form: "feral",
  33912. },
  33913. rumpFeral: {
  33914. height: math.unit(13.11, "feet"),
  33915. name: "Rump",
  33916. image: {
  33917. source: "./media/characters/sini/rump-feral.svg"
  33918. },
  33919. form: "feral",
  33920. },
  33921. dickFeral: {
  33922. height: math.unit(1, "feet"),
  33923. name: "Dick",
  33924. image: {
  33925. source: "./media/characters/sini/dick-feral.svg"
  33926. },
  33927. form: "feral",
  33928. },
  33929. eyeFeral: {
  33930. height: math.unit(1.23, "feet"),
  33931. name: "Eye",
  33932. image: {
  33933. source: "./media/characters/sini/eye-feral.svg"
  33934. },
  33935. form: "feral",
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(7, "feet"),
  33942. default: true,
  33943. form: "anthro"
  33944. },
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(16, "feet"),
  33948. default: true,
  33949. form: "feral"
  33950. },
  33951. ],
  33952. {
  33953. "anthro": {
  33954. name: "Anthro",
  33955. default: true
  33956. },
  33957. "feral": {
  33958. name: "Feral",
  33959. }
  33960. }
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33964. {
  33965. side: {
  33966. height: math.unit(47.2, "meters"),
  33967. weight: math.unit(10000, "tons"),
  33968. name: "Side",
  33969. image: {
  33970. source: "./media/characters/raylldo/side.svg",
  33971. extra: 2363/642,
  33972. bottom: 221/2584
  33973. }
  33974. },
  33975. top: {
  33976. height: math.unit(240, "meters"),
  33977. weight: math.unit(10000, "tons"),
  33978. name: "Top",
  33979. image: {
  33980. source: "./media/characters/raylldo/top.svg"
  33981. }
  33982. },
  33983. bottom: {
  33984. height: math.unit(240, "meters"),
  33985. weight: math.unit(10000, "tons"),
  33986. name: "Bottom",
  33987. image: {
  33988. source: "./media/characters/raylldo/bottom.svg"
  33989. }
  33990. },
  33991. head: {
  33992. height: math.unit(38.6, "meters"),
  33993. name: "Head",
  33994. image: {
  33995. source: "./media/characters/raylldo/head.svg",
  33996. extra: 1335/1112,
  33997. bottom: 0/1335
  33998. }
  33999. },
  34000. maw: {
  34001. height: math.unit(16.37, "meters"),
  34002. name: "Maw",
  34003. image: {
  34004. source: "./media/characters/raylldo/maw.svg",
  34005. extra: 883/660,
  34006. bottom: 0/883
  34007. },
  34008. extraAttributes: {
  34009. preyCapacity: {
  34010. name: "Capacity",
  34011. power: 3,
  34012. type: "volume",
  34013. base: math.unit(1000, "people")
  34014. },
  34015. tongueSize: {
  34016. name: "Tongue Size",
  34017. power: 2,
  34018. type: "area",
  34019. base: math.unit(21, "m^2")
  34020. }
  34021. }
  34022. },
  34023. forepaw: {
  34024. height: math.unit(18, "meters"),
  34025. name: "Forepaw",
  34026. image: {
  34027. source: "./media/characters/raylldo/forepaw.svg"
  34028. }
  34029. },
  34030. hindpaw: {
  34031. height: math.unit(23, "meters"),
  34032. name: "Hindpaw",
  34033. image: {
  34034. source: "./media/characters/raylldo/hindpaw.svg"
  34035. }
  34036. },
  34037. genitals: {
  34038. height: math.unit(42, "meters"),
  34039. name: "Genitals",
  34040. image: {
  34041. source: "./media/characters/raylldo/genitals.svg"
  34042. }
  34043. },
  34044. },
  34045. [
  34046. {
  34047. name: "Normal",
  34048. height: math.unit(47.2, "meters"),
  34049. default: true
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34055. {
  34056. anthroFront: {
  34057. height: math.unit(9, "feet"),
  34058. weight: math.unit(600, "lb"),
  34059. name: "Anthro (Front)",
  34060. image: {
  34061. source: "./media/characters/glint/anthro-front.svg",
  34062. extra: 1097/1018,
  34063. bottom: 28/1125
  34064. }
  34065. },
  34066. anthroBack: {
  34067. height: math.unit(9, "feet"),
  34068. weight: math.unit(600, "lb"),
  34069. name: "Anthro (Back)",
  34070. image: {
  34071. source: "./media/characters/glint/anthro-back.svg",
  34072. extra: 1154/997,
  34073. bottom: 36/1190
  34074. }
  34075. },
  34076. feral: {
  34077. height: math.unit(11, "feet"),
  34078. weight: math.unit(50000, "lb"),
  34079. name: "Feral",
  34080. image: {
  34081. source: "./media/characters/glint/feral.svg",
  34082. extra: 3035/1585,
  34083. bottom: 1169/4204
  34084. }
  34085. },
  34086. dickAnthro: {
  34087. height: math.unit(0.7, "meters"),
  34088. name: "Dick (Anthro)",
  34089. image: {
  34090. source: "./media/characters/glint/dick-anthro.svg"
  34091. }
  34092. },
  34093. dickFeral: {
  34094. height: math.unit(2.65, "meters"),
  34095. name: "Dick (Feral)",
  34096. image: {
  34097. source: "./media/characters/glint/dick-feral.svg"
  34098. }
  34099. },
  34100. slitHidden: {
  34101. height: math.unit(5.85, "meters"),
  34102. name: "Slit (Hidden)",
  34103. image: {
  34104. source: "./media/characters/glint/slit-hidden.svg"
  34105. }
  34106. },
  34107. slitErect: {
  34108. height: math.unit(5.85, "meters"),
  34109. name: "Slit (Erect)",
  34110. image: {
  34111. source: "./media/characters/glint/slit-erect.svg"
  34112. }
  34113. },
  34114. mawAnthro: {
  34115. height: math.unit(0.63, "meters"),
  34116. name: "Maw (Anthro)",
  34117. image: {
  34118. source: "./media/characters/glint/maw.svg"
  34119. }
  34120. },
  34121. mawFeral: {
  34122. height: math.unit(2.89, "meters"),
  34123. name: "Maw (Feral)",
  34124. image: {
  34125. source: "./media/characters/glint/maw.svg"
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(9, "feet"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34139. {
  34140. side: {
  34141. height: math.unit(15, "feet"),
  34142. weight: math.unit(5000, "kg"),
  34143. name: "Side",
  34144. image: {
  34145. source: "./media/characters/kairne/side.svg",
  34146. extra: 979/811,
  34147. bottom: 13/992
  34148. }
  34149. },
  34150. front: {
  34151. height: math.unit(15, "feet"),
  34152. weight: math.unit(5000, "kg"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/kairne/front.svg",
  34156. extra: 908/814,
  34157. bottom: 26/934
  34158. }
  34159. },
  34160. sideNsfw: {
  34161. height: math.unit(15, "feet"),
  34162. weight: math.unit(5000, "kg"),
  34163. name: "Side (NSFW)",
  34164. image: {
  34165. source: "./media/characters/kairne/side-nsfw.svg",
  34166. extra: 979/811,
  34167. bottom: 13/992
  34168. }
  34169. },
  34170. frontNsfw: {
  34171. height: math.unit(15, "feet"),
  34172. weight: math.unit(5000, "kg"),
  34173. name: "Front (NSFW)",
  34174. image: {
  34175. source: "./media/characters/kairne/front-nsfw.svg",
  34176. extra: 908/814,
  34177. bottom: 26/934
  34178. }
  34179. },
  34180. dickCaged: {
  34181. height: math.unit(0.65, "meters"),
  34182. name: "Dick-caged",
  34183. image: {
  34184. source: "./media/characters/kairne/dick-caged.svg"
  34185. }
  34186. },
  34187. dick: {
  34188. height: math.unit(0.79, "meters"),
  34189. name: "Dick",
  34190. image: {
  34191. source: "./media/characters/kairne/dick.svg"
  34192. }
  34193. },
  34194. genitals: {
  34195. height: math.unit(1.29, "meters"),
  34196. name: "Genitals",
  34197. image: {
  34198. source: "./media/characters/kairne/genitals.svg"
  34199. }
  34200. },
  34201. maw: {
  34202. height: math.unit(1.73, "meters"),
  34203. name: "Maw",
  34204. image: {
  34205. source: "./media/characters/kairne/maw.svg"
  34206. }
  34207. },
  34208. },
  34209. [
  34210. {
  34211. name: "Normal",
  34212. height: math.unit(15, "feet"),
  34213. default: true
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(5 + 8/12, "feet"),
  34222. weight: math.unit(139, "lb"),
  34223. name: "Front",
  34224. image: {
  34225. source: "./media/characters/biscuit-jackal/front.svg",
  34226. extra: 2106/1961,
  34227. bottom: 58/2164
  34228. }
  34229. },
  34230. back: {
  34231. height: math.unit(5 + 8/12, "feet"),
  34232. weight: math.unit(139, "lb"),
  34233. name: "Back",
  34234. image: {
  34235. source: "./media/characters/biscuit-jackal/back.svg",
  34236. extra: 2132/1976,
  34237. bottom: 57/2189
  34238. }
  34239. },
  34240. werejackal: {
  34241. height: math.unit(6 + 3/12, "feet"),
  34242. weight: math.unit(188, "lb"),
  34243. name: "Werejackal",
  34244. image: {
  34245. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34246. extra: 2373/2178,
  34247. bottom: 53/2426
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Normal",
  34254. height: math.unit(5 + 8/12, "feet"),
  34255. default: true
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(140, "cm"),
  34264. weight: math.unit(45, "kg"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/tayra-white/front.svg",
  34268. extra: 2229/2192,
  34269. bottom: 75/2304
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(140, "cm"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(4 + 5/12, "feet"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/scoop/front.svg",
  34289. extra: 1257/1136,
  34290. bottom: 69/1326
  34291. }
  34292. },
  34293. back: {
  34294. height: math.unit(4 + 5/12, "feet"),
  34295. name: "Back",
  34296. image: {
  34297. source: "./media/characters/scoop/back.svg",
  34298. extra: 1321/1152,
  34299. bottom: 32/1353
  34300. }
  34301. },
  34302. maw: {
  34303. height: math.unit(0.68, "feet"),
  34304. name: "Maw",
  34305. image: {
  34306. source: "./media/characters/scoop/maw.svg"
  34307. }
  34308. },
  34309. },
  34310. [
  34311. {
  34312. name: "Really Small",
  34313. height: math.unit(1, "mm")
  34314. },
  34315. {
  34316. name: "Micro",
  34317. height: math.unit(1, "inch")
  34318. },
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(4 + 5/12, "feet"),
  34322. default: true
  34323. },
  34324. {
  34325. name: "Macro",
  34326. height: math.unit(200, "feet")
  34327. },
  34328. {
  34329. name: "Megamacro",
  34330. height: math.unit(3240, "feet")
  34331. },
  34332. {
  34333. name: "Teramacro",
  34334. height: math.unit(2500, "miles")
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(15 + 7/12, "feet"),
  34343. weight: math.unit(1150, "tons"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/saphinara/front.svg",
  34347. extra: 1837/1643,
  34348. bottom: 84/1921
  34349. },
  34350. form: "normal",
  34351. default: true
  34352. },
  34353. side: {
  34354. height: math.unit(15 + 7/12, "feet"),
  34355. weight: math.unit(1150, "tons"),
  34356. name: "Side",
  34357. image: {
  34358. source: "./media/characters/saphinara/side.svg",
  34359. extra: 605/547,
  34360. bottom: 6/611
  34361. },
  34362. form: "normal"
  34363. },
  34364. back: {
  34365. height: math.unit(15 + 7/12, "feet"),
  34366. weight: math.unit(1150, "tons"),
  34367. name: "Back",
  34368. image: {
  34369. source: "./media/characters/saphinara/back.svg",
  34370. extra: 591/531,
  34371. bottom: 13/604
  34372. },
  34373. form: "normal"
  34374. },
  34375. frontTail: {
  34376. height: math.unit(15 + 7/12, "feet"),
  34377. weight: math.unit(1150, "tons"),
  34378. name: "Front (Full Tail)",
  34379. image: {
  34380. source: "./media/characters/saphinara/front-tail.svg",
  34381. extra: 2256/1630,
  34382. bottom: 261/2517
  34383. },
  34384. form: "normal"
  34385. },
  34386. insides: {
  34387. height: math.unit(11.92, "feet"),
  34388. name: "Insides",
  34389. image: {
  34390. source: "./media/characters/saphinara/insides.svg"
  34391. },
  34392. form: "normal"
  34393. },
  34394. head: {
  34395. height: math.unit(4.17, "feet"),
  34396. name: "Head",
  34397. image: {
  34398. source: "./media/characters/saphinara/head.svg"
  34399. },
  34400. form: "normal"
  34401. },
  34402. tongue: {
  34403. height: math.unit(4.60, "feet"),
  34404. name: "Tongue",
  34405. image: {
  34406. source: "./media/characters/saphinara/tongue.svg"
  34407. },
  34408. form: "normal"
  34409. },
  34410. headEnraged: {
  34411. height: math.unit(5.55, "feet"),
  34412. name: "Head (Enraged)",
  34413. image: {
  34414. source: "./media/characters/saphinara/head-enraged.svg"
  34415. },
  34416. form: "normal"
  34417. },
  34418. wings: {
  34419. height: math.unit(11.95, "feet"),
  34420. name: "Wings",
  34421. image: {
  34422. source: "./media/characters/saphinara/wings.svg"
  34423. },
  34424. form: "normal"
  34425. },
  34426. feathers: {
  34427. height: math.unit(8.92, "feet"),
  34428. name: "Feathers",
  34429. image: {
  34430. source: "./media/characters/saphinara/feathers.svg"
  34431. },
  34432. form: "normal"
  34433. },
  34434. shackles: {
  34435. height: math.unit(2, "feet"),
  34436. name: "Shackles",
  34437. image: {
  34438. source: "./media/characters/saphinara/shackles.svg"
  34439. },
  34440. form: "normal"
  34441. },
  34442. eyes: {
  34443. height: math.unit(1.331, "feet"),
  34444. name: "Eyes",
  34445. image: {
  34446. source: "./media/characters/saphinara/eyes.svg"
  34447. },
  34448. form: "normal"
  34449. },
  34450. eyesEnraged: {
  34451. height: math.unit(1.331, "feet"),
  34452. name: "Eyes (Enraged)",
  34453. image: {
  34454. source: "./media/characters/saphinara/eyes-enraged.svg"
  34455. },
  34456. form: "normal"
  34457. },
  34458. trueFormSide: {
  34459. height: math.unit(200, "feet"),
  34460. weight: math.unit(1e7, "tons"),
  34461. name: "Side",
  34462. image: {
  34463. source: "./media/characters/saphinara/true-form-side.svg",
  34464. extra: 1399/770,
  34465. bottom: 97/1496
  34466. },
  34467. form: "true-form",
  34468. default: true
  34469. },
  34470. trueFormMaw: {
  34471. height: math.unit(71.5, "feet"),
  34472. name: "Maw",
  34473. image: {
  34474. source: "./media/characters/saphinara/true-form-maw.svg",
  34475. extra: 2302/1453,
  34476. bottom: 0/2302
  34477. },
  34478. form: "true-form"
  34479. },
  34480. meowberusSide: {
  34481. height: math.unit(75, "feet"),
  34482. weight: math.unit(180000, "kg"),
  34483. preyCapacity: math.unit(50000, "people"),
  34484. name: "Side",
  34485. image: {
  34486. source: "./media/characters/saphinara/meowberus-side.svg",
  34487. extra: 1400/711,
  34488. bottom: 126/1526
  34489. },
  34490. form: "meowberus",
  34491. extraAttributes: {
  34492. "pawArea": {
  34493. name: "Paw Size",
  34494. power: 2,
  34495. type: "area",
  34496. base: math.unit(35, "m^2")
  34497. }
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(15 + 7/12, "feet"),
  34505. default: true,
  34506. form: "normal"
  34507. },
  34508. {
  34509. name: "Angry",
  34510. height: math.unit(30 + 6/12, "feet"),
  34511. form: "normal"
  34512. },
  34513. {
  34514. name: "Enraged",
  34515. height: math.unit(102 + 1/12, "feet"),
  34516. form: "normal"
  34517. },
  34518. {
  34519. name: "True",
  34520. height: math.unit(200, "feet"),
  34521. default: true,
  34522. form: "true-form"
  34523. },
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(75, "feet"),
  34527. default: true,
  34528. form: "meowberus"
  34529. },
  34530. ],
  34531. {
  34532. "normal": {
  34533. name: "Normal",
  34534. default: true
  34535. },
  34536. "true-form": {
  34537. name: "True Form"
  34538. },
  34539. "meowberus": {
  34540. name: "Meowberus",
  34541. },
  34542. }
  34543. ))
  34544. characterMakers.push(() => makeCharacter(
  34545. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34546. {
  34547. front: {
  34548. height: math.unit(6 + 8/12, "feet"),
  34549. weight: math.unit(300, "lb"),
  34550. name: "Front",
  34551. image: {
  34552. source: "./media/characters/jrain/front.svg",
  34553. extra: 3039/2865,
  34554. bottom: 399/3438
  34555. }
  34556. },
  34557. back: {
  34558. height: math.unit(6 + 8/12, "feet"),
  34559. weight: math.unit(300, "lb"),
  34560. name: "Back",
  34561. image: {
  34562. source: "./media/characters/jrain/back.svg",
  34563. extra: 3089/2938,
  34564. bottom: 172/3261
  34565. }
  34566. },
  34567. head: {
  34568. height: math.unit(2.14, "feet"),
  34569. name: "Head",
  34570. image: {
  34571. source: "./media/characters/jrain/head.svg"
  34572. }
  34573. },
  34574. maw: {
  34575. height: math.unit(1.77, "feet"),
  34576. name: "Maw",
  34577. image: {
  34578. source: "./media/characters/jrain/maw.svg"
  34579. }
  34580. },
  34581. leftHand: {
  34582. height: math.unit(1.1, "feet"),
  34583. name: "Left Hand",
  34584. image: {
  34585. source: "./media/characters/jrain/left-hand.svg"
  34586. }
  34587. },
  34588. rightHand: {
  34589. height: math.unit(1.1, "feet"),
  34590. name: "Right Hand",
  34591. image: {
  34592. source: "./media/characters/jrain/right-hand.svg"
  34593. }
  34594. },
  34595. eye: {
  34596. height: math.unit(0.35, "feet"),
  34597. name: "Eye",
  34598. image: {
  34599. source: "./media/characters/jrain/eye.svg"
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(6 + 8/12, "feet"),
  34607. default: true
  34608. },
  34609. {
  34610. name: "Casually Large",
  34611. height: math.unit(25, "feet")
  34612. },
  34613. {
  34614. name: "Giant",
  34615. height: math.unit(100, "feet")
  34616. },
  34617. {
  34618. name: "Kaiju",
  34619. height: math.unit(300, "feet")
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34625. {
  34626. dragon: {
  34627. height: math.unit(5, "meters"),
  34628. name: "Dragon",
  34629. image: {
  34630. source: "./media/characters/sabrina/dragon.svg",
  34631. extra: 3670 / 2365,
  34632. bottom: 333 / 4003
  34633. }
  34634. },
  34635. gryphon: {
  34636. height: math.unit(3, "meters"),
  34637. name: "Gryphon",
  34638. image: {
  34639. source: "./media/characters/sabrina/gryphon.svg",
  34640. extra: 1576 / 945,
  34641. bottom: 71 / 1647
  34642. }
  34643. },
  34644. snake: {
  34645. height: math.unit(12, "meters"),
  34646. name: "Snake",
  34647. image: {
  34648. source: "./media/characters/sabrina/snake.svg",
  34649. extra: 1758 / 1320,
  34650. bottom: 186 / 1944
  34651. }
  34652. },
  34653. collar: {
  34654. height: math.unit(1.86, "meters"),
  34655. name: "Collar",
  34656. image: {
  34657. source: "./media/characters/sabrina/collar.svg"
  34658. }
  34659. },
  34660. eye: {
  34661. height: math.unit(0.53, "meters"),
  34662. name: "Eye",
  34663. image: {
  34664. source: "./media/characters/sabrina/eye.svg"
  34665. }
  34666. },
  34667. foot: {
  34668. height: math.unit(1.86, "meters"),
  34669. name: "Foot",
  34670. image: {
  34671. source: "./media/characters/sabrina/foot.svg"
  34672. }
  34673. },
  34674. hand: {
  34675. height: math.unit(1.32, "meters"),
  34676. name: "Hand",
  34677. image: {
  34678. source: "./media/characters/sabrina/hand.svg"
  34679. }
  34680. },
  34681. head: {
  34682. height: math.unit(2.44, "meters"),
  34683. name: "Head",
  34684. image: {
  34685. source: "./media/characters/sabrina/head.svg"
  34686. }
  34687. },
  34688. headAngry: {
  34689. height: math.unit(2.44, "meters"),
  34690. name: "Head (Angry))",
  34691. image: {
  34692. source: "./media/characters/sabrina/head-angry.svg"
  34693. }
  34694. },
  34695. maw: {
  34696. height: math.unit(1.65, "meters"),
  34697. name: "Maw",
  34698. image: {
  34699. source: "./media/characters/sabrina/maw.svg"
  34700. }
  34701. },
  34702. spikes: {
  34703. height: math.unit(1.69, "meters"),
  34704. name: "Spikes",
  34705. image: {
  34706. source: "./media/characters/sabrina/spikes.svg"
  34707. }
  34708. },
  34709. stomach: {
  34710. height: math.unit(1.15, "meters"),
  34711. name: "Stomach",
  34712. image: {
  34713. source: "./media/characters/sabrina/stomach.svg"
  34714. }
  34715. },
  34716. tongue: {
  34717. height: math.unit(1.27, "meters"),
  34718. name: "Tongue",
  34719. image: {
  34720. source: "./media/characters/sabrina/tongue.svg"
  34721. }
  34722. },
  34723. wingDorsal: {
  34724. height: math.unit(4.85, "meters"),
  34725. name: "Wing (Dorsal)",
  34726. image: {
  34727. source: "./media/characters/sabrina/wing-dorsal.svg"
  34728. }
  34729. },
  34730. wingVentral: {
  34731. height: math.unit(4.85, "meters"),
  34732. name: "Wing (Ventral)",
  34733. image: {
  34734. source: "./media/characters/sabrina/wing-ventral.svg"
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Normal",
  34741. height: math.unit(5, "meters"),
  34742. default: true
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34748. {
  34749. frontMaid: {
  34750. height: math.unit(5 + 5/12, "feet"),
  34751. weight: math.unit(130, "lb"),
  34752. name: "Front (Maid)",
  34753. image: {
  34754. source: "./media/characters/midnight-tales/front-maid.svg",
  34755. extra: 489/454,
  34756. bottom: 61/550
  34757. }
  34758. },
  34759. frontFormal: {
  34760. height: math.unit(5 + 5/12, "feet"),
  34761. weight: math.unit(130, "lb"),
  34762. name: "Front (Formal)",
  34763. image: {
  34764. source: "./media/characters/midnight-tales/front-formal.svg",
  34765. extra: 489/454,
  34766. bottom: 61/550
  34767. }
  34768. },
  34769. back: {
  34770. height: math.unit(5 + 5/12, "feet"),
  34771. weight: math.unit(130, "lb"),
  34772. name: "Back",
  34773. image: {
  34774. source: "./media/characters/midnight-tales/back.svg",
  34775. extra: 498/456,
  34776. bottom: 33/531
  34777. }
  34778. },
  34779. frontBeast: {
  34780. height: math.unit(40, "feet"),
  34781. weight: math.unit(64000, "lb"),
  34782. name: "Front (Beast)",
  34783. image: {
  34784. source: "./media/characters/midnight-tales/front-beast.svg",
  34785. extra: 927/860,
  34786. bottom: 53/980
  34787. }
  34788. },
  34789. backBeast: {
  34790. height: math.unit(40, "feet"),
  34791. weight: math.unit(64000, "lb"),
  34792. name: "Back (Beast)",
  34793. image: {
  34794. source: "./media/characters/midnight-tales/back-beast.svg",
  34795. extra: 929/855,
  34796. bottom: 16/945
  34797. }
  34798. },
  34799. footBeast: {
  34800. height: math.unit(6.7, "feet"),
  34801. name: "Foot (Beast)",
  34802. image: {
  34803. source: "./media/characters/midnight-tales/foot-beast.svg"
  34804. }
  34805. },
  34806. headBeast: {
  34807. height: math.unit(8, "feet"),
  34808. name: "Head (Beast)",
  34809. image: {
  34810. source: "./media/characters/midnight-tales/head-beast.svg"
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(5 + 5 / 12, "feet"),
  34818. default: true
  34819. },
  34820. {
  34821. name: "Macro",
  34822. height: math.unit(25, "feet")
  34823. },
  34824. ]
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(5 + 10/12, "feet"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/argon/front.svg",
  34834. extra: 2009/1935,
  34835. bottom: 118/2127
  34836. }
  34837. },
  34838. back: {
  34839. height: math.unit(5 + 10/12, "feet"),
  34840. name: "Back",
  34841. image: {
  34842. source: "./media/characters/argon/back.svg",
  34843. extra: 2047/1992,
  34844. bottom: 20/2067
  34845. }
  34846. },
  34847. frontDressed: {
  34848. height: math.unit(5 + 10/12, "feet"),
  34849. name: "Front (Dressed)",
  34850. image: {
  34851. source: "./media/characters/argon/front-dressed.svg",
  34852. extra: 2009/1935,
  34853. bottom: 118/2127
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(5 + 10/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34867. {
  34868. front: {
  34869. height: math.unit(8 + 6/12, "feet"),
  34870. weight: math.unit(1150, "lb"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/kichi/front.svg",
  34874. extra: 1267/1164,
  34875. bottom: 61/1328
  34876. }
  34877. },
  34878. back: {
  34879. height: math.unit(8 + 6/12, "feet"),
  34880. weight: math.unit(1150, "lb"),
  34881. name: "Back",
  34882. image: {
  34883. source: "./media/characters/kichi/back.svg",
  34884. extra: 1273/1166,
  34885. bottom: 33/1306
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(8 + 6/12, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(6, "feet"),
  34902. weight: math.unit(210, "lb"),
  34903. name: "Front",
  34904. image: {
  34905. source: "./media/characters/manetel-greyscale/front.svg",
  34906. extra: 350/312,
  34907. bottom: 8/358
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Micro",
  34914. height: math.unit(2, "inches")
  34915. },
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(6, "feet"),
  34919. default: true
  34920. },
  34921. {
  34922. name: "Minimacro",
  34923. height: math.unit(17, "feet")
  34924. },
  34925. {
  34926. name: "Macro",
  34927. height: math.unit(117, "feet")
  34928. },
  34929. ]
  34930. ))
  34931. characterMakers.push(() => makeCharacter(
  34932. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34933. {
  34934. side: {
  34935. height: math.unit(5 + 1/12, "feet"),
  34936. weight: math.unit(418, "lb"),
  34937. name: "Side",
  34938. image: {
  34939. source: "./media/characters/softpurr/side.svg",
  34940. extra: 1993/1945,
  34941. bottom: 134/2127
  34942. }
  34943. },
  34944. front: {
  34945. height: math.unit(5 + 1/12, "feet"),
  34946. weight: math.unit(418, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/softpurr/front.svg",
  34950. extra: 1950/1856,
  34951. bottom: 174/2124
  34952. }
  34953. },
  34954. paw: {
  34955. height: math.unit(1, "feet"),
  34956. name: "Paw",
  34957. image: {
  34958. source: "./media/characters/softpurr/paw.svg"
  34959. }
  34960. },
  34961. },
  34962. [
  34963. {
  34964. name: "Normal",
  34965. height: math.unit(5 + 1/12, "feet"),
  34966. default: true
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(260, "meters"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/anahita/front.svg",
  34978. extra: 665/635,
  34979. bottom: 89/754
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Macro",
  34986. height: math.unit(260, "meters"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(4 + 10/12, "feet"),
  34996. weight: math.unit(160, "lb"),
  34997. name: "Front",
  34998. image: {
  34999. source: "./media/characters/chip-mouse/front.svg",
  35000. extra: 3528/3408,
  35001. bottom: 0/3528
  35002. }
  35003. },
  35004. frontNsfw: {
  35005. height: math.unit(4 + 10/12, "feet"),
  35006. weight: math.unit(160, "lb"),
  35007. name: "Front (NSFW)",
  35008. image: {
  35009. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35010. extra: 3528/3408,
  35011. bottom: 0/3528
  35012. }
  35013. },
  35014. },
  35015. [
  35016. {
  35017. name: "Normal",
  35018. height: math.unit(4 + 10/12, "feet"),
  35019. default: true
  35020. },
  35021. ]
  35022. ))
  35023. characterMakers.push(() => makeCharacter(
  35024. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35025. {
  35026. side: {
  35027. height: math.unit(10, "feet"),
  35028. weight: math.unit(14000, "lb"),
  35029. name: "Side",
  35030. image: {
  35031. source: "./media/characters/kremm/side.svg",
  35032. extra: 1390/1053,
  35033. bottom: 90/1480
  35034. }
  35035. },
  35036. gut: {
  35037. height: math.unit(5.8, "feet"),
  35038. name: "Gut",
  35039. image: {
  35040. source: "./media/characters/kremm/gut.svg"
  35041. }
  35042. },
  35043. ass: {
  35044. height: math.unit(6.1, "feet"),
  35045. name: "Ass",
  35046. image: {
  35047. source: "./media/characters/kremm/ass.svg"
  35048. }
  35049. },
  35050. jaws: {
  35051. height: math.unit(2.2, "feet"),
  35052. name: "Jaws",
  35053. image: {
  35054. source: "./media/characters/kremm/jaws.svg"
  35055. }
  35056. },
  35057. dick: {
  35058. height: math.unit(4.26, "feet"),
  35059. name: "Dick",
  35060. image: {
  35061. source: "./media/characters/kremm/dick.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(10, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(30, "stories"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/kai/front.svg",
  35081. extra: 1892/1718,
  35082. bottom: 162/2054
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Macro",
  35089. height: math.unit(30, "stories"),
  35090. default: true
  35091. },
  35092. ]
  35093. ))
  35094. characterMakers.push(() => makeCharacter(
  35095. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35096. {
  35097. front: {
  35098. height: math.unit(6 + 4/12, "feet"),
  35099. weight: math.unit(145, "lb"),
  35100. name: "Front",
  35101. image: {
  35102. source: "./media/characters/sykes/front.svg",
  35103. extra: 1321 / 1187,
  35104. bottom: 66 / 1387
  35105. }
  35106. },
  35107. back: {
  35108. height: math.unit(6 + 4/12, "feet"),
  35109. weight: math.unit(145, "lb"),
  35110. name: "Back",
  35111. image: {
  35112. source: "./media/characters/sykes/back.svg",
  35113. extra: 1326/1181,
  35114. bottom: 31/1357
  35115. }
  35116. },
  35117. traditionalOutfit: {
  35118. height: math.unit(6 + 4/12, "feet"),
  35119. weight: math.unit(145, "lb"),
  35120. name: "Traditional Outfit",
  35121. image: {
  35122. source: "./media/characters/sykes/traditional-outfit.svg",
  35123. extra: 1321 / 1187,
  35124. bottom: 66 / 1387
  35125. }
  35126. },
  35127. adventureOutfit: {
  35128. height: math.unit(6 + 4/12, "feet"),
  35129. weight: math.unit(145, "lb"),
  35130. name: "Adventure Outfit",
  35131. image: {
  35132. source: "./media/characters/sykes/adventure-outfit.svg",
  35133. extra: 1321 / 1187,
  35134. bottom: 66 / 1387
  35135. }
  35136. },
  35137. handLeft: {
  35138. height: math.unit(0.9, "feet"),
  35139. name: "Hand (Left)",
  35140. image: {
  35141. source: "./media/characters/sykes/hand-left.svg"
  35142. }
  35143. },
  35144. handRight: {
  35145. height: math.unit(0.839, "feet"),
  35146. name: "Hand (Right)",
  35147. image: {
  35148. source: "./media/characters/sykes/hand-right.svg"
  35149. }
  35150. },
  35151. leftFoot: {
  35152. height: math.unit(1.2, "feet"),
  35153. name: "Foot (Left)",
  35154. image: {
  35155. source: "./media/characters/sykes/foot-left.svg"
  35156. }
  35157. },
  35158. rightFoot: {
  35159. height: math.unit(1.2, "feet"),
  35160. name: "Foot (Right)",
  35161. image: {
  35162. source: "./media/characters/sykes/foot-right.svg"
  35163. }
  35164. },
  35165. maw: {
  35166. height: math.unit(1.93, "feet"),
  35167. name: "Maw",
  35168. image: {
  35169. source: "./media/characters/sykes/maw.svg"
  35170. }
  35171. },
  35172. teeth: {
  35173. height: math.unit(0.51, "feet"),
  35174. name: "Teeth",
  35175. image: {
  35176. source: "./media/characters/sykes/teeth.svg"
  35177. }
  35178. },
  35179. tongue: {
  35180. height: math.unit(2.13, "feet"),
  35181. name: "Tongue",
  35182. image: {
  35183. source: "./media/characters/sykes/tongue.svg"
  35184. }
  35185. },
  35186. uvula: {
  35187. height: math.unit(0.16, "feet"),
  35188. name: "Uvula",
  35189. image: {
  35190. source: "./media/characters/sykes/uvula.svg"
  35191. }
  35192. },
  35193. collar: {
  35194. height: math.unit(0.287, "feet"),
  35195. name: "Collar",
  35196. image: {
  35197. source: "./media/characters/sykes/collar.svg"
  35198. }
  35199. },
  35200. tail: {
  35201. height: math.unit(3.8, "feet"),
  35202. name: "Tail",
  35203. image: {
  35204. source: "./media/characters/sykes/tail.svg"
  35205. }
  35206. },
  35207. },
  35208. [
  35209. {
  35210. name: "Shrunken",
  35211. height: math.unit(5, "inches")
  35212. },
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(6 + 4 / 12, "feet"),
  35216. default: true
  35217. },
  35218. {
  35219. name: "Big",
  35220. height: math.unit(15, "feet")
  35221. },
  35222. ]
  35223. ))
  35224. characterMakers.push(() => makeCharacter(
  35225. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35226. {
  35227. front: {
  35228. height: math.unit(5 + 8/12, "feet"),
  35229. weight: math.unit(190, "lb"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/oven-otter/front.svg",
  35233. extra: 1809/1740,
  35234. bottom: 181/1990
  35235. }
  35236. },
  35237. back: {
  35238. height: math.unit(5 + 8/12, "feet"),
  35239. weight: math.unit(190, "lb"),
  35240. name: "Back",
  35241. image: {
  35242. source: "./media/characters/oven-otter/back.svg",
  35243. extra: 1709/1635,
  35244. bottom: 118/1827
  35245. }
  35246. },
  35247. hand: {
  35248. height: math.unit(1.07, "feet"),
  35249. name: "Hand",
  35250. image: {
  35251. source: "./media/characters/oven-otter/hand.svg"
  35252. }
  35253. },
  35254. beans: {
  35255. height: math.unit(1.74, "feet"),
  35256. name: "Beans",
  35257. image: {
  35258. source: "./media/characters/oven-otter/beans.svg"
  35259. }
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Micro",
  35265. height: math.unit(0.5, "inches")
  35266. },
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(5 + 8/12, "feet"),
  35270. default: true
  35271. },
  35272. {
  35273. name: "Macro",
  35274. height: math.unit(250, "feet")
  35275. },
  35276. {
  35277. name: "Really High",
  35278. height: math.unit(420, "feet")
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(5, "meters"),
  35287. weight: math.unit(292000000000000, "kg"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/devourer/front.svg",
  35291. extra: 1800/1733,
  35292. bottom: 211/2011
  35293. }
  35294. },
  35295. maw: {
  35296. height: math.unit(1.1, "meter"),
  35297. name: "Maw",
  35298. image: {
  35299. source: "./media/characters/devourer/maw.svg"
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Small",
  35306. height: math.unit(3, "meters")
  35307. },
  35308. {
  35309. name: "Large",
  35310. height: math.unit(5, "meters"),
  35311. default: true
  35312. },
  35313. ]
  35314. ))
  35315. characterMakers.push(() => makeCharacter(
  35316. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35317. {
  35318. front: {
  35319. height: math.unit(6, "feet"),
  35320. weight: math.unit(400, "lb"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/ellarby/front.svg",
  35324. extra: 1909/1763,
  35325. bottom: 80/1989
  35326. }
  35327. },
  35328. back: {
  35329. height: math.unit(6, "feet"),
  35330. weight: math.unit(400, "lb"),
  35331. name: "Back",
  35332. image: {
  35333. source: "./media/characters/ellarby/back.svg",
  35334. extra: 1914/1784,
  35335. bottom: 172/2086
  35336. }
  35337. },
  35338. },
  35339. [
  35340. {
  35341. name: "Mischief",
  35342. height: math.unit(18, "inches")
  35343. },
  35344. {
  35345. name: "Trouble",
  35346. height: math.unit(12, "feet")
  35347. },
  35348. {
  35349. name: "Havoc",
  35350. height: math.unit(200, "feet"),
  35351. default: true
  35352. },
  35353. {
  35354. name: "Pandemonium",
  35355. height: math.unit(1, "mile")
  35356. },
  35357. {
  35358. name: "Catastrophe",
  35359. height: math.unit(100, "miles")
  35360. },
  35361. ]
  35362. ))
  35363. characterMakers.push(() => makeCharacter(
  35364. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35365. {
  35366. front: {
  35367. height: math.unit(4.7, "meters"),
  35368. weight: math.unit(6500, "kg"),
  35369. name: "Front",
  35370. image: {
  35371. source: "./media/characters/vex/front.svg",
  35372. extra: 1288/1140,
  35373. bottom: 100/1388
  35374. }
  35375. },
  35376. },
  35377. [
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(4.7, "meters"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35387. {
  35388. normal: {
  35389. height: math.unit(6, "feet"),
  35390. weight: math.unit(350, "lb"),
  35391. name: "Normal",
  35392. image: {
  35393. source: "./media/characters/teshy/normal.svg",
  35394. extra: 1795/1735,
  35395. bottom: 16/1811
  35396. }
  35397. },
  35398. monsterFront: {
  35399. height: math.unit(12, "feet"),
  35400. weight: math.unit(4700, "lb"),
  35401. name: "Monster (Front)",
  35402. image: {
  35403. source: "./media/characters/teshy/monster-front.svg",
  35404. extra: 2042/2034,
  35405. bottom: 128/2170
  35406. }
  35407. },
  35408. monsterSide: {
  35409. height: math.unit(12, "feet"),
  35410. weight: math.unit(4700, "lb"),
  35411. name: "Monster (Side)",
  35412. image: {
  35413. source: "./media/characters/teshy/monster-side.svg",
  35414. extra: 2067/2056,
  35415. bottom: 70/2137
  35416. }
  35417. },
  35418. monsterBack: {
  35419. height: math.unit(12, "feet"),
  35420. weight: math.unit(4700, "lb"),
  35421. name: "Monster (Back)",
  35422. image: {
  35423. source: "./media/characters/teshy/monster-back.svg",
  35424. extra: 1921/1914,
  35425. bottom: 171/2092
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(6, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(6, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/ramey/front.svg",
  35445. extra: 790/787,
  35446. bottom: 27/817
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(6, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(5 + 5/12, "feet"),
  35463. weight: math.unit(120, "lb"),
  35464. name: "Front",
  35465. image: {
  35466. source: "./media/characters/phirae/front.svg",
  35467. extra: 2491/2436,
  35468. bottom: 38/2529
  35469. }
  35470. },
  35471. },
  35472. [
  35473. {
  35474. name: "Normal",
  35475. height: math.unit(5 + 5/12, "feet"),
  35476. default: true
  35477. },
  35478. ]
  35479. ))
  35480. characterMakers.push(() => makeCharacter(
  35481. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35482. {
  35483. front: {
  35484. height: math.unit(5 + 3/12, "feet"),
  35485. name: "Front",
  35486. image: {
  35487. source: "./media/characters/stagglas/front.svg",
  35488. extra: 962/882,
  35489. bottom: 53/1015
  35490. }
  35491. },
  35492. feral: {
  35493. height: math.unit(335, "cm"),
  35494. name: "Feral",
  35495. image: {
  35496. source: "./media/characters/stagglas/feral.svg",
  35497. extra: 1732/1090,
  35498. bottom: 48/1780
  35499. }
  35500. },
  35501. },
  35502. [
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(5 + 3/12, "feet"),
  35506. default: true
  35507. },
  35508. ]
  35509. ))
  35510. characterMakers.push(() => makeCharacter(
  35511. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35512. {
  35513. front: {
  35514. height: math.unit(5 + 4/12, "feet"),
  35515. weight: math.unit(145, "lb"),
  35516. name: "Front",
  35517. image: {
  35518. source: "./media/characters/starra/front.svg",
  35519. extra: 1790/1691,
  35520. bottom: 91/1881
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Normal",
  35527. height: math.unit(5 + 4/12, "feet"),
  35528. default: true
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(2.2, "meters"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35540. extra: 1194/1005,
  35541. bottom: 25/1219
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(2.2, "meters"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35555. {
  35556. side: {
  35557. height: math.unit(8 + 2/12, "feet"),
  35558. weight: math.unit(1240, "lb"),
  35559. name: "Side",
  35560. image: {
  35561. source: "./media/characters/mika-valentine/side.svg",
  35562. extra: 2670/2501,
  35563. bottom: 250/2920
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Normal",
  35570. height: math.unit(8 + 2/12, "feet"),
  35571. default: true
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35577. {
  35578. front: {
  35579. height: math.unit(7 + 2/12, "feet"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/xoltol/front.svg",
  35583. extra: 2212/2124,
  35584. bottom: 84/2296
  35585. }
  35586. },
  35587. side: {
  35588. height: math.unit(7 + 2/12, "feet"),
  35589. name: "Side",
  35590. image: {
  35591. source: "./media/characters/xoltol/side.svg",
  35592. extra: 2273/2197,
  35593. bottom: 26/2299
  35594. }
  35595. },
  35596. hand: {
  35597. height: math.unit(2.5, "feet"),
  35598. name: "Hand",
  35599. image: {
  35600. source: "./media/characters/xoltol/hand.svg"
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Small-ish",
  35607. height: math.unit(5 + 11/12, "feet")
  35608. },
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(7 + 2/12, "feet")
  35612. },
  35613. {
  35614. name: "\"Macro\"",
  35615. height: math.unit(14 + 9/12, "feet"),
  35616. default: true
  35617. },
  35618. {
  35619. name: "Alternate Height",
  35620. height: math.unit(20, "feet")
  35621. },
  35622. {
  35623. name: "Actually Macro",
  35624. height: math.unit(100, "feet")
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(5 + 2/12, "feet"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/kotetsu-redwood/front.svg",
  35636. extra: 1053/942,
  35637. bottom: 60/1113
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Normal",
  35644. height: math.unit(5 + 2/12, "feet"),
  35645. default: true
  35646. },
  35647. ]
  35648. ))
  35649. characterMakers.push(() => makeCharacter(
  35650. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35651. {
  35652. front: {
  35653. height: math.unit(2.4, "meters"),
  35654. weight: math.unit(125, "kg"),
  35655. name: "Front",
  35656. image: {
  35657. source: "./media/characters/lilith/front.svg",
  35658. extra: 1590/1513,
  35659. bottom: 203/1793
  35660. }
  35661. },
  35662. },
  35663. [
  35664. {
  35665. name: "Humanoid",
  35666. height: math.unit(2.4, "meters")
  35667. },
  35668. {
  35669. name: "Normal",
  35670. height: math.unit(6, "meters"),
  35671. default: true
  35672. },
  35673. {
  35674. name: "Largest",
  35675. height: math.unit(55, "meters")
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(8 + 4/12, "feet"),
  35684. weight: math.unit(535, "lb"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/beh'kah-bolger/front.svg",
  35688. extra: 1660/1603,
  35689. bottom: 37/1697
  35690. }
  35691. },
  35692. },
  35693. [
  35694. {
  35695. name: "Normal",
  35696. height: math.unit(8 + 4/12, "feet"),
  35697. default: true
  35698. },
  35699. {
  35700. name: "Kaiju",
  35701. height: math.unit(250, "feet")
  35702. },
  35703. {
  35704. name: "Still Growing",
  35705. height: math.unit(10, "miles")
  35706. },
  35707. {
  35708. name: "Continental",
  35709. height: math.unit(5000, "miles")
  35710. },
  35711. {
  35712. name: "Final Form",
  35713. height: math.unit(2500000, "miles")
  35714. },
  35715. ]
  35716. ))
  35717. characterMakers.push(() => makeCharacter(
  35718. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35719. {
  35720. front: {
  35721. height: math.unit(7 + 2/12, "feet"),
  35722. weight: math.unit(230, "kg"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/tatyana-milewska/front.svg",
  35726. extra: 1199/1150,
  35727. bottom: 86/1285
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(7 + 2/12, "feet"),
  35735. default: true
  35736. },
  35737. {
  35738. name: "Big",
  35739. height: math.unit(12, "feet")
  35740. },
  35741. {
  35742. name: "Minimacro",
  35743. height: math.unit(20, "feet")
  35744. },
  35745. {
  35746. name: "Macro",
  35747. height: math.unit(120, "feet")
  35748. },
  35749. ]
  35750. ))
  35751. characterMakers.push(() => makeCharacter(
  35752. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35753. {
  35754. front: {
  35755. height: math.unit(7 + 8/12, "feet"),
  35756. weight: math.unit(152, "kg"),
  35757. name: "Front",
  35758. image: {
  35759. source: "./media/characters/helen-arri/front.svg",
  35760. extra: 440/423,
  35761. bottom: 14/454
  35762. }
  35763. },
  35764. back: {
  35765. height: math.unit(7 + 8/12, "feet"),
  35766. weight: math.unit(152, "kg"),
  35767. name: "Back",
  35768. image: {
  35769. source: "./media/characters/helen-arri/back.svg",
  35770. extra: 443/426,
  35771. bottom: 8/451
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(7 + 8/12, "feet"),
  35779. default: true
  35780. },
  35781. {
  35782. name: "Big",
  35783. height: math.unit(14, "feet")
  35784. },
  35785. {
  35786. name: "Minimacro",
  35787. height: math.unit(24, "feet")
  35788. },
  35789. {
  35790. name: "Macro",
  35791. height: math.unit(140, "feet")
  35792. },
  35793. ]
  35794. ))
  35795. characterMakers.push(() => makeCharacter(
  35796. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35797. {
  35798. front: {
  35799. height: math.unit(6, "meters"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/ehanu-rehu/front.svg",
  35803. extra: 1800/1800,
  35804. bottom: 59/1859
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(6, "meters"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(7 + 3/12, "feet"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/renholder/front.svg",
  35824. extra: 3096/2960,
  35825. bottom: 250/3346
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal Bat",
  35832. height: math.unit(7 + 3/12, "feet"),
  35833. default: true
  35834. },
  35835. {
  35836. name: "Slightly Tall Bat",
  35837. height: math.unit(100, "feet")
  35838. },
  35839. {
  35840. name: "Big Bat",
  35841. height: math.unit(1000, "feet")
  35842. },
  35843. {
  35844. name: "City-Sized Bat",
  35845. height: math.unit(200000, "feet")
  35846. },
  35847. {
  35848. name: "Bigger Bat",
  35849. height: math.unit(10000, "miles")
  35850. },
  35851. {
  35852. name: "Solar Sized Bat",
  35853. height: math.unit(100, "AU")
  35854. },
  35855. {
  35856. name: "Galactic Bat",
  35857. height: math.unit(200000, "lightyears")
  35858. },
  35859. {
  35860. name: "Universally Known Bat",
  35861. height: math.unit(1, "universe")
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35867. {
  35868. front: {
  35869. height: math.unit(6 + 11/12, "feet"),
  35870. weight: math.unit(250, "lb"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/cookiecat/front.svg",
  35874. extra: 893/827,
  35875. bottom: 14/907
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Micro",
  35882. height: math.unit(3, "inches")
  35883. },
  35884. {
  35885. name: "Normal",
  35886. height: math.unit(6 + 11/12, "feet"),
  35887. default: true
  35888. },
  35889. {
  35890. name: "Macro",
  35891. height: math.unit(100, "feet")
  35892. },
  35893. {
  35894. name: "Macro+",
  35895. height: math.unit(404, "feet")
  35896. },
  35897. {
  35898. name: "Megamacro",
  35899. height: math.unit(165, "miles")
  35900. },
  35901. {
  35902. name: "Planetary",
  35903. height: math.unit(4600, "miles")
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(10 + 3/12, "feet"),
  35912. weight: math.unit(1500, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/tux-kusanagi/front.svg",
  35916. extra: 944/840,
  35917. bottom: 39/983
  35918. }
  35919. },
  35920. back: {
  35921. height: math.unit(10 + 3/12, "feet"),
  35922. weight: math.unit(1500, "lb"),
  35923. name: "Back",
  35924. image: {
  35925. source: "./media/characters/tux-kusanagi/back.svg",
  35926. extra: 941/842,
  35927. bottom: 28/969
  35928. }
  35929. },
  35930. rump: {
  35931. height: math.unit(5.25, "feet"),
  35932. name: "Rump",
  35933. image: {
  35934. source: "./media/characters/tux-kusanagi/rump.svg"
  35935. }
  35936. },
  35937. beak: {
  35938. height: math.unit(1.54, "feet"),
  35939. name: "Beak",
  35940. image: {
  35941. source: "./media/characters/tux-kusanagi/beak.svg"
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(10 + 3/12, "feet"),
  35949. default: true
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(58, "feet"),
  35958. weight: math.unit(200, "tons"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/uzarmazari/front.svg",
  35962. extra: 1575/1455,
  35963. bottom: 152/1727
  35964. }
  35965. },
  35966. back: {
  35967. height: math.unit(58, "feet"),
  35968. weight: math.unit(200, "tons"),
  35969. name: "Back",
  35970. image: {
  35971. source: "./media/characters/uzarmazari/back.svg",
  35972. extra: 1585/1510,
  35973. bottom: 157/1742
  35974. }
  35975. },
  35976. head: {
  35977. height: math.unit(26, "feet"),
  35978. name: "Head",
  35979. image: {
  35980. source: "./media/characters/uzarmazari/head.svg"
  35981. }
  35982. },
  35983. },
  35984. [
  35985. {
  35986. name: "Normal",
  35987. height: math.unit(58, "feet"),
  35988. default: true
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35994. {
  35995. side: {
  35996. height: math.unit(15, "feet"),
  35997. name: "Side",
  35998. image: {
  35999. source: "./media/characters/akitu/side.svg",
  36000. extra: 1421/1321,
  36001. bottom: 157/1578
  36002. }
  36003. },
  36004. front: {
  36005. height: math.unit(15, "feet"),
  36006. name: "Front",
  36007. image: {
  36008. source: "./media/characters/akitu/front.svg",
  36009. extra: 1435/1326,
  36010. bottom: 232/1667
  36011. }
  36012. },
  36013. },
  36014. [
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(15, "feet"),
  36018. default: true
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36024. {
  36025. front: {
  36026. height: math.unit(10 + 8/12, "feet"),
  36027. name: "Front",
  36028. image: {
  36029. source: "./media/characters/azalie-croixland/front.svg",
  36030. extra: 1972/1856,
  36031. bottom: 31/2003
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Original Height",
  36038. height: math.unit(5 + 4/12, "feet")
  36039. },
  36040. {
  36041. name: "Normal Height",
  36042. height: math.unit(10 + 8/12, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36049. {
  36050. side: {
  36051. height: math.unit(7 + 1/12, "feet"),
  36052. weight: math.unit(245, "lb"),
  36053. name: "Side",
  36054. image: {
  36055. source: "./media/characters/kavus-kazian/side.svg",
  36056. extra: 349/342,
  36057. bottom: 15/364
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(7 + 1/12, "feet"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36071. {
  36072. normalFront: {
  36073. height: math.unit(5 + 11/12, "feet"),
  36074. name: "Front",
  36075. image: {
  36076. source: "./media/characters/moonlight-rose/normal-front.svg",
  36077. extra: 1980/1825,
  36078. bottom: 18/1998
  36079. },
  36080. form: "normal",
  36081. default: true
  36082. },
  36083. normalBack: {
  36084. height: math.unit(5 + 11/12, "feet"),
  36085. name: "Back",
  36086. image: {
  36087. source: "./media/characters/moonlight-rose/normal-back.svg",
  36088. extra: 2010/1839,
  36089. bottom: 10/2020
  36090. },
  36091. form: "normal"
  36092. },
  36093. demonFront: {
  36094. height: math.unit(1.5, "earths"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/moonlight-rose/demon.svg",
  36098. extra: 1400/1294,
  36099. bottom: 45/1445
  36100. },
  36101. form: "demon",
  36102. default: true
  36103. },
  36104. terraFront: {
  36105. height: math.unit(1.5, "earths"),
  36106. name: "Front",
  36107. image: {
  36108. source: "./media/characters/moonlight-rose/terra.svg"
  36109. },
  36110. form: "terra",
  36111. default: true
  36112. },
  36113. jupiterFront: {
  36114. height: math.unit(69911*2, "km"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36118. extra: 1367/1286,
  36119. bottom: 55/1422
  36120. },
  36121. form: "jupiter",
  36122. default: true
  36123. },
  36124. neptuneFront: {
  36125. height: math.unit(24622*2, "feet"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36129. extra: 1851/1712,
  36130. bottom: 0/1851
  36131. },
  36132. form: "neptune",
  36133. default: true
  36134. },
  36135. },
  36136. [
  36137. {
  36138. name: "\"Natural\" Height",
  36139. height: math.unit(5 + 11/12, "feet"),
  36140. form: "normal"
  36141. },
  36142. {
  36143. name: "Smallest comfortable size",
  36144. height: math.unit(40, "meters"),
  36145. form: "normal"
  36146. },
  36147. {
  36148. name: "Common size",
  36149. height: math.unit(50, "km"),
  36150. form: "normal",
  36151. default: true
  36152. },
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(1.5, "earths"),
  36156. form: "demon",
  36157. default: true
  36158. },
  36159. {
  36160. name: "Universal",
  36161. height: math.unit(15, "universes"),
  36162. form: "demon"
  36163. },
  36164. {
  36165. name: "Earth",
  36166. height: math.unit(1.5, "earths"),
  36167. form: "terra",
  36168. default: true
  36169. },
  36170. {
  36171. name: "Super Earth",
  36172. height: math.unit(67.5, "earths"),
  36173. form: "terra"
  36174. },
  36175. {
  36176. name: "Doesn't fit in a solar system...",
  36177. height: math.unit(1, "galaxy"),
  36178. form: "terra"
  36179. },
  36180. {
  36181. name: "Saturn",
  36182. height: math.unit(58232*2, "km"),
  36183. form: "jupiter"
  36184. },
  36185. {
  36186. name: "Jupiter",
  36187. height: math.unit(69911*2, "km"),
  36188. form: "jupiter",
  36189. default: true
  36190. },
  36191. {
  36192. name: "HD 100546 b",
  36193. height: math.unit(482938, "km"),
  36194. form: "jupiter"
  36195. },
  36196. {
  36197. name: "Enceladus",
  36198. height: math.unit(513*2, "km"),
  36199. form: "neptune"
  36200. },
  36201. {
  36202. name: "Europe",
  36203. height: math.unit(1560*2, "km"),
  36204. form: "neptune"
  36205. },
  36206. {
  36207. name: "Neptune",
  36208. height: math.unit(24622*2, "km"),
  36209. form: "neptune",
  36210. default: true
  36211. },
  36212. {
  36213. name: "CoRoT-9b",
  36214. height: math.unit(75067*2, "km"),
  36215. form: "neptune"
  36216. },
  36217. ],
  36218. {
  36219. "normal": {
  36220. name: "Normal",
  36221. default: true
  36222. },
  36223. "demon": {
  36224. name: "Demon"
  36225. },
  36226. "terra": {
  36227. name: "Terra"
  36228. },
  36229. "jupiter": {
  36230. name: "Jupiter"
  36231. },
  36232. "neptune": {
  36233. name: "Neptune"
  36234. }
  36235. }
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(16, "feet"),
  36242. weight: math.unit(610, "kg"),
  36243. name: "Front",
  36244. image: {
  36245. source: "./media/characters/huckle/front.svg",
  36246. extra: 1731/1625,
  36247. bottom: 33/1764
  36248. }
  36249. },
  36250. back: {
  36251. height: math.unit(16, "feet"),
  36252. weight: math.unit(610, "kg"),
  36253. name: "Back",
  36254. image: {
  36255. source: "./media/characters/huckle/back.svg",
  36256. extra: 1738/1651,
  36257. bottom: 37/1775
  36258. }
  36259. },
  36260. laughing: {
  36261. height: math.unit(3.75, "feet"),
  36262. name: "Laughing",
  36263. image: {
  36264. source: "./media/characters/huckle/laughing.svg"
  36265. }
  36266. },
  36267. angry: {
  36268. height: math.unit(4.15, "feet"),
  36269. name: "Angry",
  36270. image: {
  36271. source: "./media/characters/huckle/angry.svg"
  36272. }
  36273. },
  36274. },
  36275. [
  36276. {
  36277. name: "Normal",
  36278. height: math.unit(16, "feet"),
  36279. default: true
  36280. },
  36281. {
  36282. name: "Mini Macro",
  36283. height: math.unit(463, "feet")
  36284. },
  36285. {
  36286. name: "Macro",
  36287. height: math.unit(1680, "meters")
  36288. },
  36289. {
  36290. name: "Mega Macro",
  36291. height: math.unit(175, "km")
  36292. },
  36293. {
  36294. name: "Terra Macro",
  36295. height: math.unit(32, "gigameters")
  36296. },
  36297. {
  36298. name: "Multiverse+",
  36299. height: math.unit(2.56e23, "yottameters")
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36305. {
  36306. front: {
  36307. height: math.unit(6 + 9/12, "feet"),
  36308. weight: math.unit(280, "lb"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/candy/front.svg",
  36312. extra: 234/217,
  36313. bottom: 11/245
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Really Small",
  36320. height: math.unit(0.1, "nm")
  36321. },
  36322. {
  36323. name: "Micro",
  36324. height: math.unit(2, "inches")
  36325. },
  36326. {
  36327. name: "Normal",
  36328. height: math.unit(6 + 9/12, "feet"),
  36329. default: true
  36330. },
  36331. {
  36332. name: "Small Macro",
  36333. height: math.unit(69, "feet")
  36334. },
  36335. {
  36336. name: "Macro",
  36337. height: math.unit(160, "feet")
  36338. },
  36339. {
  36340. name: "Megamacro",
  36341. height: math.unit(22000, "miles")
  36342. },
  36343. {
  36344. name: "Gigamacro",
  36345. height: math.unit(50000, "miles")
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(4, "feet"),
  36354. weight: math.unit(90, "lb"),
  36355. name: "Front",
  36356. image: {
  36357. source: "./media/characters/joey-mcdonald/front.svg",
  36358. extra: 1059/852,
  36359. bottom: 33/1092
  36360. }
  36361. },
  36362. back: {
  36363. height: math.unit(4, "feet"),
  36364. weight: math.unit(90, "lb"),
  36365. name: "Back",
  36366. image: {
  36367. source: "./media/characters/joey-mcdonald/back.svg",
  36368. extra: 1077/879,
  36369. bottom: 5/1082
  36370. }
  36371. },
  36372. frontKobold: {
  36373. height: math.unit(4, "feet"),
  36374. weight: math.unit(100, "lb"),
  36375. name: "Front-kobold",
  36376. image: {
  36377. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36378. extra: 1480/1367,
  36379. bottom: 0/1480
  36380. }
  36381. },
  36382. backKobold: {
  36383. height: math.unit(4, "feet"),
  36384. weight: math.unit(100, "lb"),
  36385. name: "Back-kobold",
  36386. image: {
  36387. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36388. extra: 1449/1361,
  36389. bottom: 0/1449
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(4, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(12 + 6/12, "feet"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/kass-lockheed/front.svg",
  36409. extra: 354/343,
  36410. bottom: 9/363
  36411. }
  36412. },
  36413. back: {
  36414. height: math.unit(12 + 6/12, "feet"),
  36415. name: "Back",
  36416. image: {
  36417. source: "./media/characters/kass-lockheed/back.svg",
  36418. extra: 364/352,
  36419. bottom: 3/367
  36420. }
  36421. },
  36422. dick: {
  36423. height: math.unit(3.12, "feet"),
  36424. name: "Dick",
  36425. image: {
  36426. source: "./media/characters/kass-lockheed/dick.svg"
  36427. }
  36428. },
  36429. head: {
  36430. height: math.unit(2.6, "feet"),
  36431. name: "Head",
  36432. image: {
  36433. source: "./media/characters/kass-lockheed/head.svg"
  36434. }
  36435. },
  36436. bleh: {
  36437. height: math.unit(2.85, "feet"),
  36438. name: "Bleh",
  36439. image: {
  36440. source: "./media/characters/kass-lockheed/bleh.svg"
  36441. }
  36442. },
  36443. smug: {
  36444. height: math.unit(2.85, "feet"),
  36445. name: "Smug",
  36446. image: {
  36447. source: "./media/characters/kass-lockheed/smug.svg"
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(12 + 6/12, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36461. {
  36462. front: {
  36463. height: math.unit(6 + 2/12, "feet"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/taylor/front.svg",
  36467. extra: 639/495,
  36468. bottom: 12/651
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(6 + 2/12, "feet"),
  36476. default: true
  36477. },
  36478. {
  36479. name: "Big",
  36480. height: math.unit(15, "feet")
  36481. },
  36482. {
  36483. name: "Lorg",
  36484. height: math.unit(80, "feet")
  36485. },
  36486. {
  36487. name: "Too Lorg",
  36488. height: math.unit(120, "feet")
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36494. {
  36495. front: {
  36496. height: math.unit(15, "feet"),
  36497. name: "Front",
  36498. image: {
  36499. source: "./media/characters/kaizer/front.svg",
  36500. extra: 1612/1436,
  36501. bottom: 43/1655
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(15, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(2, "feet"),
  36518. weight: math.unit(30, "lb"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/sandy/front.svg",
  36522. extra: 1439/1307,
  36523. bottom: 194/1633
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(2, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36537. {
  36538. front: {
  36539. height: math.unit(3, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/mellvi/front.svg",
  36543. extra: 1831/1630,
  36544. bottom: 58/1889
  36545. }
  36546. },
  36547. },
  36548. [
  36549. {
  36550. name: "Normal",
  36551. height: math.unit(3, "feet"),
  36552. default: true
  36553. },
  36554. ]
  36555. ))
  36556. characterMakers.push(() => makeCharacter(
  36557. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36558. {
  36559. front: {
  36560. height: math.unit(5 + 11/12, "feet"),
  36561. weight: math.unit(200, "lb"),
  36562. name: "Front",
  36563. image: {
  36564. source: "./media/characters/shirou/front.svg",
  36565. extra: 2491/2383,
  36566. bottom: 189/2680
  36567. }
  36568. },
  36569. back: {
  36570. height: math.unit(5 + 11/12, "feet"),
  36571. weight: math.unit(200, "lb"),
  36572. name: "Back",
  36573. image: {
  36574. source: "./media/characters/shirou/back.svg",
  36575. extra: 2554/2450,
  36576. bottom: 76/2630
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(5 + 11/12, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(6 + 3/12, "feet"),
  36593. weight: math.unit(177, "lb"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/noryu/front.svg",
  36597. extra: 973/885,
  36598. bottom: 10/983
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6 + 3/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(5 + 6/12, "feet"),
  36615. weight: math.unit(170, "lb"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/mevolas-rubenido/front.svg",
  36619. extra: 2109/1901,
  36620. bottom: 96/2205
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(5 + 6/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(100, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/dee/front.svg",
  36640. extra: 2153/2036,
  36641. bottom: 59/2212
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(100, "feet"),
  36646. name: "Back",
  36647. image: {
  36648. source: "./media/characters/dee/back.svg",
  36649. extra: 2183/2058,
  36650. bottom: 75/2258
  36651. }
  36652. },
  36653. foot: {
  36654. height: math.unit(19.43, "feet"),
  36655. name: "Foot",
  36656. image: {
  36657. source: "./media/characters/dee/foot.svg"
  36658. }
  36659. },
  36660. hoof: {
  36661. height: math.unit(20.6, "feet"),
  36662. name: "Hoof",
  36663. image: {
  36664. source: "./media/characters/dee/hoof.svg"
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Macro",
  36671. height: math.unit(100, "feet"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(5 + 6/12, "feet"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/teh/front.svg",
  36684. extra: 1002/847,
  36685. bottom: 62/1064
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(5 + 6/12, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36699. {
  36700. side: {
  36701. height: math.unit(6 + 1/12, "feet"),
  36702. weight: math.unit(204, "lb"),
  36703. name: "Side",
  36704. image: {
  36705. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36706. extra: 974/775,
  36707. bottom: 169/1143
  36708. }
  36709. },
  36710. sitting: {
  36711. height: math.unit(6 + 2/12, "feet"),
  36712. weight: math.unit(204, "lb"),
  36713. name: "Sitting",
  36714. image: {
  36715. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36716. extra: 1175/964,
  36717. bottom: 378/1553
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(6 + 1/12, "feet"),
  36725. default: true
  36726. },
  36727. ]
  36728. ))
  36729. characterMakers.push(() => makeCharacter(
  36730. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36731. {
  36732. front: {
  36733. height: math.unit(6, "inches"),
  36734. name: "Front",
  36735. image: {
  36736. source: "./media/characters/tululi/front.svg",
  36737. extra: 1997/1876,
  36738. bottom: 20/2017
  36739. }
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "Normal",
  36745. height: math.unit(6, "inches"),
  36746. default: true
  36747. },
  36748. ]
  36749. ))
  36750. characterMakers.push(() => makeCharacter(
  36751. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36752. {
  36753. front: {
  36754. height: math.unit(4 + 1/12, "feet"),
  36755. name: "Front",
  36756. image: {
  36757. source: "./media/characters/star/front.svg",
  36758. extra: 1493/1189,
  36759. bottom: 48/1541
  36760. }
  36761. },
  36762. },
  36763. [
  36764. {
  36765. name: "Normal",
  36766. height: math.unit(4 + 1/12, "feet"),
  36767. default: true
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(6 + 3/12, "feet"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/comet/front.svg",
  36779. extra: 1681/1462,
  36780. bottom: 26/1707
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(6 + 3/12, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(950, "feet"),
  36797. name: "Front",
  36798. image: {
  36799. source: "./media/characters/vortex/front.svg",
  36800. extra: 1497/1434,
  36801. bottom: 56/1553
  36802. }
  36803. },
  36804. maw: {
  36805. height: math.unit(285, "feet"),
  36806. name: "Maw",
  36807. image: {
  36808. source: "./media/characters/vortex/maw.svg"
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Macro",
  36815. height: math.unit(950, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(600, "feet"),
  36825. weight: math.unit(0.02, "grams"),
  36826. name: "Front",
  36827. image: {
  36828. source: "./media/characters/doodle/front.svg",
  36829. extra: 1578/1413,
  36830. bottom: 37/1615
  36831. }
  36832. },
  36833. },
  36834. [
  36835. {
  36836. name: "Macro",
  36837. height: math.unit(600, "feet"),
  36838. default: true
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(6 + 6/12, "feet"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/jai/front.svg",
  36850. extra: 1645/1534,
  36851. bottom: 115/1760
  36852. }
  36853. },
  36854. },
  36855. [
  36856. {
  36857. name: "Normal",
  36858. height: math.unit(6 + 6/12, "feet"),
  36859. default: true
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36865. {
  36866. front: {
  36867. height: math.unit(6 + 8/12, "feet"),
  36868. name: "Front",
  36869. image: {
  36870. source: "./media/characters/pixel/front.svg",
  36871. extra: 1900/1735,
  36872. bottom: 63/1963
  36873. }
  36874. },
  36875. },
  36876. [
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(6 + 8/12, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36886. {
  36887. back: {
  36888. height: math.unit(4 + 1/12, "feet"),
  36889. weight: math.unit(75, "lb"),
  36890. name: "Back",
  36891. image: {
  36892. source: "./media/characters/rhett/back.svg",
  36893. extra: 930/878,
  36894. bottom: 25/955
  36895. }
  36896. },
  36897. front: {
  36898. height: math.unit(4 + 1/12, "feet"),
  36899. weight: math.unit(75, "lb"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/rhett/front.svg",
  36903. extra: 1682/1586,
  36904. bottom: 92/1774
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Micro",
  36911. height: math.unit(8, "inches")
  36912. },
  36913. {
  36914. name: "Tiny",
  36915. height: math.unit(2, "feet")
  36916. },
  36917. {
  36918. name: "Normal",
  36919. height: math.unit(4 + 1/12, "feet"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(3 + 3/12, "feet"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/penny/front.svg",
  36932. extra: 1406/1311,
  36933. bottom: 26/1432
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(3 + 3/12, "feet"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36947. {
  36948. front: {
  36949. height: math.unit(4 + 11/12, "feet"),
  36950. name: "Front",
  36951. image: {
  36952. source: "./media/characters/monty/front.svg",
  36953. extra: 1479/1209,
  36954. bottom: 0/1479
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(4 + 11/12, "feet"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36968. {
  36969. front: {
  36970. height: math.unit(8 + 4/12, "feet"),
  36971. name: "Front",
  36972. image: {
  36973. source: "./media/characters/sterling/front.svg",
  36974. extra: 1420/1236,
  36975. bottom: 27/1447
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(8 + 4/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36989. {
  36990. front: {
  36991. height: math.unit(15, "feet"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/marble/front.svg",
  36995. extra: 973/937,
  36996. bottom: 32/1005
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(15, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37010. {
  37011. front: {
  37012. height: math.unit(3, "inches"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/powder/front.svg",
  37016. extra: 1504/1334,
  37017. bottom: 518/2022
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(3, "inches"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(4 + 5/12, "feet"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/joey-raccoon/front.svg",
  37037. extra: 1273/1197,
  37038. bottom: 0/1273
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(4 + 5/12, "feet"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37052. {
  37053. front: {
  37054. height: math.unit(8 + 4/12, "feet"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/vick/front.svg",
  37058. extra: 2187/2118,
  37059. bottom: 47/2234
  37060. }
  37061. },
  37062. },
  37063. [
  37064. {
  37065. name: "Normal",
  37066. height: math.unit(8 + 4/12, "feet"),
  37067. default: true
  37068. },
  37069. ]
  37070. ))
  37071. characterMakers.push(() => makeCharacter(
  37072. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37073. {
  37074. front: {
  37075. height: math.unit(5 + 5/12, "feet"),
  37076. name: "Front",
  37077. image: {
  37078. source: "./media/characters/mitsy/front.svg",
  37079. extra: 1842/1695,
  37080. bottom: 0/1842
  37081. }
  37082. },
  37083. },
  37084. [
  37085. {
  37086. name: "Normal",
  37087. height: math.unit(5 + 5/12, "feet"),
  37088. default: true
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(6 + 3/12, "feet"),
  37097. name: "Front",
  37098. image: {
  37099. source: "./media/characters/silvy/front.svg",
  37100. extra: 1995/1836,
  37101. bottom: 225/2220
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(6 + 3/12, "feet"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(3 + 8/12, "feet"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/rodney/front.svg",
  37121. extra: 1956/1747,
  37122. bottom: 31/1987
  37123. }
  37124. },
  37125. frontDressed: {
  37126. height: math.unit(2.9, "feet"),
  37127. name: "Front (Dressed)",
  37128. image: {
  37129. source: "./media/characters/rodney/front-dressed.svg",
  37130. extra: 1382/1241,
  37131. bottom: 385/1767
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(3 + 8/12, "feet"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37145. {
  37146. front: {
  37147. height: math.unit(5 + 9/12, "feet"),
  37148. weight: math.unit(194, "lbs"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/zakail-sudekai/front.svg",
  37152. extra: 2696/2533,
  37153. bottom: 248/2944
  37154. }
  37155. },
  37156. maw: {
  37157. height: math.unit(1.35, "feet"),
  37158. name: "Maw",
  37159. image: {
  37160. source: "./media/characters/zakail-sudekai/maw.svg"
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(5 + 9/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(8 + 4/12, "feet"),
  37177. weight: math.unit(1200, "lb"),
  37178. name: "Front",
  37179. image: {
  37180. source: "./media/characters/eleanor/front.svg",
  37181. extra: 1226/1192,
  37182. bottom: 52/1278
  37183. }
  37184. },
  37185. back: {
  37186. height: math.unit(8 + 4/12, "feet"),
  37187. weight: math.unit(1200, "lb"),
  37188. name: "Back",
  37189. image: {
  37190. source: "./media/characters/eleanor/back.svg",
  37191. extra: 1242/1184,
  37192. bottom: 60/1302
  37193. }
  37194. },
  37195. head: {
  37196. height: math.unit(2.62, "feet"),
  37197. name: "Head",
  37198. image: {
  37199. source: "./media/characters/eleanor/head.svg"
  37200. }
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "Normal",
  37206. height: math.unit(8 + 4/12, "feet"),
  37207. default: true
  37208. },
  37209. ]
  37210. ))
  37211. characterMakers.push(() => makeCharacter(
  37212. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37213. {
  37214. front: {
  37215. height: math.unit(8 + 4/12, "feet"),
  37216. weight: math.unit(750, "lb"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/tanya/front.svg",
  37220. extra: 1749/1615,
  37221. bottom: 33/1782
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(8 + 4/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(5, "feet"),
  37238. weight: math.unit(225, "lb"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/cindy/front.svg",
  37242. extra: 1320/1250,
  37243. bottom: 42/1362
  37244. }
  37245. },
  37246. frontDressed: {
  37247. height: math.unit(5, "feet"),
  37248. weight: math.unit(225, "lb"),
  37249. name: "Front (Dressed)",
  37250. image: {
  37251. source: "./media/characters/cindy/front-dressed.svg",
  37252. extra: 1320/1250,
  37253. bottom: 42/1362
  37254. }
  37255. },
  37256. back: {
  37257. height: math.unit(5, "feet"),
  37258. weight: math.unit(225, "lb"),
  37259. name: "Back",
  37260. image: {
  37261. source: "./media/characters/cindy/back.svg",
  37262. extra: 1384/1346,
  37263. bottom: 14/1398
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal",
  37270. height: math.unit(5, "feet"),
  37271. default: true
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37277. {
  37278. front: {
  37279. height: math.unit(6 + 9/12, "feet"),
  37280. weight: math.unit(440, "lb"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/wilbur-owen/front.svg",
  37284. extra: 1575/1448,
  37285. bottom: 72/1647
  37286. }
  37287. },
  37288. back: {
  37289. height: math.unit(6 + 9/12, "feet"),
  37290. weight: math.unit(440, "lb"),
  37291. name: "Back",
  37292. image: {
  37293. source: "./media/characters/wilbur-owen/back.svg",
  37294. extra: 1578/1445,
  37295. bottom: 36/1614
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(6 + 9/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(6 + 5/12, "feet"),
  37312. weight: math.unit(650, "lb"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/keegan/front.svg",
  37316. extra: 2387/2198,
  37317. bottom: 33/2420
  37318. }
  37319. },
  37320. side: {
  37321. height: math.unit(6 + 5/12, "feet"),
  37322. weight: math.unit(650, "lb"),
  37323. name: "Side",
  37324. image: {
  37325. source: "./media/characters/keegan/side.svg",
  37326. extra: 2390/2202,
  37327. bottom: 47/2437
  37328. }
  37329. },
  37330. back: {
  37331. height: math.unit(6 + 5/12, "feet"),
  37332. weight: math.unit(650, "lb"),
  37333. name: "Back",
  37334. image: {
  37335. source: "./media/characters/keegan/back.svg",
  37336. extra: 2418/2268,
  37337. bottom: 15/2433
  37338. }
  37339. },
  37340. frontSfw: {
  37341. height: math.unit(6 + 5/12, "feet"),
  37342. weight: math.unit(650, "lb"),
  37343. name: "Front (SFW)",
  37344. image: {
  37345. source: "./media/characters/keegan/front-sfw.svg",
  37346. extra: 2387/2198,
  37347. bottom: 33/2420
  37348. }
  37349. },
  37350. beans: {
  37351. height: math.unit(1.85, "feet"),
  37352. name: "Beans",
  37353. image: {
  37354. source: "./media/characters/keegan/beans.svg"
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(6 + 5/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(9, "feet"),
  37371. name: "Front",
  37372. image: {
  37373. source: "./media/characters/colton/front.svg",
  37374. extra: 1589/1326,
  37375. bottom: 139/1728
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(9, "feet"),
  37383. default: true
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(2 + 9/12, "feet"),
  37392. name: "Front",
  37393. image: {
  37394. source: "./media/characters/bora/front.svg",
  37395. extra: 1265/1250,
  37396. bottom: 24/1289
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(2 + 9/12, "feet"),
  37404. default: true
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(8, "feet"),
  37413. name: "Front",
  37414. image: {
  37415. source: "./media/characters/myu-myu/front.svg",
  37416. extra: 1949/1857,
  37417. bottom: 90/2039
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Normal",
  37424. height: math.unit(8, "feet"),
  37425. default: true
  37426. },
  37427. {
  37428. name: "Big",
  37429. height: math.unit(15, "feet")
  37430. },
  37431. {
  37432. name: "BIG",
  37433. height: math.unit(25, "feet")
  37434. },
  37435. ]
  37436. ))
  37437. characterMakers.push(() => makeCharacter(
  37438. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37439. {
  37440. side: {
  37441. height: math.unit(7 + 5/12, "feet"),
  37442. weight: math.unit(2800, "lb"),
  37443. name: "Side",
  37444. image: {
  37445. source: "./media/characters/haloren/side.svg",
  37446. extra: 1793/409,
  37447. bottom: 59/1852
  37448. }
  37449. },
  37450. frontPaw: {
  37451. height: math.unit(2.36, "feet"),
  37452. name: "Front paw",
  37453. image: {
  37454. source: "./media/characters/haloren/front-paw.svg"
  37455. }
  37456. },
  37457. hindPaw: {
  37458. height: math.unit(3.18, "feet"),
  37459. name: "Hind paw",
  37460. image: {
  37461. source: "./media/characters/haloren/hind-paw.svg"
  37462. }
  37463. },
  37464. maw: {
  37465. height: math.unit(5.05, "feet"),
  37466. name: "Maw",
  37467. image: {
  37468. source: "./media/characters/haloren/maw.svg"
  37469. }
  37470. },
  37471. dick: {
  37472. height: math.unit(2.90, "feet"),
  37473. name: "Dick",
  37474. image: {
  37475. source: "./media/characters/haloren/dick.svg"
  37476. }
  37477. },
  37478. },
  37479. [
  37480. {
  37481. name: "Normal",
  37482. height: math.unit(7 + 5/12, "feet"),
  37483. default: true
  37484. },
  37485. {
  37486. name: "Enhanced",
  37487. height: math.unit(14 + 3/12, "feet")
  37488. },
  37489. ]
  37490. ))
  37491. characterMakers.push(() => makeCharacter(
  37492. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37493. {
  37494. front: {
  37495. height: math.unit(171, "cm"),
  37496. name: "Front",
  37497. image: {
  37498. source: "./media/characters/kimmy/front.svg",
  37499. extra: 1491/1435,
  37500. bottom: 53/1544
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Small",
  37507. height: math.unit(9, "cm")
  37508. },
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(171, "cm"),
  37512. default: true
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(8, "feet"),
  37521. weight: math.unit(300, "lb"),
  37522. name: "Front",
  37523. image: {
  37524. source: "./media/characters/galeboomer/front.svg",
  37525. extra: 4651/4415,
  37526. bottom: 162/4813
  37527. }
  37528. },
  37529. back: {
  37530. height: math.unit(8, "feet"),
  37531. weight: math.unit(300, "lb"),
  37532. name: "Back",
  37533. image: {
  37534. source: "./media/characters/galeboomer/back.svg",
  37535. extra: 4544/4314,
  37536. bottom: 16/4560
  37537. }
  37538. },
  37539. frontAlt: {
  37540. height: math.unit(8, "feet"),
  37541. weight: math.unit(300, "lb"),
  37542. name: "Front (Alt)",
  37543. image: {
  37544. source: "./media/characters/galeboomer/front-alt.svg",
  37545. extra: 4458/4228,
  37546. bottom: 68/4526
  37547. }
  37548. },
  37549. maw: {
  37550. height: math.unit(1.2, "feet"),
  37551. name: "Maw",
  37552. image: {
  37553. source: "./media/characters/galeboomer/maw.svg"
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Normal",
  37560. height: math.unit(8, "feet"),
  37561. default: true
  37562. },
  37563. ]
  37564. ))
  37565. characterMakers.push(() => makeCharacter(
  37566. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37567. {
  37568. front: {
  37569. height: math.unit(5 + 9/12, "feet"),
  37570. weight: math.unit(120, "lb"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/chyr/front.svg",
  37574. extra: 1323/1254,
  37575. bottom: 63/1386
  37576. }
  37577. },
  37578. back: {
  37579. height: math.unit(5 + 9/12, "feet"),
  37580. weight: math.unit(120, "lb"),
  37581. name: "Back",
  37582. image: {
  37583. source: "./media/characters/chyr/back.svg",
  37584. extra: 1323/1252,
  37585. bottom: 48/1371
  37586. }
  37587. },
  37588. },
  37589. [
  37590. {
  37591. name: "Normal",
  37592. height: math.unit(5 + 9/12, "feet"),
  37593. default: true
  37594. },
  37595. ]
  37596. ))
  37597. characterMakers.push(() => makeCharacter(
  37598. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37599. {
  37600. front: {
  37601. height: math.unit(7, "feet"),
  37602. weight: math.unit(310, "lb"),
  37603. name: "Front",
  37604. image: {
  37605. source: "./media/characters/solarus/front.svg",
  37606. extra: 2415/2021,
  37607. bottom: 103/2518
  37608. }
  37609. },
  37610. back: {
  37611. height: math.unit(7, "feet"),
  37612. weight: math.unit(310, "lb"),
  37613. name: "Back",
  37614. image: {
  37615. source: "./media/characters/solarus/back.svg",
  37616. extra: 2463/2089,
  37617. bottom: 79/2542
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(7, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(16, "feet"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37637. extra: 1844/1780,
  37638. bottom: 58/1902
  37639. }
  37640. },
  37641. winterCoat: {
  37642. height: math.unit(16, "feet"),
  37643. name: "Winter Coat",
  37644. image: {
  37645. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37646. extra: 1807/1775,
  37647. bottom: 69/1876
  37648. }
  37649. },
  37650. },
  37651. [
  37652. {
  37653. name: "Normal",
  37654. height: math.unit(16, "feet"),
  37655. default: true
  37656. },
  37657. {
  37658. name: "Chicago Size",
  37659. height: math.unit(560, "feet")
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(11 + 6/12, "feet"),
  37668. weight: math.unit(1366, "lb"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/lexor/front.svg",
  37672. extra: 1560/1481,
  37673. bottom: 211/1771
  37674. }
  37675. },
  37676. back: {
  37677. height: math.unit(11 + 6/12, "feet"),
  37678. weight: math.unit(1366, "lb"),
  37679. name: "Back",
  37680. image: {
  37681. source: "./media/characters/lexor/back.svg",
  37682. extra: 1614/1533,
  37683. bottom: 76/1690
  37684. }
  37685. },
  37686. maw: {
  37687. height: math.unit(3, "feet"),
  37688. name: "Maw",
  37689. image: {
  37690. source: "./media/characters/lexor/maw.svg"
  37691. }
  37692. },
  37693. dick: {
  37694. height: math.unit(2.59, "feet"),
  37695. name: "Dick",
  37696. image: {
  37697. source: "./media/characters/lexor/dick.svg"
  37698. }
  37699. },
  37700. },
  37701. [
  37702. {
  37703. name: "Normal",
  37704. height: math.unit(11 + 6/12, "feet"),
  37705. default: true
  37706. },
  37707. ]
  37708. ))
  37709. characterMakers.push(() => makeCharacter(
  37710. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37711. {
  37712. front: {
  37713. height: math.unit(5 + 8/12, "feet"),
  37714. name: "Front",
  37715. image: {
  37716. source: "./media/characters/magnum/front.svg",
  37717. extra: 942/855,
  37718. bottom: 26/968
  37719. }
  37720. },
  37721. },
  37722. [
  37723. {
  37724. name: "Normal",
  37725. height: math.unit(5 + 8/12, "feet"),
  37726. default: true
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37732. {
  37733. front: {
  37734. height: math.unit(18 + 4/12, "feet"),
  37735. weight: math.unit(1500, "kg"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/solas-sharpsman/front.svg",
  37739. extra: 1698/1589,
  37740. bottom: 0/1698
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(18 + 4/12, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(5 + 5/12, "feet"),
  37757. weight: math.unit(180, "lb"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/october/front.svg",
  37761. extra: 1800/1650,
  37762. bottom: 0/1800
  37763. }
  37764. },
  37765. frontNsfw: {
  37766. height: math.unit(5 + 5/12, "feet"),
  37767. weight: math.unit(180, "lb"),
  37768. name: "Front (NSFW)",
  37769. image: {
  37770. source: "./media/characters/october/front-nsfw.svg",
  37771. extra: 1392/1307,
  37772. bottom: 42/1434
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(5 + 5/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(8 + 6/12, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/essynkardi/front.svg",
  37792. extra: 1914/1846,
  37793. bottom: 22/1936
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(8 + 6/12, "feet"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(6 + 6/12, "feet"),
  37810. weight: math.unit(7, "lb"),
  37811. name: "Front",
  37812. image: {
  37813. source: "./media/characters/icky/front.svg",
  37814. extra: 813/782,
  37815. bottom: 66/879
  37816. }
  37817. },
  37818. back: {
  37819. height: math.unit(6 + 6/12, "feet"),
  37820. weight: math.unit(7, "lb"),
  37821. name: "Back",
  37822. image: {
  37823. source: "./media/characters/icky/back.svg",
  37824. extra: 754/735,
  37825. bottom: 56/810
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal",
  37832. height: math.unit(6 + 6/12, "feet"),
  37833. default: true
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(15, "feet"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/rojas/front.svg",
  37845. extra: 1462/1408,
  37846. bottom: 95/1557
  37847. }
  37848. },
  37849. back: {
  37850. height: math.unit(15, "feet"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/rojas/back.svg",
  37854. extra: 1023/954,
  37855. bottom: 28/1051
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(15, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37869. {
  37870. frontHuman: {
  37871. height: math.unit(5 + 7/12, "feet"),
  37872. name: "Front (Human)",
  37873. image: {
  37874. source: "./media/characters/alek-dryagan/front-human.svg",
  37875. extra: 1687/1667,
  37876. bottom: 69/1756
  37877. }
  37878. },
  37879. backHuman: {
  37880. height: math.unit(5 + 7/12, "feet"),
  37881. name: "Back (Human)",
  37882. image: {
  37883. source: "./media/characters/alek-dryagan/back-human.svg",
  37884. extra: 1670/1649,
  37885. bottom: 65/1735
  37886. }
  37887. },
  37888. frontDemi: {
  37889. height: math.unit(65, "feet"),
  37890. name: "Front (Demi)",
  37891. image: {
  37892. source: "./media/characters/alek-dryagan/front-demi.svg",
  37893. extra: 1669/1642,
  37894. bottom: 49/1718
  37895. }
  37896. },
  37897. backDemi: {
  37898. height: math.unit(65, "feet"),
  37899. name: "Back (Demi)",
  37900. image: {
  37901. source: "./media/characters/alek-dryagan/back-demi.svg",
  37902. extra: 1658/1637,
  37903. bottom: 40/1698
  37904. }
  37905. },
  37906. mawHuman: {
  37907. height: math.unit(0.3, "feet"),
  37908. name: "Maw (Human)",
  37909. image: {
  37910. source: "./media/characters/alek-dryagan/maw-human.svg"
  37911. }
  37912. },
  37913. mawDemi: {
  37914. height: math.unit(3.8, "feet"),
  37915. name: "Maw (Demi)",
  37916. image: {
  37917. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37918. }
  37919. },
  37920. },
  37921. [
  37922. {
  37923. name: "Normal",
  37924. height: math.unit(5 + 7/12, "feet"),
  37925. default: true
  37926. },
  37927. ]
  37928. ))
  37929. characterMakers.push(() => makeCharacter(
  37930. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37931. {
  37932. frontHuman: {
  37933. height: math.unit(5 + 2/12, "feet"),
  37934. name: "Front (Human)",
  37935. image: {
  37936. source: "./media/characters/gen/front-human.svg",
  37937. extra: 1627/1538,
  37938. bottom: 71/1698
  37939. }
  37940. },
  37941. backHuman: {
  37942. height: math.unit(5 + 2/12, "feet"),
  37943. name: "Back (Human)",
  37944. image: {
  37945. source: "./media/characters/gen/back-human.svg",
  37946. extra: 1638/1548,
  37947. bottom: 69/1707
  37948. }
  37949. },
  37950. frontDemi: {
  37951. height: math.unit(5 + 2/12, "feet"),
  37952. name: "Front (Demi)",
  37953. image: {
  37954. source: "./media/characters/gen/front-demi.svg",
  37955. extra: 1627/1538,
  37956. bottom: 71/1698
  37957. }
  37958. },
  37959. backDemi: {
  37960. height: math.unit(5 + 2/12, "feet"),
  37961. name: "Back (Demi)",
  37962. image: {
  37963. source: "./media/characters/gen/back-demi.svg",
  37964. extra: 1638/1548,
  37965. bottom: 69/1707
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Normal",
  37972. height: math.unit(5 + 2/12, "feet"),
  37973. default: true
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37979. {
  37980. frontImp: {
  37981. height: math.unit(1 + 11/12, "feet"),
  37982. name: "Front (Imp)",
  37983. image: {
  37984. source: "./media/characters/max-kobold/front-imp.svg",
  37985. extra: 1238/1134,
  37986. bottom: 81/1319
  37987. }
  37988. },
  37989. backImp: {
  37990. height: math.unit(1 + 11/12, "feet"),
  37991. name: "Back (Imp)",
  37992. image: {
  37993. source: "./media/characters/max-kobold/back-imp.svg",
  37994. extra: 1334/1175,
  37995. bottom: 34/1368
  37996. }
  37997. },
  37998. frontDemi: {
  37999. height: math.unit(5 + 9/12, "feet"),
  38000. name: "Front (Demi)",
  38001. image: {
  38002. source: "./media/characters/max-kobold/front-demi.svg",
  38003. extra: 1715/1685,
  38004. bottom: 54/1769
  38005. }
  38006. },
  38007. backDemi: {
  38008. height: math.unit(5 + 9/12, "feet"),
  38009. name: "Back (Demi)",
  38010. image: {
  38011. source: "./media/characters/max-kobold/back-demi.svg",
  38012. extra: 1752/1729,
  38013. bottom: 41/1793
  38014. }
  38015. },
  38016. handImp: {
  38017. height: math.unit(0.45, "feet"),
  38018. name: "Hand (Imp)",
  38019. image: {
  38020. source: "./media/characters/max-kobold/hand.svg"
  38021. }
  38022. },
  38023. pawImp: {
  38024. height: math.unit(0.46, "feet"),
  38025. name: "Paw (Imp)",
  38026. image: {
  38027. source: "./media/characters/max-kobold/paw.svg"
  38028. }
  38029. },
  38030. handDemi: {
  38031. height: math.unit(0.80, "feet"),
  38032. name: "Hand (Demi)",
  38033. image: {
  38034. source: "./media/characters/max-kobold/hand.svg"
  38035. }
  38036. },
  38037. pawDemi: {
  38038. height: math.unit(1.1, "feet"),
  38039. name: "Paw (Demi)",
  38040. image: {
  38041. source: "./media/characters/max-kobold/paw.svg"
  38042. }
  38043. },
  38044. headImp: {
  38045. height: math.unit(1.33, "feet"),
  38046. name: "Head (Imp)",
  38047. image: {
  38048. source: "./media/characters/max-kobold/head-imp.svg"
  38049. }
  38050. },
  38051. mawImp: {
  38052. height: math.unit(0.75, "feet"),
  38053. name: "Maw (Imp)",
  38054. image: {
  38055. source: "./media/characters/max-kobold/maw-imp.svg"
  38056. }
  38057. },
  38058. mawDemi: {
  38059. height: math.unit(0.42, "feet"),
  38060. name: "Maw (Demi)",
  38061. image: {
  38062. source: "./media/characters/max-kobold/maw-demi.svg"
  38063. }
  38064. },
  38065. },
  38066. [
  38067. {
  38068. name: "Normal",
  38069. height: math.unit(1 + 11/12, "feet"),
  38070. default: true
  38071. },
  38072. ]
  38073. ))
  38074. characterMakers.push(() => makeCharacter(
  38075. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38076. {
  38077. front: {
  38078. height: math.unit(7 + 5/12, "feet"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/carbon/front.svg",
  38082. extra: 1754/1689,
  38083. bottom: 65/1819
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(7 + 5/12, "feet"),
  38088. name: "Back",
  38089. image: {
  38090. source: "./media/characters/carbon/back.svg",
  38091. extra: 1762/1695,
  38092. bottom: 24/1786
  38093. }
  38094. },
  38095. frontGigantamax: {
  38096. height: math.unit(150, "feet"),
  38097. name: "Front (Gigantamax)",
  38098. image: {
  38099. source: "./media/characters/carbon/front-gigantamax.svg",
  38100. extra: 1826/1669,
  38101. bottom: 59/1885
  38102. }
  38103. },
  38104. backGigantamax: {
  38105. height: math.unit(150, "feet"),
  38106. name: "Back (Gigantamax)",
  38107. image: {
  38108. source: "./media/characters/carbon/back-gigantamax.svg",
  38109. extra: 1796/1653,
  38110. bottom: 53/1849
  38111. }
  38112. },
  38113. maw: {
  38114. height: math.unit(0.48, "feet"),
  38115. name: "Maw",
  38116. image: {
  38117. source: "./media/characters/carbon/maw.svg"
  38118. }
  38119. },
  38120. mawGigantamax: {
  38121. height: math.unit(7.5, "feet"),
  38122. name: "Maw (Gigantamax)",
  38123. image: {
  38124. source: "./media/characters/carbon/maw-gigantamax.svg"
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(7 + 5/12, "feet"),
  38132. default: true
  38133. },
  38134. ]
  38135. ))
  38136. characterMakers.push(() => makeCharacter(
  38137. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38138. {
  38139. front: {
  38140. height: math.unit(6, "feet"),
  38141. name: "Front",
  38142. image: {
  38143. source: "./media/characters/maverick/front.svg",
  38144. extra: 1672/1661,
  38145. bottom: 85/1757
  38146. }
  38147. },
  38148. back: {
  38149. height: math.unit(6, "feet"),
  38150. name: "Back",
  38151. image: {
  38152. source: "./media/characters/maverick/back.svg",
  38153. extra: 1642/1631,
  38154. bottom: 38/1680
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(6, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(15, "feet"),
  38171. weight: math.unit(615, "lb"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/grockle/front.svg",
  38175. extra: 1535/1427,
  38176. bottom: 56/1591
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(15, "feet"),
  38184. default: true
  38185. },
  38186. {
  38187. name: "Large",
  38188. height: math.unit(150, "feet")
  38189. },
  38190. {
  38191. name: "Macro",
  38192. height: math.unit(1876, "feet")
  38193. },
  38194. {
  38195. name: "Mega Macro",
  38196. height: math.unit(121940, "feet")
  38197. },
  38198. {
  38199. name: "Giga Macro",
  38200. height: math.unit(750, "km")
  38201. },
  38202. {
  38203. name: "Tera Macro",
  38204. height: math.unit(750000, "km")
  38205. },
  38206. {
  38207. name: "Galactic",
  38208. height: math.unit(1.4e5, "km")
  38209. },
  38210. {
  38211. name: "Godlike",
  38212. height: math.unit(9.8e280, "galaxies")
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(11, "meters"),
  38221. weight: math.unit(20, "tonnes"),
  38222. name: "Front",
  38223. image: {
  38224. source: "./media/characters/alistair/front.svg",
  38225. extra: 1265/1009,
  38226. bottom: 93/1358
  38227. }
  38228. },
  38229. },
  38230. [
  38231. {
  38232. name: "Normal",
  38233. height: math.unit(11, "meters"),
  38234. default: true
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(5 + 8/12, "feet"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/haruka/front.svg",
  38246. extra: 2012/1952,
  38247. bottom: 0/2012
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(5 + 8/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38261. {
  38262. back: {
  38263. height: math.unit(9, "feet"),
  38264. name: "Back",
  38265. image: {
  38266. source: "./media/characters/vivian-sylveon/back.svg",
  38267. extra: 1853/1714,
  38268. bottom: 0/1853
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Normal",
  38275. height: math.unit(9, "feet"),
  38276. default: true
  38277. },
  38278. {
  38279. name: "Macro",
  38280. height: math.unit(500, "feet")
  38281. },
  38282. {
  38283. name: "Megamacro",
  38284. height: math.unit(600, "miles")
  38285. },
  38286. {
  38287. name: "Gigamacro",
  38288. height: math.unit(30000, "miles")
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38294. {
  38295. anthro: {
  38296. height: math.unit(5 + 10/12, "feet"),
  38297. weight: math.unit(100, "lb"),
  38298. name: "Anthro",
  38299. image: {
  38300. source: "./media/characters/daiki/anthro.svg",
  38301. extra: 1115/1027,
  38302. bottom: 69/1184
  38303. }
  38304. },
  38305. feral: {
  38306. height: math.unit(200, "feet"),
  38307. name: "Feral",
  38308. image: {
  38309. source: "./media/characters/daiki/feral.svg",
  38310. extra: 1256/313,
  38311. bottom: 39/1295
  38312. }
  38313. },
  38314. feralHead: {
  38315. height: math.unit(171, "feet"),
  38316. name: "Feral Head",
  38317. image: {
  38318. source: "./media/characters/daiki/feral-head.svg"
  38319. }
  38320. },
  38321. manaDragon: {
  38322. height: math.unit(170, "meters"),
  38323. name: "Mana-dragon",
  38324. image: {
  38325. source: "./media/characters/daiki/mana-dragon.svg",
  38326. extra: 763/420,
  38327. bottom: 97/860
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(5 + 10/12, "feet"),
  38335. default: true
  38336. },
  38337. ]
  38338. ))
  38339. characterMakers.push(() => makeCharacter(
  38340. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38341. {
  38342. fullyEquippedFront: {
  38343. height: math.unit(3 + 1/12, "feet"),
  38344. weight: math.unit(24, "lb"),
  38345. name: "Fully Equipped (Front)",
  38346. image: {
  38347. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38348. extra: 687/605,
  38349. bottom: 18/705
  38350. }
  38351. },
  38352. fullyEquippedBack: {
  38353. height: math.unit(3 + 1/12, "feet"),
  38354. weight: math.unit(24, "lb"),
  38355. name: "Fully Equipped (Back)",
  38356. image: {
  38357. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38358. extra: 689/590,
  38359. bottom: 18/707
  38360. }
  38361. },
  38362. dailyWear: {
  38363. height: math.unit(3 + 1/12, "feet"),
  38364. weight: math.unit(24, "lb"),
  38365. name: "Daily Wear",
  38366. image: {
  38367. source: "./media/characters/tea-spot/daily-wear.svg",
  38368. extra: 701/620,
  38369. bottom: 21/722
  38370. }
  38371. },
  38372. maidWork: {
  38373. height: math.unit(3 + 1/12, "feet"),
  38374. weight: math.unit(24, "lb"),
  38375. name: "Maid Work",
  38376. image: {
  38377. source: "./media/characters/tea-spot/maid-work.svg",
  38378. extra: 693/609,
  38379. bottom: 15/708
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(3 + 1/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(175, "cm"),
  38396. weight: math.unit(75, "kg"),
  38397. name: "Front",
  38398. image: {
  38399. source: "./media/characters/chee/front.svg",
  38400. extra: 1796/1740,
  38401. bottom: 40/1836
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Micro-Micro",
  38408. height: math.unit(1, "nm")
  38409. },
  38410. {
  38411. name: "Micro-erst",
  38412. height: math.unit(1, "micrometer")
  38413. },
  38414. {
  38415. name: "Micro-er",
  38416. height: math.unit(1, "cm")
  38417. },
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(175, "cm"),
  38421. default: true
  38422. },
  38423. {
  38424. name: "Macro",
  38425. height: math.unit(100, "m")
  38426. },
  38427. {
  38428. name: "Macro-er",
  38429. height: math.unit(1, "km")
  38430. },
  38431. {
  38432. name: "Macro-erst",
  38433. height: math.unit(10, "km")
  38434. },
  38435. {
  38436. name: "Macro-Macro",
  38437. height: math.unit(100, "km")
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(11 + 9/12, "feet"),
  38446. weight: math.unit(935, "lb"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/kingsley/front.svg",
  38450. extra: 1803/1674,
  38451. bottom: 127/1930
  38452. }
  38453. },
  38454. frontNude: {
  38455. height: math.unit(11 + 9/12, "feet"),
  38456. weight: math.unit(935, "lb"),
  38457. name: "Front (Nude)",
  38458. image: {
  38459. source: "./media/characters/kingsley/front-nude.svg",
  38460. extra: 1803/1674,
  38461. bottom: 127/1930
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(11 + 9/12, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38475. {
  38476. side: {
  38477. height: math.unit(9, "feet"),
  38478. name: "Side",
  38479. image: {
  38480. source: "./media/characters/rymel/side.svg",
  38481. extra: 792/469,
  38482. bottom: 121/913
  38483. }
  38484. },
  38485. maw: {
  38486. height: math.unit(2.4, "meters"),
  38487. name: "Maw",
  38488. image: {
  38489. source: "./media/characters/rymel/maw.svg"
  38490. }
  38491. },
  38492. },
  38493. [
  38494. {
  38495. name: "House Drake",
  38496. height: math.unit(2, "feet")
  38497. },
  38498. {
  38499. name: "Reduced",
  38500. height: math.unit(4.5, "feet")
  38501. },
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(9, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(1.74, "meters"),
  38514. weight: math.unit(55, "kg"),
  38515. name: "Front",
  38516. image: {
  38517. source: "./media/characters/rubus/front.svg",
  38518. extra: 1894/1742,
  38519. bottom: 44/1938
  38520. }
  38521. },
  38522. },
  38523. [
  38524. {
  38525. name: "Normal",
  38526. height: math.unit(1.74, "meters"),
  38527. default: true
  38528. },
  38529. ]
  38530. ))
  38531. characterMakers.push(() => makeCharacter(
  38532. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38533. {
  38534. front: {
  38535. height: math.unit(5 + 2/12, "feet"),
  38536. weight: math.unit(112, "lb"),
  38537. name: "Front",
  38538. image: {
  38539. source: "./media/characters/cassie-kingston/front.svg",
  38540. extra: 1438/1390,
  38541. bottom: 47/1485
  38542. }
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "Normal",
  38548. height: math.unit(5 + 2/12, "feet"),
  38549. default: true
  38550. },
  38551. {
  38552. name: "Macro",
  38553. height: math.unit(128, "feet")
  38554. },
  38555. {
  38556. name: "Megamacro",
  38557. height: math.unit(2.56, "miles")
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38563. {
  38564. front: {
  38565. height: math.unit(7, "feet"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/fox/front.svg",
  38569. extra: 1798/1703,
  38570. bottom: 55/1853
  38571. }
  38572. },
  38573. back: {
  38574. height: math.unit(7, "feet"),
  38575. name: "Back",
  38576. image: {
  38577. source: "./media/characters/fox/back.svg",
  38578. extra: 1748/1649,
  38579. bottom: 32/1780
  38580. }
  38581. },
  38582. head: {
  38583. height: math.unit(1.95, "feet"),
  38584. name: "Head",
  38585. image: {
  38586. source: "./media/characters/fox/head.svg"
  38587. }
  38588. },
  38589. dick: {
  38590. height: math.unit(1.33, "feet"),
  38591. name: "Dick",
  38592. image: {
  38593. source: "./media/characters/fox/dick.svg"
  38594. }
  38595. },
  38596. foot: {
  38597. height: math.unit(1, "feet"),
  38598. name: "Foot",
  38599. image: {
  38600. source: "./media/characters/fox/foot.svg"
  38601. }
  38602. },
  38603. paw: {
  38604. height: math.unit(0.92, "feet"),
  38605. name: "Paw",
  38606. image: {
  38607. source: "./media/characters/fox/paw.svg"
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Small",
  38614. height: math.unit(3, "inches")
  38615. },
  38616. {
  38617. name: "\"Realistic\"",
  38618. height: math.unit(7, "feet")
  38619. },
  38620. {
  38621. name: "Normal",
  38622. height: math.unit(150, "feet"),
  38623. default: true
  38624. },
  38625. {
  38626. name: "BIG",
  38627. height: math.unit(1200, "feet")
  38628. },
  38629. {
  38630. name: "👀",
  38631. height: math.unit(5, "miles")
  38632. },
  38633. {
  38634. name: "👀👀👀",
  38635. height: math.unit(64, "miles")
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(625, "feet"),
  38644. name: "Front",
  38645. image: {
  38646. source: "./media/characters/asonja-rossa/front.svg",
  38647. extra: 1833/1686,
  38648. bottom: 24/1857
  38649. }
  38650. },
  38651. back: {
  38652. height: math.unit(625, "feet"),
  38653. name: "Back",
  38654. image: {
  38655. source: "./media/characters/asonja-rossa/back.svg",
  38656. extra: 1852/1753,
  38657. bottom: 26/1878
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Macro",
  38664. height: math.unit(625, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38671. {
  38672. side: {
  38673. height: math.unit(8, "feet"),
  38674. name: "Side",
  38675. image: {
  38676. source: "./media/characters/rezukii/side.svg",
  38677. extra: 979/542,
  38678. bottom: 87/1066
  38679. }
  38680. },
  38681. sitting: {
  38682. height: math.unit(14.6, "feet"),
  38683. name: "Sitting",
  38684. image: {
  38685. source: "./media/characters/rezukii/sitting.svg",
  38686. extra: 1023/813,
  38687. bottom: 45/1068
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Tiny",
  38694. height: math.unit(2, "feet")
  38695. },
  38696. {
  38697. name: "Smol",
  38698. height: math.unit(4, "feet")
  38699. },
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(8, "feet"),
  38703. default: true
  38704. },
  38705. {
  38706. name: "Big",
  38707. height: math.unit(12, "feet")
  38708. },
  38709. {
  38710. name: "Macro",
  38711. height: math.unit(30, "feet")
  38712. },
  38713. ]
  38714. ))
  38715. characterMakers.push(() => makeCharacter(
  38716. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38717. {
  38718. front: {
  38719. height: math.unit(14, "feet"),
  38720. weight: math.unit(9.5, "tonnes"),
  38721. name: "Front",
  38722. image: {
  38723. source: "./media/characters/dawnheart/front.svg",
  38724. extra: 2792/2675,
  38725. bottom: 64/2856
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "Normal",
  38732. height: math.unit(14, "feet"),
  38733. default: true
  38734. },
  38735. ]
  38736. ))
  38737. characterMakers.push(() => makeCharacter(
  38738. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38739. {
  38740. front: {
  38741. height: math.unit(1.7, "m"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/gladi/front.svg",
  38745. extra: 1460/1362,
  38746. bottom: 19/1479
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(1.7, "m"),
  38751. name: "Back",
  38752. image: {
  38753. source: "./media/characters/gladi/back.svg",
  38754. extra: 1459/1357,
  38755. bottom: 12/1471
  38756. }
  38757. },
  38758. feral: {
  38759. height: math.unit(2.05, "m"),
  38760. name: "Feral",
  38761. image: {
  38762. source: "./media/characters/gladi/feral.svg",
  38763. extra: 821/557,
  38764. bottom: 91/912
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Shortest",
  38771. height: math.unit(70, "cm")
  38772. },
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(1.7, "m")
  38776. },
  38777. {
  38778. name: "Macro",
  38779. height: math.unit(10, "m"),
  38780. default: true
  38781. },
  38782. {
  38783. name: "Tallest",
  38784. height: math.unit(200, "m")
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38790. {
  38791. front: {
  38792. height: math.unit(5 + 7/12, "feet"),
  38793. weight: math.unit(2, "tons"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/erdno/front.svg",
  38797. extra: 1234/1129,
  38798. bottom: 35/1269
  38799. }
  38800. },
  38801. angled: {
  38802. height: math.unit(5 + 7/12, "feet"),
  38803. weight: math.unit(2, "tons"),
  38804. name: "Angled",
  38805. image: {
  38806. source: "./media/characters/erdno/angled.svg",
  38807. extra: 1185/1139,
  38808. bottom: 36/1221
  38809. }
  38810. },
  38811. side: {
  38812. height: math.unit(5 + 7/12, "feet"),
  38813. weight: math.unit(2, "tons"),
  38814. name: "Side",
  38815. image: {
  38816. source: "./media/characters/erdno/side.svg",
  38817. extra: 1191/1144,
  38818. bottom: 40/1231
  38819. }
  38820. },
  38821. back: {
  38822. height: math.unit(5 + 7/12, "feet"),
  38823. weight: math.unit(2, "tons"),
  38824. name: "Back",
  38825. image: {
  38826. source: "./media/characters/erdno/back.svg",
  38827. extra: 1202/1146,
  38828. bottom: 17/1219
  38829. }
  38830. },
  38831. frontNsfw: {
  38832. height: math.unit(5 + 7/12, "feet"),
  38833. weight: math.unit(2, "tons"),
  38834. name: "Front (NSFW)",
  38835. image: {
  38836. source: "./media/characters/erdno/front-nsfw.svg",
  38837. extra: 1234/1129,
  38838. bottom: 35/1269
  38839. }
  38840. },
  38841. angledNsfw: {
  38842. height: math.unit(5 + 7/12, "feet"),
  38843. weight: math.unit(2, "tons"),
  38844. name: "Angled (NSFW)",
  38845. image: {
  38846. source: "./media/characters/erdno/angled-nsfw.svg",
  38847. extra: 1185/1139,
  38848. bottom: 36/1221
  38849. }
  38850. },
  38851. sideNsfw: {
  38852. height: math.unit(5 + 7/12, "feet"),
  38853. weight: math.unit(2, "tons"),
  38854. name: "Side (NSFW)",
  38855. image: {
  38856. source: "./media/characters/erdno/side-nsfw.svg",
  38857. extra: 1191/1144,
  38858. bottom: 40/1231
  38859. }
  38860. },
  38861. backNsfw: {
  38862. height: math.unit(5 + 7/12, "feet"),
  38863. weight: math.unit(2, "tons"),
  38864. name: "Back (NSFW)",
  38865. image: {
  38866. source: "./media/characters/erdno/back-nsfw.svg",
  38867. extra: 1202/1146,
  38868. bottom: 17/1219
  38869. }
  38870. },
  38871. frontHyper: {
  38872. height: math.unit(5 + 7/12, "feet"),
  38873. weight: math.unit(2, "tons"),
  38874. name: "Front (Hyper)",
  38875. image: {
  38876. source: "./media/characters/erdno/front-hyper.svg",
  38877. extra: 1298/1136,
  38878. bottom: 35/1333
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(5 + 7/12, "feet"),
  38886. default: true
  38887. },
  38888. {
  38889. name: "Big",
  38890. height: math.unit(5.7, "meters")
  38891. },
  38892. {
  38893. name: "Macro",
  38894. height: math.unit(5.7, "kilometers")
  38895. },
  38896. {
  38897. name: "Megamacro",
  38898. height: math.unit(5.7, "earths")
  38899. },
  38900. ]
  38901. ))
  38902. characterMakers.push(() => makeCharacter(
  38903. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38904. {
  38905. front: {
  38906. height: math.unit(5 + 10/12, "feet"),
  38907. weight: math.unit(150, "lb"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/jamie/front.svg",
  38911. extra: 1908/1768,
  38912. bottom: 19/1927
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Minimum",
  38919. height: math.unit(2, "cm")
  38920. },
  38921. {
  38922. name: "Micro",
  38923. height: math.unit(3, "inches")
  38924. },
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(5 + 10/12, "feet"),
  38928. default: true
  38929. },
  38930. {
  38931. name: "Macro",
  38932. height: math.unit(150, "feet")
  38933. },
  38934. {
  38935. name: "Megamacro",
  38936. height: math.unit(10000, "m")
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38942. {
  38943. front: {
  38944. height: math.unit(2, "meters"),
  38945. weight: math.unit(100, "kg"),
  38946. name: "Front",
  38947. image: {
  38948. source: "./media/characters/shiron/front.svg",
  38949. extra: 2103/1985,
  38950. bottom: 98/2201
  38951. }
  38952. },
  38953. back: {
  38954. height: math.unit(2, "meters"),
  38955. weight: math.unit(100, "kg"),
  38956. name: "Back",
  38957. image: {
  38958. source: "./media/characters/shiron/back.svg",
  38959. extra: 2110/2015,
  38960. bottom: 89/2199
  38961. }
  38962. },
  38963. hand: {
  38964. height: math.unit(0.96, "feet"),
  38965. name: "Hand",
  38966. image: {
  38967. source: "./media/characters/shiron/hand.svg"
  38968. }
  38969. },
  38970. foot: {
  38971. height: math.unit(1.464, "feet"),
  38972. name: "Foot",
  38973. image: {
  38974. source: "./media/characters/shiron/foot.svg"
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(2, "meters")
  38982. },
  38983. {
  38984. name: "Macro",
  38985. height: math.unit(500, "meters"),
  38986. default: true
  38987. },
  38988. {
  38989. name: "Megamacro",
  38990. height: math.unit(20, "km")
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(6, "feet"),
  38999. name: "Front",
  39000. image: {
  39001. source: "./media/characters/sam/front.svg",
  39002. extra: 849/826,
  39003. bottom: 19/868
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Normal",
  39010. height: math.unit(6, "feet"),
  39011. default: true
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39017. {
  39018. front: {
  39019. height: math.unit(8 + 4/12, "feet"),
  39020. weight: math.unit(122, "kg"),
  39021. name: "Front",
  39022. image: {
  39023. source: "./media/characters/namori-kurogawa/front.svg",
  39024. extra: 1894/1576,
  39025. bottom: 34/1928
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Normal",
  39032. height: math.unit(8 + 4/12, "feet"),
  39033. default: true
  39034. },
  39035. ]
  39036. ))
  39037. characterMakers.push(() => makeCharacter(
  39038. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39039. {
  39040. front: {
  39041. height: math.unit(9, "feet"),
  39042. weight: math.unit(621, "lb"),
  39043. name: "Front",
  39044. image: {
  39045. source: "./media/characters/unmru/front.svg",
  39046. extra: 1853/1747,
  39047. bottom: 73/1926
  39048. }
  39049. },
  39050. side: {
  39051. height: math.unit(9, "feet"),
  39052. weight: math.unit(621, "lb"),
  39053. name: "Side",
  39054. image: {
  39055. source: "./media/characters/unmru/side.svg",
  39056. extra: 1781/1671,
  39057. bottom: 127/1908
  39058. }
  39059. },
  39060. back: {
  39061. height: math.unit(9, "feet"),
  39062. weight: math.unit(621, "lb"),
  39063. name: "Back",
  39064. image: {
  39065. source: "./media/characters/unmru/back.svg",
  39066. extra: 1894/1765,
  39067. bottom: 75/1969
  39068. }
  39069. },
  39070. dick: {
  39071. height: math.unit(3, "feet"),
  39072. weight: math.unit(35, "lb"),
  39073. name: "Dick",
  39074. image: {
  39075. source: "./media/characters/unmru/dick.svg"
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(9, "feet")
  39083. },
  39084. {
  39085. name: "Natural",
  39086. height: math.unit(27, "feet"),
  39087. default: true
  39088. },
  39089. {
  39090. name: "Giant",
  39091. height: math.unit(90, "feet")
  39092. },
  39093. {
  39094. name: "Kaiju",
  39095. height: math.unit(270, "feet")
  39096. },
  39097. {
  39098. name: "Macro",
  39099. height: math.unit(900, "feet")
  39100. },
  39101. {
  39102. name: "Macro+",
  39103. height: math.unit(2700, "feet")
  39104. },
  39105. {
  39106. name: "Megamacro",
  39107. height: math.unit(9000, "feet")
  39108. },
  39109. {
  39110. name: "City-Crushing",
  39111. height: math.unit(27000, "feet")
  39112. },
  39113. {
  39114. name: "Mountain-Mashing",
  39115. height: math.unit(90000, "feet")
  39116. },
  39117. {
  39118. name: "Earth-Eclipsing",
  39119. height: math.unit(2.7e8, "feet")
  39120. },
  39121. {
  39122. name: "Sol-Swallowing",
  39123. height: math.unit(9e10, "feet")
  39124. },
  39125. {
  39126. name: "Majoris-Munching",
  39127. height: math.unit(2.7e13, "feet")
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39133. {
  39134. front: {
  39135. height: math.unit(1, "inch"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/squeaks-mouse/front.svg",
  39139. extra: 352/308,
  39140. bottom: 25/377
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Micro",
  39147. height: math.unit(1, "inch"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39154. {
  39155. side: {
  39156. height: math.unit(35, "feet"),
  39157. name: "Side",
  39158. image: {
  39159. source: "./media/characters/sayko/side.svg",
  39160. extra: 1697/1021,
  39161. bottom: 82/1779
  39162. }
  39163. },
  39164. head: {
  39165. height: math.unit(16, "feet"),
  39166. name: "Head",
  39167. image: {
  39168. source: "./media/characters/sayko/head.svg"
  39169. }
  39170. },
  39171. forepaw: {
  39172. height: math.unit(7.85, "feet"),
  39173. name: "Forepaw",
  39174. image: {
  39175. source: "./media/characters/sayko/forepaw.svg"
  39176. }
  39177. },
  39178. hindpaw: {
  39179. height: math.unit(8.8, "feet"),
  39180. name: "Hindpaw",
  39181. image: {
  39182. source: "./media/characters/sayko/hindpaw.svg"
  39183. }
  39184. },
  39185. },
  39186. [
  39187. {
  39188. name: "Normal",
  39189. height: math.unit(35, "feet"),
  39190. default: true
  39191. },
  39192. {
  39193. name: "Colossus",
  39194. height: math.unit(100, "meters")
  39195. },
  39196. {
  39197. name: "\"Small\" Deity",
  39198. height: math.unit(1, "km")
  39199. },
  39200. {
  39201. name: "\"Large\" Deity",
  39202. height: math.unit(15, "km")
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(6, "feet"),
  39211. weight: math.unit(250, "lb"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/mukiro/front.svg",
  39215. extra: 1368/1310,
  39216. bottom: 34/1402
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(6, "feet"),
  39224. default: true
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(12 + 4/12, "feet"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39236. extra: 1346/1311,
  39237. bottom: 65/1411
  39238. }
  39239. },
  39240. },
  39241. [
  39242. {
  39243. name: "Base",
  39244. height: math.unit(12 + 4/12, "feet"),
  39245. default: true
  39246. },
  39247. {
  39248. name: "Macro",
  39249. height: math.unit(150, "feet")
  39250. },
  39251. {
  39252. name: "Mega",
  39253. height: math.unit(2, "miles")
  39254. },
  39255. {
  39256. name: "Demi God",
  39257. height: math.unit(4, "AU")
  39258. },
  39259. {
  39260. name: "God Size",
  39261. height: math.unit(1, "universe")
  39262. },
  39263. ]
  39264. ))
  39265. characterMakers.push(() => makeCharacter(
  39266. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39267. {
  39268. front: {
  39269. height: math.unit(3 + 3/12, "feet"),
  39270. weight: math.unit(88, "lb"),
  39271. name: "Front",
  39272. image: {
  39273. source: "./media/characters/trey/front.svg",
  39274. extra: 1815/1509,
  39275. bottom: 60/1875
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(3 + 3/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39289. {
  39290. front: {
  39291. height: math.unit(4, "meters"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/adelonda/front.svg",
  39295. extra: 1077/982,
  39296. bottom: 39/1116
  39297. }
  39298. },
  39299. back: {
  39300. height: math.unit(4, "meters"),
  39301. name: "Back",
  39302. image: {
  39303. source: "./media/characters/adelonda/back.svg",
  39304. extra: 1105/1003,
  39305. bottom: 25/1130
  39306. }
  39307. },
  39308. feral: {
  39309. height: math.unit(40/1.5, "meters"),
  39310. name: "Feral",
  39311. image: {
  39312. source: "./media/characters/adelonda/feral.svg",
  39313. extra: 597/271,
  39314. bottom: 387/984
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Normal",
  39321. height: math.unit(4, "meters"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(8 + 4/12, "feet"),
  39331. weight: math.unit(670, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/acadiel/front.svg",
  39335. extra: 1901/1595,
  39336. bottom: 142/2043
  39337. }
  39338. },
  39339. },
  39340. [
  39341. {
  39342. name: "Normal",
  39343. height: math.unit(8 + 4/12, "feet"),
  39344. default: true
  39345. },
  39346. {
  39347. name: "Macro",
  39348. height: math.unit(200, "feet")
  39349. },
  39350. ]
  39351. ))
  39352. characterMakers.push(() => makeCharacter(
  39353. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39354. {
  39355. front: {
  39356. height: math.unit(6 + 2/12, "feet"),
  39357. weight: math.unit(185, "lb"),
  39358. name: "Front",
  39359. image: {
  39360. source: "./media/characters/kayne-ein/front.svg",
  39361. extra: 1780/1560,
  39362. bottom: 81/1861
  39363. }
  39364. },
  39365. },
  39366. [
  39367. {
  39368. name: "Normal",
  39369. height: math.unit(6 + 2/12, "feet"),
  39370. default: true
  39371. },
  39372. {
  39373. name: "Transformation Stage",
  39374. height: math.unit(15, "feet")
  39375. },
  39376. {
  39377. name: "Macro",
  39378. height: math.unit(150, "feet")
  39379. },
  39380. {
  39381. name: "Earth's Shadow",
  39382. height: math.unit(6200, "miles")
  39383. },
  39384. {
  39385. name: "Universal Demon",
  39386. height: math.unit(28e9, "parsecs")
  39387. },
  39388. {
  39389. name: "Multiverse God",
  39390. height: math.unit(3, "multiverses")
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(5 + 5/12, "feet"),
  39399. name: "Front",
  39400. image: {
  39401. source: "./media/characters/fawn/front.svg",
  39402. extra: 1873/1731,
  39403. bottom: 95/1968
  39404. }
  39405. },
  39406. back: {
  39407. height: math.unit(5 + 5/12, "feet"),
  39408. name: "Back",
  39409. image: {
  39410. source: "./media/characters/fawn/back.svg",
  39411. extra: 1813/1700,
  39412. bottom: 14/1827
  39413. }
  39414. },
  39415. hoof: {
  39416. height: math.unit(1.45, "feet"),
  39417. name: "Hoof",
  39418. image: {
  39419. source: "./media/characters/fawn/hoof.svg"
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(5 + 5/12, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(2 + 5/12, "feet"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/orion/front.svg",
  39439. extra: 1366/1304,
  39440. bottom: 43/1409
  39441. }
  39442. },
  39443. paw: {
  39444. height: math.unit(0.52, "feet"),
  39445. name: "Paw",
  39446. image: {
  39447. source: "./media/characters/orion/paw.svg"
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(2 + 5/12, "feet"),
  39455. default: true
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39461. {
  39462. front: {
  39463. height: math.unit(5 + 10/12, "feet"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/vera/front.svg",
  39467. extra: 1680/1575,
  39468. bottom: 49/1729
  39469. }
  39470. },
  39471. back: {
  39472. height: math.unit(5 + 10/12, "feet"),
  39473. name: "Back",
  39474. image: {
  39475. source: "./media/characters/vera/back.svg",
  39476. extra: 1700/1588,
  39477. bottom: 18/1718
  39478. }
  39479. },
  39480. arcanine: {
  39481. height: math.unit(6 + 8/12, "feet"),
  39482. name: "Arcanine",
  39483. image: {
  39484. source: "./media/characters/vera/arcanine.svg",
  39485. extra: 1590/1511,
  39486. bottom: 71/1661
  39487. }
  39488. },
  39489. maw: {
  39490. height: math.unit(0.82, "feet"),
  39491. name: "Maw",
  39492. image: {
  39493. source: "./media/characters/vera/maw.svg"
  39494. }
  39495. },
  39496. mawArcanine: {
  39497. height: math.unit(0.97, "feet"),
  39498. name: "Maw (Arcanine)",
  39499. image: {
  39500. source: "./media/characters/vera/maw-arcanine.svg"
  39501. }
  39502. },
  39503. paw: {
  39504. height: math.unit(0.75, "feet"),
  39505. name: "Paw",
  39506. image: {
  39507. source: "./media/characters/vera/paw.svg"
  39508. }
  39509. },
  39510. pawprint: {
  39511. height: math.unit(0.52, "feet"),
  39512. name: "Pawprint",
  39513. image: {
  39514. source: "./media/characters/vera/pawprint.svg"
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Normal",
  39521. height: math.unit(5 + 10/12, "feet"),
  39522. default: true
  39523. },
  39524. {
  39525. name: "Macro",
  39526. height: math.unit(75, "feet")
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(4, "feet"),
  39535. weight: math.unit(40, "lb"),
  39536. name: "Front",
  39537. image: {
  39538. source: "./media/characters/orvan-rabbit/front.svg",
  39539. extra: 1896/1642,
  39540. bottom: 29/1925
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Normal",
  39547. height: math.unit(4, "feet"),
  39548. default: true
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(6, "feet"),
  39557. weight: math.unit(168, "lb"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/lisa/front.svg",
  39561. extra: 2065/1867,
  39562. bottom: 46/2111
  39563. }
  39564. },
  39565. back: {
  39566. height: math.unit(6, "feet"),
  39567. weight: math.unit(168, "lb"),
  39568. name: "Back",
  39569. image: {
  39570. source: "./media/characters/lisa/back.svg",
  39571. extra: 1982/1838,
  39572. bottom: 29/2011
  39573. }
  39574. },
  39575. maw: {
  39576. height: math.unit(0.81, "feet"),
  39577. name: "Maw",
  39578. image: {
  39579. source: "./media/characters/lisa/maw.svg"
  39580. }
  39581. },
  39582. paw: {
  39583. height: math.unit(0.9, "feet"),
  39584. name: "Paw",
  39585. image: {
  39586. source: "./media/characters/lisa/paw.svg"
  39587. }
  39588. },
  39589. caribousune: {
  39590. height: math.unit(7 + 2/12, "feet"),
  39591. weight: math.unit(268, "lb"),
  39592. name: "Caribousune",
  39593. image: {
  39594. source: "./media/characters/lisa/caribousune.svg",
  39595. extra: 1843/1633,
  39596. bottom: 29/1872
  39597. }
  39598. },
  39599. frontCaribousune: {
  39600. height: math.unit(7 + 2/12, "feet"),
  39601. weight: math.unit(268, "lb"),
  39602. name: "Front (Caribousune)",
  39603. image: {
  39604. source: "./media/characters/lisa/front-caribousune.svg",
  39605. extra: 1818/1638,
  39606. bottom: 52/1870
  39607. }
  39608. },
  39609. sideCaribousune: {
  39610. height: math.unit(7 + 2/12, "feet"),
  39611. weight: math.unit(268, "lb"),
  39612. name: "Side (Caribousune)",
  39613. image: {
  39614. source: "./media/characters/lisa/side-caribousune.svg",
  39615. extra: 1851/1635,
  39616. bottom: 16/1867
  39617. }
  39618. },
  39619. backCaribousune: {
  39620. height: math.unit(7 + 2/12, "feet"),
  39621. weight: math.unit(268, "lb"),
  39622. name: "Back (Caribousune)",
  39623. image: {
  39624. source: "./media/characters/lisa/back-caribousune.svg",
  39625. extra: 1801/1604,
  39626. bottom: 44/1845
  39627. }
  39628. },
  39629. caribou: {
  39630. height: math.unit(7 + 2/12, "feet"),
  39631. weight: math.unit(268, "lb"),
  39632. name: "Caribou",
  39633. image: {
  39634. source: "./media/characters/lisa/caribou.svg",
  39635. extra: 1843/1633,
  39636. bottom: 29/1872
  39637. }
  39638. },
  39639. frontCaribou: {
  39640. height: math.unit(7 + 2/12, "feet"),
  39641. weight: math.unit(268, "lb"),
  39642. name: "Front (Caribou)",
  39643. image: {
  39644. source: "./media/characters/lisa/front-caribou.svg",
  39645. extra: 1818/1638,
  39646. bottom: 52/1870
  39647. }
  39648. },
  39649. sideCaribou: {
  39650. height: math.unit(7 + 2/12, "feet"),
  39651. weight: math.unit(268, "lb"),
  39652. name: "Side (Caribou)",
  39653. image: {
  39654. source: "./media/characters/lisa/side-caribou.svg",
  39655. extra: 1851/1635,
  39656. bottom: 16/1867
  39657. }
  39658. },
  39659. backCaribou: {
  39660. height: math.unit(7 + 2/12, "feet"),
  39661. weight: math.unit(268, "lb"),
  39662. name: "Back (Caribou)",
  39663. image: {
  39664. source: "./media/characters/lisa/back-caribou.svg",
  39665. extra: 1801/1604,
  39666. bottom: 44/1845
  39667. }
  39668. },
  39669. mawCaribou: {
  39670. height: math.unit(1.45, "feet"),
  39671. name: "Maw (Caribou)",
  39672. image: {
  39673. source: "./media/characters/lisa/maw-caribou.svg"
  39674. }
  39675. },
  39676. mawCaribousune: {
  39677. height: math.unit(1.45, "feet"),
  39678. name: "Maw (Caribousune)",
  39679. image: {
  39680. source: "./media/characters/lisa/maw-caribousune.svg"
  39681. }
  39682. },
  39683. pawCaribousune: {
  39684. height: math.unit(1.61, "feet"),
  39685. name: "Paw (Caribou)",
  39686. image: {
  39687. source: "./media/characters/lisa/paw-caribousune.svg"
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(6, "feet")
  39695. },
  39696. {
  39697. name: "God Size",
  39698. height: math.unit(72, "feet"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Towering",
  39703. height: math.unit(288, "feet")
  39704. },
  39705. {
  39706. name: "City Size",
  39707. height: math.unit(48384, "feet")
  39708. },
  39709. {
  39710. name: "Continental",
  39711. height: math.unit(4200, "miles")
  39712. },
  39713. {
  39714. name: "Planet Eater",
  39715. height: math.unit(42, "earths")
  39716. },
  39717. {
  39718. name: "Star Swallower",
  39719. height: math.unit(42, "solarradii")
  39720. },
  39721. {
  39722. name: "System Swallower",
  39723. height: math.unit(84000, "AU")
  39724. },
  39725. {
  39726. name: "Galaxy Gobbler",
  39727. height: math.unit(42, "galaxies")
  39728. },
  39729. {
  39730. name: "Universe Devourer",
  39731. height: math.unit(42, "universes")
  39732. },
  39733. {
  39734. name: "Multiverse Muncher",
  39735. height: math.unit(42, "multiverses")
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39741. {
  39742. front: {
  39743. height: math.unit(36, "feet"),
  39744. name: "Front",
  39745. image: {
  39746. source: "./media/characters/shadow-rat/front.svg",
  39747. extra: 1845/1758,
  39748. bottom: 83/1928
  39749. }
  39750. },
  39751. },
  39752. [
  39753. {
  39754. name: "Macro",
  39755. height: math.unit(36, "feet"),
  39756. default: true
  39757. },
  39758. ]
  39759. ))
  39760. characterMakers.push(() => makeCharacter(
  39761. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39762. {
  39763. side: {
  39764. height: math.unit(8, "feet"),
  39765. weight: math.unit(2630, "lb"),
  39766. name: "Side",
  39767. image: {
  39768. source: "./media/characters/torallia/side.svg",
  39769. extra: 2164/2021,
  39770. bottom: 371/2535
  39771. }
  39772. },
  39773. },
  39774. [
  39775. {
  39776. name: "Mortal Interaction",
  39777. height: math.unit(8, "feet")
  39778. },
  39779. {
  39780. name: "Natural",
  39781. height: math.unit(24, "feet"),
  39782. default: true
  39783. },
  39784. {
  39785. name: "Giant",
  39786. height: math.unit(80, "feet")
  39787. },
  39788. {
  39789. name: "Kaiju",
  39790. height: math.unit(240, "feet")
  39791. },
  39792. {
  39793. name: "Macro",
  39794. height: math.unit(800, "feet")
  39795. },
  39796. {
  39797. name: "Macro+",
  39798. height: math.unit(2400, "feet")
  39799. },
  39800. {
  39801. name: "Macro++",
  39802. height: math.unit(8000, "feet")
  39803. },
  39804. {
  39805. name: "City-Crushing",
  39806. height: math.unit(24000, "feet")
  39807. },
  39808. {
  39809. name: "Mountain-Mashing",
  39810. height: math.unit(80000, "feet")
  39811. },
  39812. {
  39813. name: "District Demolisher",
  39814. height: math.unit(240000, "feet")
  39815. },
  39816. {
  39817. name: "Tri-County Terror",
  39818. height: math.unit(800000, "feet")
  39819. },
  39820. {
  39821. name: "State Smasher",
  39822. height: math.unit(2.4e6, "feet")
  39823. },
  39824. {
  39825. name: "Nation Nemesis",
  39826. height: math.unit(8e6, "feet")
  39827. },
  39828. {
  39829. name: "Continent Cracker",
  39830. height: math.unit(2.4e7, "feet")
  39831. },
  39832. {
  39833. name: "Planet-Pillaging",
  39834. height: math.unit(8e7, "feet")
  39835. },
  39836. {
  39837. name: "Earth-Eclipsing",
  39838. height: math.unit(2.4e8, "feet")
  39839. },
  39840. {
  39841. name: "Jovian-Jostling",
  39842. height: math.unit(8e8, "feet")
  39843. },
  39844. {
  39845. name: "Gas Giant Gulper",
  39846. height: math.unit(2.4e9, "feet")
  39847. },
  39848. {
  39849. name: "Astral Annihilator",
  39850. height: math.unit(8e9, "feet")
  39851. },
  39852. {
  39853. name: "Celestial Conqueror",
  39854. height: math.unit(2.4e10, "feet")
  39855. },
  39856. {
  39857. name: "Sol-Swallowing",
  39858. height: math.unit(8e10, "feet")
  39859. },
  39860. {
  39861. name: "Hunter of the Heavens",
  39862. height: math.unit(2.4e13, "feet")
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(6 + 8/12, "feet"),
  39871. weight: math.unit(250, "kilograms"),
  39872. volume: math.unit(28, "liters"),
  39873. name: "Front",
  39874. image: {
  39875. source: "./media/characters/rebecca-pawlson/front.svg",
  39876. extra: 1737/1596,
  39877. bottom: 107/1844
  39878. }
  39879. },
  39880. back: {
  39881. height: math.unit(6 + 8/12, "feet"),
  39882. weight: math.unit(250, "kilograms"),
  39883. volume: math.unit(28, "liters"),
  39884. name: "Back",
  39885. image: {
  39886. source: "./media/characters/rebecca-pawlson/back.svg",
  39887. extra: 1702/1523,
  39888. bottom: 86/1788
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(6 + 8/12, "feet")
  39896. },
  39897. {
  39898. name: "Mini Macro",
  39899. height: math.unit(10, "feet"),
  39900. default: true
  39901. },
  39902. {
  39903. name: "Macro",
  39904. height: math.unit(100, "feet")
  39905. },
  39906. {
  39907. name: "Mega Macro",
  39908. height: math.unit(2500, "feet")
  39909. },
  39910. {
  39911. name: "Giga Macro",
  39912. height: math.unit(50, "miles")
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39918. {
  39919. front: {
  39920. height: math.unit(7 + 6/12, "feet"),
  39921. weight: math.unit(600, "lb"),
  39922. name: "Front",
  39923. image: {
  39924. source: "./media/characters/moxie-nova/front.svg",
  39925. extra: 1734/1652,
  39926. bottom: 41/1775
  39927. }
  39928. },
  39929. },
  39930. [
  39931. {
  39932. name: "Normal",
  39933. height: math.unit(7 + 6/12, "feet"),
  39934. default: true
  39935. },
  39936. ]
  39937. ))
  39938. characterMakers.push(() => makeCharacter(
  39939. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39940. {
  39941. goat: {
  39942. height: math.unit(4, "feet"),
  39943. weight: math.unit(180, "lb"),
  39944. name: "Goat",
  39945. image: {
  39946. source: "./media/characters/tiffany/goat.svg",
  39947. extra: 1845/1595,
  39948. bottom: 106/1951
  39949. }
  39950. },
  39951. front: {
  39952. height: math.unit(5, "feet"),
  39953. weight: math.unit(150, "lb"),
  39954. name: "Foxcoon",
  39955. image: {
  39956. source: "./media/characters/tiffany/foxcoon.svg",
  39957. extra: 1941/1845,
  39958. bottom: 58/1999
  39959. }
  39960. },
  39961. },
  39962. [
  39963. {
  39964. name: "Normal",
  39965. height: math.unit(5, "feet"),
  39966. default: true
  39967. },
  39968. ]
  39969. ))
  39970. characterMakers.push(() => makeCharacter(
  39971. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39972. {
  39973. front: {
  39974. height: math.unit(8, "feet"),
  39975. weight: math.unit(300, "lb"),
  39976. name: "Front",
  39977. image: {
  39978. source: "./media/characters/raxinath/front.svg",
  39979. extra: 1407/1309,
  39980. bottom: 39/1446
  39981. }
  39982. },
  39983. back: {
  39984. height: math.unit(8, "feet"),
  39985. weight: math.unit(300, "lb"),
  39986. name: "Back",
  39987. image: {
  39988. source: "./media/characters/raxinath/back.svg",
  39989. extra: 1405/1315,
  39990. bottom: 9/1414
  39991. }
  39992. },
  39993. },
  39994. [
  39995. {
  39996. name: "Speck",
  39997. height: math.unit(0.5, "nm")
  39998. },
  39999. {
  40000. name: "Micro",
  40001. height: math.unit(3, "inches")
  40002. },
  40003. {
  40004. name: "Kobold",
  40005. height: math.unit(3, "feet")
  40006. },
  40007. {
  40008. name: "Normal",
  40009. height: math.unit(8, "feet"),
  40010. default: true
  40011. },
  40012. {
  40013. name: "Giant",
  40014. height: math.unit(50, "feet")
  40015. },
  40016. {
  40017. name: "Macro",
  40018. height: math.unit(1000, "feet")
  40019. },
  40020. {
  40021. name: "Megamacro",
  40022. height: math.unit(1, "mile")
  40023. },
  40024. ]
  40025. ))
  40026. characterMakers.push(() => makeCharacter(
  40027. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40028. {
  40029. front: {
  40030. height: math.unit(10, "feet"),
  40031. weight: math.unit(1442, "lb"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/mal-dragon/front.svg",
  40035. extra: 1515/1444,
  40036. bottom: 113/1628
  40037. }
  40038. },
  40039. back: {
  40040. height: math.unit(10, "feet"),
  40041. weight: math.unit(1442, "lb"),
  40042. name: "Back",
  40043. image: {
  40044. source: "./media/characters/mal-dragon/back.svg",
  40045. extra: 1527/1434,
  40046. bottom: 25/1552
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Mortal Interaction",
  40053. height: math.unit(10, "feet"),
  40054. default: true
  40055. },
  40056. {
  40057. name: "Large",
  40058. height: math.unit(30, "feet")
  40059. },
  40060. {
  40061. name: "Kaiju",
  40062. height: math.unit(300, "feet")
  40063. },
  40064. {
  40065. name: "Megamacro",
  40066. height: math.unit(10000, "feet")
  40067. },
  40068. {
  40069. name: "Continent Cracker",
  40070. height: math.unit(30000000, "feet")
  40071. },
  40072. {
  40073. name: "Sol-Swallowing",
  40074. height: math.unit(1e11, "feet")
  40075. },
  40076. {
  40077. name: "Light Universal",
  40078. height: math.unit(5, "universes")
  40079. },
  40080. {
  40081. name: "Universe Atoms",
  40082. height: math.unit(1.829e9, "universes")
  40083. },
  40084. {
  40085. name: "Light Multiversal",
  40086. height: math.unit(5, "multiverses")
  40087. },
  40088. {
  40089. name: "Multiverse Atoms",
  40090. height: math.unit(1.829e9, "multiverses")
  40091. },
  40092. {
  40093. name: "Fabric of Time",
  40094. height: math.unit(1e262, "multiverses")
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(9, "feet"),
  40103. weight: math.unit(1050, "lb"),
  40104. name: "Front",
  40105. image: {
  40106. source: "./media/characters/tabitha/front.svg",
  40107. extra: 2083/1994,
  40108. bottom: 68/2151
  40109. }
  40110. },
  40111. },
  40112. [
  40113. {
  40114. name: "Baseline",
  40115. height: math.unit(9, "feet"),
  40116. default: true
  40117. },
  40118. {
  40119. name: "Giant",
  40120. height: math.unit(90, "feet")
  40121. },
  40122. {
  40123. name: "Macro",
  40124. height: math.unit(900, "feet")
  40125. },
  40126. {
  40127. name: "Megamacro",
  40128. height: math.unit(9000, "feet")
  40129. },
  40130. {
  40131. name: "City-Crushing",
  40132. height: math.unit(27000, "feet")
  40133. },
  40134. {
  40135. name: "Mountain-Mashing",
  40136. height: math.unit(90000, "feet")
  40137. },
  40138. {
  40139. name: "Nation Nemesis",
  40140. height: math.unit(9e6, "feet")
  40141. },
  40142. {
  40143. name: "Continent Cracker",
  40144. height: math.unit(27e6, "feet")
  40145. },
  40146. {
  40147. name: "Earth-Eclipsing",
  40148. height: math.unit(2.7e8, "feet")
  40149. },
  40150. {
  40151. name: "Gas Giant Gulper",
  40152. height: math.unit(2.7e9, "feet")
  40153. },
  40154. {
  40155. name: "Sol-Swallowing",
  40156. height: math.unit(9e10, "feet")
  40157. },
  40158. {
  40159. name: "Galaxy Gulper",
  40160. height: math.unit(9, "galaxies")
  40161. },
  40162. {
  40163. name: "Cosmos Churner",
  40164. height: math.unit(9, "universes")
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(160, "cm"),
  40173. weight: math.unit(55, "kg"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/tow/front.svg",
  40177. extra: 1751/1722,
  40178. bottom: 74/1825
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Norm",
  40185. height: math.unit(160, "cm")
  40186. },
  40187. {
  40188. name: "Casual",
  40189. height: math.unit(3200, "m"),
  40190. default: true
  40191. },
  40192. {
  40193. name: "Show-Off",
  40194. height: math.unit(160, "km")
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40200. {
  40201. front: {
  40202. height: math.unit(7 + 11/12, "feet"),
  40203. weight: math.unit(342.8, "lb"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/vivian-orca-dragon/front.svg",
  40207. extra: 1890/1865,
  40208. bottom: 28/1918
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Micro",
  40215. height: math.unit(5, "inches")
  40216. },
  40217. {
  40218. name: "Normal",
  40219. height: math.unit(7 + 11/12, "feet"),
  40220. default: true
  40221. },
  40222. {
  40223. name: "Macro",
  40224. height: math.unit(395 + 7/12, "feet")
  40225. },
  40226. ]
  40227. ))
  40228. characterMakers.push(() => makeCharacter(
  40229. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40230. {
  40231. side: {
  40232. height: math.unit(10, "feet"),
  40233. weight: math.unit(1442, "lb"),
  40234. name: "Side",
  40235. image: {
  40236. source: "./media/characters/lotherakon/side.svg",
  40237. extra: 1604/1497,
  40238. bottom: 89/1693
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Mortal Interaction",
  40245. height: math.unit(10, "feet")
  40246. },
  40247. {
  40248. name: "Large",
  40249. height: math.unit(30, "feet"),
  40250. default: true
  40251. },
  40252. {
  40253. name: "Giant",
  40254. height: math.unit(100, "feet")
  40255. },
  40256. {
  40257. name: "Kaiju",
  40258. height: math.unit(300, "feet")
  40259. },
  40260. {
  40261. name: "Macro",
  40262. height: math.unit(1000, "feet")
  40263. },
  40264. {
  40265. name: "Macro+",
  40266. height: math.unit(3000, "feet")
  40267. },
  40268. {
  40269. name: "Megamacro",
  40270. height: math.unit(10000, "feet")
  40271. },
  40272. {
  40273. name: "City-Crushing",
  40274. height: math.unit(30000, "feet")
  40275. },
  40276. {
  40277. name: "Continent Cracker",
  40278. height: math.unit(30e6, "feet")
  40279. },
  40280. {
  40281. name: "Earth Eclipsing",
  40282. height: math.unit(3e8, "feet")
  40283. },
  40284. {
  40285. name: "Gas Giant Gulper",
  40286. height: math.unit(3e9, "feet")
  40287. },
  40288. {
  40289. name: "Sol-Swallowing",
  40290. height: math.unit(1e11, "feet")
  40291. },
  40292. {
  40293. name: "System Swallower",
  40294. height: math.unit(3e14, "feet")
  40295. },
  40296. {
  40297. name: "Galaxy Gulper",
  40298. height: math.unit(10, "galaxies")
  40299. },
  40300. {
  40301. name: "Light Universal",
  40302. height: math.unit(5, "universes")
  40303. },
  40304. {
  40305. name: "Universe Palm",
  40306. height: math.unit(20, "universes")
  40307. },
  40308. {
  40309. name: "Light Multiversal",
  40310. height: math.unit(5, "multiverses")
  40311. },
  40312. {
  40313. name: "Multiverse Palm",
  40314. height: math.unit(20, "multiverses")
  40315. },
  40316. {
  40317. name: "Inferno Incarnate",
  40318. height: math.unit(1e7, "multiverses")
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(8, "feet"),
  40327. weight: math.unit(1200, "lb"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/malithee/front.svg",
  40331. extra: 1675/1640,
  40332. bottom: 162/1837
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Mortal Interaction",
  40339. height: math.unit(8, "feet"),
  40340. default: true
  40341. },
  40342. {
  40343. name: "Large",
  40344. height: math.unit(24, "feet")
  40345. },
  40346. {
  40347. name: "Kaiju",
  40348. height: math.unit(240, "feet")
  40349. },
  40350. {
  40351. name: "Megamacro",
  40352. height: math.unit(8000, "feet")
  40353. },
  40354. {
  40355. name: "Continent Cracker",
  40356. height: math.unit(24e6, "feet")
  40357. },
  40358. {
  40359. name: "Earth-Eclipsing",
  40360. height: math.unit(2.4e8, "feet")
  40361. },
  40362. {
  40363. name: "Sol-Swallowing",
  40364. height: math.unit(8e10, "feet")
  40365. },
  40366. {
  40367. name: "Galaxy Gulper",
  40368. height: math.unit(8, "galaxies")
  40369. },
  40370. {
  40371. name: "Light Universal",
  40372. height: math.unit(4, "universes")
  40373. },
  40374. {
  40375. name: "Universe Atoms",
  40376. height: math.unit(1.829e9, "universes")
  40377. },
  40378. {
  40379. name: "Light Multiversal",
  40380. height: math.unit(4, "multiverses")
  40381. },
  40382. {
  40383. name: "Multiverse Atoms",
  40384. height: math.unit(1.829e9, "multiverses")
  40385. },
  40386. {
  40387. name: "Nigh-Omnipresence",
  40388. height: math.unit(8e261, "multiverses")
  40389. },
  40390. ]
  40391. ))
  40392. characterMakers.push(() => makeCharacter(
  40393. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40394. {
  40395. front: {
  40396. height: math.unit(10, "feet"),
  40397. weight: math.unit(1500, "lb"),
  40398. name: "Front",
  40399. image: {
  40400. source: "./media/characters/miles-thestia/front.svg",
  40401. extra: 1812/1727,
  40402. bottom: 86/1898
  40403. }
  40404. },
  40405. back: {
  40406. height: math.unit(10, "feet"),
  40407. weight: math.unit(1500, "lb"),
  40408. name: "Back",
  40409. image: {
  40410. source: "./media/characters/miles-thestia/back.svg",
  40411. extra: 1799/1690,
  40412. bottom: 47/1846
  40413. }
  40414. },
  40415. frontNsfw: {
  40416. height: math.unit(10, "feet"),
  40417. weight: math.unit(1500, "lb"),
  40418. name: "Front (NSFW)",
  40419. image: {
  40420. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40421. extra: 1812/1727,
  40422. bottom: 86/1898
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Mini-Macro",
  40429. height: math.unit(10, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(25, "feet"),
  40439. name: "Front",
  40440. image: {
  40441. source: "./media/characters/titan-s-wulf/front.svg",
  40442. extra: 1560/1484,
  40443. bottom: 76/1636
  40444. }
  40445. },
  40446. },
  40447. [
  40448. {
  40449. name: "Smallest",
  40450. height: math.unit(25, "feet"),
  40451. default: true
  40452. },
  40453. {
  40454. name: "Normal",
  40455. height: math.unit(200, "feet")
  40456. },
  40457. {
  40458. name: "Macro",
  40459. height: math.unit(200000, "feet")
  40460. },
  40461. {
  40462. name: "Multiversal Original",
  40463. height: math.unit(10000, "multiverses")
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(8, "feet"),
  40472. weight: math.unit(553, "lb"),
  40473. name: "Front",
  40474. image: {
  40475. source: "./media/characters/tawendeh/front.svg",
  40476. extra: 2365/2268,
  40477. bottom: 83/2448
  40478. }
  40479. },
  40480. frontClothed: {
  40481. height: math.unit(8, "feet"),
  40482. weight: math.unit(553, "lb"),
  40483. name: "Front (Clothed)",
  40484. image: {
  40485. source: "./media/characters/tawendeh/front-clothed.svg",
  40486. extra: 2365/2268,
  40487. bottom: 83/2448
  40488. }
  40489. },
  40490. back: {
  40491. height: math.unit(8, "feet"),
  40492. weight: math.unit(553, "lb"),
  40493. name: "Back",
  40494. image: {
  40495. source: "./media/characters/tawendeh/back.svg",
  40496. extra: 2397/2294,
  40497. bottom: 42/2439
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Mortal Interaction",
  40504. height: math.unit(8, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Giant",
  40509. height: math.unit(80, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(800, "feet")
  40514. },
  40515. {
  40516. name: "Megamacro",
  40517. height: math.unit(8000, "feet")
  40518. },
  40519. {
  40520. name: "City-Crushing",
  40521. height: math.unit(24000, "feet")
  40522. },
  40523. {
  40524. name: "Mountain-Mashing",
  40525. height: math.unit(80000, "feet")
  40526. },
  40527. {
  40528. name: "Nation Nemesis",
  40529. height: math.unit(8e6, "feet")
  40530. },
  40531. {
  40532. name: "Continent Cracker",
  40533. height: math.unit(24e6, "feet")
  40534. },
  40535. {
  40536. name: "Earth-Eclipsing",
  40537. height: math.unit(2.4e8, "feet")
  40538. },
  40539. {
  40540. name: "Gas Giant Gulper",
  40541. height: math.unit(2.4e9, "feet")
  40542. },
  40543. {
  40544. name: "Sol-Swallowing",
  40545. height: math.unit(8e10, "feet")
  40546. },
  40547. {
  40548. name: "Galaxy Gulper",
  40549. height: math.unit(8, "galaxies")
  40550. },
  40551. {
  40552. name: "Cosmos Churner",
  40553. height: math.unit(8, "universes")
  40554. },
  40555. {
  40556. name: "Omnipotent Otter",
  40557. height: math.unit(80, "universes")
  40558. },
  40559. ]
  40560. ))
  40561. characterMakers.push(() => makeCharacter(
  40562. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40563. {
  40564. front: {
  40565. height: math.unit(2.6, "meters"),
  40566. weight: math.unit(900, "kg"),
  40567. name: "Front",
  40568. image: {
  40569. source: "./media/characters/neesha/front.svg",
  40570. extra: 1803/1653,
  40571. bottom: 128/1931
  40572. }
  40573. },
  40574. },
  40575. [
  40576. {
  40577. name: "Normal",
  40578. height: math.unit(2.6, "meters"),
  40579. default: true
  40580. },
  40581. {
  40582. name: "Macro",
  40583. height: math.unit(50, "meters")
  40584. },
  40585. ]
  40586. ))
  40587. characterMakers.push(() => makeCharacter(
  40588. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40589. {
  40590. front: {
  40591. height: math.unit(5, "feet"),
  40592. weight: math.unit(185, "lb"),
  40593. name: "Front",
  40594. image: {
  40595. source: "./media/characters/kyera/front.svg",
  40596. extra: 1875/1790,
  40597. bottom: 96/1971
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(5, "feet"),
  40605. default: true
  40606. },
  40607. ]
  40608. ))
  40609. characterMakers.push(() => makeCharacter(
  40610. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40611. {
  40612. front: {
  40613. height: math.unit(7 + 6/12, "feet"),
  40614. weight: math.unit(540, "lb"),
  40615. name: "Front",
  40616. image: {
  40617. source: "./media/characters/yuko/front.svg",
  40618. extra: 1282/1222,
  40619. bottom: 101/1383
  40620. }
  40621. },
  40622. frontClothed: {
  40623. height: math.unit(7 + 6/12, "feet"),
  40624. weight: math.unit(540, "lb"),
  40625. name: "Front (Clothed)",
  40626. image: {
  40627. source: "./media/characters/yuko/front-clothed.svg",
  40628. extra: 1282/1222,
  40629. bottom: 101/1383
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Normal",
  40636. height: math.unit(7 + 6/12, "feet"),
  40637. default: true
  40638. },
  40639. {
  40640. name: "Macro",
  40641. height: math.unit(26 + 9/12, "feet")
  40642. },
  40643. {
  40644. name: "Megamacro",
  40645. height: math.unit(300, "feet")
  40646. },
  40647. {
  40648. name: "Gigamacro",
  40649. height: math.unit(5000, "feet")
  40650. },
  40651. {
  40652. name: "Planetary",
  40653. height: math.unit(10000, "miles")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(8 + 2/12, "feet"),
  40662. weight: math.unit(600, "lb"),
  40663. name: "Front",
  40664. image: {
  40665. source: "./media/characters/deam-nitrel/front.svg",
  40666. extra: 1308/1234,
  40667. bottom: 125/1433
  40668. }
  40669. },
  40670. },
  40671. [
  40672. {
  40673. name: "Normal",
  40674. height: math.unit(8 + 2/12, "feet"),
  40675. default: true
  40676. },
  40677. ]
  40678. ))
  40679. characterMakers.push(() => makeCharacter(
  40680. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40681. {
  40682. front: {
  40683. height: math.unit(6.1, "feet"),
  40684. weight: math.unit(180, "lb"),
  40685. name: "Front",
  40686. image: {
  40687. source: "./media/characters/skyress/front.svg",
  40688. extra: 1045/915,
  40689. bottom: 28/1073
  40690. }
  40691. },
  40692. maw: {
  40693. height: math.unit(1, "feet"),
  40694. name: "Maw",
  40695. image: {
  40696. source: "./media/characters/skyress/maw.svg"
  40697. }
  40698. },
  40699. },
  40700. [
  40701. {
  40702. name: "Normal",
  40703. height: math.unit(6.1, "feet"),
  40704. default: true
  40705. },
  40706. {
  40707. name: "Macro",
  40708. height: math.unit(200, "feet")
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(4 + 2/12, "feet"),
  40717. weight: math.unit(40, "kg"),
  40718. name: "Front",
  40719. image: {
  40720. source: "./media/characters/amethyst-jones/front.svg",
  40721. extra: 1220/1150,
  40722. bottom: 101/1321
  40723. }
  40724. },
  40725. },
  40726. [
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(4 + 2/12, "feet"),
  40730. default: true
  40731. },
  40732. ]
  40733. ))
  40734. characterMakers.push(() => makeCharacter(
  40735. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40736. {
  40737. front: {
  40738. height: math.unit(1.7, "m"),
  40739. weight: math.unit(135, "lb"),
  40740. name: "Front",
  40741. image: {
  40742. source: "./media/characters/jade/front.svg",
  40743. extra: 1818/1767,
  40744. bottom: 32/1850
  40745. }
  40746. },
  40747. back: {
  40748. height: math.unit(1.7, "m"),
  40749. weight: math.unit(135, "lb"),
  40750. name: "Back",
  40751. image: {
  40752. source: "./media/characters/jade/back.svg",
  40753. extra: 1869/1809,
  40754. bottom: 35/1904
  40755. }
  40756. },
  40757. hand: {
  40758. height: math.unit(0.24, "m"),
  40759. name: "Hand",
  40760. image: {
  40761. source: "./media/characters/jade/hand.svg"
  40762. }
  40763. },
  40764. foot: {
  40765. height: math.unit(0.263, "m"),
  40766. name: "Foot",
  40767. image: {
  40768. source: "./media/characters/jade/foot.svg"
  40769. }
  40770. },
  40771. dick: {
  40772. height: math.unit(0.47, "m"),
  40773. name: "Dick",
  40774. image: {
  40775. source: "./media/characters/jade/dick.svg"
  40776. }
  40777. },
  40778. },
  40779. [
  40780. {
  40781. name: "Micro",
  40782. height: math.unit(22, "cm")
  40783. },
  40784. {
  40785. name: "Normal",
  40786. height: math.unit(1.7, "m"),
  40787. default: true
  40788. },
  40789. {
  40790. name: "Macro",
  40791. height: math.unit(152, "m")
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40797. {
  40798. front: {
  40799. height: math.unit(100, "miles"),
  40800. weight: math.unit(20000, "tons"),
  40801. name: "Front",
  40802. image: {
  40803. source: "./media/characters/cookie/front.svg",
  40804. extra: 1125/1070,
  40805. bottom: 30/1155
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Big",
  40812. height: math.unit(50, "feet")
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(100, "miles"),
  40817. default: true
  40818. },
  40819. {
  40820. name: "Megamacro",
  40821. height: math.unit(90000, "miles")
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40827. {
  40828. front: {
  40829. height: math.unit(6, "feet"),
  40830. weight: math.unit(145, "lb"),
  40831. name: "Front",
  40832. image: {
  40833. source: "./media/characters/farzian/front.svg",
  40834. extra: 1902/1693,
  40835. bottom: 108/2010
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Macro",
  40842. height: math.unit(500, "feet"),
  40843. default: true
  40844. },
  40845. ]
  40846. ))
  40847. characterMakers.push(() => makeCharacter(
  40848. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40849. {
  40850. front: {
  40851. height: math.unit(3 + 6/12, "feet"),
  40852. weight: math.unit(50, "lb"),
  40853. name: "Front",
  40854. image: {
  40855. source: "./media/characters/kimberly-tilson/front.svg",
  40856. extra: 1400/1322,
  40857. bottom: 36/1436
  40858. }
  40859. },
  40860. back: {
  40861. height: math.unit(3 + 6/12, "feet"),
  40862. weight: math.unit(50, "lb"),
  40863. name: "Back",
  40864. image: {
  40865. source: "./media/characters/kimberly-tilson/back.svg",
  40866. extra: 1370/1307,
  40867. bottom: 20/1390
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(3 + 6/12, "feet"),
  40875. default: true
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(1148, "feet"),
  40884. weight: math.unit(34057, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/harthos/front.svg",
  40888. extra: 1391/1339,
  40889. bottom: 13/1404
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Macro",
  40896. height: math.unit(1148, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(15, "feet"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/hypatia/front.svg",
  40909. extra: 1653/1591,
  40910. bottom: 79/1732
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Normal",
  40917. height: math.unit(15, "feet")
  40918. },
  40919. {
  40920. name: "Small",
  40921. height: math.unit(300, "feet")
  40922. },
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(2500, "feet"),
  40926. default: true
  40927. },
  40928. {
  40929. name: "Mega Macro",
  40930. height: math.unit(1500, "miles")
  40931. },
  40932. {
  40933. name: "Giga Macro",
  40934. height: math.unit(1.5e6, "miles")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40940. {
  40941. front: {
  40942. height: math.unit(6, "feet"),
  40943. weight: math.unit(200, "lb"),
  40944. name: "Front",
  40945. image: {
  40946. source: "./media/characters/wulver/front.svg",
  40947. extra: 1724/1632,
  40948. bottom: 130/1854
  40949. }
  40950. },
  40951. frontNsfw: {
  40952. height: math.unit(6, "feet"),
  40953. weight: math.unit(200, "lb"),
  40954. name: "Front (NSFW)",
  40955. image: {
  40956. source: "./media/characters/wulver/front-nsfw.svg",
  40957. extra: 1724/1632,
  40958. bottom: 130/1854
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Human-Sized",
  40965. height: math.unit(6, "feet")
  40966. },
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(4, "meters"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "Large",
  40974. height: math.unit(6, "m")
  40975. },
  40976. ]
  40977. ))
  40978. characterMakers.push(() => makeCharacter(
  40979. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40980. {
  40981. front: {
  40982. height: math.unit(7, "feet"),
  40983. name: "Front",
  40984. image: {
  40985. source: "./media/characters/maru/front.svg",
  40986. extra: 1595/1570,
  40987. bottom: 0/1595
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(7, "feet"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Macro",
  40999. height: math.unit(700, "feet")
  41000. },
  41001. {
  41002. name: "Mega Macro",
  41003. height: math.unit(25, "miles")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(6, "feet"),
  41012. weight: math.unit(170, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/xenon/front.svg",
  41016. extra: 1376/1305,
  41017. bottom: 56/1432
  41018. }
  41019. },
  41020. back: {
  41021. height: math.unit(6, "feet"),
  41022. weight: math.unit(170, "lb"),
  41023. name: "Back",
  41024. image: {
  41025. source: "./media/characters/xenon/back.svg",
  41026. extra: 1328/1259,
  41027. bottom: 95/1423
  41028. }
  41029. },
  41030. maw: {
  41031. height: math.unit(0.52, "feet"),
  41032. name: "Maw",
  41033. image: {
  41034. source: "./media/characters/xenon/maw.svg"
  41035. }
  41036. },
  41037. hand: {
  41038. height: math.unit(0.82, "feet"),
  41039. name: "Hand",
  41040. image: {
  41041. source: "./media/characters/xenon/hand.svg"
  41042. }
  41043. },
  41044. foot: {
  41045. height: math.unit(1.13, "feet"),
  41046. name: "Foot",
  41047. image: {
  41048. source: "./media/characters/xenon/foot.svg"
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Micro",
  41055. height: math.unit(0.8, "inches")
  41056. },
  41057. {
  41058. name: "Normal",
  41059. height: math.unit(6, "feet")
  41060. },
  41061. {
  41062. name: "Macro",
  41063. height: math.unit(50, "feet"),
  41064. default: true
  41065. },
  41066. {
  41067. name: "Macro+",
  41068. height: math.unit(250, "feet")
  41069. },
  41070. {
  41071. name: "Megamacro",
  41072. height: math.unit(1500, "feet")
  41073. },
  41074. ]
  41075. ))
  41076. characterMakers.push(() => makeCharacter(
  41077. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41078. {
  41079. front: {
  41080. height: math.unit(7 + 5/12, "feet"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/zane/front.svg",
  41084. extra: 1260/1203,
  41085. bottom: 94/1354
  41086. }
  41087. },
  41088. back: {
  41089. height: math.unit(5.05, "feet"),
  41090. name: "Back",
  41091. image: {
  41092. source: "./media/characters/zane/back.svg",
  41093. extra: 893/829,
  41094. bottom: 30/923
  41095. }
  41096. },
  41097. werewolf: {
  41098. height: math.unit(11, "feet"),
  41099. name: "Werewolf",
  41100. image: {
  41101. source: "./media/characters/zane/werewolf.svg",
  41102. extra: 1383/1323,
  41103. bottom: 89/1472
  41104. }
  41105. },
  41106. foot: {
  41107. height: math.unit(1.46, "feet"),
  41108. name: "Foot",
  41109. image: {
  41110. source: "./media/characters/zane/foot.svg"
  41111. }
  41112. },
  41113. footFront: {
  41114. height: math.unit(0.784, "feet"),
  41115. name: "Foot (Front)",
  41116. image: {
  41117. source: "./media/characters/zane/foot-front.svg"
  41118. }
  41119. },
  41120. dick: {
  41121. height: math.unit(1.95, "feet"),
  41122. name: "Dick",
  41123. image: {
  41124. source: "./media/characters/zane/dick.svg"
  41125. }
  41126. },
  41127. dickWerewolf: {
  41128. height: math.unit(3.77, "feet"),
  41129. name: "Dick (Werewolf)",
  41130. image: {
  41131. source: "./media/characters/zane/dick.svg"
  41132. }
  41133. },
  41134. },
  41135. [
  41136. {
  41137. name: "Normal",
  41138. height: math.unit(7 + 5/12, "feet"),
  41139. default: true
  41140. },
  41141. ]
  41142. ))
  41143. characterMakers.push(() => makeCharacter(
  41144. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41145. {
  41146. front: {
  41147. height: math.unit(6 + 2/12, "feet"),
  41148. weight: math.unit(284, "lb"),
  41149. name: "Front",
  41150. image: {
  41151. source: "./media/characters/benni-desparque/front.svg",
  41152. extra: 1353/1126,
  41153. bottom: 69/1422
  41154. }
  41155. },
  41156. },
  41157. [
  41158. {
  41159. name: "Civilian",
  41160. height: math.unit(6 + 2/12, "feet")
  41161. },
  41162. {
  41163. name: "Normal",
  41164. height: math.unit(98, "feet"),
  41165. default: true
  41166. },
  41167. {
  41168. name: "Kaiju Fighter",
  41169. height: math.unit(268, "feet")
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(5, "feet"),
  41178. weight: math.unit(105, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/maxine/front.svg",
  41182. extra: 1386/1250,
  41183. bottom: 71/1457
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Normal",
  41190. height: math.unit(5, "feet"),
  41191. default: true
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(11 + 7/12, "feet"),
  41200. weight: math.unit(9576, "lb"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/scaly/front.svg",
  41204. extra: 888/867,
  41205. bottom: 36/924
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(11 + 7/12, "feet"),
  41213. default: true
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41219. {
  41220. front: {
  41221. height: math.unit(6 + 3/12, "feet"),
  41222. name: "Front",
  41223. image: {
  41224. source: "./media/characters/saelria/front.svg",
  41225. extra: 1243/1138,
  41226. bottom: 46/1289
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Micro",
  41233. height: math.unit(6, "inches"),
  41234. },
  41235. {
  41236. name: "Normal",
  41237. height: math.unit(6 + 3/12, "feet"),
  41238. default: true
  41239. },
  41240. {
  41241. name: "Macro",
  41242. height: math.unit(25, "feet")
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41248. {
  41249. front: {
  41250. height: math.unit(80, "meters"),
  41251. weight: math.unit(7000, "tonnes"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/tef/front.svg",
  41255. extra: 2036/1991,
  41256. bottom: 54/2090
  41257. }
  41258. },
  41259. back: {
  41260. height: math.unit(80, "meters"),
  41261. weight: math.unit(7000, "tonnes"),
  41262. name: "Back",
  41263. image: {
  41264. source: "./media/characters/tef/back.svg",
  41265. extra: 2036/1991,
  41266. bottom: 54/2090
  41267. }
  41268. },
  41269. },
  41270. [
  41271. {
  41272. name: "Macro",
  41273. height: math.unit(80, "meters"),
  41274. default: true
  41275. },
  41276. ]
  41277. ))
  41278. characterMakers.push(() => makeCharacter(
  41279. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41280. {
  41281. front: {
  41282. height: math.unit(13, "feet"),
  41283. weight: math.unit(6, "tons"),
  41284. name: "Front",
  41285. image: {
  41286. source: "./media/characters/rover/front.svg",
  41287. extra: 1233/1156,
  41288. bottom: 50/1283
  41289. }
  41290. },
  41291. back: {
  41292. height: math.unit(13, "feet"),
  41293. weight: math.unit(6, "tons"),
  41294. name: "Back",
  41295. image: {
  41296. source: "./media/characters/rover/back.svg",
  41297. extra: 1327/1258,
  41298. bottom: 39/1366
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(13, "feet"),
  41306. default: true
  41307. },
  41308. {
  41309. name: "Macro",
  41310. height: math.unit(1300, "feet")
  41311. },
  41312. {
  41313. name: "Megamacro",
  41314. height: math.unit(1300, "miles")
  41315. },
  41316. {
  41317. name: "Gigamacro",
  41318. height: math.unit(1300000, "miles")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41324. {
  41325. front: {
  41326. height: math.unit(6, "feet"),
  41327. weight: math.unit(150, "lb"),
  41328. name: "Front",
  41329. image: {
  41330. source: "./media/characters/ariz/front.svg",
  41331. extra: 1401/1346,
  41332. bottom: 5/1406
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(10, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(6, "feet"),
  41349. weight: math.unit(140, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/sigrun/front.svg",
  41353. extra: 1418/1359,
  41354. bottom: 27/1445
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Macro",
  41361. height: math.unit(35, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(6, "feet"),
  41371. weight: math.unit(150, "lb"),
  41372. name: "Front",
  41373. image: {
  41374. source: "./media/characters/numin/front.svg",
  41375. extra: 1433/1388,
  41376. bottom: 12/1445
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Macro",
  41383. height: math.unit(21.5, "km"),
  41384. default: true
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6, "feet"),
  41393. weight: math.unit(463, "lb"),
  41394. name: "Front",
  41395. image: {
  41396. source: "./media/characters/melwa/front.svg",
  41397. extra: 1307/1248,
  41398. bottom: 93/1400
  41399. }
  41400. },
  41401. },
  41402. [
  41403. {
  41404. name: "Macro",
  41405. height: math.unit(50, "meters"),
  41406. default: true
  41407. },
  41408. ]
  41409. ))
  41410. characterMakers.push(() => makeCharacter(
  41411. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41412. {
  41413. front: {
  41414. height: math.unit(325, "feet"),
  41415. name: "Front",
  41416. image: {
  41417. source: "./media/characters/zorkaiju/front.svg",
  41418. extra: 1955/1814,
  41419. bottom: 40/1995
  41420. }
  41421. },
  41422. frontExtended: {
  41423. height: math.unit(325, "feet"),
  41424. name: "Front (Extended)",
  41425. image: {
  41426. source: "./media/characters/zorkaiju/front-extended.svg",
  41427. extra: 1955/1814,
  41428. bottom: 40/1995
  41429. }
  41430. },
  41431. side: {
  41432. height: math.unit(325, "feet"),
  41433. name: "Side",
  41434. image: {
  41435. source: "./media/characters/zorkaiju/side.svg",
  41436. extra: 1495/1396,
  41437. bottom: 17/1512
  41438. }
  41439. },
  41440. sideExtended: {
  41441. height: math.unit(325, "feet"),
  41442. name: "Side (Extended)",
  41443. image: {
  41444. source: "./media/characters/zorkaiju/side-extended.svg",
  41445. extra: 1495/1396,
  41446. bottom: 17/1512
  41447. }
  41448. },
  41449. back: {
  41450. height: math.unit(325, "feet"),
  41451. name: "Back",
  41452. image: {
  41453. source: "./media/characters/zorkaiju/back.svg",
  41454. extra: 1959/1821,
  41455. bottom: 31/1990
  41456. }
  41457. },
  41458. backExtended: {
  41459. height: math.unit(325, "feet"),
  41460. name: "Back (Extended)",
  41461. image: {
  41462. source: "./media/characters/zorkaiju/back-extended.svg",
  41463. extra: 1959/1821,
  41464. bottom: 31/1990
  41465. }
  41466. },
  41467. hand: {
  41468. height: math.unit(58.4, "feet"),
  41469. name: "Hand",
  41470. image: {
  41471. source: "./media/characters/zorkaiju/hand.svg"
  41472. }
  41473. },
  41474. handExtended: {
  41475. height: math.unit(61.4, "feet"),
  41476. name: "Hand (Extended)",
  41477. image: {
  41478. source: "./media/characters/zorkaiju/hand-extended.svg"
  41479. }
  41480. },
  41481. foot: {
  41482. height: math.unit(95, "feet"),
  41483. name: "Foot",
  41484. image: {
  41485. source: "./media/characters/zorkaiju/foot.svg"
  41486. }
  41487. },
  41488. leftArm: {
  41489. height: math.unit(59, "feet"),
  41490. name: "Left Arm",
  41491. image: {
  41492. source: "./media/characters/zorkaiju/left-arm.svg"
  41493. }
  41494. },
  41495. rightArm: {
  41496. height: math.unit(59, "feet"),
  41497. name: "Right Arm",
  41498. image: {
  41499. source: "./media/characters/zorkaiju/right-arm.svg"
  41500. }
  41501. },
  41502. tail: {
  41503. height: math.unit(104, "feet"),
  41504. name: "Tail",
  41505. image: {
  41506. source: "./media/characters/zorkaiju/tail.svg"
  41507. }
  41508. },
  41509. tailExtended: {
  41510. height: math.unit(104, "feet"),
  41511. name: "Tail (Extended)",
  41512. image: {
  41513. source: "./media/characters/zorkaiju/tail-extended.svg"
  41514. }
  41515. },
  41516. tailBottom: {
  41517. height: math.unit(104, "feet"),
  41518. name: "Tail Bottom",
  41519. image: {
  41520. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41521. }
  41522. },
  41523. crystal: {
  41524. height: math.unit(27.54, "feet"),
  41525. name: "Crystal",
  41526. image: {
  41527. source: "./media/characters/zorkaiju/crystal.svg"
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Kaiju",
  41534. height: math.unit(325, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41541. {
  41542. front: {
  41543. height: math.unit(6 + 1/12, "feet"),
  41544. weight: math.unit(115, "lb"),
  41545. name: "Front",
  41546. image: {
  41547. source: "./media/characters/bailey-belfry/front.svg",
  41548. extra: 1240/1121,
  41549. bottom: 101/1341
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(6 + 1/12, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41563. {
  41564. side: {
  41565. height: math.unit(4, "meters"),
  41566. weight: math.unit(250, "kg"),
  41567. name: "Side",
  41568. image: {
  41569. source: "./media/characters/blacky/side.svg",
  41570. extra: 1027/919,
  41571. bottom: 43/1070
  41572. }
  41573. },
  41574. maw: {
  41575. height: math.unit(1, "meters"),
  41576. name: "Maw",
  41577. image: {
  41578. source: "./media/characters/blacky/maw.svg"
  41579. }
  41580. },
  41581. paw: {
  41582. height: math.unit(1, "meters"),
  41583. name: "Paw",
  41584. image: {
  41585. source: "./media/characters/blacky/paw.svg"
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(4, "meters"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(170, "cm"),
  41602. weight: math.unit(66, "kg"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/thux-ei/front.svg",
  41606. extra: 1109/1011,
  41607. bottom: 8/1117
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(170, "cm"),
  41615. default: true
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(5, "feet"),
  41624. weight: math.unit(120, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/roxanne-voltaire/front.svg",
  41628. extra: 1901/1779,
  41629. bottom: 53/1954
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(5, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Giant",
  41641. height: math.unit(50, "feet")
  41642. },
  41643. {
  41644. name: "Titan",
  41645. height: math.unit(500, "feet")
  41646. },
  41647. {
  41648. name: "Macro",
  41649. height: math.unit(5000, "feet")
  41650. },
  41651. {
  41652. name: "Megamacro",
  41653. height: math.unit(50000, "feet")
  41654. },
  41655. {
  41656. name: "Gigamacro",
  41657. height: math.unit(500000, "feet")
  41658. },
  41659. {
  41660. name: "Teramacro",
  41661. height: math.unit(5e6, "feet")
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41667. {
  41668. front: {
  41669. height: math.unit(6 + 2/12, "feet"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/squeaks/front.svg",
  41673. extra: 1823/1768,
  41674. bottom: 138/1961
  41675. }
  41676. },
  41677. },
  41678. [
  41679. {
  41680. name: "Micro",
  41681. height: math.unit(0.5, "inches")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(6 + 2/12, "feet"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(600, "feet")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41696. {
  41697. front: {
  41698. height: math.unit(1.72, "meters"),
  41699. name: "Front",
  41700. image: {
  41701. source: "./media/characters/archinger/front.svg",
  41702. extra: 1861/1675,
  41703. bottom: 125/1986
  41704. }
  41705. },
  41706. back: {
  41707. height: math.unit(1.72, "meters"),
  41708. name: "Back",
  41709. image: {
  41710. source: "./media/characters/archinger/back.svg",
  41711. extra: 1844/1701,
  41712. bottom: 104/1948
  41713. }
  41714. },
  41715. cock: {
  41716. height: math.unit(0.59, "feet"),
  41717. name: "Cock",
  41718. image: {
  41719. source: "./media/characters/archinger/cock.svg"
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(1.72, "meters"),
  41727. default: true
  41728. },
  41729. {
  41730. name: "Macro",
  41731. height: math.unit(84, "meters")
  41732. },
  41733. {
  41734. name: "Macro+",
  41735. height: math.unit(112, "meters")
  41736. },
  41737. {
  41738. name: "Macro++",
  41739. height: math.unit(960, "meters")
  41740. },
  41741. {
  41742. name: "Macro+++",
  41743. height: math.unit(4, "km")
  41744. },
  41745. {
  41746. name: "Macro++++",
  41747. height: math.unit(48, "km")
  41748. },
  41749. {
  41750. name: "Macro+++++",
  41751. height: math.unit(4500, "km")
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(5 + 5/12, "feet"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/alsnapz/front.svg",
  41763. extra: 1157/1065,
  41764. bottom: 42/1199
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Normal",
  41771. height: math.unit(5 + 5/12, "feet"),
  41772. default: true
  41773. },
  41774. ]
  41775. ))
  41776. characterMakers.push(() => makeCharacter(
  41777. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41778. {
  41779. side: {
  41780. height: math.unit(3.2, "earths"),
  41781. name: "Side",
  41782. image: {
  41783. source: "./media/characters/mag/side.svg",
  41784. extra: 1331/1008,
  41785. bottom: 52/1383
  41786. }
  41787. },
  41788. wing: {
  41789. height: math.unit(1.94, "earths"),
  41790. name: "Wing",
  41791. image: {
  41792. source: "./media/characters/mag/wing.svg"
  41793. }
  41794. },
  41795. dick: {
  41796. height: math.unit(1.8, "earths"),
  41797. name: "Dick",
  41798. image: {
  41799. source: "./media/characters/mag/dick.svg"
  41800. }
  41801. },
  41802. ass: {
  41803. height: math.unit(1.33, "earths"),
  41804. name: "Ass",
  41805. image: {
  41806. source: "./media/characters/mag/ass.svg"
  41807. }
  41808. },
  41809. head: {
  41810. height: math.unit(1.1, "earths"),
  41811. name: "Head",
  41812. image: {
  41813. source: "./media/characters/mag/head.svg"
  41814. }
  41815. },
  41816. maw: {
  41817. height: math.unit(1.62, "earths"),
  41818. name: "Maw",
  41819. image: {
  41820. source: "./media/characters/mag/maw.svg"
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Small",
  41827. height: math.unit(162, "feet")
  41828. },
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(3.2, "earths"),
  41832. default: true
  41833. },
  41834. ]
  41835. ))
  41836. characterMakers.push(() => makeCharacter(
  41837. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41838. {
  41839. front: {
  41840. height: math.unit(512, "feet"),
  41841. weight: math.unit(63509, "tonnes"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/vorrel-harroc/front.svg",
  41845. extra: 1075/1063,
  41846. bottom: 62/1137
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Normal",
  41853. height: math.unit(10, "feet")
  41854. },
  41855. {
  41856. name: "Macro",
  41857. height: math.unit(512, "feet"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Megamacro",
  41862. height: math.unit(256, "miles")
  41863. },
  41864. {
  41865. name: "Gigamacro",
  41866. height: math.unit(4096, "miles")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41872. {
  41873. side: {
  41874. height: math.unit(50, "feet"),
  41875. name: "Side",
  41876. image: {
  41877. source: "./media/characters/froimar/side.svg",
  41878. extra: 855/638,
  41879. bottom: 99/954
  41880. }
  41881. },
  41882. },
  41883. [
  41884. {
  41885. name: "Macro",
  41886. height: math.unit(50, "feet"),
  41887. default: true
  41888. },
  41889. ]
  41890. ))
  41891. characterMakers.push(() => makeCharacter(
  41892. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41893. {
  41894. front: {
  41895. height: math.unit(210, "miles"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/timothy/front.svg",
  41899. extra: 1007/943,
  41900. bottom: 62/1069
  41901. }
  41902. },
  41903. frontSkirt: {
  41904. height: math.unit(210, "miles"),
  41905. name: "Front (Skirt)",
  41906. image: {
  41907. source: "./media/characters/timothy/front-skirt.svg",
  41908. extra: 1007/943,
  41909. bottom: 62/1069
  41910. }
  41911. },
  41912. frontCoat: {
  41913. height: math.unit(210, "miles"),
  41914. name: "Front (Coat)",
  41915. image: {
  41916. source: "./media/characters/timothy/front-coat.svg",
  41917. extra: 1007/943,
  41918. bottom: 62/1069
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Macro",
  41925. height: math.unit(210, "miles"),
  41926. default: true
  41927. },
  41928. {
  41929. name: "Megamacro",
  41930. height: math.unit(210000, "miles")
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(188, "feet"),
  41939. name: "Front",
  41940. image: {
  41941. source: "./media/characters/pyotr/front.svg",
  41942. extra: 1912/1826,
  41943. bottom: 18/1930
  41944. }
  41945. },
  41946. },
  41947. [
  41948. {
  41949. name: "Macro",
  41950. height: math.unit(188, "feet"),
  41951. default: true
  41952. },
  41953. {
  41954. name: "Megamacro",
  41955. height: math.unit(8, "miles")
  41956. },
  41957. ]
  41958. ))
  41959. characterMakers.push(() => makeCharacter(
  41960. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41961. {
  41962. side: {
  41963. height: math.unit(10, "feet"),
  41964. weight: math.unit(4500, "lb"),
  41965. name: "Side",
  41966. image: {
  41967. source: "./media/characters/ackart/side.svg",
  41968. extra: 1776/1668,
  41969. bottom: 116/1892
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(10, "feet"),
  41977. default: true
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41983. {
  41984. side: {
  41985. height: math.unit(21, "feet"),
  41986. name: "Side",
  41987. image: {
  41988. source: "./media/characters/nolow/side.svg",
  41989. extra: 1484/1434,
  41990. bottom: 85/1569
  41991. }
  41992. },
  41993. sideErect: {
  41994. height: math.unit(21, "feet"),
  41995. name: "Side-erect",
  41996. image: {
  41997. source: "./media/characters/nolow/side-erect.svg",
  41998. extra: 1484/1434,
  41999. bottom: 85/1569
  42000. }
  42001. },
  42002. },
  42003. [
  42004. {
  42005. name: "Regular",
  42006. height: math.unit(12, "feet")
  42007. },
  42008. {
  42009. name: "Big Chee",
  42010. height: math.unit(21, "feet"),
  42011. default: true
  42012. },
  42013. ]
  42014. ))
  42015. characterMakers.push(() => makeCharacter(
  42016. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42017. {
  42018. front: {
  42019. height: math.unit(7, "feet"),
  42020. weight: math.unit(250, "lb"),
  42021. name: "Front",
  42022. image: {
  42023. source: "./media/characters/nines/front.svg",
  42024. extra: 1741/1607,
  42025. bottom: 41/1782
  42026. }
  42027. },
  42028. side: {
  42029. height: math.unit(7, "feet"),
  42030. weight: math.unit(250, "lb"),
  42031. name: "Side",
  42032. image: {
  42033. source: "./media/characters/nines/side.svg",
  42034. extra: 1854/1735,
  42035. bottom: 93/1947
  42036. }
  42037. },
  42038. back: {
  42039. height: math.unit(7, "feet"),
  42040. weight: math.unit(250, "lb"),
  42041. name: "Back",
  42042. image: {
  42043. source: "./media/characters/nines/back.svg",
  42044. extra: 1748/1615,
  42045. bottom: 20/1768
  42046. }
  42047. },
  42048. },
  42049. [
  42050. {
  42051. name: "Megamacro",
  42052. height: math.unit(99, "km"),
  42053. default: true
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(5 + 10/12, "feet"),
  42062. weight: math.unit(210, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/zenith/front.svg",
  42066. extra: 1531/1452,
  42067. bottom: 198/1729
  42068. }
  42069. },
  42070. back: {
  42071. height: math.unit(5 + 10/12, "feet"),
  42072. weight: math.unit(210, "lb"),
  42073. name: "Back",
  42074. image: {
  42075. source: "./media/characters/zenith/back.svg",
  42076. extra: 1571/1487,
  42077. bottom: 75/1646
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Normal",
  42084. height: math.unit(5 + 10/12, "feet"),
  42085. default: true
  42086. }
  42087. ]
  42088. ))
  42089. characterMakers.push(() => makeCharacter(
  42090. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42091. {
  42092. front: {
  42093. height: math.unit(4, "feet"),
  42094. weight: math.unit(60, "lb"),
  42095. name: "Front",
  42096. image: {
  42097. source: "./media/characters/jasper/front.svg",
  42098. extra: 1450/1379,
  42099. bottom: 19/1469
  42100. }
  42101. },
  42102. },
  42103. [
  42104. {
  42105. name: "Normal",
  42106. height: math.unit(4, "feet"),
  42107. default: true
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42113. {
  42114. front: {
  42115. height: math.unit(6 + 5/12, "feet"),
  42116. weight: math.unit(290, "lb"),
  42117. name: "Front",
  42118. image: {
  42119. source: "./media/characters/tiberius-thyben/front.svg",
  42120. extra: 757/739,
  42121. bottom: 39/796
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Micro",
  42128. height: math.unit(1.5, "inches")
  42129. },
  42130. {
  42131. name: "Normal",
  42132. height: math.unit(6 + 5/12, "feet"),
  42133. default: true
  42134. },
  42135. {
  42136. name: "Macro",
  42137. height: math.unit(300, "feet")
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(5 + 6/12, "feet"),
  42146. weight: math.unit(60, "kg"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/sabre/front.svg",
  42150. extra: 738/671,
  42151. bottom: 27/765
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Teeny",
  42158. height: math.unit(2, "inches")
  42159. },
  42160. {
  42161. name: "Smol",
  42162. height: math.unit(8, "inches")
  42163. },
  42164. {
  42165. name: "Normal",
  42166. height: math.unit(5 + 6/12, "feet"),
  42167. default: true
  42168. },
  42169. {
  42170. name: "Mini-Macro",
  42171. height: math.unit(15, "feet")
  42172. },
  42173. {
  42174. name: "Macro",
  42175. height: math.unit(50, "feet")
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(6 + 4/12, "feet"),
  42184. weight: math.unit(170, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/charlie/front.svg",
  42188. extra: 1348/1228,
  42189. bottom: 15/1363
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Macro",
  42196. height: math.unit(1700, "meters"),
  42197. default: true
  42198. },
  42199. {
  42200. name: "MegaMacro",
  42201. height: math.unit(20400, "meters")
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(6 + 3/12, "feet"),
  42210. weight: math.unit(185, "lb"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/susan-grant/front.svg",
  42214. extra: 1351/1327,
  42215. bottom: 26/1377
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(6 + 3/12, "feet"),
  42223. default: true
  42224. },
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(225, "feet")
  42228. },
  42229. {
  42230. name: "Macro+",
  42231. height: math.unit(900, "feet")
  42232. },
  42233. {
  42234. name: "MegaMacro",
  42235. height: math.unit(14400, "feet")
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(5 + 4/12, "feet"),
  42244. weight: math.unit(110, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/axel-isanov/front.svg",
  42248. extra: 1096/1065,
  42249. bottom: 13/1109
  42250. }
  42251. },
  42252. },
  42253. [
  42254. {
  42255. name: "Normal",
  42256. height: math.unit(5 + 4/12, "feet"),
  42257. default: true
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42263. {
  42264. front: {
  42265. height: math.unit(9, "feet"),
  42266. weight: math.unit(467, "lb"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/necahual/front.svg",
  42270. extra: 920/873,
  42271. bottom: 26/946
  42272. }
  42273. },
  42274. back: {
  42275. height: math.unit(9, "feet"),
  42276. weight: math.unit(467, "lb"),
  42277. name: "Back",
  42278. image: {
  42279. source: "./media/characters/necahual/back.svg",
  42280. extra: 930/884,
  42281. bottom: 16/946
  42282. }
  42283. },
  42284. frontUnderwear: {
  42285. height: math.unit(9, "feet"),
  42286. weight: math.unit(467, "lb"),
  42287. name: "Front (Underwear)",
  42288. image: {
  42289. source: "./media/characters/necahual/front-underwear.svg",
  42290. extra: 920/873,
  42291. bottom: 26/946
  42292. }
  42293. },
  42294. frontDressed: {
  42295. height: math.unit(9, "feet"),
  42296. weight: math.unit(467, "lb"),
  42297. name: "Front (Dressed)",
  42298. image: {
  42299. source: "./media/characters/necahual/front-dressed.svg",
  42300. extra: 920/873,
  42301. bottom: 26/946
  42302. }
  42303. },
  42304. },
  42305. [
  42306. {
  42307. name: "Comprsesed",
  42308. height: math.unit(9, "feet")
  42309. },
  42310. {
  42311. name: "Natural",
  42312. height: math.unit(15, "feet"),
  42313. default: true
  42314. },
  42315. {
  42316. name: "Boosted",
  42317. height: math.unit(50, "feet")
  42318. },
  42319. {
  42320. name: "Boosted+",
  42321. height: math.unit(150, "feet")
  42322. },
  42323. {
  42324. name: "Max",
  42325. height: math.unit(500, "feet")
  42326. },
  42327. ]
  42328. ))
  42329. characterMakers.push(() => makeCharacter(
  42330. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42331. {
  42332. front: {
  42333. height: math.unit(22 + 1/12, "feet"),
  42334. weight: math.unit(3200, "lb"),
  42335. name: "Front",
  42336. image: {
  42337. source: "./media/characters/theo-acacia/front.svg",
  42338. extra: 1796/1741,
  42339. bottom: 83/1879
  42340. }
  42341. },
  42342. frontUnderwear: {
  42343. height: math.unit(22 + 1/12, "feet"),
  42344. weight: math.unit(3200, "lb"),
  42345. name: "Front (Underwear)",
  42346. image: {
  42347. source: "./media/characters/theo-acacia/front-underwear.svg",
  42348. extra: 1796/1741,
  42349. bottom: 83/1879
  42350. }
  42351. },
  42352. frontNude: {
  42353. height: math.unit(22 + 1/12, "feet"),
  42354. weight: math.unit(3200, "lb"),
  42355. name: "Front (Nude)",
  42356. image: {
  42357. source: "./media/characters/theo-acacia/front-nude.svg",
  42358. extra: 1796/1741,
  42359. bottom: 83/1879
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Normal",
  42366. height: math.unit(22 + 1/12, "feet"),
  42367. default: true
  42368. },
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42373. {
  42374. front: {
  42375. height: math.unit(20, "feet"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/astra/front.svg",
  42379. extra: 1850/1714,
  42380. bottom: 106/1956
  42381. }
  42382. },
  42383. frontUndressed: {
  42384. height: math.unit(20, "feet"),
  42385. name: "Front (Undressed)",
  42386. image: {
  42387. source: "./media/characters/astra/front-undressed.svg",
  42388. extra: 1926/1749,
  42389. bottom: 0/1926
  42390. }
  42391. },
  42392. hand: {
  42393. height: math.unit(1.53, "feet"),
  42394. name: "Hand",
  42395. image: {
  42396. source: "./media/characters/astra/hand.svg"
  42397. }
  42398. },
  42399. paw: {
  42400. height: math.unit(1.53, "feet"),
  42401. name: "Paw",
  42402. image: {
  42403. source: "./media/characters/astra/paw.svg"
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Smallest",
  42410. height: math.unit(20, "feet")
  42411. },
  42412. {
  42413. name: "Normal",
  42414. height: math.unit(1e9, "miles"),
  42415. default: true
  42416. },
  42417. {
  42418. name: "Larger",
  42419. height: math.unit(5, "multiverses")
  42420. },
  42421. {
  42422. name: "Largest",
  42423. height: math.unit(1e9, "multiverses")
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(8, "feet"),
  42432. name: "Front",
  42433. image: {
  42434. source: "./media/characters/breanna/front.svg",
  42435. extra: 1912/1632,
  42436. bottom: 33/1945
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Smallest",
  42443. height: math.unit(8, "feet")
  42444. },
  42445. {
  42446. name: "Normal",
  42447. height: math.unit(1, "mile"),
  42448. default: true
  42449. },
  42450. {
  42451. name: "Maximum",
  42452. height: math.unit(1500000000000, "lightyears")
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(5 + 11/12, "feet"),
  42461. weight: math.unit(155, "lb"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/cai/front.svg",
  42465. extra: 1823/1702,
  42466. bottom: 32/1855
  42467. }
  42468. },
  42469. back: {
  42470. height: math.unit(5 + 11/12, "feet"),
  42471. weight: math.unit(155, "lb"),
  42472. name: "Back",
  42473. image: {
  42474. source: "./media/characters/cai/back.svg",
  42475. extra: 1809/1708,
  42476. bottom: 31/1840
  42477. }
  42478. },
  42479. },
  42480. [
  42481. {
  42482. name: "Normal",
  42483. height: math.unit(5 + 11/12, "feet"),
  42484. default: true
  42485. },
  42486. {
  42487. name: "Big",
  42488. height: math.unit(15, "feet")
  42489. },
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(200, "feet")
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(5 + 6/12, "feet"),
  42501. weight: math.unit(160, "lb"),
  42502. name: "Front",
  42503. image: {
  42504. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42505. extra: 1227/1174,
  42506. bottom: 37/1264
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Macro",
  42513. height: math.unit(444, "meters"),
  42514. default: true
  42515. },
  42516. ]
  42517. ))
  42518. characterMakers.push(() => makeCharacter(
  42519. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42520. {
  42521. front: {
  42522. height: math.unit(18 + 7/12, "feet"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/rex/front.svg",
  42526. extra: 1941/1807,
  42527. bottom: 66/2007
  42528. }
  42529. },
  42530. back: {
  42531. height: math.unit(18 + 7/12, "feet"),
  42532. name: "Back",
  42533. image: {
  42534. source: "./media/characters/rex/back.svg",
  42535. extra: 1937/1822,
  42536. bottom: 42/1979
  42537. }
  42538. },
  42539. boot: {
  42540. height: math.unit(3.45, "feet"),
  42541. name: "Boot",
  42542. image: {
  42543. source: "./media/characters/rex/boot.svg"
  42544. }
  42545. },
  42546. paw: {
  42547. height: math.unit(4.17, "feet"),
  42548. name: "Paw",
  42549. image: {
  42550. source: "./media/characters/rex/paw.svg"
  42551. }
  42552. },
  42553. head: {
  42554. height: math.unit(6.728, "feet"),
  42555. name: "Head",
  42556. image: {
  42557. source: "./media/characters/rex/head.svg"
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Nano",
  42564. height: math.unit(18 + 7/12, "feet")
  42565. },
  42566. {
  42567. name: "Micro",
  42568. height: math.unit(1.5, "megameters")
  42569. },
  42570. {
  42571. name: "Normal",
  42572. height: math.unit(440, "megameters"),
  42573. default: true
  42574. },
  42575. {
  42576. name: "Macro",
  42577. height: math.unit(2.5, "gigameters")
  42578. },
  42579. {
  42580. name: "Gigamacro",
  42581. height: math.unit(2, "galaxies")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42587. {
  42588. side: {
  42589. height: math.unit(32, "feet"),
  42590. weight: math.unit(250000, "lb"),
  42591. name: "Side",
  42592. image: {
  42593. source: "./media/characters/silverwing/side.svg",
  42594. extra: 1100/1019,
  42595. bottom: 204/1304
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Normal",
  42602. height: math.unit(32, "feet"),
  42603. default: true
  42604. },
  42605. ]
  42606. ))
  42607. characterMakers.push(() => makeCharacter(
  42608. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42609. {
  42610. front: {
  42611. height: math.unit(6 + 6/12, "feet"),
  42612. weight: math.unit(350, "lb"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/tristan-hawthorne/front.svg",
  42616. extra: 1159/1124,
  42617. bottom: 37/1196
  42618. },
  42619. form: "labrador",
  42620. default: true
  42621. },
  42622. skunkFront: {
  42623. height: math.unit(4 + 6/12, "feet"),
  42624. weight: math.unit(120, "lb"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42628. extra: 1609/1551,
  42629. bottom: 169/1778
  42630. },
  42631. form: "skunk",
  42632. default: true
  42633. },
  42634. },
  42635. [
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(6 + 6/12, "feet"),
  42639. form: "labrador",
  42640. default: true
  42641. },
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(4 + 6/12, "feet"),
  42645. form: "skunk",
  42646. default: true
  42647. },
  42648. ],
  42649. {
  42650. "labrador": {
  42651. name: "Labrador",
  42652. default: true
  42653. },
  42654. "skunk": {
  42655. name: "Skunk"
  42656. }
  42657. }
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(5 + 11/12, "feet"),
  42664. weight: math.unit(190, "lb"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/mizu/front.svg",
  42668. extra: 1988/1788,
  42669. bottom: 14/2002
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(5 + 11/12, "feet"),
  42677. default: true
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(1.7, "feet"),
  42686. weight: math.unit(50, "lb"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/dechroma/front.svg",
  42690. extra: 1095/859,
  42691. bottom: 64/1159
  42692. }
  42693. },
  42694. },
  42695. [
  42696. {
  42697. name: "Normal",
  42698. height: math.unit(1.7, "feet"),
  42699. default: true
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42705. {
  42706. side: {
  42707. height: math.unit(30, "feet"),
  42708. name: "Side",
  42709. image: {
  42710. source: "./media/characters/veluren-thanazel/side.svg",
  42711. extra: 1611/633,
  42712. bottom: 118/1729
  42713. }
  42714. },
  42715. front: {
  42716. height: math.unit(30, "feet"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/veluren-thanazel/front.svg",
  42720. extra: 1486/636,
  42721. bottom: 238/1724
  42722. }
  42723. },
  42724. head: {
  42725. height: math.unit(21.4, "feet"),
  42726. name: "Head",
  42727. image: {
  42728. source: "./media/characters/veluren-thanazel/head.svg"
  42729. }
  42730. },
  42731. genitals: {
  42732. height: math.unit(19.4, "feet"),
  42733. name: "Genitals",
  42734. image: {
  42735. source: "./media/characters/veluren-thanazel/genitals.svg"
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Social",
  42742. height: math.unit(6, "feet")
  42743. },
  42744. {
  42745. name: "Play",
  42746. height: math.unit(12, "feet")
  42747. },
  42748. {
  42749. name: "True",
  42750. height: math.unit(30, "feet"),
  42751. default: true
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(7 + 6/12, "feet"),
  42760. weight: math.unit(500, "kg"),
  42761. name: "Front",
  42762. image: {
  42763. source: "./media/characters/arcturas/front.svg",
  42764. extra: 1700/1500,
  42765. bottom: 145/1845
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(7 + 6/12, "feet"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42779. {
  42780. side: {
  42781. height: math.unit(6, "feet"),
  42782. weight: math.unit(2, "tons"),
  42783. name: "Side",
  42784. image: {
  42785. source: "./media/characters/vitaen/side.svg",
  42786. extra: 1157/617,
  42787. bottom: 122/1279
  42788. }
  42789. },
  42790. },
  42791. [
  42792. {
  42793. name: "Normal",
  42794. height: math.unit(6, "feet"),
  42795. default: true
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(19, "feet"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/fia-dreamweaver/front.svg",
  42807. extra: 1630/1504,
  42808. bottom: 25/1655
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(19, "feet"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(5 + 4/12, "feet"),
  42825. name: "Front",
  42826. image: {
  42827. source: "./media/characters/artan/front.svg",
  42828. extra: 1618/1535,
  42829. bottom: 46/1664
  42830. }
  42831. },
  42832. back: {
  42833. height: math.unit(5 + 4/12, "feet"),
  42834. name: "Back",
  42835. image: {
  42836. source: "./media/characters/artan/back.svg",
  42837. extra: 1618/1543,
  42838. bottom: 31/1649
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(5 + 4/12, "feet"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42852. {
  42853. side: {
  42854. height: math.unit(182, "cm"),
  42855. weight: math.unit(1000, "lb"),
  42856. name: "Side",
  42857. image: {
  42858. source: "./media/characters/silver-dragon/side.svg",
  42859. extra: 710/287,
  42860. bottom: 88/798
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Normal",
  42867. height: math.unit(182, "cm"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42874. {
  42875. side: {
  42876. height: math.unit(6 + 6/12, "feet"),
  42877. weight: math.unit(1.5, "tons"),
  42878. name: "Side",
  42879. image: {
  42880. source: "./media/characters/zephyr/side.svg",
  42881. extra: 1433/586,
  42882. bottom: 109/1542
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Normal",
  42889. height: math.unit(6 + 6/12, "feet"),
  42890. default: true
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42896. {
  42897. side: {
  42898. height: math.unit(1, "feet"),
  42899. name: "Side",
  42900. image: {
  42901. source: "./media/characters/vixye/side.svg",
  42902. extra: 632/541,
  42903. bottom: 0/632
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(1, "feet"),
  42911. default: true
  42912. },
  42913. {
  42914. name: "True",
  42915. height: math.unit(1e15, "multiverses")
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42921. {
  42922. front: {
  42923. height: math.unit(8 + 2/12, "feet"),
  42924. weight: math.unit(650, "lb"),
  42925. name: "Front",
  42926. image: {
  42927. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42928. extra: 1174/1137,
  42929. bottom: 82/1256
  42930. }
  42931. },
  42932. back: {
  42933. height: math.unit(8 + 2/12, "feet"),
  42934. weight: math.unit(650, "lb"),
  42935. name: "Back",
  42936. image: {
  42937. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42938. extra: 1204/1157,
  42939. bottom: 46/1250
  42940. }
  42941. },
  42942. },
  42943. [
  42944. {
  42945. name: "Wildform",
  42946. height: math.unit(8 + 2/12, "feet"),
  42947. default: true
  42948. },
  42949. ]
  42950. ))
  42951. characterMakers.push(() => makeCharacter(
  42952. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42953. {
  42954. front: {
  42955. height: math.unit(18, "feet"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/cyphin/front.svg",
  42959. extra: 970/886,
  42960. bottom: 42/1012
  42961. }
  42962. },
  42963. back: {
  42964. height: math.unit(18, "feet"),
  42965. name: "Back",
  42966. image: {
  42967. source: "./media/characters/cyphin/back.svg",
  42968. extra: 1009/894,
  42969. bottom: 24/1033
  42970. }
  42971. },
  42972. head: {
  42973. height: math.unit(5.05, "feet"),
  42974. name: "Head",
  42975. image: {
  42976. source: "./media/characters/cyphin/head.svg"
  42977. }
  42978. },
  42979. tailbud: {
  42980. height: math.unit(5, "feet"),
  42981. name: "Tailbud",
  42982. image: {
  42983. source: "./media/characters/cyphin/tailbud.svg"
  42984. }
  42985. },
  42986. },
  42987. [
  42988. ]
  42989. ))
  42990. characterMakers.push(() => makeCharacter(
  42991. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42992. {
  42993. side: {
  42994. height: math.unit(10, "feet"),
  42995. weight: math.unit(6, "tons"),
  42996. name: "Side",
  42997. image: {
  42998. source: "./media/characters/raijin/side.svg",
  42999. extra: 1529/613,
  43000. bottom: 337/1866
  43001. }
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Normal",
  43007. height: math.unit(10, "feet"),
  43008. default: true
  43009. },
  43010. ]
  43011. ))
  43012. characterMakers.push(() => makeCharacter(
  43013. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43014. {
  43015. side: {
  43016. height: math.unit(9, "feet"),
  43017. name: "Side",
  43018. image: {
  43019. source: "./media/characters/nilghais/side.svg",
  43020. extra: 1047/744,
  43021. bottom: 91/1138
  43022. }
  43023. },
  43024. head: {
  43025. height: math.unit(3.14, "feet"),
  43026. name: "Head",
  43027. image: {
  43028. source: "./media/characters/nilghais/head.svg"
  43029. }
  43030. },
  43031. mouth: {
  43032. height: math.unit(4.6, "feet"),
  43033. name: "Mouth",
  43034. image: {
  43035. source: "./media/characters/nilghais/mouth.svg"
  43036. }
  43037. },
  43038. wings: {
  43039. height: math.unit(24, "feet"),
  43040. name: "Wings",
  43041. image: {
  43042. source: "./media/characters/nilghais/wings.svg"
  43043. }
  43044. },
  43045. ass: {
  43046. height: math.unit(6.12, "feet"),
  43047. name: "Ass",
  43048. image: {
  43049. source: "./media/characters/nilghais/ass.svg"
  43050. }
  43051. },
  43052. },
  43053. [
  43054. {
  43055. name: "Normal",
  43056. height: math.unit(9, "feet"),
  43057. default: true
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43063. {
  43064. regular: {
  43065. height: math.unit(16 + 2/12, "feet"),
  43066. weight: math.unit(2300, "lb"),
  43067. name: "Regular",
  43068. image: {
  43069. source: "./media/characters/zolgar/regular.svg",
  43070. extra: 1246/1004,
  43071. bottom: 124/1370
  43072. }
  43073. },
  43074. boxers: {
  43075. height: math.unit(16 + 2/12, "feet"),
  43076. weight: math.unit(2300, "lb"),
  43077. name: "Boxers",
  43078. image: {
  43079. source: "./media/characters/zolgar/boxers.svg",
  43080. extra: 1246/1004,
  43081. bottom: 124/1370
  43082. }
  43083. },
  43084. armored: {
  43085. height: math.unit(16 + 2/12, "feet"),
  43086. weight: math.unit(2300, "lb"),
  43087. name: "Armored",
  43088. image: {
  43089. source: "./media/characters/zolgar/armored.svg",
  43090. extra: 1246/1004,
  43091. bottom: 124/1370
  43092. }
  43093. },
  43094. goth: {
  43095. height: math.unit(16 + 2/12, "feet"),
  43096. weight: math.unit(2300, "lb"),
  43097. name: "Goth",
  43098. image: {
  43099. source: "./media/characters/zolgar/goth.svg",
  43100. extra: 1246/1004,
  43101. bottom: 124/1370
  43102. }
  43103. },
  43104. },
  43105. [
  43106. {
  43107. name: "Shrunken Down",
  43108. height: math.unit(9 + 2/12, "feet")
  43109. },
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(16 + 2/12, "feet"),
  43113. default: true
  43114. },
  43115. ]
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43119. {
  43120. front: {
  43121. height: math.unit(6, "feet"),
  43122. weight: math.unit(168, "lb"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/luca/front.svg",
  43126. extra: 841/667,
  43127. bottom: 102/943
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(6, "feet"),
  43135. default: true
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43141. {
  43142. side: {
  43143. height: math.unit(7 + 3/12, "feet"),
  43144. weight: math.unit(312, "lb"),
  43145. name: "Side",
  43146. image: {
  43147. source: "./media/characters/zezo/side.svg",
  43148. extra: 1192/1067,
  43149. bottom: 63/1255
  43150. }
  43151. },
  43152. },
  43153. [
  43154. {
  43155. name: "Normal",
  43156. height: math.unit(7 + 3/12, "feet"),
  43157. default: true
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(5 + 5/12, "feet"),
  43166. weight: math.unit(170, "lb"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/mayso/front.svg",
  43170. extra: 1215/1108,
  43171. bottom: 16/1231
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Normal",
  43178. height: math.unit(5 + 5/12, "feet"),
  43179. default: true
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(4 + 3/12, "feet"),
  43188. weight: math.unit(80, "lb"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/hess/front.svg",
  43192. extra: 1200/1123,
  43193. bottom: 16/1216
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(4 + 3/12, "feet"),
  43201. default: true
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43207. {
  43208. front: {
  43209. height: math.unit(1.9, "meters"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/ashgar/front.svg",
  43213. extra: 1177/1146,
  43214. bottom: 99/1276
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(1.9, "meters"),
  43219. name: "Back",
  43220. image: {
  43221. source: "./media/characters/ashgar/back.svg",
  43222. extra: 1201/1183,
  43223. bottom: 53/1254
  43224. }
  43225. },
  43226. feral: {
  43227. height: math.unit(1.4, "meters"),
  43228. name: "Feral",
  43229. image: {
  43230. source: "./media/characters/ashgar/feral.svg",
  43231. extra: 370/345,
  43232. bottom: 45/415
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "Normal",
  43239. height: math.unit(1.9, "meters"),
  43240. default: true
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43246. {
  43247. regular: {
  43248. height: math.unit(6, "feet"),
  43249. weight: math.unit(220, "lb"),
  43250. name: "Regular",
  43251. image: {
  43252. source: "./media/characters/phillip/regular.svg",
  43253. extra: 1373/1277,
  43254. bottom: 75/1448
  43255. }
  43256. },
  43257. dressed: {
  43258. height: math.unit(6, "feet"),
  43259. weight: math.unit(220, "lb"),
  43260. name: "Dressed",
  43261. image: {
  43262. source: "./media/characters/phillip/dressed.svg",
  43263. extra: 1373/1277,
  43264. bottom: 75/1448
  43265. }
  43266. },
  43267. paw: {
  43268. height: math.unit(1.44, "feet"),
  43269. name: "Paw",
  43270. image: {
  43271. source: "./media/characters/phillip/paw.svg"
  43272. }
  43273. },
  43274. },
  43275. [
  43276. {
  43277. name: "Normal",
  43278. height: math.unit(6, "feet"),
  43279. default: true
  43280. },
  43281. ]
  43282. ))
  43283. characterMakers.push(() => makeCharacter(
  43284. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43285. {
  43286. side: {
  43287. height: math.unit(42, "feet"),
  43288. name: "Side",
  43289. image: {
  43290. source: "./media/characters/uvula/side.svg",
  43291. extra: 683/586,
  43292. bottom: 60/743
  43293. }
  43294. },
  43295. front: {
  43296. height: math.unit(42, "feet"),
  43297. name: "Front",
  43298. image: {
  43299. source: "./media/characters/uvula/front.svg",
  43300. extra: 705/613,
  43301. bottom: 54/759
  43302. }
  43303. },
  43304. maw: {
  43305. height: math.unit(23.5, "feet"),
  43306. name: "Maw",
  43307. image: {
  43308. source: "./media/characters/uvula/maw.svg"
  43309. }
  43310. },
  43311. },
  43312. [
  43313. {
  43314. name: "Original Size",
  43315. height: math.unit(14, "inches")
  43316. },
  43317. {
  43318. name: "Human Size",
  43319. height: math.unit(6, "feet")
  43320. },
  43321. {
  43322. name: "Big",
  43323. height: math.unit(42, "feet"),
  43324. default: true
  43325. },
  43326. {
  43327. name: "Bigger",
  43328. height: math.unit(100, "feet")
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(5 + 11/12, "feet"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/lannah/front.svg",
  43340. extra: 1208/1113,
  43341. bottom: 97/1305
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(5 + 11/12, "feet"),
  43349. default: true
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43355. {
  43356. front: {
  43357. height: math.unit(6 + 3/12, "feet"),
  43358. weight: math.unit(3.5, "tons"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/emberflame/front.svg",
  43362. extra: 1198/672,
  43363. bottom: 82/1280
  43364. }
  43365. },
  43366. side: {
  43367. height: math.unit(6 + 3/12, "feet"),
  43368. weight: math.unit(3.5, "tons"),
  43369. name: "Side",
  43370. image: {
  43371. source: "./media/characters/emberflame/side.svg",
  43372. extra: 938/527,
  43373. bottom: 56/994
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Normal",
  43380. height: math.unit(6 + 3/12, "feet"),
  43381. default: true
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43387. {
  43388. side: {
  43389. height: math.unit(17.5, "feet"),
  43390. weight: math.unit(35, "tons"),
  43391. name: "Side",
  43392. image: {
  43393. source: "./media/characters/sophie-ambrose/side.svg",
  43394. extra: 1573/1242,
  43395. bottom: 71/1644
  43396. }
  43397. },
  43398. maw: {
  43399. height: math.unit(7.4, "feet"),
  43400. name: "Maw",
  43401. image: {
  43402. source: "./media/characters/sophie-ambrose/maw.svg"
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(17.5, "feet"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(280, "feet"),
  43419. weight: math.unit(550, "tons"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/king-mugi/front.svg",
  43423. extra: 1102/947,
  43424. bottom: 104/1206
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "King Mugi",
  43431. height: math.unit(280, "feet"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(64, "meters"),
  43441. name: "Front",
  43442. image: {
  43443. source: "./media/characters/nova-fox/front.svg",
  43444. extra: 1310/1246,
  43445. bottom: 65/1375
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Macro",
  43452. height: math.unit(64, "meters"),
  43453. default: true
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43459. {
  43460. front: {
  43461. height: math.unit(6 + 3/12, "feet"),
  43462. weight: math.unit(170, "lb"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/sam-bat/front.svg",
  43466. extra: 1601/1411,
  43467. bottom: 125/1726
  43468. }
  43469. },
  43470. back: {
  43471. height: math.unit(6 + 3/12, "feet"),
  43472. weight: math.unit(170, "lb"),
  43473. name: "Back",
  43474. image: {
  43475. source: "./media/characters/sam-bat/back.svg",
  43476. extra: 1577/1405,
  43477. bottom: 58/1635
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Normal",
  43484. height: math.unit(6 + 3/12, "feet"),
  43485. default: true
  43486. },
  43487. ]
  43488. ))
  43489. characterMakers.push(() => makeCharacter(
  43490. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43491. {
  43492. front: {
  43493. height: math.unit(59, "feet"),
  43494. weight: math.unit(40000, "lb"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/inari/front.svg",
  43498. extra: 1884/1350,
  43499. bottom: 95/1979
  43500. }
  43501. },
  43502. },
  43503. [
  43504. {
  43505. name: "Gigantamax",
  43506. height: math.unit(59, "feet"),
  43507. default: true
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(5 + 8/12, "feet"),
  43516. name: "Front",
  43517. image: {
  43518. source: "./media/characters/elizabeth/front.svg",
  43519. extra: 1395/1298,
  43520. bottom: 54/1449
  43521. }
  43522. },
  43523. mouth: {
  43524. height: math.unit(1.97, "feet"),
  43525. name: "Mouth",
  43526. image: {
  43527. source: "./media/characters/elizabeth/mouth.svg"
  43528. }
  43529. },
  43530. foot: {
  43531. height: math.unit(1.17, "feet"),
  43532. name: "Foot",
  43533. image: {
  43534. source: "./media/characters/elizabeth/foot.svg"
  43535. }
  43536. },
  43537. },
  43538. [
  43539. {
  43540. name: "Normal",
  43541. height: math.unit(5 + 8/12, "feet"),
  43542. default: true
  43543. },
  43544. {
  43545. name: "Minimacro",
  43546. height: math.unit(18, "feet")
  43547. },
  43548. {
  43549. name: "Macro",
  43550. height: math.unit(180, "feet")
  43551. },
  43552. ]
  43553. ))
  43554. characterMakers.push(() => makeCharacter(
  43555. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43556. {
  43557. front: {
  43558. height: math.unit(5 + 2/12, "feet"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/october-gossamer/front.svg",
  43562. extra: 505/454,
  43563. bottom: 7/512
  43564. }
  43565. },
  43566. back: {
  43567. height: math.unit(5 + 2/12, "feet"),
  43568. name: "Back",
  43569. image: {
  43570. source: "./media/characters/october-gossamer/back.svg",
  43571. extra: 501/454,
  43572. bottom: 11/512
  43573. }
  43574. },
  43575. },
  43576. [
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(5 + 2/12, "feet"),
  43580. default: true
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(5, "feet"),
  43589. name: "Front",
  43590. image: {
  43591. source: "./media/characters/epiglottis/front.svg",
  43592. extra: 923/849,
  43593. bottom: 17/940
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Original Size",
  43600. height: math.unit(10, "inches")
  43601. },
  43602. {
  43603. name: "Human Size",
  43604. height: math.unit(5, "feet"),
  43605. default: true
  43606. },
  43607. {
  43608. name: "Big",
  43609. height: math.unit(25, "feet")
  43610. },
  43611. {
  43612. name: "Bigger",
  43613. height: math.unit(50, "feet")
  43614. },
  43615. {
  43616. name: "oh lawd",
  43617. height: math.unit(75, "feet")
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43623. {
  43624. front: {
  43625. height: math.unit(2 + 4/12, "feet"),
  43626. weight: math.unit(60, "lb"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/lerm/front.svg",
  43630. extra: 796/790,
  43631. bottom: 79/875
  43632. }
  43633. },
  43634. },
  43635. [
  43636. {
  43637. name: "Normal",
  43638. height: math.unit(2 + 4/12, "feet"),
  43639. default: true
  43640. },
  43641. ]
  43642. ))
  43643. characterMakers.push(() => makeCharacter(
  43644. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43645. {
  43646. front: {
  43647. height: math.unit(5.5, "feet"),
  43648. weight: math.unit(130, "lb"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/xena-nebadon/front.svg",
  43652. extra: 1828/1730,
  43653. bottom: 79/1907
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Tiny Puppy",
  43660. height: math.unit(3, "inches")
  43661. },
  43662. {
  43663. name: "Normal",
  43664. height: math.unit(5.5, "feet"),
  43665. default: true
  43666. },
  43667. {
  43668. name: "Lotta Lady",
  43669. height: math.unit(12, "feet")
  43670. },
  43671. {
  43672. name: "Pretty Big",
  43673. height: math.unit(100, "feet")
  43674. },
  43675. {
  43676. name: "Big",
  43677. height: math.unit(500, "feet")
  43678. },
  43679. {
  43680. name: "Skyscraper Toys",
  43681. height: math.unit(2500, "feet")
  43682. },
  43683. {
  43684. name: "Plane Catcher",
  43685. height: math.unit(8, "miles")
  43686. },
  43687. {
  43688. name: "Planet Toys",
  43689. height: math.unit(15, "earths")
  43690. },
  43691. {
  43692. name: "Stardust",
  43693. height: math.unit(0.25, "galaxies")
  43694. },
  43695. {
  43696. name: "Snacks",
  43697. height: math.unit(70, "universes")
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43703. {
  43704. front: {
  43705. height: math.unit(1.6, "meters"),
  43706. weight: math.unit(60, "kg"),
  43707. name: "Front",
  43708. image: {
  43709. source: "./media/characters/bounty/front.svg",
  43710. extra: 1426/1308,
  43711. bottom: 15/1441
  43712. }
  43713. },
  43714. back: {
  43715. height: math.unit(1.6, "meters"),
  43716. weight: math.unit(60, "kg"),
  43717. name: "Back",
  43718. image: {
  43719. source: "./media/characters/bounty/back.svg",
  43720. extra: 1417/1307,
  43721. bottom: 8/1425
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Normal",
  43728. height: math.unit(1.6, "meters"),
  43729. default: true
  43730. },
  43731. {
  43732. name: "Macro",
  43733. height: math.unit(300, "meters")
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43739. {
  43740. front: {
  43741. height: math.unit(2 + 8/12, "feet"),
  43742. weight: math.unit(15, "lb"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/mochi/front.svg",
  43746. extra: 1022/852,
  43747. bottom: 435/1457
  43748. }
  43749. },
  43750. back: {
  43751. height: math.unit(2 + 8/12, "feet"),
  43752. weight: math.unit(15, "lb"),
  43753. name: "Back",
  43754. image: {
  43755. source: "./media/characters/mochi/back.svg",
  43756. extra: 1335/1119,
  43757. bottom: 39/1374
  43758. }
  43759. },
  43760. bird: {
  43761. height: math.unit(2 + 8/12, "feet"),
  43762. weight: math.unit(15, "lb"),
  43763. name: "Bird",
  43764. image: {
  43765. source: "./media/characters/mochi/bird.svg",
  43766. extra: 1251/1113,
  43767. bottom: 178/1429
  43768. }
  43769. },
  43770. kaiju: {
  43771. height: math.unit(154, "feet"),
  43772. weight: math.unit(1e7, "lb"),
  43773. name: "Kaiju",
  43774. image: {
  43775. source: "./media/characters/mochi/kaiju.svg",
  43776. extra: 460/324,
  43777. bottom: 40/500
  43778. }
  43779. },
  43780. head: {
  43781. height: math.unit(1.21, "feet"),
  43782. name: "Head",
  43783. image: {
  43784. source: "./media/characters/mochi/head.svg"
  43785. }
  43786. },
  43787. alternateTail: {
  43788. height: math.unit(2 + 8/12, "feet"),
  43789. weight: math.unit(45, "lb"),
  43790. name: "Alternate Tail",
  43791. image: {
  43792. source: "./media/characters/mochi/alternate-tail.svg",
  43793. extra: 139/76,
  43794. bottom: 45/184
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Micro",
  43801. height: math.unit(2, "inches")
  43802. },
  43803. {
  43804. name: "Normal",
  43805. height: math.unit(2 + 8/12, "feet"),
  43806. default: true
  43807. },
  43808. {
  43809. name: "Macro",
  43810. height: math.unit(106, "feet")
  43811. },
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43816. {
  43817. front: {
  43818. height: math.unit(5.67, "feet"),
  43819. weight: math.unit(135, "lb"),
  43820. name: "Front",
  43821. image: {
  43822. source: "./media/characters/sarel/front.svg",
  43823. extra: 865/788,
  43824. bottom: 97/962
  43825. }
  43826. },
  43827. back: {
  43828. height: math.unit(5.67, "feet"),
  43829. weight: math.unit(135, "lb"),
  43830. name: "Back",
  43831. image: {
  43832. source: "./media/characters/sarel/back.svg",
  43833. extra: 857/777,
  43834. bottom: 32/889
  43835. }
  43836. },
  43837. chozoan: {
  43838. height: math.unit(5.67, "feet"),
  43839. weight: math.unit(135, "lb"),
  43840. name: "Chozoan",
  43841. image: {
  43842. source: "./media/characters/sarel/chozoan.svg",
  43843. extra: 865/788,
  43844. bottom: 97/962
  43845. }
  43846. },
  43847. current: {
  43848. height: math.unit(5.67, "feet"),
  43849. weight: math.unit(135, "lb"),
  43850. name: "Current",
  43851. image: {
  43852. source: "./media/characters/sarel/current.svg",
  43853. extra: 865/788,
  43854. bottom: 97/962
  43855. }
  43856. },
  43857. head: {
  43858. height: math.unit(1.77, "feet"),
  43859. name: "Head",
  43860. image: {
  43861. source: "./media/characters/sarel/head.svg"
  43862. }
  43863. },
  43864. claws: {
  43865. height: math.unit(1.8, "feet"),
  43866. name: "Claws",
  43867. image: {
  43868. source: "./media/characters/sarel/claws.svg"
  43869. }
  43870. },
  43871. clawsAlt: {
  43872. height: math.unit(1.8, "feet"),
  43873. name: "Claws-alt",
  43874. image: {
  43875. source: "./media/characters/sarel/claws-alt.svg"
  43876. }
  43877. },
  43878. },
  43879. [
  43880. {
  43881. name: "Normal",
  43882. height: math.unit(5.67, "feet"),
  43883. default: true
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(5500, "feet"),
  43892. name: "Front",
  43893. image: {
  43894. source: "./media/characters/alyonia/front.svg",
  43895. extra: 1200/1135,
  43896. bottom: 29/1229
  43897. }
  43898. },
  43899. back: {
  43900. height: math.unit(5500, "feet"),
  43901. name: "Back",
  43902. image: {
  43903. source: "./media/characters/alyonia/back.svg",
  43904. extra: 1205/1138,
  43905. bottom: 10/1215
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Small",
  43912. height: math.unit(10, "feet")
  43913. },
  43914. {
  43915. name: "Macro",
  43916. height: math.unit(500, "feet")
  43917. },
  43918. {
  43919. name: "Mega Macro",
  43920. height: math.unit(5500, "feet"),
  43921. default: true
  43922. },
  43923. {
  43924. name: "Mega Macro+",
  43925. height: math.unit(500000, "feet")
  43926. },
  43927. {
  43928. name: "Giga Macro",
  43929. height: math.unit(3000, "miles")
  43930. },
  43931. {
  43932. name: "Tera Macro",
  43933. height: math.unit(2.8e6, "miles")
  43934. },
  43935. {
  43936. name: "Galactic",
  43937. height: math.unit(120000, "lightyears")
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43943. {
  43944. werewolf: {
  43945. height: math.unit(8, "feet"),
  43946. weight: math.unit(425, "lb"),
  43947. name: "Werewolf",
  43948. image: {
  43949. source: "./media/characters/autumn/werewolf.svg",
  43950. extra: 2154/2031,
  43951. bottom: 160/2314
  43952. }
  43953. },
  43954. human: {
  43955. height: math.unit(5 + 8/12, "feet"),
  43956. weight: math.unit(150, "lb"),
  43957. name: "Human",
  43958. image: {
  43959. source: "./media/characters/autumn/human.svg",
  43960. extra: 1200/1149,
  43961. bottom: 30/1230
  43962. }
  43963. },
  43964. },
  43965. [
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(8, "feet"),
  43969. default: true
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43975. {
  43976. front: {
  43977. height: math.unit(8 + 5/12, "feet"),
  43978. weight: math.unit(825, "lb"),
  43979. name: "Front",
  43980. image: {
  43981. source: "./media/characters/cobalt-charizard/front.svg",
  43982. extra: 1268/1155,
  43983. bottom: 122/1390
  43984. }
  43985. },
  43986. side: {
  43987. height: math.unit(8 + 5/12, "feet"),
  43988. weight: math.unit(825, "lb"),
  43989. name: "Side",
  43990. image: {
  43991. source: "./media/characters/cobalt-charizard/side.svg",
  43992. extra: 1348/1257,
  43993. bottom: 58/1406
  43994. }
  43995. },
  43996. gMax: {
  43997. height: math.unit(134 + 11/12, "feet"),
  43998. name: "G-Max",
  43999. image: {
  44000. source: "./media/characters/cobalt-charizard/g-max.svg",
  44001. extra: 1835/1541,
  44002. bottom: 151/1986
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Normal",
  44009. height: math.unit(8 + 5/12, "feet"),
  44010. default: true
  44011. },
  44012. ]
  44013. ))
  44014. characterMakers.push(() => makeCharacter(
  44015. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44016. {
  44017. front: {
  44018. height: math.unit(6 + 3/12, "feet"),
  44019. weight: math.unit(210, "lb"),
  44020. name: "Front",
  44021. image: {
  44022. source: "./media/characters/stella/front.svg",
  44023. extra: 3549/3335,
  44024. bottom: 51/3600
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(6 + 3/12, "feet"),
  44032. default: true
  44033. },
  44034. ]
  44035. ))
  44036. characterMakers.push(() => makeCharacter(
  44037. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44038. {
  44039. front: {
  44040. height: math.unit(5, "feet"),
  44041. weight: math.unit(90, "lb"),
  44042. name: "Front",
  44043. image: {
  44044. source: "./media/characters/riley-bishop/front.svg",
  44045. extra: 1450/1428,
  44046. bottom: 152/1602
  44047. }
  44048. },
  44049. },
  44050. [
  44051. {
  44052. name: "Normal",
  44053. height: math.unit(5, "feet"),
  44054. default: true
  44055. },
  44056. ]
  44057. ))
  44058. characterMakers.push(() => makeCharacter(
  44059. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44060. {
  44061. side: {
  44062. height: math.unit(8 + 2/12, "feet"),
  44063. weight: math.unit(500, "kg"),
  44064. name: "Side",
  44065. image: {
  44066. source: "./media/characters/theo-arcanine/side.svg",
  44067. extra: 1342/1074,
  44068. bottom: 111/1453
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(8 + 2/12, "feet"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(4, "feet"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/kali/front.svg",
  44088. extra: 1921/1357,
  44089. bottom: 70/1991
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(4, "feet"),
  44097. default: true
  44098. },
  44099. {
  44100. name: "Macro",
  44101. height: math.unit(32, "meters")
  44102. },
  44103. {
  44104. name: "Macro+",
  44105. height: math.unit(150, "meters")
  44106. },
  44107. {
  44108. name: "Megamacro",
  44109. height: math.unit(7500, "meters")
  44110. },
  44111. {
  44112. name: "Megamacro+",
  44113. height: math.unit(80, "kilometers")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44119. {
  44120. side: {
  44121. height: math.unit(5 + 11/12, "feet"),
  44122. weight: math.unit(236, "lb"),
  44123. name: "Side",
  44124. image: {
  44125. source: "./media/characters/gapp/side.svg",
  44126. extra: 775/340,
  44127. bottom: 58/833
  44128. }
  44129. },
  44130. mouth: {
  44131. height: math.unit(2.98, "feet"),
  44132. name: "Mouth",
  44133. image: {
  44134. source: "./media/characters/gapp/mouth.svg"
  44135. }
  44136. },
  44137. },
  44138. [
  44139. {
  44140. name: "Normal",
  44141. height: math.unit(5 + 1/12, "feet"),
  44142. default: true
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44148. {
  44149. front: {
  44150. height: math.unit(6, "feet"),
  44151. name: "Front",
  44152. image: {
  44153. source: "./media/characters/persephone/front.svg",
  44154. extra: 1895/1717,
  44155. bottom: 96/1991
  44156. }
  44157. },
  44158. back: {
  44159. height: math.unit(6, "feet"),
  44160. name: "Back",
  44161. image: {
  44162. source: "./media/characters/persephone/back.svg",
  44163. extra: 1868/1679,
  44164. bottom: 26/1894
  44165. }
  44166. },
  44167. casual: {
  44168. height: math.unit(6, "feet"),
  44169. name: "Casual",
  44170. image: {
  44171. source: "./media/characters/persephone/casual.svg",
  44172. extra: 1713/1541,
  44173. bottom: 76/1789
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Human Size",
  44180. height: math.unit(6, "feet")
  44181. },
  44182. {
  44183. name: "Big Steppy",
  44184. height: math.unit(600, "meters"),
  44185. default: true
  44186. },
  44187. {
  44188. name: "Galaxy Brain",
  44189. height: math.unit(1, "zettameter")
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(1.85, "meters"),
  44198. name: "Front",
  44199. image: {
  44200. source: "./media/characters/riley-foxthing/front.svg",
  44201. extra: 1495/1354,
  44202. bottom: 122/1617
  44203. }
  44204. },
  44205. frontAlt: {
  44206. height: math.unit(1.85, "meters"),
  44207. name: "Front (Alt)",
  44208. image: {
  44209. source: "./media/characters/riley-foxthing/front-alt.svg",
  44210. extra: 1572/1389,
  44211. bottom: 116/1688
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Normal Sized",
  44218. height: math.unit(1.85, "meters"),
  44219. default: true
  44220. },
  44221. {
  44222. name: "Quite Sizable",
  44223. height: math.unit(5, "meters")
  44224. },
  44225. {
  44226. name: "Rather Large",
  44227. height: math.unit(20, "meters")
  44228. },
  44229. {
  44230. name: "Macro",
  44231. height: math.unit(450, "meters")
  44232. },
  44233. {
  44234. name: "Giga",
  44235. height: math.unit(5, "km")
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(6, "feet"),
  44244. weight: math.unit(200, "lb"),
  44245. name: "Front",
  44246. image: {
  44247. source: "./media/characters/blizzard/front.svg",
  44248. extra: 1136/990,
  44249. bottom: 136/1272
  44250. }
  44251. },
  44252. back: {
  44253. height: math.unit(6, "feet"),
  44254. weight: math.unit(200, "lb"),
  44255. name: "Back",
  44256. image: {
  44257. source: "./media/characters/blizzard/back.svg",
  44258. extra: 1175/1034,
  44259. bottom: 97/1272
  44260. }
  44261. },
  44262. sitting: {
  44263. height: math.unit(3.725, "feet"),
  44264. weight: math.unit(200, "lb"),
  44265. name: "Sitting",
  44266. image: {
  44267. source: "./media/characters/blizzard/sitting.svg",
  44268. extra: 581/485,
  44269. bottom: 90/671
  44270. }
  44271. },
  44272. frontWizard: {
  44273. height: math.unit(7.9, "feet"),
  44274. weight: math.unit(200, "lb"),
  44275. name: "Front (Wizard)",
  44276. image: {
  44277. source: "./media/characters/blizzard/front-wizard.svg"
  44278. }
  44279. },
  44280. backWizard: {
  44281. height: math.unit(7.9, "feet"),
  44282. weight: math.unit(200, "lb"),
  44283. name: "Back (Wizard)",
  44284. image: {
  44285. source: "./media/characters/blizzard/back-wizard.svg"
  44286. }
  44287. },
  44288. frontNsfw: {
  44289. height: math.unit(6, "feet"),
  44290. weight: math.unit(200, "lb"),
  44291. name: "Front (NSFW)",
  44292. image: {
  44293. source: "./media/characters/blizzard/front-nsfw.svg",
  44294. extra: 1136/990,
  44295. bottom: 136/1272
  44296. }
  44297. },
  44298. backNsfw: {
  44299. height: math.unit(6, "feet"),
  44300. weight: math.unit(200, "lb"),
  44301. name: "Back (NSFW)",
  44302. image: {
  44303. source: "./media/characters/blizzard/back-nsfw.svg",
  44304. extra: 1175/1034,
  44305. bottom: 97/1272
  44306. }
  44307. },
  44308. sittingNsfw: {
  44309. height: math.unit(3.725, "feet"),
  44310. weight: math.unit(200, "lb"),
  44311. name: "Sitting (NSFW)",
  44312. image: {
  44313. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44314. extra: 581/485,
  44315. bottom: 90/671
  44316. }
  44317. },
  44318. wizardFrontNsfw: {
  44319. height: math.unit(7.9, "feet"),
  44320. weight: math.unit(200, "lb"),
  44321. name: "Wizard (Front, NSFW)",
  44322. image: {
  44323. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Normal",
  44330. height: math.unit(6, "feet"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(5 + 2/12, "feet"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/lumi/front.svg",
  44343. extra: 1328/1268,
  44344. bottom: 103/1431
  44345. }
  44346. },
  44347. back: {
  44348. height: math.unit(5 + 2/12, "feet"),
  44349. name: "Back",
  44350. image: {
  44351. source: "./media/characters/lumi/back.svg",
  44352. extra: 1381/1327,
  44353. bottom: 43/1424
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(5 + 2/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(5 + 9/12, "feet"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/aliya-cotton/front.svg",
  44373. extra: 577/564,
  44374. bottom: 29/606
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(5 + 9/12, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44388. {
  44389. front: {
  44390. height: math.unit(2.7, "meters"),
  44391. weight: math.unit(25000, "lb"),
  44392. name: "Front",
  44393. image: {
  44394. source: "./media/characters/noah-luxray/front.svg",
  44395. extra: 1644/825,
  44396. bottom: 339/1983
  44397. }
  44398. },
  44399. side: {
  44400. height: math.unit(2.97, "meters"),
  44401. weight: math.unit(25000, "lb"),
  44402. name: "Side",
  44403. image: {
  44404. source: "./media/characters/noah-luxray/side.svg",
  44405. extra: 1319/650,
  44406. bottom: 163/1482
  44407. }
  44408. },
  44409. dick: {
  44410. height: math.unit(7.4, "feet"),
  44411. weight: math.unit(2500, "lb"),
  44412. name: "Dick",
  44413. image: {
  44414. source: "./media/characters/noah-luxray/dick.svg"
  44415. }
  44416. },
  44417. dickAlt: {
  44418. height: math.unit(10.83, "feet"),
  44419. weight: math.unit(2500, "lb"),
  44420. name: "Dick-alt",
  44421. image: {
  44422. source: "./media/characters/noah-luxray/dick-alt.svg"
  44423. }
  44424. },
  44425. },
  44426. [
  44427. {
  44428. name: "BIG",
  44429. height: math.unit(2.7, "meters"),
  44430. default: true
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44436. {
  44437. standing: {
  44438. height: math.unit(183, "cm"),
  44439. weight: math.unit(68, "kg"),
  44440. name: "Standing",
  44441. image: {
  44442. source: "./media/characters/arion/standing.svg",
  44443. extra: 1869/1807,
  44444. bottom: 93/1962
  44445. }
  44446. },
  44447. reclining: {
  44448. height: math.unit(70.5, "cm"),
  44449. weight: math.unit(68, "lb"),
  44450. name: "Reclining",
  44451. image: {
  44452. source: "./media/characters/arion/reclining.svg",
  44453. extra: 937/870,
  44454. bottom: 63/1000
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Colossus Size, Low",
  44461. height: math.unit(33, "meters"),
  44462. default: true
  44463. },
  44464. {
  44465. name: "Colossus Size, Mid",
  44466. height: math.unit(52, "meters")
  44467. },
  44468. {
  44469. name: "Colossus Size, High",
  44470. height: math.unit(60, "meters")
  44471. },
  44472. {
  44473. name: "Titan Size, Low",
  44474. height: math.unit(91, "meters"),
  44475. },
  44476. {
  44477. name: "Titan Size, Mid",
  44478. height: math.unit(122, "meters")
  44479. },
  44480. {
  44481. name: "Titan Size, High",
  44482. height: math.unit(162, "meters")
  44483. },
  44484. ]
  44485. ))
  44486. characterMakers.push(() => makeCharacter(
  44487. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44488. {
  44489. front: {
  44490. height: math.unit(53, "meters"),
  44491. name: "Front",
  44492. image: {
  44493. source: "./media/characters/stellar-marbey/front.svg",
  44494. extra: 1913/1805,
  44495. bottom: 92/2005
  44496. }
  44497. },
  44498. back: {
  44499. height: math.unit(53, "meters"),
  44500. name: "Back",
  44501. image: {
  44502. source: "./media/characters/stellar-marbey/back.svg",
  44503. extra: 1960/1851,
  44504. bottom: 28/1988
  44505. }
  44506. },
  44507. mouth: {
  44508. height: math.unit(3.5, "meters"),
  44509. name: "Mouth",
  44510. image: {
  44511. source: "./media/characters/stellar-marbey/mouth.svg"
  44512. }
  44513. },
  44514. },
  44515. [
  44516. {
  44517. name: "Macro",
  44518. height: math.unit(53, "meters"),
  44519. default: true
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44525. {
  44526. front: {
  44527. height: math.unit(8 + 1/12, "feet"),
  44528. weight: math.unit(233, "lb"),
  44529. name: "Front",
  44530. image: {
  44531. source: "./media/characters/matsu/front.svg",
  44532. extra: 832/772,
  44533. bottom: 40/872
  44534. }
  44535. },
  44536. back: {
  44537. height: math.unit(8 + 1/12, "feet"),
  44538. weight: math.unit(233, "lb"),
  44539. name: "Back",
  44540. image: {
  44541. source: "./media/characters/matsu/back.svg",
  44542. extra: 839/780,
  44543. bottom: 47/886
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Normal",
  44550. height: math.unit(8 + 1/12, "feet"),
  44551. default: true
  44552. },
  44553. ]
  44554. ))
  44555. characterMakers.push(() => makeCharacter(
  44556. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44557. {
  44558. front: {
  44559. height: math.unit(4, "feet"),
  44560. weight: math.unit(148, "lb"),
  44561. name: "Front",
  44562. image: {
  44563. source: "./media/characters/thiz/front.svg",
  44564. extra: 1913/1748,
  44565. bottom: 62/1975
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(4, "feet"),
  44573. default: true
  44574. },
  44575. ]
  44576. ))
  44577. characterMakers.push(() => makeCharacter(
  44578. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44579. {
  44580. front: {
  44581. height: math.unit(7 + 6/12, "feet"),
  44582. weight: math.unit(267, "lb"),
  44583. name: "Front",
  44584. image: {
  44585. source: "./media/characters/marcel/front.svg",
  44586. extra: 1221/1096,
  44587. bottom: 76/1297
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Normal",
  44594. height: math.unit(7 + 6/12, "feet"),
  44595. default: true
  44596. },
  44597. ]
  44598. ))
  44599. characterMakers.push(() => makeCharacter(
  44600. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44601. {
  44602. side: {
  44603. height: math.unit(42, "meters"),
  44604. name: "Side",
  44605. image: {
  44606. source: "./media/characters/flake/side.svg",
  44607. extra: 1525/1306,
  44608. bottom: 209/1734
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(42, "meters"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44622. {
  44623. dressed: {
  44624. height: math.unit(6 + 4/12, "feet"),
  44625. weight: math.unit(520, "lb"),
  44626. name: "Dressed",
  44627. image: {
  44628. source: "./media/characters/someonne/dressed.svg",
  44629. extra: 1020/1010,
  44630. bottom: 178/1198
  44631. }
  44632. },
  44633. undressed: {
  44634. height: math.unit(6 + 4/12, "feet"),
  44635. weight: math.unit(520, "lb"),
  44636. name: "Undressed",
  44637. image: {
  44638. source: "./media/characters/someonne/undressed.svg",
  44639. extra: 1019/1014,
  44640. bottom: 169/1188
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(6 + 4/12, "feet"),
  44648. default: true
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(3, "feet"),
  44657. weight: math.unit(30, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/till/front.svg",
  44661. extra: 892/823,
  44662. bottom: 55/947
  44663. }
  44664. },
  44665. },
  44666. [
  44667. {
  44668. name: "Normal",
  44669. height: math.unit(3, "feet"),
  44670. default: true
  44671. },
  44672. ]
  44673. ))
  44674. characterMakers.push(() => makeCharacter(
  44675. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44676. {
  44677. front: {
  44678. height: math.unit(9 + 8/12, "feet"),
  44679. weight: math.unit(800, "lb"),
  44680. name: "Front",
  44681. image: {
  44682. source: "./media/characters/sydney-heki/front.svg",
  44683. extra: 1360/1300,
  44684. bottom: 22/1382
  44685. }
  44686. },
  44687. back: {
  44688. height: math.unit(9 + 8/12, "feet"),
  44689. weight: math.unit(800, "lb"),
  44690. name: "Back",
  44691. image: {
  44692. source: "./media/characters/sydney-heki/back.svg",
  44693. extra: 1356/1293,
  44694. bottom: 12/1368
  44695. }
  44696. },
  44697. frontDressed: {
  44698. height: math.unit(9 + 8/12, "feet"),
  44699. weight: math.unit(800, "lb"),
  44700. name: "Front-dressed",
  44701. image: {
  44702. source: "./media/characters/sydney-heki/front-dressed.svg",
  44703. extra: 1360/1300,
  44704. bottom: 22/1382
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Normal",
  44711. height: math.unit(9 + 8/12, "feet"),
  44712. default: true
  44713. },
  44714. {
  44715. name: "Macro",
  44716. height: math.unit(500, "feet")
  44717. },
  44718. {
  44719. name: "Megamacro",
  44720. height: math.unit(3.6, "miles")
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(200, "cm"),
  44729. weight: math.unit(250, "lb"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/fowler-karlsson/front.svg",
  44733. extra: 897/845,
  44734. bottom: 123/1020
  44735. }
  44736. },
  44737. back: {
  44738. height: math.unit(200, "cm"),
  44739. weight: math.unit(250, "lb"),
  44740. name: "Back",
  44741. image: {
  44742. source: "./media/characters/fowler-karlsson/back.svg",
  44743. extra: 999/944,
  44744. bottom: 26/1025
  44745. }
  44746. },
  44747. dick: {
  44748. height: math.unit(1.92, "feet"),
  44749. weight: math.unit(150, "lb"),
  44750. name: "Dick",
  44751. image: {
  44752. source: "./media/characters/fowler-karlsson/dick.svg"
  44753. }
  44754. },
  44755. },
  44756. [
  44757. {
  44758. name: "Normal",
  44759. height: math.unit(200, "cm"),
  44760. default: true
  44761. },
  44762. {
  44763. name: "Smaller Macro",
  44764. height: math.unit(90, "m")
  44765. },
  44766. {
  44767. name: "Macro",
  44768. height: math.unit(150, "m")
  44769. },
  44770. {
  44771. name: "Bigger Macro",
  44772. height: math.unit(300, "m")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44778. {
  44779. side: {
  44780. height: math.unit(8 + 2/12, "feet"),
  44781. weight: math.unit(1, "tonne"),
  44782. name: "Side",
  44783. image: {
  44784. source: "./media/characters/rylide/side.svg",
  44785. extra: 1318/1034,
  44786. bottom: 106/1424
  44787. }
  44788. },
  44789. sitting: {
  44790. height: math.unit(303, "cm"),
  44791. weight: math.unit(1, "tonne"),
  44792. name: "Sitting",
  44793. image: {
  44794. source: "./media/characters/rylide/sitting.svg",
  44795. extra: 1303/1103,
  44796. bottom: 36/1339
  44797. }
  44798. },
  44799. },
  44800. [
  44801. {
  44802. name: "Normal",
  44803. height: math.unit(8 + 2/12, "feet"),
  44804. default: true
  44805. },
  44806. ]
  44807. ))
  44808. characterMakers.push(() => makeCharacter(
  44809. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44810. {
  44811. front: {
  44812. height: math.unit(5 + 10/12, "feet"),
  44813. weight: math.unit(160, "lb"),
  44814. name: "Front",
  44815. image: {
  44816. source: "./media/characters/pudask/front.svg",
  44817. extra: 1616/1590,
  44818. bottom: 161/1777
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Ferret Height",
  44825. height: math.unit(2 + 5/12, "feet")
  44826. },
  44827. {
  44828. name: "Canon Height",
  44829. height: math.unit(5 + 10/12, "feet"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(3 + 6/12, "feet"),
  44839. weight: math.unit(60, "lb"),
  44840. name: "Front",
  44841. image: {
  44842. source: "./media/characters/ramita/front.svg",
  44843. extra: 1402/1232,
  44844. bottom: 62/1464
  44845. }
  44846. },
  44847. dressed: {
  44848. height: math.unit(3 + 6/12, "feet"),
  44849. weight: math.unit(60, "lb"),
  44850. name: "Dressed",
  44851. image: {
  44852. source: "./media/characters/ramita/dressed.svg",
  44853. extra: 1534/1249,
  44854. bottom: 50/1584
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(3 + 6/12, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44868. {
  44869. front: {
  44870. height: math.unit(8, "feet"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/ark/front.svg",
  44874. extra: 772/693,
  44875. bottom: 45/817
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(8, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(6, "feet"),
  44892. weight: math.unit(250, "lb"),
  44893. volume: math.unit(5/8, "gallons"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/ludwig-horn/front.svg",
  44897. extra: 1782/1635,
  44898. bottom: 96/1878
  44899. }
  44900. },
  44901. back: {
  44902. height: math.unit(6, "feet"),
  44903. weight: math.unit(250, "lb"),
  44904. volume: math.unit(5/8, "gallons"),
  44905. name: "Back",
  44906. image: {
  44907. source: "./media/characters/ludwig-horn/back.svg",
  44908. extra: 1874/1729,
  44909. bottom: 27/1901
  44910. }
  44911. },
  44912. dick: {
  44913. height: math.unit(1.05, "feet"),
  44914. weight: math.unit(15, "lb"),
  44915. volume: math.unit(5/8, "gallons"),
  44916. name: "Dick",
  44917. image: {
  44918. source: "./media/characters/ludwig-horn/dick.svg"
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Small",
  44925. height: math.unit(6, "feet")
  44926. },
  44927. {
  44928. name: "Typical",
  44929. height: math.unit(12, "feet"),
  44930. default: true
  44931. },
  44932. {
  44933. name: "Building",
  44934. height: math.unit(80, "feet")
  44935. },
  44936. {
  44937. name: "Town",
  44938. height: math.unit(800, "feet")
  44939. },
  44940. {
  44941. name: "Kingdom",
  44942. height: math.unit(80000, "feet")
  44943. },
  44944. {
  44945. name: "Planet",
  44946. height: math.unit(8000000, "feet")
  44947. },
  44948. {
  44949. name: "Universe",
  44950. height: math.unit(8000000000, "feet")
  44951. },
  44952. {
  44953. name: "Transcended",
  44954. height: math.unit(8e27, "feet")
  44955. },
  44956. ]
  44957. ))
  44958. characterMakers.push(() => makeCharacter(
  44959. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44960. {
  44961. front: {
  44962. height: math.unit(5, "feet"),
  44963. weight: math.unit(50, "kg"),
  44964. name: "Front",
  44965. image: {
  44966. source: "./media/characters/biot-avery/front.svg",
  44967. extra: 1295/1232,
  44968. bottom: 86/1381
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(5, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(6, "feet"),
  44985. name: "Front",
  44986. image: {
  44987. source: "./media/characters/kitsune-kiro/front.svg",
  44988. extra: 1270/1158,
  44989. bottom: 42/1312
  44990. }
  44991. },
  44992. frontAlt: {
  44993. height: math.unit(6, "feet"),
  44994. name: "Front-alt",
  44995. image: {
  44996. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44997. extra: 1130/1081,
  44998. bottom: 36/1166
  44999. }
  45000. },
  45001. },
  45002. [
  45003. {
  45004. name: "Smol",
  45005. height: math.unit(3, "feet")
  45006. },
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(6, "feet"),
  45010. default: true
  45011. },
  45012. ]
  45013. ))
  45014. characterMakers.push(() => makeCharacter(
  45015. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45016. {
  45017. front: {
  45018. height: math.unit(6, "feet"),
  45019. weight: math.unit(125, "lb"),
  45020. name: "Front",
  45021. image: {
  45022. source: "./media/characters/jack-thatcher/front.svg",
  45023. extra: 1474/1370,
  45024. bottom: 26/1500
  45025. }
  45026. },
  45027. back: {
  45028. height: math.unit(6, "feet"),
  45029. weight: math.unit(125, "lb"),
  45030. name: "Back",
  45031. image: {
  45032. source: "./media/characters/jack-thatcher/back.svg",
  45033. extra: 1489/1384,
  45034. bottom: 18/1507
  45035. }
  45036. },
  45037. },
  45038. [
  45039. {
  45040. name: "Normal",
  45041. height: math.unit(6, "feet"),
  45042. default: true
  45043. },
  45044. {
  45045. name: "Macro",
  45046. height: math.unit(75, "feet")
  45047. },
  45048. {
  45049. name: "Macro-er",
  45050. height: math.unit(250, "feet")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45056. {
  45057. front: {
  45058. height: math.unit(7, "feet"),
  45059. weight: math.unit(110, "kg"),
  45060. name: "Front",
  45061. image: {
  45062. source: "./media/characters/max-hyper/front.svg",
  45063. extra: 1969/1881,
  45064. bottom: 49/2018
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Normal",
  45071. height: math.unit(7, "feet"),
  45072. default: true
  45073. },
  45074. ]
  45075. ))
  45076. characterMakers.push(() => makeCharacter(
  45077. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45078. {
  45079. front: {
  45080. height: math.unit(5 + 5/12, "feet"),
  45081. weight: math.unit(160, "lb"),
  45082. name: "Front",
  45083. image: {
  45084. source: "./media/characters/spook/front.svg",
  45085. extra: 794/791,
  45086. bottom: 54/848
  45087. }
  45088. },
  45089. back: {
  45090. height: math.unit(5 + 5/12, "feet"),
  45091. weight: math.unit(160, "lb"),
  45092. name: "Back",
  45093. image: {
  45094. source: "./media/characters/spook/back.svg",
  45095. extra: 812/798,
  45096. bottom: 32/844
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(5 + 5/12, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(18, "feet"),
  45113. name: "Front",
  45114. image: {
  45115. source: "./media/characters/xeaduulix/front.svg",
  45116. extra: 1380/1166,
  45117. bottom: 110/1490
  45118. }
  45119. },
  45120. back: {
  45121. height: math.unit(18, "feet"),
  45122. name: "Back",
  45123. image: {
  45124. source: "./media/characters/xeaduulix/back.svg",
  45125. extra: 1592/1170,
  45126. bottom: 128/1720
  45127. }
  45128. },
  45129. frontNsfw: {
  45130. height: math.unit(18, "feet"),
  45131. name: "Front (NSFW)",
  45132. image: {
  45133. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45134. extra: 1380/1166,
  45135. bottom: 110/1490
  45136. }
  45137. },
  45138. backNsfw: {
  45139. height: math.unit(18, "feet"),
  45140. name: "Back (NSFW)",
  45141. image: {
  45142. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45143. extra: 1592/1170,
  45144. bottom: 128/1720
  45145. }
  45146. },
  45147. },
  45148. [
  45149. {
  45150. name: "Normal",
  45151. height: math.unit(18, "feet"),
  45152. default: true
  45153. },
  45154. ]
  45155. ))
  45156. characterMakers.push(() => makeCharacter(
  45157. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45158. {
  45159. spreadWings: {
  45160. height: math.unit(20, "feet"),
  45161. name: "Spread Wings",
  45162. image: {
  45163. source: "./media/characters/fledge/spread-wings.svg",
  45164. extra: 693/635,
  45165. bottom: 26/719
  45166. }
  45167. },
  45168. front: {
  45169. height: math.unit(20, "feet"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/fledge/front.svg",
  45173. extra: 684/637,
  45174. bottom: 18/702
  45175. }
  45176. },
  45177. frontAlt: {
  45178. height: math.unit(20, "feet"),
  45179. name: "Front (Alt)",
  45180. image: {
  45181. source: "./media/characters/fledge/front-alt.svg",
  45182. extra: 708/664,
  45183. bottom: 13/721
  45184. }
  45185. },
  45186. back: {
  45187. height: math.unit(20, "feet"),
  45188. name: "Back",
  45189. image: {
  45190. source: "./media/characters/fledge/back.svg",
  45191. extra: 718/634,
  45192. bottom: 22/740
  45193. }
  45194. },
  45195. head: {
  45196. height: math.unit(5.55, "feet"),
  45197. name: "Head",
  45198. image: {
  45199. source: "./media/characters/fledge/head.svg"
  45200. }
  45201. },
  45202. headAlt: {
  45203. height: math.unit(5.1, "feet"),
  45204. name: "Head (Alt)",
  45205. image: {
  45206. source: "./media/characters/fledge/head-alt.svg"
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Small",
  45213. height: math.unit(6 + 2/12, "feet")
  45214. },
  45215. {
  45216. name: "Big",
  45217. height: math.unit(20, "feet"),
  45218. default: true
  45219. },
  45220. {
  45221. name: "Giant",
  45222. height: math.unit(100, "feet")
  45223. },
  45224. {
  45225. name: "Macro",
  45226. height: math.unit(200, "feet")
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(1, "meter"),
  45235. name: "Front",
  45236. image: {
  45237. source: "./media/characters/atlas-morenai/front.svg",
  45238. extra: 1275/1043,
  45239. bottom: 19/1294
  45240. }
  45241. },
  45242. back: {
  45243. height: math.unit(1, "meter"),
  45244. name: "Back",
  45245. image: {
  45246. source: "./media/characters/atlas-morenai/back.svg",
  45247. extra: 1141/1001,
  45248. bottom: 25/1166
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Normal",
  45255. height: math.unit(1, "meter"),
  45256. default: true
  45257. },
  45258. {
  45259. name: "Magic-Infused",
  45260. height: math.unit(5, "meters")
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45266. {
  45267. front: {
  45268. height: math.unit(5, "meters"),
  45269. name: "Front",
  45270. image: {
  45271. source: "./media/characters/cintia/front.svg",
  45272. extra: 1312/1228,
  45273. bottom: 38/1350
  45274. }
  45275. },
  45276. back: {
  45277. height: math.unit(5, "meters"),
  45278. name: "Back",
  45279. image: {
  45280. source: "./media/characters/cintia/back.svg",
  45281. extra: 1260/1166,
  45282. bottom: 98/1358
  45283. }
  45284. },
  45285. frontDick: {
  45286. height: math.unit(5, "meters"),
  45287. name: "Front (Dick)",
  45288. image: {
  45289. source: "./media/characters/cintia/front-dick.svg",
  45290. extra: 1312/1228,
  45291. bottom: 38/1350
  45292. }
  45293. },
  45294. backDick: {
  45295. height: math.unit(5, "meters"),
  45296. name: "Back (Dick)",
  45297. image: {
  45298. source: "./media/characters/cintia/back-dick.svg",
  45299. extra: 1260/1166,
  45300. bottom: 98/1358
  45301. }
  45302. },
  45303. bust: {
  45304. height: math.unit(1.97, "meters"),
  45305. name: "Bust",
  45306. image: {
  45307. source: "./media/characters/cintia/bust.svg",
  45308. extra: 617/565,
  45309. bottom: 0/617
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(5, "meters"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45323. {
  45324. side: {
  45325. height: math.unit(100, "feet"),
  45326. name: "Side",
  45327. image: {
  45328. source: "./media/characters/denora/side.svg",
  45329. extra: 875/803,
  45330. bottom: 9/884
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Standard",
  45337. height: math.unit(100, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Grand",
  45342. height: math.unit(1000, "feet")
  45343. },
  45344. {
  45345. name: "Conquering",
  45346. height: math.unit(10000, "feet")
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45352. {
  45353. dressed: {
  45354. height: math.unit(8 + 5/12, "feet"),
  45355. weight: math.unit(700, "lb"),
  45356. name: "Dressed",
  45357. image: {
  45358. source: "./media/characters/kiva/dressed.svg",
  45359. extra: 1102/1055,
  45360. bottom: 60/1162
  45361. }
  45362. },
  45363. nude: {
  45364. height: math.unit(8 + 5/12, "feet"),
  45365. weight: math.unit(700, "lb"),
  45366. name: "Nude",
  45367. image: {
  45368. source: "./media/characters/kiva/nude.svg",
  45369. extra: 1102/1055,
  45370. bottom: 60/1162
  45371. }
  45372. },
  45373. },
  45374. [
  45375. {
  45376. name: "Base Height",
  45377. height: math.unit(8 + 5/12, "feet"),
  45378. default: true
  45379. },
  45380. {
  45381. name: "Macro",
  45382. height: math.unit(100, "feet")
  45383. },
  45384. {
  45385. name: "Max",
  45386. height: math.unit(3280, "feet")
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(6 + 8/12, "feet"),
  45395. weight: math.unit(250, "lb"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/ztragon/front.svg",
  45399. extra: 1825/1684,
  45400. bottom: 98/1923
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(6 + 8/12, "feet"),
  45408. default: true
  45409. },
  45410. {
  45411. name: "Macro",
  45412. height: math.unit(80, "feet")
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45418. {
  45419. front: {
  45420. height: math.unit(10.4, "feet"),
  45421. weight: math.unit(2, "tons"),
  45422. name: "Front",
  45423. image: {
  45424. source: "./media/characters/yesenia/front.svg",
  45425. extra: 1479/1474,
  45426. bottom: 233/1712
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(10.4, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45440. {
  45441. normal: {
  45442. height: math.unit(6 + 1/12, "feet"),
  45443. weight: math.unit(180, "lb"),
  45444. name: "Normal",
  45445. image: {
  45446. source: "./media/characters/leanne-lycheborne/normal.svg",
  45447. extra: 1748/1660,
  45448. bottom: 98/1846
  45449. }
  45450. },
  45451. were: {
  45452. height: math.unit(12, "feet"),
  45453. weight: math.unit(1600, "lb"),
  45454. name: "Were",
  45455. image: {
  45456. source: "./media/characters/leanne-lycheborne/were.svg",
  45457. extra: 1485/1432,
  45458. bottom: 66/1551
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(6 + 1/12, "feet"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45472. {
  45473. side: {
  45474. height: math.unit(13, "feet"),
  45475. name: "Side",
  45476. image: {
  45477. source: "./media/characters/kira-tyler/side.svg",
  45478. extra: 693/393,
  45479. bottom: 58/751
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(13, "feet"),
  45487. default: true
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(10.3, "feet"),
  45496. weight: math.unit(150, "lb"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/blaze/front.svg",
  45500. extra: 1378/1286,
  45501. bottom: 172/1550
  45502. }
  45503. },
  45504. },
  45505. [
  45506. {
  45507. name: "Normal",
  45508. height: math.unit(10.3, "feet"),
  45509. default: true
  45510. },
  45511. ]
  45512. ))
  45513. characterMakers.push(() => makeCharacter(
  45514. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45515. {
  45516. side: {
  45517. height: math.unit(2, "meters"),
  45518. weight: math.unit(400, "kg"),
  45519. name: "Side",
  45520. image: {
  45521. source: "./media/characters/anu/side.svg",
  45522. extra: 506/394,
  45523. bottom: 18/524
  45524. }
  45525. },
  45526. },
  45527. [
  45528. {
  45529. name: "Humanoid",
  45530. height: math.unit(2, "meters")
  45531. },
  45532. {
  45533. name: "Normal",
  45534. height: math.unit(5, "meters"),
  45535. default: true
  45536. },
  45537. ]
  45538. ))
  45539. characterMakers.push(() => makeCharacter(
  45540. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45541. {
  45542. front: {
  45543. height: math.unit(5 + 5/12, "feet"),
  45544. weight: math.unit(170, "lb"),
  45545. name: "Front",
  45546. image: {
  45547. source: "./media/characters/synx-the-lynx/front.svg",
  45548. extra: 1893/1745,
  45549. bottom: 17/1910
  45550. }
  45551. },
  45552. side: {
  45553. height: math.unit(5 + 5/12, "feet"),
  45554. weight: math.unit(170, "lb"),
  45555. name: "Side",
  45556. image: {
  45557. source: "./media/characters/synx-the-lynx/side.svg",
  45558. extra: 1884/1740,
  45559. bottom: 39/1923
  45560. }
  45561. },
  45562. back: {
  45563. height: math.unit(5 + 5/12, "feet"),
  45564. weight: math.unit(170, "lb"),
  45565. name: "Back",
  45566. image: {
  45567. source: "./media/characters/synx-the-lynx/back.svg",
  45568. extra: 1903/1755,
  45569. bottom: 14/1917
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(5 + 5/12, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45583. {
  45584. back: {
  45585. height: math.unit(15, "feet"),
  45586. name: "Back",
  45587. image: {
  45588. source: "./media/characters/nadezda-fex/back.svg",
  45589. extra: 1695/1481,
  45590. bottom: 25/1720
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(15, "feet"),
  45598. default: true
  45599. },
  45600. {
  45601. name: "Macro",
  45602. height: math.unit(2.5, "miles")
  45603. },
  45604. {
  45605. name: "Goddess",
  45606. height: math.unit(2, "multiverses")
  45607. },
  45608. ]
  45609. ))
  45610. characterMakers.push(() => makeCharacter(
  45611. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45612. {
  45613. front: {
  45614. height: math.unit(216, "cm"),
  45615. name: "Front",
  45616. image: {
  45617. source: "./media/characters/lev/front.svg",
  45618. extra: 1728/1670,
  45619. bottom: 82/1810
  45620. }
  45621. },
  45622. back: {
  45623. height: math.unit(216, "cm"),
  45624. name: "Back",
  45625. image: {
  45626. source: "./media/characters/lev/back.svg",
  45627. extra: 1738/1675,
  45628. bottom: 24/1762
  45629. }
  45630. },
  45631. dressed: {
  45632. height: math.unit(216, "cm"),
  45633. name: "Dressed",
  45634. image: {
  45635. source: "./media/characters/lev/dressed.svg",
  45636. extra: 1397/1351,
  45637. bottom: 73/1470
  45638. }
  45639. },
  45640. head: {
  45641. height: math.unit(0.51, "meter"),
  45642. name: "Head",
  45643. image: {
  45644. source: "./media/characters/lev/head.svg"
  45645. }
  45646. },
  45647. },
  45648. [
  45649. {
  45650. name: "Normal",
  45651. height: math.unit(216, "cm"),
  45652. default: true
  45653. },
  45654. {
  45655. name: "Relatively Macro",
  45656. height: math.unit(80, "meters")
  45657. },
  45658. {
  45659. name: "Megamacro",
  45660. height: math.unit(21600, "meters")
  45661. },
  45662. {
  45663. name: "Megamacro+",
  45664. height: math.unit(64800, "meters")
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45670. {
  45671. front: {
  45672. height: math.unit(2, "meters"),
  45673. weight: math.unit(80, "kg"),
  45674. name: "Front",
  45675. image: {
  45676. source: "./media/characters/moka/front.svg",
  45677. extra: 1337/1255,
  45678. bottom: 58/1395
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Micro",
  45685. height: math.unit(15, "cm")
  45686. },
  45687. {
  45688. name: "Normal",
  45689. height: math.unit(2, "meters"),
  45690. default: true
  45691. },
  45692. {
  45693. name: "Macro",
  45694. height: math.unit(20, "meters"),
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(9, "feet"),
  45703. weight: math.unit(240, "lb"),
  45704. name: "Front",
  45705. image: {
  45706. source: "./media/characters/kuzco/front.svg",
  45707. extra: 1593/1487,
  45708. bottom: 32/1625
  45709. }
  45710. },
  45711. side: {
  45712. height: math.unit(9, "feet"),
  45713. weight: math.unit(240, "lb"),
  45714. name: "Side",
  45715. image: {
  45716. source: "./media/characters/kuzco/side.svg",
  45717. extra: 1575/1485,
  45718. bottom: 30/1605
  45719. }
  45720. },
  45721. back: {
  45722. height: math.unit(9, "feet"),
  45723. weight: math.unit(240, "lb"),
  45724. name: "Back",
  45725. image: {
  45726. source: "./media/characters/kuzco/back.svg",
  45727. extra: 1603/1514,
  45728. bottom: 14/1617
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(9, "feet"),
  45736. default: true
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45742. {
  45743. side: {
  45744. height: math.unit(2, "meters"),
  45745. weight: math.unit(300, "kg"),
  45746. name: "Side",
  45747. image: {
  45748. source: "./media/characters/ceruleus/side.svg",
  45749. extra: 1068/974,
  45750. bottom: 126/1194
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Normal",
  45757. height: math.unit(16, "meters"),
  45758. default: true
  45759. },
  45760. ]
  45761. ))
  45762. characterMakers.push(() => makeCharacter(
  45763. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45764. {
  45765. front: {
  45766. height: math.unit(9, "feet"),
  45767. weight: math.unit(500, "kg"),
  45768. name: "Front",
  45769. image: {
  45770. source: "./media/characters/acouya/front.svg",
  45771. extra: 1660/1473,
  45772. bottom: 28/1688
  45773. }
  45774. },
  45775. },
  45776. [
  45777. {
  45778. name: "Normal",
  45779. height: math.unit(9, "feet"),
  45780. default: true
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45786. {
  45787. front: {
  45788. height: math.unit(5 + 6/12, "feet"),
  45789. weight: math.unit(195, "lb"),
  45790. name: "Front",
  45791. image: {
  45792. source: "./media/characters/vant/front.svg",
  45793. extra: 1396/1320,
  45794. bottom: 20/1416
  45795. }
  45796. },
  45797. back: {
  45798. height: math.unit(5 + 6/12, "feet"),
  45799. weight: math.unit(195, "lb"),
  45800. name: "Back",
  45801. image: {
  45802. source: "./media/characters/vant/back.svg",
  45803. extra: 1396/1320,
  45804. bottom: 20/1416
  45805. }
  45806. },
  45807. maw: {
  45808. height: math.unit(0.75, "feet"),
  45809. name: "Maw",
  45810. image: {
  45811. source: "./media/characters/vant/maw.svg"
  45812. }
  45813. },
  45814. paw: {
  45815. height: math.unit(1.07, "feet"),
  45816. name: "Paw",
  45817. image: {
  45818. source: "./media/characters/vant/paw.svg"
  45819. }
  45820. },
  45821. },
  45822. [
  45823. {
  45824. name: "Micro",
  45825. height: math.unit(0.25, "inches")
  45826. },
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(5 + 6/12, "feet"),
  45830. default: true
  45831. },
  45832. {
  45833. name: "Macro",
  45834. height: math.unit(75, "feet")
  45835. },
  45836. ]
  45837. ))
  45838. characterMakers.push(() => makeCharacter(
  45839. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45840. {
  45841. front: {
  45842. height: math.unit(30, "meters"),
  45843. weight: math.unit(363, "tons"),
  45844. name: "Front",
  45845. image: {
  45846. source: "./media/characters/ahra/front.svg",
  45847. extra: 1914/1814,
  45848. bottom: 46/1960
  45849. }
  45850. },
  45851. },
  45852. [
  45853. {
  45854. name: "Macro",
  45855. height: math.unit(30, "meters"),
  45856. default: true
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45862. {
  45863. undressed: {
  45864. height: math.unit(2, "m"),
  45865. weight: math.unit(250, "kg"),
  45866. name: "Undressed",
  45867. image: {
  45868. source: "./media/characters/coriander/undressed.svg",
  45869. extra: 1757/1606,
  45870. bottom: 107/1864
  45871. }
  45872. },
  45873. dressed: {
  45874. height: math.unit(2, "m"),
  45875. weight: math.unit(250, "kg"),
  45876. name: "Dressed",
  45877. image: {
  45878. source: "./media/characters/coriander/dressed.svg",
  45879. extra: 1757/1606,
  45880. bottom: 107/1864
  45881. }
  45882. },
  45883. },
  45884. [
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(4, "meters"),
  45888. default: true
  45889. },
  45890. {
  45891. name: "XL",
  45892. height: math.unit(6, "meters")
  45893. },
  45894. {
  45895. name: "XXL",
  45896. height: math.unit(8, "meters")
  45897. },
  45898. ]
  45899. ))
  45900. characterMakers.push(() => makeCharacter(
  45901. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45902. {
  45903. front: {
  45904. height: math.unit(6, "feet"),
  45905. name: "Front",
  45906. image: {
  45907. source: "./media/characters/syrinx/front.svg",
  45908. extra: 1557/1259,
  45909. bottom: 171/1728
  45910. }
  45911. },
  45912. },
  45913. [
  45914. {
  45915. name: "Normal",
  45916. height: math.unit(6 + 3/12, "feet"),
  45917. default: true
  45918. },
  45919. ]
  45920. ))
  45921. characterMakers.push(() => makeCharacter(
  45922. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45923. {
  45924. front: {
  45925. height: math.unit(11 + 6/12, "feet"),
  45926. weight: math.unit(1.5, "tons"),
  45927. name: "Front",
  45928. image: {
  45929. source: "./media/characters/bor/front.svg",
  45930. extra: 1189/1109,
  45931. bottom: 170/1359
  45932. }
  45933. },
  45934. },
  45935. [
  45936. {
  45937. name: "Normal",
  45938. height: math.unit(11 + 6/12, "feet"),
  45939. default: true
  45940. },
  45941. {
  45942. name: "Macro",
  45943. height: math.unit(32 + 9/12, "feet")
  45944. },
  45945. ]
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45949. {
  45950. anthro: {
  45951. height: math.unit(9, "feet"),
  45952. weight: math.unit(2076, "lb"),
  45953. name: "Anthro",
  45954. image: {
  45955. source: "./media/characters/abacus/anthro.svg",
  45956. extra: 1540/1494,
  45957. bottom: 233/1773
  45958. }
  45959. },
  45960. pigeon: {
  45961. height: math.unit(1, "feet"),
  45962. name: "Pigeon",
  45963. image: {
  45964. source: "./media/characters/abacus/pigeon.svg",
  45965. extra: 528/525,
  45966. bottom: 46/574
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(9, "feet"),
  45974. default: true
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45980. {
  45981. side: {
  45982. height: math.unit(6, "feet"),
  45983. name: "Side",
  45984. image: {
  45985. source: "./media/characters/delkhan/side.svg",
  45986. extra: 1884/1786,
  45987. bottom: 308/2192
  45988. }
  45989. },
  45990. head: {
  45991. height: math.unit(3.38, "feet"),
  45992. name: "Head",
  45993. image: {
  45994. source: "./media/characters/delkhan/head.svg"
  45995. }
  45996. },
  45997. },
  45998. [
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(72, "feet"),
  46002. default: true
  46003. },
  46004. {
  46005. name: "Giant",
  46006. height: math.unit(172, "feet")
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46012. {
  46013. standing: {
  46014. height: math.unit(6, "feet"),
  46015. name: "Standing",
  46016. image: {
  46017. source: "./media/characters/euchidat/standing.svg",
  46018. extra: 1612/1553,
  46019. bottom: 116/1728
  46020. }
  46021. },
  46022. leaning: {
  46023. height: math.unit(6, "feet"),
  46024. name: "Leaning",
  46025. image: {
  46026. source: "./media/characters/euchidat/leaning.svg",
  46027. extra: 1719/1674,
  46028. bottom: 27/1746
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Normal",
  46035. height: math.unit(175, "feet"),
  46036. default: true
  46037. },
  46038. {
  46039. name: "Megamacro",
  46040. height: math.unit(190, "miles")
  46041. },
  46042. {
  46043. name: "Gigamacro",
  46044. height: math.unit(190000, "miles")
  46045. },
  46046. ]
  46047. ))
  46048. characterMakers.push(() => makeCharacter(
  46049. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46050. {
  46051. front: {
  46052. height: math.unit(6, "feet"),
  46053. weight: math.unit(150, "lb"),
  46054. name: "Front",
  46055. image: {
  46056. source: "./media/characters/rebecca-stack/front.svg",
  46057. extra: 1256/1201,
  46058. bottom: 18/1274
  46059. }
  46060. },
  46061. },
  46062. [
  46063. {
  46064. name: "Normal",
  46065. height: math.unit(5 + 8/12, "feet"),
  46066. default: true
  46067. },
  46068. {
  46069. name: "Demolitionist",
  46070. height: math.unit(200, "feet")
  46071. },
  46072. {
  46073. name: "Out of Control",
  46074. height: math.unit(2, "miles")
  46075. },
  46076. {
  46077. name: "Giga",
  46078. height: math.unit(7200, "miles")
  46079. },
  46080. ]
  46081. ))
  46082. characterMakers.push(() => makeCharacter(
  46083. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46084. {
  46085. front: {
  46086. height: math.unit(6, "feet"),
  46087. weight: math.unit(150, "lb"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/jenny-cartwright/front.svg",
  46091. extra: 1384/1376,
  46092. bottom: 58/1442
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(6 + 7/12, "feet"),
  46100. default: true
  46101. },
  46102. {
  46103. name: "Librarian",
  46104. height: math.unit(55, "feet")
  46105. },
  46106. {
  46107. name: "Sightseer",
  46108. height: math.unit(50, "miles")
  46109. },
  46110. {
  46111. name: "Giga",
  46112. height: math.unit(30000, "miles")
  46113. },
  46114. ]
  46115. ))
  46116. characterMakers.push(() => makeCharacter(
  46117. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46118. {
  46119. nude: {
  46120. height: math.unit(8, "feet"),
  46121. weight: math.unit(225, "lb"),
  46122. name: "Nude",
  46123. image: {
  46124. source: "./media/characters/marvy/nude.svg",
  46125. extra: 1900/1683,
  46126. bottom: 89/1989
  46127. }
  46128. },
  46129. dressed: {
  46130. height: math.unit(8, "feet"),
  46131. weight: math.unit(225, "lb"),
  46132. name: "Dressed",
  46133. image: {
  46134. source: "./media/characters/marvy/dressed.svg",
  46135. extra: 1900/1683,
  46136. bottom: 89/1989
  46137. }
  46138. },
  46139. head: {
  46140. height: math.unit(2.85, "feet"),
  46141. name: "Head",
  46142. image: {
  46143. source: "./media/characters/marvy/head.svg"
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Normal",
  46150. height: math.unit(8, "feet"),
  46151. default: true
  46152. },
  46153. ]
  46154. ))
  46155. characterMakers.push(() => makeCharacter(
  46156. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46157. {
  46158. front: {
  46159. height: math.unit(8, "feet"),
  46160. weight: math.unit(250, "lb"),
  46161. name: "Front",
  46162. image: {
  46163. source: "./media/characters/leah/front.svg",
  46164. extra: 1257/1149,
  46165. bottom: 109/1366
  46166. }
  46167. },
  46168. },
  46169. [
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(8, "feet"),
  46173. default: true
  46174. },
  46175. {
  46176. name: "Minimacro",
  46177. height: math.unit(40, "feet")
  46178. },
  46179. {
  46180. name: "Macro",
  46181. height: math.unit(124, "feet")
  46182. },
  46183. {
  46184. name: "Megamacro",
  46185. height: math.unit(850, "feet")
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46191. {
  46192. side: {
  46193. height: math.unit(13 + 6/12, "feet"),
  46194. weight: math.unit(3200, "lb"),
  46195. name: "Side",
  46196. image: {
  46197. source: "./media/characters/alvir/side.svg",
  46198. extra: 896/589,
  46199. bottom: 26/922
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(13 + 6/12, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(5 + 4/12, "feet"),
  46216. weight: math.unit(236, "lb"),
  46217. name: "Front",
  46218. image: {
  46219. source: "./media/characters/zaina-khalil/front.svg",
  46220. extra: 1533/1485,
  46221. bottom: 94/1627
  46222. }
  46223. },
  46224. side: {
  46225. height: math.unit(5 + 4/12, "feet"),
  46226. weight: math.unit(236, "lb"),
  46227. name: "Side",
  46228. image: {
  46229. source: "./media/characters/zaina-khalil/side.svg",
  46230. extra: 1537/1498,
  46231. bottom: 66/1603
  46232. }
  46233. },
  46234. back: {
  46235. height: math.unit(5 + 4/12, "feet"),
  46236. weight: math.unit(236, "lb"),
  46237. name: "Back",
  46238. image: {
  46239. source: "./media/characters/zaina-khalil/back.svg",
  46240. extra: 1546/1494,
  46241. bottom: 89/1635
  46242. }
  46243. },
  46244. },
  46245. [
  46246. {
  46247. name: "Normal",
  46248. height: math.unit(5 + 4/12, "feet"),
  46249. default: true
  46250. },
  46251. ]
  46252. ))
  46253. characterMakers.push(() => makeCharacter(
  46254. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46255. {
  46256. side: {
  46257. height: math.unit(12, "feet"),
  46258. weight: math.unit(4000, "lb"),
  46259. name: "Side",
  46260. image: {
  46261. source: "./media/characters/terry/side.svg",
  46262. extra: 1518/1439,
  46263. bottom: 149/1667
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Normal",
  46270. height: math.unit(12, "feet"),
  46271. default: true
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(12, "feet"),
  46280. weight: math.unit(1500, "lb"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/kahea/front.svg",
  46284. extra: 1722/1617,
  46285. bottom: 179/1901
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Normal",
  46292. height: math.unit(12, "feet"),
  46293. default: true
  46294. },
  46295. ]
  46296. ))
  46297. characterMakers.push(() => makeCharacter(
  46298. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46299. {
  46300. demonFront: {
  46301. height: math.unit(36, "feet"),
  46302. name: "Front",
  46303. image: {
  46304. source: "./media/characters/alex-xuria/demon-front.svg",
  46305. extra: 1705/1673,
  46306. bottom: 198/1903
  46307. },
  46308. form: "demon",
  46309. default: true
  46310. },
  46311. demonBack: {
  46312. height: math.unit(36, "feet"),
  46313. name: "Back",
  46314. image: {
  46315. source: "./media/characters/alex-xuria/demon-back.svg",
  46316. extra: 1725/1693,
  46317. bottom: 70/1795
  46318. },
  46319. form: "demon"
  46320. },
  46321. demonHead: {
  46322. height: math.unit(2.14, "meters"),
  46323. name: "Head",
  46324. image: {
  46325. source: "./media/characters/alex-xuria/demon-head.svg"
  46326. },
  46327. form: "demon"
  46328. },
  46329. demonHand: {
  46330. height: math.unit(1.61, "meters"),
  46331. name: "Hand",
  46332. image: {
  46333. source: "./media/characters/alex-xuria/demon-hand.svg"
  46334. },
  46335. form: "demon"
  46336. },
  46337. demonPaw: {
  46338. height: math.unit(1.35, "meters"),
  46339. name: "Paw",
  46340. image: {
  46341. source: "./media/characters/alex-xuria/demon-paw.svg"
  46342. },
  46343. form: "demon"
  46344. },
  46345. demonFoot: {
  46346. height: math.unit(2.2, "meters"),
  46347. name: "Foot",
  46348. image: {
  46349. source: "./media/characters/alex-xuria/demon-foot.svg"
  46350. },
  46351. form: "demon"
  46352. },
  46353. demonCock: {
  46354. height: math.unit(1.74, "meters"),
  46355. name: "Cock",
  46356. image: {
  46357. source: "./media/characters/alex-xuria/demon-cock.svg"
  46358. },
  46359. form: "demon"
  46360. },
  46361. demonTailClosed: {
  46362. height: math.unit(1.47, "meters"),
  46363. name: "Tail (Closed)",
  46364. image: {
  46365. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46366. },
  46367. form: "demon"
  46368. },
  46369. demonTailOpen: {
  46370. height: math.unit(2.85, "meters"),
  46371. name: "Tail (Open)",
  46372. image: {
  46373. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46374. },
  46375. form: "demon"
  46376. },
  46377. incubusFront: {
  46378. height: math.unit(12, "feet"),
  46379. name: "Front",
  46380. image: {
  46381. source: "./media/characters/alex-xuria/incubus-front.svg",
  46382. extra: 1754/1677,
  46383. bottom: 125/1879
  46384. },
  46385. form: "incubus",
  46386. default: true
  46387. },
  46388. incubusBack: {
  46389. height: math.unit(12, "feet"),
  46390. name: "Back",
  46391. image: {
  46392. source: "./media/characters/alex-xuria/incubus-back.svg",
  46393. extra: 1702/1647,
  46394. bottom: 30/1732
  46395. },
  46396. form: "incubus"
  46397. },
  46398. incubusHead: {
  46399. height: math.unit(3.45, "feet"),
  46400. name: "Head",
  46401. image: {
  46402. source: "./media/characters/alex-xuria/incubus-head.svg"
  46403. },
  46404. form: "incubus"
  46405. },
  46406. rabbitFront: {
  46407. height: math.unit(6, "feet"),
  46408. name: "Front",
  46409. image: {
  46410. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46411. extra: 1369/1349,
  46412. bottom: 45/1414
  46413. },
  46414. form: "rabbit",
  46415. default: true
  46416. },
  46417. rabbitSide: {
  46418. height: math.unit(6, "feet"),
  46419. name: "Side",
  46420. image: {
  46421. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46422. extra: 1370/1356,
  46423. bottom: 37/1407
  46424. },
  46425. form: "rabbit"
  46426. },
  46427. rabbitBack: {
  46428. height: math.unit(6, "feet"),
  46429. name: "Back",
  46430. image: {
  46431. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46432. extra: 1375/1358,
  46433. bottom: 43/1418
  46434. },
  46435. form: "rabbit"
  46436. },
  46437. },
  46438. [
  46439. {
  46440. name: "Normal",
  46441. height: math.unit(6, "feet"),
  46442. default: true,
  46443. form: "rabbit"
  46444. },
  46445. {
  46446. name: "Incubus",
  46447. height: math.unit(12, "feet"),
  46448. default: true,
  46449. form: "incubus"
  46450. },
  46451. {
  46452. name: "Demon",
  46453. height: math.unit(36, "feet"),
  46454. default: true,
  46455. form: "demon"
  46456. }
  46457. ],
  46458. {
  46459. "demon": {
  46460. name: "Demon",
  46461. default: true
  46462. },
  46463. "incubus": {
  46464. name: "Incubus",
  46465. },
  46466. "rabbit": {
  46467. name: "Rabbit"
  46468. }
  46469. }
  46470. ))
  46471. characterMakers.push(() => makeCharacter(
  46472. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46473. {
  46474. front: {
  46475. height: math.unit(7 + 5/12, "feet"),
  46476. weight: math.unit(510, "lb"),
  46477. name: "Front",
  46478. image: {
  46479. source: "./media/characters/syrup/front.svg",
  46480. extra: 932/916,
  46481. bottom: 26/958
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Normal",
  46488. height: math.unit(7 + 5/12, "feet"),
  46489. default: true
  46490. },
  46491. {
  46492. name: "Big",
  46493. height: math.unit(50, "feet")
  46494. },
  46495. {
  46496. name: "Macro",
  46497. height: math.unit(300, "feet")
  46498. },
  46499. {
  46500. name: "Megamacro",
  46501. height: math.unit(1, "mile")
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(6 + 9/12, "feet"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/zeimne/front.svg",
  46513. extra: 1969/1806,
  46514. bottom: 53/2022
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(6 + 9/12, "feet"),
  46522. default: true
  46523. },
  46524. {
  46525. name: "Giant",
  46526. height: math.unit(550, "feet")
  46527. },
  46528. {
  46529. name: "Mega",
  46530. height: math.unit(3, "miles")
  46531. },
  46532. {
  46533. name: "Giga",
  46534. height: math.unit(250, "miles")
  46535. },
  46536. {
  46537. name: "Tera",
  46538. height: math.unit(1, "AU")
  46539. },
  46540. ]
  46541. ))
  46542. characterMakers.push(() => makeCharacter(
  46543. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46544. {
  46545. front: {
  46546. height: math.unit(5 + 2/12, "feet"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/grar/front.svg",
  46550. extra: 1331/1119,
  46551. bottom: 60/1391
  46552. }
  46553. },
  46554. back: {
  46555. height: math.unit(5 + 2/12, "feet"),
  46556. name: "Back",
  46557. image: {
  46558. source: "./media/characters/grar/back.svg",
  46559. extra: 1385/1169,
  46560. bottom: 23/1408
  46561. }
  46562. },
  46563. },
  46564. [
  46565. {
  46566. name: "Normal",
  46567. height: math.unit(5 + 2/12, "feet"),
  46568. default: true
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46574. {
  46575. front: {
  46576. height: math.unit(13 + 7/12, "feet"),
  46577. weight: math.unit(2200, "lb"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/endraya/front.svg",
  46581. extra: 1289/1215,
  46582. bottom: 50/1339
  46583. }
  46584. },
  46585. nude: {
  46586. height: math.unit(13 + 7/12, "feet"),
  46587. weight: math.unit(2200, "lb"),
  46588. name: "Nude",
  46589. image: {
  46590. source: "./media/characters/endraya/nude.svg",
  46591. extra: 1247/1171,
  46592. bottom: 40/1287
  46593. }
  46594. },
  46595. head: {
  46596. height: math.unit(2.6, "feet"),
  46597. name: "Head",
  46598. image: {
  46599. source: "./media/characters/endraya/head.svg"
  46600. }
  46601. },
  46602. slit: {
  46603. height: math.unit(3.4, "feet"),
  46604. name: "Slit",
  46605. image: {
  46606. source: "./media/characters/endraya/slit.svg"
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(13 + 7/12, "feet"),
  46614. default: true
  46615. },
  46616. {
  46617. name: "Macro",
  46618. height: math.unit(200, "feet")
  46619. },
  46620. ]
  46621. ))
  46622. characterMakers.push(() => makeCharacter(
  46623. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46624. {
  46625. front: {
  46626. height: math.unit(1.81, "meters"),
  46627. weight: math.unit(69, "kg"),
  46628. name: "Front",
  46629. image: {
  46630. source: "./media/characters/rodryana/front.svg",
  46631. extra: 2002/1921,
  46632. bottom: 53/2055
  46633. }
  46634. },
  46635. back: {
  46636. height: math.unit(1.81, "meters"),
  46637. weight: math.unit(69, "kg"),
  46638. name: "Back",
  46639. image: {
  46640. source: "./media/characters/rodryana/back.svg",
  46641. extra: 1993/1926,
  46642. bottom: 48/2041
  46643. }
  46644. },
  46645. maw: {
  46646. height: math.unit(0.19769417475, "meters"),
  46647. name: "Maw",
  46648. image: {
  46649. source: "./media/characters/rodryana/maw.svg"
  46650. }
  46651. },
  46652. slit: {
  46653. height: math.unit(0.31631067961, "meters"),
  46654. name: "Slit",
  46655. image: {
  46656. source: "./media/characters/rodryana/slit.svg"
  46657. }
  46658. },
  46659. },
  46660. [
  46661. {
  46662. name: "Normal",
  46663. height: math.unit(1.81, "meters")
  46664. },
  46665. {
  46666. name: "Mini Macro",
  46667. height: math.unit(181, "meters")
  46668. },
  46669. {
  46670. name: "Macro",
  46671. height: math.unit(452, "meters"),
  46672. default: true
  46673. },
  46674. {
  46675. name: "Mega Macro",
  46676. height: math.unit(1.375, "km")
  46677. },
  46678. {
  46679. name: "Giga Macro",
  46680. height: math.unit(13.575, "km")
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46686. {
  46687. front: {
  46688. height: math.unit(6, "feet"),
  46689. weight: math.unit(1000, "lb"),
  46690. name: "Front",
  46691. image: {
  46692. source: "./media/characters/asaya/front.svg",
  46693. extra: 1460/1200,
  46694. bottom: 71/1531
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Normal",
  46701. height: math.unit(8, "km"),
  46702. default: true
  46703. },
  46704. ]
  46705. ))
  46706. characterMakers.push(() => makeCharacter(
  46707. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46708. {
  46709. front: {
  46710. height: math.unit(3.5, "meters"),
  46711. name: "Front",
  46712. image: {
  46713. source: "./media/characters/sarzu-and-israz/front.svg",
  46714. extra: 1570/1558,
  46715. bottom: 150/1720
  46716. },
  46717. },
  46718. back: {
  46719. height: math.unit(3.5, "meters"),
  46720. name: "Back",
  46721. image: {
  46722. source: "./media/characters/sarzu-and-israz/back.svg",
  46723. extra: 1523/1509,
  46724. bottom: 132/1655
  46725. },
  46726. },
  46727. frontFemale: {
  46728. height: math.unit(3.5, "meters"),
  46729. name: "Front (Female)",
  46730. image: {
  46731. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46732. extra: 1570/1558,
  46733. bottom: 150/1720
  46734. },
  46735. },
  46736. frontHerm: {
  46737. height: math.unit(3.5, "meters"),
  46738. name: "Front (Herm)",
  46739. image: {
  46740. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46741. extra: 1570/1558,
  46742. bottom: 150/1720
  46743. },
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Normal",
  46749. height: math.unit(3.5, "meters"),
  46750. default: true,
  46751. },
  46752. {
  46753. name: "Macro",
  46754. height: math.unit(65.5, "meters"),
  46755. },
  46756. ],
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(6, "feet"),
  46763. weight: math.unit(250, "lb"),
  46764. name: "Front",
  46765. image: {
  46766. source: "./media/characters/zenimma/front.svg",
  46767. extra: 1346/1320,
  46768. bottom: 58/1404
  46769. }
  46770. },
  46771. back: {
  46772. height: math.unit(6, "feet"),
  46773. weight: math.unit(250, "lb"),
  46774. name: "Back",
  46775. image: {
  46776. source: "./media/characters/zenimma/back.svg",
  46777. extra: 1324/1308,
  46778. bottom: 44/1368
  46779. }
  46780. },
  46781. dick: {
  46782. height: math.unit(1.44, "feet"),
  46783. name: "Dick",
  46784. image: {
  46785. source: "./media/characters/zenimma/dick.svg"
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Canon Height",
  46792. height: math.unit(66, "miles"),
  46793. default: true
  46794. },
  46795. ]
  46796. ))
  46797. characterMakers.push(() => makeCharacter(
  46798. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46799. {
  46800. nude: {
  46801. height: math.unit(6, "feet"),
  46802. weight: math.unit(150, "lb"),
  46803. name: "Nude",
  46804. image: {
  46805. source: "./media/characters/shavon/nude.svg",
  46806. extra: 1242/1096,
  46807. bottom: 98/1340
  46808. }
  46809. },
  46810. dressed: {
  46811. height: math.unit(6, "feet"),
  46812. weight: math.unit(150, "lb"),
  46813. name: "Dressed",
  46814. image: {
  46815. source: "./media/characters/shavon/dressed.svg",
  46816. extra: 1242/1096,
  46817. bottom: 98/1340
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Macro",
  46824. height: math.unit(255, "feet"),
  46825. default: true
  46826. },
  46827. ]
  46828. ))
  46829. characterMakers.push(() => makeCharacter(
  46830. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46831. {
  46832. front: {
  46833. height: math.unit(6, "feet"),
  46834. name: "Front",
  46835. image: {
  46836. source: "./media/characters/steph/front.svg",
  46837. extra: 1430/1330,
  46838. bottom: 54/1484
  46839. }
  46840. },
  46841. },
  46842. [
  46843. {
  46844. name: "Normal",
  46845. height: math.unit(6, "feet"),
  46846. default: true
  46847. },
  46848. ]
  46849. ))
  46850. characterMakers.push(() => makeCharacter(
  46851. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46852. {
  46853. front: {
  46854. height: math.unit(9, "feet"),
  46855. weight: math.unit(400, "lb"),
  46856. name: "Front",
  46857. image: {
  46858. source: "./media/characters/kil'aman/front.svg",
  46859. extra: 1210/1159,
  46860. bottom: 109/1319
  46861. }
  46862. },
  46863. head: {
  46864. height: math.unit(2.14, "feet"),
  46865. name: "Head",
  46866. image: {
  46867. source: "./media/characters/kil'aman/head.svg"
  46868. }
  46869. },
  46870. maw: {
  46871. height: math.unit(1.21, "feet"),
  46872. name: "Maw",
  46873. image: {
  46874. source: "./media/characters/kil'aman/maw.svg"
  46875. }
  46876. },
  46877. foot: {
  46878. height: math.unit(1.7, "feet"),
  46879. name: "Foot",
  46880. image: {
  46881. source: "./media/characters/kil'aman/foot.svg"
  46882. }
  46883. },
  46884. dick: {
  46885. height: math.unit(2.1, "feet"),
  46886. name: "Dick",
  46887. image: {
  46888. source: "./media/characters/kil'aman/dick.svg"
  46889. }
  46890. },
  46891. },
  46892. [
  46893. {
  46894. name: "Normal",
  46895. height: math.unit(9, "feet")
  46896. },
  46897. {
  46898. name: "Canon Height",
  46899. height: math.unit(10, "miles"),
  46900. default: true
  46901. },
  46902. {
  46903. name: "Maximum",
  46904. height: math.unit(6e9, "miles")
  46905. },
  46906. ]
  46907. ))
  46908. characterMakers.push(() => makeCharacter(
  46909. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46910. {
  46911. front: {
  46912. height: math.unit(90, "feet"),
  46913. weight: math.unit(675000, "lb"),
  46914. name: "Front",
  46915. image: {
  46916. source: "./media/characters/qadan/front.svg",
  46917. extra: 1012/1004,
  46918. bottom: 78/1090
  46919. }
  46920. },
  46921. back: {
  46922. height: math.unit(90, "feet"),
  46923. weight: math.unit(675000, "lb"),
  46924. name: "Back",
  46925. image: {
  46926. source: "./media/characters/qadan/back.svg",
  46927. extra: 1042/1031,
  46928. bottom: 55/1097
  46929. }
  46930. },
  46931. armored: {
  46932. height: math.unit(90, "feet"),
  46933. weight: math.unit(675000, "lb"),
  46934. name: "Armored",
  46935. image: {
  46936. source: "./media/characters/qadan/armored.svg",
  46937. extra: 1047/1037,
  46938. bottom: 48/1095
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(90, "feet"),
  46946. default: true
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46952. {
  46953. front: {
  46954. height: math.unit(6, "feet"),
  46955. weight: math.unit(225, "lb"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/brooke/front.svg",
  46959. extra: 1050/1010,
  46960. bottom: 66/1116
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(6, "feet"),
  46965. weight: math.unit(225, "lb"),
  46966. name: "Back",
  46967. image: {
  46968. source: "./media/characters/brooke/back.svg",
  46969. extra: 1053/1013,
  46970. bottom: 41/1094
  46971. }
  46972. },
  46973. dressed: {
  46974. height: math.unit(6, "feet"),
  46975. weight: math.unit(225, "lb"),
  46976. name: "Dressed",
  46977. image: {
  46978. source: "./media/characters/brooke/dressed.svg",
  46979. extra: 1050/1010,
  46980. bottom: 66/1116
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Canon Height",
  46987. height: math.unit(500, "miles"),
  46988. default: true
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46994. {
  46995. front: {
  46996. height: math.unit(6 + 2/12, "feet"),
  46997. weight: math.unit(210, "lb"),
  46998. name: "Front",
  46999. image: {
  47000. source: "./media/characters/wubs/front.svg",
  47001. extra: 1345/1325,
  47002. bottom: 70/1415
  47003. }
  47004. },
  47005. back: {
  47006. height: math.unit(6 + 2/12, "feet"),
  47007. weight: math.unit(210, "lb"),
  47008. name: "Back",
  47009. image: {
  47010. source: "./media/characters/wubs/back.svg",
  47011. extra: 1296/1275,
  47012. bottom: 58/1354
  47013. }
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Normal",
  47019. height: math.unit(6 + 2/12, "feet"),
  47020. default: true
  47021. },
  47022. {
  47023. name: "Macro",
  47024. height: math.unit(1000, "feet")
  47025. },
  47026. {
  47027. name: "Megamacro",
  47028. height: math.unit(1, "mile")
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(4, "feet"),
  47037. weight: math.unit(120, "lb"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/blue/front.svg",
  47041. extra: 1636/1525,
  47042. bottom: 43/1679
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(4, "feet"),
  47047. weight: math.unit(120, "lb"),
  47048. name: "Back",
  47049. image: {
  47050. source: "./media/characters/blue/back.svg",
  47051. extra: 1660/1560,
  47052. bottom: 57/1717
  47053. }
  47054. },
  47055. paws: {
  47056. height: math.unit(0.826, "feet"),
  47057. name: "Paws",
  47058. image: {
  47059. source: "./media/characters/blue/paws.svg"
  47060. }
  47061. },
  47062. },
  47063. [
  47064. {
  47065. name: "Micro",
  47066. height: math.unit(3, "inches")
  47067. },
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(4, "feet"),
  47071. default: true
  47072. },
  47073. {
  47074. name: "Femenine Form",
  47075. height: math.unit(14, "feet")
  47076. },
  47077. {
  47078. name: "Werebat Form",
  47079. height: math.unit(18, "feet")
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47085. {
  47086. female: {
  47087. height: math.unit(7 + 4/12, "feet"),
  47088. weight: math.unit(243, "lb"),
  47089. name: "Female",
  47090. image: {
  47091. source: "./media/characters/kaya/female.svg",
  47092. extra: 975/898,
  47093. bottom: 34/1009
  47094. }
  47095. },
  47096. herm: {
  47097. height: math.unit(7 + 4/12, "feet"),
  47098. weight: math.unit(243, "lb"),
  47099. name: "Herm",
  47100. image: {
  47101. source: "./media/characters/kaya/herm.svg",
  47102. extra: 975/898,
  47103. bottom: 34/1009
  47104. }
  47105. },
  47106. },
  47107. [
  47108. {
  47109. name: "Normal",
  47110. height: math.unit(7 + 4/12, "feet"),
  47111. default: true
  47112. },
  47113. ]
  47114. ))
  47115. characterMakers.push(() => makeCharacter(
  47116. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47117. {
  47118. female: {
  47119. height: math.unit(9 + 4/12, "feet"),
  47120. weight: math.unit(398, "lb"),
  47121. name: "Female",
  47122. image: {
  47123. source: "./media/characters/kassandra/female.svg",
  47124. extra: 908/839,
  47125. bottom: 61/969
  47126. }
  47127. },
  47128. intersex: {
  47129. height: math.unit(9 + 4/12, "feet"),
  47130. weight: math.unit(398, "lb"),
  47131. name: "Intersex",
  47132. image: {
  47133. source: "./media/characters/kassandra/intersex.svg",
  47134. extra: 908/839,
  47135. bottom: 61/969
  47136. }
  47137. },
  47138. },
  47139. [
  47140. {
  47141. name: "Normal",
  47142. height: math.unit(9 + 4/12, "feet"),
  47143. default: true
  47144. },
  47145. ]
  47146. ))
  47147. characterMakers.push(() => makeCharacter(
  47148. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47149. {
  47150. front: {
  47151. height: math.unit(3, "meters"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/amy/front.svg",
  47155. extra: 1380/1343,
  47156. bottom: 70/1450
  47157. }
  47158. },
  47159. back: {
  47160. height: math.unit(3, "meters"),
  47161. name: "Back",
  47162. image: {
  47163. source: "./media/characters/amy/back.svg",
  47164. extra: 1380/1347,
  47165. bottom: 66/1446
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Normal",
  47172. height: math.unit(3, "meters"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47179. {
  47180. side: {
  47181. height: math.unit(47, "cm"),
  47182. weight: math.unit(10.8, "kg"),
  47183. name: "Side",
  47184. image: {
  47185. source: "./media/characters/alphaschakal/side.svg",
  47186. extra: 1058/568,
  47187. bottom: 62/1120
  47188. }
  47189. },
  47190. back: {
  47191. height: math.unit(78, "cm"),
  47192. weight: math.unit(10.8, "kg"),
  47193. name: "Back",
  47194. image: {
  47195. source: "./media/characters/alphaschakal/back.svg",
  47196. extra: 1102/942,
  47197. bottom: 185/1287
  47198. }
  47199. },
  47200. head: {
  47201. height: math.unit(28, "cm"),
  47202. name: "Head",
  47203. image: {
  47204. source: "./media/characters/alphaschakal/head.svg",
  47205. extra: 696/508,
  47206. bottom: 0/696
  47207. }
  47208. },
  47209. paw: {
  47210. height: math.unit(16, "cm"),
  47211. name: "Paw",
  47212. image: {
  47213. source: "./media/characters/alphaschakal/paw.svg"
  47214. }
  47215. },
  47216. },
  47217. [
  47218. {
  47219. name: "Normal",
  47220. height: math.unit(47, "cm"),
  47221. default: true
  47222. },
  47223. {
  47224. name: "Macro",
  47225. height: math.unit(340, "cm")
  47226. },
  47227. ]
  47228. ))
  47229. characterMakers.push(() => makeCharacter(
  47230. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47231. {
  47232. front: {
  47233. height: math.unit(36, "earths"),
  47234. name: "Front",
  47235. image: {
  47236. source: "./media/characters/ecobyss/front.svg",
  47237. extra: 1282/1215,
  47238. bottom: 11/1293
  47239. }
  47240. },
  47241. back: {
  47242. height: math.unit(36, "earths"),
  47243. name: "Back",
  47244. image: {
  47245. source: "./media/characters/ecobyss/back.svg",
  47246. extra: 1291/1222,
  47247. bottom: 8/1299
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(36, "earths"),
  47255. default: true
  47256. },
  47257. ]
  47258. ))
  47259. characterMakers.push(() => makeCharacter(
  47260. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47261. {
  47262. front: {
  47263. height: math.unit(12, "feet"),
  47264. name: "Front",
  47265. image: {
  47266. source: "./media/characters/vasuk/front.svg",
  47267. extra: 1326/1207,
  47268. bottom: 64/1390
  47269. }
  47270. },
  47271. },
  47272. [
  47273. {
  47274. name: "Normal",
  47275. height: math.unit(12, "feet"),
  47276. default: true
  47277. },
  47278. ]
  47279. ))
  47280. characterMakers.push(() => makeCharacter(
  47281. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47282. {
  47283. side: {
  47284. height: math.unit(100, "feet"),
  47285. name: "Side",
  47286. image: {
  47287. source: "./media/characters/linneaus/side.svg",
  47288. extra: 987/807,
  47289. bottom: 47/1034
  47290. }
  47291. },
  47292. },
  47293. [
  47294. {
  47295. name: "Macro",
  47296. height: math.unit(100, "feet"),
  47297. default: true
  47298. },
  47299. ]
  47300. ))
  47301. characterMakers.push(() => makeCharacter(
  47302. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47303. {
  47304. front: {
  47305. height: math.unit(8, "feet"),
  47306. weight: math.unit(1200, "lb"),
  47307. name: "Front",
  47308. image: {
  47309. source: "./media/characters/nyterious-daligdig/front.svg",
  47310. extra: 1284/1094,
  47311. bottom: 84/1368
  47312. }
  47313. },
  47314. back: {
  47315. height: math.unit(8, "feet"),
  47316. weight: math.unit(1200, "lb"),
  47317. name: "Back",
  47318. image: {
  47319. source: "./media/characters/nyterious-daligdig/back.svg",
  47320. extra: 1301/1121,
  47321. bottom: 129/1430
  47322. }
  47323. },
  47324. mouth: {
  47325. height: math.unit(1.464, "feet"),
  47326. name: "Mouth",
  47327. image: {
  47328. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47329. }
  47330. },
  47331. },
  47332. [
  47333. {
  47334. name: "Small",
  47335. height: math.unit(8, "feet"),
  47336. default: true
  47337. },
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(15, "feet")
  47341. },
  47342. {
  47343. name: "Macro",
  47344. height: math.unit(90, "feet")
  47345. },
  47346. ]
  47347. ))
  47348. characterMakers.push(() => makeCharacter(
  47349. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47350. {
  47351. front: {
  47352. height: math.unit(7 + 4/12, "feet"),
  47353. weight: math.unit(252, "lb"),
  47354. name: "Front",
  47355. image: {
  47356. source: "./media/characters/bandel/front.svg",
  47357. extra: 1946/1775,
  47358. bottom: 26/1972
  47359. }
  47360. },
  47361. back: {
  47362. height: math.unit(7 + 4/12, "feet"),
  47363. weight: math.unit(252, "lb"),
  47364. name: "Back",
  47365. image: {
  47366. source: "./media/characters/bandel/back.svg",
  47367. extra: 1940/1770,
  47368. bottom: 25/1965
  47369. }
  47370. },
  47371. maw: {
  47372. height: math.unit(2.15, "feet"),
  47373. name: "Maw",
  47374. image: {
  47375. source: "./media/characters/bandel/maw.svg"
  47376. }
  47377. },
  47378. stomach: {
  47379. height: math.unit(1.95, "feet"),
  47380. name: "Stomach",
  47381. image: {
  47382. source: "./media/characters/bandel/stomach.svg"
  47383. }
  47384. },
  47385. },
  47386. [
  47387. {
  47388. name: "Normal",
  47389. height: math.unit(7 + 4/12, "feet"),
  47390. default: true
  47391. },
  47392. ]
  47393. ))
  47394. characterMakers.push(() => makeCharacter(
  47395. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47396. {
  47397. front: {
  47398. height: math.unit(10 + 5/12, "feet"),
  47399. weight: math.unit(773.5, "kg"),
  47400. name: "Front",
  47401. image: {
  47402. source: "./media/characters/zed/front.svg",
  47403. extra: 987/941,
  47404. bottom: 52/1039
  47405. }
  47406. },
  47407. },
  47408. [
  47409. {
  47410. name: "Short",
  47411. height: math.unit(5 + 4/12, "feet")
  47412. },
  47413. {
  47414. name: "Average",
  47415. height: math.unit(10 + 5/12, "feet"),
  47416. default: true
  47417. },
  47418. {
  47419. name: "Mini-Macro",
  47420. height: math.unit(24 + 9/12, "feet")
  47421. },
  47422. {
  47423. name: "Macro",
  47424. height: math.unit(249, "feet")
  47425. },
  47426. {
  47427. name: "Mega-Macro",
  47428. height: math.unit(12490, "feet")
  47429. },
  47430. {
  47431. name: "Giga-Macro",
  47432. height: math.unit(24.9, "miles")
  47433. },
  47434. {
  47435. name: "Tera-Macro",
  47436. height: math.unit(24900, "miles")
  47437. },
  47438. {
  47439. name: "Cosmic Scale",
  47440. height: math.unit(38.9, "lightyears")
  47441. },
  47442. {
  47443. name: "Universal Scale",
  47444. height: math.unit(138e12, "lightyears")
  47445. },
  47446. ]
  47447. ))
  47448. characterMakers.push(() => makeCharacter(
  47449. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47450. {
  47451. front: {
  47452. height: math.unit(1561, "inches"),
  47453. name: "Front",
  47454. image: {
  47455. source: "./media/characters/ivan/front.svg",
  47456. extra: 1126/1071,
  47457. bottom: 26/1152
  47458. }
  47459. },
  47460. back: {
  47461. height: math.unit(1561, "inches"),
  47462. name: "Back",
  47463. image: {
  47464. source: "./media/characters/ivan/back.svg",
  47465. extra: 1134/1079,
  47466. bottom: 30/1164
  47467. }
  47468. },
  47469. },
  47470. [
  47471. {
  47472. name: "Normal",
  47473. height: math.unit(1561, "inches"),
  47474. default: true
  47475. },
  47476. ]
  47477. ))
  47478. characterMakers.push(() => makeCharacter(
  47479. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47480. {
  47481. front: {
  47482. height: math.unit(5 + 7/12, "feet"),
  47483. weight: math.unit(150, "lb"),
  47484. name: "Front",
  47485. image: {
  47486. source: "./media/characters/robin-arctic-hare/front.svg",
  47487. extra: 1148/974,
  47488. bottom: 20/1168
  47489. }
  47490. },
  47491. },
  47492. [
  47493. {
  47494. name: "Normal",
  47495. height: math.unit(5 + 7/12, "feet"),
  47496. default: true
  47497. },
  47498. ]
  47499. ))
  47500. characterMakers.push(() => makeCharacter(
  47501. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47502. {
  47503. side: {
  47504. height: math.unit(5, "feet"),
  47505. name: "Side",
  47506. image: {
  47507. source: "./media/characters/birch/side.svg",
  47508. extra: 985/796,
  47509. bottom: 111/1096
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(5, "feet"),
  47517. default: true
  47518. },
  47519. ]
  47520. ))
  47521. characterMakers.push(() => makeCharacter(
  47522. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47523. {
  47524. front: {
  47525. height: math.unit(4, "feet"),
  47526. name: "Front",
  47527. image: {
  47528. source: "./media/characters/rasp/front.svg",
  47529. extra: 561/478,
  47530. bottom: 74/635
  47531. }
  47532. },
  47533. },
  47534. [
  47535. {
  47536. name: "Normal",
  47537. height: math.unit(4, "feet"),
  47538. default: true
  47539. },
  47540. ]
  47541. ))
  47542. characterMakers.push(() => makeCharacter(
  47543. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47544. {
  47545. front: {
  47546. height: math.unit(4 + 6/12, "feet"),
  47547. name: "Front",
  47548. image: {
  47549. source: "./media/characters/agatha/front.svg",
  47550. extra: 947/933,
  47551. bottom: 42/989
  47552. }
  47553. },
  47554. back: {
  47555. height: math.unit(4 + 6/12, "feet"),
  47556. name: "Back",
  47557. image: {
  47558. source: "./media/characters/agatha/back.svg",
  47559. extra: 935/922,
  47560. bottom: 48/983
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Normal",
  47567. height: math.unit(4 + 6 /12, "feet"),
  47568. default: true
  47569. },
  47570. {
  47571. name: "Max Size",
  47572. height: math.unit(500, "feet")
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47578. {
  47579. side: {
  47580. height: math.unit(30, "feet"),
  47581. name: "Side",
  47582. image: {
  47583. source: "./media/characters/roggy/side.svg",
  47584. extra: 909/643,
  47585. bottom: 63/972
  47586. }
  47587. },
  47588. lounging: {
  47589. height: math.unit(20, "feet"),
  47590. name: "Lounging",
  47591. image: {
  47592. source: "./media/characters/roggy/lounging.svg",
  47593. extra: 643/479,
  47594. bottom: 145/788
  47595. }
  47596. },
  47597. handpaw: {
  47598. height: math.unit(13.1, "feet"),
  47599. name: "Handpaw",
  47600. image: {
  47601. source: "./media/characters/roggy/handpaw.svg"
  47602. }
  47603. },
  47604. footpaw: {
  47605. height: math.unit(15.8, "feet"),
  47606. name: "Footpaw",
  47607. image: {
  47608. source: "./media/characters/roggy/footpaw.svg"
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Menacing",
  47615. height: math.unit(30, "feet"),
  47616. default: true
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47622. {
  47623. front: {
  47624. height: math.unit(5 + 7/12, "feet"),
  47625. weight: math.unit(135, "lb"),
  47626. name: "Front",
  47627. image: {
  47628. source: "./media/characters/naomi/front.svg",
  47629. extra: 1209/1154,
  47630. bottom: 129/1338
  47631. }
  47632. },
  47633. back: {
  47634. height: math.unit(5 + 7/12, "feet"),
  47635. weight: math.unit(135, "lb"),
  47636. name: "Back",
  47637. image: {
  47638. source: "./media/characters/naomi/back.svg",
  47639. extra: 1252/1190,
  47640. bottom: 23/1275
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(5 + 7 /12, "feet"),
  47648. default: true
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47654. {
  47655. side: {
  47656. height: math.unit(35, "meters"),
  47657. name: "Side",
  47658. image: {
  47659. source: "./media/characters/kimpi/side.svg",
  47660. extra: 419/382,
  47661. bottom: 63/482
  47662. }
  47663. },
  47664. hand: {
  47665. height: math.unit(8.96, "meters"),
  47666. name: "Hand",
  47667. image: {
  47668. source: "./media/characters/kimpi/hand.svg"
  47669. }
  47670. },
  47671. },
  47672. [
  47673. {
  47674. name: "Normal",
  47675. height: math.unit(35, "meters"),
  47676. default: true
  47677. },
  47678. ]
  47679. ))
  47680. characterMakers.push(() => makeCharacter(
  47681. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47682. {
  47683. front: {
  47684. height: math.unit(4 + 4/12, "feet"),
  47685. name: "Front",
  47686. image: {
  47687. source: "./media/characters/pepper-purrloin/front.svg",
  47688. extra: 1141/1024,
  47689. bottom: 21/1162
  47690. }
  47691. },
  47692. },
  47693. [
  47694. {
  47695. name: "Normal",
  47696. height: math.unit(4 + 4/12, "feet"),
  47697. default: true
  47698. },
  47699. ]
  47700. ))
  47701. characterMakers.push(() => makeCharacter(
  47702. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47703. {
  47704. front: {
  47705. height: math.unit(6 + 2/12, "feet"),
  47706. name: "Front",
  47707. image: {
  47708. source: "./media/characters/raphael/front.svg",
  47709. extra: 1101/962,
  47710. bottom: 59/1160
  47711. }
  47712. },
  47713. },
  47714. [
  47715. {
  47716. name: "Normal",
  47717. height: math.unit(6 + 2/12, "feet"),
  47718. default: true
  47719. },
  47720. ]
  47721. ))
  47722. characterMakers.push(() => makeCharacter(
  47723. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47724. {
  47725. front: {
  47726. height: math.unit(6, "feet"),
  47727. weight: math.unit(150, "lb"),
  47728. name: "Front",
  47729. image: {
  47730. source: "./media/characters/victor-williams/front.svg",
  47731. extra: 1894/1825,
  47732. bottom: 67/1961
  47733. }
  47734. },
  47735. },
  47736. [
  47737. {
  47738. name: "Normal",
  47739. height: math.unit(6, "feet"),
  47740. default: true
  47741. },
  47742. ]
  47743. ))
  47744. characterMakers.push(() => makeCharacter(
  47745. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47746. {
  47747. front: {
  47748. height: math.unit(5 + 8/12, "feet"),
  47749. weight: math.unit(150, "lb"),
  47750. name: "Front",
  47751. image: {
  47752. source: "./media/characters/rachel/front.svg",
  47753. extra: 1902/1787,
  47754. bottom: 46/1948
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Base Height",
  47761. height: math.unit(5 + 8/12, "feet"),
  47762. default: true
  47763. },
  47764. {
  47765. name: "Macro",
  47766. height: math.unit(200, "feet")
  47767. },
  47768. {
  47769. name: "Mega Macro",
  47770. height: math.unit(1, "mile")
  47771. },
  47772. {
  47773. name: "Giga Macro",
  47774. height: math.unit(1500, "miles")
  47775. },
  47776. {
  47777. name: "Tera Macro",
  47778. height: math.unit(8000, "miles")
  47779. },
  47780. {
  47781. name: "Tera Macro+",
  47782. height: math.unit(2e5, "miles")
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47788. {
  47789. front: {
  47790. height: math.unit(6.5, "feet"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47794. extra: 860/819,
  47795. bottom: 307/1167
  47796. }
  47797. },
  47798. back: {
  47799. height: math.unit(6.5, "feet"),
  47800. name: "Back",
  47801. image: {
  47802. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47803. extra: 880/837,
  47804. bottom: 395/1275
  47805. }
  47806. },
  47807. sleeping: {
  47808. height: math.unit(2.79, "feet"),
  47809. name: "Sleeping",
  47810. image: {
  47811. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47812. extra: 465/383,
  47813. bottom: 263/728
  47814. }
  47815. },
  47816. maw: {
  47817. height: math.unit(2.52, "feet"),
  47818. name: "Maw",
  47819. image: {
  47820. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47821. }
  47822. },
  47823. },
  47824. [
  47825. {
  47826. name: "Normal",
  47827. height: math.unit(6.5, "feet"),
  47828. default: true
  47829. },
  47830. ]
  47831. ))
  47832. characterMakers.push(() => makeCharacter(
  47833. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47834. {
  47835. front: {
  47836. height: math.unit(5, "feet"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/nova-nerium/front.svg",
  47840. extra: 1548/1392,
  47841. bottom: 374/1922
  47842. }
  47843. },
  47844. back: {
  47845. height: math.unit(5, "feet"),
  47846. name: "Back",
  47847. image: {
  47848. source: "./media/characters/nova-nerium/back.svg",
  47849. extra: 1658/1468,
  47850. bottom: 257/1915
  47851. }
  47852. },
  47853. },
  47854. [
  47855. {
  47856. name: "Normal",
  47857. height: math.unit(5, "feet"),
  47858. default: true
  47859. },
  47860. ]
  47861. ))
  47862. characterMakers.push(() => makeCharacter(
  47863. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47864. {
  47865. front: {
  47866. height: math.unit(5 + 4/12, "feet"),
  47867. name: "Front",
  47868. image: {
  47869. source: "./media/characters/ashe-pyriph/front.svg",
  47870. extra: 1935/1747,
  47871. bottom: 60/1995
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Normal",
  47878. height: math.unit(5 + 4/12, "feet"),
  47879. default: true
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47885. {
  47886. front: {
  47887. height: math.unit(8.7, "feet"),
  47888. name: "Front",
  47889. image: {
  47890. source: "./media/characters/flicker-wisp/front.svg",
  47891. extra: 1835/1613,
  47892. bottom: 449/2284
  47893. }
  47894. },
  47895. side: {
  47896. height: math.unit(8.7, "feet"),
  47897. name: "Side",
  47898. image: {
  47899. source: "./media/characters/flicker-wisp/side.svg",
  47900. extra: 1841/1642,
  47901. bottom: 336/2177
  47902. },
  47903. default: true
  47904. },
  47905. maw: {
  47906. height: math.unit(3.35, "feet"),
  47907. name: "Maw",
  47908. image: {
  47909. source: "./media/characters/flicker-wisp/maw.svg",
  47910. extra: 2338/1506,
  47911. bottom: 0/2338
  47912. }
  47913. },
  47914. ovipositor: {
  47915. height: math.unit(4.95, "feet"),
  47916. name: "Ovipositor",
  47917. image: {
  47918. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47919. }
  47920. },
  47921. egg: {
  47922. height: math.unit(0.385, "feet"),
  47923. weight: math.unit(2, "lb"),
  47924. name: "Egg",
  47925. image: {
  47926. source: "./media/characters/flicker-wisp/egg.svg"
  47927. }
  47928. },
  47929. },
  47930. [
  47931. {
  47932. name: "Normal",
  47933. height: math.unit(8.7, "feet"),
  47934. default: true
  47935. },
  47936. ]
  47937. ))
  47938. characterMakers.push(() => makeCharacter(
  47939. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47940. {
  47941. side: {
  47942. height: math.unit(11, "feet"),
  47943. name: "Side",
  47944. image: {
  47945. source: "./media/characters/faefnul/side.svg",
  47946. extra: 1100/1007,
  47947. bottom: 0/1100
  47948. }
  47949. },
  47950. },
  47951. [
  47952. {
  47953. name: "Normal",
  47954. height: math.unit(11, "feet"),
  47955. default: true
  47956. },
  47957. ]
  47958. ))
  47959. characterMakers.push(() => makeCharacter(
  47960. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47961. {
  47962. front: {
  47963. height: math.unit(6 + 2/12, "feet"),
  47964. name: "Front",
  47965. image: {
  47966. source: "./media/characters/shady/front.svg",
  47967. extra: 502/461,
  47968. bottom: 9/511
  47969. }
  47970. },
  47971. kneeling: {
  47972. height: math.unit(4.6, "feet"),
  47973. name: "Kneeling",
  47974. image: {
  47975. source: "./media/characters/shady/kneeling.svg",
  47976. extra: 1328/1219,
  47977. bottom: 117/1445
  47978. }
  47979. },
  47980. maw: {
  47981. height: math.unit(2, "feet"),
  47982. name: "Maw",
  47983. image: {
  47984. source: "./media/characters/shady/maw.svg"
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Nano",
  47991. height: math.unit(1, "mm")
  47992. },
  47993. {
  47994. name: "Micro",
  47995. height: math.unit(12, "mm")
  47996. },
  47997. {
  47998. name: "Tiny",
  47999. height: math.unit(3, "inches")
  48000. },
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(6 + 2/12, "feet"),
  48004. default: true
  48005. },
  48006. {
  48007. name: "Big",
  48008. height: math.unit(15, "feet")
  48009. },
  48010. {
  48011. name: "Macro",
  48012. height: math.unit(150, "feet")
  48013. },
  48014. {
  48015. name: "Titanic",
  48016. height: math.unit(500, "feet")
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(12, "feet"),
  48025. name: "Front",
  48026. image: {
  48027. source: "./media/characters/fenrir/front.svg",
  48028. extra: 968/875,
  48029. bottom: 22/990
  48030. }
  48031. },
  48032. },
  48033. [
  48034. {
  48035. name: "Big",
  48036. height: math.unit(12, "feet"),
  48037. default: true
  48038. },
  48039. ]
  48040. ))
  48041. characterMakers.push(() => makeCharacter(
  48042. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48043. {
  48044. front: {
  48045. height: math.unit(5 + 4/12, "feet"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/makar/front.svg",
  48049. extra: 1181/1112,
  48050. bottom: 78/1259
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(5 + 4/12, "feet"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48064. {
  48065. front: {
  48066. height: math.unit(5 + 7/12, "feet"),
  48067. name: "Front",
  48068. image: {
  48069. source: "./media/characters/callow/front.svg",
  48070. extra: 1482/1304,
  48071. bottom: 23/1505
  48072. }
  48073. },
  48074. back: {
  48075. height: math.unit(5 + 7/12, "feet"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/callow/back.svg",
  48079. extra: 1484/1296,
  48080. bottom: 25/1509
  48081. }
  48082. },
  48083. },
  48084. [
  48085. {
  48086. name: "Micro",
  48087. height: math.unit(3, "inches"),
  48088. default: true
  48089. },
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(5 + 7/12, "feet")
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48098. {
  48099. front: {
  48100. height: math.unit(6 + 2/12, "feet"),
  48101. name: "Front",
  48102. image: {
  48103. source: "./media/characters/natel/front.svg",
  48104. extra: 1833/1692,
  48105. bottom: 166/1999
  48106. }
  48107. },
  48108. },
  48109. [
  48110. {
  48111. name: "Normal",
  48112. height: math.unit(6 + 2/12, "feet"),
  48113. default: true
  48114. },
  48115. ]
  48116. ))
  48117. characterMakers.push(() => makeCharacter(
  48118. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48119. {
  48120. front: {
  48121. height: math.unit(1.75, "meters"),
  48122. name: "Front",
  48123. image: {
  48124. source: "./media/characters/misu/front.svg",
  48125. extra: 1690/1558,
  48126. bottom: 234/1924
  48127. }
  48128. },
  48129. back: {
  48130. height: math.unit(1.75, "meters"),
  48131. name: "Back",
  48132. image: {
  48133. source: "./media/characters/misu/back.svg",
  48134. extra: 1762/1618,
  48135. bottom: 146/1908
  48136. }
  48137. },
  48138. frontNude: {
  48139. height: math.unit(1.75, "meters"),
  48140. name: "Front (Nude)",
  48141. image: {
  48142. source: "./media/characters/misu/front-nude.svg",
  48143. extra: 1690/1558,
  48144. bottom: 234/1924
  48145. }
  48146. },
  48147. backNude: {
  48148. height: math.unit(1.75, "meters"),
  48149. name: "Back (Nude)",
  48150. image: {
  48151. source: "./media/characters/misu/back-nude.svg",
  48152. extra: 1762/1618,
  48153. bottom: 146/1908
  48154. }
  48155. },
  48156. frontErect: {
  48157. height: math.unit(1.75, "meters"),
  48158. name: "Front (Erect)",
  48159. image: {
  48160. source: "./media/characters/misu/front-erect.svg",
  48161. extra: 1690/1558,
  48162. bottom: 234/1924
  48163. }
  48164. },
  48165. maw: {
  48166. height: math.unit(0.47, "meters"),
  48167. name: "Maw",
  48168. image: {
  48169. source: "./media/characters/misu/maw.svg"
  48170. }
  48171. },
  48172. head: {
  48173. height: math.unit(0.35, "meters"),
  48174. name: "Head",
  48175. image: {
  48176. source: "./media/characters/misu/head.svg"
  48177. }
  48178. },
  48179. rear: {
  48180. height: math.unit(0.47, "meters"),
  48181. name: "Rear",
  48182. image: {
  48183. source: "./media/characters/misu/rear.svg"
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Normal",
  48190. height: math.unit(1.75, "meters")
  48191. },
  48192. {
  48193. name: "Not good for the people",
  48194. height: math.unit(42, "meters")
  48195. },
  48196. {
  48197. name: "Not good for the neighborhood",
  48198. height: math.unit(135, "meters")
  48199. },
  48200. {
  48201. name: "Bit bigger problem",
  48202. height: math.unit(380, "meters"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Not good for the city",
  48207. height: math.unit(1.5, "km")
  48208. },
  48209. {
  48210. name: "Not good for the county",
  48211. height: math.unit(5.5, "km")
  48212. },
  48213. {
  48214. name: "Not good for the state",
  48215. height: math.unit(25, "km")
  48216. },
  48217. {
  48218. name: "Not good for the country",
  48219. height: math.unit(125, "km")
  48220. },
  48221. {
  48222. name: "Not good for the continent",
  48223. height: math.unit(2100, "km")
  48224. },
  48225. {
  48226. name: "Not good for the planet",
  48227. height: math.unit(35000, "km")
  48228. },
  48229. {
  48230. name: "Just no",
  48231. height: math.unit(8.5e18, "km")
  48232. },
  48233. ]
  48234. ))
  48235. characterMakers.push(() => makeCharacter(
  48236. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48237. {
  48238. front: {
  48239. height: math.unit(6.5, "feet"),
  48240. name: "Front",
  48241. image: {
  48242. source: "./media/characters/poppy/front.svg",
  48243. extra: 1878/1812,
  48244. bottom: 43/1921
  48245. }
  48246. },
  48247. feet: {
  48248. height: math.unit(1.06, "feet"),
  48249. name: "Feet",
  48250. image: {
  48251. source: "./media/characters/poppy/feet.svg",
  48252. extra: 1083/1083,
  48253. bottom: 87/1170
  48254. }
  48255. },
  48256. },
  48257. [
  48258. {
  48259. name: "Human",
  48260. height: math.unit(6.5, "feet")
  48261. },
  48262. {
  48263. name: "Default",
  48264. height: math.unit(300, "feet"),
  48265. default: true
  48266. },
  48267. {
  48268. name: "Huge",
  48269. height: math.unit(850, "feet")
  48270. },
  48271. {
  48272. name: "Mega",
  48273. height: math.unit(8000, "feet")
  48274. },
  48275. {
  48276. name: "Giga",
  48277. height: math.unit(300, "miles")
  48278. },
  48279. ]
  48280. ))
  48281. characterMakers.push(() => makeCharacter(
  48282. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48283. {
  48284. bipedal: {
  48285. height: math.unit(7, "feet"),
  48286. name: "Bipedal",
  48287. image: {
  48288. source: "./media/characters/zener/bipedal.svg",
  48289. extra: 874/805,
  48290. bottom: 109/983
  48291. }
  48292. },
  48293. quadrupedal: {
  48294. height: math.unit(4.64, "feet"),
  48295. name: "Quadrupedal",
  48296. image: {
  48297. source: "./media/characters/zener/quadrupedal.svg",
  48298. extra: 638/507,
  48299. bottom: 190/828
  48300. }
  48301. },
  48302. cock: {
  48303. height: math.unit(18, "inches"),
  48304. name: "Cock",
  48305. image: {
  48306. source: "./media/characters/zener/cock.svg"
  48307. }
  48308. },
  48309. },
  48310. [
  48311. {
  48312. name: "Normal",
  48313. height: math.unit(7, "feet"),
  48314. default: true
  48315. },
  48316. ]
  48317. ))
  48318. characterMakers.push(() => makeCharacter(
  48319. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48320. {
  48321. nude: {
  48322. height: math.unit(5 + 6/12, "feet"),
  48323. name: "Nude",
  48324. image: {
  48325. source: "./media/characters/charlie-dog/nude.svg",
  48326. extra: 768/734,
  48327. bottom: 26/794
  48328. }
  48329. },
  48330. dressed: {
  48331. height: math.unit(5 + 6/12, "feet"),
  48332. name: "Dressed",
  48333. image: {
  48334. source: "./media/characters/charlie-dog/dressed.svg",
  48335. extra: 768/734,
  48336. bottom: 26/794
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(5 + 6/12, "feet"),
  48344. default: true
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48350. {
  48351. front: {
  48352. height: math.unit(6 + 4/12, "feet"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/ir'istrasz/front.svg",
  48356. extra: 1014/977,
  48357. bottom: 65/1079
  48358. }
  48359. },
  48360. back: {
  48361. height: math.unit(6 + 4/12, "feet"),
  48362. name: "Back",
  48363. image: {
  48364. source: "./media/characters/ir'istrasz/back.svg",
  48365. extra: 1024/992,
  48366. bottom: 34/1058
  48367. }
  48368. },
  48369. },
  48370. [
  48371. {
  48372. name: "Normal",
  48373. height: math.unit(6 + 4/12, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48380. {
  48381. front: {
  48382. height: math.unit(5 + 8/12, "feet"),
  48383. name: "Front",
  48384. image: {
  48385. source: "./media/characters/dee-ditto/front.svg",
  48386. extra: 1874/1785,
  48387. bottom: 68/1942
  48388. }
  48389. },
  48390. back: {
  48391. height: math.unit(5 + 8/12, "feet"),
  48392. name: "Back",
  48393. image: {
  48394. source: "./media/characters/dee-ditto/back.svg",
  48395. extra: 1870/1783,
  48396. bottom: 77/1947
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(5 + 8/12, "feet"),
  48404. default: true
  48405. },
  48406. ]
  48407. ))
  48408. characterMakers.push(() => makeCharacter(
  48409. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48410. {
  48411. front: {
  48412. height: math.unit(7 + 6/12, "feet"),
  48413. name: "Front",
  48414. image: {
  48415. source: "./media/characters/fey/front.svg",
  48416. extra: 995/979,
  48417. bottom: 30/1025
  48418. }
  48419. },
  48420. back: {
  48421. height: math.unit(7 + 6/12, "feet"),
  48422. name: "Back",
  48423. image: {
  48424. source: "./media/characters/fey/back.svg",
  48425. extra: 1079/1008,
  48426. bottom: 5/1084
  48427. }
  48428. },
  48429. dressed: {
  48430. height: math.unit(7 + 6/12, "feet"),
  48431. name: "Dressed",
  48432. image: {
  48433. source: "./media/characters/fey/dressed.svg",
  48434. extra: 995/979,
  48435. bottom: 30/1025
  48436. }
  48437. },
  48438. },
  48439. [
  48440. {
  48441. name: "Normal",
  48442. height: math.unit(7 + 6/12, "feet"),
  48443. default: true
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48449. {
  48450. standing: {
  48451. height: math.unit(17, "feet"),
  48452. name: "Standing",
  48453. image: {
  48454. source: "./media/characters/aster/standing.svg",
  48455. extra: 1798/1598,
  48456. bottom: 117/1915
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(17, "feet"),
  48464. default: true
  48465. },
  48466. {
  48467. name: "Homewrecker",
  48468. height: math.unit(95, "feet")
  48469. },
  48470. {
  48471. name: "Planet Devourer",
  48472. height: math.unit(1008000, "miles")
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48478. {
  48479. front: {
  48480. height: math.unit(6 + 5/12, "feet"),
  48481. weight: math.unit(265, "lb"),
  48482. name: "Front",
  48483. image: {
  48484. source: "./media/characters/devon-childs/front.svg",
  48485. extra: 1795/1721,
  48486. bottom: 41/1836
  48487. }
  48488. },
  48489. side: {
  48490. height: math.unit(6 + 5/12, "feet"),
  48491. weight: math.unit(265, "lb"),
  48492. name: "Side",
  48493. image: {
  48494. source: "./media/characters/devon-childs/side.svg",
  48495. extra: 1812/1738,
  48496. bottom: 30/1842
  48497. }
  48498. },
  48499. back: {
  48500. height: math.unit(6 + 5/12, "feet"),
  48501. weight: math.unit(265, "lb"),
  48502. name: "Back",
  48503. image: {
  48504. source: "./media/characters/devon-childs/back.svg",
  48505. extra: 1808/1735,
  48506. bottom: 23/1831
  48507. }
  48508. },
  48509. hand: {
  48510. height: math.unit(1.464, "feet"),
  48511. name: "Hand",
  48512. image: {
  48513. source: "./media/characters/devon-childs/hand.svg"
  48514. }
  48515. },
  48516. foot: {
  48517. height: math.unit(1.6, "feet"),
  48518. name: "Foot",
  48519. image: {
  48520. source: "./media/characters/devon-childs/foot.svg"
  48521. }
  48522. },
  48523. },
  48524. [
  48525. {
  48526. name: "Micro",
  48527. height: math.unit(7, "cm")
  48528. },
  48529. {
  48530. name: "Normal",
  48531. height: math.unit(6 + 5/12, "feet"),
  48532. default: true
  48533. },
  48534. {
  48535. name: "Macro",
  48536. height: math.unit(154, "feet")
  48537. },
  48538. ]
  48539. ))
  48540. characterMakers.push(() => makeCharacter(
  48541. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48542. {
  48543. front: {
  48544. height: math.unit(6, "feet"),
  48545. weight: math.unit(180, "lb"),
  48546. name: "Front",
  48547. image: {
  48548. source: "./media/characters/lydemox-vir/front.svg",
  48549. extra: 1632/1435,
  48550. bottom: 58/1690
  48551. }
  48552. },
  48553. frontSFW: {
  48554. height: math.unit(6, "feet"),
  48555. weight: math.unit(180, "lb"),
  48556. name: "Front (SFW)",
  48557. image: {
  48558. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48559. extra: 1632/1435,
  48560. bottom: 58/1690
  48561. }
  48562. },
  48563. back: {
  48564. height: math.unit(6, "feet"),
  48565. weight: math.unit(180, "lb"),
  48566. name: "Back",
  48567. image: {
  48568. source: "./media/characters/lydemox-vir/back.svg",
  48569. extra: 1593/1408,
  48570. bottom: 31/1624
  48571. }
  48572. },
  48573. paw: {
  48574. height: math.unit(1.85, "feet"),
  48575. name: "Paw",
  48576. image: {
  48577. source: "./media/characters/lydemox-vir/paw.svg"
  48578. }
  48579. },
  48580. dick: {
  48581. height: math.unit(1.8, "feet"),
  48582. name: "Dick",
  48583. image: {
  48584. source: "./media/characters/lydemox-vir/dick.svg"
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Macro",
  48591. height: math.unit(100, "feet"),
  48592. default: true
  48593. },
  48594. {
  48595. name: "Teramacro",
  48596. height: math.unit(1, "earth")
  48597. },
  48598. {
  48599. name: "Planetary",
  48600. height: math.unit(20, "earths")
  48601. },
  48602. ]
  48603. ))
  48604. characterMakers.push(() => makeCharacter(
  48605. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48606. {
  48607. front: {
  48608. height: math.unit(15 + 8/12, "feet"),
  48609. weight: math.unit(1237, "kg"),
  48610. name: "Front",
  48611. image: {
  48612. source: "./media/characters/mia/front.svg",
  48613. extra: 1573/1446,
  48614. bottom: 58/1631
  48615. }
  48616. },
  48617. },
  48618. [
  48619. {
  48620. name: "Small",
  48621. height: math.unit(9 + 5/12, "feet")
  48622. },
  48623. {
  48624. name: "Normal",
  48625. height: math.unit(15 + 8/12, "feet"),
  48626. default: true
  48627. },
  48628. ]
  48629. ))
  48630. characterMakers.push(() => makeCharacter(
  48631. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48632. {
  48633. front: {
  48634. height: math.unit(10 + 6/12, "feet"),
  48635. weight: math.unit(1.3, "tons"),
  48636. name: "Front",
  48637. image: {
  48638. source: "./media/characters/mr-graves/front.svg",
  48639. extra: 1779/1695,
  48640. bottom: 198/1977
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Normal",
  48647. height: math.unit(10 + 6 /12, "feet"),
  48648. default: true
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48654. {
  48655. dressedFront: {
  48656. height: math.unit(5 + 8/12, "feet"),
  48657. weight: math.unit(125, "lb"),
  48658. name: "Dressed (Front)",
  48659. image: {
  48660. source: "./media/characters/jess/dressed-front.svg",
  48661. extra: 1176/1152,
  48662. bottom: 42/1218
  48663. }
  48664. },
  48665. dressedSide: {
  48666. height: math.unit(5 + 8/12, "feet"),
  48667. weight: math.unit(125, "lb"),
  48668. name: "Dressed (Side)",
  48669. image: {
  48670. source: "./media/characters/jess/dressed-side.svg",
  48671. extra: 1204/1190,
  48672. bottom: 6/1210
  48673. }
  48674. },
  48675. nudeFront: {
  48676. height: math.unit(5 + 8/12, "feet"),
  48677. weight: math.unit(125, "lb"),
  48678. name: "Nude (Front)",
  48679. image: {
  48680. source: "./media/characters/jess/nude-front.svg",
  48681. extra: 1176/1152,
  48682. bottom: 42/1218
  48683. }
  48684. },
  48685. nudeSide: {
  48686. height: math.unit(5 + 8/12, "feet"),
  48687. weight: math.unit(125, "lb"),
  48688. name: "Nude (Side)",
  48689. image: {
  48690. source: "./media/characters/jess/nude-side.svg",
  48691. extra: 1204/1190,
  48692. bottom: 6/1210
  48693. }
  48694. },
  48695. organsFront: {
  48696. height: math.unit(2.83799342105, "feet"),
  48697. name: "Organs (Front)",
  48698. image: {
  48699. source: "./media/characters/jess/organs-front.svg"
  48700. }
  48701. },
  48702. organsSide: {
  48703. height: math.unit(2.64225290474, "feet"),
  48704. name: "Organs (Side)",
  48705. image: {
  48706. source: "./media/characters/jess/organs-side.svg"
  48707. }
  48708. },
  48709. digestiveTractFront: {
  48710. height: math.unit(2.8106580871, "feet"),
  48711. name: "Digestive Tract (Front)",
  48712. image: {
  48713. source: "./media/characters/jess/digestive-tract-front.svg"
  48714. }
  48715. },
  48716. digestiveTractSide: {
  48717. height: math.unit(2.54365045014, "feet"),
  48718. name: "Digestive Tract (Side)",
  48719. image: {
  48720. source: "./media/characters/jess/digestive-tract-side.svg"
  48721. }
  48722. },
  48723. respiratorySystemFront: {
  48724. height: math.unit(1.11196233456, "feet"),
  48725. name: "Respiratory System (Front)",
  48726. image: {
  48727. source: "./media/characters/jess/respiratory-system-front.svg"
  48728. }
  48729. },
  48730. respiratorySystemSide: {
  48731. height: math.unit(0.89327966297, "feet"),
  48732. name: "Respiratory System (Side)",
  48733. image: {
  48734. source: "./media/characters/jess/respiratory-system-side.svg"
  48735. }
  48736. },
  48737. urinaryTractFront: {
  48738. height: math.unit(1.16126356186, "feet"),
  48739. name: "Urinary Tract (Front)",
  48740. image: {
  48741. source: "./media/characters/jess/urinary-tract-front.svg"
  48742. }
  48743. },
  48744. urinaryTractSide: {
  48745. height: math.unit(1.20910039627, "feet"),
  48746. name: "Urinary Tract (Side)",
  48747. image: {
  48748. source: "./media/characters/jess/urinary-tract-side.svg"
  48749. }
  48750. },
  48751. reproductiveOrgansFront: {
  48752. height: math.unit(0.48422591566, "feet"),
  48753. name: "Reproductive Organs (Front)",
  48754. image: {
  48755. source: "./media/characters/jess/reproductive-organs-front.svg"
  48756. }
  48757. },
  48758. reproductiveOrgansSide: {
  48759. height: math.unit(0.61553314481, "feet"),
  48760. name: "Reproductive Organs (Side)",
  48761. image: {
  48762. source: "./media/characters/jess/reproductive-organs-side.svg"
  48763. }
  48764. },
  48765. breastsFront: {
  48766. height: math.unit(0.47690395121, "feet"),
  48767. name: "Breasts (Front)",
  48768. image: {
  48769. source: "./media/characters/jess/breasts-front.svg"
  48770. }
  48771. },
  48772. breastsSide: {
  48773. height: math.unit(0.30556998307, "feet"),
  48774. name: "Breasts (Side)",
  48775. image: {
  48776. source: "./media/characters/jess/breasts-side.svg"
  48777. }
  48778. },
  48779. heartFront: {
  48780. height: math.unit(0.53011022622, "feet"),
  48781. name: "Heart (Front)",
  48782. image: {
  48783. source: "./media/characters/jess/heart-front.svg"
  48784. }
  48785. },
  48786. heartSide: {
  48787. height: math.unit(0.51790695213, "feet"),
  48788. name: "Heart (Side)",
  48789. image: {
  48790. source: "./media/characters/jess/heart-side.svg"
  48791. }
  48792. },
  48793. earsAndNoseFront: {
  48794. height: math.unit(0.29385483995, "feet"),
  48795. name: "Ears and Nose (Front)",
  48796. image: {
  48797. source: "./media/characters/jess/ears-and-nose-front.svg"
  48798. }
  48799. },
  48800. earsAndNoseSide: {
  48801. height: math.unit(0.18109658741, "feet"),
  48802. name: "Ears and Nose (Side)",
  48803. image: {
  48804. source: "./media/characters/jess/ears-and-nose-side.svg"
  48805. }
  48806. },
  48807. },
  48808. [
  48809. {
  48810. name: "Normal",
  48811. height: math.unit(5 + 8/12, "feet"),
  48812. default: true
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(6, "feet"),
  48821. weight: math.unit(6.64467e-7, "grams"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/wimpering/front.svg",
  48825. extra: 597/587,
  48826. bottom: 34/631
  48827. }
  48828. },
  48829. },
  48830. [
  48831. {
  48832. name: "Micro",
  48833. height: math.unit(0.4, "mm"),
  48834. default: true
  48835. },
  48836. ]
  48837. ))
  48838. characterMakers.push(() => makeCharacter(
  48839. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48840. {
  48841. front: {
  48842. height: math.unit(5 + 2/12, "feet"),
  48843. weight: math.unit(110, "lb"),
  48844. name: "Front",
  48845. image: {
  48846. source: "./media/characters/keltre/front.svg",
  48847. extra: 1099/1057,
  48848. bottom: 22/1121
  48849. }
  48850. },
  48851. back: {
  48852. height: math.unit(5 + 2/12, "feet"),
  48853. weight: math.unit(110, "lb"),
  48854. name: "Back",
  48855. image: {
  48856. source: "./media/characters/keltre/back.svg",
  48857. extra: 1095/1053,
  48858. bottom: 17/1112
  48859. }
  48860. },
  48861. dressed: {
  48862. height: math.unit(5 + 2/12, "feet"),
  48863. weight: math.unit(110, "lb"),
  48864. name: "Dressed",
  48865. image: {
  48866. source: "./media/characters/keltre/dressed.svg",
  48867. extra: 1099/1057,
  48868. bottom: 22/1121
  48869. }
  48870. },
  48871. winter: {
  48872. height: math.unit(5 + 2/12, "feet"),
  48873. weight: math.unit(110, "lb"),
  48874. name: "Winter",
  48875. image: {
  48876. source: "./media/characters/keltre/winter.svg",
  48877. extra: 1099/1057,
  48878. bottom: 22/1121
  48879. }
  48880. },
  48881. head: {
  48882. height: math.unit(1.61 * 0.86, "feet"),
  48883. name: "Head",
  48884. image: {
  48885. source: "./media/characters/keltre/head.svg",
  48886. extra: 534/421,
  48887. bottom: 0/534
  48888. }
  48889. },
  48890. hand: {
  48891. height: math.unit(1.3 * 0.86, "feet"),
  48892. name: "Hand",
  48893. image: {
  48894. source: "./media/characters/keltre/hand.svg"
  48895. }
  48896. },
  48897. foot: {
  48898. height: math.unit(1.8 * 0.86, "feet"),
  48899. name: "Foot",
  48900. image: {
  48901. source: "./media/characters/keltre/foot.svg"
  48902. }
  48903. },
  48904. },
  48905. [
  48906. {
  48907. name: "Fine",
  48908. height: math.unit(1, "inch")
  48909. },
  48910. {
  48911. name: "Dimnutive",
  48912. height: math.unit(4, "inches")
  48913. },
  48914. {
  48915. name: "Tiny",
  48916. height: math.unit(1, "foot")
  48917. },
  48918. {
  48919. name: "Small",
  48920. height: math.unit(3, "feet")
  48921. },
  48922. {
  48923. name: "Normal",
  48924. height: math.unit(5 + 2/12, "feet"),
  48925. default: true
  48926. },
  48927. ]
  48928. ))
  48929. characterMakers.push(() => makeCharacter(
  48930. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48931. {
  48932. front: {
  48933. height: math.unit(6 + 2/12, "feet"),
  48934. name: "Front",
  48935. image: {
  48936. source: "./media/characters/nox/front.svg",
  48937. extra: 1917/1830,
  48938. bottom: 74/1991
  48939. }
  48940. },
  48941. back: {
  48942. height: math.unit(6 + 2/12, "feet"),
  48943. name: "Back",
  48944. image: {
  48945. source: "./media/characters/nox/back.svg",
  48946. extra: 1896/1815,
  48947. bottom: 21/1917
  48948. }
  48949. },
  48950. head: {
  48951. height: math.unit(1.1, "feet"),
  48952. name: "Head",
  48953. image: {
  48954. source: "./media/characters/nox/head.svg",
  48955. extra: 874/704,
  48956. bottom: 0/874
  48957. }
  48958. },
  48959. tattoo: {
  48960. height: math.unit(0.729, "feet"),
  48961. name: "Tattoo",
  48962. image: {
  48963. source: "./media/characters/nox/tattoo.svg"
  48964. }
  48965. },
  48966. },
  48967. [
  48968. {
  48969. name: "Normal",
  48970. height: math.unit(6 + 2/12, "feet")
  48971. },
  48972. {
  48973. name: "Gigamacro",
  48974. height: math.unit(2, "earths"),
  48975. default: true
  48976. },
  48977. {
  48978. name: "Cosmic",
  48979. height: math.unit(867, "yottameters")
  48980. },
  48981. ]
  48982. ))
  48983. characterMakers.push(() => makeCharacter(
  48984. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48985. {
  48986. front: {
  48987. height: math.unit(6, "feet"),
  48988. weight: math.unit(150, "lb"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/caspian/front.svg",
  48992. extra: 1443/1359,
  48993. bottom: 0/1443
  48994. }
  48995. },
  48996. back: {
  48997. height: math.unit(6, "feet"),
  48998. weight: math.unit(150, "lb"),
  48999. name: "Back",
  49000. image: {
  49001. source: "./media/characters/caspian/back.svg",
  49002. extra: 1379/1309,
  49003. bottom: 0/1379
  49004. }
  49005. },
  49006. head: {
  49007. height: math.unit(0.9, "feet"),
  49008. name: "Head",
  49009. image: {
  49010. source: "./media/characters/caspian/head.svg",
  49011. extra: 692/492,
  49012. bottom: 0/692
  49013. }
  49014. },
  49015. headAlt: {
  49016. height: math.unit(0.95, "feet"),
  49017. name: "Head (Alt)",
  49018. image: {
  49019. source: "./media/characters/caspian/head-alt.svg",
  49020. extra: 668/508,
  49021. bottom: 0/668
  49022. }
  49023. },
  49024. hand: {
  49025. height: math.unit(0.8, "feet"),
  49026. name: "Hand",
  49027. image: {
  49028. source: "./media/characters/caspian/hand.svg"
  49029. }
  49030. },
  49031. paw: {
  49032. height: math.unit(0.95, "feet"),
  49033. name: "Paw",
  49034. image: {
  49035. source: "./media/characters/caspian/paw.svg"
  49036. }
  49037. },
  49038. },
  49039. [
  49040. {
  49041. name: "Normal",
  49042. height: math.unit(162, "feet"),
  49043. default: true
  49044. },
  49045. ]
  49046. ))
  49047. characterMakers.push(() => makeCharacter(
  49048. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49049. {
  49050. front: {
  49051. height: math.unit(6, "feet"),
  49052. name: "Front",
  49053. image: {
  49054. source: "./media/characters/myra-aisling/front.svg",
  49055. extra: 1268/1166,
  49056. bottom: 73/1341
  49057. }
  49058. },
  49059. back: {
  49060. height: math.unit(6, "feet"),
  49061. name: "Back",
  49062. image: {
  49063. source: "./media/characters/myra-aisling/back.svg",
  49064. extra: 1249/1149,
  49065. bottom: 79/1328
  49066. }
  49067. },
  49068. dressed: {
  49069. height: math.unit(6, "feet"),
  49070. name: "Dressed",
  49071. image: {
  49072. source: "./media/characters/myra-aisling/dressed.svg",
  49073. extra: 1290/1189,
  49074. bottom: 47/1337
  49075. }
  49076. },
  49077. hand: {
  49078. height: math.unit(1.1, "feet"),
  49079. name: "Hand",
  49080. image: {
  49081. source: "./media/characters/myra-aisling/hand.svg"
  49082. }
  49083. },
  49084. paw: {
  49085. height: math.unit(1.23, "feet"),
  49086. name: "Paw",
  49087. image: {
  49088. source: "./media/characters/myra-aisling/paw.svg"
  49089. }
  49090. },
  49091. },
  49092. [
  49093. {
  49094. name: "Normal",
  49095. height: math.unit(160, "feet"),
  49096. default: true
  49097. },
  49098. ]
  49099. ))
  49100. characterMakers.push(() => makeCharacter(
  49101. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49102. {
  49103. front: {
  49104. height: math.unit(6, "feet"),
  49105. name: "Front",
  49106. image: {
  49107. source: "./media/characters/tenley-sidero/front.svg",
  49108. extra: 1365/1276,
  49109. bottom: 47/1412
  49110. }
  49111. },
  49112. back: {
  49113. height: math.unit(6, "feet"),
  49114. name: "Back",
  49115. image: {
  49116. source: "./media/characters/tenley-sidero/back.svg",
  49117. extra: 1383/1283,
  49118. bottom: 35/1418
  49119. }
  49120. },
  49121. dressed: {
  49122. height: math.unit(6, "feet"),
  49123. name: "Dressed",
  49124. image: {
  49125. source: "./media/characters/tenley-sidero/dressed.svg",
  49126. extra: 1364/1275,
  49127. bottom: 42/1406
  49128. }
  49129. },
  49130. head: {
  49131. height: math.unit(1.47, "feet"),
  49132. name: "Head",
  49133. image: {
  49134. source: "./media/characters/tenley-sidero/head.svg",
  49135. extra: 610/490,
  49136. bottom: 0/610
  49137. }
  49138. },
  49139. },
  49140. [
  49141. {
  49142. name: "Normal",
  49143. height: math.unit(154, "feet"),
  49144. default: true
  49145. },
  49146. ]
  49147. ))
  49148. characterMakers.push(() => makeCharacter(
  49149. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49150. {
  49151. front: {
  49152. height: math.unit(5, "inches"),
  49153. name: "Front",
  49154. image: {
  49155. source: "./media/characters/mallory/front.svg",
  49156. extra: 1919/1678,
  49157. bottom: 29/1948
  49158. }
  49159. },
  49160. hand: {
  49161. height: math.unit(0.73, "inches"),
  49162. name: "Hand",
  49163. image: {
  49164. source: "./media/characters/mallory/hand.svg"
  49165. }
  49166. },
  49167. paw: {
  49168. height: math.unit(0.68, "inches"),
  49169. name: "Paw",
  49170. image: {
  49171. source: "./media/characters/mallory/paw.svg"
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Small",
  49178. height: math.unit(5, "inches"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49185. {
  49186. naked: {
  49187. height: math.unit(6, "feet"),
  49188. name: "Naked",
  49189. image: {
  49190. source: "./media/characters/mab/naked.svg",
  49191. extra: 1855/1757,
  49192. bottom: 208/2063
  49193. }
  49194. },
  49195. outside: {
  49196. height: math.unit(6, "feet"),
  49197. name: "Outside",
  49198. image: {
  49199. source: "./media/characters/mab/outside.svg",
  49200. extra: 1855/1757,
  49201. bottom: 208/2063
  49202. }
  49203. },
  49204. party: {
  49205. height: math.unit(6, "feet"),
  49206. name: "Party",
  49207. image: {
  49208. source: "./media/characters/mab/party.svg",
  49209. extra: 1855/1757,
  49210. bottom: 208/2063
  49211. }
  49212. },
  49213. },
  49214. [
  49215. {
  49216. name: "Normal",
  49217. height: math.unit(165, "feet"),
  49218. default: true
  49219. },
  49220. ]
  49221. ))
  49222. characterMakers.push(() => makeCharacter(
  49223. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49224. {
  49225. front: {
  49226. height: math.unit(12, "feet"),
  49227. weight: math.unit(4000, "lb"),
  49228. name: "Front",
  49229. image: {
  49230. source: "./media/characters/winter/front.svg",
  49231. extra: 1286/943,
  49232. bottom: 112/1398
  49233. }
  49234. },
  49235. frontNsfw: {
  49236. height: math.unit(12, "feet"),
  49237. weight: math.unit(4000, "lb"),
  49238. name: "Front (NSFW)",
  49239. image: {
  49240. source: "./media/characters/winter/front-nsfw.svg",
  49241. extra: 1286/943,
  49242. bottom: 112/1398
  49243. }
  49244. },
  49245. dick: {
  49246. height: math.unit(3.79, "feet"),
  49247. name: "Dick",
  49248. image: {
  49249. source: "./media/characters/winter/dick.svg"
  49250. }
  49251. },
  49252. },
  49253. [
  49254. {
  49255. name: "Big",
  49256. height: math.unit(12, "feet"),
  49257. default: true
  49258. },
  49259. ]
  49260. ))
  49261. characterMakers.push(() => makeCharacter(
  49262. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49263. {
  49264. front: {
  49265. height: math.unit(4.1, "inches"),
  49266. name: "Front",
  49267. image: {
  49268. source: "./media/characters/alto/front.svg",
  49269. extra: 736/627,
  49270. bottom: 90/826
  49271. }
  49272. },
  49273. },
  49274. [
  49275. {
  49276. name: "Normal",
  49277. height: math.unit(4.1, "inches"),
  49278. default: true
  49279. },
  49280. ]
  49281. ))
  49282. characterMakers.push(() => makeCharacter(
  49283. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49284. {
  49285. sitting: {
  49286. height: math.unit(3, "feet"),
  49287. name: "Sitting",
  49288. image: {
  49289. source: "./media/characters/ratstrid-v/sitting.svg",
  49290. extra: 355/310,
  49291. bottom: 136/491
  49292. }
  49293. },
  49294. },
  49295. [
  49296. {
  49297. name: "Normal",
  49298. height: math.unit(3, "feet"),
  49299. default: true
  49300. },
  49301. ]
  49302. ))
  49303. characterMakers.push(() => makeCharacter(
  49304. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49305. {
  49306. back: {
  49307. height: math.unit(6, "feet"),
  49308. weight: math.unit(350, "lb"),
  49309. name: "Back",
  49310. image: {
  49311. source: "./media/characters/siz/back.svg",
  49312. extra: 1449/1274,
  49313. bottom: 13/1462
  49314. }
  49315. },
  49316. },
  49317. [
  49318. {
  49319. name: "Over-Overcompressed",
  49320. height: math.unit(8, "feet")
  49321. },
  49322. {
  49323. name: "Overcompressed",
  49324. height: math.unit(32, "feet")
  49325. },
  49326. {
  49327. name: "Compressed",
  49328. height: math.unit(128, "feet"),
  49329. default: true
  49330. },
  49331. {
  49332. name: "Half-Compressed",
  49333. height: math.unit(512, "feet")
  49334. },
  49335. {
  49336. name: "Quarter-Compressed",
  49337. height: math.unit(2048, "feet")
  49338. },
  49339. {
  49340. name: "Uncompressed?",
  49341. height: math.unit(8192, "feet")
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49347. {
  49348. front: {
  49349. height: math.unit(5 + 9/12, "feet"),
  49350. weight: math.unit(150, "lb"),
  49351. name: "Front",
  49352. image: {
  49353. source: "./media/characters/ven/front.svg",
  49354. extra: 1372/1320,
  49355. bottom: 73/1445
  49356. }
  49357. },
  49358. side: {
  49359. height: math.unit(5 + 9/12, "feet"),
  49360. weight: math.unit(1150, "lb"),
  49361. name: "Side",
  49362. image: {
  49363. source: "./media/characters/ven/side.svg",
  49364. extra: 1119/1070,
  49365. bottom: 42/1161
  49366. },
  49367. default: true
  49368. },
  49369. },
  49370. [
  49371. {
  49372. name: "Normal",
  49373. height: math.unit(5 + 9/12, "feet"),
  49374. default: true
  49375. },
  49376. ]
  49377. ))
  49378. characterMakers.push(() => makeCharacter(
  49379. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49380. {
  49381. front: {
  49382. height: math.unit(12, "feet"),
  49383. weight: math.unit(1000, "kg"),
  49384. name: "Front",
  49385. image: {
  49386. source: "./media/characters/maple/front.svg",
  49387. extra: 1193/1081,
  49388. bottom: 22/1215
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Compressed",
  49395. height: math.unit(7, "feet")
  49396. },
  49397. {
  49398. name: "Normal",
  49399. height: math.unit(12, "feet"),
  49400. default: true
  49401. },
  49402. ]
  49403. ))
  49404. characterMakers.push(() => makeCharacter(
  49405. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49406. {
  49407. front: {
  49408. height: math.unit(9, "feet"),
  49409. weight: math.unit(1500, "lb"),
  49410. name: "Front",
  49411. image: {
  49412. source: "./media/characters/nora/front.svg",
  49413. extra: 1348/1286,
  49414. bottom: 218/1566
  49415. }
  49416. },
  49417. erect: {
  49418. height: math.unit(9, "feet"),
  49419. weight: math.unit(11500, "lb"),
  49420. name: "Erect",
  49421. image: {
  49422. source: "./media/characters/nora/erect.svg",
  49423. extra: 1488/1433,
  49424. bottom: 133/1621
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(9, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(25, "feet"),
  49441. weight: math.unit(27500, "lb"),
  49442. name: "Front",
  49443. image: {
  49444. source: "./media/characters/north-caudin/front.svg",
  49445. extra: 1184/1082,
  49446. bottom: 23/1207
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Compressed",
  49453. height: math.unit(10, "feet")
  49454. },
  49455. {
  49456. name: "Normal",
  49457. height: math.unit(25, "feet"),
  49458. default: true
  49459. },
  49460. ]
  49461. ))
  49462. characterMakers.push(() => makeCharacter(
  49463. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49464. {
  49465. front: {
  49466. height: math.unit(9, "feet"),
  49467. weight: math.unit(1250, "lb"),
  49468. name: "Front",
  49469. image: {
  49470. source: "./media/characters/merrian/front.svg",
  49471. extra: 2393/2304,
  49472. bottom: 40/2433
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Normal",
  49479. height: math.unit(9, "feet"),
  49480. default: true
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49486. {
  49487. front: {
  49488. height: math.unit(9, "feet"),
  49489. weight: math.unit(1000, "lb"),
  49490. name: "Front",
  49491. image: {
  49492. source: "./media/characters/hazel/front.svg",
  49493. extra: 2351/2298,
  49494. bottom: 38/2389
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Normal",
  49501. height: math.unit(9, "feet"),
  49502. default: true
  49503. },
  49504. ]
  49505. ))
  49506. characterMakers.push(() => makeCharacter(
  49507. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49508. {
  49509. front: {
  49510. height: math.unit(13, "feet"),
  49511. weight: math.unit(3200, "lb"),
  49512. name: "Front",
  49513. image: {
  49514. source: "./media/characters/emma/front.svg",
  49515. extra: 2263/2029,
  49516. bottom: 68/2331
  49517. }
  49518. },
  49519. },
  49520. [
  49521. {
  49522. name: "Normal",
  49523. height: math.unit(13, "feet"),
  49524. default: true
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49530. {
  49531. front: {
  49532. height: math.unit(11 + 9/12, "feet"),
  49533. weight: math.unit(2500, "lb"),
  49534. name: "Front",
  49535. image: {
  49536. source: "./media/characters/ilumina/front.svg",
  49537. extra: 2248/2209,
  49538. bottom: 164/2412
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Normal",
  49545. height: math.unit(11 + 9/12, "feet"),
  49546. default: true
  49547. },
  49548. ]
  49549. ))
  49550. characterMakers.push(() => makeCharacter(
  49551. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49552. {
  49553. front: {
  49554. height: math.unit(8 + 10/12, "feet"),
  49555. weight: math.unit(1350, "lb"),
  49556. name: "Front",
  49557. image: {
  49558. source: "./media/characters/moonshine/front.svg",
  49559. extra: 2395/2288,
  49560. bottom: 40/2435
  49561. }
  49562. },
  49563. },
  49564. [
  49565. {
  49566. name: "Normal",
  49567. height: math.unit(8 + 10/12, "feet"),
  49568. default: true
  49569. },
  49570. ]
  49571. ))
  49572. characterMakers.push(() => makeCharacter(
  49573. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49574. {
  49575. front: {
  49576. height: math.unit(14, "feet"),
  49577. weight: math.unit(3400, "lb"),
  49578. name: "Front",
  49579. image: {
  49580. source: "./media/characters/aletia/front.svg",
  49581. extra: 1185/1052,
  49582. bottom: 21/1206
  49583. }
  49584. },
  49585. },
  49586. [
  49587. {
  49588. name: "Compressed",
  49589. height: math.unit(8, "feet")
  49590. },
  49591. {
  49592. name: "Normal",
  49593. height: math.unit(14, "feet"),
  49594. default: true
  49595. },
  49596. ]
  49597. ))
  49598. characterMakers.push(() => makeCharacter(
  49599. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49600. {
  49601. front: {
  49602. height: math.unit(17, "feet"),
  49603. weight: math.unit(6500, "lb"),
  49604. name: "Front",
  49605. image: {
  49606. source: "./media/characters/deidra/front.svg",
  49607. extra: 1201/1081,
  49608. bottom: 16/1217
  49609. }
  49610. },
  49611. },
  49612. [
  49613. {
  49614. name: "Compressed",
  49615. height: math.unit(9 + 6/12, "feet")
  49616. },
  49617. {
  49618. name: "Normal",
  49619. height: math.unit(17, "feet"),
  49620. default: true
  49621. },
  49622. ]
  49623. ))
  49624. characterMakers.push(() => makeCharacter(
  49625. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49626. {
  49627. front: {
  49628. height: math.unit(7 + 4/12, "feet"),
  49629. weight: math.unit(280, "lb"),
  49630. name: "Front",
  49631. image: {
  49632. source: "./media/characters/freki-yrmori/front.svg",
  49633. extra: 1286/1182,
  49634. bottom: 29/1315
  49635. }
  49636. },
  49637. maw: {
  49638. height: math.unit(0.9, "feet"),
  49639. name: "Maw",
  49640. image: {
  49641. source: "./media/characters/freki-yrmori/maw.svg"
  49642. }
  49643. },
  49644. },
  49645. [
  49646. {
  49647. name: "Normal",
  49648. height: math.unit(7 + 4/12, "feet"),
  49649. default: true
  49650. },
  49651. {
  49652. name: "Macro",
  49653. height: math.unit(38.5, "meters")
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49659. {
  49660. side: {
  49661. height: math.unit(47.2, "meters"),
  49662. weight: math.unit(10000, "tons"),
  49663. name: "Side",
  49664. image: {
  49665. source: "./media/characters/aetherios/side.svg",
  49666. extra: 2363/642,
  49667. bottom: 221/2584
  49668. }
  49669. },
  49670. top: {
  49671. height: math.unit(240, "meters"),
  49672. weight: math.unit(10000, "tons"),
  49673. name: "Top",
  49674. image: {
  49675. source: "./media/characters/aetherios/top.svg"
  49676. }
  49677. },
  49678. bottom: {
  49679. height: math.unit(240, "meters"),
  49680. weight: math.unit(10000, "tons"),
  49681. name: "Bottom",
  49682. image: {
  49683. source: "./media/characters/aetherios/bottom.svg"
  49684. }
  49685. },
  49686. head: {
  49687. height: math.unit(38.6, "meters"),
  49688. name: "Head",
  49689. image: {
  49690. source: "./media/characters/aetherios/head.svg",
  49691. extra: 1335/1112,
  49692. bottom: 0/1335
  49693. }
  49694. },
  49695. front: {
  49696. height: math.unit(29, "meters"),
  49697. name: "Front",
  49698. image: {
  49699. source: "./media/characters/aetherios/front.svg",
  49700. extra: 1266/953,
  49701. bottom: 158/1424
  49702. }
  49703. },
  49704. maw: {
  49705. height: math.unit(16.37, "meters"),
  49706. name: "Maw",
  49707. image: {
  49708. source: "./media/characters/aetherios/maw.svg",
  49709. extra: 748/637,
  49710. bottom: 0/748
  49711. },
  49712. extraAttributes: {
  49713. preyCapacity: {
  49714. name: "Capacity",
  49715. power: 3,
  49716. type: "volume",
  49717. base: math.unit(1000, "people")
  49718. },
  49719. tongueSize: {
  49720. name: "Tongue Size",
  49721. power: 2,
  49722. type: "area",
  49723. base: math.unit(21, "m^2")
  49724. }
  49725. }
  49726. },
  49727. forepaw: {
  49728. height: math.unit(18, "meters"),
  49729. name: "Forepaw",
  49730. image: {
  49731. source: "./media/characters/aetherios/forepaw.svg"
  49732. }
  49733. },
  49734. hindpaw: {
  49735. height: math.unit(23, "meters"),
  49736. name: "Hindpaw",
  49737. image: {
  49738. source: "./media/characters/aetherios/hindpaw.svg"
  49739. }
  49740. },
  49741. genitals: {
  49742. height: math.unit(42, "meters"),
  49743. name: "Genitals",
  49744. image: {
  49745. source: "./media/characters/aetherios/genitals.svg"
  49746. }
  49747. },
  49748. },
  49749. [
  49750. {
  49751. name: "Normal",
  49752. height: math.unit(47.2, "meters"),
  49753. default: true
  49754. },
  49755. {
  49756. name: "Macro",
  49757. height: math.unit(160, "meters")
  49758. },
  49759. {
  49760. name: "Mega",
  49761. height: math.unit(1.87, "km")
  49762. },
  49763. {
  49764. name: "Giga",
  49765. height: math.unit(40000, "km")
  49766. },
  49767. {
  49768. name: "Stellar",
  49769. height: math.unit(158000000, "km")
  49770. },
  49771. {
  49772. name: "Cosmic",
  49773. height: math.unit(9.46e12, "km")
  49774. },
  49775. ]
  49776. ))
  49777. characterMakers.push(() => makeCharacter(
  49778. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49779. {
  49780. front: {
  49781. height: math.unit(5 + 4/12, "feet"),
  49782. weight: math.unit(80, "lb"),
  49783. name: "Front",
  49784. image: {
  49785. source: "./media/characters/mizu-gieeg/front.svg",
  49786. extra: 850/709,
  49787. bottom: 52/902
  49788. }
  49789. },
  49790. back: {
  49791. height: math.unit(5 + 4/12, "feet"),
  49792. weight: math.unit(80, "lb"),
  49793. name: "Back",
  49794. image: {
  49795. source: "./media/characters/mizu-gieeg/back.svg",
  49796. extra: 882/745,
  49797. bottom: 25/907
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Normal",
  49804. height: math.unit(5 + 4/12, "feet"),
  49805. default: true
  49806. },
  49807. ]
  49808. ))
  49809. characterMakers.push(() => makeCharacter(
  49810. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49811. {
  49812. front: {
  49813. height: math.unit(6, "feet"),
  49814. name: "Front",
  49815. image: {
  49816. source: "./media/characters/roselle-st-papier/front.svg",
  49817. extra: 1430/1280,
  49818. bottom: 37/1467
  49819. }
  49820. },
  49821. back: {
  49822. height: math.unit(6, "feet"),
  49823. name: "Back",
  49824. image: {
  49825. source: "./media/characters/roselle-st-papier/back.svg",
  49826. extra: 1491/1296,
  49827. bottom: 23/1514
  49828. }
  49829. },
  49830. ear: {
  49831. height: math.unit(1.26, "feet"),
  49832. name: "Ear",
  49833. image: {
  49834. source: "./media/characters/roselle-st-papier/ear.svg"
  49835. }
  49836. },
  49837. },
  49838. [
  49839. {
  49840. name: "Normal",
  49841. height: math.unit(150, "feet"),
  49842. default: true
  49843. },
  49844. ]
  49845. ))
  49846. characterMakers.push(() => makeCharacter(
  49847. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49848. {
  49849. front: {
  49850. height: math.unit(1, "inches"),
  49851. name: "Front",
  49852. image: {
  49853. source: "./media/characters/valargent/front.svg",
  49854. extra: 1825/1694,
  49855. bottom: 62/1887
  49856. }
  49857. },
  49858. back: {
  49859. height: math.unit(1, "inches"),
  49860. name: "Back",
  49861. image: {
  49862. source: "./media/characters/valargent/back.svg",
  49863. extra: 1775/1682,
  49864. bottom: 88/1863
  49865. }
  49866. },
  49867. },
  49868. [
  49869. {
  49870. name: "Micro",
  49871. height: math.unit(1, "inch"),
  49872. default: true
  49873. },
  49874. ]
  49875. ))
  49876. characterMakers.push(() => makeCharacter(
  49877. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49878. {
  49879. front: {
  49880. height: math.unit(3.4, "meters"),
  49881. name: "Front",
  49882. image: {
  49883. source: "./media/characters/zarina/front.svg",
  49884. extra: 1733/1425,
  49885. bottom: 93/1826
  49886. }
  49887. },
  49888. squatting: {
  49889. height: math.unit(2.14, "meters"),
  49890. name: "Squatting",
  49891. image: {
  49892. source: "./media/characters/zarina/squatting.svg",
  49893. extra: 1073/788,
  49894. bottom: 63/1136
  49895. }
  49896. },
  49897. back: {
  49898. height: math.unit(2.14, "meters"),
  49899. name: "Back",
  49900. image: {
  49901. source: "./media/characters/zarina/back.svg",
  49902. extra: 1128/885,
  49903. bottom: 0/1128
  49904. }
  49905. },
  49906. },
  49907. [
  49908. {
  49909. name: "Normal",
  49910. height: math.unit(3.4, "meters"),
  49911. default: true
  49912. },
  49913. {
  49914. name: "Big",
  49915. height: math.unit(5, "meters")
  49916. },
  49917. {
  49918. name: "Macro",
  49919. height: math.unit(110, "meters")
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49925. {
  49926. front: {
  49927. height: math.unit(7, "feet"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/ventus-astro-fox/front.svg",
  49931. extra: 1792/1623,
  49932. bottom: 28/1820
  49933. }
  49934. },
  49935. back: {
  49936. height: math.unit(7, "feet"),
  49937. name: "Back",
  49938. image: {
  49939. source: "./media/characters/ventus-astro-fox/back.svg",
  49940. extra: 1789/1620,
  49941. bottom: 31/1820
  49942. }
  49943. },
  49944. outfit: {
  49945. height: math.unit(7, "feet"),
  49946. name: "Outfit",
  49947. image: {
  49948. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49949. extra: 1054/925,
  49950. bottom: 15/1069
  49951. }
  49952. },
  49953. head: {
  49954. height: math.unit(1.12, "feet"),
  49955. name: "Head",
  49956. image: {
  49957. source: "./media/characters/ventus-astro-fox/head.svg",
  49958. extra: 866/504,
  49959. bottom: 0/866
  49960. }
  49961. },
  49962. hand: {
  49963. height: math.unit(1, "feet"),
  49964. name: "Hand",
  49965. image: {
  49966. source: "./media/characters/ventus-astro-fox/hand.svg"
  49967. }
  49968. },
  49969. paw: {
  49970. height: math.unit(1.5, "feet"),
  49971. name: "Paw",
  49972. image: {
  49973. source: "./media/characters/ventus-astro-fox/paw.svg"
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Normal",
  49980. height: math.unit(7, "feet"),
  49981. default: true
  49982. },
  49983. {
  49984. name: "Macro",
  49985. height: math.unit(200, "feet")
  49986. },
  49987. {
  49988. name: "Cosmic",
  49989. height: math.unit(3, "universes")
  49990. },
  49991. ]
  49992. ))
  49993. characterMakers.push(() => makeCharacter(
  49994. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49995. {
  49996. front: {
  49997. height: math.unit(3, "meters"),
  49998. weight: math.unit(7000, "lb"),
  49999. name: "Front",
  50000. image: {
  50001. source: "./media/characters/core-t/front.svg",
  50002. extra: 5729/4941,
  50003. bottom: 1129/6858
  50004. }
  50005. },
  50006. },
  50007. [
  50008. {
  50009. name: "Big",
  50010. height: math.unit(3, "meters"),
  50011. default: true
  50012. },
  50013. ]
  50014. ))
  50015. characterMakers.push(() => makeCharacter(
  50016. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50017. {
  50018. normal: {
  50019. height: math.unit(6 + 6/12, "feet"),
  50020. weight: math.unit(275, "lb"),
  50021. name: "Front",
  50022. image: {
  50023. source: "./media/characters/cadbunny/normal.svg",
  50024. extra: 1129/947,
  50025. bottom: 93/1222
  50026. },
  50027. default: true,
  50028. form: "normal"
  50029. },
  50030. gigantamax: {
  50031. height: math.unit(26, "feet"),
  50032. weight: math.unit(16000, "lb"),
  50033. name: "Front",
  50034. image: {
  50035. source: "./media/characters/cadbunny/gigantamax.svg",
  50036. extra: 1133/944,
  50037. bottom: 90/1223
  50038. },
  50039. default: true,
  50040. form: "gigantamax"
  50041. },
  50042. },
  50043. [
  50044. {
  50045. name: "Normal",
  50046. height: math.unit(6 + 6/12, "feet"),
  50047. default: true,
  50048. form: "normal"
  50049. },
  50050. {
  50051. name: "Small",
  50052. height: math.unit(26, "feet"),
  50053. default: true,
  50054. form: "gigantamax"
  50055. },
  50056. {
  50057. name: "Large",
  50058. height: math.unit(78, "feet"),
  50059. form: "gigantamax"
  50060. },
  50061. ],
  50062. {
  50063. "normal": {
  50064. name: "Normal",
  50065. default: true
  50066. },
  50067. "gigantamax": {
  50068. name: "Gigantamax"
  50069. }
  50070. }
  50071. ))
  50072. characterMakers.push(() => makeCharacter(
  50073. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50074. {
  50075. anthroFront: {
  50076. height: math.unit(8, "feet"),
  50077. weight: math.unit(300, "lb"),
  50078. name: "Front",
  50079. image: {
  50080. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50081. extra: 1272/1176,
  50082. bottom: 53/1325
  50083. },
  50084. form: "anthro",
  50085. default: true
  50086. },
  50087. feralSide: {
  50088. height: math.unit(4, "feet"),
  50089. weight: math.unit(250, "lb"),
  50090. name: "Side",
  50091. image: {
  50092. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50093. extra: 731/621,
  50094. bottom: 0/731
  50095. },
  50096. form: "feral",
  50097. default: true
  50098. },
  50099. },
  50100. [
  50101. {
  50102. name: "Regular",
  50103. height: math.unit(8, "feet"),
  50104. form: "anthro"
  50105. },
  50106. {
  50107. name: "Macro",
  50108. height: math.unit(250, "feet"),
  50109. form: "anthro",
  50110. default: true
  50111. },
  50112. {
  50113. name: "Regular",
  50114. height: math.unit(4, "feet"),
  50115. form: "feral"
  50116. },
  50117. {
  50118. name: "Macro",
  50119. height: math.unit(125, "feet"),
  50120. form: "feral",
  50121. default: true
  50122. },
  50123. ],
  50124. {
  50125. "anthro": {
  50126. name: "Anthro",
  50127. default: true
  50128. },
  50129. "feral": {
  50130. name: "Feral",
  50131. },
  50132. }
  50133. ))
  50134. characterMakers.push(() => makeCharacter(
  50135. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50136. {
  50137. front: {
  50138. height: math.unit(11 + 10/12, "feet"),
  50139. weight: math.unit(1587, "kg"),
  50140. name: "Front",
  50141. image: {
  50142. source: "./media/characters/maple-javira-dragon/front.svg",
  50143. extra: 1136/744,
  50144. bottom: 73/1209
  50145. }
  50146. },
  50147. side: {
  50148. height: math.unit(11 + 10/12, "feet"),
  50149. weight: math.unit(1587, "kg"),
  50150. name: "Side",
  50151. image: {
  50152. source: "./media/characters/maple-javira-dragon/side.svg",
  50153. extra: 712/505,
  50154. bottom: 17/729
  50155. }
  50156. },
  50157. head: {
  50158. height: math.unit(8.05, "feet"),
  50159. name: "Head",
  50160. image: {
  50161. source: "./media/characters/maple-javira-dragon/head.svg",
  50162. extra: 1420/1344,
  50163. bottom: 0/1420
  50164. }
  50165. },
  50166. },
  50167. [
  50168. {
  50169. name: "Normal",
  50170. height: math.unit(11 + 10/12, "feet"),
  50171. default: true
  50172. },
  50173. ]
  50174. ))
  50175. characterMakers.push(() => makeCharacter(
  50176. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50177. {
  50178. front: {
  50179. height: math.unit(117, "cm"),
  50180. weight: math.unit(50, "kg"),
  50181. name: "Front",
  50182. image: {
  50183. source: "./media/characters/sonia-wyverntail/front.svg",
  50184. extra: 708/592,
  50185. bottom: 25/733
  50186. }
  50187. },
  50188. },
  50189. [
  50190. {
  50191. name: "Normal",
  50192. height: math.unit(117, "cm"),
  50193. default: true
  50194. },
  50195. ]
  50196. ))
  50197. characterMakers.push(() => makeCharacter(
  50198. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50199. {
  50200. front: {
  50201. height: math.unit(6 + 5/12, "feet"),
  50202. name: "Front",
  50203. image: {
  50204. source: "./media/characters/micah/front.svg",
  50205. extra: 1758/1546,
  50206. bottom: 214/1972
  50207. }
  50208. },
  50209. },
  50210. [
  50211. {
  50212. name: "Normal",
  50213. height: math.unit(6 + 5/12, "feet"),
  50214. default: true
  50215. },
  50216. ]
  50217. ))
  50218. characterMakers.push(() => makeCharacter(
  50219. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50220. {
  50221. front: {
  50222. height: math.unit(5 + 10/12, "feet"),
  50223. weight: math.unit(220, "lb"),
  50224. name: "Front",
  50225. image: {
  50226. source: "./media/characters/zarya/front.svg",
  50227. extra: 593/572,
  50228. bottom: 50/643
  50229. }
  50230. },
  50231. back: {
  50232. height: math.unit(5 + 10/12, "feet"),
  50233. weight: math.unit(220, "lb"),
  50234. name: "Back",
  50235. image: {
  50236. source: "./media/characters/zarya/back.svg",
  50237. extra: 603/582,
  50238. bottom: 38/641
  50239. }
  50240. },
  50241. },
  50242. [
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(5 + 10/12, "feet"),
  50246. default: true
  50247. },
  50248. ]
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(7.5, "feet"),
  50255. name: "Front",
  50256. image: {
  50257. source: "./media/characters/sven-hatisson/front.svg",
  50258. extra: 917/857,
  50259. bottom: 42/959
  50260. }
  50261. },
  50262. back: {
  50263. height: math.unit(7.5, "feet"),
  50264. name: "Back",
  50265. image: {
  50266. source: "./media/characters/sven-hatisson/back.svg",
  50267. extra: 903/856,
  50268. bottom: 15/918
  50269. }
  50270. },
  50271. },
  50272. [
  50273. {
  50274. name: "Base Height",
  50275. height: math.unit(7.5, "feet")
  50276. },
  50277. {
  50278. name: "Usual Height",
  50279. height: math.unit(13.5, "feet"),
  50280. default: true
  50281. },
  50282. {
  50283. name: "Smaller Macro",
  50284. height: math.unit(85, "feet")
  50285. },
  50286. {
  50287. name: "Moderate Macro",
  50288. height: math.unit(320, "feet")
  50289. },
  50290. {
  50291. name: "Large Macro",
  50292. height: math.unit(1000, "feet")
  50293. },
  50294. {
  50295. name: "Largest Size",
  50296. height: math.unit(2, "miles")
  50297. },
  50298. ]
  50299. ))
  50300. characterMakers.push(() => makeCharacter(
  50301. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50302. {
  50303. side: {
  50304. height: math.unit(1.8, "meters"),
  50305. weight: math.unit(275, "kg"),
  50306. name: "Side",
  50307. image: {
  50308. source: "./media/characters/terra/side.svg",
  50309. extra: 1273/1147,
  50310. bottom: 0/1273
  50311. }
  50312. },
  50313. },
  50314. [
  50315. {
  50316. name: "Normal",
  50317. height: math.unit(16.2, "meters"),
  50318. default: true
  50319. },
  50320. ]
  50321. ))
  50322. characterMakers.push(() => makeCharacter(
  50323. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50324. {
  50325. borzoiFront: {
  50326. height: math.unit(6 + 9/12, "feet"),
  50327. name: "Front",
  50328. image: {
  50329. source: "./media/characters/rae/borzoi-front.svg",
  50330. extra: 1161/1098,
  50331. bottom: 31/1192
  50332. },
  50333. form: "borzoi",
  50334. default: true
  50335. },
  50336. werewolfFront: {
  50337. height: math.unit(8 + 7/12, "feet"),
  50338. name: "Front",
  50339. image: {
  50340. source: "./media/characters/rae/werewolf-front.svg",
  50341. extra: 1411/1334,
  50342. bottom: 127/1538
  50343. },
  50344. form: "werewolf",
  50345. default: true
  50346. },
  50347. },
  50348. [
  50349. {
  50350. name: "Normal",
  50351. height: math.unit(6 + 9/12, "feet"),
  50352. default: true,
  50353. form: "borzoi"
  50354. },
  50355. {
  50356. name: "Normal",
  50357. height: math.unit(8 + 7/12, "feet"),
  50358. default: true,
  50359. form: "werewolf"
  50360. },
  50361. ],
  50362. {
  50363. "borzoi": {
  50364. name: "Borzoi",
  50365. default: true
  50366. },
  50367. "werewolf": {
  50368. name: "Werewolf",
  50369. },
  50370. }
  50371. ))
  50372. characterMakers.push(() => makeCharacter(
  50373. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50374. {
  50375. front: {
  50376. height: math.unit(8 + 7/12, "feet"),
  50377. weight: math.unit(482, "lb"),
  50378. name: "Front",
  50379. image: {
  50380. source: "./media/characters/kit/front.svg",
  50381. extra: 1247/1103,
  50382. bottom: 41/1288
  50383. }
  50384. },
  50385. back: {
  50386. height: math.unit(8 + 7/12, "feet"),
  50387. weight: math.unit(482, "lb"),
  50388. name: "Back",
  50389. image: {
  50390. source: "./media/characters/kit/back.svg",
  50391. extra: 1252/1123,
  50392. bottom: 21/1273
  50393. }
  50394. },
  50395. paw: {
  50396. height: math.unit(1.46, "feet"),
  50397. name: "Paw",
  50398. image: {
  50399. source: "./media/characters/kit/paw.svg"
  50400. }
  50401. },
  50402. },
  50403. [
  50404. {
  50405. name: "Normal",
  50406. height: math.unit(8 + 7/12, "feet"),
  50407. default: true
  50408. },
  50409. {
  50410. name: "Tall",
  50411. height: math.unit(7.8, "meters")
  50412. },
  50413. {
  50414. name: "Very Tall",
  50415. height: math.unit(17.9, "meters")
  50416. },
  50417. {
  50418. name: "Semi-Macro",
  50419. height: math.unit(45.8, "meters")
  50420. },
  50421. {
  50422. name: "Macro",
  50423. height: math.unit(86.1, "meters")
  50424. },
  50425. {
  50426. name: "Godlike",
  50427. height: math.unit(749.9, "meters")
  50428. },
  50429. {
  50430. name: "Second Form",
  50431. height: math.unit(92183.9, "meters")
  50432. },
  50433. {
  50434. name: "Third Form",
  50435. height: math.unit(164665.7, "meters")
  50436. },
  50437. {
  50438. name: "Fourth Form",
  50439. height: math.unit(745112.2, "meters")
  50440. },
  50441. {
  50442. name: "Final Form",
  50443. height: math.unit(9.14e144, "meters")
  50444. },
  50445. ]
  50446. ))
  50447. characterMakers.push(() => makeCharacter(
  50448. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50449. {
  50450. side: {
  50451. height: math.unit(0.6, "meters"),
  50452. weight: math.unit(24, "kg"),
  50453. name: "Side",
  50454. image: {
  50455. source: "./media/characters/celeste/side.svg",
  50456. extra: 810/517,
  50457. bottom: 53/863
  50458. }
  50459. },
  50460. },
  50461. [
  50462. {
  50463. name: "Velociraptor",
  50464. height: math.unit(0.6, "meters"),
  50465. default: true
  50466. },
  50467. {
  50468. name: "Utahraptor",
  50469. height: math.unit(1.8, "meters")
  50470. },
  50471. {
  50472. name: "Gallimimus",
  50473. height: math.unit(4.0, "meters")
  50474. },
  50475. {
  50476. name: "Large",
  50477. height: math.unit(20, "meters")
  50478. },
  50479. {
  50480. name: "Planetary",
  50481. height: math.unit(50, "megameters")
  50482. },
  50483. {
  50484. name: "Stellar",
  50485. height: math.unit(1.5, "gigameters")
  50486. },
  50487. {
  50488. name: "Galactic",
  50489. height: math.unit(100, "exameters")
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50495. {
  50496. front: {
  50497. height: math.unit(6, "feet"),
  50498. weight: math.unit(210, "lb"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/glacia/front.svg",
  50502. extra: 958/901,
  50503. bottom: 45/1003
  50504. }
  50505. },
  50506. },
  50507. [
  50508. {
  50509. name: "Macro",
  50510. height: math.unit(1000, "meters"),
  50511. default: true
  50512. },
  50513. ]
  50514. ))
  50515. characterMakers.push(() => makeCharacter(
  50516. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50517. {
  50518. front: {
  50519. height: math.unit(4, "meters"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/giri/front.svg",
  50523. extra: 966/894,
  50524. bottom: 21/987
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Normal",
  50531. height: math.unit(4, "meters"),
  50532. default: true
  50533. },
  50534. ]
  50535. ))
  50536. characterMakers.push(() => makeCharacter(
  50537. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50538. {
  50539. back: {
  50540. height: math.unit(4, "feet"),
  50541. weight: math.unit(37, "lb"),
  50542. name: "Back",
  50543. image: {
  50544. source: "./media/characters/tin/back.svg",
  50545. extra: 845/780,
  50546. bottom: 28/873
  50547. }
  50548. },
  50549. },
  50550. [
  50551. {
  50552. name: "Normal",
  50553. height: math.unit(4, "feet"),
  50554. default: true
  50555. },
  50556. ]
  50557. ))
  50558. characterMakers.push(() => makeCharacter(
  50559. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50560. {
  50561. front: {
  50562. height: math.unit(25, "feet"),
  50563. name: "Front",
  50564. image: {
  50565. source: "./media/characters/cadenza-vivace/front.svg",
  50566. extra: 1842/1578,
  50567. bottom: 30/1872
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Macro",
  50574. height: math.unit(25, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. //characters
  50580. function makeCharacters() {
  50581. const results = [];
  50582. characterMakers.forEach(character => {
  50583. results.push(character());
  50584. });
  50585. return results;
  50586. }