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.
 
 
 

47613 lines
1.2 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["hare"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. "golden-retriever": {
  1840. name: "Golden Retriever",
  1841. parents: ["dog"]
  1842. },
  1843. "triceratops": {
  1844. name: "Triceratops",
  1845. parents: ["dinosaur"]
  1846. },
  1847. "drake": {
  1848. name: "Drake",
  1849. parents: ["dragon"]
  1850. },
  1851. "okapi": {
  1852. name: "Okapi",
  1853. parents: ["giraffe"]
  1854. },
  1855. "arctic-hare": {
  1856. name: "Arctic Hare",
  1857. parents: ["hare"]
  1858. },
  1859. "hare": {
  1860. name: "Hare",
  1861. parents: ["leporidae"]
  1862. },
  1863. "leporidae": {
  1864. name: "Leporidae",
  1865. parents: ["mammal"]
  1866. },
  1867. }
  1868. //species
  1869. function getSpeciesInfo(speciesList) {
  1870. let result = new Set();
  1871. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1872. result.add(entry)
  1873. });
  1874. return Array.from(result);
  1875. };
  1876. function getSpeciesInfoHelper(species) {
  1877. if (!speciesData[species]) {
  1878. console.warn(species + " doesn't exist");
  1879. return [];
  1880. }
  1881. if (speciesData[species].parents) {
  1882. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1883. } else {
  1884. return [species];
  1885. }
  1886. }
  1887. characterMakers.push(() => makeCharacter(
  1888. {
  1889. name: "Fen",
  1890. species: ["crux"],
  1891. description: {
  1892. title: "Bio",
  1893. text: "Very furry. Sheds on everything."
  1894. },
  1895. tags: [
  1896. "anthro",
  1897. "goo"
  1898. ]
  1899. },
  1900. {
  1901. front: {
  1902. height: math.unit(12, "feet"),
  1903. weight: math.unit(2400, "lb"),
  1904. name: "Front",
  1905. image: {
  1906. source: "./media/characters/fen/front.svg",
  1907. extra: 1804/1562,
  1908. bottom: 205/2009
  1909. }
  1910. },
  1911. diving: {
  1912. height: math.unit(4.9, "meters"),
  1913. weight: math.unit(2400, "lb"),
  1914. name: "Diving",
  1915. image: {
  1916. source: "./media/characters/fen/diving.svg"
  1917. }
  1918. },
  1919. goo: {
  1920. height: math.unit(12, "feet"),
  1921. weight: math.unit(3000, "lb"),
  1922. capacity: math.unit(6, "people"),
  1923. name: "Goo",
  1924. image: {
  1925. source: "./media/characters/fen/goo.svg",
  1926. extra: 1307/1071,
  1927. bottom: 134/1441
  1928. }
  1929. },
  1930. maw: {
  1931. height: math.unit(5.03, "feet"),
  1932. name: "Maw",
  1933. image: {
  1934. source: "./media/characters/fen/maw.svg"
  1935. }
  1936. },
  1937. gooCeiling: {
  1938. height: math.unit(6.6, "feet"),
  1939. weight: math.unit(3000, "lb"),
  1940. capacity: math.unit(6, "people"),
  1941. name: "Goo (Ceiling)",
  1942. image: {
  1943. source: "./media/characters/fen/goo-ceiling.svg"
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(12, "feet"),
  1948. weight: math.unit(2400, "lb"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/fen/back.svg",
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nHe is not currently looking at you."
  1957. }
  1958. }
  1959. },
  1960. full: {
  1961. height: math.unit(1.6, "meter"),
  1962. weight: math.unit(3200, "lb"),
  1963. name: "Full",
  1964. image: {
  1965. source: "./media/characters/fen/full.svg",
  1966. extra: 1133/859,
  1967. bottom: 145/1278
  1968. },
  1969. info: {
  1970. description: {
  1971. mode: "append",
  1972. text: "\n\nMunch."
  1973. }
  1974. }
  1975. },
  1976. gooLounging: {
  1977. height: math.unit(4.53, "feet"),
  1978. weight: math.unit(3000, "lb"),
  1979. capacity: math.unit(6, "people"),
  1980. name: "Goo (Lounging)",
  1981. image: {
  1982. source: "./media/characters/fen/goo.svg",
  1983. bottom: 116 / 613
  1984. }
  1985. },
  1986. lounging: {
  1987. height: math.unit(10.52, "feet"),
  1988. weight: math.unit(2400, "lb"),
  1989. name: "Lounging",
  1990. image: {
  1991. source: "./media/characters/fen/lounging.svg"
  1992. }
  1993. },
  1994. },
  1995. [
  1996. {
  1997. name: "Small",
  1998. height: math.unit(2.2428, "meter")
  1999. },
  2000. {
  2001. name: "Normal",
  2002. height: math.unit(12, "feet"),
  2003. default: true,
  2004. },
  2005. {
  2006. name: "Big",
  2007. height: math.unit(20, "feet")
  2008. },
  2009. {
  2010. name: "Minimacro",
  2011. height: math.unit(40, "feet"),
  2012. info: {
  2013. description: {
  2014. mode: "append",
  2015. text: "\n\nTOO DAMN BIG"
  2016. }
  2017. }
  2018. },
  2019. {
  2020. name: "Macro",
  2021. height: math.unit(100, "feet"),
  2022. info: {
  2023. description: {
  2024. mode: "append",
  2025. text: "\n\nTOO DAMN BIG"
  2026. }
  2027. }
  2028. },
  2029. {
  2030. name: "Megamacro",
  2031. height: math.unit(2, "miles")
  2032. },
  2033. {
  2034. name: "Gigamacro",
  2035. height: math.unit(10, "earths")
  2036. },
  2037. ]
  2038. ))
  2039. characterMakers.push(() => makeCharacter(
  2040. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2041. {
  2042. front: {
  2043. height: math.unit(183, "cm"),
  2044. weight: math.unit(80, "kg"),
  2045. name: "Front",
  2046. image: {
  2047. source: "./media/characters/sofia-fluttertail/front.svg",
  2048. bottom: 0.01,
  2049. extra: 2154 / 2081
  2050. }
  2051. },
  2052. frontAlt: {
  2053. height: math.unit(183, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Front (alt)",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2058. }
  2059. },
  2060. back: {
  2061. height: math.unit(183, "cm"),
  2062. weight: math.unit(80, "kg"),
  2063. name: "Back",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/back.svg"
  2066. }
  2067. },
  2068. kneeling: {
  2069. height: math.unit(125, "cm"),
  2070. weight: math.unit(80, "kg"),
  2071. name: "Kneeling",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2074. extra: 1033 / 977,
  2075. bottom: 23.7 / 1057
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(183 / 5, "cm"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/sofia-fluttertail/maw.svg"
  2083. }
  2084. },
  2085. mawcloseup: {
  2086. height: math.unit(183 / 5 * 0.41, "cm"),
  2087. name: "Maw (Closeup)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2090. }
  2091. },
  2092. paws: {
  2093. height: math.unit(1.17, "feet"),
  2094. name: "Paws",
  2095. image: {
  2096. source: "./media/characters/sofia-fluttertail/paws.svg",
  2097. extra: 851 / 851,
  2098. bottom: 17 / 868
  2099. }
  2100. },
  2101. },
  2102. [
  2103. {
  2104. name: "Normal",
  2105. height: math.unit(1.83, "meter")
  2106. },
  2107. {
  2108. name: "Size Thief",
  2109. height: math.unit(18, "feet")
  2110. },
  2111. {
  2112. name: "50 Foot Collie",
  2113. height: math.unit(50, "feet")
  2114. },
  2115. {
  2116. name: "Macro",
  2117. height: math.unit(96, "feet"),
  2118. default: true
  2119. },
  2120. {
  2121. name: "Megamerger",
  2122. height: math.unit(650, "feet")
  2123. },
  2124. ]
  2125. ))
  2126. characterMakers.push(() => makeCharacter(
  2127. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2128. {
  2129. front: {
  2130. height: math.unit(7, "feet"),
  2131. weight: math.unit(100, "kg"),
  2132. name: "Front",
  2133. image: {
  2134. source: "./media/characters/march/front.svg",
  2135. extra: 1992/1851,
  2136. bottom: 39/2031
  2137. }
  2138. },
  2139. foot: {
  2140. height: math.unit(0.9, "feet"),
  2141. name: "Foot",
  2142. image: {
  2143. source: "./media/characters/march/foot.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(7.9, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(220, "meters")
  2155. },
  2156. {
  2157. name: "Megamacro",
  2158. height: math.unit(2.98, "km"),
  2159. default: true
  2160. },
  2161. {
  2162. name: "Gigamacro",
  2163. height: math.unit(15963, "km")
  2164. },
  2165. {
  2166. name: "Teramacro",
  2167. height: math.unit(2980000000, "km")
  2168. },
  2169. {
  2170. name: "Examacro",
  2171. height: math.unit(250, "parsecs")
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2177. {
  2178. front: {
  2179. height: math.unit(6, "feet"),
  2180. weight: math.unit(60, "kg"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/noir/front.svg",
  2184. extra: 1,
  2185. bottom: 0.032
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(6.6, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(500, "feet")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.5, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(22500, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2500000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(200, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(7, "feet"),
  2222. weight: math.unit(100, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/okuri/front.svg",
  2226. extra: 1,
  2227. bottom: 0.037
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(7, "feet"),
  2232. weight: math.unit(100, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/okuri/back.svg",
  2236. extra: 1,
  2237. bottom: 0.007
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Megamacro",
  2244. height: math.unit(100, "miles"),
  2245. default: true
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/manny/front.svg",
  2258. extra: 1,
  2259. bottom: 0.06
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/manny/back.svg",
  2268. extra: 1,
  2269. bottom: 0.014
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Normal",
  2276. height: math.unit(7, "feet"),
  2277. },
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(78, "feet"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Macro+",
  2285. height: math.unit(300, "meters")
  2286. },
  2287. {
  2288. name: "Macro++",
  2289. height: math.unit(2400, "meters")
  2290. },
  2291. {
  2292. name: "Megamacro",
  2293. height: math.unit(5167, "meters")
  2294. },
  2295. {
  2296. name: "Gigamacro",
  2297. height: math.unit(41769, "miles")
  2298. },
  2299. ]
  2300. ))
  2301. characterMakers.push(() => makeCharacter(
  2302. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2303. {
  2304. front: {
  2305. height: math.unit(7, "feet"),
  2306. weight: math.unit(100, "kg"),
  2307. name: "Front",
  2308. image: {
  2309. source: "./media/characters/adake/front-1.svg"
  2310. }
  2311. },
  2312. frontAlt: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(100, "kg"),
  2315. name: "Front (Alt)",
  2316. image: {
  2317. source: "./media/characters/adake/front-2.svg",
  2318. extra: 1,
  2319. bottom: 0.01
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(7, "feet"),
  2324. weight: math.unit(100, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/adake/back.svg",
  2328. }
  2329. },
  2330. kneel: {
  2331. height: math.unit(5.385, "feet"),
  2332. weight: math.unit(100, "kg"),
  2333. name: "Kneeling",
  2334. image: {
  2335. source: "./media/characters/adake/kneel.svg",
  2336. bottom: 0.052
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Normal",
  2343. height: math.unit(7, "feet"),
  2344. },
  2345. {
  2346. name: "Macro",
  2347. height: math.unit(78, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro+",
  2352. height: math.unit(300, "meters")
  2353. },
  2354. {
  2355. name: "Macro++",
  2356. height: math.unit(2400, "meters")
  2357. },
  2358. {
  2359. name: "Megamacro",
  2360. height: math.unit(5167, "meters")
  2361. },
  2362. {
  2363. name: "Gigamacro",
  2364. height: math.unit(41769, "miles")
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2370. {
  2371. front: {
  2372. height: math.unit(1.65, "meters"),
  2373. weight: math.unit(50, "kg"),
  2374. name: "Front",
  2375. image: {
  2376. source: "./media/characters/elijah/front.svg",
  2377. extra: 858 / 830,
  2378. bottom: 95.5 / 953.8559
  2379. }
  2380. },
  2381. back: {
  2382. height: math.unit(1.65, "meters"),
  2383. weight: math.unit(50, "kg"),
  2384. name: "Back",
  2385. image: {
  2386. source: "./media/characters/elijah/back.svg",
  2387. extra: 895 / 850,
  2388. bottom: 5.3 / 897.956
  2389. }
  2390. },
  2391. frontNsfw: {
  2392. height: math.unit(1.65, "meters"),
  2393. weight: math.unit(50, "kg"),
  2394. name: "Front (NSFW)",
  2395. image: {
  2396. source: "./media/characters/elijah/front-nsfw.svg",
  2397. extra: 858 / 830,
  2398. bottom: 95.5 / 953.8559
  2399. }
  2400. },
  2401. backNsfw: {
  2402. height: math.unit(1.65, "meters"),
  2403. weight: math.unit(50, "kg"),
  2404. name: "Back (NSFW)",
  2405. image: {
  2406. source: "./media/characters/elijah/back-nsfw.svg",
  2407. extra: 895 / 850,
  2408. bottom: 5.3 / 897.956
  2409. }
  2410. },
  2411. dick: {
  2412. height: math.unit(1, "feet"),
  2413. name: "Dick",
  2414. image: {
  2415. source: "./media/characters/elijah/dick.svg"
  2416. }
  2417. },
  2418. beakOpen: {
  2419. height: math.unit(1.25, "feet"),
  2420. name: "Beak (Open)",
  2421. image: {
  2422. source: "./media/characters/elijah/beak-open.svg"
  2423. }
  2424. },
  2425. beakShut: {
  2426. height: math.unit(1.25, "feet"),
  2427. name: "Beak (Shut)",
  2428. image: {
  2429. source: "./media/characters/elijah/beak-shut.svg"
  2430. }
  2431. },
  2432. footFlexing: {
  2433. height: math.unit(1.61, "feet"),
  2434. name: "Foot (Flexing)",
  2435. image: {
  2436. source: "./media/characters/elijah/foot-flexing.svg"
  2437. }
  2438. },
  2439. footStepping: {
  2440. height: math.unit(1.44, "feet"),
  2441. name: "Foot (Stepping)",
  2442. image: {
  2443. source: "./media/characters/elijah/foot-stepping.svg"
  2444. }
  2445. },
  2446. plantigradeLeg: {
  2447. height: math.unit(2.34, "feet"),
  2448. name: "Plantigrade Leg",
  2449. image: {
  2450. source: "./media/characters/elijah/plantigrade-leg.svg"
  2451. }
  2452. },
  2453. plantigradeFootLeft: {
  2454. height: math.unit(0.9, "feet"),
  2455. name: "Plantigrade Foot (Left)",
  2456. image: {
  2457. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2458. }
  2459. },
  2460. plantigradeFootRight: {
  2461. height: math.unit(0.9, "feet"),
  2462. name: "Plantigrade Foot (Right)",
  2463. image: {
  2464. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2465. }
  2466. },
  2467. },
  2468. [
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(1.65, "meters")
  2472. },
  2473. {
  2474. name: "Macro",
  2475. height: math.unit(55, "meters"),
  2476. default: true
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(105, "meters")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(7 + 2/12, "feet"),
  2489. weight: math.unit(320, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/rai/front.svg",
  2493. extra: 1802/1696,
  2494. bottom: 68/1870
  2495. }
  2496. },
  2497. frontDressed: {
  2498. height: math.unit(7 + 2/12, "feet"),
  2499. weight: math.unit(320, "kg"),
  2500. name: "Front (Dressed)",
  2501. image: {
  2502. source: "./media/characters/rai/front-dressed.svg",
  2503. extra: 1802/1696,
  2504. bottom: 68/1870
  2505. }
  2506. },
  2507. side: {
  2508. height: math.unit(7 + 2/12, "feet"),
  2509. weight: math.unit(320, "kg"),
  2510. name: "Side",
  2511. image: {
  2512. source: "./media/characters/rai/side.svg",
  2513. extra: 1789/1710,
  2514. bottom: 115/1904
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(7 + 2/12, "feet"),
  2519. weight: math.unit(320, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/rai/back.svg",
  2523. extra: 1770/1707,
  2524. bottom: 28/1798
  2525. }
  2526. },
  2527. feral: {
  2528. height: math.unit(9.5, "feet"),
  2529. weight: math.unit(640, "kg"),
  2530. name: "Feral",
  2531. image: {
  2532. source: "./media/characters/rai/feral.svg",
  2533. extra: 945/553,
  2534. bottom: 176/1121
  2535. }
  2536. },
  2537. dragon: {
  2538. height: math.unit(23, "feet"),
  2539. weight: math.unit(50000, "lb"),
  2540. name: "Dragon",
  2541. image: {
  2542. source: "./media/characters/rai/dragon.svg",
  2543. extra: 2498 / 2030,
  2544. bottom: 85.2 / 2584
  2545. }
  2546. },
  2547. maw: {
  2548. height: math.unit(1.69, "feet"),
  2549. name: "Maw",
  2550. image: {
  2551. source: "./media/characters/rai/maw.svg"
  2552. }
  2553. },
  2554. },
  2555. [
  2556. {
  2557. name: "Normal",
  2558. height: math.unit(7 + 2/12, "feet")
  2559. },
  2560. {
  2561. name: "Big",
  2562. height: math.unit(11, "feet")
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(302, "feet"),
  2567. default: true
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2573. {
  2574. frontDressed: {
  2575. height: math.unit(216, "feet"),
  2576. weight: math.unit(7000000, "lb"),
  2577. name: "Front (Dressed)",
  2578. image: {
  2579. source: "./media/characters/jazzy/front-dressed.svg",
  2580. extra: 2738 / 2651,
  2581. bottom: 41.8 / 2786
  2582. }
  2583. },
  2584. backDressed: {
  2585. height: math.unit(216, "feet"),
  2586. weight: math.unit(7000000, "lb"),
  2587. name: "Back (Dressed)",
  2588. image: {
  2589. source: "./media/characters/jazzy/back-dressed.svg",
  2590. extra: 2775 / 2673,
  2591. bottom: 36.8 / 2817
  2592. }
  2593. },
  2594. front: {
  2595. height: math.unit(216, "feet"),
  2596. weight: math.unit(7000000, "lb"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/jazzy/front.svg",
  2600. extra: 2738 / 2651,
  2601. bottom: 41.8 / 2786
  2602. }
  2603. },
  2604. back: {
  2605. height: math.unit(216, "feet"),
  2606. weight: math.unit(7000000, "lb"),
  2607. name: "Back",
  2608. image: {
  2609. source: "./media/characters/jazzy/back.svg",
  2610. extra: 2775 / 2673,
  2611. bottom: 36.8 / 2817
  2612. }
  2613. },
  2614. maw: {
  2615. height: math.unit(20, "feet"),
  2616. name: "Maw",
  2617. image: {
  2618. source: "./media/characters/jazzy/maw.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(27.5, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/jazzy/paws.svg"
  2626. }
  2627. },
  2628. eye: {
  2629. height: math.unit(4.4, "feet"),
  2630. name: "Eye",
  2631. image: {
  2632. source: "./media/characters/jazzy/eye.svg"
  2633. }
  2634. },
  2635. droneOffense: {
  2636. height: math.unit(9.5, "inches"),
  2637. name: "Drone (Offense)",
  2638. image: {
  2639. source: "./media/characters/jazzy/drone-offense.svg"
  2640. }
  2641. },
  2642. droneRecon: {
  2643. height: math.unit(9.5, "inches"),
  2644. name: "Drone (Recon)",
  2645. image: {
  2646. source: "./media/characters/jazzy/drone-recon.svg"
  2647. }
  2648. },
  2649. droneDefense: {
  2650. height: math.unit(9.5, "inches"),
  2651. name: "Drone (Defense)",
  2652. image: {
  2653. source: "./media/characters/jazzy/drone-defense.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(216, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(9 + 6/12, "feet"),
  2670. weight: math.unit(700, "lb"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/flamm/front.svg",
  2674. extra: 1751/1632,
  2675. bottom: 46/1797
  2676. }
  2677. },
  2678. buff: {
  2679. height: math.unit(9 + 6/12, "feet"),
  2680. weight: math.unit(950, "lb"),
  2681. name: "Buff",
  2682. image: {
  2683. source: "./media/characters/flamm/buff.svg",
  2684. extra: 3018/2874,
  2685. bottom: 221/3239
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Normal",
  2692. height: math.unit(9.5, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(200, "feet"),
  2697. default: true
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2703. {
  2704. front: {
  2705. height: math.unit(5 + 3/12, "feet"),
  2706. weight: math.unit(60, "kg"),
  2707. name: "Front",
  2708. image: {
  2709. source: "./media/characters/zephiro/front.svg",
  2710. extra: 2309 / 2162,
  2711. bottom: 0.069
  2712. }
  2713. },
  2714. side: {
  2715. height: math.unit(5 + 3/12, "feet"),
  2716. weight: math.unit(60, "kg"),
  2717. name: "Side",
  2718. image: {
  2719. source: "./media/characters/zephiro/side.svg",
  2720. extra: 2403 / 2279,
  2721. bottom: 0.015
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(5 + 3/12, "feet"),
  2726. weight: math.unit(60, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/zephiro/back.svg",
  2730. extra: 2373 / 2244,
  2731. bottom: 0.013
  2732. }
  2733. },
  2734. hand: {
  2735. height: math.unit(0.68, "feet"),
  2736. name: "Hand",
  2737. image: {
  2738. source: "./media/characters/zephiro/hand.svg"
  2739. }
  2740. },
  2741. paw: {
  2742. height: math.unit(1, "feet"),
  2743. name: "Paw",
  2744. image: {
  2745. source: "./media/characters/zephiro/paw.svg"
  2746. }
  2747. },
  2748. beans: {
  2749. height: math.unit(0.93, "feet"),
  2750. name: "Beans",
  2751. image: {
  2752. source: "./media/characters/zephiro/beans.svg"
  2753. }
  2754. },
  2755. },
  2756. [
  2757. {
  2758. name: "Micro",
  2759. height: math.unit(3, "inches")
  2760. },
  2761. {
  2762. name: "Normal",
  2763. height: math.unit(5 + 3 / 12, "feet"),
  2764. default: true
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(118, "feet")
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2774. {
  2775. front: {
  2776. height: math.unit(5, "feet"),
  2777. weight: math.unit(90, "kg"),
  2778. name: "Front",
  2779. image: {
  2780. source: "./media/characters/fory/front.svg",
  2781. extra: 2862 / 2674,
  2782. bottom: 180 / 3043.8
  2783. }
  2784. },
  2785. back: {
  2786. height: math.unit(5, "feet"),
  2787. weight: math.unit(90, "kg"),
  2788. name: "Back",
  2789. image: {
  2790. source: "./media/characters/fory/back.svg",
  2791. extra: 2962 / 2791,
  2792. bottom: 106 / 3071.8
  2793. }
  2794. },
  2795. foot: {
  2796. height: math.unit(2.14, "feet"),
  2797. name: "Foot",
  2798. image: {
  2799. source: "./media/characters/fory/foot.svg"
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(5, "feet")
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(50, "feet"),
  2811. default: true
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(10, "miles")
  2816. },
  2817. {
  2818. name: "Gigamacro",
  2819. height: math.unit(5, "earths")
  2820. },
  2821. ]
  2822. ))
  2823. characterMakers.push(() => makeCharacter(
  2824. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2825. {
  2826. front: {
  2827. height: math.unit(7, "feet"),
  2828. weight: math.unit(90, "kg"),
  2829. name: "Front",
  2830. image: {
  2831. source: "./media/characters/kurrikage/front.svg",
  2832. extra: 1845/1733,
  2833. bottom: 119/1964
  2834. }
  2835. },
  2836. back: {
  2837. height: math.unit(7, "feet"),
  2838. weight: math.unit(90, "kg"),
  2839. name: "Back",
  2840. image: {
  2841. source: "./media/characters/kurrikage/back.svg",
  2842. extra: 1790/1677,
  2843. bottom: 61/1851
  2844. }
  2845. },
  2846. dressed: {
  2847. height: math.unit(7, "feet"),
  2848. weight: math.unit(90, "kg"),
  2849. name: "Dressed",
  2850. image: {
  2851. source: "./media/characters/kurrikage/dressed.svg",
  2852. extra: 1845/1733,
  2853. bottom: 119/1964
  2854. }
  2855. },
  2856. foot: {
  2857. height: math.unit(1.5, "feet"),
  2858. name: "Foot",
  2859. image: {
  2860. source: "./media/characters/kurrikage/foot.svg"
  2861. }
  2862. },
  2863. staff: {
  2864. height: math.unit(6.7, "feet"),
  2865. name: "Staff",
  2866. image: {
  2867. source: "./media/characters/kurrikage/staff.svg"
  2868. }
  2869. },
  2870. peek: {
  2871. height: math.unit(1.05, "feet"),
  2872. name: "Peeking",
  2873. image: {
  2874. source: "./media/characters/kurrikage/peek.svg",
  2875. bottom: 0.08
  2876. }
  2877. },
  2878. },
  2879. [
  2880. {
  2881. name: "Normal",
  2882. height: math.unit(12, "feet"),
  2883. default: true
  2884. },
  2885. {
  2886. name: "Big",
  2887. height: math.unit(20, "feet")
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(500, "feet")
  2892. },
  2893. {
  2894. name: "Megamacro",
  2895. height: math.unit(20, "miles")
  2896. },
  2897. ]
  2898. ))
  2899. characterMakers.push(() => makeCharacter(
  2900. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2901. {
  2902. front: {
  2903. height: math.unit(6, "feet"),
  2904. weight: math.unit(75, "kg"),
  2905. name: "Front",
  2906. image: {
  2907. source: "./media/characters/shingo/front.svg",
  2908. extra: 1900/1825,
  2909. bottom: 82/1982
  2910. }
  2911. },
  2912. side: {
  2913. height: math.unit(6, "feet"),
  2914. weight: math.unit(75, "kg"),
  2915. name: "Side",
  2916. image: {
  2917. source: "./media/characters/shingo/side.svg",
  2918. extra: 1930/1865,
  2919. bottom: 16/1946
  2920. }
  2921. },
  2922. back: {
  2923. height: math.unit(6, "feet"),
  2924. weight: math.unit(75, "kg"),
  2925. name: "Back",
  2926. image: {
  2927. source: "./media/characters/shingo/back.svg",
  2928. extra: 1922/1852,
  2929. bottom: 16/1938
  2930. }
  2931. },
  2932. frontDressed: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(150, "lb"),
  2935. name: "Front-dressed",
  2936. image: {
  2937. source: "./media/characters/shingo/front-dressed.svg",
  2938. extra: 1900/1825,
  2939. bottom: 82/1982
  2940. }
  2941. },
  2942. paw: {
  2943. height: math.unit(1.29, "feet"),
  2944. name: "Paw",
  2945. image: {
  2946. source: "./media/characters/shingo/paw.svg"
  2947. }
  2948. },
  2949. hand: {
  2950. height: math.unit(1.07, "feet"),
  2951. name: "Hand",
  2952. image: {
  2953. source: "./media/characters/shingo/hand.svg"
  2954. }
  2955. },
  2956. frontAlt: {
  2957. height: math.unit(6, "feet"),
  2958. weight: math.unit(75, "kg"),
  2959. name: "Front (Alt)",
  2960. image: {
  2961. source: "./media/characters/shingo/front-alt.svg",
  2962. extra: 3511 / 3338,
  2963. bottom: 0.005
  2964. }
  2965. },
  2966. frontAlt2: {
  2967. height: math.unit(6, "feet"),
  2968. weight: math.unit(75, "kg"),
  2969. name: "Front (Alt 2)",
  2970. image: {
  2971. source: "./media/characters/shingo/front-alt-2.svg",
  2972. extra: 706/681,
  2973. bottom: 11/717
  2974. }
  2975. },
  2976. pawAlt: {
  2977. height: math.unit(1, "feet"),
  2978. name: "Paw (Alt)",
  2979. image: {
  2980. source: "./media/characters/shingo/paw-alt.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Micro",
  2987. height: math.unit(4, "inches")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(6, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Macro",
  2996. height: math.unit(108, "feet")
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(1500, "feet")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3006. {
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/aigey/side.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Macro",
  3019. height: math.unit(200, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(100, "miles")
  3025. },
  3026. ]
  3027. )
  3028. )
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(5 + 5 / 12, "feet"),
  3034. weight: math.unit(75, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/natasha/front.svg",
  3038. extra: 859 / 824,
  3039. bottom: 23 / 879.6
  3040. }
  3041. },
  3042. frontNsfw: {
  3043. height: math.unit(5 + 5 / 12, "feet"),
  3044. weight: math.unit(75, "kg"),
  3045. name: "Front (NSFW)",
  3046. image: {
  3047. source: "./media/characters/natasha/front-nsfw.svg",
  3048. extra: 859 / 824,
  3049. bottom: 23 / 879.6
  3050. }
  3051. },
  3052. frontErect: {
  3053. height: math.unit(5 + 5 / 12, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front (Erect)",
  3056. image: {
  3057. source: "./media/characters/natasha/front-erect.svg",
  3058. extra: 859 / 824,
  3059. bottom: 23 / 879.6
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(5 + 5 / 12, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/natasha/back.svg",
  3068. extra: 887.9 / 852.6,
  3069. bottom: 9.7 / 896.4
  3070. }
  3071. },
  3072. backAlt: {
  3073. height: math.unit(5 + 5 / 12, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Back (Alt)",
  3076. image: {
  3077. source: "./media/characters/natasha/back-alt.svg",
  3078. extra: 1236.7 / 1192,
  3079. bottom: 22.3 / 1258.2
  3080. }
  3081. },
  3082. dick: {
  3083. height: math.unit(1.772, "feet"),
  3084. name: "Dick",
  3085. image: {
  3086. source: "./media/characters/natasha/dick.svg"
  3087. }
  3088. },
  3089. paw: {
  3090. height: math.unit(0.250, "meters"),
  3091. name: "Paw",
  3092. image: {
  3093. source: "./media/characters/natasha/paw.svg"
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(5 + 5 / 12, "feet")
  3101. },
  3102. {
  3103. name: "Large",
  3104. height: math.unit(12, "feet")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(100, "feet"),
  3109. default: true
  3110. },
  3111. {
  3112. name: "Macro+",
  3113. height: math.unit(260, "feet")
  3114. },
  3115. {
  3116. name: "Macro++",
  3117. height: math.unit(1, "mile")
  3118. },
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(6, "feet"),
  3126. weight: math.unit(75, "kg"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/malik/front.svg"
  3130. }
  3131. },
  3132. side: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/malik/side.svg",
  3138. extra: 1.1539
  3139. }
  3140. },
  3141. back: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Back",
  3145. image: {
  3146. source: "./media/characters/malik/back.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Macro",
  3153. height: math.unit(156, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro+",
  3158. height: math.unit(1188, "feet")
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(6, "feet"),
  3167. weight: math.unit(75, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/sefer/front.svg",
  3171. extra: 848 / 659,
  3172. bottom: 28.3 / 876.442
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(6, "feet"),
  3177. weight: math.unit(75, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/sefer/back.svg",
  3181. extra: 864 / 695,
  3182. bottom: 10 / 871
  3183. }
  3184. },
  3185. frontDressed: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(75, "kg"),
  3188. name: "Front (Dressed)",
  3189. image: {
  3190. source: "./media/characters/sefer/front-dressed.svg",
  3191. extra: 839 / 653,
  3192. bottom: 37.6 / 878
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(6, "feet"),
  3200. default: true
  3201. },
  3202. ]
  3203. ))
  3204. characterMakers.push(() => makeCharacter(
  3205. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3206. {
  3207. body: {
  3208. height: math.unit(2.2428, "meter"),
  3209. weight: math.unit(124.738, "kg"),
  3210. name: "Body",
  3211. image: {
  3212. extra: 1225 / 1050,
  3213. source: "./media/characters/north/front.svg"
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Micro",
  3220. height: math.unit(4, "inches")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(63, "meters")
  3225. },
  3226. {
  3227. name: "Megamacro",
  3228. height: math.unit(101, "miles"),
  3229. default: true
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3235. {
  3236. angled: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Angled",
  3240. image: {
  3241. source: "./media/characters/talan/angled-sfw.svg",
  3242. bottom: 29 / 3734
  3243. }
  3244. },
  3245. angledNsfw: {
  3246. height: math.unit(4, "meter"),
  3247. weight: math.unit(150, "kg"),
  3248. name: "Angled (NSFW)",
  3249. image: {
  3250. source: "./media/characters/talan/angled-nsfw.svg",
  3251. bottom: 29 / 3734
  3252. }
  3253. },
  3254. frontNsfw: {
  3255. height: math.unit(4, "meter"),
  3256. weight: math.unit(150, "kg"),
  3257. name: "Front (NSFW)",
  3258. image: {
  3259. source: "./media/characters/talan/front-nsfw.svg",
  3260. bottom: 29 / 3734
  3261. }
  3262. },
  3263. sideNsfw: {
  3264. height: math.unit(4, "meter"),
  3265. weight: math.unit(150, "kg"),
  3266. name: "Side (NSFW)",
  3267. image: {
  3268. source: "./media/characters/talan/side-nsfw.svg",
  3269. bottom: 29 / 3734
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(4, "meter"),
  3274. weight: math.unit(150, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/talan/back.svg"
  3278. }
  3279. },
  3280. dickBottom: {
  3281. height: math.unit(0.621, "meter"),
  3282. name: "Dick (Bottom)",
  3283. image: {
  3284. source: "./media/characters/talan/dick-bottom.svg"
  3285. }
  3286. },
  3287. dickTop: {
  3288. height: math.unit(0.621, "meter"),
  3289. name: "Dick (Top)",
  3290. image: {
  3291. source: "./media/characters/talan/dick-top.svg"
  3292. }
  3293. },
  3294. dickSide: {
  3295. height: math.unit(0.305, "meter"),
  3296. name: "Dick (Side)",
  3297. image: {
  3298. source: "./media/characters/talan/dick-side.svg"
  3299. }
  3300. },
  3301. dickFront: {
  3302. height: math.unit(0.305, "meter"),
  3303. name: "Dick (Front)",
  3304. image: {
  3305. source: "./media/characters/talan/dick-front.svg"
  3306. }
  3307. },
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(4, "meters")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "meters")
  3317. },
  3318. {
  3319. name: "Megamacro",
  3320. height: math.unit(2, "miles"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Gigamacro",
  3325. height: math.unit(5000, "miles")
  3326. },
  3327. {
  3328. name: "Teramacro",
  3329. height: math.unit(100, "parsecs")
  3330. }
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front.svg"
  3342. }
  3343. },
  3344. frontAlt: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(90, "kg"),
  3347. name: "Front (alt)",
  3348. image: {
  3349. source: "./media/characters/gael'rathus/front-alt.svg"
  3350. }
  3351. },
  3352. frontAlt2: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(90, "kg"),
  3355. name: "Front (alt 2)",
  3356. image: {
  3357. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(9, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Large",
  3369. height: math.unit(25, "feet")
  3370. },
  3371. {
  3372. name: "Macro",
  3373. height: math.unit(0.25, "miles")
  3374. },
  3375. {
  3376. name: "Megamacro",
  3377. height: math.unit(10, "miles")
  3378. }
  3379. ]
  3380. ))
  3381. characterMakers.push(() => makeCharacter(
  3382. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3383. {
  3384. side: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(140, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/sosha/side.svg",
  3390. bottom: 0.042
  3391. }
  3392. },
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(12, "feet"),
  3398. default: true
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3404. {
  3405. side: {
  3406. height: math.unit(5 + 5 / 12, "feet"),
  3407. weight: math.unit(170, "kg"),
  3408. name: "Side",
  3409. image: {
  3410. source: "./media/characters/runnola/side.svg",
  3411. extra: 741 / 448,
  3412. bottom: 0.05
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Small",
  3419. height: math.unit(3, "feet")
  3420. },
  3421. {
  3422. name: "Normal",
  3423. height: math.unit(5 + 5 / 12, "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Big",
  3428. height: math.unit(10, "feet")
  3429. },
  3430. ]
  3431. ))
  3432. characterMakers.push(() => makeCharacter(
  3433. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3434. {
  3435. front: {
  3436. height: math.unit(2, "meter"),
  3437. weight: math.unit(50, "kg"),
  3438. name: "Front",
  3439. image: {
  3440. source: "./media/characters/kurribird/front.svg",
  3441. bottom: 0.015
  3442. }
  3443. },
  3444. frontAlt: {
  3445. height: math.unit(1.5, "meter"),
  3446. weight: math.unit(50, "kg"),
  3447. name: "Front (Alt)",
  3448. image: {
  3449. source: "./media/characters/kurribird/front-alt.svg",
  3450. extra: 1.45
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Normal",
  3457. height: math.unit(7, "feet")
  3458. },
  3459. {
  3460. name: "Big",
  3461. height: math.unit(12, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(1500, "feet")
  3467. },
  3468. {
  3469. name: "Megamacro",
  3470. height: math.unit(2, "miles")
  3471. }
  3472. ]
  3473. ))
  3474. characterMakers.push(() => makeCharacter(
  3475. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3476. {
  3477. front: {
  3478. height: math.unit(2, "meter"),
  3479. weight: math.unit(80, "kg"),
  3480. name: "Front",
  3481. image: {
  3482. source: "./media/characters/elbial/front.svg",
  3483. extra: 1643 / 1556,
  3484. bottom: 60.2 / 1696
  3485. }
  3486. },
  3487. side: {
  3488. height: math.unit(2, "meter"),
  3489. weight: math.unit(80, "kg"),
  3490. name: "Side",
  3491. image: {
  3492. source: "./media/characters/elbial/side.svg",
  3493. extra: 1601/1528,
  3494. bottom: 97/1698
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(80, "kg"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/elbial/back.svg",
  3503. extra: 1653/1569,
  3504. bottom: 20/1673
  3505. }
  3506. },
  3507. frontDressed: {
  3508. height: math.unit(2, "meter"),
  3509. weight: math.unit(80, "kg"),
  3510. name: "Front (Dressed)",
  3511. image: {
  3512. source: "./media/characters/elbial/front-dressed.svg",
  3513. extra: 1638/1569,
  3514. bottom: 70/1708
  3515. }
  3516. },
  3517. genitals: {
  3518. height: math.unit(2 / 3.367, "meter"),
  3519. name: "Genitals",
  3520. image: {
  3521. source: "./media/characters/elbial/genitals.svg"
  3522. }
  3523. },
  3524. },
  3525. [
  3526. {
  3527. name: "Large",
  3528. height: math.unit(100, "feet")
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(500, "feet"),
  3533. default: true
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(10, "miles")
  3538. },
  3539. {
  3540. name: "Gigamacro",
  3541. height: math.unit(25000, "miles")
  3542. },
  3543. {
  3544. name: "Full-Size",
  3545. height: math.unit(8000000, "gigaparsecs")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(2, "meter"),
  3554. weight: math.unit(60, "kg"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/noah/front.svg"
  3558. }
  3559. },
  3560. talons: {
  3561. height: math.unit(0.315, "meter"),
  3562. name: "Talons",
  3563. image: {
  3564. source: "./media/characters/noah/talons.svg"
  3565. }
  3566. }
  3567. },
  3568. [
  3569. {
  3570. name: "Large",
  3571. height: math.unit(50, "feet")
  3572. },
  3573. {
  3574. name: "Macro",
  3575. height: math.unit(750, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Megamacro",
  3580. height: math.unit(50, "miles")
  3581. },
  3582. {
  3583. name: "Gigamacro",
  3584. height: math.unit(100000, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(3000000000, "miles")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/natalya/front.svg"
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/natalya/back.svg"
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Normal",
  3615. height: math.unit(150, "feet"),
  3616. default: true
  3617. },
  3618. {
  3619. name: "Megamacro",
  3620. height: math.unit(5, "miles")
  3621. },
  3622. {
  3623. name: "Full-Size",
  3624. height: math.unit(600, "kiloparsecs")
  3625. }
  3626. ]
  3627. ))
  3628. characterMakers.push(() => makeCharacter(
  3629. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3630. {
  3631. front: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Front",
  3635. image: {
  3636. source: "./media/characters/erestrebah/front.svg",
  3637. extra: 1262/1162,
  3638. bottom: 96/1358
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(50, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/erestrebah/back.svg",
  3647. extra: 1257/1139,
  3648. bottom: 13/1270
  3649. }
  3650. },
  3651. wing: {
  3652. height: math.unit(2, "meter"),
  3653. weight: math.unit(50, "kg"),
  3654. name: "Wing",
  3655. image: {
  3656. source: "./media/characters/erestrebah/wing.svg",
  3657. extra: 1262/1162,
  3658. bottom: 96/1358
  3659. }
  3660. },
  3661. mouth: {
  3662. height: math.unit(0.39, "feet"),
  3663. name: "Mouth",
  3664. image: {
  3665. source: "./media/characters/erestrebah/mouth.svg"
  3666. }
  3667. }
  3668. },
  3669. [
  3670. {
  3671. name: "Normal",
  3672. height: math.unit(10, "feet")
  3673. },
  3674. {
  3675. name: "Large",
  3676. height: math.unit(50, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(300, "feet")
  3682. },
  3683. {
  3684. name: "Macro+",
  3685. height: math.unit(750, "feet")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(3, "miles")
  3690. }
  3691. ]
  3692. ))
  3693. characterMakers.push(() => makeCharacter(
  3694. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3695. {
  3696. front: {
  3697. height: math.unit(2, "meter"),
  3698. weight: math.unit(80, "kg"),
  3699. name: "Front",
  3700. image: {
  3701. source: "./media/characters/jennifer/front.svg",
  3702. bottom: 0.11,
  3703. extra: 1.16
  3704. }
  3705. },
  3706. frontAlt: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(80, "kg"),
  3709. name: "Front (Alt)",
  3710. image: {
  3711. source: "./media/characters/jennifer/front-alt.svg"
  3712. }
  3713. }
  3714. },
  3715. [
  3716. {
  3717. name: "Canon Height",
  3718. height: math.unit(120, "feet"),
  3719. default: true
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(300, "feet")
  3724. },
  3725. {
  3726. name: "Megamacro",
  3727. height: math.unit(20000, "feet")
  3728. }
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(50, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/kalista/front.svg",
  3740. extra: 1314/1145,
  3741. bottom: 101/1415
  3742. }
  3743. },
  3744. back: {
  3745. height: math.unit(2, "meter"),
  3746. weight: math.unit(50, "kg"),
  3747. name: "Back",
  3748. image: {
  3749. source: "./media/characters/kalista/back.svg",
  3750. extra: 1366 / 1156,
  3751. bottom: 33.9 / 1362.78
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Uncomfortably Small",
  3758. height: math.unit(10, "feet")
  3759. },
  3760. {
  3761. name: "Small",
  3762. height: math.unit(30, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(100, "feet"),
  3767. default: true
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(2000, "feet")
  3772. },
  3773. {
  3774. name: "True Form",
  3775. height: math.unit(8924, "miles")
  3776. }
  3777. ]
  3778. ))
  3779. characterMakers.push(() => makeCharacter(
  3780. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3781. {
  3782. front: {
  3783. height: math.unit(2, "meter"),
  3784. weight: math.unit(120, "kg"),
  3785. name: "Front",
  3786. image: {
  3787. source: "./media/characters/ggv/front.svg"
  3788. }
  3789. },
  3790. side: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(120, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/ggv/side.svg"
  3796. }
  3797. }
  3798. },
  3799. [
  3800. {
  3801. name: "Extremely Puny",
  3802. height: math.unit(9 + 5 / 12, "feet")
  3803. },
  3804. {
  3805. name: "Horribly Small",
  3806. height: math.unit(47.7, "miles"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Reasonably Sized",
  3811. height: math.unit(25000, "parsecs")
  3812. },
  3813. {
  3814. name: "Slightly Uncompressed",
  3815. height: math.unit(7.77e31, "parsecs")
  3816. },
  3817. {
  3818. name: "Omniversal",
  3819. height: math.unit(1e300, "meters")
  3820. },
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(2, "meter"),
  3828. weight: math.unit(75, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/napalm/front.svg"
  3832. }
  3833. },
  3834. back: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(75, "lb"),
  3837. name: "Back",
  3838. image: {
  3839. source: "./media/characters/napalm/back.svg"
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Standard",
  3846. height: math.unit(55, "feet"),
  3847. default: true
  3848. }
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(7 + 5 / 6, "feet"),
  3856. weight: math.unit(325, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/asana/front.svg",
  3860. extra: 1133 / 1060,
  3861. bottom: 15.2 / 1148.6
  3862. }
  3863. },
  3864. back: {
  3865. height: math.unit(7 + 5 / 6, "feet"),
  3866. weight: math.unit(325, "lb"),
  3867. name: "Back",
  3868. image: {
  3869. source: "./media/characters/asana/back.svg",
  3870. extra: 1114 / 1043,
  3871. bottom: 5 / 1120
  3872. }
  3873. },
  3874. dressedDark: {
  3875. height: math.unit(7 + 5 / 6, "feet"),
  3876. weight: math.unit(325, "lb"),
  3877. name: "Dressed (Dark)",
  3878. image: {
  3879. source: "./media/characters/asana/dressed-dark.svg",
  3880. extra: 1133 / 1060,
  3881. bottom: 15.2 / 1148.6
  3882. }
  3883. },
  3884. dressedLight: {
  3885. height: math.unit(7 + 5 / 6, "feet"),
  3886. weight: math.unit(325, "lb"),
  3887. name: "Dressed (Light)",
  3888. image: {
  3889. source: "./media/characters/asana/dressed-light.svg",
  3890. extra: 1133 / 1060,
  3891. bottom: 15.2 / 1148.6
  3892. }
  3893. },
  3894. },
  3895. [
  3896. {
  3897. name: "Standard",
  3898. height: math.unit(7 + 5 / 6, "feet"),
  3899. default: true
  3900. },
  3901. {
  3902. name: "Large",
  3903. height: math.unit(10, "meters")
  3904. },
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(2500, "meters")
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(5e6, "meters")
  3912. },
  3913. {
  3914. name: "Examacro",
  3915. height: math.unit(5e12, "lightyears")
  3916. },
  3917. {
  3918. name: "Max Size",
  3919. height: math.unit(1e31, "lightyears")
  3920. }
  3921. ]
  3922. ))
  3923. characterMakers.push(() => makeCharacter(
  3924. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3925. {
  3926. front: {
  3927. height: math.unit(2, "meter"),
  3928. weight: math.unit(60, "kg"),
  3929. name: "Front",
  3930. image: {
  3931. source: "./media/characters/ebony/front.svg",
  3932. bottom: 0.03,
  3933. extra: 1045 / 810 + 0.03
  3934. }
  3935. },
  3936. side: {
  3937. height: math.unit(2, "meter"),
  3938. weight: math.unit(60, "kg"),
  3939. name: "Side",
  3940. image: {
  3941. source: "./media/characters/ebony/side.svg",
  3942. bottom: 0.03,
  3943. extra: 1045 / 810 + 0.03
  3944. }
  3945. },
  3946. back: {
  3947. height: math.unit(2, "meter"),
  3948. weight: math.unit(60, "kg"),
  3949. name: "Back",
  3950. image: {
  3951. source: "./media/characters/ebony/back.svg",
  3952. bottom: 0.01,
  3953. extra: 1045 / 810 + 0.01
  3954. }
  3955. },
  3956. },
  3957. [
  3958. // TODO check why I did this lol
  3959. {
  3960. name: "Standard",
  3961. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(200, "feet")
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(13000, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(175, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/mountain/front.svg",
  3983. extra: 972 / 955,
  3984. bottom: 64 / 1036.6
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(175, "lb"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/mountain/back.svg",
  3993. extra: 970 / 950,
  3994. bottom: 28.25 / 999
  3995. }
  3996. },
  3997. },
  3998. [
  3999. {
  4000. name: "Large",
  4001. height: math.unit(20, "meters")
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(300, "meters")
  4006. },
  4007. {
  4008. name: "Gigamacro",
  4009. height: math.unit(10000, "km"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Examacro",
  4014. height: math.unit(10e9, "lightyears")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(500, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/rick/front.svg"
  4027. }
  4028. }
  4029. },
  4030. [
  4031. {
  4032. name: "Normal",
  4033. height: math.unit(8, "feet"),
  4034. default: true
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(5, "km")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4044. {
  4045. front: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Front",
  4049. image: {
  4050. source: "./media/characters/ona/front.svg"
  4051. }
  4052. },
  4053. frontAlt: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(120, "lb"),
  4056. name: "Front (Alt)",
  4057. image: {
  4058. source: "./media/characters/ona/front-alt.svg"
  4059. }
  4060. },
  4061. back: {
  4062. height: math.unit(8, "feet"),
  4063. weight: math.unit(120, "lb"),
  4064. name: "Back",
  4065. image: {
  4066. source: "./media/characters/ona/back.svg"
  4067. }
  4068. },
  4069. foot: {
  4070. height: math.unit(1.1, "feet"),
  4071. name: "Foot",
  4072. image: {
  4073. source: "./media/characters/ona/foot.svg"
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Megamacro",
  4080. height: math.unit(70, "km"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Gigamacro",
  4085. height: math.unit(681818, "miles")
  4086. },
  4087. {
  4088. name: "Examacro",
  4089. height: math.unit(3800000, "lightyears")
  4090. },
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(12, "feet"),
  4098. weight: math.unit(3000, "lb"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/mech/front.svg",
  4102. extra: 2900 / 2770,
  4103. bottom: 110 / 3010
  4104. }
  4105. },
  4106. back: {
  4107. height: math.unit(12, "feet"),
  4108. weight: math.unit(3000, "lb"),
  4109. name: "Back",
  4110. image: {
  4111. source: "./media/characters/mech/back.svg",
  4112. extra: 3011 / 2890,
  4113. bottom: 94 / 3105
  4114. }
  4115. },
  4116. maw: {
  4117. height: math.unit(3.07, "feet"),
  4118. name: "Maw",
  4119. image: {
  4120. source: "./media/characters/mech/maw.svg"
  4121. }
  4122. },
  4123. head: {
  4124. height: math.unit(2.82, "feet"),
  4125. name: "Head",
  4126. image: {
  4127. source: "./media/characters/mech/head.svg"
  4128. }
  4129. },
  4130. dick: {
  4131. height: math.unit(1.43, "feet"),
  4132. name: "Dick",
  4133. image: {
  4134. source: "./media/characters/mech/dick.svg"
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(12, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(300, "feet"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro+",
  4150. height: math.unit(1500, "feet")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(1.3, "meter"),
  4159. weight: math.unit(30, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/gregory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(1.3, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(20, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(2.8, "meter"),
  4183. weight: math.unit(200, "kg"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/elory/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(2.8, "meter"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(38, "meter")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4204. {
  4205. front: {
  4206. height: math.unit(470, "feet"),
  4207. weight: math.unit(924, "tons"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/angelpatamon/front.svg",
  4211. }
  4212. }
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(470, "feet"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Deity Size I",
  4222. height: math.unit(28651.2, "km")
  4223. },
  4224. {
  4225. name: "Deity Size II",
  4226. height: math.unit(171907.2, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4232. {
  4233. side: {
  4234. height: math.unit(7.2, "meter"),
  4235. weight: math.unit(8.2, "tons"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/cryae/side.svg",
  4239. extra: 3500 / 1500
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(7.2, "meter"),
  4247. default: true
  4248. }
  4249. ]
  4250. ))
  4251. characterMakers.push(() => makeCharacter(
  4252. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4253. {
  4254. front: {
  4255. height: math.unit(6, "feet"),
  4256. weight: math.unit(175, "lb"),
  4257. name: "Front",
  4258. image: {
  4259. source: "./media/characters/xera/front.svg",
  4260. extra: 2377 / 1972,
  4261. bottom: 75.5 / 2452
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(6, "feet"),
  4266. weight: math.unit(175, "lb"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/xera/side.svg",
  4270. extra: 2345 / 2019,
  4271. bottom: 39.7 / 2384
  4272. }
  4273. },
  4274. back: {
  4275. height: math.unit(6, "feet"),
  4276. weight: math.unit(175, "lb"),
  4277. name: "Back",
  4278. image: {
  4279. source: "./media/characters/xera/back.svg",
  4280. extra: 2095 / 1984,
  4281. bottom: 67 / 2166
  4282. }
  4283. },
  4284. },
  4285. [
  4286. {
  4287. name: "Small",
  4288. height: math.unit(10, "feet")
  4289. },
  4290. {
  4291. name: "Macro",
  4292. height: math.unit(500, "meters"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Macro+",
  4297. height: math.unit(10, "km")
  4298. },
  4299. {
  4300. name: "Gigamacro",
  4301. height: math.unit(25000, "km")
  4302. },
  4303. {
  4304. name: "Teramacro",
  4305. height: math.unit(3e6, "km")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(175, "lb"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/nebula/front.svg",
  4318. extra: 2566 / 2362,
  4319. bottom: 81 / 2644
  4320. }
  4321. }
  4322. },
  4323. [
  4324. {
  4325. name: "Small",
  4326. height: math.unit(4.5, "meters")
  4327. },
  4328. {
  4329. name: "Macro",
  4330. height: math.unit(1500, "meters"),
  4331. default: true
  4332. },
  4333. {
  4334. name: "Megamacro",
  4335. height: math.unit(150, "km")
  4336. },
  4337. {
  4338. name: "Gigamacro",
  4339. height: math.unit(27000, "km")
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4345. {
  4346. front: {
  4347. height: math.unit(6, "feet"),
  4348. weight: math.unit(225, "lb"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/abysgar/front.svg"
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1250, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(125, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(26000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(180, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/yakuz/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1500, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(200, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(100000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(175, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mirova/front.svg",
  4416. extra: 3334 / 3071,
  4417. bottom: 42 / 3375.6
  4418. }
  4419. }
  4420. },
  4421. [
  4422. {
  4423. name: "Small",
  4424. height: math.unit(5, "meters")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(900, "meters"),
  4429. default: true
  4430. },
  4431. {
  4432. name: "Megamacro",
  4433. height: math.unit(135, "km")
  4434. },
  4435. {
  4436. name: "Gigamacro",
  4437. height: math.unit(20000, "km")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4443. {
  4444. side: {
  4445. height: math.unit(28.35, "feet"),
  4446. weight: math.unit(99.75, "tons"),
  4447. name: "Side",
  4448. image: {
  4449. source: "./media/characters/asana-mech/side.svg",
  4450. extra: 923 / 699,
  4451. bottom: 50 / 975
  4452. }
  4453. },
  4454. chaingun: {
  4455. height: math.unit(7, "feet"),
  4456. weight: math.unit(2400, "lb"),
  4457. name: "Chaingun",
  4458. image: {
  4459. source: "./media/characters/asana-mech/chaingun.svg"
  4460. }
  4461. },
  4462. laser: {
  4463. height: math.unit(7.12, "feet"),
  4464. weight: math.unit(2000, "lb"),
  4465. name: "Laser",
  4466. image: {
  4467. source: "./media/characters/asana-mech/laser.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Normal",
  4474. height: math.unit(28.35, "feet"),
  4475. default: true
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(2500, "feet")
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(25, "miles")
  4484. },
  4485. {
  4486. name: "Examacro",
  4487. height: math.unit(6e8, "lightyears")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5, "meters"),
  4496. weight: math.unit(1000, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/asche/front.svg",
  4500. extra: 1258 / 1190,
  4501. bottom: 47 / 1305
  4502. }
  4503. },
  4504. frontUnderwear: {
  4505. height: math.unit(5, "meters"),
  4506. weight: math.unit(1000, "kg"),
  4507. name: "Front (Underwear)",
  4508. image: {
  4509. source: "./media/characters/asche/front-underwear.svg",
  4510. extra: 1258 / 1190,
  4511. bottom: 47 / 1305
  4512. }
  4513. },
  4514. frontDressed: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Front (Dressed)",
  4518. image: {
  4519. source: "./media/characters/asche/front-dressed.svg",
  4520. extra: 1258 / 1190,
  4521. bottom: 47 / 1305
  4522. }
  4523. },
  4524. frontArmor: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Front (Armored)",
  4528. image: {
  4529. source: "./media/characters/asche/front-armored.svg",
  4530. extra: 1374 / 1308,
  4531. bottom: 23 / 1397
  4532. }
  4533. },
  4534. mp724: {
  4535. height: math.unit(0.96, "meters"),
  4536. weight: math.unit(38, "kg"),
  4537. name: "H&K MP724",
  4538. image: {
  4539. source: "./media/characters/asche/h&k-mp724.svg"
  4540. }
  4541. },
  4542. side: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Side",
  4546. image: {
  4547. source: "./media/characters/asche/side.svg",
  4548. extra: 1717 / 1609,
  4549. bottom: 0.005
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/asche/back.svg",
  4558. extra: 1570 / 1501
  4559. }
  4560. },
  4561. },
  4562. [
  4563. {
  4564. name: "DEFCON 5",
  4565. height: math.unit(5, "meters")
  4566. },
  4567. {
  4568. name: "DEFCON 4",
  4569. height: math.unit(500, "meters"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "DEFCON 3",
  4574. height: math.unit(5, "km")
  4575. },
  4576. {
  4577. name: "DEFCON 2",
  4578. height: math.unit(500, "km")
  4579. },
  4580. {
  4581. name: "DEFCON 1",
  4582. height: math.unit(500000, "km")
  4583. },
  4584. {
  4585. name: "DEFCON 0",
  4586. height: math.unit(3, "gigaparsecs")
  4587. },
  4588. ]
  4589. ))
  4590. characterMakers.push(() => makeCharacter(
  4591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4592. {
  4593. front: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front",
  4597. image: {
  4598. source: "./media/characters/gale/front.svg"
  4599. }
  4600. },
  4601. frontAlt1: {
  4602. height: math.unit(2, "meters"),
  4603. weight: math.unit(76, "kg"),
  4604. name: "Front (Alt 1)",
  4605. image: {
  4606. source: "./media/characters/gale/front-alt-1.svg"
  4607. }
  4608. },
  4609. frontAlt2: {
  4610. height: math.unit(2, "meters"),
  4611. weight: math.unit(76, "kg"),
  4612. name: "Front (Alt 2)",
  4613. image: {
  4614. source: "./media/characters/gale/front-alt-2.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(7, "feet")
  4622. },
  4623. {
  4624. name: "Macro",
  4625. height: math.unit(150, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(300, "feet")
  4631. },
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4636. {
  4637. front: {
  4638. height: math.unit(5 + 10/12, "feet"),
  4639. weight: math.unit(67, "kg"),
  4640. name: "Front",
  4641. image: {
  4642. source: "./media/characters/draylen/front.svg",
  4643. extra: 832/777,
  4644. bottom: 85/917
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 10/12, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(150, "feet"),
  4656. default: true
  4657. }
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(7 + 9 / 12, "feet"),
  4665. weight: math.unit(379, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/chez/front.svg"
  4669. }
  4670. },
  4671. side: {
  4672. height: math.unit(7 + 9 / 12, "feet"),
  4673. weight: math.unit(379, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/chez/side.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(7 + 9 / 12, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "God King",
  4688. height: math.unit(9750000, "meters")
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(6, "feet"),
  4697. weight: math.unit(275, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/kaylum/front.svg",
  4701. bottom: 0.01,
  4702. extra: 1166 / 1031
  4703. }
  4704. },
  4705. frontWingless: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(275, "lbs"),
  4708. name: "Front (Wingless)",
  4709. image: {
  4710. source: "./media/characters/kaylum/front-wingless.svg",
  4711. bottom: 0.01,
  4712. extra: 1117 / 1031
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(3.05, "meters")
  4720. },
  4721. {
  4722. name: "Master",
  4723. height: math.unit(5.5, "meters")
  4724. },
  4725. {
  4726. name: "Rampage",
  4727. height: math.unit(19, "meters")
  4728. },
  4729. {
  4730. name: "Macro Lite",
  4731. height: math.unit(37, "meters")
  4732. },
  4733. {
  4734. name: "Hyper Predator",
  4735. height: math.unit(61, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(138, "meters"),
  4740. default: true
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(150, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/geta/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Micro",
  4759. height: math.unit(3, "inches"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Normal",
  4764. height: math.unit(5 + 5 / 12, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/tyrnn/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Main Height",
  4783. height: math.unit(355, "feet"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Fave. Height",
  4788. height: math.unit(2400, "feet")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(300, "lbs"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/appledectomy/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(2500, "feet")
  4808. },
  4809. {
  4810. name: "Megamacro",
  4811. height: math.unit(50, "miles"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(5000, "miles")
  4817. },
  4818. {
  4819. name: "Teramacro",
  4820. height: math.unit(250000, "miles")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(200, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/vulpes/front.svg",
  4833. extra: 573 / 543,
  4834. bottom: 0.033
  4835. }
  4836. },
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(200, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/vulpes/side.svg",
  4843. extra: 577 / 549,
  4844. bottom: 11 / 588
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(200, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/vulpes/back.svg",
  4853. extra: 573 / 549,
  4854. bottom: 20 / 593
  4855. }
  4856. },
  4857. feet: {
  4858. height: math.unit(1.276, "feet"),
  4859. name: "Feet",
  4860. image: {
  4861. source: "./media/characters/vulpes/feet.svg"
  4862. }
  4863. },
  4864. maw: {
  4865. height: math.unit(1.18, "feet"),
  4866. name: "Maw",
  4867. image: {
  4868. source: "./media/characters/vulpes/maw.svg"
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Micro",
  4875. height: math.unit(2, "inches")
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(6.3, "feet")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(850, "feet")
  4884. },
  4885. {
  4886. name: "Megamacro",
  4887. height: math.unit(7500, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(570000, "miles")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/front.svg"
  4905. }
  4906. },
  4907. side: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(210, "lbs"),
  4910. name: "Side",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/side.svg"
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(210, "lbs"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/rain-fallen/back.svg"
  4921. }
  4922. },
  4923. feral: {
  4924. height: math.unit(9, "feet"),
  4925. weight: math.unit(700, "lbs"),
  4926. name: "Feral",
  4927. image: {
  4928. source: "./media/characters/rain-fallen/feral.svg"
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Meddling with Mortals",
  4935. height: math.unit(8 + 8/12, "feet")
  4936. },
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(5, "meter")
  4940. },
  4941. {
  4942. name: "Macro",
  4943. height: math.unit(150, "meter"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Megamacro",
  4948. height: math.unit(278e6, "meter")
  4949. },
  4950. {
  4951. name: "Gigamacro",
  4952. height: math.unit(2e9, "meter")
  4953. },
  4954. {
  4955. name: "Teramacro",
  4956. height: math.unit(8e12, "meter")
  4957. },
  4958. {
  4959. name: "Devourer",
  4960. height: math.unit(14, "zettameters")
  4961. },
  4962. {
  4963. name: "Scarlet King",
  4964. height: math.unit(18, "yottameters")
  4965. },
  4966. {
  4967. name: "Void",
  4968. height: math.unit(1e88, "yottameters")
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4974. {
  4975. standing: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(180, "lbs"),
  4978. name: "Standing",
  4979. image: {
  4980. source: "./media/characters/zaakira/standing.svg",
  4981. extra: 1599/1504,
  4982. bottom: 39/1638
  4983. }
  4984. },
  4985. laying: {
  4986. height: math.unit(3, "feet"),
  4987. weight: math.unit(180, "lbs"),
  4988. name: "Laying",
  4989. image: {
  4990. source: "./media/characters/zaakira/laying.svg"
  4991. }
  4992. },
  4993. },
  4994. [
  4995. {
  4996. name: "Normal",
  4997. height: math.unit(12, "feet")
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(279, "feet"),
  5002. default: true
  5003. }
  5004. ]
  5005. ))
  5006. characterMakers.push(() => makeCharacter(
  5007. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5008. {
  5009. femSfw: {
  5010. height: math.unit(8, "feet"),
  5011. weight: math.unit(350, "lb"),
  5012. name: "Fem",
  5013. image: {
  5014. source: "./media/characters/sigvald/fem-sfw.svg",
  5015. extra: 182 / 164,
  5016. bottom: 8.7 / 190.5
  5017. }
  5018. },
  5019. femNsfw: {
  5020. height: math.unit(8, "feet"),
  5021. weight: math.unit(350, "lb"),
  5022. name: "Fem (NSFW)",
  5023. image: {
  5024. source: "./media/characters/sigvald/fem-nsfw.svg",
  5025. extra: 182 / 164,
  5026. bottom: 8.7 / 190.5
  5027. }
  5028. },
  5029. maleNsfw: {
  5030. height: math.unit(8, "feet"),
  5031. weight: math.unit(350, "lb"),
  5032. name: "Male (NSFW)",
  5033. image: {
  5034. source: "./media/characters/sigvald/male-nsfw.svg",
  5035. extra: 182 / 164,
  5036. bottom: 8.7 / 190.5
  5037. }
  5038. },
  5039. hermNsfw: {
  5040. height: math.unit(8, "feet"),
  5041. weight: math.unit(350, "lb"),
  5042. name: "Herm (NSFW)",
  5043. image: {
  5044. source: "./media/characters/sigvald/herm-nsfw.svg",
  5045. extra: 182 / 164,
  5046. bottom: 8.7 / 190.5
  5047. }
  5048. },
  5049. dick: {
  5050. height: math.unit(2.36, "feet"),
  5051. name: "Dick",
  5052. image: {
  5053. source: "./media/characters/sigvald/dick.svg"
  5054. }
  5055. },
  5056. eye: {
  5057. height: math.unit(0.31, "feet"),
  5058. name: "Eye",
  5059. image: {
  5060. source: "./media/characters/sigvald/eye.svg"
  5061. }
  5062. },
  5063. mouth: {
  5064. height: math.unit(0.92, "feet"),
  5065. name: "Mouth",
  5066. image: {
  5067. source: "./media/characters/sigvald/mouth.svg"
  5068. }
  5069. },
  5070. paws: {
  5071. height: math.unit(2.2, "feet"),
  5072. name: "Paws",
  5073. image: {
  5074. source: "./media/characters/sigvald/paws.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Normal",
  5081. height: math.unit(8, "feet")
  5082. },
  5083. {
  5084. name: "Large",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Larger",
  5089. height: math.unit(20, "feet")
  5090. },
  5091. {
  5092. name: "Macro",
  5093. height: math.unit(150, "feet")
  5094. },
  5095. {
  5096. name: "Macro+",
  5097. height: math.unit(200, "feet"),
  5098. default: true
  5099. },
  5100. ]
  5101. ))
  5102. characterMakers.push(() => makeCharacter(
  5103. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5104. {
  5105. side: {
  5106. height: math.unit(12, "feet"),
  5107. weight: math.unit(2000, "kg"),
  5108. name: "Side",
  5109. image: {
  5110. source: "./media/characters/scott/side.svg",
  5111. extra: 754 / 724,
  5112. bottom: 0.069
  5113. }
  5114. },
  5115. upright: {
  5116. height: math.unit(12, "feet"),
  5117. weight: math.unit(2000, "kg"),
  5118. name: "Upright",
  5119. image: {
  5120. source: "./media/characters/scott/upright.svg",
  5121. extra: 3881 / 3722,
  5122. bottom: 0.05
  5123. }
  5124. },
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(12, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5136. {
  5137. side: {
  5138. height: math.unit(8, "meters"),
  5139. weight: math.unit(84755, "lbs"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/tobias/side.svg",
  5143. extra: 1474 / 1096,
  5144. bottom: 38.9 / 1513.1235
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(8, "meters"),
  5152. default: true
  5153. },
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5158. {
  5159. front: {
  5160. height: math.unit(5.5, "feet"),
  5161. weight: math.unit(400, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/kieran/front.svg",
  5165. extra: 2694 / 2364,
  5166. bottom: 217 / 2908
  5167. }
  5168. },
  5169. side: {
  5170. height: math.unit(5.5, "feet"),
  5171. weight: math.unit(400, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/kieran/side.svg",
  5175. extra: 875 / 777,
  5176. bottom: 84.6 / 959
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(5.5, "feet"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5190. {
  5191. side: {
  5192. height: math.unit(2, "meters"),
  5193. weight: math.unit(70, "kg"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/sanya/side.svg",
  5197. bottom: 0.02,
  5198. extra: 1.02
  5199. }
  5200. },
  5201. },
  5202. [
  5203. {
  5204. name: "Small",
  5205. height: math.unit(2, "meters")
  5206. },
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(3, "meters")
  5210. },
  5211. {
  5212. name: "Macro",
  5213. height: math.unit(16, "meters"),
  5214. default: true
  5215. },
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(2, "meters"),
  5223. weight: math.unit(120, "kg"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/miranda/front.svg",
  5227. extra: 195 / 185,
  5228. bottom: 10.9 / 206.5
  5229. }
  5230. },
  5231. back: {
  5232. height: math.unit(2, "meters"),
  5233. weight: math.unit(120, "kg"),
  5234. name: "Back",
  5235. image: {
  5236. source: "./media/characters/miranda/back.svg",
  5237. extra: 201 / 193,
  5238. bottom: 2.3 / 203.7
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(10, "feet"),
  5246. default: true
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "James", species: ["deer"], tags: ["anthro"] },
  5252. {
  5253. side: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(100, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/james/front.svg",
  5259. extra: 10 / 8.5
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8.5, "feet"),
  5267. default: true
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5273. {
  5274. side: {
  5275. height: math.unit(9.5, "feet"),
  5276. weight: math.unit(2500, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/heather/side.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(9.5, "feet"),
  5287. default: true
  5288. }
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5293. {
  5294. side: {
  5295. height: math.unit(6.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Side",
  5298. image: {
  5299. source: "./media/characters/lukas/side.svg",
  5300. extra: 7.25 / 6.5
  5301. }
  5302. },
  5303. },
  5304. [
  5305. {
  5306. name: "Normal",
  5307. height: math.unit(6.5, "feet"),
  5308. default: true
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5314. {
  5315. side: {
  5316. height: math.unit(5, "feet"),
  5317. weight: math.unit(3000, "lbs"),
  5318. name: "Side",
  5319. image: {
  5320. source: "./media/characters/louise/side.svg"
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(5, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5334. {
  5335. side: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(150, "lbs"),
  5338. name: "Side",
  5339. image: {
  5340. source: "./media/characters/ramona/side.svg",
  5341. extra: 871/854,
  5342. bottom: 41/912
  5343. }
  5344. },
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5.3, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(20, "stories")
  5355. },
  5356. {
  5357. name: "Macro+",
  5358. height: math.unit(50, "stories")
  5359. },
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5364. {
  5365. standing: {
  5366. height: math.unit(5.75, "feet"),
  5367. weight: math.unit(160, "lbs"),
  5368. name: "Standing",
  5369. image: {
  5370. source: "./media/characters/deerpuff/standing.svg",
  5371. extra: 682 / 624
  5372. }
  5373. },
  5374. sitting: {
  5375. height: math.unit(5.75 / 1.79, "feet"),
  5376. weight: math.unit(160, "lbs"),
  5377. name: "Sitting",
  5378. image: {
  5379. source: "./media/characters/deerpuff/sitting.svg",
  5380. bottom: 44 / 400,
  5381. extra: 1
  5382. }
  5383. },
  5384. taurLaying: {
  5385. height: math.unit(6, "feet"),
  5386. weight: math.unit(400, "lbs"),
  5387. name: "Taur (Laying)",
  5388. image: {
  5389. source: "./media/characters/deerpuff/taur-laying.svg"
  5390. }
  5391. },
  5392. },
  5393. [
  5394. {
  5395. name: "Puffball",
  5396. height: math.unit(6, "inches")
  5397. },
  5398. {
  5399. name: "Normalpuff",
  5400. height: math.unit(5.75, "feet")
  5401. },
  5402. {
  5403. name: "Macropuff",
  5404. height: math.unit(1500, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megapuff",
  5409. height: math.unit(500, "miles")
  5410. },
  5411. {
  5412. name: "Gigapuff",
  5413. height: math.unit(250000, "miles")
  5414. },
  5415. {
  5416. name: "Omegapuff",
  5417. height: math.unit(1000, "lightyears")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5423. {
  5424. stomping: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(170, "lbs"),
  5427. name: "Stomping",
  5428. image: {
  5429. source: "./media/characters/vivian/stomping.svg"
  5430. }
  5431. },
  5432. sitting: {
  5433. height: math.unit(6 / 1.75, "feet"),
  5434. weight: math.unit(170, "lbs"),
  5435. name: "Sitting",
  5436. image: {
  5437. source: "./media/characters/vivian/sitting.svg",
  5438. bottom: 1 / 6.4,
  5439. extra: 1,
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(7, "feet"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(10, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(30, "stories")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(10, "miles")
  5460. },
  5461. {
  5462. name: "Megamacro+",
  5463. height: math.unit(2750000, "meters")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(160, "lbs"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/prince/front.svg",
  5476. extra: 3400 / 3000
  5477. }
  5478. },
  5479. jumping: {
  5480. height: math.unit(6, "feet"),
  5481. weight: math.unit(160, "lbs"),
  5482. name: "Jumping",
  5483. image: {
  5484. source: "./media/characters/prince/jump.svg",
  5485. extra: 2555 / 2134
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(7.75, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Not cute",
  5497. height: math.unit(17, "feet")
  5498. },
  5499. {
  5500. name: "I said NOT",
  5501. height: math.unit(91, "feet")
  5502. },
  5503. {
  5504. name: "Please stop",
  5505. height: math.unit(560, "feet")
  5506. },
  5507. {
  5508. name: "What have you done",
  5509. height: math.unit(2200, "feet")
  5510. },
  5511. {
  5512. name: "Deer God",
  5513. height: math.unit(3.6, "miles")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5519. {
  5520. standing: {
  5521. height: math.unit(6, "feet"),
  5522. weight: math.unit(300, "lbs"),
  5523. name: "Standing",
  5524. image: {
  5525. source: "./media/characters/psymon/standing.svg",
  5526. extra: 1888 / 1810,
  5527. bottom: 0.05
  5528. }
  5529. },
  5530. slithering: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(300, "lbs"),
  5533. name: "Slithering",
  5534. image: {
  5535. source: "./media/characters/psymon/slithering.svg",
  5536. extra: 1330 / 1224
  5537. }
  5538. },
  5539. slitheringAlt: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(300, "lbs"),
  5542. name: "Slithering (Alt)",
  5543. image: {
  5544. source: "./media/characters/psymon/slithering-alt.svg",
  5545. extra: 1330 / 1224
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(11.25, "feet"),
  5553. default: true
  5554. },
  5555. {
  5556. name: "Large",
  5557. height: math.unit(27, "feet")
  5558. },
  5559. {
  5560. name: "Giant",
  5561. height: math.unit(87, "feet")
  5562. },
  5563. {
  5564. name: "Macro",
  5565. height: math.unit(365, "feet")
  5566. },
  5567. {
  5568. name: "Megamacro",
  5569. height: math.unit(3, "miles")
  5570. },
  5571. {
  5572. name: "World Serpent",
  5573. height: math.unit(8000, "miles")
  5574. },
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(180, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/daimos/front.svg",
  5586. extra: 4160 / 3897,
  5587. bottom: 0.021
  5588. }
  5589. }
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(8, "feet"),
  5595. default: true
  5596. },
  5597. {
  5598. name: "Big Dog",
  5599. height: math.unit(22, "feet")
  5600. },
  5601. {
  5602. name: "Macro",
  5603. height: math.unit(127, "feet")
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(3600, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5613. {
  5614. side: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Side",
  5618. image: {
  5619. source: "./media/characters/blake/side.svg",
  5620. extra: 1212 / 1120,
  5621. bottom: 0.05
  5622. }
  5623. },
  5624. crouched: {
  5625. height: math.unit(6 * 0.57, "feet"),
  5626. weight: math.unit(180, "lbs"),
  5627. name: "Crouched",
  5628. image: {
  5629. source: "./media/characters/blake/crouched.svg",
  5630. extra: 840 / 587,
  5631. bottom: 0.04
  5632. }
  5633. },
  5634. bent: {
  5635. height: math.unit(6 * 0.75, "feet"),
  5636. weight: math.unit(180, "lbs"),
  5637. name: "Bent",
  5638. image: {
  5639. source: "./media/characters/blake/bent.svg",
  5640. extra: 592 / 544,
  5641. bottom: 0.035
  5642. }
  5643. },
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(8 + 1 / 6, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "Big Backside",
  5653. height: math.unit(37, "feet")
  5654. },
  5655. {
  5656. name: "Subway Shredder",
  5657. height: math.unit(72, "feet")
  5658. },
  5659. {
  5660. name: "City Carver",
  5661. height: math.unit(1675, "feet")
  5662. },
  5663. {
  5664. name: "Tectonic Tweaker",
  5665. height: math.unit(2300, "miles")
  5666. },
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(180, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/guisetto/front.svg",
  5678. extra: 856 / 817,
  5679. bottom: 0.06
  5680. }
  5681. },
  5682. airborne: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(180, "lbs"),
  5685. name: "Airborne",
  5686. image: {
  5687. source: "./media/characters/guisetto/airborne.svg",
  5688. extra: 584 / 525
  5689. }
  5690. },
  5691. },
  5692. [
  5693. {
  5694. name: "Normal",
  5695. height: math.unit(10 + 11 / 12, "feet"),
  5696. default: true
  5697. },
  5698. {
  5699. name: "Large",
  5700. height: math.unit(35, "feet")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(475, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/luxor/front.svg",
  5717. extra: 2940 / 2152
  5718. }
  5719. },
  5720. back: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(180, "lbs"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/luxor/back.svg",
  5726. extra: 1083 / 960
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(5 + 5 / 6, "feet"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Lamp",
  5738. height: math.unit(50, "feet")
  5739. },
  5740. {
  5741. name: "Lämp",
  5742. height: math.unit(300, "feet")
  5743. },
  5744. {
  5745. name: "The sun is a lamp",
  5746. height: math.unit(250000, "miles")
  5747. },
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(50, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/huoyan/front.svg"
  5759. }
  5760. },
  5761. side: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(180, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/huoyan/side.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Chef",
  5773. height: math.unit(9, "feet")
  5774. },
  5775. {
  5776. name: "Normal",
  5777. height: math.unit(65, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro",
  5782. height: math.unit(780, "feet")
  5783. },
  5784. {
  5785. name: "Flaming Mountain",
  5786. height: math.unit(4.8, "miles")
  5787. },
  5788. {
  5789. name: "Celestial",
  5790. height: math.unit(765000, "miles")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(5 + 3 / 4, "feet"),
  5799. weight: math.unit(120, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/tails/front.svg"
  5803. }
  5804. }
  5805. },
  5806. [
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 3 / 4, "feet"),
  5810. default: true
  5811. }
  5812. ]
  5813. ))
  5814. characterMakers.push(() => makeCharacter(
  5815. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5816. {
  5817. front: {
  5818. height: math.unit(4, "feet"),
  5819. weight: math.unit(50, "lbs"),
  5820. name: "Front",
  5821. image: {
  5822. source: "./media/characters/rainy/front.svg"
  5823. }
  5824. }
  5825. },
  5826. [
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(800, "feet"),
  5830. default: true
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(150, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rainier/front.svg"
  5843. }
  5844. }
  5845. },
  5846. [
  5847. {
  5848. name: "Micro",
  5849. height: math.unit(2, "mm"),
  5850. default: true
  5851. }
  5852. ]
  5853. ))
  5854. characterMakers.push(() => makeCharacter(
  5855. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5856. {
  5857. front: {
  5858. height: math.unit(8 + 4/12, "feet"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/andy-renard/front.svg",
  5862. extra: 1839/1726,
  5863. bottom: 134/1973
  5864. }
  5865. },
  5866. back: {
  5867. height: math.unit(8 + 4/12, "feet"),
  5868. name: "Back",
  5869. image: {
  5870. source: "./media/characters/andy-renard/back.svg",
  5871. extra: 1838/1710,
  5872. bottom: 105/1943
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Tall",
  5879. height: math.unit(8 + 4/12, "feet")
  5880. },
  5881. {
  5882. name: "Mini Macro",
  5883. height: math.unit(15, "feet"),
  5884. default: true
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(100, "feet")
  5889. },
  5890. {
  5891. name: "Mega Macro",
  5892. height: math.unit(1000, "feet")
  5893. },
  5894. {
  5895. name: "Giga Macro",
  5896. height: math.unit(10, "miles")
  5897. },
  5898. {
  5899. name: "God Macro",
  5900. height: math.unit(1, "multiverse")
  5901. },
  5902. ]
  5903. ))
  5904. characterMakers.push(() => makeCharacter(
  5905. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5906. {
  5907. front: {
  5908. height: math.unit(6, "feet"),
  5909. weight: math.unit(210, "lbs"),
  5910. name: "Front",
  5911. image: {
  5912. source: "./media/characters/cimmaron/front-sfw.svg",
  5913. extra: 701 / 676,
  5914. bottom: 0.046
  5915. }
  5916. },
  5917. back: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Back",
  5921. image: {
  5922. source: "./media/characters/cimmaron/back-sfw.svg",
  5923. extra: 701 / 676,
  5924. bottom: 0.046
  5925. }
  5926. },
  5927. frontNsfw: {
  5928. height: math.unit(6, "feet"),
  5929. weight: math.unit(210, "lbs"),
  5930. name: "Front (NSFW)",
  5931. image: {
  5932. source: "./media/characters/cimmaron/front-nsfw.svg",
  5933. extra: 701 / 676,
  5934. bottom: 0.046
  5935. }
  5936. },
  5937. backNsfw: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(210, "lbs"),
  5940. name: "Back (NSFW)",
  5941. image: {
  5942. source: "./media/characters/cimmaron/back-nsfw.svg",
  5943. extra: 701 / 676,
  5944. bottom: 0.046
  5945. }
  5946. },
  5947. dick: {
  5948. height: math.unit(1.714, "feet"),
  5949. name: "Dick",
  5950. image: {
  5951. source: "./media/characters/cimmaron/dick.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6, "feet"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro Mayor",
  5963. height: math.unit(350, "meters")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(6, "feet"),
  5972. weight: math.unit(200, "lbs"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/akari/front.svg",
  5976. extra: 962 / 901,
  5977. bottom: 0.04
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(5, "inches"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Normal",
  5989. height: math.unit(7, "feet")
  5990. },
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(140, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/cynosura/front.svg",
  6002. extra: 896 / 847
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(140, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cynosura/back.svg",
  6011. extra: 1365 / 1250
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(4, "inches")
  6019. },
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(5.75, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Tall",
  6027. height: math.unit(10, "feet")
  6028. },
  6029. {
  6030. name: "Big",
  6031. height: math.unit(20, "feet")
  6032. },
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(50, "feet")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(13 + 2/12, "feet"),
  6044. weight: math.unit(800, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/gin/front.svg",
  6048. extra: 1312/1191,
  6049. bottom: 45/1357
  6050. }
  6051. },
  6052. mouth: {
  6053. height: math.unit(2.39 * 1.8, "feet"),
  6054. name: "Mouth",
  6055. image: {
  6056. source: "./media/characters/gin/mouth.svg"
  6057. }
  6058. },
  6059. hand: {
  6060. height: math.unit(1.57 * 2.19, "feet"),
  6061. name: "Hand",
  6062. image: {
  6063. source: "./media/characters/gin/hand.svg"
  6064. }
  6065. },
  6066. foot: {
  6067. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6068. name: "Foot",
  6069. image: {
  6070. source: "./media/characters/gin/foot.svg"
  6071. }
  6072. },
  6073. sole: {
  6074. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6075. name: "Sole",
  6076. image: {
  6077. source: "./media/characters/gin/sole.svg"
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Very Small",
  6084. height: math.unit(13 + 2 / 12, "feet")
  6085. },
  6086. {
  6087. name: "Micro",
  6088. height: math.unit(600, "miles")
  6089. },
  6090. {
  6091. name: "Regular",
  6092. height: math.unit(20, "earths"),
  6093. default: true
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(2.2, "solarradii")
  6098. },
  6099. {
  6100. name: "Teramacro",
  6101. height: math.unit(1.2, "galaxies")
  6102. },
  6103. {
  6104. name: "Omegamacro",
  6105. height: math.unit(200, "universes")
  6106. },
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(6 + 1 / 6, "feet"),
  6114. weight: math.unit(178, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/guy/front.svg"
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(6 + 1 / 6, "feet"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Large",
  6129. height: math.unit(25 + 7 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(60 + 9 / 12, "feet")
  6134. },
  6135. {
  6136. name: "Macro+",
  6137. height: math.unit(246, "feet")
  6138. },
  6139. {
  6140. name: "Macro++",
  6141. height: math.unit(878, "feet")
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(9, "feet"),
  6150. weight: math.unit(800, "lbs"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/tiberius/front.svg",
  6154. extra: 2295 / 2071
  6155. }
  6156. },
  6157. back: {
  6158. height: math.unit(9, "feet"),
  6159. weight: math.unit(800, "lbs"),
  6160. name: "Back",
  6161. image: {
  6162. source: "./media/characters/tiberius/back.svg",
  6163. extra: 2373 / 2160
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(9, "feet"),
  6171. default: true
  6172. }
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6177. {
  6178. front: {
  6179. height: math.unit(6, "feet"),
  6180. weight: math.unit(600, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/surgo/front.svg",
  6184. extra: 3591 / 2227
  6185. }
  6186. },
  6187. back: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(600, "lbs"),
  6190. name: "Back",
  6191. image: {
  6192. source: "./media/characters/surgo/back.svg",
  6193. extra: 3557 / 2228
  6194. }
  6195. },
  6196. laying: {
  6197. height: math.unit(6 * 0.85, "feet"),
  6198. weight: math.unit(600, "lbs"),
  6199. name: "Laying",
  6200. image: {
  6201. source: "./media/characters/surgo/laying.svg"
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(6, "feet"),
  6209. default: true
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6215. {
  6216. side: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(150, "lbs"),
  6219. name: "Side",
  6220. image: {
  6221. source: "./media/characters/cibus/side.svg",
  6222. extra: 800 / 400
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(6, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6236. {
  6237. front: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(240, "lbs"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/nibbles/front.svg"
  6243. }
  6244. },
  6245. side: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(240, "lbs"),
  6248. name: "Side",
  6249. image: {
  6250. source: "./media/characters/nibbles/side.svg"
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(9, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6264. {
  6265. side: {
  6266. height: math.unit(5 + 1 / 6, "feet"),
  6267. weight: math.unit(130, "lbs"),
  6268. name: "Side",
  6269. image: {
  6270. source: "./media/characters/rikky/side.svg",
  6271. extra: 851 / 801
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5 + 1 / 6, "feet")
  6279. },
  6280. {
  6281. name: "Macro",
  6282. height: math.unit(152, "feet"),
  6283. default: true
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(7, "miles")
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(370, "cm"),
  6296. weight: math.unit(350, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/malfressa/side.svg"
  6300. }
  6301. },
  6302. walking: {
  6303. height: math.unit(370, "cm"),
  6304. weight: math.unit(350, "lbs"),
  6305. name: "Walking",
  6306. image: {
  6307. source: "./media/characters/malfressa/walking.svg"
  6308. }
  6309. },
  6310. feral: {
  6311. height: math.unit(2500, "cm"),
  6312. weight: math.unit(100000, "lbs"),
  6313. name: "Feral",
  6314. image: {
  6315. source: "./media/characters/malfressa/feral.svg",
  6316. extra: 2108 / 837,
  6317. bottom: 0.02
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(370, "cm")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(300, "meters"),
  6329. default: true
  6330. }
  6331. ]
  6332. ))
  6333. characterMakers.push(() => makeCharacter(
  6334. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6335. {
  6336. front: {
  6337. height: math.unit(6, "feet"),
  6338. weight: math.unit(60, "kg"),
  6339. name: "Front",
  6340. image: {
  6341. source: "./media/characters/jaro/front.svg"
  6342. }
  6343. },
  6344. back: {
  6345. height: math.unit(6, "feet"),
  6346. weight: math.unit(60, "kg"),
  6347. name: "Back",
  6348. image: {
  6349. source: "./media/characters/jaro/back.svg"
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(7, "inches")
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(5.5, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Minimacro",
  6365. height: math.unit(20, "feet")
  6366. },
  6367. {
  6368. name: "Macro",
  6369. height: math.unit(200, "meters")
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(195, "lb"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/rogue/front.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(90, "feet"),
  6389. default: true
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(5 + 8 / 12, "feet"),
  6398. weight: math.unit(140, "lb"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/piper/front.svg",
  6402. extra: 3948/3655,
  6403. bottom: 0/3948
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(2, "inches")
  6411. },
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(5 + 8 / 12, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(250, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Megamacro",
  6423. height: math.unit(7, "miles")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(220, "lb"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/gemini/front.svg"
  6436. }
  6437. },
  6438. back: {
  6439. height: math.unit(6, "feet"),
  6440. weight: math.unit(220, "lb"),
  6441. name: "Back",
  6442. image: {
  6443. source: "./media/characters/gemini/back.svg"
  6444. }
  6445. },
  6446. kneeling: {
  6447. height: math.unit(6 / 1.5, "feet"),
  6448. weight: math.unit(220, "lb"),
  6449. name: "Kneeling",
  6450. image: {
  6451. source: "./media/characters/gemini/kneeling.svg",
  6452. bottom: 0.02
  6453. }
  6454. },
  6455. },
  6456. [
  6457. {
  6458. name: "Macro",
  6459. height: math.unit(300, "meters"),
  6460. default: true
  6461. },
  6462. {
  6463. name: "Megamacro",
  6464. height: math.unit(6900, "meters")
  6465. },
  6466. ]
  6467. ))
  6468. characterMakers.push(() => makeCharacter(
  6469. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6470. {
  6471. anthro: {
  6472. height: math.unit(2.35, "meters"),
  6473. weight: math.unit(73, "kg"),
  6474. name: "Anthro",
  6475. image: {
  6476. source: "./media/characters/alicia/anthro.svg",
  6477. extra: 2571 / 2385,
  6478. bottom: 75 / 2648
  6479. }
  6480. },
  6481. paw: {
  6482. height: math.unit(1.32, "feet"),
  6483. name: "Paw",
  6484. image: {
  6485. source: "./media/characters/alicia/paw.svg"
  6486. }
  6487. },
  6488. feral: {
  6489. height: math.unit(1.69, "meters"),
  6490. weight: math.unit(73, "kg"),
  6491. name: "Feral",
  6492. image: {
  6493. source: "./media/characters/alicia/feral.svg",
  6494. extra: 2123 / 1715,
  6495. bottom: 222 / 2349
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(2.35, "meters")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(60, "meters"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(10000, "kilometers")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(7, "feet"),
  6520. weight: math.unit(250, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/archy/front.svg"
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Micro",
  6530. height: math.unit(1, "inch")
  6531. },
  6532. {
  6533. name: "Shorty",
  6534. height: math.unit(5, "feet")
  6535. },
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(7, "feet")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(600, "meters"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(1, "mile")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(1.65, "meters"),
  6556. weight: math.unit(74, "kg"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/berri/front.svg",
  6560. extra: 857 / 837,
  6561. bottom: 18 / 877
  6562. }
  6563. },
  6564. bum: {
  6565. height: math.unit(1.46, "feet"),
  6566. name: "Bum",
  6567. image: {
  6568. source: "./media/characters/berri/bum.svg"
  6569. }
  6570. },
  6571. mouth: {
  6572. height: math.unit(0.44, "feet"),
  6573. name: "Mouth",
  6574. image: {
  6575. source: "./media/characters/berri/mouth.svg"
  6576. }
  6577. },
  6578. paw: {
  6579. height: math.unit(0.826, "feet"),
  6580. name: "Paw",
  6581. image: {
  6582. source: "./media/characters/berri/paw.svg"
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(1.65, "meters")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(60, "m"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Megamacro",
  6598. height: math.unit(9.213, "km")
  6599. },
  6600. {
  6601. name: "Planet Eater",
  6602. height: math.unit(489, "megameters")
  6603. },
  6604. {
  6605. name: "Teramacro",
  6606. height: math.unit(2471635000000, "meters")
  6607. },
  6608. {
  6609. name: "Examacro",
  6610. height: math.unit(8.0624e+26, "meters")
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(1.72, "meters"),
  6619. weight: math.unit(68, "kg"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/lexi/front.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Very Smol",
  6629. height: math.unit(10, "mm")
  6630. },
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(6.8, "cm"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(1.72, "m")
  6639. }
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6644. {
  6645. front: {
  6646. height: math.unit(1.69, "meters"),
  6647. weight: math.unit(68, "kg"),
  6648. name: "Front",
  6649. image: {
  6650. source: "./media/characters/martin/front.svg",
  6651. extra: 596 / 581
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Micro",
  6658. height: math.unit(6.85, "cm"),
  6659. default: true
  6660. },
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(1.69, "m")
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(1.69, "meters"),
  6672. weight: math.unit(68, "kg"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/juno/front.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Micro",
  6682. height: math.unit(7, "cm")
  6683. },
  6684. {
  6685. name: "Normal",
  6686. height: math.unit(1.89, "m")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(353, "meters"),
  6691. default: true
  6692. }
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(1.93, "meters"),
  6700. weight: math.unit(83, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/samantha/front.svg"
  6704. }
  6705. },
  6706. frontClothed: {
  6707. height: math.unit(1.93, "meters"),
  6708. weight: math.unit(83, "kg"),
  6709. name: "Front (Clothed)",
  6710. image: {
  6711. source: "./media/characters/samantha/front-clothed.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(1.93, "meters"),
  6716. weight: math.unit(83, "kg"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/samantha/back.svg"
  6720. }
  6721. },
  6722. },
  6723. [
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(1.93, "m")
  6727. },
  6728. {
  6729. name: "Macro",
  6730. height: math.unit(74, "meters"),
  6731. default: true
  6732. },
  6733. {
  6734. name: "Macro+",
  6735. height: math.unit(223, "meters"),
  6736. },
  6737. {
  6738. name: "Megamacro",
  6739. height: math.unit(8381, "meters"),
  6740. },
  6741. {
  6742. name: "Megamacro+",
  6743. height: math.unit(12000, "kilometers")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(1.92, "meters"),
  6752. weight: math.unit(80, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/dr-clay/front.svg"
  6756. }
  6757. },
  6758. frontClothed: {
  6759. height: math.unit(1.92, "meters"),
  6760. weight: math.unit(80, "kg"),
  6761. name: "Front (Clothed)",
  6762. image: {
  6763. source: "./media/characters/dr-clay/front-clothed.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(1.92, "m")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(214, "meters"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Macro+",
  6779. height: math.unit(12.237, "meters"),
  6780. },
  6781. {
  6782. name: "Megamacro",
  6783. height: math.unit(557, "megameters"),
  6784. },
  6785. {
  6786. name: "Unimaginable",
  6787. height: math.unit(120e9, "lightyears")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(80, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Teramacro",
  6806. height: math.unit(500000, "lightyears"),
  6807. default: true
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6813. {
  6814. crux: {
  6815. height: math.unit(2, "meters"),
  6816. weight: math.unit(150, "kg"),
  6817. name: "Crux",
  6818. image: {
  6819. source: "./media/characters/vemus/crux.svg",
  6820. extra: 1074/936,
  6821. bottom: 23/1097
  6822. }
  6823. },
  6824. skunkTanuki: {
  6825. height: math.unit(2, "meters"),
  6826. weight: math.unit(150, "kg"),
  6827. name: "Skunk-Tanuki",
  6828. image: {
  6829. source: "./media/characters/vemus/skunk-tanuki.svg",
  6830. extra: 926/893,
  6831. bottom: 20/946
  6832. }
  6833. },
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(3.75, "meters"),
  6839. default: true
  6840. },
  6841. {
  6842. name: "Big",
  6843. height: math.unit(8, "meters")
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(100, "meters")
  6848. },
  6849. {
  6850. name: "Macro+",
  6851. height: math.unit(1500, "meters")
  6852. },
  6853. {
  6854. name: "Stellar",
  6855. height: math.unit(14e8, "meters")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(2, "meters"),
  6864. weight: math.unit(70, "kg"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/beherit/front.svg",
  6868. extra: 1408 / 1242
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Normal",
  6875. height: math.unit(6, "feet")
  6876. },
  6877. {
  6878. name: "Lorg",
  6879. height: math.unit(25, "feet"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Lorger",
  6884. height: math.unit(75, "feet")
  6885. },
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(200, "meters")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(150, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/everett/front.svg",
  6901. extra: 2038 / 1737,
  6902. bottom: 0.03
  6903. }
  6904. },
  6905. paw: {
  6906. height: math.unit(2 / 3.6, "meters"),
  6907. name: "Paw",
  6908. image: {
  6909. source: "./media/characters/everett/paw.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Normal",
  6916. height: math.unit(15, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Lorg",
  6921. height: math.unit(70, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Lorger",
  6926. height: math.unit(250, "feet")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(500, "meters")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(2, "meters"),
  6939. weight: math.unit(86, "kg"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/rose/front.svg",
  6943. extra: 1785/1636,
  6944. bottom: 30/1815
  6945. }
  6946. },
  6947. frontSporty: {
  6948. height: math.unit(2, "meters"),
  6949. weight: math.unit(86, "kg"),
  6950. name: "Front (Sporty)",
  6951. image: {
  6952. source: "./media/characters/rose/front-sporty.svg",
  6953. extra: 350/335,
  6954. bottom: 10/360
  6955. }
  6956. },
  6957. frontAlt: {
  6958. height: math.unit(1.6, "meters"),
  6959. weight: math.unit(86, "kg"),
  6960. name: "Front (Alt)",
  6961. image: {
  6962. source: "./media/characters/rose/front-alt.svg",
  6963. extra: 299/283,
  6964. bottom: 3/302
  6965. }
  6966. },
  6967. plush: {
  6968. height: math.unit(2, "meters"),
  6969. weight: math.unit(86/3, "kg"),
  6970. name: "Plush",
  6971. image: {
  6972. source: "./media/characters/rose/plush.svg",
  6973. extra: 361/337,
  6974. bottom: 11/372
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "True Micro",
  6981. height: math.unit(9, "cm")
  6982. },
  6983. {
  6984. name: "Micro",
  6985. height: math.unit(16, "cm")
  6986. },
  6987. {
  6988. name: "Normal",
  6989. height: math.unit(1.85, "meters"),
  6990. default: true
  6991. },
  6992. {
  6993. name: "Mini-Macro",
  6994. height: math.unit(5, "meters")
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(15, "meters")
  6999. },
  7000. {
  7001. name: "True Macro",
  7002. height: math.unit(40, "meters")
  7003. },
  7004. {
  7005. name: "City Scale",
  7006. height: math.unit(1, "km")
  7007. },
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(2, "meters"),
  7015. weight: math.unit(350, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/regal/front.svg"
  7019. }
  7020. },
  7021. back: {
  7022. height: math.unit(2, "meters"),
  7023. weight: math.unit(350, "lbs"),
  7024. name: "Back",
  7025. image: {
  7026. source: "./media/characters/regal/back.svg"
  7027. }
  7028. },
  7029. },
  7030. [
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(350, "feet"),
  7034. default: true
  7035. }
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(4 + 11 / 12, "feet"),
  7043. weight: math.unit(100, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/opal/front.svg"
  7047. }
  7048. },
  7049. frontAlt: {
  7050. height: math.unit(4 + 11 / 12, "feet"),
  7051. weight: math.unit(100, "lbs"),
  7052. name: "Front (Alt)",
  7053. image: {
  7054. source: "./media/characters/opal/front-alt.svg"
  7055. }
  7056. },
  7057. },
  7058. [
  7059. {
  7060. name: "Small",
  7061. height: math.unit(4 + 11 / 12, "feet")
  7062. },
  7063. {
  7064. name: "Normal",
  7065. height: math.unit(20, "feet"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(120, "feet")
  7071. },
  7072. {
  7073. name: "Megamacro",
  7074. height: math.unit(80, "miles")
  7075. },
  7076. {
  7077. name: "True Size",
  7078. height: math.unit(100000, "lightyears")
  7079. },
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(6, "feet"),
  7087. weight: math.unit(200, "lbs"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/vector-wuff/front.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Normal",
  7097. height: math.unit(2.8, "meters")
  7098. },
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(450, "meters"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Megamacro",
  7106. height: math.unit(15, "kilometers")
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(256, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/dannik/front.svg"
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(69.57, "meters"),
  7126. default: true
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(120, "lbs"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/azura-saharah/front.svg"
  7139. }
  7140. },
  7141. back: {
  7142. height: math.unit(6, "feet"),
  7143. weight: math.unit(120, "lbs"),
  7144. name: "Back",
  7145. image: {
  7146. source: "./media/characters/azura-saharah/back.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(100, "feet"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7160. {
  7161. side: {
  7162. height: math.unit(5 + 4 / 12, "feet"),
  7163. weight: math.unit(163, "lbs"),
  7164. name: "Side",
  7165. image: {
  7166. source: "./media/characters/kennedy/side.svg"
  7167. }
  7168. }
  7169. },
  7170. [
  7171. {
  7172. name: "Standard Doggo",
  7173. height: math.unit(5 + 4 / 12, "feet")
  7174. },
  7175. {
  7176. name: "Big Doggo",
  7177. height: math.unit(25 + 3 / 12, "feet"),
  7178. default: true
  7179. },
  7180. ]
  7181. ))
  7182. characterMakers.push(() => makeCharacter(
  7183. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7184. {
  7185. front: {
  7186. height: math.unit(5 + 5/12, "feet"),
  7187. weight: math.unit(100, "lbs"),
  7188. name: "Front",
  7189. image: {
  7190. source: "./media/characters/odios-de-lunar/front.svg",
  7191. extra: 1468/1323,
  7192. bottom: 22/1490
  7193. }
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Micro",
  7199. height: math.unit(3, "inches")
  7200. },
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(5.5, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(100, "feet")
  7209. },
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7214. {
  7215. back: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(220, "lbs"),
  7218. name: "Back",
  7219. image: {
  7220. source: "./media/characters/mandake/back.svg"
  7221. }
  7222. }
  7223. },
  7224. [
  7225. {
  7226. name: "Normal",
  7227. height: math.unit(7, "feet"),
  7228. default: true
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(78, "feet")
  7233. },
  7234. {
  7235. name: "Macro+",
  7236. height: math.unit(300, "meters")
  7237. },
  7238. {
  7239. name: "Macro++",
  7240. height: math.unit(2400, "feet")
  7241. },
  7242. {
  7243. name: "Megamacro",
  7244. height: math.unit(5167, "meters")
  7245. },
  7246. {
  7247. name: "Gigamacro",
  7248. height: math.unit(41769, "miles")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(120, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/yozey/front.svg"
  7261. }
  7262. },
  7263. frontAlt: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(120, "lbs"),
  7266. name: "Front (Alt)",
  7267. image: {
  7268. source: "./media/characters/yozey/front-alt.svg"
  7269. }
  7270. },
  7271. side: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(120, "lbs"),
  7274. name: "Side",
  7275. image: {
  7276. source: "./media/characters/yozey/side.svg"
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(3, "inches"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Normal",
  7288. height: math.unit(6, "feet")
  7289. }
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(6, "feet"),
  7297. weight: math.unit(103, "lbs"),
  7298. name: "Front",
  7299. image: {
  7300. source: "./media/characters/valeska-voss/front.svg"
  7301. }
  7302. }
  7303. },
  7304. [
  7305. {
  7306. name: "Mini-Sized Sub",
  7307. height: math.unit(3.1, "inches")
  7308. },
  7309. {
  7310. name: "Mid-Sized Sub",
  7311. height: math.unit(6.2, "inches")
  7312. },
  7313. {
  7314. name: "Full-Sized Sub",
  7315. height: math.unit(9.3, "inches")
  7316. },
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(5 + 2 / 12, "foot"),
  7320. default: true
  7321. },
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(160, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/gene-zeta/front.svg",
  7333. extra: 3006 / 2826,
  7334. bottom: 182 / 3188
  7335. }
  7336. }
  7337. },
  7338. [
  7339. {
  7340. name: "Micro",
  7341. height: math.unit(6, "inches")
  7342. },
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(5 + 11 / 12, "foot"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(140, "feet")
  7351. },
  7352. {
  7353. name: "Supercharged",
  7354. height: math.unit(2500, "feet")
  7355. },
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(350, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/razinox/front.svg",
  7367. extra: 1686 / 1548,
  7368. bottom: 28.2 / 1868
  7369. }
  7370. },
  7371. back: {
  7372. height: math.unit(6, "feet"),
  7373. weight: math.unit(350, "lbs"),
  7374. name: "Back",
  7375. image: {
  7376. source: "./media/characters/razinox/back.svg",
  7377. extra: 1660 / 1590,
  7378. bottom: 15 / 1665
  7379. }
  7380. },
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(10 + 8 / 12, "foot")
  7386. },
  7387. {
  7388. name: "Minimacro",
  7389. height: math.unit(15, "foot")
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(60, "foot"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Megamacro",
  7398. height: math.unit(5, "miles")
  7399. },
  7400. {
  7401. name: "Gigamacro",
  7402. height: math.unit(6000, "miles")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(150, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/cobalt/front.svg"
  7415. }
  7416. }
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(8 + 1 / 12, "foot")
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(111, "foot"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Supracosmic",
  7430. height: math.unit(1e42, "feet")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(140, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/amanda/front.svg"
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Micro",
  7449. height: math.unit(5, "inches"),
  7450. default: true
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(2.75, "meters"),
  7459. weight: math.unit(1200, "lb"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/teal/front.svg",
  7463. extra: 2463 / 2320,
  7464. bottom: 166 / 2629
  7465. }
  7466. },
  7467. back: {
  7468. height: math.unit(2.75, "meters"),
  7469. weight: math.unit(1200, "lb"),
  7470. name: "Back",
  7471. image: {
  7472. source: "./media/characters/teal/back.svg",
  7473. extra: 2580 / 2489,
  7474. bottom: 151 / 2731
  7475. }
  7476. },
  7477. sitting: {
  7478. height: math.unit(1.9, "meters"),
  7479. weight: math.unit(1200, "lb"),
  7480. name: "Sitting",
  7481. image: {
  7482. source: "./media/characters/teal/sitting.svg",
  7483. extra: 623 / 590,
  7484. bottom: 121 / 744
  7485. }
  7486. },
  7487. standing: {
  7488. height: math.unit(2.75, "meters"),
  7489. weight: math.unit(1200, "lb"),
  7490. name: "Standing",
  7491. image: {
  7492. source: "./media/characters/teal/standing.svg",
  7493. extra: 923 / 893,
  7494. bottom: 60 / 983
  7495. }
  7496. },
  7497. stretching: {
  7498. height: math.unit(3.65, "meters"),
  7499. weight: math.unit(1200, "lb"),
  7500. name: "Stretching",
  7501. image: {
  7502. source: "./media/characters/teal/stretching.svg",
  7503. extra: 1276 / 1244,
  7504. bottom: 0 / 1276
  7505. }
  7506. },
  7507. legged: {
  7508. height: math.unit(1.3, "meters"),
  7509. weight: math.unit(100, "lb"),
  7510. name: "Legged",
  7511. image: {
  7512. source: "./media/characters/teal/legged.svg",
  7513. extra: 462 / 437,
  7514. bottom: 24 / 486
  7515. }
  7516. },
  7517. naga: {
  7518. height: math.unit(5.4, "meters"),
  7519. weight: math.unit(4000, "lb"),
  7520. name: "Naga",
  7521. image: {
  7522. source: "./media/characters/teal/naga.svg",
  7523. extra: 1902 / 1858,
  7524. bottom: 0 / 1902
  7525. }
  7526. },
  7527. hand: {
  7528. height: math.unit(0.52, "meters"),
  7529. name: "Hand",
  7530. image: {
  7531. source: "./media/characters/teal/hand.svg"
  7532. }
  7533. },
  7534. maw: {
  7535. height: math.unit(0.43, "meters"),
  7536. name: "Maw",
  7537. image: {
  7538. source: "./media/characters/teal/maw.svg"
  7539. }
  7540. },
  7541. slit: {
  7542. height: math.unit(0.25, "meters"),
  7543. name: "Slit",
  7544. image: {
  7545. source: "./media/characters/teal/slit.svg"
  7546. }
  7547. },
  7548. },
  7549. [
  7550. {
  7551. name: "Normal",
  7552. height: math.unit(2.75, "meters"),
  7553. default: true
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(300, "feet")
  7558. },
  7559. {
  7560. name: "Macro+",
  7561. height: math.unit(2000, "feet")
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7567. {
  7568. frontCat: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(180, "lbs"),
  7571. name: "Front (Cat)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/front-cat.svg"
  7574. }
  7575. },
  7576. frontCatAlt: {
  7577. height: math.unit(6, "feet"),
  7578. weight: math.unit(180, "lbs"),
  7579. name: "Front (Alt, Cat)",
  7580. image: {
  7581. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7582. }
  7583. },
  7584. frontWerewolf: {
  7585. height: math.unit(6 * 1.2, "feet"),
  7586. weight: math.unit(225, "lbs"),
  7587. name: "Front (Werewolf)",
  7588. image: {
  7589. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7590. }
  7591. },
  7592. backWerewolf: {
  7593. height: math.unit(6 * 1.2, "feet"),
  7594. weight: math.unit(225, "lbs"),
  7595. name: "Back (Werewolf)",
  7596. image: {
  7597. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7598. }
  7599. },
  7600. },
  7601. [
  7602. {
  7603. name: "Nano",
  7604. height: math.unit(1, "micrometer")
  7605. },
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(1, "inch")
  7609. },
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(6, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(60, "feet")
  7618. }
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7623. {
  7624. front: {
  7625. height: math.unit(6, "feet"),
  7626. weight: math.unit(165, "lbs"),
  7627. name: "Front",
  7628. image: {
  7629. source: "./media/characters/fluoresce/front.svg"
  7630. }
  7631. }
  7632. },
  7633. [
  7634. {
  7635. name: "Micro",
  7636. height: math.unit(6, "cm")
  7637. },
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(5 + 7 / 12, "feet"),
  7641. default: true
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(56, "feet")
  7646. },
  7647. {
  7648. name: "Megamacro",
  7649. height: math.unit(1.9, "miles")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(9 + 6 / 12, "feet"),
  7658. weight: math.unit(523, "lbs"),
  7659. name: "Side",
  7660. image: {
  7661. source: "./media/characters/aurora/side.svg"
  7662. }
  7663. }
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(9 + 6 / 12, "feet")
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(96, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Macro+",
  7677. height: math.unit(243, "feet")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(194, "cm"),
  7686. weight: math.unit(90, "kg"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/ranek/front.svg"
  7690. }
  7691. },
  7692. side: {
  7693. height: math.unit(194, "cm"),
  7694. weight: math.unit(90, "kg"),
  7695. name: "Side",
  7696. image: {
  7697. source: "./media/characters/ranek/side.svg"
  7698. }
  7699. },
  7700. back: {
  7701. height: math.unit(194, "cm"),
  7702. weight: math.unit(90, "kg"),
  7703. name: "Back",
  7704. image: {
  7705. source: "./media/characters/ranek/back.svg"
  7706. }
  7707. },
  7708. feral: {
  7709. height: math.unit(30, "cm"),
  7710. weight: math.unit(1.6, "lbs"),
  7711. name: "Feral",
  7712. image: {
  7713. source: "./media/characters/ranek/feral.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(194, "cm"),
  7721. default: true
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(100, "meters")
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(5 + 6 / 12, "feet"),
  7734. weight: math.unit(153, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/andrew-cooper/front.svg"
  7738. }
  7739. },
  7740. },
  7741. [
  7742. {
  7743. name: "Nano",
  7744. height: math.unit(1, "mm")
  7745. },
  7746. {
  7747. name: "Micro",
  7748. height: math.unit(2, "inches")
  7749. },
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(5 + 6 / 12, "feet"),
  7753. default: true
  7754. }
  7755. ]
  7756. ))
  7757. characterMakers.push(() => makeCharacter(
  7758. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7759. {
  7760. front: {
  7761. height: math.unit(6, "feet"),
  7762. weight: math.unit(180, "lbs"),
  7763. name: "Front",
  7764. image: {
  7765. source: "./media/characters/akane-sato/front.svg",
  7766. extra: 1219 / 1140
  7767. }
  7768. },
  7769. back: {
  7770. height: math.unit(6, "feet"),
  7771. weight: math.unit(180, "lbs"),
  7772. name: "Back",
  7773. image: {
  7774. source: "./media/characters/akane-sato/back.svg",
  7775. extra: 1219 / 1170
  7776. }
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "Normal",
  7782. height: math.unit(2.5, "meters")
  7783. },
  7784. {
  7785. name: "Macro",
  7786. height: math.unit(250, "meters"),
  7787. default: true
  7788. },
  7789. {
  7790. name: "Megamacro",
  7791. height: math.unit(25, "km")
  7792. },
  7793. ]
  7794. ))
  7795. characterMakers.push(() => makeCharacter(
  7796. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7797. {
  7798. front: {
  7799. height: math.unit(6, "feet"),
  7800. weight: math.unit(65, "kg"),
  7801. name: "Front",
  7802. image: {
  7803. source: "./media/characters/rook/front.svg",
  7804. extra: 960 / 950
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(8.8, "feet")
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(88, "feet"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Megamacro",
  7820. height: math.unit(8, "miles")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(12 + 2 / 12, "feet"),
  7829. weight: math.unit(808, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/prodigy/front.svg"
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(12 + 2 / 12, "feet"),
  7840. default: true
  7841. },
  7842. {
  7843. name: "Macro",
  7844. height: math.unit(143, "feet")
  7845. },
  7846. {
  7847. name: "Macro+",
  7848. height: math.unit(400, "feet")
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(225, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/daniel/front.svg"
  7861. }
  7862. },
  7863. leaning: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(225, "lbs"),
  7866. name: "Leaning",
  7867. image: {
  7868. source: "./media/characters/daniel/leaning.svg"
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Macro",
  7875. height: math.unit(1000, "feet"),
  7876. default: true
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(88, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/chiros/front.svg",
  7889. extra: 306 / 226
  7890. }
  7891. },
  7892. side: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(88, "lbs"),
  7895. name: "Side",
  7896. image: {
  7897. source: "./media/characters/chiros/side.svg",
  7898. extra: 306 / 226
  7899. }
  7900. },
  7901. },
  7902. [
  7903. {
  7904. name: "Normal",
  7905. height: math.unit(6, "cm"),
  7906. default: true
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7912. {
  7913. front: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(100, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/selka/front.svg",
  7919. extra: 947 / 887
  7920. }
  7921. }
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(5, "cm"),
  7927. default: true
  7928. },
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7933. {
  7934. front: {
  7935. height: math.unit(8 + 3 / 12, "feet"),
  7936. weight: math.unit(424, "lbs"),
  7937. name: "Front",
  7938. image: {
  7939. source: "./media/characters/verin/front.svg",
  7940. extra: 1845 / 1550
  7941. }
  7942. },
  7943. frontArmored: {
  7944. height: math.unit(8 + 3 / 12, "feet"),
  7945. weight: math.unit(424, "lbs"),
  7946. name: "Front (Armored)",
  7947. image: {
  7948. source: "./media/characters/verin/front-armor.svg",
  7949. extra: 1845 / 1550,
  7950. bottom: 0.01
  7951. }
  7952. },
  7953. back: {
  7954. height: math.unit(8 + 3 / 12, "feet"),
  7955. weight: math.unit(424, "lbs"),
  7956. name: "Back",
  7957. image: {
  7958. source: "./media/characters/verin/back.svg",
  7959. bottom: 0.1,
  7960. extra: 1
  7961. }
  7962. },
  7963. foot: {
  7964. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7965. name: "Foot",
  7966. image: {
  7967. source: "./media/characters/verin/foot.svg"
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(8 + 3 / 12, "feet")
  7975. },
  7976. {
  7977. name: "Minimacro",
  7978. height: math.unit(21, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(626, "feet")
  7984. },
  7985. ]
  7986. ))
  7987. characterMakers.push(() => makeCharacter(
  7988. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7989. {
  7990. front: {
  7991. height: math.unit(2.718, "meters"),
  7992. weight: math.unit(150, "lbs"),
  7993. name: "Front",
  7994. image: {
  7995. source: "./media/characters/sovrim-terraquian/front.svg"
  7996. }
  7997. },
  7998. back: {
  7999. height: math.unit(2.718, "meters"),
  8000. weight: math.unit(150, "lbs"),
  8001. name: "Back",
  8002. image: {
  8003. source: "./media/characters/sovrim-terraquian/back.svg"
  8004. }
  8005. }
  8006. },
  8007. [
  8008. {
  8009. name: "Micro",
  8010. height: math.unit(2, "inches")
  8011. },
  8012. {
  8013. name: "Small",
  8014. height: math.unit(1, "meter")
  8015. },
  8016. {
  8017. name: "Normal",
  8018. height: math.unit(Math.E, "meters"),
  8019. default: true
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(20, "meters")
  8024. },
  8025. {
  8026. name: "Macro+",
  8027. height: math.unit(400, "meters")
  8028. },
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(7, "feet"),
  8036. weight: math.unit(489, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/reece-silvermane/front.svg",
  8040. bottom: 0.02,
  8041. extra: 1
  8042. }
  8043. },
  8044. },
  8045. [
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(1.5, "miles"),
  8049. default: true
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(6, "feet"),
  8058. weight: math.unit(78, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/kane/front.svg",
  8062. extra: 978 / 899
  8063. }
  8064. },
  8065. },
  8066. [
  8067. {
  8068. name: "Normal",
  8069. height: math.unit(2.1, "m"),
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(1, "km"),
  8074. default: true
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(200, "kg"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/tegon/front.svg",
  8087. bottom: 0.01,
  8088. extra: 1
  8089. }
  8090. },
  8091. },
  8092. [
  8093. {
  8094. name: "Micro",
  8095. height: math.unit(1, "inch")
  8096. },
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(6 + 3 / 12, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Macro",
  8104. height: math.unit(300, "feet")
  8105. },
  8106. {
  8107. name: "Megamacro",
  8108. height: math.unit(69, "miles")
  8109. },
  8110. ]
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8114. {
  8115. side: {
  8116. height: math.unit(6, "feet"),
  8117. weight: math.unit(2304, "lbs"),
  8118. name: "Side",
  8119. image: {
  8120. source: "./media/characters/arcturax/side.svg",
  8121. extra: 790 / 376,
  8122. bottom: 0.01
  8123. }
  8124. },
  8125. },
  8126. [
  8127. {
  8128. name: "Micro",
  8129. height: math.unit(2, "inch")
  8130. },
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(6, "feet")
  8134. },
  8135. {
  8136. name: "Macro",
  8137. height: math.unit(39, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Megamacro",
  8142. height: math.unit(7, "miles")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(50, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/sentri/front.svg",
  8155. extra: 1750 / 1570,
  8156. bottom: 0.025
  8157. }
  8158. },
  8159. frontAlt: {
  8160. height: math.unit(6, "feet"),
  8161. weight: math.unit(50, "lbs"),
  8162. name: "Front (Alt)",
  8163. image: {
  8164. source: "./media/characters/sentri/front-alt.svg",
  8165. extra: 1750 / 1570,
  8166. bottom: 0.025
  8167. }
  8168. },
  8169. },
  8170. [
  8171. {
  8172. name: "Normal",
  8173. height: math.unit(15, "feet"),
  8174. default: true
  8175. },
  8176. {
  8177. name: "Macro",
  8178. height: math.unit(2500, "feet")
  8179. }
  8180. ]
  8181. ))
  8182. characterMakers.push(() => makeCharacter(
  8183. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8184. {
  8185. front: {
  8186. height: math.unit(5 + 8 / 12, "feet"),
  8187. weight: math.unit(130, "lbs"),
  8188. name: "Front",
  8189. image: {
  8190. source: "./media/characters/corvin/front.svg",
  8191. extra: 1803 / 1629
  8192. }
  8193. },
  8194. frontShirt: {
  8195. height: math.unit(5 + 8 / 12, "feet"),
  8196. weight: math.unit(130, "lbs"),
  8197. name: "Front (Shirt)",
  8198. image: {
  8199. source: "./media/characters/corvin/front-shirt.svg",
  8200. extra: 1803 / 1629
  8201. }
  8202. },
  8203. frontPoncho: {
  8204. height: math.unit(5 + 8 / 12, "feet"),
  8205. weight: math.unit(130, "lbs"),
  8206. name: "Front (Poncho)",
  8207. image: {
  8208. source: "./media/characters/corvin/front-poncho.svg",
  8209. extra: 1803 / 1629
  8210. }
  8211. },
  8212. side: {
  8213. height: math.unit(5 + 8 / 12, "feet"),
  8214. weight: math.unit(130, "lbs"),
  8215. name: "Side",
  8216. image: {
  8217. source: "./media/characters/corvin/side.svg",
  8218. extra: 1012 / 945
  8219. }
  8220. },
  8221. back: {
  8222. height: math.unit(5 + 8 / 12, "feet"),
  8223. weight: math.unit(130, "lbs"),
  8224. name: "Back",
  8225. image: {
  8226. source: "./media/characters/corvin/back.svg",
  8227. extra: 1803 / 1629
  8228. }
  8229. },
  8230. },
  8231. [
  8232. {
  8233. name: "Micro",
  8234. height: math.unit(3, "inches")
  8235. },
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(5 + 8 / 12, "feet")
  8239. },
  8240. {
  8241. name: "Macro",
  8242. height: math.unit(300, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Megamacro",
  8247. height: math.unit(500, "miles")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(135, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/q/front.svg",
  8260. extra: 854 / 752,
  8261. bottom: 0.005
  8262. }
  8263. },
  8264. back: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(130, "lbs"),
  8267. name: "Back",
  8268. image: {
  8269. source: "./media/characters/q/back.svg",
  8270. extra: 854 / 752
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(90, "feet"),
  8278. default: true
  8279. },
  8280. {
  8281. name: "Extra Macro",
  8282. height: math.unit(300, "feet"),
  8283. },
  8284. {
  8285. name: "BIG WALF",
  8286. height: math.unit(750, "feet"),
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8292. {
  8293. front: {
  8294. height: math.unit(6, "feet"),
  8295. weight: math.unit(150, "lbs"),
  8296. name: "Front",
  8297. image: {
  8298. source: "./media/characters/carley/front.svg",
  8299. extra: 3927 / 3540,
  8300. bottom: 29.2 / 735
  8301. }
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(6 + 3 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(185, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(8, "miles"),
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(3, "feet"),
  8325. weight: math.unit(28, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/citrine/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(3, "feet"),
  8336. default: true
  8337. }
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8342. {
  8343. front: {
  8344. height: math.unit(14, "feet"),
  8345. weight: math.unit(1450, "kg"),
  8346. capacity: math.unit(15, "people"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/aura-starwind/front.svg",
  8350. extra: 1440/1327,
  8351. bottom: 11/1451
  8352. }
  8353. },
  8354. side: {
  8355. height: math.unit(14, "feet"),
  8356. weight: math.unit(1450, "kg"),
  8357. capacity: math.unit(15, "people"),
  8358. name: "Side",
  8359. image: {
  8360. source: "./media/characters/aura-starwind/side.svg",
  8361. extra: 1654 / 1497
  8362. }
  8363. },
  8364. taur: {
  8365. height: math.unit(18, "feet"),
  8366. weight: math.unit(5500, "kg"),
  8367. capacity: math.unit(50, "people"),
  8368. name: "Taur",
  8369. image: {
  8370. source: "./media/characters/aura-starwind/taur.svg",
  8371. extra: 1760 / 1650
  8372. }
  8373. },
  8374. feral: {
  8375. height: math.unit(46, "feet"),
  8376. weight: math.unit(25000, "kg"),
  8377. capacity: math.unit(120, "people"),
  8378. name: "Feral",
  8379. image: {
  8380. source: "./media/characters/aura-starwind/feral.svg"
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Normal",
  8387. height: math.unit(14, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(50, "meters")
  8393. },
  8394. {
  8395. name: "Megamacro",
  8396. height: math.unit(5000, "meters")
  8397. },
  8398. {
  8399. name: "Gigamacro",
  8400. height: math.unit(100000, "kilometers")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(2 + 7 / 12, "feet"),
  8409. weight: math.unit(32, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/rivet/front.svg",
  8413. extra: 1716 / 1658,
  8414. bottom: 0.03
  8415. }
  8416. },
  8417. foot: {
  8418. height: math.unit(0.551, "feet"),
  8419. name: "Rivet's Foot",
  8420. image: {
  8421. source: "./media/characters/rivet/foot.svg"
  8422. },
  8423. rename: true
  8424. }
  8425. },
  8426. [
  8427. {
  8428. name: "Micro",
  8429. height: math.unit(1.5, "inches"),
  8430. },
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(2 + 7 / 12, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(85, "feet")
  8439. },
  8440. {
  8441. name: "Megamacro",
  8442. height: math.unit(2.2, "km")
  8443. }
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(5 + 9 / 12, "feet"),
  8451. weight: math.unit(150, "lbs"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/coffee/front.svg",
  8455. extra: 3666 / 3032,
  8456. bottom: 0.04
  8457. }
  8458. },
  8459. foot: {
  8460. height: math.unit(1.29, "feet"),
  8461. name: "Foot",
  8462. image: {
  8463. source: "./media/characters/coffee/foot.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(2, "inches"),
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(5 + 9 / 12, "feet"),
  8475. default: true
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(800, "feet")
  8480. },
  8481. {
  8482. name: "Megamacro",
  8483. height: math.unit(25, "miles")
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(200, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/chari-gal/front.svg",
  8496. extra: 1568 / 1385,
  8497. bottom: 0.047
  8498. }
  8499. },
  8500. gigantamax: {
  8501. height: math.unit(6 * 16, "feet"),
  8502. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8503. name: "Gigantamax",
  8504. image: {
  8505. source: "./media/characters/chari-gal/gigantamax.svg",
  8506. extra: 1124 / 888,
  8507. bottom: 0.03
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(5 + 7 / 12, "feet")
  8515. },
  8516. {
  8517. name: "Macro",
  8518. height: math.unit(200, "feet"),
  8519. default: true
  8520. }
  8521. ]
  8522. ))
  8523. characterMakers.push(() => makeCharacter(
  8524. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8525. {
  8526. front: {
  8527. height: math.unit(6, "feet"),
  8528. weight: math.unit(150, "lbs"),
  8529. name: "Front",
  8530. image: {
  8531. source: "./media/characters/nova/front.svg",
  8532. extra: 5000 / 4722,
  8533. bottom: 0.02
  8534. }
  8535. }
  8536. },
  8537. [
  8538. {
  8539. name: "Micro-",
  8540. height: math.unit(0.8, "inches")
  8541. },
  8542. {
  8543. name: "Micro",
  8544. height: math.unit(2, "inches"),
  8545. default: true
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(3 + 1 / 12, "feet"),
  8554. weight: math.unit(21.7, "lbs"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/argent/front.svg",
  8558. extra: 1471 / 1331,
  8559. bottom: 100.8 / 1575.5
  8560. }
  8561. }
  8562. },
  8563. [
  8564. {
  8565. name: "Micro",
  8566. height: math.unit(2, "inches")
  8567. },
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(3 + 1 / 12, "feet"),
  8571. default: true
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(120, "feet")
  8576. },
  8577. ]
  8578. ))
  8579. characterMakers.push(() => makeCharacter(
  8580. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8581. {
  8582. lamp: {
  8583. height: math.unit(7 * 1559 / 989, "feet"),
  8584. name: "Magic Lamp",
  8585. image: {
  8586. source: "./media/characters/mira-al-cul/lamp.svg",
  8587. extra: 1617 / 1559
  8588. }
  8589. },
  8590. front: {
  8591. height: math.unit(7, "feet"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/mira-al-cul/front.svg",
  8595. extra: 1044 / 990
  8596. }
  8597. },
  8598. },
  8599. [
  8600. {
  8601. name: "Heavily Restricted",
  8602. height: math.unit(7 * 1559 / 989, "feet")
  8603. },
  8604. {
  8605. name: "Freshly Freed",
  8606. height: math.unit(50 * 1559 / 989, "feet")
  8607. },
  8608. {
  8609. name: "World Encompassing",
  8610. height: math.unit(10000 * 1559 / 989, "miles")
  8611. },
  8612. {
  8613. name: "Galactic",
  8614. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8615. },
  8616. {
  8617. name: "Palmed Universe",
  8618. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Multiversal Matriarch",
  8623. height: math.unit(8.87e10, "yottameters")
  8624. },
  8625. {
  8626. name: "Void Mother",
  8627. height: math.unit(3.14e110, "yottaparsecs")
  8628. },
  8629. {
  8630. name: "Toying with Transcendence",
  8631. height: math.unit(1e307, "meters")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8637. {
  8638. front: {
  8639. height: math.unit(17 + 1 / 12, "feet"),
  8640. weight: math.unit(476.2 * 5, "lbs"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/kuro-shi-uchū/front.svg",
  8644. extra: 2329 / 1835,
  8645. bottom: 0.02
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Micro",
  8652. height: math.unit(2, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(12, "meters")
  8657. },
  8658. {
  8659. name: "Planetary",
  8660. height: math.unit(0.00929, "AU"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Universal",
  8665. height: math.unit(20, "gigaparsecs")
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(5 + 2 / 12, "feet"),
  8674. weight: math.unit(120, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/katherine/front.svg",
  8678. extra: 2075 / 1969
  8679. }
  8680. },
  8681. dress: {
  8682. height: math.unit(5 + 2 / 12, "feet"),
  8683. weight: math.unit(120, "lbs"),
  8684. name: "Dress",
  8685. image: {
  8686. source: "./media/characters/katherine/dress.svg",
  8687. extra: 2258 / 2064
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(1, "inches"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(5 + 2 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(100, "meters")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(80, "miles")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(7 + 8 / 12, "feet"),
  8716. weight: math.unit(250, "lbs"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/yevis/front.svg",
  8720. extra: 1938 / 1755
  8721. }
  8722. }
  8723. },
  8724. [
  8725. {
  8726. name: "Mortal",
  8727. height: math.unit(7 + 8 / 12, "feet")
  8728. },
  8729. {
  8730. name: "Battle",
  8731. height: math.unit(25 + 11 / 12, "feet")
  8732. },
  8733. {
  8734. name: "Wrath",
  8735. height: math.unit(1654 + 11 / 12, "feet")
  8736. },
  8737. {
  8738. name: "Planet Destroyer",
  8739. height: math.unit(12000, "miles")
  8740. },
  8741. {
  8742. name: "Galaxy Conqueror",
  8743. height: math.unit(1.45, "zettameters"),
  8744. default: true
  8745. },
  8746. {
  8747. name: "Universal War",
  8748. height: math.unit(184, "gigaparsecs")
  8749. },
  8750. {
  8751. name: "Eternity War",
  8752. height: math.unit(1.98e55, "yottaparsecs")
  8753. },
  8754. ]
  8755. ))
  8756. characterMakers.push(() => makeCharacter(
  8757. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8758. {
  8759. front: {
  8760. height: math.unit(5 + 8 / 12, "feet"),
  8761. weight: math.unit(63, "kg"),
  8762. name: "Front",
  8763. image: {
  8764. source: "./media/characters/xavier/front.svg",
  8765. extra: 944 / 883
  8766. }
  8767. },
  8768. frontStretch: {
  8769. height: math.unit(5 + 8 / 12, "feet"),
  8770. weight: math.unit(63, "kg"),
  8771. name: "Stretching",
  8772. image: {
  8773. source: "./media/characters/xavier/front-stretch.svg",
  8774. extra: 962 / 820
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(5 + 8 / 12, "feet")
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(100, "meters"),
  8786. default: true
  8787. },
  8788. {
  8789. name: "McLargeHuge",
  8790. height: math.unit(10, "miles")
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(5 + 5 / 12, "feet"),
  8799. weight: math.unit(150, "lb"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/joshii/front.svg",
  8803. extra: 765 / 653,
  8804. bottom: 51 / 816
  8805. }
  8806. },
  8807. foot: {
  8808. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8809. name: "Foot",
  8810. image: {
  8811. source: "./media/characters/joshii/foot.svg"
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Micro",
  8818. height: math.unit(2, "inches"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(5 + 5 / 12, "feet")
  8824. },
  8825. {
  8826. name: "Macro",
  8827. height: math.unit(785, "feet")
  8828. },
  8829. {
  8830. name: "Megamacro",
  8831. height: math.unit(24.5, "miles")
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8837. {
  8838. front: {
  8839. height: math.unit(6, "feet"),
  8840. weight: math.unit(150, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/goddess-elizabeth/front.svg",
  8844. extra: 1800 / 1525,
  8845. bottom: 0.005
  8846. }
  8847. },
  8848. foot: {
  8849. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8850. name: "Foot",
  8851. image: {
  8852. source: "./media/characters/goddess-elizabeth/foot.svg"
  8853. }
  8854. },
  8855. mouth: {
  8856. height: math.unit(6, "feet"),
  8857. name: "Mouth",
  8858. image: {
  8859. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Micro",
  8866. height: math.unit(12, "feet")
  8867. },
  8868. {
  8869. name: "Normal",
  8870. height: math.unit(80, "miles"),
  8871. default: true
  8872. },
  8873. {
  8874. name: "Macro",
  8875. height: math.unit(15000, "parsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 9 / 12, "feet"),
  8884. weight: math.unit(144, "lb"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/kara/front.svg"
  8888. }
  8889. },
  8890. feet: {
  8891. height: math.unit(6 / 6.765, "feet"),
  8892. name: "Kara's Feet",
  8893. rename: true,
  8894. image: {
  8895. source: "./media/characters/kara/feet.svg"
  8896. }
  8897. },
  8898. },
  8899. [
  8900. {
  8901. name: "Normal",
  8902. height: math.unit(5 + 9 / 12, "feet")
  8903. },
  8904. {
  8905. name: "Macro",
  8906. height: math.unit(174, "feet"),
  8907. default: true
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(18, "feet"),
  8916. weight: math.unit(4050, "lb"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/tyrone/front.svg",
  8920. extra: 2405 / 2270,
  8921. bottom: 182 / 2587
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(18, "feet"),
  8929. default: true
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(300, "feet")
  8934. },
  8935. {
  8936. name: "Megamacro",
  8937. height: math.unit(15, "km")
  8938. },
  8939. {
  8940. name: "Gigamacro",
  8941. height: math.unit(500, "km")
  8942. },
  8943. {
  8944. name: "Teramacro",
  8945. height: math.unit(0.5, "gigameters")
  8946. },
  8947. {
  8948. name: "Omnimacro",
  8949. height: math.unit(1e252, "yottauniverse")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(7 + 8 / 12, "feet"),
  8958. weight: math.unit(120, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/danny/front.svg",
  8962. extra: 1490 / 1350
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(7 + 8 / 12, "feet"),
  8967. weight: math.unit(120, "lb"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/danny/back.svg",
  8971. extra: 1490 / 1350
  8972. }
  8973. },
  8974. },
  8975. [
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(7 + 8 / 12, "feet"),
  8979. default: true
  8980. },
  8981. ]
  8982. ))
  8983. characterMakers.push(() => makeCharacter(
  8984. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8985. {
  8986. front: {
  8987. height: math.unit(3.5, "inches"),
  8988. weight: math.unit(19, "grams"),
  8989. name: "Front",
  8990. image: {
  8991. source: "./media/characters/mallow/front.svg",
  8992. extra: 471 / 431
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(3.5, "inches"),
  8997. weight: math.unit(19, "grams"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/mallow/back.svg",
  9001. extra: 471 / 431
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(3.5, "inches"),
  9009. default: true
  9010. },
  9011. ]
  9012. ))
  9013. characterMakers.push(() => makeCharacter(
  9014. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9015. {
  9016. front: {
  9017. height: math.unit(9, "feet"),
  9018. weight: math.unit(230, "kg"),
  9019. name: "Front",
  9020. image: {
  9021. source: "./media/characters/starry-aqua/front.svg"
  9022. }
  9023. },
  9024. back: {
  9025. height: math.unit(9, "feet"),
  9026. weight: math.unit(230, "kg"),
  9027. name: "Back",
  9028. image: {
  9029. source: "./media/characters/starry-aqua/back.svg"
  9030. }
  9031. },
  9032. hand: {
  9033. height: math.unit(9 * 0.1168, "feet"),
  9034. name: "Hand",
  9035. image: {
  9036. source: "./media/characters/starry-aqua/hand.svg"
  9037. }
  9038. },
  9039. foot: {
  9040. height: math.unit(9 * 0.18, "feet"),
  9041. name: "Foot",
  9042. image: {
  9043. source: "./media/characters/starry-aqua/foot.svg"
  9044. }
  9045. }
  9046. },
  9047. [
  9048. {
  9049. name: "Micro",
  9050. height: math.unit(3, "inches")
  9051. },
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(9, "feet")
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(300, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Megamacro",
  9063. height: math.unit(3200, "feet")
  9064. }
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(15, "feet"),
  9072. weight: math.unit(5026, "lb"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/luka-towers/front.svg",
  9076. extra: 1269/1133,
  9077. bottom: 51/1320
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(15, "feet"),
  9085. default: true
  9086. },
  9087. {
  9088. name: "Minimacro",
  9089. height: math.unit(25, "feet")
  9090. },
  9091. {
  9092. name: "Macro",
  9093. height: math.unit(320, "feet")
  9094. },
  9095. {
  9096. name: "Megamacro",
  9097. height: math.unit(35000, "feet")
  9098. },
  9099. {
  9100. name: "Gigamacro",
  9101. height: math.unit(4000, "miles")
  9102. },
  9103. {
  9104. name: "Teramacro",
  9105. height: math.unit(15000, "miles")
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(150, "lb"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/natalie-nightring/front.svg",
  9118. extra: 1,
  9119. bottom: 0.06
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Uh Oh",
  9126. height: math.unit(0.1, "mm")
  9127. },
  9128. {
  9129. name: "Small",
  9130. height: math.unit(3, "inches")
  9131. },
  9132. {
  9133. name: "Human Scale",
  9134. height: math.unit(6, "feet")
  9135. },
  9136. {
  9137. name: "Librarian",
  9138. height: math.unit(50, "feet"),
  9139. default: true
  9140. },
  9141. {
  9142. name: "Immense",
  9143. height: math.unit(200, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(6, "feet"),
  9152. weight: math.unit(180, "lbs"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/danni-rosie/front.svg",
  9156. extra: 1260 / 1128,
  9157. bottom: 0.022
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. weight: math.unit(220, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/samantha-kruse/front.svg",
  9178. extra: (985 / 935),
  9179. bottom: 0.03
  9180. }
  9181. },
  9182. frontUndressed: {
  9183. height: math.unit(5 + 9 / 12, "feet"),
  9184. weight: math.unit(220, "lb"),
  9185. name: "Front (Undressed)",
  9186. image: {
  9187. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9188. extra: (973 / 923),
  9189. bottom: 0.025
  9190. }
  9191. },
  9192. fat: {
  9193. height: math.unit(5 + 9 / 12, "feet"),
  9194. weight: math.unit(900, "lb"),
  9195. name: "Front (Fat)",
  9196. image: {
  9197. source: "./media/characters/samantha-kruse/fat.svg",
  9198. extra: 2688 / 2561
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5 + 9 / 12, "feet"),
  9206. default: true
  9207. }
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9212. {
  9213. back: {
  9214. height: math.unit(5 + 4 / 12, "feet"),
  9215. weight: math.unit(4963, "lb"),
  9216. name: "Back",
  9217. image: {
  9218. source: "./media/characters/amelia-rosie/back.svg",
  9219. extra: 1113 / 963,
  9220. bottom: 0.01
  9221. }
  9222. },
  9223. },
  9224. [
  9225. {
  9226. name: "Level 0",
  9227. height: math.unit(5 + 4 / 12, "feet")
  9228. },
  9229. {
  9230. name: "Level 1",
  9231. height: math.unit(164597, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Level 2",
  9236. height: math.unit(956243, "miles")
  9237. },
  9238. {
  9239. name: "Level 3",
  9240. height: math.unit(29421709423, "miles")
  9241. },
  9242. {
  9243. name: "Level 4",
  9244. height: math.unit(154, "lightyears")
  9245. },
  9246. {
  9247. name: "Level 5",
  9248. height: math.unit(4738272, "lightyears")
  9249. },
  9250. {
  9251. name: "Level 6",
  9252. height: math.unit(145787152896, "lightyears")
  9253. },
  9254. ]
  9255. ))
  9256. characterMakers.push(() => makeCharacter(
  9257. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9258. {
  9259. front: {
  9260. height: math.unit(5 + 11 / 12, "feet"),
  9261. weight: math.unit(65, "kg"),
  9262. name: "Front",
  9263. image: {
  9264. source: "./media/characters/rook-kitara/front.svg",
  9265. extra: 1347 / 1274,
  9266. bottom: 0.005
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Totally Unfair",
  9273. height: math.unit(1.8, "mm")
  9274. },
  9275. {
  9276. name: "Lap Rookie",
  9277. height: math.unit(1.4, "feet")
  9278. },
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(5 + 11 / 12, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "How Did This Happen",
  9286. height: math.unit(80, "miles")
  9287. }
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(7, "feet"),
  9295. weight: math.unit(300, "lb"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/pisces/front.svg",
  9299. extra: 2255 / 2115,
  9300. bottom: 0.03
  9301. }
  9302. },
  9303. back: {
  9304. height: math.unit(7, "feet"),
  9305. weight: math.unit(300, "lb"),
  9306. name: "Back",
  9307. image: {
  9308. source: "./media/characters/pisces/back.svg",
  9309. extra: 2146 / 2055,
  9310. bottom: 0.04
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Normal",
  9317. height: math.unit(7, "feet"),
  9318. default: true
  9319. },
  9320. {
  9321. name: "Swimming Pool",
  9322. height: math.unit(12.2, "meters")
  9323. },
  9324. {
  9325. name: "Olympic Swimming Pool",
  9326. height: math.unit(56.3, "meters")
  9327. },
  9328. {
  9329. name: "Lake Superior",
  9330. height: math.unit(93900, "meters")
  9331. },
  9332. {
  9333. name: "Mediterranean Sea",
  9334. height: math.unit(644457, "meters")
  9335. },
  9336. {
  9337. name: "World's Oceans",
  9338. height: math.unit(4567491, "meters")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(2.3, "meters"),
  9347. weight: math.unit(120, "kg"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/zelas/front.svg"
  9351. }
  9352. },
  9353. side: {
  9354. height: math.unit(2.3, "meters"),
  9355. weight: math.unit(120, "kg"),
  9356. name: "Side",
  9357. image: {
  9358. source: "./media/characters/zelas/side.svg"
  9359. }
  9360. },
  9361. back: {
  9362. height: math.unit(2.3, "meters"),
  9363. weight: math.unit(120, "kg"),
  9364. name: "Back",
  9365. image: {
  9366. source: "./media/characters/zelas/back.svg"
  9367. }
  9368. },
  9369. foot: {
  9370. height: math.unit(1.116, "feet"),
  9371. name: "Foot",
  9372. image: {
  9373. source: "./media/characters/zelas/foot.svg"
  9374. }
  9375. },
  9376. },
  9377. [
  9378. {
  9379. name: "Normal",
  9380. height: math.unit(2.3, "meters")
  9381. },
  9382. {
  9383. name: "Macro",
  9384. height: math.unit(30, "meters"),
  9385. default: true
  9386. },
  9387. ]
  9388. ))
  9389. characterMakers.push(() => makeCharacter(
  9390. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9391. {
  9392. front: {
  9393. height: math.unit(1, "inch"),
  9394. weight: math.unit(0.21, "grams"),
  9395. name: "Front",
  9396. image: {
  9397. source: "./media/characters/talbot/front.svg",
  9398. extra: 594 / 544
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(1, "inch"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9412. {
  9413. front: {
  9414. height: math.unit(3 + 3 / 12, "feet"),
  9415. weight: math.unit(51.8, "lb"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/fliss/front.svg",
  9419. extra: 840 / 640
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Teeny Tiny",
  9426. height: math.unit(1, "mm")
  9427. },
  9428. {
  9429. name: "Small",
  9430. height: math.unit(1, "inch"),
  9431. default: true
  9432. },
  9433. {
  9434. name: "Standard Sylveon",
  9435. height: math.unit(3 + 3 / 12, "feet")
  9436. },
  9437. {
  9438. name: "Large Nuisance",
  9439. height: math.unit(33, "feet")
  9440. },
  9441. {
  9442. name: "City Filler",
  9443. height: math.unit(3000, "feet")
  9444. },
  9445. {
  9446. name: "New Horizon",
  9447. height: math.unit(6000, "miles")
  9448. },
  9449. ]
  9450. ))
  9451. characterMakers.push(() => makeCharacter(
  9452. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9453. {
  9454. front: {
  9455. height: math.unit(5, "cm"),
  9456. weight: math.unit(1.94, "g"),
  9457. name: "Front",
  9458. image: {
  9459. source: "./media/characters/fleta/front.svg",
  9460. extra: 835 / 803
  9461. }
  9462. },
  9463. back: {
  9464. height: math.unit(5, "cm"),
  9465. weight: math.unit(1.94, "g"),
  9466. name: "Back",
  9467. image: {
  9468. source: "./media/characters/fleta/back.svg",
  9469. extra: 835 / 803
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(5, "cm"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(6, "feet"),
  9486. weight: math.unit(225, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/dominic/front.svg",
  9490. extra: 1770 / 1620,
  9491. bottom: 0.025
  9492. }
  9493. },
  9494. back: {
  9495. height: math.unit(6, "feet"),
  9496. weight: math.unit(225, "lb"),
  9497. name: "Back",
  9498. image: {
  9499. source: "./media/characters/dominic/back.svg",
  9500. extra: 1745 / 1620,
  9501. bottom: 0.065
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Nano",
  9508. height: math.unit(0.1, "mm")
  9509. },
  9510. {
  9511. name: "Micro-",
  9512. height: math.unit(1, "mm")
  9513. },
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(4, "inches")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6 + 4 / 12, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(115, "feet")
  9526. },
  9527. {
  9528. name: "Macro+",
  9529. height: math.unit(955, "feet")
  9530. },
  9531. {
  9532. name: "Megamacro",
  9533. height: math.unit(8990, "feet")
  9534. },
  9535. {
  9536. name: "Gigmacro",
  9537. height: math.unit(9310, "miles")
  9538. },
  9539. {
  9540. name: "Teramacro",
  9541. height: math.unit(1567005010, "miles")
  9542. },
  9543. {
  9544. name: "Examacro",
  9545. height: math.unit(1425, "parsecs")
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9551. {
  9552. front: {
  9553. height: math.unit(400, "feet"),
  9554. weight: math.unit(44444444, "lb"),
  9555. name: "Front",
  9556. image: {
  9557. source: "./media/characters/major-colonel/front.svg"
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(400, "feet"),
  9562. weight: math.unit(44444444, "lb"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/major-colonel/back.svg"
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(400, "feet"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9579. {
  9580. catFront: {
  9581. height: math.unit(6, "feet"),
  9582. weight: math.unit(120, "lb"),
  9583. name: "Front (Cat Side)",
  9584. image: {
  9585. source: "./media/characters/axel-lycan/cat-front.svg",
  9586. extra: 430 / 402,
  9587. bottom: 43 / 472.35
  9588. }
  9589. },
  9590. catBack: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(120, "lb"),
  9593. name: "Back (Cat Side)",
  9594. image: {
  9595. source: "./media/characters/axel-lycan/cat-back.svg",
  9596. extra: 447 / 419,
  9597. bottom: 23.3 / 469
  9598. }
  9599. },
  9600. wolfFront: {
  9601. height: math.unit(6, "feet"),
  9602. weight: math.unit(120, "lb"),
  9603. name: "Front (Wolf Side)",
  9604. image: {
  9605. source: "./media/characters/axel-lycan/wolf-front.svg",
  9606. extra: 485 / 456,
  9607. bottom: 19 / 504
  9608. }
  9609. },
  9610. wolfBack: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(120, "lb"),
  9613. name: "Back (Wolf Side)",
  9614. image: {
  9615. source: "./media/characters/axel-lycan/wolf-back.svg",
  9616. extra: 475 / 438,
  9617. bottom: 39.2 / 514
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(1, "km"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5 + 9 / 12, "feet"),
  9634. weight: math.unit(175, "lb"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/vanrel-hyena/front.svg",
  9638. extra: 1086 / 1010,
  9639. bottom: 0.04
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(5 + 9 / 12, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(103, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/abbott-absol/front.svg",
  9660. extra: 2010 / 1842
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Megamicro",
  9667. height: math.unit(0.1, "mm")
  9668. },
  9669. {
  9670. name: "Micro",
  9671. height: math.unit(1, "inch")
  9672. },
  9673. {
  9674. name: "Normal",
  9675. height: math.unit(6, "feet"),
  9676. default: true
  9677. },
  9678. ]
  9679. ))
  9680. characterMakers.push(() => makeCharacter(
  9681. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9682. {
  9683. front: {
  9684. height: math.unit(6, "feet"),
  9685. weight: math.unit(264, "lb"),
  9686. name: "Front",
  9687. image: {
  9688. source: "./media/characters/hector/front.svg",
  9689. extra: 2280 / 2130,
  9690. bottom: 0.07
  9691. }
  9692. },
  9693. },
  9694. [
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(12.25, "foot"),
  9698. default: true
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(160, "feet")
  9703. },
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9708. {
  9709. front: {
  9710. height: math.unit(6, "feet"),
  9711. weight: math.unit(150, "lb"),
  9712. name: "Front",
  9713. image: {
  9714. source: "./media/characters/sal/front.svg",
  9715. extra: 1846 / 1699,
  9716. bottom: 0.04
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(10, "miles"),
  9724. default: true
  9725. },
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9730. {
  9731. front: {
  9732. height: math.unit(3, "meters"),
  9733. weight: math.unit(450, "kg"),
  9734. name: "front",
  9735. image: {
  9736. source: "./media/characters/ranger/front.svg",
  9737. extra: 2401 / 2243,
  9738. bottom: 0.05
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(3, "meters"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(14, "feet"),
  9755. weight: math.unit(800, "kg"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/theresa/front.svg",
  9759. extra: 3575 / 3346,
  9760. bottom: 0.03
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(14, "feet"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(3, "kg"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/ine/front.svg",
  9781. extra: 678 / 539,
  9782. bottom: 0.023
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(2.265, "feet"),
  9790. default: true
  9791. },
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(5, "feet"),
  9799. weight: math.unit(30, "kg"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/vial/front.svg",
  9803. extra: 1365 / 1277,
  9804. bottom: 0.04
  9805. }
  9806. },
  9807. },
  9808. [
  9809. {
  9810. name: "Normal",
  9811. height: math.unit(5, "feet"),
  9812. default: true
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9818. {
  9819. side: {
  9820. height: math.unit(3.4, "meters"),
  9821. weight: math.unit(1000, "lb"),
  9822. name: "Side",
  9823. image: {
  9824. source: "./media/characters/rovoska/side.svg",
  9825. extra: 4403 / 1515
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(3.4, "meters"),
  9833. default: true
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(8, "feet"),
  9842. weight: math.unit(315, "lb"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/gunner-rotthbauer/front.svg"
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(8, "feet"),
  9850. weight: math.unit(315, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/gunner-rotthbauer/back.svg"
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Micro",
  9860. height: math.unit(3.5, "inches")
  9861. },
  9862. {
  9863. name: "Normal",
  9864. height: math.unit(8, "feet"),
  9865. default: true
  9866. },
  9867. {
  9868. name: "Macro",
  9869. height: math.unit(250, "feet")
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(1, "AU")
  9874. },
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9879. {
  9880. front: {
  9881. height: math.unit(5 + 5 / 12, "feet"),
  9882. weight: math.unit(140, "lb"),
  9883. name: "Front",
  9884. image: {
  9885. source: "./media/characters/allatia/front.svg",
  9886. extra: 1227 / 1180,
  9887. bottom: 0.027
  9888. }
  9889. },
  9890. },
  9891. [
  9892. {
  9893. name: "Normal",
  9894. height: math.unit(5 + 5 / 12, "feet")
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(250, "feet"),
  9899. default: true
  9900. },
  9901. {
  9902. name: "Megamacro",
  9903. height: math.unit(8, "miles")
  9904. }
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(120, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/tene/front.svg",
  9916. extra: 1728 / 1578,
  9917. bottom: 0.022
  9918. }
  9919. },
  9920. stomping: {
  9921. height: math.unit(2.025, "meters"),
  9922. weight: math.unit(120, "lb"),
  9923. name: "Stomping",
  9924. image: {
  9925. source: "./media/characters/tene/stomping.svg",
  9926. extra: 938 / 873,
  9927. bottom: 0.01
  9928. }
  9929. },
  9930. sitting: {
  9931. height: math.unit(1, "meter"),
  9932. weight: math.unit(120, "lb"),
  9933. name: "Sitting",
  9934. image: {
  9935. source: "./media/characters/tene/sitting.svg",
  9936. extra: 437 / 415,
  9937. bottom: 0.1
  9938. }
  9939. },
  9940. feral: {
  9941. height: math.unit(3.9, "feet"),
  9942. weight: math.unit(250, "lb"),
  9943. name: "Feral",
  9944. image: {
  9945. source: "./media/characters/tene/feral.svg",
  9946. extra: 717 / 458,
  9947. bottom: 0.179
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(6, "feet")
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(300, "feet"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Megamacro",
  9963. height: math.unit(5, "miles")
  9964. },
  9965. ]
  9966. ))
  9967. characterMakers.push(() => makeCharacter(
  9968. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9969. {
  9970. side: {
  9971. height: math.unit(6, "feet"),
  9972. name: "Side",
  9973. image: {
  9974. source: "./media/characters/evander/side.svg",
  9975. extra: 877 / 477
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(0.83, "meters"),
  9983. default: true
  9984. },
  9985. ]
  9986. ))
  9987. characterMakers.push(() => makeCharacter(
  9988. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9989. {
  9990. front: {
  9991. height: math.unit(12, "feet"),
  9992. weight: math.unit(1000, "lb"),
  9993. name: "Front",
  9994. image: {
  9995. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9996. extra: 1762 / 1611
  9997. }
  9998. },
  9999. back: {
  10000. height: math.unit(12, "feet"),
  10001. weight: math.unit(1000, "lb"),
  10002. name: "Back",
  10003. image: {
  10004. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10005. extra: 1762 / 1611
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(12, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Kaiju",
  10017. height: math.unit(150, "feet")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(150, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/zero-alurus/front.svg"
  10030. }
  10031. },
  10032. back: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(150, "lb"),
  10035. name: "Back",
  10036. image: {
  10037. source: "./media/characters/zero-alurus/back.svg"
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Normal",
  10044. height: math.unit(5 + 10 / 12, "feet")
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(60, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(450, "feet")
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(200, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/mega-shi/front.svg",
  10066. extra: 1279 / 1250,
  10067. bottom: 0.02
  10068. }
  10069. },
  10070. back: {
  10071. height: math.unit(6, "feet"),
  10072. weight: math.unit(200, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/mega-shi/back.svg",
  10076. extra: 1279 / 1250,
  10077. bottom: 0.02
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Micro",
  10084. height: math.unit(16 + 6 / 12, "feet")
  10085. },
  10086. {
  10087. name: "Third Dimension",
  10088. height: math.unit(40, "meters")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(660, "feet"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "Megamacro",
  10097. height: math.unit(10, "miles")
  10098. },
  10099. {
  10100. name: "Planetary Launch",
  10101. height: math.unit(500, "miles")
  10102. },
  10103. {
  10104. name: "Interstellar",
  10105. height: math.unit(1e9, "miles")
  10106. },
  10107. {
  10108. name: "Leaving the Universe",
  10109. height: math.unit(1, "gigaparsec")
  10110. },
  10111. {
  10112. name: "Travelling Universes",
  10113. height: math.unit(30e15, "parsecs")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(5 + 4/12, "feet"),
  10122. weight: math.unit(120, "lb"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/odyssey/front.svg",
  10126. extra: 1747/1571,
  10127. bottom: 47/1794
  10128. }
  10129. },
  10130. side: {
  10131. height: math.unit(5.1, "feet"),
  10132. weight: math.unit(120, "lb"),
  10133. name: "Side",
  10134. image: {
  10135. source: "./media/characters/odyssey/side.svg",
  10136. extra: 1847/1619,
  10137. bottom: 47/1894
  10138. }
  10139. },
  10140. lounging: {
  10141. height: math.unit(1.464, "feet"),
  10142. weight: math.unit(120, "lb"),
  10143. name: "Lounging",
  10144. image: {
  10145. source: "./media/characters/odyssey/lounging.svg",
  10146. extra: 1235/837,
  10147. bottom: 551/1786
  10148. }
  10149. },
  10150. },
  10151. [
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(5 + 4 / 12, "feet")
  10155. },
  10156. {
  10157. name: "Macro",
  10158. height: math.unit(1, "km")
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(3000, "km")
  10163. },
  10164. {
  10165. name: "Gigamacro",
  10166. height: math.unit(1, "AU"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Omniversal",
  10171. height: math.unit(100e14, "lightyears")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(300, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/mekuto/front.svg",
  10184. extra: 921 / 832,
  10185. bottom: 0.03
  10186. }
  10187. },
  10188. hand: {
  10189. height: math.unit(6 / 10.24, "feet"),
  10190. name: "Hand",
  10191. image: {
  10192. source: "./media/characters/mekuto/hand.svg"
  10193. }
  10194. },
  10195. foot: {
  10196. height: math.unit(6 / 5.05, "feet"),
  10197. name: "Foot",
  10198. image: {
  10199. source: "./media/characters/mekuto/foot.svg"
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Minimicro",
  10206. height: math.unit(0.2, "inches")
  10207. },
  10208. {
  10209. name: "Micro",
  10210. height: math.unit(1.5, "inches")
  10211. },
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(5 + 11 / 12, "feet"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Minimacro",
  10219. height: math.unit(17 + 9 / 12, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(177.5, "feet")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(152, "miles")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10233. {
  10234. front: {
  10235. height: math.unit(6.5, "inches"),
  10236. weight: math.unit(13, "oz"),
  10237. name: "Front",
  10238. image: {
  10239. source: "./media/characters/dafydd-tomos/front.svg",
  10240. extra: 2990 / 2603,
  10241. bottom: 0.03
  10242. }
  10243. },
  10244. },
  10245. [
  10246. {
  10247. name: "Micro",
  10248. height: math.unit(6.5, "inches"),
  10249. default: true
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/splinter/front.svg",
  10262. extra: 2990 / 2882,
  10263. bottom: 0.04
  10264. }
  10265. },
  10266. back: {
  10267. height: math.unit(6, "feet"),
  10268. weight: math.unit(150, "lb"),
  10269. name: "Back",
  10270. image: {
  10271. source: "./media/characters/splinter/back.svg",
  10272. extra: 2990 / 2882,
  10273. bottom: 0.04
  10274. }
  10275. },
  10276. },
  10277. [
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(6, "feet")
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(230, "meters"),
  10285. default: true
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(4 + 10 / 12, "feet"),
  10294. weight: math.unit(480, "lb"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/snow-gabumon/front.svg",
  10298. extra: 1140 / 963,
  10299. bottom: 0.058
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(4 + 10 / 12, "feet"),
  10304. weight: math.unit(480, "lb"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/snow-gabumon/back.svg",
  10308. extra: 1115 / 962,
  10309. bottom: 0.041
  10310. }
  10311. },
  10312. frontUndresed: {
  10313. height: math.unit(4 + 10 / 12, "feet"),
  10314. weight: math.unit(480, "lb"),
  10315. name: "Front (Undressed)",
  10316. image: {
  10317. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10318. extra: 1061 / 960,
  10319. bottom: 0.045
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(1, "inch")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(4 + 10 / 12, "feet"),
  10331. default: true
  10332. },
  10333. {
  10334. name: "Macro",
  10335. height: math.unit(200, "feet")
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(120, "miles")
  10340. },
  10341. {
  10342. name: "Gigamacro",
  10343. height: math.unit(9800, "miles")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(1.7, "meters"),
  10352. weight: math.unit(140, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/moody/front.svg",
  10356. extra: 3226 / 3007,
  10357. bottom: 0.087
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Micro",
  10364. height: math.unit(1, "mm")
  10365. },
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(1.7, "meters"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(80, "meters")
  10374. },
  10375. {
  10376. name: "Macro+",
  10377. height: math.unit(500, "meters")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(150, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/zyas/front.svg",
  10390. extra: 1180 / 1120,
  10391. bottom: 0.045
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(10, "feet"),
  10399. default: true
  10400. },
  10401. {
  10402. name: "Macro",
  10403. height: math.unit(500, "feet")
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(5, "miles")
  10408. },
  10409. {
  10410. name: "Teramacro",
  10411. height: math.unit(150000, "miles")
  10412. },
  10413. ]
  10414. ))
  10415. characterMakers.push(() => makeCharacter(
  10416. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10417. {
  10418. front: {
  10419. height: math.unit(6, "feet"),
  10420. weight: math.unit(150, "lb"),
  10421. name: "Front",
  10422. image: {
  10423. source: "./media/characters/cuon/front.svg",
  10424. extra: 1390 / 1320,
  10425. bottom: 0.008
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Micro",
  10432. height: math.unit(3, "inches")
  10433. },
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(18 + 9 / 12, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(360, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(360, "miles")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(2.4, "meters"),
  10454. weight: math.unit(70, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/nyanuxk/front.svg",
  10458. extra: 1172 / 1084,
  10459. bottom: 0.065
  10460. }
  10461. },
  10462. side: {
  10463. height: math.unit(2.4, "meters"),
  10464. weight: math.unit(70, "kg"),
  10465. name: "Side",
  10466. image: {
  10467. source: "./media/characters/nyanuxk/side.svg",
  10468. extra: 1190 / 1132,
  10469. bottom: 0.007
  10470. }
  10471. },
  10472. back: {
  10473. height: math.unit(2.4, "meters"),
  10474. weight: math.unit(70, "kg"),
  10475. name: "Back",
  10476. image: {
  10477. source: "./media/characters/nyanuxk/back.svg",
  10478. extra: 1200 / 1141,
  10479. bottom: 0.015
  10480. }
  10481. },
  10482. foot: {
  10483. height: math.unit(0.52, "meters"),
  10484. name: "Foot",
  10485. image: {
  10486. source: "./media/characters/nyanuxk/foot.svg"
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Micro",
  10493. height: math.unit(2, "cm")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(2.4, "meters"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Smaller Macro",
  10502. height: math.unit(120, "meters")
  10503. },
  10504. {
  10505. name: "Bigger Macro",
  10506. height: math.unit(1.2, "km")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(15, "kilometers")
  10511. },
  10512. {
  10513. name: "Gigamacro",
  10514. height: math.unit(2000, "km")
  10515. },
  10516. {
  10517. name: "Teramacro",
  10518. height: math.unit(500000, "km")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10524. {
  10525. side: {
  10526. height: math.unit(6, "feet"),
  10527. name: "Side",
  10528. image: {
  10529. source: "./media/characters/ailbhe/side.svg",
  10530. extra: 757 / 464,
  10531. bottom: 0.041
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(1.07, "meters"),
  10539. default: true
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(120, "kg"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/zevulfius/front.svg",
  10552. extra: 965 / 903
  10553. }
  10554. },
  10555. side: {
  10556. height: math.unit(6, "feet"),
  10557. weight: math.unit(120, "kg"),
  10558. name: "Side",
  10559. image: {
  10560. source: "./media/characters/zevulfius/side.svg",
  10561. extra: 939 / 900
  10562. }
  10563. },
  10564. back: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(120, "kg"),
  10567. name: "Back",
  10568. image: {
  10569. source: "./media/characters/zevulfius/back.svg",
  10570. extra: 918 / 854,
  10571. bottom: 0.005
  10572. }
  10573. },
  10574. foot: {
  10575. height: math.unit(6 / 3.72, "feet"),
  10576. name: "Foot",
  10577. image: {
  10578. source: "./media/characters/zevulfius/foot.svg"
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Macro",
  10585. height: math.unit(750, "meters")
  10586. },
  10587. {
  10588. name: "Megamacro",
  10589. height: math.unit(20, "km"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Gigamacro",
  10594. height: math.unit(2000, "km")
  10595. },
  10596. {
  10597. name: "Teramacro",
  10598. height: math.unit(250000, "km")
  10599. },
  10600. ]
  10601. ))
  10602. characterMakers.push(() => makeCharacter(
  10603. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10604. {
  10605. front: {
  10606. height: math.unit(100, "feet"),
  10607. weight: math.unit(350, "kg"),
  10608. name: "Front",
  10609. image: {
  10610. source: "./media/characters/rikes/front.svg",
  10611. extra: 1565 / 1483,
  10612. bottom: 0.017
  10613. }
  10614. },
  10615. },
  10616. [
  10617. {
  10618. name: "Macro",
  10619. height: math.unit(100, "feet"),
  10620. default: true
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(8, "feet"),
  10629. weight: math.unit(356, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/adam-silver-mane/front.svg",
  10633. extra: 1036/937,
  10634. bottom: 63/1099
  10635. }
  10636. },
  10637. side: {
  10638. height: math.unit(8, "feet"),
  10639. weight: math.unit(356, "lb"),
  10640. name: "Side",
  10641. image: {
  10642. source: "./media/characters/adam-silver-mane/side.svg",
  10643. extra: 997/901,
  10644. bottom: 59/1056
  10645. }
  10646. },
  10647. frontNsfw: {
  10648. height: math.unit(8, "feet"),
  10649. weight: math.unit(356, "lb"),
  10650. name: "Front (NSFW)",
  10651. image: {
  10652. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10653. extra: 1036/937,
  10654. bottom: 63/1099
  10655. }
  10656. },
  10657. sideNsfw: {
  10658. height: math.unit(8, "feet"),
  10659. weight: math.unit(356, "lb"),
  10660. name: "Side (NSFW)",
  10661. image: {
  10662. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10663. extra: 997/901,
  10664. bottom: 59/1056
  10665. }
  10666. },
  10667. dick: {
  10668. height: math.unit(2.1, "feet"),
  10669. name: "Dick",
  10670. image: {
  10671. source: "./media/characters/adam-silver-mane/dick.svg"
  10672. }
  10673. },
  10674. taur: {
  10675. height: math.unit(16, "feet"),
  10676. weight: math.unit(1500, "kg"),
  10677. name: "Taur",
  10678. image: {
  10679. source: "./media/characters/adam-silver-mane/taur.svg",
  10680. extra: 1713 / 1571,
  10681. bottom: 0.01
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(8, "feet")
  10689. },
  10690. {
  10691. name: "Minimacro",
  10692. height: math.unit(80, "feet")
  10693. },
  10694. {
  10695. name: "MDA",
  10696. height: math.unit(80, "meters")
  10697. },
  10698. {
  10699. name: "Macro",
  10700. height: math.unit(800, "feet"),
  10701. default: true
  10702. },
  10703. {
  10704. name: "Megamacro",
  10705. height: math.unit(8000, "feet")
  10706. },
  10707. {
  10708. name: "Gigamacro",
  10709. height: math.unit(800, "miles")
  10710. },
  10711. {
  10712. name: "Teramacro",
  10713. height: math.unit(80000, "miles")
  10714. },
  10715. {
  10716. name: "Celestial",
  10717. height: math.unit(8e6, "miles")
  10718. },
  10719. {
  10720. name: "Star Dragon",
  10721. height: math.unit(800000, "parsecs")
  10722. },
  10723. {
  10724. name: "Godly",
  10725. height: math.unit(800, "teraparsecs")
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10731. {
  10732. front: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(150, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/ky'owin/front.svg",
  10738. extra: 3888 / 3068,
  10739. bottom: 0.015
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(6 + 8 / 12, "feet")
  10747. },
  10748. {
  10749. name: "Large",
  10750. height: math.unit(68, "feet")
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(132, "feet")
  10755. },
  10756. {
  10757. name: "Macro+",
  10758. height: math.unit(340, "feet")
  10759. },
  10760. {
  10761. name: "Macro++",
  10762. height: math.unit(680, "feet"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(1, "mile")
  10768. },
  10769. {
  10770. name: "Megamacro+",
  10771. height: math.unit(10, "miles")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(4, "feet"),
  10780. weight: math.unit(50, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/mal/front.svg",
  10784. extra: 785 / 724,
  10785. bottom: 0.07
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Micro",
  10792. height: math.unit(4, "inches")
  10793. },
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(4, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Macro",
  10801. height: math.unit(200, "feet")
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10807. {
  10808. front: {
  10809. height: math.unit(6, "feet"),
  10810. weight: math.unit(150, "lb"),
  10811. name: "Front",
  10812. image: {
  10813. source: "./media/characters/jordan-deware/front.svg",
  10814. extra: 1191 / 1012
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Nano",
  10821. height: math.unit(0.01, "mm")
  10822. },
  10823. {
  10824. name: "Minimicro",
  10825. height: math.unit(1, "mm")
  10826. },
  10827. {
  10828. name: "Micro",
  10829. height: math.unit(0.5, "inches")
  10830. },
  10831. {
  10832. name: "Normal",
  10833. height: math.unit(4, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Minimacro",
  10838. height: math.unit(40, "meters")
  10839. },
  10840. {
  10841. name: "Small Macro",
  10842. height: math.unit(400, "meters")
  10843. },
  10844. {
  10845. name: "Macro",
  10846. height: math.unit(4, "miles")
  10847. },
  10848. {
  10849. name: "Megamacro",
  10850. height: math.unit(40, "miles")
  10851. },
  10852. {
  10853. name: "Megamacro+",
  10854. height: math.unit(400, "miles")
  10855. },
  10856. {
  10857. name: "Gigamacro",
  10858. height: math.unit(400000, "miles")
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10864. {
  10865. side: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/kimiko/side.svg",
  10871. extra: 600 / 358
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(15, "feet"),
  10879. default: true
  10880. },
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(220, "feet")
  10884. },
  10885. {
  10886. name: "Macro+",
  10887. height: math.unit(1450, "feet")
  10888. },
  10889. {
  10890. name: "Megamacro",
  10891. height: math.unit(11500, "feet")
  10892. },
  10893. {
  10894. name: "Gigamacro",
  10895. height: math.unit(9500, "miles")
  10896. },
  10897. {
  10898. name: "Teramacro",
  10899. height: math.unit(2208005005, "miles")
  10900. },
  10901. {
  10902. name: "Examacro",
  10903. height: math.unit(2750, "parsecs")
  10904. },
  10905. {
  10906. name: "Zettamacro",
  10907. height: math.unit(101500, "parsecs")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(6, "feet"),
  10916. weight: math.unit(70, "kg"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/andrew-sleepy/front.svg"
  10920. }
  10921. },
  10922. side: {
  10923. height: math.unit(6, "feet"),
  10924. weight: math.unit(70, "kg"),
  10925. name: "Side",
  10926. image: {
  10927. source: "./media/characters/andrew-sleepy/side.svg"
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Micro",
  10934. height: math.unit(1, "mm"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/judio/front.svg",
  10948. extra: 1258 / 1110
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(5 + 6 / 12, "feet")
  10956. },
  10957. {
  10958. name: "Macro",
  10959. height: math.unit(1000, "feet"),
  10960. default: true
  10961. },
  10962. {
  10963. name: "Megamacro",
  10964. height: math.unit(10, "miles")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(68, "kg"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/nomaxice/front.svg",
  10977. extra: 1498 / 1073,
  10978. bottom: 0.075
  10979. }
  10980. },
  10981. foot: {
  10982. height: math.unit(1.1, "feet"),
  10983. name: "Foot",
  10984. image: {
  10985. source: "./media/characters/nomaxice/foot.svg"
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(8, "cm")
  10993. },
  10994. {
  10995. name: "Norm",
  10996. height: math.unit(1.82, "m")
  10997. },
  10998. {
  10999. name: "Norm+",
  11000. height: math.unit(8.8, "feet")
  11001. },
  11002. {
  11003. name: "Big",
  11004. height: math.unit(8, "meters"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(18, "meters")
  11010. },
  11011. {
  11012. name: "Macro+",
  11013. height: math.unit(88, "meters")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11019. {
  11020. front: {
  11021. height: math.unit(12, "feet"),
  11022. weight: math.unit(1.5, "tons"),
  11023. name: "Front",
  11024. image: {
  11025. source: "./media/characters/dydros/front.svg",
  11026. extra: 863 / 800,
  11027. bottom: 0.015
  11028. }
  11029. },
  11030. back: {
  11031. height: math.unit(12, "feet"),
  11032. weight: math.unit(1.5, "tons"),
  11033. name: "Back",
  11034. image: {
  11035. source: "./media/characters/dydros/back.svg",
  11036. extra: 900 / 843,
  11037. bottom: 0.005
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(12, "feet"),
  11045. default: true
  11046. },
  11047. ]
  11048. ))
  11049. characterMakers.push(() => makeCharacter(
  11050. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11051. {
  11052. front: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(100, "kg"),
  11055. name: "Front",
  11056. image: {
  11057. source: "./media/characters/riggi/front.svg",
  11058. extra: 5787 / 5303
  11059. }
  11060. },
  11061. hyper: {
  11062. height: math.unit(6 * 5 / 3, "feet"),
  11063. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11064. name: "Hyper",
  11065. image: {
  11066. source: "./media/characters/riggi/hyper.svg",
  11067. extra: 3595 / 3485
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Small Macro",
  11074. height: math.unit(50, "feet")
  11075. },
  11076. {
  11077. name: "Default",
  11078. height: math.unit(200, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Loom",
  11083. height: math.unit(10000, "feet")
  11084. },
  11085. {
  11086. name: "Cruising Altitude",
  11087. height: math.unit(30000, "feet")
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(100, "miles")
  11092. },
  11093. {
  11094. name: "Continent Sized",
  11095. height: math.unit(2800, "miles")
  11096. },
  11097. {
  11098. name: "Earth Sized",
  11099. height: math.unit(8000, "miles")
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(250, "lb"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/alexi/front.svg",
  11112. extra: 3483 / 3291,
  11113. bottom: 0.04
  11114. }
  11115. },
  11116. back: {
  11117. height: math.unit(6, "feet"),
  11118. weight: math.unit(250, "lb"),
  11119. name: "Back",
  11120. image: {
  11121. source: "./media/characters/alexi/back.svg",
  11122. extra: 3533 / 3356,
  11123. bottom: 0.021
  11124. }
  11125. },
  11126. frontTransforming: {
  11127. height: math.unit(8.58, "feet"),
  11128. weight: math.unit(1300, "lb"),
  11129. name: "Transforming",
  11130. image: {
  11131. source: "./media/characters/alexi/front-transforming.svg",
  11132. extra: 437 / 409,
  11133. bottom: 19 / 458.66
  11134. }
  11135. },
  11136. frontTransformed: {
  11137. height: math.unit(12.5, "feet"),
  11138. weight: math.unit(4000, "lb"),
  11139. name: "Transformed",
  11140. image: {
  11141. source: "./media/characters/alexi/front-transformed.svg",
  11142. extra: 639 / 614,
  11143. bottom: 30.55 / 671
  11144. }
  11145. },
  11146. },
  11147. [
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(14, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Minimacro",
  11155. height: math.unit(30, "meters")
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(500, "meters")
  11160. },
  11161. {
  11162. name: "Megamacro",
  11163. height: math.unit(9000, "km")
  11164. },
  11165. {
  11166. name: "Teramacro",
  11167. height: math.unit(384000, "km")
  11168. },
  11169. ]
  11170. ))
  11171. characterMakers.push(() => makeCharacter(
  11172. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11173. {
  11174. front: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(150, "lb"),
  11177. name: "Front",
  11178. image: {
  11179. source: "./media/characters/kayroo/front.svg",
  11180. extra: 1153 / 1038,
  11181. bottom: 0.06
  11182. }
  11183. },
  11184. foot: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(150, "lb"),
  11187. name: "Foot",
  11188. image: {
  11189. source: "./media/characters/kayroo/foot.svg"
  11190. }
  11191. },
  11192. },
  11193. [
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(8, "feet"),
  11197. default: true
  11198. },
  11199. {
  11200. name: "Minimacro",
  11201. height: math.unit(250, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(2800, "feet")
  11206. },
  11207. {
  11208. name: "Megamacro",
  11209. height: math.unit(5200, "feet")
  11210. },
  11211. {
  11212. name: "Gigamacro",
  11213. height: math.unit(27000, "feet")
  11214. },
  11215. {
  11216. name: "Omega",
  11217. height: math.unit(45000, "feet")
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(18, "feet"),
  11226. weight: math.unit(5800, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/rhys/front.svg",
  11230. extra: 3386 / 3090,
  11231. bottom: 0.07
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(18, "feet"),
  11239. default: true
  11240. },
  11241. {
  11242. name: "Working Size",
  11243. height: math.unit(200, "feet")
  11244. },
  11245. {
  11246. name: "Demolition Size",
  11247. height: math.unit(2000, "feet")
  11248. },
  11249. {
  11250. name: "Maximum Licensed Size",
  11251. height: math.unit(5, "miles")
  11252. },
  11253. {
  11254. name: "Maximum Observed Size",
  11255. height: math.unit(10, "yottameters")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(6, "feet"),
  11264. weight: math.unit(250, "lb"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/toto/front.svg",
  11268. extra: 527 / 479,
  11269. bottom: 0.05
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Micro",
  11276. height: math.unit(3, "feet")
  11277. },
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(10, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(150, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(1200, "feet")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "King", species: ["lion"], tags: ["anthro"] },
  11295. {
  11296. back: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Back",
  11300. image: {
  11301. source: "./media/characters/king/back.svg"
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Micro",
  11308. height: math.unit(2, "inches")
  11309. },
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(8, "feet")
  11313. },
  11314. {
  11315. name: "Macro",
  11316. height: math.unit(200, "feet"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Megamacro",
  11321. height: math.unit(50, "miles")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(11, "feet"),
  11330. weight: math.unit(1400, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/cordite/front.svg",
  11334. extra: 1919/1827,
  11335. bottom: 40/1959
  11336. }
  11337. },
  11338. side: {
  11339. height: math.unit(11, "feet"),
  11340. weight: math.unit(1400, "lb"),
  11341. name: "Side",
  11342. image: {
  11343. source: "./media/characters/cordite/side.svg",
  11344. extra: 1908/1793,
  11345. bottom: 38/1946
  11346. }
  11347. },
  11348. back: {
  11349. height: math.unit(11, "feet"),
  11350. weight: math.unit(1400, "lb"),
  11351. name: "Back",
  11352. image: {
  11353. source: "./media/characters/cordite/back.svg",
  11354. extra: 1938/1837,
  11355. bottom: 10/1948
  11356. }
  11357. },
  11358. feral: {
  11359. height: math.unit(2, "feet"),
  11360. weight: math.unit(90, "lb"),
  11361. name: "Feral",
  11362. image: {
  11363. source: "./media/characters/cordite/feral.svg",
  11364. extra: 1260 / 755,
  11365. bottom: 0.05
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(11, "feet"),
  11373. default: true
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11379. {
  11380. front: {
  11381. height: math.unit(6, "feet"),
  11382. weight: math.unit(150, "lb"),
  11383. name: "Front",
  11384. image: {
  11385. source: "./media/characters/pianostrong/front.svg",
  11386. extra: 6577 / 6254,
  11387. bottom: 0.02
  11388. }
  11389. },
  11390. side: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Side",
  11394. image: {
  11395. source: "./media/characters/pianostrong/side.svg",
  11396. extra: 6106 / 5730
  11397. }
  11398. },
  11399. back: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Back",
  11403. image: {
  11404. source: "./media/characters/pianostrong/back.svg",
  11405. extra: 6085 / 5733,
  11406. bottom: 0.01
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(100, "feet")
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(300, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Macro++",
  11422. height: math.unit(1000, "feet")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11428. {
  11429. front: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Front",
  11433. image: {
  11434. source: "./media/characters/kona/front.svg",
  11435. extra: 2960 / 2629,
  11436. bottom: 0.005
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(11 + 8 / 12, "feet")
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(850, "feet"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro+",
  11452. height: math.unit(1.5, "km"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(80, "miles")
  11458. },
  11459. {
  11460. name: "Gigamacro",
  11461. height: math.unit(3500, "miles")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11467. {
  11468. side: {
  11469. height: math.unit(1.9, "meters"),
  11470. weight: math.unit(326, "kg"),
  11471. name: "Side",
  11472. image: {
  11473. source: "./media/characters/levi/side.svg",
  11474. extra: 1704 / 1334,
  11475. bottom: 0.02
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(1.9, "meters"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro",
  11487. height: math.unit(20, "meters")
  11488. },
  11489. {
  11490. name: "Macro+",
  11491. height: math.unit(200, "meters")
  11492. },
  11493. {
  11494. name: "Megamacro",
  11495. height: math.unit(2, "km")
  11496. },
  11497. {
  11498. name: "Megamacro+",
  11499. height: math.unit(20, "km")
  11500. },
  11501. {
  11502. name: "Gigamacro",
  11503. height: math.unit(2500, "km")
  11504. },
  11505. {
  11506. name: "Gigamacro+",
  11507. height: math.unit(120000, "km")
  11508. },
  11509. {
  11510. name: "Teramacro",
  11511. height: math.unit(7.77e6, "km")
  11512. },
  11513. ]
  11514. ))
  11515. characterMakers.push(() => makeCharacter(
  11516. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11517. {
  11518. front: {
  11519. height: math.unit(6 + 4/12, "feet"),
  11520. weight: math.unit(190, "lb"),
  11521. name: "Front",
  11522. image: {
  11523. source: "./media/characters/bmc/front.svg",
  11524. extra: 1626/1472,
  11525. bottom: 79/1705
  11526. }
  11527. },
  11528. back: {
  11529. height: math.unit(6 + 4/12, "feet"),
  11530. weight: math.unit(190, "lb"),
  11531. name: "Back",
  11532. image: {
  11533. source: "./media/characters/bmc/back.svg",
  11534. extra: 1640/1479,
  11535. bottom: 45/1685
  11536. }
  11537. },
  11538. frontArmor: {
  11539. height: math.unit(6 + 4/12, "feet"),
  11540. weight: math.unit(190, "lb"),
  11541. name: "Front-armor",
  11542. image: {
  11543. source: "./media/characters/bmc/front-armor.svg",
  11544. extra: 1538/1468,
  11545. bottom: 79/1617
  11546. }
  11547. },
  11548. },
  11549. [
  11550. {
  11551. name: "Human-sized",
  11552. height: math.unit(6 + 4 / 12, "feet")
  11553. },
  11554. {
  11555. name: "Interactive Size",
  11556. height: math.unit(25, "feet")
  11557. },
  11558. {
  11559. name: "Small",
  11560. height: math.unit(250, "feet")
  11561. },
  11562. {
  11563. name: "Normal",
  11564. height: math.unit(1250, "feet"),
  11565. default: true
  11566. },
  11567. {
  11568. name: "Good Day",
  11569. height: math.unit(88, "miles")
  11570. },
  11571. {
  11572. name: "Largest Measured Size",
  11573. height: math.unit(105.960, "galaxies")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(20, "feet"),
  11582. weight: math.unit(2016, "kg"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/sven-the-kaiju/front.svg",
  11586. extra: 1277/1250,
  11587. bottom: 35/1312
  11588. }
  11589. },
  11590. mouth: {
  11591. height: math.unit(1.85, "feet"),
  11592. name: "Mouth",
  11593. image: {
  11594. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Fairy",
  11601. height: math.unit(6, "inches")
  11602. },
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(20, "feet"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Rampage",
  11610. height: math.unit(200, "feet")
  11611. },
  11612. {
  11613. name: "Archfey Forest Guardian",
  11614. height: math.unit(1, "mile")
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(4, "meters"),
  11623. weight: math.unit(2, "tons"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/marik/front.svg",
  11627. extra: 1057 / 1003,
  11628. bottom: 0.08
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(4, "meters"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(20, "meters")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(50, "km")
  11645. },
  11646. {
  11647. name: "Gigamacro",
  11648. height: math.unit(100, "km")
  11649. },
  11650. {
  11651. name: "Alpha Macro",
  11652. height: math.unit(7.88e7, "yottameters")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(110, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/mel/front.svg",
  11665. extra: 736 / 617,
  11666. bottom: 0.017
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Pico",
  11673. height: math.unit(3, "pm")
  11674. },
  11675. {
  11676. name: "Nano",
  11677. height: math.unit(3, "nm")
  11678. },
  11679. {
  11680. name: "Micro",
  11681. height: math.unit(0.3, "mm"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Micro+",
  11686. height: math.unit(3, "mm")
  11687. },
  11688. {
  11689. name: "Normal",
  11690. height: math.unit(5 + 10.5 / 12, "feet")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11696. {
  11697. kaiju: {
  11698. height: math.unit(1.75, "meters"),
  11699. weight: math.unit(55, "kg"),
  11700. name: "Kaiju",
  11701. image: {
  11702. source: "./media/characters/lykonous/kaiju.svg",
  11703. extra: 1055 / 946,
  11704. bottom: 0.135
  11705. }
  11706. },
  11707. },
  11708. [
  11709. {
  11710. name: "Normal",
  11711. height: math.unit(2.5, "meters"),
  11712. default: true
  11713. },
  11714. {
  11715. name: "Kaiju Dragon",
  11716. height: math.unit(60, "meters")
  11717. },
  11718. {
  11719. name: "Mega Kaiju",
  11720. height: math.unit(120, "km")
  11721. },
  11722. {
  11723. name: "Giga Kaiju",
  11724. height: math.unit(200, "megameters")
  11725. },
  11726. {
  11727. name: "Terra Kaiju",
  11728. height: math.unit(400, "gigameters")
  11729. },
  11730. {
  11731. name: "Kaiju Dragon God",
  11732. height: math.unit(13000, "exaparsecs")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(150, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/blü/front.svg",
  11745. extra: 1883 / 1564,
  11746. bottom: 0.031
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(13, "feet"),
  11754. default: true
  11755. },
  11756. {
  11757. name: "Big Boi",
  11758. height: math.unit(150, "meters")
  11759. },
  11760. {
  11761. name: "Mini Stomper",
  11762. height: math.unit(300, "meters")
  11763. },
  11764. {
  11765. name: "Macro",
  11766. height: math.unit(1000, "meters")
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(11000, "meters")
  11771. },
  11772. {
  11773. name: "Gigamacro",
  11774. height: math.unit(11000, "km")
  11775. },
  11776. {
  11777. name: "Teramacro",
  11778. height: math.unit(420000, "km")
  11779. },
  11780. {
  11781. name: "Examacro",
  11782. height: math.unit(120, "parsecs")
  11783. },
  11784. {
  11785. name: "God Tho",
  11786. height: math.unit(98000000000, "parsecs")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11792. {
  11793. taurFront: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(200, "lb"),
  11796. name: "Taur (Front)",
  11797. image: {
  11798. source: "./media/characters/scales/taur-front.svg",
  11799. extra: 1,
  11800. bottom: 0.05
  11801. }
  11802. },
  11803. taurBack: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(200, "lb"),
  11806. name: "Taur (Back)",
  11807. image: {
  11808. source: "./media/characters/scales/taur-back.svg",
  11809. extra: 1,
  11810. bottom: 0.08
  11811. }
  11812. },
  11813. anthro: {
  11814. height: math.unit(6 * 7 / 12, "feet"),
  11815. weight: math.unit(100, "lb"),
  11816. name: "Anthro",
  11817. image: {
  11818. source: "./media/characters/scales/anthro.svg",
  11819. extra: 1,
  11820. bottom: 0.06
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(12, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/koragos/front.svg",
  11841. extra: 841 / 794,
  11842. bottom: 0.035
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/koragos/back.svg",
  11851. extra: 841 / 810,
  11852. bottom: 0.022
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Normal",
  11859. height: math.unit(6 + 11 / 12, "feet"),
  11860. default: true
  11861. },
  11862. {
  11863. name: "Macro",
  11864. height: math.unit(490, "feet")
  11865. },
  11866. {
  11867. name: "Megamacro",
  11868. height: math.unit(10, "miles")
  11869. },
  11870. {
  11871. name: "Gigamacro",
  11872. height: math.unit(50, "miles")
  11873. },
  11874. ]
  11875. ))
  11876. characterMakers.push(() => makeCharacter(
  11877. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11878. {
  11879. front: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(250, "lb"),
  11882. name: "Front",
  11883. image: {
  11884. source: "./media/characters/xylrem/front.svg",
  11885. extra: 3323 / 3050,
  11886. bottom: 0.065
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Micro",
  11893. height: math.unit(4, "feet")
  11894. },
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(16, "feet"),
  11898. default: true
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(2720, "feet")
  11903. },
  11904. {
  11905. name: "Megamacro",
  11906. height: math.unit(25000, "miles")
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11912. {
  11913. front: {
  11914. height: math.unit(8, "feet"),
  11915. weight: math.unit(250, "kg"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/ikideru/front.svg",
  11919. extra: 930 / 870,
  11920. bottom: 0.087
  11921. }
  11922. },
  11923. back: {
  11924. height: math.unit(8, "feet"),
  11925. weight: math.unit(250, "kg"),
  11926. name: "Back",
  11927. image: {
  11928. source: "./media/characters/ikideru/back.svg",
  11929. extra: 919 / 852,
  11930. bottom: 0.055
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Rare",
  11937. height: math.unit(8, "feet"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Playful Loom",
  11942. height: math.unit(80, "feet")
  11943. },
  11944. {
  11945. name: "City Leaner",
  11946. height: math.unit(230, "feet")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(2500, "feet")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(26400, "feet")
  11955. },
  11956. {
  11957. name: "Tectonic Shifter",
  11958. height: math.unit(1.7, "megameters")
  11959. },
  11960. {
  11961. name: "Planet Carer",
  11962. height: math.unit(21, "megameters")
  11963. },
  11964. {
  11965. name: "God",
  11966. height: math.unit(11157.22, "parsecs")
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(6, "feet"),
  11975. weight: math.unit(120, "lb"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/neo/front.svg"
  11979. }
  11980. },
  11981. },
  11982. [
  11983. {
  11984. name: "Micro",
  11985. height: math.unit(2, "inches"),
  11986. default: true
  11987. },
  11988. {
  11989. name: "Human Size",
  11990. height: math.unit(5 + 8 / 12, "feet")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(13 + 10 / 12, "feet"),
  11999. weight: math.unit(5320, "lb"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/chauncey-chantz/front.svg",
  12003. extra: 1587 / 1435,
  12004. bottom: 0.02
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(13 + 10 / 12, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(45, "feet")
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(250, "miles")
  12021. },
  12022. {
  12023. name: "Planetary",
  12024. height: math.unit(10000, "miles")
  12025. },
  12026. {
  12027. name: "Galactic",
  12028. height: math.unit(40000, "parsecs")
  12029. },
  12030. {
  12031. name: "Universal",
  12032. height: math.unit(1, "yottameter")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12038. {
  12039. front: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(150, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/epifox/front.svg",
  12045. extra: 1,
  12046. bottom: 0.075
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(6, "inches")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(3810, "feet")
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(500, "miles")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(1.8796, "m"),
  12075. weight: math.unit(230, "lb"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/colin-t/front.svg",
  12079. extra: 1272 / 1193,
  12080. bottom: 0.07
  12081. }
  12082. },
  12083. },
  12084. [
  12085. {
  12086. name: "Micro",
  12087. height: math.unit(0.571, "meters")
  12088. },
  12089. {
  12090. name: "Normal",
  12091. height: math.unit(1.8796, "meters"),
  12092. default: true
  12093. },
  12094. {
  12095. name: "Tall",
  12096. height: math.unit(4, "meters")
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(67.241, "meters")
  12101. },
  12102. {
  12103. name: "Megamacro",
  12104. height: math.unit(371.856, "meters")
  12105. },
  12106. {
  12107. name: "Planetary",
  12108. height: math.unit(12631.5689, "km")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12114. {
  12115. front: {
  12116. height: math.unit(1.85, "meters"),
  12117. weight: math.unit(80, "kg"),
  12118. name: "Front",
  12119. image: {
  12120. source: "./media/characters/matvei/front.svg",
  12121. extra: 614 / 594,
  12122. bottom: 0.01
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(1.85, "meters"),
  12130. default: true
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(5 + 9 / 12, "feet"),
  12139. weight: math.unit(70, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/quincy/front.svg",
  12143. extra: 3041 / 2751
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(5 + 9 / 12, "feet"),
  12148. weight: math.unit(70, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/quincy/back.svg",
  12152. extra: 3041 / 2751
  12153. }
  12154. },
  12155. flying: {
  12156. height: math.unit(5 + 4 / 12, "feet"),
  12157. weight: math.unit(70, "lb"),
  12158. name: "Flying",
  12159. image: {
  12160. source: "./media/characters/quincy/flying.svg",
  12161. extra: 1044 / 930
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Micro",
  12168. height: math.unit(3, "cm")
  12169. },
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(5 + 9 / 12, "feet")
  12173. },
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(200, "meters"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Megamacro",
  12181. height: math.unit(1000, "meters")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(3 + 11/12, "feet"),
  12190. weight: math.unit(50, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/vanrel/front.svg",
  12194. extra: 1104/949,
  12195. bottom: 52/1156
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(3 + 11/12, "feet"),
  12200. weight: math.unit(50, "lb"),
  12201. name: "Back",
  12202. image: {
  12203. source: "./media/characters/vanrel/back.svg",
  12204. extra: 1119/976,
  12205. bottom: 37/1156
  12206. }
  12207. },
  12208. tome: {
  12209. height: math.unit(1.35, "feet"),
  12210. weight: math.unit(10, "lb"),
  12211. name: "Vanrel's Tome",
  12212. rename: true,
  12213. image: {
  12214. source: "./media/characters/vanrel/tome.svg"
  12215. }
  12216. },
  12217. beans: {
  12218. height: math.unit(0.89, "feet"),
  12219. name: "Beans",
  12220. image: {
  12221. source: "./media/characters/vanrel/beans.svg"
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(3 + 11/12, "feet"),
  12229. default: true
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(7 + 5 / 12, "feet"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/kuiper-vanrel/front.svg",
  12241. extra: 1219/1169,
  12242. bottom: 69/1288
  12243. }
  12244. },
  12245. back: {
  12246. height: math.unit(7 + 5 / 12, "feet"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/kuiper-vanrel/back.svg",
  12250. extra: 1236/1193,
  12251. bottom: 27/1263
  12252. }
  12253. },
  12254. foot: {
  12255. height: math.unit(0.55, "meters"),
  12256. name: "Foot",
  12257. image: {
  12258. source: "./media/characters/kuiper-vanrel/foot.svg",
  12259. }
  12260. },
  12261. battle: {
  12262. height: math.unit(6.824, "feet"),
  12263. name: "Battle",
  12264. image: {
  12265. source: "./media/characters/kuiper-vanrel/battle.svg",
  12266. extra: 1466 / 1327,
  12267. bottom: 29 / 1492.5
  12268. }
  12269. },
  12270. meerkui: {
  12271. height: math.unit(18, "inches"),
  12272. name: "Meerkui",
  12273. image: {
  12274. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12275. extra: 1354/1289,
  12276. bottom: 69/1423
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Normal",
  12283. height: math.unit(7 + 5 / 12, "feet"),
  12284. default: true
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(8 + 5 / 12, "feet"),
  12293. name: "Front",
  12294. image: {
  12295. source: "./media/characters/keset-vanrel/front.svg",
  12296. extra: 1231/1148,
  12297. bottom: 82/1313
  12298. }
  12299. },
  12300. back: {
  12301. height: math.unit(8 + 5 / 12, "feet"),
  12302. name: "Back",
  12303. image: {
  12304. source: "./media/characters/keset-vanrel/back.svg",
  12305. extra: 1240/1174,
  12306. bottom: 33/1273
  12307. }
  12308. },
  12309. hand: {
  12310. height: math.unit(0.6, "meters"),
  12311. name: "Hand",
  12312. image: {
  12313. source: "./media/characters/keset-vanrel/hand.svg"
  12314. }
  12315. },
  12316. foot: {
  12317. height: math.unit(0.94978, "meters"),
  12318. name: "Foot",
  12319. image: {
  12320. source: "./media/characters/keset-vanrel/foot.svg"
  12321. }
  12322. },
  12323. battle: {
  12324. height: math.unit(7.408, "feet"),
  12325. name: "Battle",
  12326. image: {
  12327. source: "./media/characters/keset-vanrel/battle.svg",
  12328. extra: 1890 / 1386,
  12329. bottom: 73.28 / 1970
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(8 + 5 / 12, "feet"),
  12337. default: true
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(150, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/neos/front.svg",
  12350. extra: 1696 / 992,
  12351. bottom: 0.14
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(54, "cm"),
  12359. default: true
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(100, "m")
  12364. },
  12365. {
  12366. name: "Megamacro",
  12367. height: math.unit(10, "km")
  12368. },
  12369. {
  12370. name: "Megamacro+",
  12371. height: math.unit(100, "km")
  12372. },
  12373. {
  12374. name: "Gigamacro",
  12375. height: math.unit(100, "Mm")
  12376. },
  12377. {
  12378. name: "Teramacro",
  12379. height: math.unit(100, "Gm")
  12380. },
  12381. {
  12382. name: "Examacro",
  12383. height: math.unit(100, "Em")
  12384. },
  12385. {
  12386. name: "Godly",
  12387. height: math.unit(10000, "Ym")
  12388. },
  12389. {
  12390. name: "Beyond Godly",
  12391. height: math.unit(25, "multiverses")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12397. {
  12398. feminine: {
  12399. height: math.unit(5, "feet"),
  12400. weight: math.unit(100, "lb"),
  12401. name: "Feminine",
  12402. image: {
  12403. source: "./media/characters/sammy-mouse/feminine.svg",
  12404. extra: 2526 / 2425,
  12405. bottom: 0.123
  12406. }
  12407. },
  12408. masculine: {
  12409. height: math.unit(5, "feet"),
  12410. weight: math.unit(100, "lb"),
  12411. name: "Masculine",
  12412. image: {
  12413. source: "./media/characters/sammy-mouse/masculine.svg",
  12414. extra: 2526 / 2425,
  12415. bottom: 0.123
  12416. }
  12417. },
  12418. },
  12419. [
  12420. {
  12421. name: "Micro",
  12422. height: math.unit(5, "inches")
  12423. },
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(5, "feet"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(60, "feet")
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12437. {
  12438. front: {
  12439. height: math.unit(4, "feet"),
  12440. weight: math.unit(50, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/kole/front.svg",
  12444. extra: 1423 / 1303,
  12445. bottom: 0.025
  12446. }
  12447. },
  12448. back: {
  12449. height: math.unit(4, "feet"),
  12450. weight: math.unit(50, "lb"),
  12451. name: "Back",
  12452. image: {
  12453. source: "./media/characters/kole/back.svg",
  12454. extra: 1426 / 1280,
  12455. bottom: 0.02
  12456. }
  12457. },
  12458. },
  12459. [
  12460. {
  12461. name: "Normal",
  12462. height: math.unit(4, "feet"),
  12463. default: true
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(2.5, "feet"),
  12472. weight: math.unit(32, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/rufran/front.svg",
  12476. extra: 1313/885,
  12477. bottom: 94/1407
  12478. }
  12479. },
  12480. side: {
  12481. height: math.unit(2.5, "feet"),
  12482. weight: math.unit(32, "lb"),
  12483. name: "Side",
  12484. image: {
  12485. source: "./media/characters/rufran/side.svg",
  12486. extra: 1109/852,
  12487. bottom: 118/1227
  12488. }
  12489. },
  12490. back: {
  12491. height: math.unit(2.5, "feet"),
  12492. weight: math.unit(32, "lb"),
  12493. name: "Back",
  12494. image: {
  12495. source: "./media/characters/rufran/back.svg",
  12496. extra: 1280/878,
  12497. bottom: 131/1411
  12498. }
  12499. },
  12500. mouth: {
  12501. height: math.unit(1.13, "feet"),
  12502. name: "Mouth",
  12503. image: {
  12504. source: "./media/characters/rufran/mouth.svg"
  12505. }
  12506. },
  12507. foot: {
  12508. height: math.unit(1.33, "feet"),
  12509. name: "Foot",
  12510. image: {
  12511. source: "./media/characters/rufran/foot.svg"
  12512. }
  12513. },
  12514. koboldFront: {
  12515. height: math.unit(2 + 6 / 12, "feet"),
  12516. weight: math.unit(20, "lb"),
  12517. name: "Front (Kobold)",
  12518. image: {
  12519. source: "./media/characters/rufran/kobold-front.svg",
  12520. extra: 2041 / 1839,
  12521. bottom: 0.055
  12522. }
  12523. },
  12524. koboldBack: {
  12525. height: math.unit(2 + 6 / 12, "feet"),
  12526. weight: math.unit(20, "lb"),
  12527. name: "Back (Kobold)",
  12528. image: {
  12529. source: "./media/characters/rufran/kobold-back.svg",
  12530. extra: 2054 / 1839,
  12531. bottom: 0.01
  12532. }
  12533. },
  12534. koboldHand: {
  12535. height: math.unit(0.2166, "meters"),
  12536. name: "Hand (Kobold)",
  12537. image: {
  12538. source: "./media/characters/rufran/kobold-hand.svg"
  12539. }
  12540. },
  12541. koboldFoot: {
  12542. height: math.unit(0.185, "meters"),
  12543. name: "Foot (Kobold)",
  12544. image: {
  12545. source: "./media/characters/rufran/kobold-foot.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Micro",
  12552. height: math.unit(1, "inch")
  12553. },
  12554. {
  12555. name: "Normal",
  12556. height: math.unit(2 + 6 / 12, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Big",
  12561. height: math.unit(60, "feet")
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(325, "feet")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(0.3, "meters"),
  12574. weight: math.unit(3.5, "kg"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/chip/front.svg",
  12578. extra: 748 / 674
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Micro",
  12585. height: math.unit(1, "inch"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12592. {
  12593. side: {
  12594. height: math.unit(2.3, "meters"),
  12595. weight: math.unit(3500, "lb"),
  12596. name: "Side",
  12597. image: {
  12598. source: "./media/characters/torvid/side.svg",
  12599. extra: 1972 / 722,
  12600. bottom: 0.035
  12601. }
  12602. },
  12603. },
  12604. [
  12605. {
  12606. name: "Normal",
  12607. height: math.unit(2.3, "meters"),
  12608. default: true
  12609. },
  12610. ]
  12611. ))
  12612. characterMakers.push(() => makeCharacter(
  12613. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12614. {
  12615. front: {
  12616. height: math.unit(2, "meters"),
  12617. weight: math.unit(150.5, "kg"),
  12618. name: "Front",
  12619. image: {
  12620. source: "./media/characters/susan/front.svg",
  12621. extra: 693 / 635,
  12622. bottom: 0.05
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Megamacro",
  12629. height: math.unit(505, "miles"),
  12630. default: true
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6, "feet"),
  12639. weight: math.unit(150, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/raindrops/front.svg",
  12643. extra: 2655 / 2461,
  12644. bottom: 49 / 2705
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/raindrops/back.svg",
  12653. extra: 2574 / 2400,
  12654. bottom: 65 / 2634
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Micro",
  12661. height: math.unit(6, "inches")
  12662. },
  12663. {
  12664. name: "Normal",
  12665. height: math.unit(6 + 2 / 12, "feet")
  12666. },
  12667. {
  12668. name: "Macro",
  12669. height: math.unit(131, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Megamacro",
  12674. height: math.unit(15, "miles")
  12675. },
  12676. {
  12677. name: "Gigamacro",
  12678. height: math.unit(4000, "miles")
  12679. },
  12680. {
  12681. name: "Teramacro",
  12682. height: math.unit(315000, "miles")
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(2.794, "meters"),
  12691. weight: math.unit(325, "kg"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/tezwa/front.svg",
  12695. extra: 2083 / 1906,
  12696. bottom: 0.031
  12697. }
  12698. },
  12699. foot: {
  12700. height: math.unit(0.687, "meters"),
  12701. name: "Foot",
  12702. image: {
  12703. source: "./media/characters/tezwa/foot.svg"
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(9 + 2 / 12, "feet"),
  12711. default: true
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(58, "feet"),
  12720. weight: math.unit(89000, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/typhus/front.svg",
  12724. extra: 816 / 800,
  12725. bottom: 0.065
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(58, "feet"),
  12733. default: true
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(12, "feet"),
  12742. weight: math.unit(6, "tonnes"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/lyra-von-wulf/front.svg",
  12746. extra: 1,
  12747. bottom: 0.10
  12748. }
  12749. },
  12750. frontMecha: {
  12751. height: math.unit(12, "feet"),
  12752. weight: math.unit(12, "tonnes"),
  12753. name: "Front (Mecha)",
  12754. image: {
  12755. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12756. extra: 1,
  12757. bottom: 0.042
  12758. }
  12759. },
  12760. maw: {
  12761. height: math.unit(2.2, "feet"),
  12762. name: "Maw",
  12763. image: {
  12764. source: "./media/characters/lyra-von-wulf/maw.svg"
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(12, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Classic",
  12776. height: math.unit(50, "feet")
  12777. },
  12778. {
  12779. name: "Macro",
  12780. height: math.unit(500, "feet")
  12781. },
  12782. {
  12783. name: "Megamacro",
  12784. height: math.unit(1, "mile")
  12785. },
  12786. {
  12787. name: "Gigamacro",
  12788. height: math.unit(400, "miles")
  12789. },
  12790. {
  12791. name: "Teramacro",
  12792. height: math.unit(22000, "miles")
  12793. },
  12794. {
  12795. name: "Solarmacro",
  12796. height: math.unit(8600000, "miles")
  12797. },
  12798. {
  12799. name: "Galactic",
  12800. height: math.unit(1057000, "lightyears")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(6 + 10 / 12, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/dixon/front.svg",
  12813. extra: 3361 / 3209,
  12814. bottom: 0.01
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Normal",
  12821. height: math.unit(6 + 10 / 12, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Big",
  12826. height: math.unit(12, "meters")
  12827. },
  12828. {
  12829. name: "Macro",
  12830. height: math.unit(500, "meters")
  12831. },
  12832. {
  12833. name: "Megamacro",
  12834. height: math.unit(2, "km")
  12835. },
  12836. ]
  12837. ))
  12838. characterMakers.push(() => makeCharacter(
  12839. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12840. {
  12841. front: {
  12842. height: math.unit(185, "cm"),
  12843. weight: math.unit(68, "kg"),
  12844. name: "Front",
  12845. image: {
  12846. source: "./media/characters/kauko/front.svg",
  12847. extra: 1455 / 1421,
  12848. bottom: 0.03
  12849. }
  12850. },
  12851. back: {
  12852. height: math.unit(185, "cm"),
  12853. weight: math.unit(68, "kg"),
  12854. name: "Back",
  12855. image: {
  12856. source: "./media/characters/kauko/back.svg",
  12857. extra: 1455 / 1421,
  12858. bottom: 0.004
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(185, "cm"),
  12866. default: true
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "kg"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/varg/front.svg",
  12879. extra: 1108 / 1018,
  12880. bottom: 0.0375
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(5, "meters")
  12888. },
  12889. {
  12890. name: "Macro",
  12891. height: math.unit(200, "meters")
  12892. },
  12893. {
  12894. name: "Megamacro",
  12895. height: math.unit(20, "kilometers")
  12896. },
  12897. {
  12898. name: "True Size",
  12899. height: math.unit(211, "km"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Gigamacro",
  12904. height: math.unit(1000, "km")
  12905. },
  12906. {
  12907. name: "Gigamacro+",
  12908. height: math.unit(8000, "km")
  12909. },
  12910. {
  12911. name: "Teramacro",
  12912. height: math.unit(1000000, "km")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(7 + 7 / 12, "feet"),
  12921. weight: math.unit(267, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/dayza/front.svg",
  12925. extra: 1262 / 1200,
  12926. bottom: 0.035
  12927. }
  12928. },
  12929. side: {
  12930. height: math.unit(7 + 7 / 12, "feet"),
  12931. weight: math.unit(267, "lb"),
  12932. name: "Side",
  12933. image: {
  12934. source: "./media/characters/dayza/side.svg",
  12935. extra: 1295 / 1245,
  12936. bottom: 0.05
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(7 + 7 / 12, "feet"),
  12941. weight: math.unit(267, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/dayza/back.svg",
  12945. extra: 1241 / 1170
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(7 + 7 / 12, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(155, "feet")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6 + 5 / 12, "feet"),
  12966. weight: math.unit(160, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/xanthos/front.svg",
  12970. extra: 1,
  12971. bottom: 0.04
  12972. }
  12973. },
  12974. back: {
  12975. height: math.unit(6 + 5 / 12, "feet"),
  12976. weight: math.unit(160, "lb"),
  12977. name: "Back",
  12978. image: {
  12979. source: "./media/characters/xanthos/back.svg",
  12980. extra: 1,
  12981. bottom: 0.03
  12982. }
  12983. },
  12984. hand: {
  12985. height: math.unit(0.928, "feet"),
  12986. name: "Hand",
  12987. image: {
  12988. source: "./media/characters/xanthos/hand.svg"
  12989. }
  12990. },
  12991. foot: {
  12992. height: math.unit(1.286, "feet"),
  12993. name: "Foot",
  12994. image: {
  12995. source: "./media/characters/xanthos/foot.svg"
  12996. }
  12997. },
  12998. },
  12999. [
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(6 + 5 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Normal+",
  13007. height: math.unit(6, "meters")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(40, "feet")
  13012. },
  13013. {
  13014. name: "Macro+",
  13015. height: math.unit(200, "meters")
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(20, "km")
  13020. },
  13021. {
  13022. name: "Megamacro+",
  13023. height: math.unit(100, "km")
  13024. },
  13025. {
  13026. name: "Gigamacro",
  13027. height: math.unit(200, "megameters")
  13028. },
  13029. {
  13030. name: "Gigamacro+",
  13031. height: math.unit(1.5, "gigameters")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6 + 3 / 12, "feet"),
  13040. weight: math.unit(215, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/grynn/front.svg",
  13044. extra: 4627 / 4209,
  13045. bottom: 0.047
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Micro",
  13052. height: math.unit(6, "inches")
  13053. },
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(6 + 3 / 12, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Big",
  13061. height: math.unit(104, "feet")
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(944, "feet")
  13066. },
  13067. {
  13068. name: "Macro+",
  13069. height: math.unit(9480, "feet")
  13070. },
  13071. {
  13072. name: "Megamacro",
  13073. height: math.unit(78752, "feet")
  13074. },
  13075. {
  13076. name: "Megamacro+",
  13077. height: math.unit(630128, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro++",
  13081. height: math.unit(3150695, "feet")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(7 + 5 / 12, "feet"),
  13090. weight: math.unit(450, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/mocha-aura/front.svg",
  13094. extra: 1907 / 1817,
  13095. bottom: 0.04
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(7 + 5 / 12, "feet"),
  13100. weight: math.unit(450, "lb"),
  13101. name: "Back",
  13102. image: {
  13103. source: "./media/characters/mocha-aura/back.svg",
  13104. extra: 1900 / 1825,
  13105. bottom: 0.045
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Nano",
  13112. height: math.unit(1, "nm")
  13113. },
  13114. {
  13115. name: "Megamicro",
  13116. height: math.unit(1, "mm")
  13117. },
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(3, "inches")
  13121. },
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(7 + 5 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(30, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(3500, "feet")
  13134. },
  13135. {
  13136. name: "Teramacro",
  13137. height: math.unit(500000, "miles")
  13138. },
  13139. {
  13140. name: "Petamacro",
  13141. height: math.unit(50000000000000000, "parsecs")
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13147. {
  13148. front: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Front",
  13152. image: {
  13153. source: "./media/characters/ilisha-devya/front.svg",
  13154. extra: 1053/1049,
  13155. bottom: 270/1323
  13156. }
  13157. },
  13158. back: {
  13159. height: math.unit(6, "feet"),
  13160. weight: math.unit(150, "lb"),
  13161. name: "Back",
  13162. image: {
  13163. source: "./media/characters/ilisha-devya/back.svg",
  13164. extra: 1131/1128,
  13165. bottom: 39/1170
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Macro",
  13172. height: math.unit(500, "feet"),
  13173. default: true
  13174. },
  13175. {
  13176. name: "Megamacro",
  13177. height: math.unit(10, "miles")
  13178. },
  13179. {
  13180. name: "Gigamacro",
  13181. height: math.unit(100000, "miles")
  13182. },
  13183. {
  13184. name: "Examacro",
  13185. height: math.unit(1e9, "lightyears")
  13186. },
  13187. {
  13188. name: "Omniversal",
  13189. height: math.unit(1e33, "lightyears")
  13190. },
  13191. {
  13192. name: "Beyond Infinite",
  13193. height: math.unit(1e100, "lightyears")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13199. {
  13200. Side: {
  13201. height: math.unit(6, "feet"),
  13202. weight: math.unit(150, "lb"),
  13203. name: "Side",
  13204. image: {
  13205. source: "./media/characters/mira/side.svg",
  13206. extra: 900 / 799,
  13207. bottom: 0.02
  13208. }
  13209. },
  13210. },
  13211. [
  13212. {
  13213. name: "Human Size",
  13214. height: math.unit(6, "feet")
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(100, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(10, "miles")
  13224. },
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(25000, "miles")
  13228. },
  13229. {
  13230. name: "Teramacro",
  13231. height: math.unit(300, "AU")
  13232. },
  13233. {
  13234. name: "Full Size",
  13235. height: math.unit(4.5e10, "lightyears")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(6, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/holly/front.svg",
  13248. extra: 639 / 606
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/holly/back.svg",
  13257. extra: 623 / 598
  13258. }
  13259. },
  13260. frontWorking: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(150, "lb"),
  13263. name: "Front (Working)",
  13264. image: {
  13265. source: "./media/characters/holly/front-working.svg",
  13266. extra: 607 / 577,
  13267. bottom: 0.048
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(12 + 3 / 12, "feet"),
  13275. default: true
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(6, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/porter/front.svg",
  13288. extra: 1,
  13289. bottom: 0.01
  13290. }
  13291. },
  13292. frontRobes: {
  13293. height: math.unit(6, "feet"),
  13294. weight: math.unit(150, "lb"),
  13295. name: "Front (Robes)",
  13296. image: {
  13297. source: "./media/characters/porter/front-robes.svg",
  13298. extra: 1.01,
  13299. bottom: 0.01
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(11 + 9 / 12, "feet"),
  13307. default: true
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13313. {
  13314. legendary: {
  13315. height: math.unit(6, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Legendary",
  13318. image: {
  13319. source: "./media/characters/lucy/legendary.svg",
  13320. extra: 1355 / 1100,
  13321. bottom: 0.045
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Legendary",
  13328. height: math.unit(86882 * 2, "miles"),
  13329. default: true
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(6, "feet"),
  13338. weight: math.unit(150, "lb"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/drusilla/front.svg",
  13342. extra: 678 / 635,
  13343. bottom: 0.03
  13344. }
  13345. },
  13346. back: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(150, "lb"),
  13349. name: "Back",
  13350. image: {
  13351. source: "./media/characters/drusilla/back.svg",
  13352. extra: 678 / 635,
  13353. bottom: 0.005
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(100, "feet")
  13361. },
  13362. {
  13363. name: "Canon Height",
  13364. height: math.unit(2000, "feet"),
  13365. default: true
  13366. },
  13367. ]
  13368. ))
  13369. characterMakers.push(() => makeCharacter(
  13370. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13371. {
  13372. front: {
  13373. height: math.unit(6, "feet"),
  13374. weight: math.unit(180, "lb"),
  13375. name: "Front",
  13376. image: {
  13377. source: "./media/characters/renard-thatch/front.svg",
  13378. extra: 2411 / 2275,
  13379. bottom: 0.01
  13380. }
  13381. },
  13382. frontPosing: {
  13383. height: math.unit(6, "feet"),
  13384. weight: math.unit(180, "lb"),
  13385. name: "Front (Posing)",
  13386. image: {
  13387. source: "./media/characters/renard-thatch/front-posing.svg",
  13388. extra: 2381 / 2261,
  13389. bottom: 0.01
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(180, "lb"),
  13395. name: "Back",
  13396. image: {
  13397. source: "./media/characters/renard-thatch/back.svg",
  13398. extra: 2428 / 2288
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Micro",
  13405. height: math.unit(3, "inches")
  13406. },
  13407. {
  13408. name: "Default",
  13409. height: math.unit(6, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(75, "feet")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(1450, "feet"),
  13423. weight: math.unit(1.21e6, "tons"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/sekvra/front.svg",
  13427. extra: 1193/1190,
  13428. bottom: 78/1271
  13429. }
  13430. },
  13431. side: {
  13432. height: math.unit(1450, "feet"),
  13433. weight: math.unit(1.21e6, "tons"),
  13434. name: "Side",
  13435. image: {
  13436. source: "./media/characters/sekvra/side.svg",
  13437. extra: 1193/1190,
  13438. bottom: 52/1245
  13439. }
  13440. },
  13441. back: {
  13442. height: math.unit(1450, "feet"),
  13443. weight: math.unit(1.21e6, "tons"),
  13444. name: "Back",
  13445. image: {
  13446. source: "./media/characters/sekvra/back.svg",
  13447. extra: 1219/1216,
  13448. bottom: 21/1240
  13449. }
  13450. },
  13451. frontClothed: {
  13452. height: math.unit(1450, "feet"),
  13453. weight: math.unit(1.21e6, "tons"),
  13454. name: "Front (Clothed)",
  13455. image: {
  13456. source: "./media/characters/sekvra/front-clothed.svg",
  13457. extra: 1192/1189,
  13458. bottom: 79/1271
  13459. }
  13460. },
  13461. },
  13462. [
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(1450, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Megamacro",
  13470. height: math.unit(15000, "feet")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/carmine/front.svg",
  13483. extra: 1,
  13484. bottom: 0.035
  13485. }
  13486. },
  13487. frontArmor: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front (Armor)",
  13491. image: {
  13492. source: "./media/characters/carmine/front-armor.svg",
  13493. extra: 1,
  13494. bottom: 0.035
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Large",
  13501. height: math.unit(1, "mile")
  13502. },
  13503. {
  13504. name: "Huge",
  13505. height: math.unit(40, "miles"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Colossal",
  13510. height: math.unit(2500, "miles")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/elyssia/front.svg",
  13523. extra: 2201 / 2035,
  13524. bottom: 0.05
  13525. }
  13526. },
  13527. frontClothed: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front (Clothed)",
  13531. image: {
  13532. source: "./media/characters/elyssia/front-clothed.svg",
  13533. extra: 2201 / 2035,
  13534. bottom: 0.05
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(150, "lb"),
  13540. name: "Back",
  13541. image: {
  13542. source: "./media/characters/elyssia/back.svg",
  13543. extra: 2201 / 2035,
  13544. bottom: 0.013
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Smaller",
  13551. height: math.unit(150, "feet")
  13552. },
  13553. {
  13554. name: "Standard",
  13555. height: math.unit(1400, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Distracted",
  13560. height: math.unit(15000, "feet")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(7 + 4/12, "feet"),
  13569. weight: math.unit(690, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/geno-maxwell/front.svg",
  13573. extra: 984/856,
  13574. bottom: 87/1071
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(7 + 4/12, "feet"),
  13579. weight: math.unit(690, "lb"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/geno-maxwell/back.svg",
  13583. extra: 981/854,
  13584. bottom: 57/1038
  13585. }
  13586. },
  13587. frontCostume: {
  13588. height: math.unit(7 + 4/12, "feet"),
  13589. weight: math.unit(690, "lb"),
  13590. name: "Front (Costume)",
  13591. image: {
  13592. source: "./media/characters/geno-maxwell/front-costume.svg",
  13593. extra: 984/856,
  13594. bottom: 87/1071
  13595. }
  13596. },
  13597. backcostume: {
  13598. height: math.unit(7 + 4/12, "feet"),
  13599. weight: math.unit(690, "lb"),
  13600. name: "Back (Costume)",
  13601. image: {
  13602. source: "./media/characters/geno-maxwell/back-costume.svg",
  13603. extra: 981/854,
  13604. bottom: 57/1038
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Micro",
  13611. height: math.unit(3, "inches")
  13612. },
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(7 + 4 / 12, "feet"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Macro",
  13620. height: math.unit(220, "feet")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(11, "miles")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(7 + 4/12, "feet"),
  13633. weight: math.unit(750, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/regena-maxwell/front.svg",
  13637. extra: 984/856,
  13638. bottom: 87/1071
  13639. }
  13640. },
  13641. back: {
  13642. height: math.unit(7 + 4/12, "feet"),
  13643. weight: math.unit(750, "lb"),
  13644. name: "Back",
  13645. image: {
  13646. source: "./media/characters/regena-maxwell/back.svg",
  13647. extra: 981/854,
  13648. bottom: 57/1038
  13649. }
  13650. },
  13651. frontCostume: {
  13652. height: math.unit(7 + 4/12, "feet"),
  13653. weight: math.unit(750, "lb"),
  13654. name: "Front (Costume)",
  13655. image: {
  13656. source: "./media/characters/regena-maxwell/front-costume.svg",
  13657. extra: 984/856,
  13658. bottom: 87/1071
  13659. }
  13660. },
  13661. backcostume: {
  13662. height: math.unit(7 + 4/12, "feet"),
  13663. weight: math.unit(750, "lb"),
  13664. name: "Back (Costume)",
  13665. image: {
  13666. source: "./media/characters/regena-maxwell/back-costume.svg",
  13667. extra: 981/854,
  13668. bottom: 57/1038
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Normal",
  13675. height: math.unit(7 + 4 / 12, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Macro",
  13680. height: math.unit(220, "feet")
  13681. },
  13682. {
  13683. name: "Megamacro",
  13684. height: math.unit(11, "miles")
  13685. },
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13697. extra: 860 / 690,
  13698. bottom: 0.03
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(1.7, "meters"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/quilly/front.svg",
  13719. extra: 890 / 776
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Gigamacro",
  13726. height: math.unit(404090, "miles"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(7 + 8 / 12, "feet"),
  13736. weight: math.unit(350, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/tempest/front.svg",
  13740. extra: 1175 / 1086,
  13741. bottom: 0.02
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(7 + 8 / 12, "feet"),
  13749. default: true
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13755. {
  13756. side: {
  13757. height: math.unit(4 + 5 / 12, "feet"),
  13758. weight: math.unit(80, "lb"),
  13759. name: "Side",
  13760. image: {
  13761. source: "./media/characters/rodger/side.svg",
  13762. extra: 1235 / 1118
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(1, "inch")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(4 + 5 / 12, "feet"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(120, "feet")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(6, "feet"),
  13787. weight: math.unit(150, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/danyel/front.svg",
  13791. extra: 1185 / 1123,
  13792. bottom: 0.05
  13793. }
  13794. },
  13795. },
  13796. [
  13797. {
  13798. name: "Shrunken",
  13799. height: math.unit(0.5, "mm")
  13800. },
  13801. {
  13802. name: "Micro",
  13803. height: math.unit(1, "mm"),
  13804. default: true
  13805. },
  13806. {
  13807. name: "Upsized",
  13808. height: math.unit(5 + 5 / 12, "feet")
  13809. },
  13810. ]
  13811. ))
  13812. characterMakers.push(() => makeCharacter(
  13813. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13814. {
  13815. front: {
  13816. height: math.unit(5 + 6 / 12, "feet"),
  13817. weight: math.unit(200, "lb"),
  13818. name: "Front",
  13819. image: {
  13820. source: "./media/characters/vivian-bijoux/front.svg",
  13821. extra: 1217/1209,
  13822. bottom: 76/1293
  13823. }
  13824. },
  13825. back: {
  13826. height: math.unit(5 + 6 / 12, "feet"),
  13827. weight: math.unit(200, "lb"),
  13828. name: "Back",
  13829. image: {
  13830. source: "./media/characters/vivian-bijoux/back.svg",
  13831. extra: 1214/1208,
  13832. bottom: 51/1265
  13833. }
  13834. },
  13835. dressed: {
  13836. height: math.unit(5 + 6 / 12, "feet"),
  13837. weight: math.unit(200, "lb"),
  13838. name: "Dressed",
  13839. image: {
  13840. source: "./media/characters/vivian-bijoux/dressed.svg",
  13841. extra: 1217/1209,
  13842. bottom: 76/1293
  13843. }
  13844. },
  13845. },
  13846. [
  13847. {
  13848. name: "Normal",
  13849. height: math.unit(5 + 6 / 12, "feet"),
  13850. default: true
  13851. },
  13852. {
  13853. name: "Bad Dream",
  13854. height: math.unit(500, "feet")
  13855. },
  13856. {
  13857. name: "Nightmare",
  13858. height: math.unit(500, "miles")
  13859. },
  13860. ]
  13861. ))
  13862. characterMakers.push(() => makeCharacter(
  13863. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13864. {
  13865. front: {
  13866. height: math.unit(6 + 1 / 12, "feet"),
  13867. weight: math.unit(260, "lb"),
  13868. name: "Front",
  13869. image: {
  13870. source: "./media/characters/zeta/front.svg",
  13871. extra: 1968 / 1889,
  13872. bottom: 0.06
  13873. }
  13874. },
  13875. back: {
  13876. height: math.unit(6 + 1 / 12, "feet"),
  13877. weight: math.unit(260, "lb"),
  13878. name: "Back",
  13879. image: {
  13880. source: "./media/characters/zeta/back.svg",
  13881. extra: 1944 / 1858,
  13882. bottom: 0.03
  13883. }
  13884. },
  13885. hand: {
  13886. height: math.unit(1.112, "feet"),
  13887. name: "Hand",
  13888. image: {
  13889. source: "./media/characters/zeta/hand.svg"
  13890. }
  13891. },
  13892. foot: {
  13893. height: math.unit(1.48, "feet"),
  13894. name: "Foot",
  13895. image: {
  13896. source: "./media/characters/zeta/foot.svg"
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(6, "inches")
  13904. },
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(6 + 1 / 12, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro",
  13912. height: math.unit(20, "feet")
  13913. },
  13914. ]
  13915. ))
  13916. characterMakers.push(() => makeCharacter(
  13917. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13918. {
  13919. front: {
  13920. height: math.unit(6, "feet"),
  13921. weight: math.unit(150, "lb"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/jamie-larsen/front.svg",
  13925. extra: 962 / 933,
  13926. bottom: 0.02
  13927. }
  13928. },
  13929. back: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Back",
  13933. image: {
  13934. source: "./media/characters/jamie-larsen/back.svg",
  13935. extra: 997 / 946
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Macro",
  13942. height: math.unit(28 + 7 / 12, "feet"),
  13943. default: true
  13944. },
  13945. {
  13946. name: "Macro+",
  13947. height: math.unit(180, "feet")
  13948. },
  13949. {
  13950. name: "Megamacro",
  13951. height: math.unit(10, "miles")
  13952. },
  13953. {
  13954. name: "Gigamacro",
  13955. height: math.unit(200000, "miles")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(6, "feet"),
  13964. weight: math.unit(120, "lb"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/vance/front.svg",
  13968. extra: 1980 / 1890,
  13969. bottom: 0.09
  13970. }
  13971. },
  13972. back: {
  13973. height: math.unit(6, "feet"),
  13974. weight: math.unit(120, "lb"),
  13975. name: "Back",
  13976. image: {
  13977. source: "./media/characters/vance/back.svg",
  13978. extra: 2081 / 1994,
  13979. bottom: 0.014
  13980. }
  13981. },
  13982. hand: {
  13983. height: math.unit(0.88, "feet"),
  13984. name: "Hand",
  13985. image: {
  13986. source: "./media/characters/vance/hand.svg"
  13987. }
  13988. },
  13989. foot: {
  13990. height: math.unit(0.64, "feet"),
  13991. name: "Foot",
  13992. image: {
  13993. source: "./media/characters/vance/foot.svg"
  13994. }
  13995. },
  13996. },
  13997. [
  13998. {
  13999. name: "Small",
  14000. height: math.unit(90, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(100, "meters")
  14006. },
  14007. {
  14008. name: "Megamacro",
  14009. height: math.unit(15, "miles")
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(6, "feet"),
  14018. weight: math.unit(180, "lb"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/xochitl/front.svg",
  14022. extra: 2297 / 2261,
  14023. bottom: 0.065
  14024. }
  14025. },
  14026. back: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(180, "lb"),
  14029. name: "Back",
  14030. image: {
  14031. source: "./media/characters/xochitl/back.svg",
  14032. extra: 2386 / 2354,
  14033. bottom: 0.01
  14034. }
  14035. },
  14036. foot: {
  14037. height: math.unit(6 / 5 * 1.15, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Foot",
  14040. image: {
  14041. source: "./media/characters/xochitl/foot.svg"
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Macro",
  14048. height: math.unit(80, "feet")
  14049. },
  14050. {
  14051. name: "Macro+",
  14052. height: math.unit(400, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Gigamacro",
  14057. height: math.unit(80000, "miles")
  14058. },
  14059. {
  14060. name: "Gigamacro+",
  14061. height: math.unit(400000, "miles")
  14062. },
  14063. {
  14064. name: "Teramacro",
  14065. height: math.unit(300, "AU")
  14066. },
  14067. ]
  14068. ))
  14069. characterMakers.push(() => makeCharacter(
  14070. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14071. {
  14072. front: {
  14073. height: math.unit(6, "feet"),
  14074. weight: math.unit(150, "lb"),
  14075. name: "Front",
  14076. image: {
  14077. source: "./media/characters/vincent/front.svg",
  14078. extra: 1130 / 1080,
  14079. bottom: 0.055
  14080. }
  14081. },
  14082. beak: {
  14083. height: math.unit(6 * 0.1, "feet"),
  14084. name: "Beak",
  14085. image: {
  14086. source: "./media/characters/vincent/beak.svg"
  14087. }
  14088. },
  14089. hand: {
  14090. height: math.unit(6 * 0.85, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Hand",
  14093. image: {
  14094. source: "./media/characters/vincent/hand.svg"
  14095. }
  14096. },
  14097. foot: {
  14098. height: math.unit(6 * 0.19, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Foot",
  14101. image: {
  14102. source: "./media/characters/vincent/foot.svg"
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Base",
  14109. height: math.unit(6 + 5 / 12, "feet"),
  14110. default: true
  14111. },
  14112. {
  14113. name: "Macro",
  14114. height: math.unit(300, "feet")
  14115. },
  14116. {
  14117. name: "Megamacro",
  14118. height: math.unit(2, "miles")
  14119. },
  14120. {
  14121. name: "Gigamacro",
  14122. height: math.unit(1000, "miles")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(2, "meters"),
  14131. weight: math.unit(500, "kg"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/coatl/front.svg",
  14135. extra: 3948 / 3500,
  14136. bottom: 0.082
  14137. }
  14138. },
  14139. },
  14140. [
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(4, "meters")
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(100, "meters"),
  14148. default: true
  14149. },
  14150. {
  14151. name: "Macro+",
  14152. height: math.unit(300, "meters")
  14153. },
  14154. {
  14155. name: "Megamacro",
  14156. height: math.unit(3, "gigameters")
  14157. },
  14158. {
  14159. name: "Megamacro+",
  14160. height: math.unit(300, "terameters")
  14161. },
  14162. {
  14163. name: "Megamacro++",
  14164. height: math.unit(3, "lightyears")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6, "feet"),
  14173. weight: math.unit(50, "kg"),
  14174. name: "front",
  14175. image: {
  14176. source: "./media/characters/shiroryu/front.svg",
  14177. extra: 1990 / 1935
  14178. }
  14179. },
  14180. },
  14181. [
  14182. {
  14183. name: "Mortal Mingling",
  14184. height: math.unit(3, "meters")
  14185. },
  14186. {
  14187. name: "Kaiju-ish",
  14188. height: math.unit(250, "meters")
  14189. },
  14190. {
  14191. name: "Somewhat Godly",
  14192. height: math.unit(400, "km"),
  14193. default: true
  14194. },
  14195. {
  14196. name: "Planetary",
  14197. height: math.unit(300, "megameters")
  14198. },
  14199. {
  14200. name: "Galaxy-dwarfing",
  14201. height: math.unit(450, "kiloparsecs")
  14202. },
  14203. {
  14204. name: "Universe Eater",
  14205. height: math.unit(150, "gigaparsecs")
  14206. },
  14207. {
  14208. name: "Almost Immeasurable",
  14209. height: math.unit(1.3e266, "yottaparsecs")
  14210. },
  14211. ]
  14212. ))
  14213. characterMakers.push(() => makeCharacter(
  14214. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14215. {
  14216. front: {
  14217. height: math.unit(6, "feet"),
  14218. weight: math.unit(150, "lb"),
  14219. name: "Front",
  14220. image: {
  14221. source: "./media/characters/umeko/front.svg",
  14222. extra: 1,
  14223. bottom: 0.019
  14224. }
  14225. },
  14226. frontArmored: {
  14227. height: math.unit(6, "feet"),
  14228. weight: math.unit(150, "lb"),
  14229. name: "Front (Armored)",
  14230. image: {
  14231. source: "./media/characters/umeko/front-armored.svg",
  14232. extra: 1,
  14233. bottom: 0.021
  14234. }
  14235. },
  14236. },
  14237. [
  14238. {
  14239. name: "Macro",
  14240. height: math.unit(220, "feet"),
  14241. default: true
  14242. },
  14243. {
  14244. name: "Guardian Dragon",
  14245. height: math.unit(50, "miles")
  14246. },
  14247. {
  14248. name: "Cosmic",
  14249. height: math.unit(800000, "miles")
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(150, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/cassidy/front.svg",
  14262. extra: 810/808,
  14263. bottom: 41/851
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Canon Height",
  14270. height: math.unit(120, "feet"),
  14271. default: true
  14272. },
  14273. {
  14274. name: "Macro+",
  14275. height: math.unit(400, "feet")
  14276. },
  14277. {
  14278. name: "Macro++",
  14279. height: math.unit(4000, "feet")
  14280. },
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(3, "miles")
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(6, "feet"),
  14292. weight: math.unit(150, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/isaac/front.svg",
  14296. extra: 896 / 815,
  14297. bottom: 0.11
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Human Size",
  14304. height: math.unit(8, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(400, "feet")
  14310. },
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(50, "miles")
  14314. },
  14315. {
  14316. name: "Canon Height",
  14317. height: math.unit(200, "AU")
  14318. },
  14319. ]
  14320. ))
  14321. characterMakers.push(() => makeCharacter(
  14322. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14323. {
  14324. front: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(72, "kg"),
  14327. name: "Front",
  14328. image: {
  14329. source: "./media/characters/sleekit/front.svg",
  14330. extra: 4693 / 4487,
  14331. bottom: 0.012
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Minimum Height",
  14338. height: math.unit(10, "meters")
  14339. },
  14340. {
  14341. name: "Smaller",
  14342. height: math.unit(25, "meters")
  14343. },
  14344. {
  14345. name: "Larger",
  14346. height: math.unit(38, "meters"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Maximum height",
  14351. height: math.unit(100, "meters")
  14352. },
  14353. ]
  14354. ))
  14355. characterMakers.push(() => makeCharacter(
  14356. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14357. {
  14358. front: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Front",
  14362. image: {
  14363. source: "./media/characters/nillia/front.svg",
  14364. extra: 2195 / 2037,
  14365. bottom: 0.005
  14366. }
  14367. },
  14368. back: {
  14369. height: math.unit(6, "feet"),
  14370. weight: math.unit(150, "lb"),
  14371. name: "Back",
  14372. image: {
  14373. source: "./media/characters/nillia/back.svg",
  14374. extra: 2195 / 2037,
  14375. bottom: 0.005
  14376. }
  14377. },
  14378. },
  14379. [
  14380. {
  14381. name: "Canon Height",
  14382. height: math.unit(489, "feet"),
  14383. default: true
  14384. }
  14385. ]
  14386. ))
  14387. characterMakers.push(() => makeCharacter(
  14388. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14389. {
  14390. front: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(150, "lb"),
  14393. name: "Front",
  14394. image: {
  14395. source: "./media/characters/mesmyriza/front.svg",
  14396. extra: 2067 / 1784,
  14397. bottom: 0.035
  14398. }
  14399. },
  14400. foot: {
  14401. height: math.unit(6 / (250 / 35), "feet"),
  14402. name: "Foot",
  14403. image: {
  14404. source: "./media/characters/mesmyriza/foot.svg"
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(457, "meters"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Megamacro",
  14416. height: math.unit(8, "megameters")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(250, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/saudade/front.svg",
  14429. extra: 1172 / 1139,
  14430. bottom: 0.035
  14431. }
  14432. },
  14433. },
  14434. [
  14435. {
  14436. name: "Micro",
  14437. height: math.unit(3, "inches")
  14438. },
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(6, "feet"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Macro",
  14446. height: math.unit(50, "feet")
  14447. },
  14448. {
  14449. name: "Megamacro",
  14450. height: math.unit(2800, "feet")
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(5 + 4 / 12, "feet"),
  14459. weight: math.unit(100, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/keireer/front.svg",
  14463. extra: 716 / 666,
  14464. bottom: 0.05
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(5 + 4 / 12, "feet"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(90, "kg"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/mirja/front.svg",
  14485. extra: 1789 / 1683,
  14486. bottom: 0.05
  14487. }
  14488. },
  14489. frontDressed: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(90, "lb"),
  14492. name: "Front (Dressed)",
  14493. image: {
  14494. source: "./media/characters/mirja/front-dressed.svg",
  14495. extra: 1789 / 1683,
  14496. bottom: 0.05
  14497. }
  14498. },
  14499. back: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(90, "lb"),
  14502. name: "Back",
  14503. image: {
  14504. source: "./media/characters/mirja/back.svg",
  14505. extra: 953 / 917,
  14506. bottom: 0.017
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "\"Incognito\"",
  14513. height: math.unit(3, "meters")
  14514. },
  14515. {
  14516. name: "Strolling Size",
  14517. height: math.unit(15, "km")
  14518. },
  14519. {
  14520. name: "Larger Strolling Size",
  14521. height: math.unit(400, "km")
  14522. },
  14523. {
  14524. name: "Preferred Size",
  14525. height: math.unit(5000, "km")
  14526. },
  14527. {
  14528. name: "True Size",
  14529. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(15, "feet"),
  14539. weight: math.unit(880, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/nightraver/front.svg",
  14543. extra: 2444 / 2160,
  14544. bottom: 0.027
  14545. }
  14546. },
  14547. back: {
  14548. height: math.unit(15, "feet"),
  14549. weight: math.unit(880, "kg"),
  14550. name: "Back",
  14551. image: {
  14552. source: "./media/characters/nightraver/back.svg",
  14553. extra: 2309 / 2180,
  14554. bottom: 0.005
  14555. }
  14556. },
  14557. sole: {
  14558. height: math.unit(2.878, "feet"),
  14559. name: "Sole",
  14560. image: {
  14561. source: "./media/characters/nightraver/sole.svg"
  14562. }
  14563. },
  14564. foot: {
  14565. height: math.unit(2.285, "feet"),
  14566. name: "Foot",
  14567. image: {
  14568. source: "./media/characters/nightraver/foot.svg"
  14569. }
  14570. },
  14571. maw: {
  14572. height: math.unit(2.67, "feet"),
  14573. name: "Maw",
  14574. image: {
  14575. source: "./media/characters/nightraver/maw.svg"
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Micro",
  14582. height: math.unit(1, "cm")
  14583. },
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(15, "feet"),
  14587. default: true
  14588. },
  14589. {
  14590. name: "Macro",
  14591. height: math.unit(300, "feet")
  14592. },
  14593. {
  14594. name: "Megamacro",
  14595. height: math.unit(300, "miles")
  14596. },
  14597. {
  14598. name: "Gigamacro",
  14599. height: math.unit(10000, "miles")
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14605. {
  14606. side: {
  14607. height: math.unit(2, "inches"),
  14608. weight: math.unit(5, "grams"),
  14609. name: "Side",
  14610. image: {
  14611. source: "./media/characters/arc/side.svg"
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Micro",
  14618. height: math.unit(2, "inches"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(1.1938, "meters"),
  14628. weight: math.unit(54, "kg"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/nebula-shahar/front.svg",
  14632. extra: 1642 / 1436,
  14633. bottom: 0.06
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Megamicro",
  14640. height: math.unit(0.3, "mm")
  14641. },
  14642. {
  14643. name: "Micro",
  14644. height: math.unit(3, "cm")
  14645. },
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(138, "cm"),
  14649. default: true
  14650. },
  14651. {
  14652. name: "Macro",
  14653. height: math.unit(30, "m")
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(5.24, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/shayla/front.svg",
  14666. extra: 1512 / 1414,
  14667. bottom: 0.01
  14668. }
  14669. },
  14670. back: {
  14671. height: math.unit(5.24, "feet"),
  14672. weight: math.unit(150, "lb"),
  14673. name: "Back",
  14674. image: {
  14675. source: "./media/characters/shayla/back.svg",
  14676. extra: 1512 / 1414
  14677. }
  14678. },
  14679. hand: {
  14680. height: math.unit(0.7781496062992126, "feet"),
  14681. name: "Hand",
  14682. image: {
  14683. source: "./media/characters/shayla/hand.svg"
  14684. }
  14685. },
  14686. foot: {
  14687. height: math.unit(1.4206036745406823, "feet"),
  14688. name: "Foot",
  14689. image: {
  14690. source: "./media/characters/shayla/foot.svg"
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Micro",
  14697. height: math.unit(0.32, "feet")
  14698. },
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(5.24, "feet"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Macro",
  14706. height: math.unit(492.12, "feet")
  14707. },
  14708. {
  14709. name: "Megamacro",
  14710. height: math.unit(186.41, "miles")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(2.2, "m"),
  14719. weight: math.unit(120, "kg"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/pia-jr/front.svg",
  14723. extra: 1000 / 970,
  14724. bottom: 0.035
  14725. }
  14726. },
  14727. hand: {
  14728. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14729. name: "Hand",
  14730. image: {
  14731. source: "./media/characters/pia-jr/hand.svg"
  14732. }
  14733. },
  14734. paw: {
  14735. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14736. name: "Paw",
  14737. image: {
  14738. source: "./media/characters/pia-jr/paw.svg"
  14739. }
  14740. },
  14741. },
  14742. [
  14743. {
  14744. name: "Micro",
  14745. height: math.unit(1.2, "cm")
  14746. },
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(2.2, "m"),
  14750. default: true
  14751. },
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(180, "m")
  14755. },
  14756. {
  14757. name: "Megamacro",
  14758. height: math.unit(420, "km")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(2, "m"),
  14767. weight: math.unit(115, "kg"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/pia-sr/front.svg",
  14771. extra: 760 / 730,
  14772. bottom: 0.015
  14773. }
  14774. },
  14775. back: {
  14776. height: math.unit(2, "m"),
  14777. weight: math.unit(115, "kg"),
  14778. name: "Back",
  14779. image: {
  14780. source: "./media/characters/pia-sr/back.svg",
  14781. extra: 760 / 730,
  14782. bottom: 0.01
  14783. }
  14784. },
  14785. hand: {
  14786. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14787. name: "Hand",
  14788. image: {
  14789. source: "./media/characters/pia-sr/hand.svg"
  14790. }
  14791. },
  14792. foot: {
  14793. height: math.unit(1.83, "feet"),
  14794. name: "Foot",
  14795. image: {
  14796. source: "./media/characters/pia-sr/foot.svg"
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Micro",
  14803. height: math.unit(88, "mm")
  14804. },
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(2, "m"),
  14808. default: true
  14809. },
  14810. {
  14811. name: "Macro",
  14812. height: math.unit(200, "m")
  14813. },
  14814. {
  14815. name: "Megamacro",
  14816. height: math.unit(420, "km")
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(8 + 2 / 12, "feet"),
  14825. weight: math.unit(300, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/kibibyte/front.svg",
  14829. extra: 2221 / 2098,
  14830. bottom: 0.04
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(8 + 2 / 12, "feet"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Socialable Macro",
  14842. height: math.unit(50, "feet")
  14843. },
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(300, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(500, "miles")
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/felix/front.svg",
  14863. extra: 762 / 722,
  14864. bottom: 0.02
  14865. }
  14866. },
  14867. frontClothed: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(150, "lb"),
  14870. name: "Front (Clothed)",
  14871. image: {
  14872. source: "./media/characters/felix/front-clothed.svg",
  14873. extra: 762 / 722,
  14874. bottom: 0.02
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6 + 8 / 12, "feet"),
  14882. default: true
  14883. },
  14884. {
  14885. name: "Macro",
  14886. height: math.unit(2600, "feet")
  14887. },
  14888. {
  14889. name: "Megamacro",
  14890. height: math.unit(450, "miles")
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6 + 1 / 12, "feet"),
  14899. weight: math.unit(250, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/tobo/front.svg",
  14903. extra: 608 / 586,
  14904. bottom: 0.023
  14905. }
  14906. },
  14907. back: {
  14908. height: math.unit(6 + 1 / 12, "feet"),
  14909. weight: math.unit(250, "lb"),
  14910. name: "Back",
  14911. image: {
  14912. source: "./media/characters/tobo/back.svg",
  14913. extra: 608 / 586
  14914. }
  14915. },
  14916. },
  14917. [
  14918. {
  14919. name: "Nano",
  14920. height: math.unit(2, "nm")
  14921. },
  14922. {
  14923. name: "Megamicro",
  14924. height: math.unit(0.1, "mm")
  14925. },
  14926. {
  14927. name: "Micro",
  14928. height: math.unit(1, "inch"),
  14929. default: true
  14930. },
  14931. {
  14932. name: "Human-sized",
  14933. height: math.unit(6 + 1 / 12, "feet")
  14934. },
  14935. {
  14936. name: "Macro",
  14937. height: math.unit(250, "feet")
  14938. },
  14939. {
  14940. name: "Megamacro",
  14941. height: math.unit(75, "miles")
  14942. },
  14943. {
  14944. name: "Texas-sized",
  14945. height: math.unit(750, "miles")
  14946. },
  14947. {
  14948. name: "Teramacro",
  14949. height: math.unit(50000, "miles")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(269, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/danny-kapowsky/front.svg",
  14962. extra: 766 / 736,
  14963. bottom: 0.044
  14964. }
  14965. },
  14966. back: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(269, "lb"),
  14969. name: "Back",
  14970. image: {
  14971. source: "./media/characters/danny-kapowsky/back.svg",
  14972. extra: 797 / 760,
  14973. bottom: 0.025
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(150, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Macro+",
  14985. height: math.unit(200, "feet")
  14986. },
  14987. {
  14988. name: "Macro++",
  14989. height: math.unit(300, "feet")
  14990. },
  14991. {
  14992. name: "Macro+++",
  14993. height: math.unit(400, "feet")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14999. {
  15000. side: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(170, "lb"),
  15003. name: "Side",
  15004. image: {
  15005. source: "./media/characters/finn/side.svg",
  15006. extra: 1953 / 1807,
  15007. bottom: 0.057
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Megamacro",
  15014. height: math.unit(14445, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 6 / 12, "feet"),
  15024. weight: math.unit(125, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/roy/front.svg",
  15028. extra: 1,
  15029. bottom: 0.11
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Micro",
  15036. height: math.unit(3, "inches"),
  15037. default: true
  15038. },
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(5 + 6 / 12, "feet")
  15042. },
  15043. {
  15044. name: "Lesser Macro",
  15045. height: math.unit(60, "feet")
  15046. },
  15047. {
  15048. name: "Greater Macro",
  15049. height: math.unit(120, "feet")
  15050. },
  15051. ]
  15052. ))
  15053. characterMakers.push(() => makeCharacter(
  15054. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15055. {
  15056. front: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(100, "lb"),
  15059. name: "Front",
  15060. image: {
  15061. source: "./media/characters/aevsivs/front.svg",
  15062. extra: 1,
  15063. bottom: 0.03
  15064. }
  15065. },
  15066. back: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(100, "lb"),
  15069. name: "Back",
  15070. image: {
  15071. source: "./media/characters/aevsivs/back.svg"
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Micro",
  15078. height: math.unit(2, "inches"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(5, "feet")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(5 + 7 / 12, "feet"),
  15092. weight: math.unit(159, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/hildegard/front.svg",
  15096. extra: 289 / 269,
  15097. bottom: 7.63 / 297.8
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(5 + 7 / 12, "feet"),
  15102. weight: math.unit(159, "lb"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/hildegard/back.svg",
  15106. extra: 280 / 260,
  15107. bottom: 2.3 / 282
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(5 + 7 / 12, "feet"),
  15115. default: true
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15121. {
  15122. bernard: {
  15123. height: math.unit(2 + 7 / 12, "feet"),
  15124. weight: math.unit(66, "lb"),
  15125. name: "Bernard",
  15126. rename: true,
  15127. image: {
  15128. source: "./media/characters/bernard-wilder/bernard.svg",
  15129. extra: 192 / 128,
  15130. bottom: 0.05
  15131. }
  15132. },
  15133. wilder: {
  15134. height: math.unit(5 + 8 / 12, "feet"),
  15135. weight: math.unit(143, "lb"),
  15136. name: "Wilder",
  15137. rename: true,
  15138. image: {
  15139. source: "./media/characters/bernard-wilder/wilder.svg",
  15140. extra: 361 / 312,
  15141. bottom: 0.02
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(2 + 7 / 12, "feet"),
  15149. default: true
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15155. {
  15156. anthro: {
  15157. height: math.unit(6 + 1 / 12, "feet"),
  15158. weight: math.unit(155, "lb"),
  15159. name: "Anthro",
  15160. image: {
  15161. source: "./media/characters/hearth/anthro.svg",
  15162. extra: 1178/1136,
  15163. bottom: 28/1206
  15164. }
  15165. },
  15166. feral: {
  15167. height: math.unit(3.78, "feet"),
  15168. weight: math.unit(35, "kg"),
  15169. name: "Feral",
  15170. image: {
  15171. source: "./media/characters/hearth/feral.svg",
  15172. extra: 153 / 135,
  15173. bottom: 0.03
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(6 + 1 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(182, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/ingrid/front.svg",
  15194. extra: 294 / 268,
  15195. bottom: 0.027
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(6, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15209. {
  15210. eevee: {
  15211. height: math.unit(2 + 10 / 12, "feet"),
  15212. weight: math.unit(86, "lb"),
  15213. name: "Malgam",
  15214. image: {
  15215. source: "./media/characters/malgam/eevee.svg",
  15216. extra: 952/784,
  15217. bottom: 38/990
  15218. }
  15219. },
  15220. sylveon: {
  15221. height: math.unit(4, "feet"),
  15222. weight: math.unit(101, "lb"),
  15223. name: "Future Malgam",
  15224. rename: true,
  15225. image: {
  15226. source: "./media/characters/malgam/sylveon.svg",
  15227. extra: 371 / 325,
  15228. bottom: 0.015
  15229. }
  15230. },
  15231. gigantamax: {
  15232. height: math.unit(50, "feet"),
  15233. name: "Gigantamax Malgam",
  15234. rename: true,
  15235. image: {
  15236. source: "./media/characters/malgam/gigantamax.svg"
  15237. }
  15238. },
  15239. },
  15240. [
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(2 + 10 / 12, "feet"),
  15244. default: true
  15245. },
  15246. ]
  15247. ))
  15248. characterMakers.push(() => makeCharacter(
  15249. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15250. {
  15251. front: {
  15252. height: math.unit(5 + 11 / 12, "feet"),
  15253. weight: math.unit(188, "lb"),
  15254. name: "Front",
  15255. image: {
  15256. source: "./media/characters/fleur/front.svg",
  15257. extra: 309 / 283,
  15258. bottom: 0.007
  15259. }
  15260. },
  15261. },
  15262. [
  15263. {
  15264. name: "Normal",
  15265. height: math.unit(5 + 11 / 12, "feet"),
  15266. default: true
  15267. },
  15268. ]
  15269. ))
  15270. characterMakers.push(() => makeCharacter(
  15271. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15272. {
  15273. front: {
  15274. height: math.unit(5 + 4 / 12, "feet"),
  15275. weight: math.unit(122, "lb"),
  15276. name: "Front",
  15277. image: {
  15278. source: "./media/characters/jude/front.svg",
  15279. extra: 288 / 273,
  15280. bottom: 0.03
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Normal",
  15287. height: math.unit(5 + 4 / 12, "feet"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(5 + 11 / 12, "feet"),
  15297. weight: math.unit(190, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/seara/front.svg",
  15301. extra: 1,
  15302. bottom: 0.05
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(5 + 11 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(16 + 5 / 12, "feet"),
  15319. weight: math.unit(524, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/caspian/front.svg",
  15323. extra: 1,
  15324. bottom: 0.04
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(16 + 5 / 12, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(5 + 7 / 12, "feet"),
  15341. weight: math.unit(170, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/mika/front.svg",
  15345. extra: 1,
  15346. bottom: 0.016
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(5 + 7 / 12, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6 + 2 / 12, "feet"),
  15363. weight: math.unit(268, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/sol/front.svg",
  15367. extra: 247 / 231,
  15368. bottom: 0.05
  15369. }
  15370. },
  15371. },
  15372. [
  15373. {
  15374. name: "Normal",
  15375. height: math.unit(6 + 2 / 12, "feet"),
  15376. default: true
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15382. {
  15383. buizel: {
  15384. height: math.unit(2 + 5 / 12, "feet"),
  15385. weight: math.unit(87, "lb"),
  15386. name: "Buizel",
  15387. image: {
  15388. source: "./media/characters/umiko/buizel.svg",
  15389. extra: 172 / 157,
  15390. bottom: 0.01
  15391. }
  15392. },
  15393. floatzel: {
  15394. height: math.unit(5 + 9 / 12, "feet"),
  15395. weight: math.unit(250, "lb"),
  15396. name: "Floatzel",
  15397. image: {
  15398. source: "./media/characters/umiko/floatzel.svg",
  15399. extra: 262 / 248
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(2 + 5 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6 + 2 / 12, "feet"),
  15416. weight: math.unit(146, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/iliac/front.svg",
  15420. extra: 389 / 365,
  15421. bottom: 0.035
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6, "feet"),
  15438. weight: math.unit(170, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/topaz/front.svg",
  15442. extra: 317 / 303,
  15443. bottom: 0.055
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(5 + 11 / 12, "feet"),
  15460. weight: math.unit(144, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/gabriel/front.svg",
  15464. extra: 285 / 262,
  15465. bottom: 0.004
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(5 + 11 / 12, "feet"),
  15473. default: true
  15474. },
  15475. ]
  15476. ))
  15477. characterMakers.push(() => makeCharacter(
  15478. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15479. {
  15480. side: {
  15481. height: math.unit(6 + 5 / 12, "feet"),
  15482. weight: math.unit(300, "lb"),
  15483. name: "Side",
  15484. image: {
  15485. source: "./media/characters/tempest-suicune/side.svg",
  15486. extra: 195 / 154,
  15487. bottom: 0.04
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(6 + 5 / 12, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(7 + 2 / 12, "feet"),
  15504. weight: math.unit(322, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/vulcan/front.svg",
  15508. extra: 154 / 147,
  15509. bottom: 0.04
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Normal",
  15516. height: math.unit(7 + 2 / 12, "feet"),
  15517. default: true
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(5 + 10 / 12, "feet"),
  15526. weight: math.unit(264, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/gault/front.svg",
  15530. extra: 161 / 140,
  15531. bottom: 0.028
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Normal",
  15538. height: math.unit(5 + 10 / 12, "feet"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/shard/front.svg",
  15552. extra: 273 / 238,
  15553. bottom: 0.02
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(3 + 6 / 12, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(5 + 11 / 12, "feet"),
  15570. weight: math.unit(146, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/ashe/front.svg",
  15574. extra: 400 / 373,
  15575. bottom: 0.01
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(5 + 5 / 12, "feet"),
  15592. weight: math.unit(135, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/beatrix/front.svg",
  15596. extra: 392 / 379,
  15597. bottom: 0.01
  15598. }
  15599. },
  15600. },
  15601. [
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(6, "feet"),
  15605. default: true
  15606. },
  15607. ]
  15608. ))
  15609. characterMakers.push(() => makeCharacter(
  15610. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15611. {
  15612. front: {
  15613. height: math.unit(6 + 2/12, "feet"),
  15614. weight: math.unit(135, "lb"),
  15615. name: "Front",
  15616. image: {
  15617. source: "./media/characters/ignatius/front.svg",
  15618. extra: 1380/1259,
  15619. bottom: 27/1407
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(6 + 2/12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6 + 2 / 12, "feet"),
  15636. weight: math.unit(138, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/mei-li/front.svg",
  15640. extra: 237 / 229,
  15641. bottom: 0.03
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6 + 2 / 12, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(2 + 4 / 12, "feet"),
  15658. weight: math.unit(62, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/puru/front.svg",
  15662. extra: 206 / 149,
  15663. bottom: 0.06
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(2 + 4 / 12, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15677. {
  15678. anthro: {
  15679. height: math.unit(5 + 8/12, "feet"),
  15680. weight: math.unit(200, "lb"),
  15681. energyNeed: math.unit(2000, "kcal"),
  15682. name: "Anthro",
  15683. image: {
  15684. source: "./media/characters/kee/anthro.svg",
  15685. extra: 3251/3184,
  15686. bottom: 250/3501
  15687. }
  15688. },
  15689. taur: {
  15690. height: math.unit(11, "feet"),
  15691. weight: math.unit(500, "lb"),
  15692. energyNeed: math.unit(5000, "kcal"),
  15693. name: "Taur",
  15694. image: {
  15695. source: "./media/characters/kee/taur.svg",
  15696. extra: 1362/1320,
  15697. bottom: 83/1445
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(5 + 8/12, "feet"),
  15705. default: true
  15706. },
  15707. {
  15708. name: "Macro",
  15709. height: math.unit(35, "feet")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15715. {
  15716. anthro: {
  15717. height: math.unit(7, "feet"),
  15718. weight: math.unit(190, "lb"),
  15719. name: "Anthro",
  15720. image: {
  15721. source: "./media/characters/cobalt-dracha/anthro.svg",
  15722. extra: 231 / 225,
  15723. bottom: 0.04
  15724. }
  15725. },
  15726. feral: {
  15727. height: math.unit(9 + 7 / 12, "feet"),
  15728. weight: math.unit(294, "lb"),
  15729. name: "Feral",
  15730. image: {
  15731. source: "./media/characters/cobalt-dracha/feral.svg",
  15732. extra: 692 / 633,
  15733. bottom: 0.05
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(7, "feet"),
  15741. default: true
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15747. {
  15748. fallen: {
  15749. height: math.unit(11 + 8 / 12, "feet"),
  15750. weight: math.unit(485, "lb"),
  15751. name: "Java (Fallen)",
  15752. rename: true,
  15753. image: {
  15754. source: "./media/characters/java/fallen.svg",
  15755. extra: 226 / 208,
  15756. bottom: 0.005
  15757. }
  15758. },
  15759. godkin: {
  15760. height: math.unit(10 + 6 / 12, "feet"),
  15761. weight: math.unit(328, "lb"),
  15762. name: "Java (Godkin)",
  15763. rename: true,
  15764. image: {
  15765. source: "./media/characters/java/godkin.svg",
  15766. extra: 1104/1068,
  15767. bottom: 36/1140
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(11 + 8 / 12, "feet"),
  15775. default: true
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(5 + 9 / 12, "feet"),
  15784. weight: math.unit(170, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/purna/front.svg",
  15788. extra: 239 / 229,
  15789. bottom: 0.01
  15790. }
  15791. },
  15792. },
  15793. [
  15794. {
  15795. name: "Normal",
  15796. height: math.unit(5 + 9 / 12, "feet"),
  15797. default: true
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(5 + 9 / 12, "feet"),
  15806. weight: math.unit(142, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/kuva/front.svg",
  15810. extra: 281 / 271,
  15811. bottom: 0.006
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(5 + 9 / 12, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15825. {
  15826. anthro: {
  15827. height: math.unit(9 + 2 / 12, "feet"),
  15828. weight: math.unit(270, "lb"),
  15829. name: "Anthro",
  15830. image: {
  15831. source: "./media/characters/embra/anthro.svg",
  15832. extra: 200 / 187,
  15833. bottom: 0.02
  15834. }
  15835. },
  15836. feral: {
  15837. height: math.unit(18 + 8 / 12, "feet"),
  15838. weight: math.unit(576, "lb"),
  15839. name: "Feral",
  15840. image: {
  15841. source: "./media/characters/embra/feral.svg",
  15842. extra: 152 / 137,
  15843. bottom: 0.037
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(9 + 2 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15857. {
  15858. anthro: {
  15859. height: math.unit(10 + 9 / 12, "feet"),
  15860. weight: math.unit(224, "lb"),
  15861. name: "Anthro",
  15862. image: {
  15863. source: "./media/characters/grottos/anthro.svg",
  15864. extra: 350 / 332,
  15865. bottom: 0.045
  15866. }
  15867. },
  15868. feral: {
  15869. height: math.unit(20 + 7 / 12, "feet"),
  15870. weight: math.unit(629, "lb"),
  15871. name: "Feral",
  15872. image: {
  15873. source: "./media/characters/grottos/feral.svg",
  15874. extra: 207 / 190,
  15875. bottom: 0.05
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(10 + 9 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15889. {
  15890. anthro: {
  15891. height: math.unit(9 + 6 / 12, "feet"),
  15892. weight: math.unit(298, "lb"),
  15893. name: "Anthro",
  15894. image: {
  15895. source: "./media/characters/frifna/anthro.svg",
  15896. extra: 282 / 269,
  15897. bottom: 0.015
  15898. }
  15899. },
  15900. feral: {
  15901. height: math.unit(16 + 2 / 12, "feet"),
  15902. weight: math.unit(624, "lb"),
  15903. name: "Feral",
  15904. image: {
  15905. source: "./media/characters/frifna/feral.svg"
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(9 + 6 / 12, "feet"),
  15913. default: true
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(6 + 2 / 12, "feet"),
  15922. weight: math.unit(168, "lb"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/elise/front.svg",
  15926. extra: 276 / 271
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(6 + 2 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(5 + 10 / 12, "feet"),
  15943. weight: math.unit(210, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/glade/front.svg",
  15947. extra: 258 / 247,
  15948. bottom: 0.008
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(5 + 10 / 12, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(5 + 10 / 12, "feet"),
  15965. weight: math.unit(129, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/rina/front.svg",
  15969. extra: 266 / 255,
  15970. bottom: 0.005
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(5 + 10 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6 + 1 / 12, "feet"),
  15987. weight: math.unit(192, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/veronica/front.svg",
  15991. extra: 319 / 309,
  15992. bottom: 0.005
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(6 + 1 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(9 + 3 / 12, "feet"),
  16009. weight: math.unit(1100, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/braxton/front.svg",
  16013. extra: 1057 / 984,
  16014. bottom: 0.05
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(9 + 3 / 12, "feet")
  16022. },
  16023. {
  16024. name: "Giant",
  16025. height: math.unit(300, "feet"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(700, "feet")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(6000, "feet")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6 + 7 / 12, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/blue-feyonics/front.svg",
  16047. extra: 1403 / 1306,
  16048. bottom: 0.047
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 7 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(1.8, "meters"),
  16065. weight: math.unit(60, "kg"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/maxwell/front.svg",
  16069. extra: 2060 / 1873
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Micro",
  16076. height: math.unit(1, "mm")
  16077. },
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(1.8, "meter"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(30, "meters")
  16086. },
  16087. {
  16088. name: "Megamacro",
  16089. height: math.unit(10, "km")
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16095. {
  16096. front: {
  16097. height: math.unit(6, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Front",
  16100. image: {
  16101. source: "./media/characters/jack/front.svg",
  16102. extra: 1754 / 1640,
  16103. bottom: 0.01
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(80000, "feet"),
  16111. default: true
  16112. },
  16113. {
  16114. name: "Max size",
  16115. height: math.unit(10, "lightyears")
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16121. {
  16122. urban: {
  16123. height: math.unit(5, "feet"),
  16124. weight: math.unit(240, "lb"),
  16125. name: "Urban",
  16126. image: {
  16127. source: "./media/characters/cafat/urban.svg",
  16128. extra: 1223/1126,
  16129. bottom: 205/1428
  16130. }
  16131. },
  16132. summer: {
  16133. height: math.unit(5, "feet"),
  16134. weight: math.unit(240, "lb"),
  16135. name: "Summer",
  16136. image: {
  16137. source: "./media/characters/cafat/summer.svg",
  16138. extra: 1223/1126,
  16139. bottom: 205/1428
  16140. }
  16141. },
  16142. winter: {
  16143. height: math.unit(5, "feet"),
  16144. weight: math.unit(240, "lb"),
  16145. name: "Winter",
  16146. image: {
  16147. source: "./media/characters/cafat/winter.svg",
  16148. extra: 1223/1126,
  16149. bottom: 205/1428
  16150. }
  16151. },
  16152. lingerie: {
  16153. height: math.unit(5, "feet"),
  16154. weight: math.unit(240, "lb"),
  16155. name: "Lingerie",
  16156. image: {
  16157. source: "./media/characters/cafat/lingerie.svg",
  16158. extra: 1223/1126,
  16159. bottom: 205/1428
  16160. }
  16161. },
  16162. upright: {
  16163. height: math.unit(6.3, "feet"),
  16164. weight: math.unit(240, "lb"),
  16165. name: "Upright",
  16166. image: {
  16167. source: "./media/characters/cafat/upright.svg",
  16168. bottom: 0.01
  16169. }
  16170. },
  16171. uprightFull: {
  16172. height: math.unit(6.3, "feet"),
  16173. weight: math.unit(240, "lb"),
  16174. name: "Upright (Full)",
  16175. image: {
  16176. source: "./media/characters/cafat/upright-full.svg",
  16177. bottom: 0.01
  16178. }
  16179. },
  16180. },
  16181. [
  16182. {
  16183. name: "Small",
  16184. height: math.unit(5, "feet"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Large",
  16189. height: math.unit(13, "feet")
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(150, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/verin-raharra/front.svg",
  16202. extra: 5019 / 4835,
  16203. bottom: 0.023
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(7 + 5 / 12, "feet"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Upsized",
  16215. height: math.unit(20, "feet")
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16221. {
  16222. front: {
  16223. height: math.unit(7, "feet"),
  16224. weight: math.unit(230, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/nakata/front.svg",
  16228. extra: 1.005,
  16229. bottom: 0.01
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(7, "feet"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "Big",
  16241. height: math.unit(14, "feet")
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(400, "feet")
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(4.91, "feet"),
  16254. weight: math.unit(100, "lb"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/lily/front.svg",
  16258. extra: 1585 / 1415,
  16259. bottom: 0.02
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Normal",
  16266. height: math.unit(4.91, "feet"),
  16267. default: true
  16268. },
  16269. ]
  16270. ))
  16271. characterMakers.push(() => makeCharacter(
  16272. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16273. {
  16274. laying: {
  16275. height: math.unit(4 + 4 / 12, "feet"),
  16276. weight: math.unit(600, "lb"),
  16277. name: "Laying",
  16278. image: {
  16279. source: "./media/characters/sheila/laying.svg",
  16280. extra: 1333 / 1265,
  16281. bottom: 0.16
  16282. }
  16283. },
  16284. },
  16285. [
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(4 + 4 / 12, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(190, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/sax/front.svg",
  16302. extra: 1187 / 973,
  16303. bottom: 0.042
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Micro",
  16310. height: math.unit(4, "inches"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/pandora/front.svg",
  16324. extra: 2720 / 2556,
  16325. bottom: 0.015
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/pandora/back.svg",
  16334. extra: 2720 / 2556,
  16335. bottom: 0.01
  16336. }
  16337. },
  16338. beans: {
  16339. height: math.unit(6 / 8, "feet"),
  16340. name: "Beans",
  16341. image: {
  16342. source: "./media/characters/pandora/beans.svg"
  16343. }
  16344. },
  16345. collar: {
  16346. height: math.unit(0.31, "feet"),
  16347. name: "Collar",
  16348. image: {
  16349. source: "./media/characters/pandora/collar.svg"
  16350. }
  16351. },
  16352. skirt: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Skirt",
  16356. image: {
  16357. source: "./media/characters/pandora/skirt.svg",
  16358. extra: 1622 / 1525,
  16359. bottom: 0.015
  16360. }
  16361. },
  16362. hoodie: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Hoodie",
  16366. image: {
  16367. source: "./media/characters/pandora/hoodie.svg",
  16368. extra: 1622 / 1525,
  16369. bottom: 0.015
  16370. }
  16371. },
  16372. casual: {
  16373. height: math.unit(6, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Casual",
  16376. image: {
  16377. source: "./media/characters/pandora/casual.svg",
  16378. extra: 1622 / 1525,
  16379. bottom: 0.015
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(6, "feet")
  16387. },
  16388. {
  16389. name: "Big Steppy",
  16390. height: math.unit(1, "km"),
  16391. default: true
  16392. },
  16393. {
  16394. name: "Galactic Steppy",
  16395. height: math.unit(2, "gigameters")
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16401. {
  16402. side: {
  16403. height: math.unit(10, "feet"),
  16404. weight: math.unit(800, "kg"),
  16405. name: "Side",
  16406. image: {
  16407. source: "./media/characters/venio-darcony/side.svg",
  16408. extra: 1373 / 1003,
  16409. bottom: 0.037
  16410. }
  16411. },
  16412. front: {
  16413. height: math.unit(19, "feet"),
  16414. weight: math.unit(800, "kg"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/venio-darcony/front.svg"
  16418. }
  16419. },
  16420. back: {
  16421. height: math.unit(19, "feet"),
  16422. weight: math.unit(800, "kg"),
  16423. name: "Back",
  16424. image: {
  16425. source: "./media/characters/venio-darcony/back.svg"
  16426. }
  16427. },
  16428. sideNsfw: {
  16429. height: math.unit(10, "feet"),
  16430. weight: math.unit(800, "kg"),
  16431. name: "Side (NSFW)",
  16432. image: {
  16433. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16434. extra: 1373 / 1003,
  16435. bottom: 0.037
  16436. }
  16437. },
  16438. frontNsfw: {
  16439. height: math.unit(19, "feet"),
  16440. weight: math.unit(800, "kg"),
  16441. name: "Front (NSFW)",
  16442. image: {
  16443. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16444. }
  16445. },
  16446. backNsfw: {
  16447. height: math.unit(19, "feet"),
  16448. weight: math.unit(800, "kg"),
  16449. name: "Back (NSFW)",
  16450. image: {
  16451. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16452. }
  16453. },
  16454. sideArmored: {
  16455. height: math.unit(10, "feet"),
  16456. weight: math.unit(800, "kg"),
  16457. name: "Side (Armored)",
  16458. image: {
  16459. source: "./media/characters/venio-darcony/side-armored.svg",
  16460. extra: 1373 / 1003,
  16461. bottom: 0.037
  16462. }
  16463. },
  16464. frontArmored: {
  16465. height: math.unit(19, "feet"),
  16466. weight: math.unit(900, "kg"),
  16467. name: "Front (Armored)",
  16468. image: {
  16469. source: "./media/characters/venio-darcony/front-armored.svg"
  16470. }
  16471. },
  16472. backArmored: {
  16473. height: math.unit(19, "feet"),
  16474. weight: math.unit(900, "kg"),
  16475. name: "Back (Armored)",
  16476. image: {
  16477. source: "./media/characters/venio-darcony/back-armored.svg"
  16478. }
  16479. },
  16480. sword: {
  16481. height: math.unit(10, "feet"),
  16482. weight: math.unit(50, "lb"),
  16483. name: "Sword",
  16484. image: {
  16485. source: "./media/characters/venio-darcony/sword.svg"
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(10, "feet")
  16493. },
  16494. {
  16495. name: "Macro",
  16496. height: math.unit(130, "feet"),
  16497. default: true
  16498. },
  16499. {
  16500. name: "Macro+",
  16501. height: math.unit(240, "feet")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6, "feet"),
  16510. weight: math.unit(150, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/veski/front.svg",
  16514. extra: 1299 / 1225,
  16515. bottom: 0.04
  16516. }
  16517. },
  16518. back: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(150, "lb"),
  16521. name: "Back",
  16522. image: {
  16523. source: "./media/characters/veski/back.svg",
  16524. extra: 1299 / 1225,
  16525. bottom: 0.008
  16526. }
  16527. },
  16528. maw: {
  16529. height: math.unit(1.5 * 1.21, "feet"),
  16530. name: "Maw",
  16531. image: {
  16532. source: "./media/characters/veski/maw.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Macro",
  16539. height: math.unit(2, "km"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(5 + 7 / 12, "feet"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/isabelle/front.svg",
  16552. extra: 2130 / 1976,
  16553. bottom: 0.05
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Supermicro",
  16560. height: math.unit(10, "micrometers")
  16561. },
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "inch")
  16565. },
  16566. {
  16567. name: "Tiny",
  16568. height: math.unit(5, "inches")
  16569. },
  16570. {
  16571. name: "Standard",
  16572. height: math.unit(5 + 7 / 12, "inches")
  16573. },
  16574. {
  16575. name: "Macro",
  16576. height: math.unit(80, "meters"),
  16577. default: true
  16578. },
  16579. {
  16580. name: "Megamacro",
  16581. height: math.unit(250, "meters")
  16582. },
  16583. {
  16584. name: "Gigamacro",
  16585. height: math.unit(5, "km")
  16586. },
  16587. {
  16588. name: "Cosmic",
  16589. height: math.unit(2.5e6, "miles")
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(6, "feet"),
  16598. weight: math.unit(150, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/hanzo/front.svg",
  16602. extra: 374 / 344,
  16603. bottom: 0.02
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(8, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16617. {
  16618. front: {
  16619. height: math.unit(7, "feet"),
  16620. weight: math.unit(130, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/anna/front.svg",
  16624. extra: 169 / 145,
  16625. bottom: 0.06
  16626. }
  16627. },
  16628. full: {
  16629. height: math.unit(4.96, "feet"),
  16630. weight: math.unit(220, "lb"),
  16631. name: "Full",
  16632. image: {
  16633. source: "./media/characters/anna/full.svg",
  16634. extra: 138 / 114,
  16635. bottom: 0.15
  16636. }
  16637. },
  16638. tongue: {
  16639. height: math.unit(2.53, "feet"),
  16640. name: "Tongue",
  16641. image: {
  16642. source: "./media/characters/anna/tongue.svg"
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(7, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16656. {
  16657. front: {
  16658. height: math.unit(7, "feet"),
  16659. weight: math.unit(150, "lb"),
  16660. name: "Front",
  16661. image: {
  16662. source: "./media/characters/ian-corvid/front.svg",
  16663. extra: 150 / 142,
  16664. bottom: 0.02
  16665. }
  16666. },
  16667. back: {
  16668. height: math.unit(7, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Back",
  16671. image: {
  16672. source: "./media/characters/ian-corvid/back.svg",
  16673. extra: 150 / 143,
  16674. bottom: 0.01
  16675. }
  16676. },
  16677. stomping: {
  16678. height: math.unit(7, "feet"),
  16679. weight: math.unit(150, "lb"),
  16680. name: "Stomping",
  16681. image: {
  16682. source: "./media/characters/ian-corvid/stomping.svg",
  16683. extra: 76 / 72
  16684. }
  16685. },
  16686. sitting: {
  16687. height: math.unit(7 / 1.8, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Sitting",
  16690. image: {
  16691. source: "./media/characters/ian-corvid/sitting.svg",
  16692. extra: 1400 / 1269,
  16693. bottom: 0.15
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Tiny Microw",
  16700. height: math.unit(1, "inch")
  16701. },
  16702. {
  16703. name: "Microw",
  16704. height: math.unit(6, "inches")
  16705. },
  16706. {
  16707. name: "Crow",
  16708. height: math.unit(7 + 1 / 12, "feet"),
  16709. default: true
  16710. },
  16711. {
  16712. name: "Macrow",
  16713. height: math.unit(176, "feet")
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 7 / 12, "feet"),
  16722. weight: math.unit(147, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/natalie-kellon/front.svg",
  16726. extra: 1214 / 1141,
  16727. bottom: 0.02
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Micro",
  16734. height: math.unit(1 / 16, "inch")
  16735. },
  16736. {
  16737. name: "Tiny",
  16738. height: math.unit(4, "inches")
  16739. },
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(5 + 7 / 12, "feet"),
  16743. default: true
  16744. },
  16745. {
  16746. name: "Amazon",
  16747. height: math.unit(12, "feet")
  16748. },
  16749. {
  16750. name: "Giantess",
  16751. height: math.unit(160, "meters")
  16752. },
  16753. {
  16754. name: "Titaness",
  16755. height: math.unit(800, "meters")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6, "feet"),
  16764. weight: math.unit(150, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/alluria/front.svg",
  16768. extra: 806 / 738,
  16769. bottom: 0.01
  16770. }
  16771. },
  16772. side: {
  16773. height: math.unit(6, "feet"),
  16774. weight: math.unit(150, "lb"),
  16775. name: "Side",
  16776. image: {
  16777. source: "./media/characters/alluria/side.svg",
  16778. extra: 800 / 750,
  16779. }
  16780. },
  16781. back: {
  16782. height: math.unit(6, "feet"),
  16783. weight: math.unit(150, "lb"),
  16784. name: "Back",
  16785. image: {
  16786. source: "./media/characters/alluria/back.svg",
  16787. extra: 806 / 738,
  16788. }
  16789. },
  16790. frontMaid: {
  16791. height: math.unit(6, "feet"),
  16792. weight: math.unit(150, "lb"),
  16793. name: "Front (Maid)",
  16794. image: {
  16795. source: "./media/characters/alluria/front-maid.svg",
  16796. extra: 806 / 738,
  16797. bottom: 0.01
  16798. }
  16799. },
  16800. sideMaid: {
  16801. height: math.unit(6, "feet"),
  16802. weight: math.unit(150, "lb"),
  16803. name: "Side (Maid)",
  16804. image: {
  16805. source: "./media/characters/alluria/side-maid.svg",
  16806. extra: 800 / 750,
  16807. bottom: 0.005
  16808. }
  16809. },
  16810. backMaid: {
  16811. height: math.unit(6, "feet"),
  16812. weight: math.unit(150, "lb"),
  16813. name: "Back (Maid)",
  16814. image: {
  16815. source: "./media/characters/alluria/back-maid.svg",
  16816. extra: 806 / 738,
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Micro",
  16823. height: math.unit(6, "inches"),
  16824. default: true
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(6, "feet"),
  16833. weight: math.unit(150, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/kyle/front.svg",
  16837. extra: 1069 / 962,
  16838. bottom: 77.228 / 1727.45
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Macro",
  16845. height: math.unit(150, "feet"),
  16846. default: true
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(300, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/duncan/front.svg",
  16859. extra: 1650 / 1482,
  16860. bottom: 0.05
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(100, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(5 + 4 / 12, "feet"),
  16877. weight: math.unit(220, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/memory/front.svg",
  16881. extra: 3641 / 3545,
  16882. bottom: 0.03
  16883. }
  16884. },
  16885. back: {
  16886. height: math.unit(5 + 4 / 12, "feet"),
  16887. weight: math.unit(220, "lb"),
  16888. name: "Back",
  16889. image: {
  16890. source: "./media/characters/memory/back.svg",
  16891. extra: 3641 / 3545,
  16892. bottom: 0.025
  16893. }
  16894. },
  16895. frontSkirt: {
  16896. height: math.unit(5 + 4 / 12, "feet"),
  16897. weight: math.unit(220, "lb"),
  16898. name: "Front (Skirt)",
  16899. image: {
  16900. source: "./media/characters/memory/front-skirt.svg",
  16901. extra: 3641 / 3545,
  16902. bottom: 0.03
  16903. }
  16904. },
  16905. frontDress: {
  16906. height: math.unit(5 + 4 / 12, "feet"),
  16907. weight: math.unit(220, "lb"),
  16908. name: "Front (Dress)",
  16909. image: {
  16910. source: "./media/characters/memory/front-dress.svg",
  16911. extra: 3641 / 3545,
  16912. bottom: 0.03
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Micro",
  16919. height: math.unit(6, "inches"),
  16920. default: true
  16921. },
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(5 + 4 / 12, "feet")
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(4 + 11 / 12, "feet"),
  16933. weight: math.unit(100, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/luno/front.svg",
  16937. extra: 1535 / 1487,
  16938. bottom: 0.03
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Micro",
  16945. height: math.unit(3, "inches")
  16946. },
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(4 + 11 / 12, "feet"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(300, "feet")
  16955. },
  16956. {
  16957. name: "Megamacro",
  16958. height: math.unit(700, "miles")
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(6 + 2 / 12, "feet"),
  16967. weight: math.unit(170, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/jamesy/front.svg",
  16971. extra: 440 / 382,
  16972. bottom: 0.005
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Micro",
  16979. height: math.unit(3, "inches")
  16980. },
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(300, "feet")
  16989. },
  16990. {
  16991. name: "Megamacro",
  16992. height: math.unit(700, "miles")
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(160, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/mark/front.svg",
  17005. extra: 3300 / 3100,
  17006. bottom: 136.42 / 3440.47
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Macro",
  17013. height: math.unit(120, "meters")
  17014. },
  17015. {
  17016. name: "Bigger Macro",
  17017. height: math.unit(350, "meters")
  17018. },
  17019. {
  17020. name: "Megamacro",
  17021. height: math.unit(8, "km"),
  17022. default: true
  17023. },
  17024. {
  17025. name: "Continental",
  17026. height: math.unit(4550, "km")
  17027. },
  17028. {
  17029. name: "Planetary",
  17030. height: math.unit(65000, "km")
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(6, "feet"),
  17039. weight: math.unit(400, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/mac/front.svg",
  17043. extra: 1048 / 987.7,
  17044. bottom: 60 / 1107.6,
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Macro",
  17051. height: math.unit(500, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(5 + 2 / 12, "feet"),
  17061. weight: math.unit(190, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/bari/front.svg",
  17065. extra: 3156 / 2880,
  17066. bottom: 0.03
  17067. }
  17068. },
  17069. back: {
  17070. height: math.unit(5 + 2 / 12, "feet"),
  17071. weight: math.unit(190, "lb"),
  17072. name: "Back",
  17073. image: {
  17074. source: "./media/characters/bari/back.svg",
  17075. extra: 3260 / 2834,
  17076. bottom: 0.025
  17077. }
  17078. },
  17079. frontPlush: {
  17080. height: math.unit(5 + 2 / 12, "feet"),
  17081. weight: math.unit(190, "lb"),
  17082. name: "Front (Plush)",
  17083. image: {
  17084. source: "./media/characters/bari/front-plush.svg",
  17085. extra: 1112 / 1061,
  17086. bottom: 0.002
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Micro",
  17093. height: math.unit(3, "inches")
  17094. },
  17095. {
  17096. name: "Normal",
  17097. height: math.unit(5 + 2 / 12, "feet"),
  17098. default: true
  17099. },
  17100. {
  17101. name: "Macro",
  17102. height: math.unit(20, "feet")
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6 + 1 / 12, "feet"),
  17111. weight: math.unit(275, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/hunter-misha-raven/front.svg"
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Mortal",
  17121. height: math.unit(6 + 1 / 12, "feet")
  17122. },
  17123. {
  17124. name: "Divine",
  17125. height: math.unit(1.12134e34, "parsecs"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6 + 3 / 12, "feet"),
  17135. weight: math.unit(220, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/max-calore/front.svg",
  17139. extra: 1700 / 1648,
  17140. bottom: 0.01
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(6 + 3 / 12, "feet"),
  17145. weight: math.unit(220, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/max-calore/back.svg",
  17149. extra: 1700 / 1648,
  17150. bottom: 0.01
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Normal",
  17157. height: math.unit(6 + 3 / 12, "feet"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17164. {
  17165. side: {
  17166. height: math.unit(2 + 8 / 12, "feet"),
  17167. weight: math.unit(99, "lb"),
  17168. name: "Side",
  17169. image: {
  17170. source: "./media/characters/aspen/side.svg",
  17171. extra: 152 / 138,
  17172. bottom: 0.032
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(2 + 8 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17186. {
  17187. side: {
  17188. height: math.unit(3 + 2 / 12, "feet"),
  17189. weight: math.unit(224, "lb"),
  17190. name: "Side",
  17191. image: {
  17192. source: "./media/characters/sheila-feral-wolf/side.svg",
  17193. extra: 179 / 166,
  17194. bottom: 0.03
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(3 + 2 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17208. {
  17209. side: {
  17210. height: math.unit(1 + 9 / 12, "feet"),
  17211. weight: math.unit(38, "lb"),
  17212. name: "Side",
  17213. image: {
  17214. source: "./media/characters/michelle/side.svg",
  17215. extra: 147 / 136.7,
  17216. bottom: 0.03
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(1 + 9 / 12, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(1.54, "feet"),
  17233. weight: math.unit(50, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/nino/front.svg"
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(1.54, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(1, "feet"),
  17253. weight: math.unit(16, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/viola/front.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(1, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(6 + 5 / 12, "feet"),
  17273. weight: math.unit(580, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/atlas/front.svg",
  17277. extra: 298.5 / 290,
  17278. bottom: 0.015
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(6 + 5 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17292. {
  17293. side: {
  17294. height: math.unit(1 + 10 / 12, "feet"),
  17295. weight: math.unit(25, "lb"),
  17296. name: "Side",
  17297. image: {
  17298. source: "./media/characters/davy/side.svg",
  17299. extra: 200 / 170,
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(1 + 10 / 12, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17314. {
  17315. side: {
  17316. height: math.unit(4 + 8 / 12, "feet"),
  17317. weight: math.unit(166, "lb"),
  17318. name: "Side",
  17319. image: {
  17320. source: "./media/characters/fiona/side.svg",
  17321. extra: 232 / 220,
  17322. bottom: 0.03
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(4 + 8 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17336. {
  17337. front: {
  17338. height: math.unit(3, "feet"),
  17339. weight: math.unit(100, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/lyla/front.svg",
  17343. bottom: 0.1
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(3, "feet"),
  17351. default: true
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17357. {
  17358. side: {
  17359. height: math.unit(1.8, "feet"),
  17360. weight: math.unit(44, "lb"),
  17361. name: "Side",
  17362. image: {
  17363. source: "./media/characters/perseus/side.svg",
  17364. bottom: 0.21
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(1.8, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17378. {
  17379. side: {
  17380. height: math.unit(4 + 2 / 12, "feet"),
  17381. weight: math.unit(20, "lb"),
  17382. name: "Side",
  17383. image: {
  17384. source: "./media/characters/remus/side.svg"
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(4 + 2 / 12, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(4 + 11 / 12, "feet"),
  17401. weight: math.unit(114, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/raf/front.svg",
  17405. extra: 1504/1339,
  17406. bottom: 26/1530
  17407. }
  17408. },
  17409. side: {
  17410. height: math.unit(4 + 11 / 12, "feet"),
  17411. weight: math.unit(114, "lb"),
  17412. name: "Side",
  17413. image: {
  17414. source: "./media/characters/raf/side.svg",
  17415. extra: 1466/1316,
  17416. bottom: 29/1495
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Micro",
  17423. height: math.unit(2, "inches")
  17424. },
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(4 + 11 / 12, "feet"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(70, "feet")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(1.5, "meters"),
  17441. weight: math.unit(68, "kg"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/liam-einarr/front.svg",
  17445. extra: 2822 / 2666
  17446. }
  17447. },
  17448. back: {
  17449. height: math.unit(1.5, "meters"),
  17450. weight: math.unit(68, "kg"),
  17451. name: "Back",
  17452. image: {
  17453. source: "./media/characters/liam-einarr/back.svg",
  17454. extra: 2822 / 2666,
  17455. bottom: 0.015
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(1.5, "meters"),
  17463. default: true
  17464. },
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(150, "meters")
  17468. },
  17469. {
  17470. name: "Megamacro",
  17471. height: math.unit(35, "km")
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(6, "feet"),
  17480. weight: math.unit(75, "kg"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/linda/front.svg",
  17484. extra: 930 / 874,
  17485. bottom: 0.004
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(6, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(6 + 8 / 12, "feet"),
  17502. weight: math.unit(220, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/caylex/front.svg",
  17506. extra: 821 / 772,
  17507. bottom: 0.07
  17508. }
  17509. },
  17510. back: {
  17511. height: math.unit(6 + 8 / 12, "feet"),
  17512. weight: math.unit(220, "lb"),
  17513. name: "Back",
  17514. image: {
  17515. source: "./media/characters/caylex/back.svg",
  17516. extra: 821 / 772,
  17517. bottom: 0.022
  17518. }
  17519. },
  17520. hand: {
  17521. height: math.unit(1.25, "feet"),
  17522. name: "Hand",
  17523. image: {
  17524. source: "./media/characters/caylex/hand.svg"
  17525. }
  17526. },
  17527. foot: {
  17528. height: math.unit(1.6, "feet"),
  17529. name: "Foot",
  17530. image: {
  17531. source: "./media/characters/caylex/foot.svg"
  17532. }
  17533. },
  17534. armored: {
  17535. height: math.unit(6 + 8 / 12, "feet"),
  17536. weight: math.unit(250, "lb"),
  17537. name: "Armored",
  17538. image: {
  17539. source: "./media/characters/caylex/armored.svg",
  17540. extra: 1420 / 1310,
  17541. bottom: 0.045
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(6 + 8 / 12, "feet"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Normal+",
  17553. height: math.unit(12, "feet")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(7 + 6 / 12, "feet"),
  17562. weight: math.unit(288, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/alana/front.svg",
  17566. extra: 679 / 653,
  17567. bottom: 22.5 / 701
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(7 + 6 / 12, "feet")
  17575. },
  17576. {
  17577. name: "Large",
  17578. height: math.unit(50, "feet")
  17579. },
  17580. {
  17581. name: "Macro",
  17582. height: math.unit(100, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro+",
  17587. height: math.unit(200, "feet")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6 + 1 / 12, "feet"),
  17596. weight: math.unit(210, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/hasani/front.svg",
  17600. extra: 244 / 232,
  17601. bottom: 0.01
  17602. }
  17603. },
  17604. back: {
  17605. height: math.unit(6 + 1 / 12, "feet"),
  17606. weight: math.unit(210, "lb"),
  17607. name: "Back",
  17608. image: {
  17609. source: "./media/characters/hasani/back.svg",
  17610. extra: 244 / 232,
  17611. bottom: 0.01
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(6 + 1 / 12, "feet")
  17619. },
  17620. {
  17621. name: "Macro",
  17622. height: math.unit(175, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(1.82, "meters"),
  17632. weight: math.unit(140, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/nita/front.svg",
  17636. extra: 2473 / 2363,
  17637. bottom: 0.01
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(1.82, "m")
  17645. },
  17646. {
  17647. name: "Macro",
  17648. height: math.unit(300, "m")
  17649. },
  17650. {
  17651. name: "Mistake Canon",
  17652. height: math.unit(0.5, "miles"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Big Mistake",
  17657. height: math.unit(13, "miles")
  17658. },
  17659. {
  17660. name: "Playing God",
  17661. height: math.unit(2450, "miles")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(4, "feet"),
  17670. weight: math.unit(120, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/shiriko/front.svg",
  17674. extra: 970/934,
  17675. bottom: 5/975
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(4, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(6, "feet"),
  17692. name: "front",
  17693. image: {
  17694. source: "./media/characters/deja/front.svg",
  17695. extra: 926 / 840,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Planck Length",
  17703. height: math.unit(1.6e-35, "meters")
  17704. },
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(30.48, "meters"),
  17708. default: true
  17709. },
  17710. {
  17711. name: "Universal",
  17712. height: math.unit(8.8e26, "meters")
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17718. {
  17719. side: {
  17720. height: math.unit(8, "feet"),
  17721. weight: math.unit(6300, "lb"),
  17722. name: "Side",
  17723. image: {
  17724. source: "./media/characters/anima/side.svg",
  17725. bottom: 0.035
  17726. }
  17727. },
  17728. },
  17729. [
  17730. {
  17731. name: "Normal",
  17732. height: math.unit(8, "feet"),
  17733. default: true
  17734. },
  17735. ]
  17736. ))
  17737. characterMakers.push(() => makeCharacter(
  17738. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17739. {
  17740. front: {
  17741. height: math.unit(8, "feet"),
  17742. weight: math.unit(350, "lb"),
  17743. name: "Front",
  17744. image: {
  17745. source: "./media/characters/bianca/front.svg",
  17746. extra: 234 / 225,
  17747. bottom: 0.03
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(8, "feet"),
  17755. default: true
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(150, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/adinia/front.svg",
  17768. extra: 1845 / 1672,
  17769. bottom: 0.02
  17770. }
  17771. },
  17772. back: {
  17773. height: math.unit(6, "feet"),
  17774. weight: math.unit(150, "lb"),
  17775. name: "Back",
  17776. image: {
  17777. source: "./media/characters/adinia/back.svg",
  17778. extra: 1845 / 1672,
  17779. bottom: 0.002
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(11 + 5 / 12, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17793. {
  17794. front: {
  17795. height: math.unit(3, "meters"),
  17796. weight: math.unit(200, "kg"),
  17797. name: "Front",
  17798. image: {
  17799. source: "./media/characters/lykasa/front.svg",
  17800. extra: 1076 / 976,
  17801. bottom: 0.06
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(3, "meters")
  17809. },
  17810. {
  17811. name: "Kaiju",
  17812. height: math.unit(120, "meters"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Mega Kaiju",
  17817. height: math.unit(240, "km")
  17818. },
  17819. {
  17820. name: "Giga Kaiju",
  17821. height: math.unit(400, "megameters")
  17822. },
  17823. {
  17824. name: "Tera Kaiju",
  17825. height: math.unit(800, "gigameters")
  17826. },
  17827. {
  17828. name: "Kaiju Dragon Goddess",
  17829. height: math.unit(26, "zettaparsecs")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17835. {
  17836. side: {
  17837. height: math.unit(283 / 124 * 6, "feet"),
  17838. weight: math.unit(35000, "lb"),
  17839. name: "Side",
  17840. image: {
  17841. source: "./media/characters/malfaren/side.svg",
  17842. extra: 2500 / 1010,
  17843. bottom: 0.01
  17844. }
  17845. },
  17846. front: {
  17847. height: math.unit(22.36, "feet"),
  17848. weight: math.unit(35000, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/malfaren/front.svg",
  17852. extra: 1631 / 1476,
  17853. bottom: 0.01
  17854. }
  17855. },
  17856. maw: {
  17857. height: math.unit(6.9, "feet"),
  17858. name: "Maw",
  17859. image: {
  17860. source: "./media/characters/malfaren/maw.svg"
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Big",
  17867. height: math.unit(283 / 162 * 6, "feet"),
  17868. },
  17869. {
  17870. name: "Bigger",
  17871. height: math.unit(283 / 124 * 6, "feet")
  17872. },
  17873. {
  17874. name: "Massive",
  17875. height: math.unit(283 / 92 * 6, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "👀💦",
  17880. height: math.unit(283 / 73 * 6, "feet"),
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(1.7, "m"),
  17889. weight: math.unit(70, "kg"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/kernel/front.svg",
  17893. extra: 222 / 210,
  17894. bottom: 0.007
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Nano",
  17901. height: math.unit(17, "micrometers")
  17902. },
  17903. {
  17904. name: "Micro",
  17905. height: math.unit(1.7, "mm")
  17906. },
  17907. {
  17908. name: "Small",
  17909. height: math.unit(1.7, "cm")
  17910. },
  17911. {
  17912. name: "Normal",
  17913. height: math.unit(1.7, "m"),
  17914. default: true
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(1.75, "meters"),
  17923. weight: math.unit(65, "kg"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/jayne-folest/front.svg",
  17927. extra: 2115 / 2007,
  17928. bottom: 0.02
  17929. }
  17930. },
  17931. back: {
  17932. height: math.unit(1.75, "meters"),
  17933. weight: math.unit(65, "kg"),
  17934. name: "Back",
  17935. image: {
  17936. source: "./media/characters/jayne-folest/back.svg",
  17937. extra: 2115 / 2007,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. frontClothed: {
  17942. height: math.unit(1.75, "meters"),
  17943. weight: math.unit(65, "kg"),
  17944. name: "Front (Clothed)",
  17945. image: {
  17946. source: "./media/characters/jayne-folest/front-clothed.svg",
  17947. extra: 2115 / 2007,
  17948. bottom: 0.035
  17949. }
  17950. },
  17951. hand: {
  17952. height: math.unit(1 / 1.260, "feet"),
  17953. name: "Hand",
  17954. image: {
  17955. source: "./media/characters/jayne-folest/hand.svg"
  17956. }
  17957. },
  17958. foot: {
  17959. height: math.unit(1 / 0.918, "feet"),
  17960. name: "Foot",
  17961. image: {
  17962. source: "./media/characters/jayne-folest/foot.svg"
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Micro",
  17969. height: math.unit(4, "cm")
  17970. },
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(1.75, "meters")
  17974. },
  17975. {
  17976. name: "Macro",
  17977. height: math.unit(47.5, "meters"),
  17978. default: true
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(180, "cm"),
  17987. weight: math.unit(70, "kg"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/algier/front.svg",
  17991. extra: 596 / 572,
  17992. bottom: 0.04
  17993. }
  17994. },
  17995. back: {
  17996. height: math.unit(180, "cm"),
  17997. weight: math.unit(70, "kg"),
  17998. name: "Back",
  17999. image: {
  18000. source: "./media/characters/algier/back.svg",
  18001. extra: 596 / 572,
  18002. bottom: 0.025
  18003. }
  18004. },
  18005. frontdressed: {
  18006. height: math.unit(180, "cm"),
  18007. weight: math.unit(150, "kg"),
  18008. name: "Front-dressed",
  18009. image: {
  18010. source: "./media/characters/algier/front-dressed.svg",
  18011. extra: 596 / 572,
  18012. bottom: 0.038
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Micro",
  18019. height: math.unit(5, "cm")
  18020. },
  18021. {
  18022. name: "Normal",
  18023. height: math.unit(180, "cm"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Macro",
  18028. height: math.unit(64, "m")
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18034. {
  18035. upright: {
  18036. height: math.unit(7, "feet"),
  18037. weight: math.unit(300, "lb"),
  18038. name: "Upright",
  18039. image: {
  18040. source: "./media/characters/pretzel/upright.svg",
  18041. extra: 534 / 522,
  18042. bottom: 0.065
  18043. }
  18044. },
  18045. sprawling: {
  18046. height: math.unit(3.75, "feet"),
  18047. weight: math.unit(300, "lb"),
  18048. name: "Sprawling",
  18049. image: {
  18050. source: "./media/characters/pretzel/sprawling.svg",
  18051. extra: 314 / 281,
  18052. bottom: 0.1
  18053. }
  18054. },
  18055. tongue: {
  18056. height: math.unit(2, "feet"),
  18057. name: "Tongue",
  18058. image: {
  18059. source: "./media/characters/pretzel/tongue.svg"
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(7, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Oversized",
  18071. height: math.unit(15, "feet")
  18072. },
  18073. {
  18074. name: "Huge",
  18075. height: math.unit(30, "feet")
  18076. },
  18077. {
  18078. name: "Macro",
  18079. height: math.unit(250, "feet")
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18085. {
  18086. sideFront: {
  18087. height: math.unit(5 + 2 / 12, "feet"),
  18088. weight: math.unit(120, "lb"),
  18089. name: "Front Side",
  18090. image: {
  18091. source: "./media/characters/roxi/side-front.svg",
  18092. extra: 2924 / 2717,
  18093. bottom: 0.08
  18094. }
  18095. },
  18096. sideBack: {
  18097. height: math.unit(5 + 2 / 12, "feet"),
  18098. weight: math.unit(120, "lb"),
  18099. name: "Back Side",
  18100. image: {
  18101. source: "./media/characters/roxi/side-back.svg",
  18102. extra: 2904 / 2693,
  18103. bottom: 0.06
  18104. }
  18105. },
  18106. front: {
  18107. height: math.unit(5 + 2 / 12, "feet"),
  18108. weight: math.unit(120, "lb"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/roxi/front.svg",
  18112. extra: 2028 / 1907,
  18113. bottom: 0.01
  18114. }
  18115. },
  18116. frontAlt: {
  18117. height: math.unit(5 + 2 / 12, "feet"),
  18118. weight: math.unit(120, "lb"),
  18119. name: "Front (Alt)",
  18120. image: {
  18121. source: "./media/characters/roxi/front-alt.svg",
  18122. extra: 1828 / 1798,
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. sitting: {
  18127. height: math.unit(2.8, "feet"),
  18128. weight: math.unit(120, "lb"),
  18129. name: "Sitting",
  18130. image: {
  18131. source: "./media/characters/roxi/sitting.svg",
  18132. extra: 2660 / 2462,
  18133. bottom: 0.1
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(5 + 2 / 12, "feet"),
  18141. default: true
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18147. {
  18148. side: {
  18149. height: math.unit(55, "feet"),
  18150. weight: math.unit(153, "tons"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/shadow/side.svg",
  18154. extra: 701 / 628,
  18155. bottom: 0.02
  18156. }
  18157. },
  18158. flying: {
  18159. height: math.unit(145, "feet"),
  18160. weight: math.unit(153, "tons"),
  18161. name: "Flying",
  18162. image: {
  18163. source: "./media/characters/shadow/flying.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(55, "feet"),
  18171. default: true
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(6, "feet"),
  18180. weight: math.unit(200, "lb"),
  18181. name: "Front",
  18182. image: {
  18183. source: "./media/characters/marcie/front.svg",
  18184. extra: 960 / 876,
  18185. bottom: 58 / 1017.87
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(1, "mile"),
  18193. default: true
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(7, "feet"),
  18202. weight: math.unit(200, "lb"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/kachina/front.svg",
  18206. extra: 1290.68 / 1119,
  18207. bottom: 36.5 / 1327.18
  18208. }
  18209. },
  18210. },
  18211. [
  18212. {
  18213. name: "Normal",
  18214. height: math.unit(7, "feet"),
  18215. default: true
  18216. },
  18217. ]
  18218. ))
  18219. characterMakers.push(() => makeCharacter(
  18220. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18221. {
  18222. looking: {
  18223. height: math.unit(2, "meters"),
  18224. weight: math.unit(300, "kg"),
  18225. name: "Looking",
  18226. image: {
  18227. source: "./media/characters/kash/looking.svg",
  18228. extra: 474 / 344,
  18229. bottom: 0.03
  18230. }
  18231. },
  18232. side: {
  18233. height: math.unit(2, "meters"),
  18234. weight: math.unit(300, "kg"),
  18235. name: "Side",
  18236. image: {
  18237. source: "./media/characters/kash/side.svg",
  18238. extra: 302 / 251,
  18239. bottom: 0.03
  18240. }
  18241. },
  18242. front: {
  18243. height: math.unit(2, "meters"),
  18244. weight: math.unit(300, "kg"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/kash/front.svg",
  18248. extra: 495 / 360,
  18249. bottom: 0.015
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(2, "meters"),
  18257. default: true
  18258. },
  18259. {
  18260. name: "Big",
  18261. height: math.unit(3, "meters")
  18262. },
  18263. {
  18264. name: "Large",
  18265. height: math.unit(5, "meters")
  18266. },
  18267. ]
  18268. ))
  18269. characterMakers.push(() => makeCharacter(
  18270. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18271. {
  18272. feeding: {
  18273. height: math.unit(6.7, "feet"),
  18274. weight: math.unit(350, "lb"),
  18275. name: "Feeding",
  18276. image: {
  18277. source: "./media/characters/lalim/feeding.svg",
  18278. }
  18279. },
  18280. },
  18281. [
  18282. {
  18283. name: "Normal",
  18284. height: math.unit(6.7, "feet"),
  18285. default: true
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(9.5, "feet"),
  18294. weight: math.unit(600, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/de'vout/front.svg",
  18298. extra: 1443 / 1328,
  18299. bottom: 0.025
  18300. }
  18301. },
  18302. back: {
  18303. height: math.unit(9.5, "feet"),
  18304. weight: math.unit(600, "lb"),
  18305. name: "Back",
  18306. image: {
  18307. source: "./media/characters/de'vout/back.svg",
  18308. extra: 1443 / 1328
  18309. }
  18310. },
  18311. frontDressed: {
  18312. height: math.unit(9.5, "feet"),
  18313. weight: math.unit(600, "lb"),
  18314. name: "Front (Dressed",
  18315. image: {
  18316. source: "./media/characters/de'vout/front-dressed.svg",
  18317. extra: 1443 / 1328,
  18318. bottom: 0.025
  18319. }
  18320. },
  18321. backDressed: {
  18322. height: math.unit(9.5, "feet"),
  18323. weight: math.unit(600, "lb"),
  18324. name: "Back (Dressed",
  18325. image: {
  18326. source: "./media/characters/de'vout/back-dressed.svg",
  18327. extra: 1443 / 1328
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(9.5, "feet"),
  18335. default: true
  18336. },
  18337. ]
  18338. ))
  18339. characterMakers.push(() => makeCharacter(
  18340. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18341. {
  18342. front: {
  18343. height: math.unit(8, "feet"),
  18344. weight: math.unit(225, "lb"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/talana/front.svg",
  18348. extra: 1410 / 1300,
  18349. bottom: 0.015
  18350. }
  18351. },
  18352. frontDressed: {
  18353. height: math.unit(8, "feet"),
  18354. weight: math.unit(225, "lb"),
  18355. name: "Front (Dressed",
  18356. image: {
  18357. source: "./media/characters/talana/front-dressed.svg",
  18358. extra: 1410 / 1300,
  18359. bottom: 0.015
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(8, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18373. {
  18374. side: {
  18375. height: math.unit(7.2, "feet"),
  18376. weight: math.unit(150, "lb"),
  18377. name: "Side",
  18378. image: {
  18379. source: "./media/characters/xeauvok/side.svg",
  18380. extra: 1975 / 1523,
  18381. bottom: 0.07
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(7.2, "feet"),
  18389. default: true
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18395. {
  18396. side: {
  18397. height: math.unit(10, "feet"),
  18398. weight: math.unit(900, "kg"),
  18399. name: "Side",
  18400. image: {
  18401. source: "./media/characters/zara/side.svg",
  18402. extra: 504 / 498
  18403. }
  18404. },
  18405. },
  18406. [
  18407. {
  18408. name: "Normal",
  18409. height: math.unit(10, "feet"),
  18410. default: true
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18416. {
  18417. side: {
  18418. height: math.unit(6, "feet"),
  18419. weight: math.unit(150, "lb"),
  18420. name: "Side",
  18421. image: {
  18422. source: "./media/characters/richard-dragon/side.svg",
  18423. extra: 845 / 340,
  18424. bottom: 0.017
  18425. }
  18426. },
  18427. maw: {
  18428. height: math.unit(2.97, "feet"),
  18429. name: "Maw",
  18430. image: {
  18431. source: "./media/characters/richard-dragon/maw.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(4, "feet"),
  18443. weight: math.unit(100, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/richard-smeargle/front.svg",
  18447. extra: 2952 / 2820,
  18448. bottom: 0.028
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(4, "feet"),
  18456. default: true
  18457. },
  18458. {
  18459. name: "Dynamax",
  18460. height: math.unit(20, "meters")
  18461. },
  18462. ]
  18463. ))
  18464. characterMakers.push(() => makeCharacter(
  18465. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18466. {
  18467. front: {
  18468. height: math.unit(6, "feet"),
  18469. weight: math.unit(110, "lb"),
  18470. name: "Front",
  18471. image: {
  18472. source: "./media/characters/klay/front.svg",
  18473. extra: 962 / 883,
  18474. bottom: 0.04
  18475. }
  18476. },
  18477. back: {
  18478. height: math.unit(6, "feet"),
  18479. weight: math.unit(110, "lb"),
  18480. name: "Back",
  18481. image: {
  18482. source: "./media/characters/klay/back.svg",
  18483. extra: 962 / 883
  18484. }
  18485. },
  18486. beans: {
  18487. height: math.unit(1.15, "feet"),
  18488. name: "Beans",
  18489. image: {
  18490. source: "./media/characters/klay/beans.svg"
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Micro",
  18497. height: math.unit(6, "inches")
  18498. },
  18499. {
  18500. name: "Mini",
  18501. height: math.unit(3, "feet")
  18502. },
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(6, "feet"),
  18506. default: true
  18507. },
  18508. {
  18509. name: "Big",
  18510. height: math.unit(25, "feet")
  18511. },
  18512. {
  18513. name: "Macro",
  18514. height: math.unit(100, "feet")
  18515. },
  18516. {
  18517. name: "Megamacro",
  18518. height: math.unit(400, "feet")
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18524. {
  18525. front: {
  18526. height: math.unit(6, "feet"),
  18527. weight: math.unit(160, "lb"),
  18528. name: "Front",
  18529. image: {
  18530. source: "./media/characters/marcus/front.svg",
  18531. extra: 734 / 676,
  18532. bottom: 0.03
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Little",
  18539. height: math.unit(6, "feet")
  18540. },
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(110, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Macro",
  18548. height: math.unit(250, "feet")
  18549. },
  18550. {
  18551. name: "Megamacro",
  18552. height: math.unit(1000, "feet")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(7, "feet"),
  18561. weight: math.unit(275, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/claude-delroute/front.svg",
  18565. extra: 902/827,
  18566. bottom: 26/928
  18567. }
  18568. },
  18569. side: {
  18570. height: math.unit(7, "feet"),
  18571. weight: math.unit(275, "lb"),
  18572. name: "Side",
  18573. image: {
  18574. source: "./media/characters/claude-delroute/side.svg",
  18575. extra: 908/853,
  18576. bottom: 16/924
  18577. }
  18578. },
  18579. back: {
  18580. height: math.unit(7, "feet"),
  18581. weight: math.unit(275, "lb"),
  18582. name: "Back",
  18583. image: {
  18584. source: "./media/characters/claude-delroute/back.svg",
  18585. extra: 911/829,
  18586. bottom: 18/929
  18587. }
  18588. },
  18589. maw: {
  18590. height: math.unit(0.6407, "meters"),
  18591. name: "Maw",
  18592. image: {
  18593. source: "./media/characters/claude-delroute/maw.svg"
  18594. }
  18595. },
  18596. },
  18597. [
  18598. {
  18599. name: "Normal",
  18600. height: math.unit(7, "feet"),
  18601. default: true
  18602. },
  18603. {
  18604. name: "Lorge",
  18605. height: math.unit(20, "feet")
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(8 + 4 / 12, "feet"),
  18614. weight: math.unit(600, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/dragonien/front.svg",
  18618. extra: 100 / 94,
  18619. bottom: 3.3 / 103.3445
  18620. }
  18621. },
  18622. back: {
  18623. height: math.unit(8 + 4 / 12, "feet"),
  18624. weight: math.unit(600, "lb"),
  18625. name: "Back",
  18626. image: {
  18627. source: "./media/characters/dragonien/back.svg",
  18628. extra: 776 / 746,
  18629. bottom: 6.4 / 782.0616
  18630. }
  18631. },
  18632. foot: {
  18633. height: math.unit(1.54, "feet"),
  18634. name: "Foot",
  18635. image: {
  18636. source: "./media/characters/dragonien/foot.svg",
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(8 + 4 / 12, "feet"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Macro",
  18648. height: math.unit(200, "feet")
  18649. },
  18650. {
  18651. name: "Megamacro",
  18652. height: math.unit(1, "mile")
  18653. },
  18654. {
  18655. name: "Gigamacro",
  18656. height: math.unit(1000, "miles")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(5 + 2 / 12, "feet"),
  18665. weight: math.unit(110, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/desta/front.svg",
  18669. extra: 767 / 726,
  18670. bottom: 11.7 / 779
  18671. }
  18672. },
  18673. back: {
  18674. height: math.unit(5 + 2 / 12, "feet"),
  18675. weight: math.unit(110, "lb"),
  18676. name: "Back",
  18677. image: {
  18678. source: "./media/characters/desta/back.svg",
  18679. extra: 777 / 728,
  18680. bottom: 6 / 784
  18681. }
  18682. },
  18683. frontAlt: {
  18684. height: math.unit(5 + 2 / 12, "feet"),
  18685. weight: math.unit(110, "lb"),
  18686. name: "Front",
  18687. image: {
  18688. source: "./media/characters/desta/front-alt.svg",
  18689. extra: 1482 / 1417
  18690. }
  18691. },
  18692. side: {
  18693. height: math.unit(5 + 2 / 12, "feet"),
  18694. weight: math.unit(110, "lb"),
  18695. name: "Side",
  18696. image: {
  18697. source: "./media/characters/desta/side.svg",
  18698. extra: 2579 / 2491,
  18699. bottom: 0.053
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Micro",
  18706. height: math.unit(6, "inches")
  18707. },
  18708. {
  18709. name: "Normal",
  18710. height: math.unit(5 + 2 / 12, "feet"),
  18711. default: true
  18712. },
  18713. {
  18714. name: "Macro",
  18715. height: math.unit(62, "feet")
  18716. },
  18717. {
  18718. name: "Megamacro",
  18719. height: math.unit(1800, "feet")
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18725. {
  18726. front: {
  18727. height: math.unit(10, "feet"),
  18728. weight: math.unit(700, "lb"),
  18729. name: "Front",
  18730. image: {
  18731. source: "./media/characters/storm-alystar/front.svg",
  18732. extra: 2112 / 1898,
  18733. bottom: 0.034
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Micro",
  18740. height: math.unit(3.5, "inches")
  18741. },
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(10, "feet"),
  18745. default: true
  18746. },
  18747. {
  18748. name: "Macro",
  18749. height: math.unit(400, "feet")
  18750. },
  18751. {
  18752. name: "Deific",
  18753. height: math.unit(60, "miles")
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18759. {
  18760. front: {
  18761. height: math.unit(2.35, "meters"),
  18762. weight: math.unit(119, "kg"),
  18763. name: "Front",
  18764. image: {
  18765. source: "./media/characters/ilia/front.svg",
  18766. extra: 1285 / 1255,
  18767. bottom: 0.06
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(2.35, "meters")
  18775. },
  18776. {
  18777. name: "Macro",
  18778. height: math.unit(140, "meters"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Megamacro",
  18783. height: math.unit(100, "miles")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 5 / 12, "feet"),
  18792. weight: math.unit(190, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/kingdead/front.svg",
  18796. extra: 1228 / 1177
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Micro",
  18803. height: math.unit(7, "inches")
  18804. },
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(6 + 5 / 12, "feet")
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(150, "feet"),
  18812. default: true
  18813. },
  18814. {
  18815. name: "Megamacro",
  18816. height: math.unit(200, "miles")
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(8, "feet"),
  18825. weight: math.unit(600, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/kyrehx/front.svg",
  18829. extra: 1195 / 1095,
  18830. bottom: 0.034
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Micro",
  18837. height: math.unit(2, "inches")
  18838. },
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(8, "feet"),
  18842. default: true
  18843. },
  18844. {
  18845. name: "Macro",
  18846. height: math.unit(255, "feet")
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18855. weight: math.unit(184, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/xang/front.svg",
  18859. extra: 845 / 755
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18867. default: true
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(0.935 * 146, "feet")
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(0.935 * 3, "miles")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18881. {
  18882. frontDressed: {
  18883. height: math.unit(5 + 7 / 12, "feet"),
  18884. weight: math.unit(140, "lb"),
  18885. name: "Front (Dressed)",
  18886. image: {
  18887. source: "./media/characters/doc-weardno/front-dressed.svg",
  18888. extra: 263 / 234
  18889. }
  18890. },
  18891. backDressed: {
  18892. height: math.unit(5 + 7 / 12, "feet"),
  18893. weight: math.unit(140, "lb"),
  18894. name: "Back (Dressed)",
  18895. image: {
  18896. source: "./media/characters/doc-weardno/back-dressed.svg",
  18897. extra: 266 / 238
  18898. }
  18899. },
  18900. front: {
  18901. height: math.unit(5 + 7 / 12, "feet"),
  18902. weight: math.unit(140, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/doc-weardno/front.svg",
  18906. extra: 254 / 233
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Micro",
  18913. height: math.unit(3, "inches")
  18914. },
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(5 + 7 / 12, "feet"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(25, "feet")
  18923. },
  18924. {
  18925. name: "Megamacro",
  18926. height: math.unit(2, "miles")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(6 + 2 / 12, "feet"),
  18935. weight: math.unit(153, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/seth-whilst/front.svg",
  18939. bottom: 0.07
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Micro",
  18946. height: math.unit(5, "inches")
  18947. },
  18948. {
  18949. name: "Normal",
  18950. height: math.unit(6 + 2 / 12, "feet"),
  18951. default: true
  18952. },
  18953. ]
  18954. ))
  18955. characterMakers.push(() => makeCharacter(
  18956. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18957. {
  18958. front: {
  18959. height: math.unit(3, "inches"),
  18960. weight: math.unit(8, "grams"),
  18961. name: "Front",
  18962. image: {
  18963. source: "./media/characters/pocket-jabari/front.svg",
  18964. extra: 1024 / 974,
  18965. bottom: 0.039
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Minimicro",
  18972. height: math.unit(8, "mm")
  18973. },
  18974. {
  18975. name: "Micro",
  18976. height: math.unit(3, "inches"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(3, "feet")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(15, "feet"),
  18990. weight: math.unit(3280, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/sapphy/front.svg",
  18994. extra: 671 / 577,
  18995. bottom: 0.085
  18996. }
  18997. },
  18998. back: {
  18999. height: math.unit(15, "feet"),
  19000. weight: math.unit(3280, "lb"),
  19001. name: "Back",
  19002. image: {
  19003. source: "./media/characters/sapphy/back.svg",
  19004. extra: 631 / 607,
  19005. bottom: 0.045
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Normal",
  19012. height: math.unit(15, "feet")
  19013. },
  19014. {
  19015. name: "Casual Macro",
  19016. height: math.unit(120, "feet")
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(2150, "feet"),
  19021. default: true
  19022. },
  19023. {
  19024. name: "Megamacro",
  19025. height: math.unit(8, "miles")
  19026. },
  19027. {
  19028. name: "Galaxy Mom",
  19029. height: math.unit(6, "megalightyears")
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(6, "feet"),
  19038. weight: math.unit(170, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/kiro/front.svg",
  19042. extra: 1064 / 1012,
  19043. bottom: 0.052
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(6, "inches")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(6, "feet"),
  19055. default: true
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(72, "feet")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(5 + 9 / 12, "feet"),
  19068. weight: math.unit(175, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/irishfox/front.svg",
  19072. extra: 1912 / 1680,
  19073. bottom: 0.02
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Nano",
  19080. height: math.unit(1, "mm")
  19081. },
  19082. {
  19083. name: "Micro",
  19084. height: math.unit(2, "inches")
  19085. },
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(5 + 9 / 12, "feet"),
  19089. default: true
  19090. },
  19091. {
  19092. name: "Macro",
  19093. height: math.unit(45, "feet")
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(6 + 1 / 12, "feet"),
  19102. weight: math.unit(75, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/aronai-sieyes/front.svg",
  19106. extra: 1532/1450,
  19107. bottom: 42/1574
  19108. }
  19109. },
  19110. side: {
  19111. height: math.unit(6 + 1 / 12, "feet"),
  19112. weight: math.unit(75, "lb"),
  19113. name: "Side",
  19114. image: {
  19115. source: "./media/characters/aronai-sieyes/side.svg",
  19116. extra: 1422/1365,
  19117. bottom: 148/1570
  19118. }
  19119. },
  19120. back: {
  19121. height: math.unit(6 + 1 / 12, "feet"),
  19122. weight: math.unit(75, "lb"),
  19123. name: "Back",
  19124. image: {
  19125. source: "./media/characters/aronai-sieyes/back.svg",
  19126. extra: 1526/1464,
  19127. bottom: 51/1577
  19128. }
  19129. },
  19130. dressed: {
  19131. height: math.unit(6 + 1 / 12, "feet"),
  19132. weight: math.unit(75, "lb"),
  19133. name: "Dressed",
  19134. image: {
  19135. source: "./media/characters/aronai-sieyes/dressed.svg",
  19136. extra: 1559/1483,
  19137. bottom: 39/1598
  19138. }
  19139. },
  19140. slit: {
  19141. height: math.unit(1.3, "feet"),
  19142. name: "Slit",
  19143. image: {
  19144. source: "./media/characters/aronai-sieyes/slit.svg"
  19145. }
  19146. },
  19147. slitSpread: {
  19148. height: math.unit(0.9, "feet"),
  19149. name: "Slit (Spread)",
  19150. image: {
  19151. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19152. }
  19153. },
  19154. rump: {
  19155. height: math.unit(1.3, "feet"),
  19156. name: "Rump",
  19157. image: {
  19158. source: "./media/characters/aronai-sieyes/rump.svg"
  19159. }
  19160. },
  19161. maw: {
  19162. height: math.unit(1.25, "feet"),
  19163. name: "Maw",
  19164. image: {
  19165. source: "./media/characters/aronai-sieyes/maw.svg"
  19166. }
  19167. },
  19168. feral: {
  19169. height: math.unit(18, "feet"),
  19170. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19171. name: "Feral",
  19172. image: {
  19173. source: "./media/characters/aronai-sieyes/feral.svg",
  19174. extra: 1530 / 1240,
  19175. bottom: 0.035
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(2, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(6 + 1 / 12, "feet"),
  19187. default: true
  19188. }
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(12, "feet"),
  19196. weight: math.unit(410, "kg"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/xuna/front.svg",
  19200. extra: 2184 / 1980
  19201. }
  19202. },
  19203. side: {
  19204. height: math.unit(12, "feet"),
  19205. weight: math.unit(410, "kg"),
  19206. name: "Side",
  19207. image: {
  19208. source: "./media/characters/xuna/side.svg",
  19209. extra: 2184 / 1980
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(12, "feet"),
  19214. weight: math.unit(410, "kg"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/xuna/back.svg",
  19218. extra: 2184 / 1980
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Nano glow",
  19225. height: math.unit(10, "nm")
  19226. },
  19227. {
  19228. name: "Micro floof",
  19229. height: math.unit(0.3, "m")
  19230. },
  19231. {
  19232. name: "Huggable softy boi",
  19233. height: math.unit(3.6576, "m"),
  19234. default: true
  19235. },
  19236. {
  19237. name: "Admirable floof",
  19238. height: math.unit(80, "meters")
  19239. },
  19240. {
  19241. name: "Gentle macro",
  19242. height: math.unit(300, "meters")
  19243. },
  19244. {
  19245. name: "Very careful floof",
  19246. height: math.unit(3200, "meters")
  19247. },
  19248. {
  19249. name: "The mega floof",
  19250. height: math.unit(36000, "meters")
  19251. },
  19252. {
  19253. name: "Giga-fur-Wicker",
  19254. height: math.unit(4800000, "meters")
  19255. },
  19256. {
  19257. name: "Licky world",
  19258. height: math.unit(20000000, "meters")
  19259. },
  19260. {
  19261. name: "Floofy cyan sun",
  19262. height: math.unit(1500000000, "meters")
  19263. },
  19264. {
  19265. name: "Milky Wicker",
  19266. height: math.unit(1000000000000000000000, "meters")
  19267. },
  19268. {
  19269. name: "The observing Wicker",
  19270. height: math.unit(999999999999999999999999999, "meters")
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(5 + 9 / 12, "feet"),
  19279. weight: math.unit(150, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/arokha-sieyes/front.svg",
  19283. extra: 1425 / 1284,
  19284. bottom: 0.05
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 9 / 12, "feet")
  19292. },
  19293. {
  19294. name: "Macro",
  19295. height: math.unit(30, "meters"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6, "feet"),
  19305. weight: math.unit(180, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/arokh-sieyes/front.svg",
  19309. extra: 1830 / 1769,
  19310. bottom: 0.01
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(6, "feet")
  19318. },
  19319. {
  19320. name: "Macro",
  19321. height: math.unit(30, "meters"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19328. {
  19329. side: {
  19330. height: math.unit(13 + 1 / 12, "feet"),
  19331. weight: math.unit(8.5, "tonnes"),
  19332. name: "Side",
  19333. image: {
  19334. source: "./media/characters/goldeneye/side.svg",
  19335. extra: 1182 / 778,
  19336. bottom: 0.067
  19337. }
  19338. },
  19339. paw: {
  19340. height: math.unit(3.4, "feet"),
  19341. name: "Paw",
  19342. image: {
  19343. source: "./media/characters/goldeneye/paw.svg"
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(13 + 1 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19357. {
  19358. front: {
  19359. height: math.unit(6 + 1 / 12, "feet"),
  19360. weight: math.unit(210, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/leonardo-lycheborne/front.svg",
  19364. extra: 776/723,
  19365. bottom: 34/810
  19366. }
  19367. },
  19368. side: {
  19369. height: math.unit(6 + 1 / 12, "feet"),
  19370. weight: math.unit(210, "lb"),
  19371. name: "Side",
  19372. image: {
  19373. source: "./media/characters/leonardo-lycheborne/side.svg",
  19374. extra: 780/728,
  19375. bottom: 12/792
  19376. }
  19377. },
  19378. back: {
  19379. height: math.unit(6 + 1 / 12, "feet"),
  19380. weight: math.unit(210, "lb"),
  19381. name: "Back",
  19382. image: {
  19383. source: "./media/characters/leonardo-lycheborne/back.svg",
  19384. extra: 775/721,
  19385. bottom: 17/792
  19386. }
  19387. },
  19388. hand: {
  19389. height: math.unit(1.08, "feet"),
  19390. name: "Hand",
  19391. image: {
  19392. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19393. }
  19394. },
  19395. foot: {
  19396. height: math.unit(1.32, "feet"),
  19397. name: "Foot",
  19398. image: {
  19399. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19400. }
  19401. },
  19402. maw: {
  19403. height: math.unit(1, "feet"),
  19404. name: "Maw",
  19405. image: {
  19406. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19407. }
  19408. },
  19409. were: {
  19410. height: math.unit(20, "feet"),
  19411. weight: math.unit(7800, "lb"),
  19412. name: "Were",
  19413. image: {
  19414. source: "./media/characters/leonardo-lycheborne/were.svg",
  19415. extra: 1224/1165,
  19416. bottom: 72/1296
  19417. }
  19418. },
  19419. feral: {
  19420. height: math.unit(7.5, "feet"),
  19421. weight: math.unit(600, "lb"),
  19422. name: "Feral",
  19423. image: {
  19424. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19425. extra: 797/702,
  19426. bottom: 139/936
  19427. }
  19428. },
  19429. taur: {
  19430. height: math.unit(11, "feet"),
  19431. weight: math.unit(3300, "lb"),
  19432. name: "Taur",
  19433. image: {
  19434. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19435. extra: 1271/1197,
  19436. bottom: 47/1318
  19437. }
  19438. },
  19439. barghest: {
  19440. height: math.unit(11, "feet"),
  19441. weight: math.unit(1300, "lb"),
  19442. name: "Barghest",
  19443. image: {
  19444. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19445. extra: 1291/1204,
  19446. bottom: 37/1328
  19447. }
  19448. },
  19449. dick: {
  19450. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19451. name: "Dick",
  19452. image: {
  19453. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19454. }
  19455. },
  19456. dickWere: {
  19457. height: math.unit((20) / 3.8, "feet"),
  19458. name: "Dick (Were)",
  19459. image: {
  19460. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(6 + 1 / 12, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(10, "feet"),
  19477. weight: math.unit(350, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/jet/front.svg",
  19481. extra: 2050 / 1980,
  19482. bottom: 0.013
  19483. }
  19484. },
  19485. back: {
  19486. height: math.unit(10, "feet"),
  19487. weight: math.unit(350, "lb"),
  19488. name: "Back",
  19489. image: {
  19490. source: "./media/characters/jet/back.svg",
  19491. extra: 2050 / 1980,
  19492. bottom: 0.013
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Micro",
  19499. height: math.unit(6, "inches")
  19500. },
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(10, "feet"),
  19504. default: true
  19505. },
  19506. {
  19507. name: "Macro",
  19508. height: math.unit(100, "feet")
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(15, "feet"),
  19517. weight: math.unit(2800, "lb"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/tanarath/front.svg",
  19521. extra: 2392 / 2220,
  19522. bottom: 0.03
  19523. }
  19524. },
  19525. back: {
  19526. height: math.unit(15, "feet"),
  19527. weight: math.unit(2800, "lb"),
  19528. name: "Back",
  19529. image: {
  19530. source: "./media/characters/tanarath/back.svg",
  19531. extra: 2392 / 2220,
  19532. bottom: 0.03
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(15, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(7 + 1 / 12, "feet"),
  19549. weight: math.unit(175, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/patty-cattybatty/front.svg",
  19553. extra: 908 / 874,
  19554. bottom: 0.025
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Micro",
  19561. height: math.unit(1, "inch")
  19562. },
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(7 + 1 / 12, "feet")
  19566. },
  19567. {
  19568. name: "Mini Macro",
  19569. height: math.unit(155, "feet")
  19570. },
  19571. {
  19572. name: "Macro",
  19573. height: math.unit(1077, "feet")
  19574. },
  19575. {
  19576. name: "Mega Macro",
  19577. height: math.unit(47650, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Giga Macro",
  19582. height: math.unit(440, "miles")
  19583. },
  19584. {
  19585. name: "Tera Macro",
  19586. height: math.unit(8700, "miles")
  19587. },
  19588. {
  19589. name: "Planetary Macro",
  19590. height: math.unit(32700, "miles")
  19591. },
  19592. {
  19593. name: "Solar Macro",
  19594. height: math.unit(550000, "miles")
  19595. },
  19596. {
  19597. name: "Celestial Macro",
  19598. height: math.unit(2.5, "AU")
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(4 + 5 / 12, "feet"),
  19607. weight: math.unit(90, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/cappu/front.svg",
  19611. extra: 1247 / 1152,
  19612. bottom: 0.012
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(4 + 5 / 12, "feet"),
  19620. default: true
  19621. },
  19622. ]
  19623. ))
  19624. characterMakers.push(() => makeCharacter(
  19625. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19626. {
  19627. frontDressed: {
  19628. height: math.unit(70, "cm"),
  19629. weight: math.unit(6, "kg"),
  19630. name: "Front (Dressed)",
  19631. image: {
  19632. source: "./media/characters/sebi/front-dressed.svg",
  19633. extra: 713.5 / 686.5,
  19634. bottom: 0.003
  19635. }
  19636. },
  19637. front: {
  19638. height: math.unit(70, "cm"),
  19639. weight: math.unit(5, "kg"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/sebi/front.svg",
  19643. extra: 713.5 / 686.5,
  19644. bottom: 0.003
  19645. }
  19646. }
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(70, "cm"),
  19652. default: true
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(8, "meters")
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(6, "feet"),
  19665. weight: math.unit(150, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/typhek/front.svg",
  19669. extra: 1948 / 1929,
  19670. bottom: 0.025
  19671. }
  19672. },
  19673. side: {
  19674. height: math.unit(6, "feet"),
  19675. weight: math.unit(150, "lb"),
  19676. name: "Side",
  19677. image: {
  19678. source: "./media/characters/typhek/side.svg",
  19679. extra: 2034 / 2010,
  19680. bottom: 0.003
  19681. }
  19682. },
  19683. back: {
  19684. height: math.unit(6, "feet"),
  19685. weight: math.unit(150, "lb"),
  19686. name: "Back",
  19687. image: {
  19688. source: "./media/characters/typhek/back.svg",
  19689. extra: 2005 / 1978,
  19690. bottom: 0.004
  19691. }
  19692. },
  19693. palm: {
  19694. height: math.unit(1.2, "feet"),
  19695. name: "Palm",
  19696. image: {
  19697. source: "./media/characters/typhek/palm.svg"
  19698. }
  19699. },
  19700. fist: {
  19701. height: math.unit(1.1, "feet"),
  19702. name: "Fist",
  19703. image: {
  19704. source: "./media/characters/typhek/fist.svg"
  19705. }
  19706. },
  19707. foot: {
  19708. height: math.unit(1.57, "feet"),
  19709. name: "Foot",
  19710. image: {
  19711. source: "./media/characters/typhek/foot.svg"
  19712. }
  19713. },
  19714. sole: {
  19715. height: math.unit(2.05, "feet"),
  19716. name: "Sole",
  19717. image: {
  19718. source: "./media/characters/typhek/sole.svg"
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(40, "stories"),
  19726. default: true
  19727. },
  19728. {
  19729. name: "Megamacro",
  19730. height: math.unit(1, "mile")
  19731. },
  19732. {
  19733. name: "Gigamacro",
  19734. height: math.unit(4000, "solarradii")
  19735. },
  19736. {
  19737. name: "Universal",
  19738. height: math.unit(1.1, "universes")
  19739. }
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19744. {
  19745. side: {
  19746. height: math.unit(5 + 7 / 12, "feet"),
  19747. weight: math.unit(150, "lb"),
  19748. name: "Side",
  19749. image: {
  19750. source: "./media/characters/kassy/side.svg",
  19751. extra: 1280 / 1225,
  19752. bottom: 0.002
  19753. }
  19754. },
  19755. front: {
  19756. height: math.unit(5 + 7 / 12, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/kassy/front.svg",
  19761. extra: 1280 / 1225,
  19762. bottom: 0.025
  19763. }
  19764. },
  19765. back: {
  19766. height: math.unit(5 + 7 / 12, "feet"),
  19767. weight: math.unit(150, "lb"),
  19768. name: "Back",
  19769. image: {
  19770. source: "./media/characters/kassy/back.svg",
  19771. extra: 1280 / 1225,
  19772. bottom: 0.002
  19773. }
  19774. },
  19775. foot: {
  19776. height: math.unit(1.266, "feet"),
  19777. name: "Foot",
  19778. image: {
  19779. source: "./media/characters/kassy/foot.svg"
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Normal",
  19786. height: math.unit(5 + 7 / 12, "feet")
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(137, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Megamacro",
  19795. height: math.unit(1, "mile")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(6 + 1 / 12, "feet"),
  19804. weight: math.unit(200, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/neil/front.svg",
  19808. extra: 1326 / 1250,
  19809. bottom: 0.023
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(6 + 1 / 12, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(200, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(5 + 9 / 12, "feet"),
  19830. weight: math.unit(190, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/atticus/front.svg",
  19834. extra: 2934 / 2785,
  19835. bottom: 0.025
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(5 + 9 / 12, "feet"),
  19843. default: true
  19844. },
  19845. {
  19846. name: "Macro",
  19847. height: math.unit(180, "feet")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19853. {
  19854. side: {
  19855. height: math.unit(9, "feet"),
  19856. weight: math.unit(650, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/milo/side.svg",
  19860. extra: 2644 / 2310,
  19861. bottom: 0.032
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(9, "feet"),
  19869. default: true
  19870. },
  19871. {
  19872. name: "Macro",
  19873. height: math.unit(300, "feet")
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19879. {
  19880. side: {
  19881. height: math.unit(8, "meters"),
  19882. weight: math.unit(90000, "kg"),
  19883. name: "Side",
  19884. image: {
  19885. source: "./media/characters/ijzer/side.svg",
  19886. extra: 2756 / 1600,
  19887. bottom: 0.01
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Small",
  19894. height: math.unit(3, "meters")
  19895. },
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(8, "meters"),
  19899. default: true
  19900. },
  19901. {
  19902. name: "Normal+",
  19903. height: math.unit(10, "meters")
  19904. },
  19905. {
  19906. name: "Bigger",
  19907. height: math.unit(24, "meters")
  19908. },
  19909. {
  19910. name: "Huge",
  19911. height: math.unit(80, "meters")
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(6 + 2 / 12, "feet"),
  19920. weight: math.unit(153, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/luca-cervicum/front.svg",
  19924. extra: 370 / 327,
  19925. bottom: 0.015
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(6 + 2 / 12, "feet"),
  19930. weight: math.unit(153, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/luca-cervicum/back.svg",
  19934. extra: 367 / 333,
  19935. bottom: 0.005
  19936. }
  19937. },
  19938. frontGear: {
  19939. height: math.unit(6 + 2 / 12, "feet"),
  19940. weight: math.unit(173, "lb"),
  19941. name: "Front (Gear)",
  19942. image: {
  19943. source: "./media/characters/luca-cervicum/front-gear.svg",
  19944. extra: 377 / 333,
  19945. bottom: 0.006
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(6 + 2 / 12, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(6 + 1 / 12, "feet"),
  19962. weight: math.unit(304, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/oliver/front.svg",
  19966. extra: 157 / 143,
  19967. bottom: 0.08
  19968. }
  19969. },
  19970. },
  19971. [
  19972. {
  19973. name: "Normal",
  19974. height: math.unit(6 + 1 / 12, "feet"),
  19975. default: true
  19976. },
  19977. ]
  19978. ))
  19979. characterMakers.push(() => makeCharacter(
  19980. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19981. {
  19982. front: {
  19983. height: math.unit(5 + 7 / 12, "feet"),
  19984. weight: math.unit(140, "lb"),
  19985. name: "Front",
  19986. image: {
  19987. source: "./media/characters/shane/front.svg",
  19988. extra: 304 / 289,
  19989. bottom: 0.005
  19990. }
  19991. },
  19992. },
  19993. [
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(5 + 7 / 12, "feet"),
  19997. default: true
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(5 + 9 / 12, "feet"),
  20006. weight: math.unit(178, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/shin/front.svg",
  20010. extra: 159 / 151,
  20011. bottom: 0.015
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(5 + 9 / 12, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(5 + 10 / 12, "feet"),
  20028. weight: math.unit(168, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/xerxes/front.svg",
  20032. extra: 282 / 260,
  20033. bottom: 0.045
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(5 + 10 / 12, "feet"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(6 + 7 / 12, "feet"),
  20050. weight: math.unit(208, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/chaska/front.svg",
  20054. extra: 332 / 319,
  20055. bottom: 0.015
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(6 + 7 / 12, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(5 + 8 / 12, "feet"),
  20072. weight: math.unit(208, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/enuk/front.svg",
  20076. extra: 437 / 406,
  20077. bottom: 0.02
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 8 / 12, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(5 + 10 / 12, "feet"),
  20094. weight: math.unit(252, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/bruun/front.svg",
  20098. extra: 197 / 187,
  20099. bottom: 0.012
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(5 + 10 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(6 + 10 / 12, "feet"),
  20116. weight: math.unit(255, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/alexeev/front.svg",
  20120. extra: 213 / 200,
  20121. bottom: 0.05
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(6 + 10 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(2 + 8 / 12, "feet"),
  20138. weight: math.unit(22, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/evelyn/front.svg",
  20142. extra: 208 / 180
  20143. }
  20144. },
  20145. },
  20146. [
  20147. {
  20148. name: "Normal",
  20149. height: math.unit(2 + 8 / 12, "feet"),
  20150. default: true
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(5 + 9 / 12, "feet"),
  20159. weight: math.unit(139, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/inca/front.svg",
  20163. extra: 294 / 291,
  20164. bottom: 0.03
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Normal",
  20171. height: math.unit(5 + 9 / 12, "feet"),
  20172. default: true
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(6 + 3 / 12, "feet"),
  20181. weight: math.unit(185, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/mera/front.svg",
  20185. extra: 291 / 277,
  20186. bottom: 0.03
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(6 + 3 / 12, "feet"),
  20194. default: true
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20200. {
  20201. front: {
  20202. height: math.unit(6 + 7 / 12, "feet"),
  20203. weight: math.unit(160, "lb"),
  20204. name: "Front",
  20205. image: {
  20206. source: "./media/characters/ceres/front.svg",
  20207. extra: 1023 / 950,
  20208. bottom: 0.027
  20209. }
  20210. },
  20211. back: {
  20212. height: math.unit(6 + 7 / 12, "feet"),
  20213. weight: math.unit(160, "lb"),
  20214. name: "Back",
  20215. image: {
  20216. source: "./media/characters/ceres/back.svg",
  20217. extra: 1023 / 950
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(6 + 7 / 12, "feet"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(5 + 10 / 12, "feet"),
  20234. weight: math.unit(150, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/kris/front.svg",
  20238. extra: 885 / 803,
  20239. bottom: 0.03
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(5 + 10 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(7, "feet"),
  20256. weight: math.unit(120, "kg"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/taluthus/front.svg",
  20260. extra: 903 / 833,
  20261. bottom: 0.015
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(7, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(300, "feet")
  20274. },
  20275. ]
  20276. ))
  20277. characterMakers.push(() => makeCharacter(
  20278. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20279. {
  20280. front: {
  20281. height: math.unit(5 + 9 / 12, "feet"),
  20282. weight: math.unit(145, "lb"),
  20283. name: "Front",
  20284. image: {
  20285. source: "./media/characters/dawn/front.svg",
  20286. extra: 2094 / 2016,
  20287. bottom: 0.025
  20288. }
  20289. },
  20290. back: {
  20291. height: math.unit(5 + 9 / 12, "feet"),
  20292. weight: math.unit(160, "lb"),
  20293. name: "Back",
  20294. image: {
  20295. source: "./media/characters/dawn/back.svg",
  20296. extra: 2112 / 2080,
  20297. bottom: 0.005
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(6 + 7 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20311. {
  20312. anthro: {
  20313. height: math.unit(8 + 3 / 12, "feet"),
  20314. weight: math.unit(450, "lb"),
  20315. name: "Anthro",
  20316. image: {
  20317. source: "./media/characters/arador/anthro.svg",
  20318. extra: 1835 / 1718,
  20319. bottom: 0.025
  20320. }
  20321. },
  20322. feral: {
  20323. height: math.unit(4, "feet"),
  20324. weight: math.unit(200, "lb"),
  20325. name: "Feral",
  20326. image: {
  20327. source: "./media/characters/arador/feral.svg",
  20328. extra: 1683 / 1514,
  20329. bottom: 0.07
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(8 + 3 / 12, "feet")
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(82.5, "feet"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20347. {
  20348. front: {
  20349. height: math.unit(5 + 10 / 12, "feet"),
  20350. weight: math.unit(125, "lb"),
  20351. name: "Front",
  20352. image: {
  20353. source: "./media/characters/dharsi/front.svg",
  20354. extra: 716 / 630,
  20355. bottom: 0.035
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Nano",
  20362. height: math.unit(100, "nm")
  20363. },
  20364. {
  20365. name: "Micro",
  20366. height: math.unit(2, "inches")
  20367. },
  20368. {
  20369. name: "Normal",
  20370. height: math.unit(5 + 10 / 12, "feet"),
  20371. default: true
  20372. },
  20373. {
  20374. name: "Macro",
  20375. height: math.unit(1000, "feet")
  20376. },
  20377. {
  20378. name: "Megamacro",
  20379. height: math.unit(10, "miles")
  20380. },
  20381. {
  20382. name: "Gigamacro",
  20383. height: math.unit(3000, "miles")
  20384. },
  20385. {
  20386. name: "Teramacro",
  20387. height: math.unit(500000, "miles")
  20388. },
  20389. {
  20390. name: "Teramacro+",
  20391. height: math.unit(30, "galaxies")
  20392. },
  20393. ]
  20394. ))
  20395. characterMakers.push(() => makeCharacter(
  20396. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20397. {
  20398. front: {
  20399. height: math.unit(6, "feet"),
  20400. weight: math.unit(150, "lb"),
  20401. name: "Front",
  20402. image: {
  20403. source: "./media/characters/deathy/front.svg",
  20404. extra: 1552 / 1463,
  20405. bottom: 0.025
  20406. }
  20407. },
  20408. side: {
  20409. height: math.unit(6, "feet"),
  20410. weight: math.unit(150, "lb"),
  20411. name: "Side",
  20412. image: {
  20413. source: "./media/characters/deathy/side.svg",
  20414. extra: 1604 / 1455,
  20415. bottom: 0.025
  20416. }
  20417. },
  20418. back: {
  20419. height: math.unit(6, "feet"),
  20420. weight: math.unit(150, "lb"),
  20421. name: "Back",
  20422. image: {
  20423. source: "./media/characters/deathy/back.svg",
  20424. extra: 1580 / 1463,
  20425. bottom: 0.005
  20426. }
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Micro",
  20432. height: math.unit(5, "millimeters")
  20433. },
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(6 + 5 / 12, "feet"),
  20437. default: true
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20443. {
  20444. front: {
  20445. height: math.unit(16, "feet"),
  20446. weight: math.unit(4000, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/juniper/front.svg",
  20450. bottom: 0.04
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(16, "feet"),
  20458. default: true
  20459. },
  20460. ]
  20461. ))
  20462. characterMakers.push(() => makeCharacter(
  20463. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20464. {
  20465. front: {
  20466. height: math.unit(6, "feet"),
  20467. weight: math.unit(150, "lb"),
  20468. name: "Front",
  20469. image: {
  20470. source: "./media/characters/hipster/front.svg",
  20471. extra: 1312 / 1209,
  20472. bottom: 0.025
  20473. }
  20474. },
  20475. back: {
  20476. height: math.unit(6, "feet"),
  20477. weight: math.unit(150, "lb"),
  20478. name: "Back",
  20479. image: {
  20480. source: "./media/characters/hipster/back.svg",
  20481. extra: 1281 / 1196,
  20482. bottom: 0.01
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Micro",
  20489. height: math.unit(1, "mm")
  20490. },
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(4, "inches"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Macro",
  20498. height: math.unit(500, "feet")
  20499. },
  20500. {
  20501. name: "Megamacro",
  20502. height: math.unit(1000, "miles")
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(6, "feet"),
  20511. weight: math.unit(150, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/tendirmuldr/front.svg",
  20515. extra: 1878 / 1772,
  20516. bottom: 0.015
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1500, "miles"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20530. {
  20531. front: {
  20532. height: math.unit(14, "feet"),
  20533. weight: math.unit(12000, "lb"),
  20534. name: "Front",
  20535. image: {
  20536. source: "./media/characters/mort/front.svg",
  20537. extra: 365 / 318,
  20538. bottom: 0.01
  20539. }
  20540. },
  20541. side: {
  20542. height: math.unit(14, "feet"),
  20543. weight: math.unit(12000, "lb"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/mort/side.svg",
  20547. extra: 365 / 318,
  20548. bottom: 0.052
  20549. },
  20550. default: true
  20551. },
  20552. back: {
  20553. height: math.unit(14, "feet"),
  20554. weight: math.unit(12000, "lb"),
  20555. name: "Back",
  20556. image: {
  20557. source: "./media/characters/mort/back.svg",
  20558. extra: 371 / 332,
  20559. bottom: 0.18
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(14, "feet"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20573. {
  20574. front: {
  20575. height: math.unit(8, "feet"),
  20576. weight: math.unit(1, "ton"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/lycoa/front.svg",
  20580. extra: 1875 / 1789,
  20581. bottom: 0.022
  20582. }
  20583. },
  20584. back: {
  20585. height: math.unit(8, "feet"),
  20586. weight: math.unit(1, "ton"),
  20587. name: "Back",
  20588. image: {
  20589. source: "./media/characters/lycoa/back.svg",
  20590. extra: 1835 / 1781,
  20591. bottom: 0.03
  20592. }
  20593. },
  20594. head: {
  20595. height: math.unit(2.1, "feet"),
  20596. name: "Head",
  20597. image: {
  20598. source: "./media/characters/lycoa/head.svg"
  20599. }
  20600. },
  20601. tailmaw: {
  20602. height: math.unit(1.9, "feet"),
  20603. name: "Tailmaw",
  20604. image: {
  20605. source: "./media/characters/lycoa/tailmaw.svg"
  20606. }
  20607. },
  20608. tentacles: {
  20609. height: math.unit(2.1, "feet"),
  20610. name: "Tentacles",
  20611. image: {
  20612. source: "./media/characters/lycoa/tentacles.svg"
  20613. }
  20614. },
  20615. dick: {
  20616. height: math.unit(1.73, "feet"),
  20617. name: "Dick",
  20618. image: {
  20619. source: "./media/characters/lycoa/dick.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8, "feet"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(30, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20637. {
  20638. front: {
  20639. height: math.unit(4 + 2 / 12, "feet"),
  20640. weight: math.unit(70, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/naldara/front.svg",
  20644. extra: 841 / 720,
  20645. bottom: 0.04
  20646. }
  20647. },
  20648. naga: {
  20649. height: math.unit(23, "feet"),
  20650. weight: math.unit(15000, "kg"),
  20651. name: "Naga",
  20652. image: {
  20653. source: "./media/characters/naldara/naga.svg",
  20654. extra: 3290 / 2959,
  20655. bottom: 124 / 3432
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(4 + 2 / 12, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(13 + 7 / 12, "feet"),
  20672. weight: math.unit(1500, "lb"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/briar/front.svg",
  20676. extra: 626 / 596,
  20677. bottom: 0.08
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Normal",
  20684. height: math.unit(13 + 7 / 12, "feet"),
  20685. default: true
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20691. {
  20692. side: {
  20693. height: math.unit(10, "feet"),
  20694. weight: math.unit(500, "lb"),
  20695. name: "Side",
  20696. image: {
  20697. source: "./media/characters/vanguard/side.svg",
  20698. extra: 502 / 425,
  20699. bottom: 0.087
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(10, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(7.5, "feet"),
  20716. weight: math.unit(2, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/artemis/front.svg",
  20720. extra: 1192 / 1075,
  20721. bottom: 0.07
  20722. }
  20723. },
  20724. frontNsfw: {
  20725. height: math.unit(7.5, "feet"),
  20726. weight: math.unit(2, "lb"),
  20727. name: "Front (NSFW)",
  20728. image: {
  20729. source: "./media/characters/artemis/front-nsfw.svg",
  20730. extra: 1192 / 1075,
  20731. bottom: 0.07
  20732. }
  20733. },
  20734. frontNsfwer: {
  20735. height: math.unit(7.5, "feet"),
  20736. weight: math.unit(2, "lb"),
  20737. name: "Front (NSFW-er)",
  20738. image: {
  20739. source: "./media/characters/artemis/front-nsfwer.svg",
  20740. extra: 1192 / 1075,
  20741. bottom: 0.07
  20742. }
  20743. },
  20744. side: {
  20745. height: math.unit(7.5, "feet"),
  20746. weight: math.unit(2, "lb"),
  20747. name: "Side",
  20748. image: {
  20749. source: "./media/characters/artemis/side.svg",
  20750. extra: 1192 / 1075,
  20751. bottom: 0.07
  20752. }
  20753. },
  20754. sideNsfw: {
  20755. height: math.unit(7.5, "feet"),
  20756. weight: math.unit(2, "lb"),
  20757. name: "Side (NSFW)",
  20758. image: {
  20759. source: "./media/characters/artemis/side-nsfw.svg",
  20760. extra: 1192 / 1075,
  20761. bottom: 0.07
  20762. }
  20763. },
  20764. sideNsfwer: {
  20765. height: math.unit(7.5, "feet"),
  20766. weight: math.unit(2, "lb"),
  20767. name: "Side (NSFW-er)",
  20768. image: {
  20769. source: "./media/characters/artemis/side-nsfwer.svg",
  20770. extra: 1192 / 1075,
  20771. bottom: 0.07
  20772. }
  20773. },
  20774. maw: {
  20775. height: math.unit(1.1, "feet"),
  20776. name: "Maw",
  20777. image: {
  20778. source: "./media/characters/artemis/maw.svg"
  20779. }
  20780. },
  20781. stomach: {
  20782. height: math.unit(0.95, "feet"),
  20783. name: "Stomach",
  20784. image: {
  20785. source: "./media/characters/artemis/stomach.svg"
  20786. }
  20787. },
  20788. dickCanine: {
  20789. height: math.unit(1, "feet"),
  20790. name: "Dick (Canine)",
  20791. image: {
  20792. source: "./media/characters/artemis/dick-canine.svg"
  20793. }
  20794. },
  20795. dickEquine: {
  20796. height: math.unit(0.85, "feet"),
  20797. name: "Dick (Equine)",
  20798. image: {
  20799. source: "./media/characters/artemis/dick-equine.svg"
  20800. }
  20801. },
  20802. dickExotic: {
  20803. height: math.unit(0.85, "feet"),
  20804. name: "Dick (Exotic)",
  20805. image: {
  20806. source: "./media/characters/artemis/dick-exotic.svg"
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(7.5, "feet"),
  20814. default: true
  20815. },
  20816. {
  20817. name: "Enlarged",
  20818. height: math.unit(12, "feet")
  20819. },
  20820. ]
  20821. ))
  20822. characterMakers.push(() => makeCharacter(
  20823. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20824. {
  20825. front: {
  20826. height: math.unit(5 + 3 / 12, "feet"),
  20827. weight: math.unit(160, "lb"),
  20828. name: "Front",
  20829. image: {
  20830. source: "./media/characters/kira/front.svg",
  20831. extra: 906 / 786,
  20832. bottom: 0.01
  20833. }
  20834. },
  20835. back: {
  20836. height: math.unit(5 + 3 / 12, "feet"),
  20837. weight: math.unit(160, "lb"),
  20838. name: "Back",
  20839. image: {
  20840. source: "./media/characters/kira/back.svg",
  20841. extra: 882 / 757,
  20842. bottom: 0.005
  20843. }
  20844. },
  20845. frontDressed: {
  20846. height: math.unit(5 + 3 / 12, "feet"),
  20847. weight: math.unit(160, "lb"),
  20848. name: "Front (Dressed)",
  20849. image: {
  20850. source: "./media/characters/kira/front-dressed.svg",
  20851. extra: 906 / 786,
  20852. bottom: 0.01
  20853. }
  20854. },
  20855. beans: {
  20856. height: math.unit(0.92, "feet"),
  20857. name: "Beans",
  20858. image: {
  20859. source: "./media/characters/kira/beans.svg"
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(5 + 3 / 12, "feet"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(5 + 4 / 12, "feet"),
  20876. weight: math.unit(145, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/scramble/front.svg",
  20880. extra: 763 / 727,
  20881. bottom: 0.05
  20882. }
  20883. },
  20884. back: {
  20885. height: math.unit(5 + 4 / 12, "feet"),
  20886. weight: math.unit(145, "lb"),
  20887. name: "Back",
  20888. image: {
  20889. source: "./media/characters/scramble/back.svg",
  20890. extra: 826 / 737,
  20891. bottom: 0.002
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(5 + 4 / 12, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20905. {
  20906. side: {
  20907. height: math.unit(6 + 2 / 12, "feet"),
  20908. weight: math.unit(190, "lb"),
  20909. name: "Side",
  20910. image: {
  20911. source: "./media/characters/biscuit/side.svg",
  20912. extra: 858 / 791,
  20913. bottom: 0.044
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(6 + 2 / 12, "feet"),
  20921. default: true
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20927. {
  20928. front: {
  20929. height: math.unit(5 + 2 / 12, "feet"),
  20930. weight: math.unit(120, "lb"),
  20931. name: "Front",
  20932. image: {
  20933. source: "./media/characters/poffin/front.svg",
  20934. extra: 786 / 680,
  20935. bottom: 0.005
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(5 + 2 / 12, "feet"),
  20943. default: true
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20949. {
  20950. front: {
  20951. height: math.unit(6 + 3 / 12, "feet"),
  20952. weight: math.unit(519, "lb"),
  20953. name: "Front",
  20954. image: {
  20955. source: "./media/characters/dhari/front.svg",
  20956. extra: 1048 / 946,
  20957. bottom: 0.015
  20958. }
  20959. },
  20960. back: {
  20961. height: math.unit(6 + 3 / 12, "feet"),
  20962. weight: math.unit(519, "lb"),
  20963. name: "Back",
  20964. image: {
  20965. source: "./media/characters/dhari/back.svg",
  20966. extra: 1048 / 931,
  20967. bottom: 0.005
  20968. }
  20969. },
  20970. frontDressed: {
  20971. height: math.unit(6 + 3 / 12, "feet"),
  20972. weight: math.unit(519, "lb"),
  20973. name: "Front (Dressed)",
  20974. image: {
  20975. source: "./media/characters/dhari/front-dressed.svg",
  20976. extra: 1713 / 1546,
  20977. bottom: 0.02
  20978. }
  20979. },
  20980. backDressed: {
  20981. height: math.unit(6 + 3 / 12, "feet"),
  20982. weight: math.unit(519, "lb"),
  20983. name: "Back (Dressed)",
  20984. image: {
  20985. source: "./media/characters/dhari/back-dressed.svg",
  20986. extra: 1699 / 1537,
  20987. bottom: 0.01
  20988. }
  20989. },
  20990. maw: {
  20991. height: math.unit(0.95, "feet"),
  20992. name: "Maw",
  20993. image: {
  20994. source: "./media/characters/dhari/maw.svg"
  20995. }
  20996. },
  20997. wereFront: {
  20998. height: math.unit(12 + 8 / 12, "feet"),
  20999. weight: math.unit(4000, "lb"),
  21000. name: "Front (Were)",
  21001. image: {
  21002. source: "./media/characters/dhari/were-front.svg",
  21003. extra: 1065 / 969,
  21004. bottom: 0.015
  21005. }
  21006. },
  21007. wereBack: {
  21008. height: math.unit(12 + 8 / 12, "feet"),
  21009. weight: math.unit(4000, "lb"),
  21010. name: "Back (Were)",
  21011. image: {
  21012. source: "./media/characters/dhari/were-back.svg",
  21013. extra: 1065 / 969,
  21014. bottom: 0.012
  21015. }
  21016. },
  21017. wereMaw: {
  21018. height: math.unit(0.625, "meters"),
  21019. name: "Maw (Were)",
  21020. image: {
  21021. source: "./media/characters/dhari/were-maw.svg"
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(6 + 3 / 12, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21035. {
  21036. anthro: {
  21037. height: math.unit(5 + 7 / 12, "feet"),
  21038. weight: math.unit(175, "lb"),
  21039. name: "Anthro",
  21040. image: {
  21041. source: "./media/characters/rena-dyne/anthro.svg",
  21042. extra: 1849 / 1785,
  21043. bottom: 0.005
  21044. }
  21045. },
  21046. taur: {
  21047. height: math.unit(15 + 6 / 12, "feet"),
  21048. weight: math.unit(8000, "lb"),
  21049. name: "Taur",
  21050. image: {
  21051. source: "./media/characters/rena-dyne/taur.svg",
  21052. extra: 2315 / 2234,
  21053. bottom: 0.033
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(5 + 7 / 12, "feet"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(8, "feet"),
  21070. weight: math.unit(600, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/weremeep/front.svg",
  21074. extra: 967 / 862,
  21075. bottom: 0.01
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(8, "feet"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Lorg",
  21087. height: math.unit(12, "feet")
  21088. },
  21089. {
  21090. name: "Oh Lawd She Comin'",
  21091. height: math.unit(20, "feet")
  21092. },
  21093. ]
  21094. ))
  21095. characterMakers.push(() => makeCharacter(
  21096. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21097. {
  21098. front: {
  21099. height: math.unit(4, "feet"),
  21100. weight: math.unit(90, "lb"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/reza/front.svg",
  21104. extra: 1183 / 1111,
  21105. bottom: 0.017
  21106. }
  21107. },
  21108. back: {
  21109. height: math.unit(4, "feet"),
  21110. weight: math.unit(90, "lb"),
  21111. name: "Back",
  21112. image: {
  21113. source: "./media/characters/reza/back.svg",
  21114. extra: 1183 / 1111,
  21115. bottom: 0.01
  21116. }
  21117. },
  21118. drake: {
  21119. height: math.unit(30, "feet"),
  21120. weight: math.unit(246960, "lb"),
  21121. name: "Drake",
  21122. image: {
  21123. source: "./media/characters/reza/drake.svg",
  21124. extra: 2350 / 2024,
  21125. bottom: 60.7 / 2403
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Normal",
  21132. height: math.unit(4, "feet"),
  21133. default: true
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21139. {
  21140. side: {
  21141. height: math.unit(15, "feet"),
  21142. weight: math.unit(14, "tons"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/athea/side.svg",
  21146. extra: 960 / 540,
  21147. bottom: 0.003
  21148. }
  21149. },
  21150. sitting: {
  21151. height: math.unit(6 * 2.85, "feet"),
  21152. weight: math.unit(14, "tons"),
  21153. name: "Sitting",
  21154. image: {
  21155. source: "./media/characters/athea/sitting.svg",
  21156. extra: 621 / 581,
  21157. bottom: 0.075
  21158. }
  21159. },
  21160. maw: {
  21161. height: math.unit(7.59498031496063, "feet"),
  21162. name: "Maw",
  21163. image: {
  21164. source: "./media/characters/athea/maw.svg"
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Lap Cat",
  21171. height: math.unit(2.5, "feet")
  21172. },
  21173. {
  21174. name: "Minimacro",
  21175. height: math.unit(15, "feet"),
  21176. default: true
  21177. },
  21178. {
  21179. name: "Macro",
  21180. height: math.unit(120, "feet")
  21181. },
  21182. {
  21183. name: "Macro+",
  21184. height: math.unit(640, "feet")
  21185. },
  21186. {
  21187. name: "Colossus",
  21188. height: math.unit(2.2, "miles")
  21189. },
  21190. ]
  21191. ))
  21192. characterMakers.push(() => makeCharacter(
  21193. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21194. {
  21195. front: {
  21196. height: math.unit(8 + 8 / 12, "feet"),
  21197. weight: math.unit(130, "kg"),
  21198. name: "Front",
  21199. image: {
  21200. source: "./media/characters/seroko/front.svg",
  21201. extra: 1385 / 1280,
  21202. bottom: 0.025
  21203. }
  21204. },
  21205. back: {
  21206. height: math.unit(8 + 8 / 12, "feet"),
  21207. weight: math.unit(130, "kg"),
  21208. name: "Back",
  21209. image: {
  21210. source: "./media/characters/seroko/back.svg",
  21211. extra: 1369 / 1238,
  21212. bottom: 0.018
  21213. }
  21214. },
  21215. frontDressed: {
  21216. height: math.unit(8 + 8 / 12, "feet"),
  21217. weight: math.unit(130, "kg"),
  21218. name: "Front (Dressed)",
  21219. image: {
  21220. source: "./media/characters/seroko/front-dressed.svg",
  21221. extra: 1366 / 1275,
  21222. bottom: 0.03
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(8 + 8 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(5.5, "feet"),
  21239. weight: math.unit(160, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/quatzi/front.svg",
  21243. extra: 2346 / 2242,
  21244. bottom: 0.015
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5.5, "feet"),
  21252. default: true
  21253. },
  21254. {
  21255. name: "Big",
  21256. height: math.unit(7.7, "feet")
  21257. },
  21258. ]
  21259. ))
  21260. characterMakers.push(() => makeCharacter(
  21261. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21262. {
  21263. front: {
  21264. height: math.unit(5 + 11 / 12, "feet"),
  21265. weight: math.unit(180, "lb"),
  21266. name: "Front",
  21267. image: {
  21268. source: "./media/characters/sen/front.svg",
  21269. extra: 1321 / 1254,
  21270. bottom: 0.015
  21271. }
  21272. },
  21273. side: {
  21274. height: math.unit(5 + 11 / 12, "feet"),
  21275. weight: math.unit(180, "lb"),
  21276. name: "Side",
  21277. image: {
  21278. source: "./media/characters/sen/side.svg",
  21279. extra: 1321 / 1254,
  21280. bottom: 0.007
  21281. }
  21282. },
  21283. back: {
  21284. height: math.unit(5 + 11 / 12, "feet"),
  21285. weight: math.unit(180, "lb"),
  21286. name: "Back",
  21287. image: {
  21288. source: "./media/characters/sen/back.svg",
  21289. extra: 1321 / 1254
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(5 + 11 / 12, "feet"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21303. {
  21304. front: {
  21305. height: math.unit(166.6, "cm"),
  21306. weight: math.unit(66.6, "kg"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/fruity/front.svg",
  21310. extra: 1510 / 1386,
  21311. bottom: 0.04
  21312. }
  21313. },
  21314. back: {
  21315. height: math.unit(166.6, "cm"),
  21316. weight: math.unit(66.6, "lb"),
  21317. name: "Back",
  21318. image: {
  21319. source: "./media/characters/fruity/back.svg",
  21320. extra: 1563 / 1435,
  21321. bottom: 0.005
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(166.6, "cm"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Demonic",
  21333. height: math.unit(166.6, "feet")
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21339. {
  21340. side: {
  21341. height: math.unit(10, "feet"),
  21342. weight: math.unit(500, "lb"),
  21343. name: "Side",
  21344. image: {
  21345. source: "./media/characters/zost/side.svg",
  21346. extra: 966 / 880,
  21347. bottom: 0.075
  21348. }
  21349. },
  21350. mawFront: {
  21351. height: math.unit(1.08, "meters"),
  21352. name: "Maw (Front)",
  21353. image: {
  21354. source: "./media/characters/zost/maw-front.svg"
  21355. }
  21356. },
  21357. mawSide: {
  21358. height: math.unit(2.66, "feet"),
  21359. name: "Maw (Side)",
  21360. image: {
  21361. source: "./media/characters/zost/maw-side.svg"
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(10, "feet"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21375. {
  21376. front: {
  21377. height: math.unit(5 + 4 / 12, "feet"),
  21378. weight: math.unit(120, "lb"),
  21379. name: "Front",
  21380. image: {
  21381. source: "./media/characters/luci/front.svg",
  21382. extra: 1985 / 1884,
  21383. bottom: 0.04
  21384. }
  21385. },
  21386. back: {
  21387. height: math.unit(5 + 4 / 12, "feet"),
  21388. weight: math.unit(120, "lb"),
  21389. name: "Back",
  21390. image: {
  21391. source: "./media/characters/luci/back.svg",
  21392. extra: 1892 / 1791,
  21393. bottom: 0.002
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(5 + 4 / 12, "feet"),
  21401. default: true
  21402. },
  21403. ]
  21404. ))
  21405. characterMakers.push(() => makeCharacter(
  21406. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21407. {
  21408. front: {
  21409. height: math.unit(1500, "feet"),
  21410. weight: math.unit(3.8e6, "tons"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/2th/front.svg",
  21414. extra: 3489 / 3350,
  21415. bottom: 0.1
  21416. }
  21417. },
  21418. foot: {
  21419. height: math.unit(461, "feet"),
  21420. name: "Foot",
  21421. image: {
  21422. source: "./media/characters/2th/foot.svg"
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "\"Micro\"",
  21429. height: math.unit(15 + 7 / 12, "feet")
  21430. },
  21431. {
  21432. name: "Normal",
  21433. height: math.unit(1500, "feet"),
  21434. default: true
  21435. },
  21436. {
  21437. name: "Macro",
  21438. height: math.unit(5000, "feet")
  21439. },
  21440. {
  21441. name: "Megamacro",
  21442. height: math.unit(15, "miles")
  21443. },
  21444. {
  21445. name: "Gigamacro",
  21446. height: math.unit(4000, "miles")
  21447. },
  21448. {
  21449. name: "Galactic",
  21450. height: math.unit(50, "AU")
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(5 + 6 / 12, "feet"),
  21459. weight: math.unit(220, "lb"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/amethyst/front.svg",
  21463. extra: 2078 / 2040,
  21464. bottom: 0.045
  21465. }
  21466. },
  21467. back: {
  21468. height: math.unit(5 + 6 / 12, "feet"),
  21469. weight: math.unit(220, "lb"),
  21470. name: "Back",
  21471. image: {
  21472. source: "./media/characters/amethyst/back.svg",
  21473. extra: 2021 / 1989,
  21474. bottom: 0.02
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(5 + 6 / 12, "feet"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(4 + 11 / 12, "feet"),
  21491. weight: math.unit(120, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/yumi-akiyama/front.svg",
  21495. extra: 1327 / 1235,
  21496. bottom: 0.02
  21497. }
  21498. },
  21499. back: {
  21500. height: math.unit(4 + 11 / 12, "feet"),
  21501. weight: math.unit(120, "lb"),
  21502. name: "Back",
  21503. image: {
  21504. source: "./media/characters/yumi-akiyama/back.svg",
  21505. extra: 1287 / 1245,
  21506. bottom: 0.002
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Galactic",
  21513. height: math.unit(50, "galaxies"),
  21514. default: true
  21515. },
  21516. {
  21517. name: "Universal",
  21518. height: math.unit(100, "universes")
  21519. },
  21520. ]
  21521. ))
  21522. characterMakers.push(() => makeCharacter(
  21523. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21524. {
  21525. front: {
  21526. height: math.unit(8, "feet"),
  21527. weight: math.unit(500, "lb"),
  21528. name: "Front",
  21529. image: {
  21530. source: "./media/characters/rifter-yrmori/front.svg",
  21531. extra: 1180 / 1125,
  21532. bottom: 0.02
  21533. }
  21534. },
  21535. back: {
  21536. height: math.unit(8, "feet"),
  21537. weight: math.unit(500, "lb"),
  21538. name: "Back",
  21539. image: {
  21540. source: "./media/characters/rifter-yrmori/back.svg",
  21541. extra: 1190 / 1145,
  21542. bottom: 0.001
  21543. }
  21544. },
  21545. wings: {
  21546. height: math.unit(7.75, "feet"),
  21547. weight: math.unit(500, "lb"),
  21548. name: "Wings",
  21549. image: {
  21550. source: "./media/characters/rifter-yrmori/wings.svg",
  21551. extra: 1357 / 1285
  21552. }
  21553. },
  21554. maw: {
  21555. height: math.unit(0.8, "feet"),
  21556. name: "Maw",
  21557. image: {
  21558. source: "./media/characters/rifter-yrmori/maw.svg"
  21559. }
  21560. },
  21561. mawfront: {
  21562. height: math.unit(1.45, "feet"),
  21563. name: "Maw (Front)",
  21564. image: {
  21565. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(8, "feet"),
  21573. default: true
  21574. },
  21575. {
  21576. name: "Macro",
  21577. height: math.unit(42, "meters")
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21583. {
  21584. were: {
  21585. height: math.unit(25 + 6 / 12, "feet"),
  21586. weight: math.unit(10000, "lb"),
  21587. name: "Were",
  21588. image: {
  21589. source: "./media/characters/tahajin/were.svg",
  21590. extra: 801 / 770,
  21591. bottom: 0.042
  21592. }
  21593. },
  21594. aquatic: {
  21595. height: math.unit(6 + 4 / 12, "feet"),
  21596. weight: math.unit(160, "lb"),
  21597. name: "Aquatic",
  21598. image: {
  21599. source: "./media/characters/tahajin/aquatic.svg",
  21600. extra: 572 / 542,
  21601. bottom: 0.04
  21602. }
  21603. },
  21604. chow: {
  21605. height: math.unit(8 + 11 / 12, "feet"),
  21606. weight: math.unit(450, "lb"),
  21607. name: "Chow",
  21608. image: {
  21609. source: "./media/characters/tahajin/chow.svg",
  21610. extra: 660 / 640,
  21611. bottom: 0.015
  21612. }
  21613. },
  21614. demiNaga: {
  21615. height: math.unit(6 + 8 / 12, "feet"),
  21616. weight: math.unit(300, "lb"),
  21617. name: "Demi Naga",
  21618. image: {
  21619. source: "./media/characters/tahajin/demi-naga.svg",
  21620. extra: 643 / 615,
  21621. bottom: 0.1
  21622. }
  21623. },
  21624. data: {
  21625. height: math.unit(5, "inches"),
  21626. weight: math.unit(0.1, "lb"),
  21627. name: "Data",
  21628. image: {
  21629. source: "./media/characters/tahajin/data.svg"
  21630. }
  21631. },
  21632. fluu: {
  21633. height: math.unit(5 + 7 / 12, "feet"),
  21634. weight: math.unit(140, "lb"),
  21635. name: "Fluu",
  21636. image: {
  21637. source: "./media/characters/tahajin/fluu.svg",
  21638. extra: 628 / 592,
  21639. bottom: 0.02
  21640. }
  21641. },
  21642. starWarrior: {
  21643. height: math.unit(4 + 5 / 12, "feet"),
  21644. weight: math.unit(50, "lb"),
  21645. name: "Star Warrior",
  21646. image: {
  21647. source: "./media/characters/tahajin/star-warrior.svg"
  21648. }
  21649. },
  21650. },
  21651. [
  21652. {
  21653. name: "Normal",
  21654. height: math.unit(25 + 6 / 12, "feet"),
  21655. default: true
  21656. },
  21657. ]
  21658. ))
  21659. characterMakers.push(() => makeCharacter(
  21660. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21661. {
  21662. front: {
  21663. height: math.unit(8, "feet"),
  21664. weight: math.unit(350, "lb"),
  21665. name: "Front",
  21666. image: {
  21667. source: "./media/characters/gabira/front.svg",
  21668. extra: 608 / 580,
  21669. bottom: 0.03
  21670. }
  21671. },
  21672. back: {
  21673. height: math.unit(8, "feet"),
  21674. weight: math.unit(350, "lb"),
  21675. name: "Back",
  21676. image: {
  21677. source: "./media/characters/gabira/back.svg",
  21678. extra: 608 / 580,
  21679. bottom: 0.03
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Normal",
  21686. height: math.unit(8, "feet"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21693. {
  21694. front: {
  21695. height: math.unit(5 + 3 / 12, "feet"),
  21696. weight: math.unit(137, "lb"),
  21697. name: "Front",
  21698. image: {
  21699. source: "./media/characters/sasha-katraine/front.svg",
  21700. bottom: 0.045
  21701. }
  21702. },
  21703. },
  21704. [
  21705. {
  21706. name: "Micro",
  21707. height: math.unit(5, "inches")
  21708. },
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(5 + 3 / 12, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21718. {
  21719. side: {
  21720. height: math.unit(4, "inches"),
  21721. weight: math.unit(200, "grams"),
  21722. name: "Side",
  21723. image: {
  21724. source: "./media/characters/der/side.svg",
  21725. extra: 719 / 400,
  21726. bottom: 30.6 / 749.9187
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Micro",
  21733. height: math.unit(4, "inches"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21740. {
  21741. side: {
  21742. height: math.unit(30, "meters"),
  21743. weight: math.unit(700, "tonnes"),
  21744. name: "Side",
  21745. image: {
  21746. source: "./media/characters/fixerdragon/side.svg",
  21747. extra: (1293.0514 - 116.03) / 1106.86,
  21748. bottom: 116.03 / 1293.0514
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Planck",
  21755. height: math.unit(1.6e-35, "meters")
  21756. },
  21757. {
  21758. name: "Micro",
  21759. height: math.unit(0.4, "meters")
  21760. },
  21761. {
  21762. name: "Normal",
  21763. height: math.unit(30, "meters"),
  21764. default: true
  21765. },
  21766. {
  21767. name: "Megamacro",
  21768. height: math.unit(1.2, "megameters")
  21769. },
  21770. {
  21771. name: "Teramacro",
  21772. height: math.unit(130, "terameters")
  21773. },
  21774. {
  21775. name: "Yottamacro",
  21776. height: math.unit(6200, "yottameters")
  21777. },
  21778. ]
  21779. ));
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(8, "feet"),
  21785. weight: math.unit(250, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/kite/front.svg",
  21789. extra: 2796 / 2659,
  21790. bottom: 0.002
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(8, "feet"),
  21798. default: true
  21799. },
  21800. {
  21801. name: "Macro",
  21802. height: math.unit(360, "feet")
  21803. },
  21804. {
  21805. name: "Megamacro",
  21806. height: math.unit(1500, "feet")
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(5 + 11/12, "feet"),
  21815. weight: math.unit(170, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/poojawa-vynar/front.svg",
  21819. extra: 1735/1585,
  21820. bottom: 96/1831
  21821. }
  21822. },
  21823. back: {
  21824. height: math.unit(5 + 11/12, "feet"),
  21825. weight: math.unit(170, "lb"),
  21826. name: "Back",
  21827. image: {
  21828. source: "./media/characters/poojawa-vynar/back.svg",
  21829. extra: 1749/1607,
  21830. bottom: 28/1777
  21831. }
  21832. },
  21833. male: {
  21834. height: math.unit(5 + 11/12, "feet"),
  21835. weight: math.unit(170, "lb"),
  21836. name: "Male",
  21837. image: {
  21838. source: "./media/characters/poojawa-vynar/male.svg",
  21839. extra: 1855/1713,
  21840. bottom: 63/1918
  21841. }
  21842. },
  21843. taur: {
  21844. height: math.unit(5 + 11/12, "feet"),
  21845. weight: math.unit(170, "lb"),
  21846. name: "Taur",
  21847. image: {
  21848. source: "./media/characters/poojawa-vynar/taur.svg",
  21849. extra: 1151/1059,
  21850. bottom: 356/1507
  21851. }
  21852. },
  21853. frontDressed: {
  21854. height: math.unit(5 + 11/12, "feet"),
  21855. weight: math.unit(170, "lb"),
  21856. name: "Front (Dressed)",
  21857. image: {
  21858. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21859. extra: 1735/1585,
  21860. bottom: 96/1831
  21861. }
  21862. },
  21863. backDressed: {
  21864. height: math.unit(5 + 11/12, "feet"),
  21865. weight: math.unit(170, "lb"),
  21866. name: "Back (Dressed)",
  21867. image: {
  21868. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21869. extra: 1749/1607,
  21870. bottom: 28/1777
  21871. }
  21872. },
  21873. maleDressed: {
  21874. height: math.unit(5 + 11/12, "feet"),
  21875. weight: math.unit(170, "lb"),
  21876. name: "Male (Dressed)",
  21877. image: {
  21878. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21879. extra: 1855/1713,
  21880. bottom: 63/1918
  21881. }
  21882. },
  21883. taurDressed: {
  21884. height: math.unit(5 + 11/12, "feet"),
  21885. weight: math.unit(170, "lb"),
  21886. name: "Taur (Dressed)",
  21887. image: {
  21888. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21889. extra: 1151/1059,
  21890. bottom: 356/1507
  21891. }
  21892. },
  21893. maw: {
  21894. height: math.unit(1.46, "feet"),
  21895. name: "Maw",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/maw.svg"
  21898. }
  21899. },
  21900. head: {
  21901. height: math.unit(2.34, "feet"),
  21902. name: "Head",
  21903. image: {
  21904. source: "./media/characters/poojawa-vynar/head.svg"
  21905. }
  21906. },
  21907. paw: {
  21908. height: math.unit(1.61, "feet"),
  21909. name: "Paw",
  21910. image: {
  21911. source: "./media/characters/poojawa-vynar/paw.svg"
  21912. }
  21913. },
  21914. pawToering: {
  21915. height: math.unit(1.72, "feet"),
  21916. name: "Paw (Toering)",
  21917. image: {
  21918. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21919. }
  21920. },
  21921. toering: {
  21922. height: math.unit(2.9, "inches"),
  21923. name: "Toering",
  21924. image: {
  21925. source: "./media/characters/poojawa-vynar/toering.svg"
  21926. }
  21927. },
  21928. shaft: {
  21929. height: math.unit(0.625, "feet"),
  21930. name: "Shaft",
  21931. image: {
  21932. source: "./media/characters/poojawa-vynar/shaft.svg"
  21933. }
  21934. },
  21935. spade: {
  21936. height: math.unit(0.42, "feet"),
  21937. name: "Spade",
  21938. image: {
  21939. source: "./media/characters/poojawa-vynar/spade.svg"
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Shortstack",
  21946. height: math.unit(4, "feet")
  21947. },
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 11 / 12, "feet"),
  21951. default: true
  21952. },
  21953. {
  21954. name: "Tauric",
  21955. height: math.unit(4, "meters")
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(293, "meters"),
  21964. weight: math.unit(70400, "tons"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/violette/front.svg",
  21968. extra: 1227 / 1180,
  21969. bottom: 0.005
  21970. }
  21971. },
  21972. back: {
  21973. height: math.unit(293, "meters"),
  21974. weight: math.unit(70400, "tons"),
  21975. name: "Back",
  21976. image: {
  21977. source: "./media/characters/violette/back.svg",
  21978. extra: 1227 / 1180,
  21979. bottom: 0.005
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Macro",
  21986. height: math.unit(293, "meters"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(1050, "feet"),
  21996. weight: math.unit(200000, "tons"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/alessandra/front.svg",
  22000. extra: 960 / 912,
  22001. bottom: 0.06
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(1050, "feet")
  22009. },
  22010. {
  22011. name: "Macro+",
  22012. height: math.unit(900, "meters"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(5, "feet"),
  22022. weight: math.unit(187, "lb"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/person/front.svg",
  22026. extra: 3087 / 2945,
  22027. bottom: 91 / 3181
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Micro",
  22034. height: math.unit(3, "inches")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(5, "feet"),
  22039. default: true
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(90, "feet")
  22044. },
  22045. {
  22046. name: "Max Size",
  22047. height: math.unit(280, "feet")
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(4.5, "meters"),
  22056. weight: math.unit(3200, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/ty/front.svg",
  22060. extra: 1038 / 960,
  22061. bottom: 31.156 / 1068
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(4.5, "meters"),
  22066. weight: math.unit(3200, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/ty/back.svg",
  22070. extra: 1044 / 966,
  22071. bottom: 7.48 / 1049
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(4.5, "meters"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22085. {
  22086. front: {
  22087. height: math.unit(5 + 4 / 12, "feet"),
  22088. weight: math.unit(115, "lb"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/rocky/front.svg",
  22092. extra: 1012 / 975,
  22093. bottom: 54 / 1066
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(5 + 4 / 12, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22107. {
  22108. upright: {
  22109. height: math.unit(6, "meters"),
  22110. weight: math.unit(4000, "kg"),
  22111. name: "Upright",
  22112. image: {
  22113. source: "./media/characters/ruin/upright.svg",
  22114. extra: 668 / 661,
  22115. bottom: 42 / 799.8396
  22116. }
  22117. },
  22118. },
  22119. [
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(6, "meters"),
  22123. default: true
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22129. {
  22130. front: {
  22131. height: math.unit(5, "feet"),
  22132. weight: math.unit(106, "lb"),
  22133. name: "Front",
  22134. image: {
  22135. source: "./media/characters/robin/front.svg",
  22136. extra: 862 / 799,
  22137. bottom: 42.4 / 914.8856
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(5, "feet"),
  22145. default: true
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22151. {
  22152. side: {
  22153. height: math.unit(3, "feet"),
  22154. weight: math.unit(225, "lb"),
  22155. name: "Side",
  22156. image: {
  22157. source: "./media/characters/saian/side.svg",
  22158. extra: 566 / 356,
  22159. bottom: 79.7 / 643
  22160. }
  22161. },
  22162. maw: {
  22163. height: math.unit(2.85, "feet"),
  22164. name: "Maw",
  22165. image: {
  22166. source: "./media/characters/saian/maw.svg"
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Normal",
  22173. height: math.unit(3, "feet"),
  22174. default: true
  22175. },
  22176. ]
  22177. ))
  22178. characterMakers.push(() => makeCharacter(
  22179. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22180. {
  22181. side: {
  22182. height: math.unit(8, "feet"),
  22183. weight: math.unit(300, "lb"),
  22184. name: "Side",
  22185. image: {
  22186. source: "./media/characters/equus-silvermane/side.svg",
  22187. extra: 2176 / 2050,
  22188. bottom: 65.7 / 2245
  22189. }
  22190. },
  22191. front: {
  22192. height: math.unit(8, "feet"),
  22193. weight: math.unit(300, "lb"),
  22194. name: "Front",
  22195. image: {
  22196. source: "./media/characters/equus-silvermane/front.svg",
  22197. extra: 4633 / 4400,
  22198. bottom: 71.3 / 4706.915
  22199. }
  22200. },
  22201. sideStepping: {
  22202. height: math.unit(8, "feet"),
  22203. weight: math.unit(300, "lb"),
  22204. name: "Side (Stepping)",
  22205. image: {
  22206. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22207. extra: 1968 / 1860,
  22208. bottom: 16.4 / 1989
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(8, "feet")
  22216. },
  22217. {
  22218. name: "Minimacro",
  22219. height: math.unit(75, "feet"),
  22220. default: true
  22221. },
  22222. {
  22223. name: "Macro",
  22224. height: math.unit(150, "feet")
  22225. },
  22226. {
  22227. name: "Macro+",
  22228. height: math.unit(1000, "feet")
  22229. },
  22230. {
  22231. name: "Megamacro",
  22232. height: math.unit(1, "mile")
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22238. {
  22239. side: {
  22240. height: math.unit(20, "feet"),
  22241. weight: math.unit(30000, "kg"),
  22242. name: "Side",
  22243. image: {
  22244. source: "./media/characters/windar/side.svg",
  22245. extra: 1491 / 1248,
  22246. bottom: 82.56 / 1568
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(20, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22260. {
  22261. side: {
  22262. height: math.unit(15.66, "feet"),
  22263. weight: math.unit(150, "lb"),
  22264. name: "Side",
  22265. image: {
  22266. source: "./media/characters/melody/side.svg",
  22267. extra: 1097 / 944,
  22268. bottom: 11.8 / 1109
  22269. }
  22270. },
  22271. sideOutfit: {
  22272. height: math.unit(15.66, "feet"),
  22273. weight: math.unit(150, "lb"),
  22274. name: "Side (Outfit)",
  22275. image: {
  22276. source: "./media/characters/melody/side-outfit.svg",
  22277. extra: 1097 / 944,
  22278. bottom: 11.8 / 1109
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(15.66, "feet"),
  22286. default: true
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(8, "feet"),
  22295. weight: math.unit(325, "lb"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/windera/front.svg",
  22299. extra: 3180 / 2845,
  22300. bottom: 178 / 3365
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(8, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22314. {
  22315. front: {
  22316. height: math.unit(28.75, "feet"),
  22317. weight: math.unit(2000, "kg"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/sonear/front.svg",
  22321. extra: 1041.1 / 964.9,
  22322. bottom: 53.7 / 1096.6
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Normal",
  22329. height: math.unit(28.75, "feet"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22336. {
  22337. side: {
  22338. height: math.unit(25.5, "feet"),
  22339. weight: math.unit(23000, "kg"),
  22340. name: "Side",
  22341. image: {
  22342. source: "./media/characters/kanara/side.svg"
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(25.5, "feet"),
  22350. default: true
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22356. {
  22357. side: {
  22358. height: math.unit(10, "feet"),
  22359. weight: math.unit(1000, "kg"),
  22360. name: "Side",
  22361. image: {
  22362. source: "./media/characters/ereus/side.svg",
  22363. extra: 1157 / 959,
  22364. bottom: 153 / 1312.5
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(10, "feet"),
  22372. default: true
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22378. {
  22379. side: {
  22380. height: math.unit(4.5, "feet"),
  22381. weight: math.unit(500, "lb"),
  22382. name: "Side",
  22383. image: {
  22384. source: "./media/characters/e-ter/side.svg",
  22385. extra: 1550 / 1248,
  22386. bottom: 146 / 1694
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(4.5, "feet"),
  22394. default: true
  22395. },
  22396. ]
  22397. ))
  22398. characterMakers.push(() => makeCharacter(
  22399. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22400. {
  22401. side: {
  22402. height: math.unit(9.7, "feet"),
  22403. weight: math.unit(4000, "kg"),
  22404. name: "Side",
  22405. image: {
  22406. source: "./media/characters/yamie/side.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(9.7, "feet"),
  22414. default: true
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(50, "feet"),
  22423. weight: math.unit(50000, "kg"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/anders/front.svg",
  22427. extra: 570 / 539,
  22428. bottom: 14.7 / 586.7
  22429. }
  22430. },
  22431. },
  22432. [
  22433. {
  22434. name: "Large",
  22435. height: math.unit(50, "feet")
  22436. },
  22437. {
  22438. name: "Macro",
  22439. height: math.unit(2000, "feet"),
  22440. default: true
  22441. },
  22442. {
  22443. name: "Megamacro",
  22444. height: math.unit(12, "miles")
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22450. {
  22451. front: {
  22452. height: math.unit(7 + 2 / 12, "feet"),
  22453. weight: math.unit(300, "lb"),
  22454. name: "Front",
  22455. image: {
  22456. source: "./media/characters/reban/front.svg",
  22457. extra: 1287/1212,
  22458. bottom: 148/1435
  22459. }
  22460. },
  22461. head: {
  22462. height: math.unit(1.95, "feet"),
  22463. name: "Head",
  22464. image: {
  22465. source: "./media/characters/reban/head.svg"
  22466. }
  22467. },
  22468. maw: {
  22469. height: math.unit(0.95, "feet"),
  22470. name: "Maw",
  22471. image: {
  22472. source: "./media/characters/reban/maw.svg"
  22473. }
  22474. },
  22475. foot: {
  22476. height: math.unit(1.65, "feet"),
  22477. name: "Foot",
  22478. image: {
  22479. source: "./media/characters/reban/foot.svg"
  22480. }
  22481. },
  22482. dick: {
  22483. height: math.unit(7 / 5, "feet"),
  22484. name: "Dick",
  22485. image: {
  22486. source: "./media/characters/reban/dick.svg"
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Natural Height",
  22493. height: math.unit(7 + 2 / 12, "feet")
  22494. },
  22495. {
  22496. name: "Macro",
  22497. height: math.unit(500, "feet"),
  22498. default: true
  22499. },
  22500. {
  22501. name: "Canon Height",
  22502. height: math.unit(50, "AU")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(6, "feet"),
  22511. weight: math.unit(150, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/terrance-keayes/front.svg",
  22515. extra: 1.005,
  22516. bottom: 151 / 1615
  22517. }
  22518. },
  22519. side: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Side",
  22523. image: {
  22524. source: "./media/characters/terrance-keayes/side.svg",
  22525. extra: 1.005,
  22526. bottom: 129.4 / 1544
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/terrance-keayes/back.svg",
  22535. extra: 1.005,
  22536. bottom: 58.4 / 1557.3
  22537. }
  22538. },
  22539. dick: {
  22540. height: math.unit(6 * 0.208, "feet"),
  22541. name: "Dick",
  22542. image: {
  22543. source: "./media/characters/terrance-keayes/dick.svg"
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Canon Height",
  22550. height: math.unit(35, "miles"),
  22551. default: true
  22552. },
  22553. ]
  22554. ))
  22555. characterMakers.push(() => makeCharacter(
  22556. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22557. {
  22558. front: {
  22559. height: math.unit(6, "feet"),
  22560. weight: math.unit(150, "lb"),
  22561. name: "Front",
  22562. image: {
  22563. source: "./media/characters/ofelia/front.svg",
  22564. extra: 1130/1117,
  22565. bottom: 91/1221
  22566. }
  22567. },
  22568. back: {
  22569. height: math.unit(6, "feet"),
  22570. weight: math.unit(150, "lb"),
  22571. name: "Back",
  22572. image: {
  22573. source: "./media/characters/ofelia/back.svg",
  22574. extra: 1172/1159,
  22575. bottom: 28/1200
  22576. }
  22577. },
  22578. maw: {
  22579. height: math.unit(1, "feet"),
  22580. name: "Maw",
  22581. image: {
  22582. source: "./media/characters/ofelia/maw.svg"
  22583. }
  22584. },
  22585. foot: {
  22586. height: math.unit(1.949, "feet"),
  22587. name: "Foot",
  22588. image: {
  22589. source: "./media/characters/ofelia/foot.svg"
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Canon Height",
  22596. height: math.unit(2000, "miles"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22603. {
  22604. front: {
  22605. height: math.unit(6, "feet"),
  22606. weight: math.unit(150, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/samuel/front.svg",
  22610. extra: 265 / 258,
  22611. bottom: 2 / 266.1566
  22612. }
  22613. },
  22614. },
  22615. [
  22616. {
  22617. name: "Macro",
  22618. height: math.unit(100, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Full Size",
  22623. height: math.unit(1000, "miles")
  22624. },
  22625. ]
  22626. ))
  22627. characterMakers.push(() => makeCharacter(
  22628. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22629. {
  22630. front: {
  22631. height: math.unit(6, "feet"),
  22632. weight: math.unit(300, "lb"),
  22633. name: "Front",
  22634. image: {
  22635. source: "./media/characters/beishir-kiel/front.svg",
  22636. extra: 569 / 547,
  22637. bottom: 41.9 / 609
  22638. }
  22639. },
  22640. maw: {
  22641. height: math.unit(6 * 0.202, "feet"),
  22642. name: "Maw",
  22643. image: {
  22644. source: "./media/characters/beishir-kiel/maw.svg"
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(300, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(5 + 7/12, "feet"),
  22661. weight: math.unit(120, "lb"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/logan-grey/front.svg",
  22665. extra: 1836/1738,
  22666. bottom: 108/1944
  22667. }
  22668. },
  22669. back: {
  22670. height: math.unit(5 + 7/12, "feet"),
  22671. weight: math.unit(120, "lb"),
  22672. name: "Back",
  22673. image: {
  22674. source: "./media/characters/logan-grey/back.svg",
  22675. extra: 1880/1794,
  22676. bottom: 24/1904
  22677. }
  22678. },
  22679. frontSfw: {
  22680. height: math.unit(5 + 7/12, "feet"),
  22681. weight: math.unit(120, "lb"),
  22682. name: "Front (SFW)",
  22683. image: {
  22684. source: "./media/characters/logan-grey/front-sfw.svg",
  22685. extra: 1836/1738,
  22686. bottom: 108/1944
  22687. }
  22688. },
  22689. backSfw: {
  22690. height: math.unit(5 + 7/12, "feet"),
  22691. weight: math.unit(120, "lb"),
  22692. name: "Back (SFW)",
  22693. image: {
  22694. source: "./media/characters/logan-grey/back-sfw.svg",
  22695. extra: 1880/1794,
  22696. bottom: 24/1904
  22697. }
  22698. },
  22699. hands: {
  22700. height: math.unit(0.84, "feet"),
  22701. name: "Hands",
  22702. image: {
  22703. source: "./media/characters/logan-grey/hands.svg"
  22704. }
  22705. },
  22706. paws: {
  22707. height: math.unit(0.72, "feet"),
  22708. name: "Paws",
  22709. image: {
  22710. source: "./media/characters/logan-grey/paws.svg"
  22711. }
  22712. },
  22713. cock: {
  22714. height: math.unit(1.45, "feet"),
  22715. name: "Cock",
  22716. image: {
  22717. source: "./media/characters/logan-grey/cock.svg"
  22718. }
  22719. },
  22720. cockAlt: {
  22721. height: math.unit(1.437, "feet"),
  22722. name: "Cock (alt)",
  22723. image: {
  22724. source: "./media/characters/logan-grey/cock-alt.svg"
  22725. }
  22726. },
  22727. },
  22728. [
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(5 + 8 / 12, "feet")
  22732. },
  22733. {
  22734. name: "The 500 Foot Femboy",
  22735. height: math.unit(500, "feet"),
  22736. default: true
  22737. },
  22738. {
  22739. name: "Megmacro",
  22740. height: math.unit(20, "miles")
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(8 + 2 / 12, "feet"),
  22749. weight: math.unit(275, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/draganta/front.svg",
  22753. extra: 1177 / 1135,
  22754. bottom: 33.46 / 1212.1
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(8 + 6 / 12, "feet"),
  22762. default: true
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(150, "feet")
  22767. },
  22768. {
  22769. name: "Megamacro",
  22770. height: math.unit(1000, "miles")
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(1.72, "m"),
  22779. weight: math.unit(80, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/voski/front.svg",
  22783. extra: 2076.22 / 2022.4,
  22784. bottom: 102.7 / 2177.3866
  22785. }
  22786. },
  22787. frontNsfw: {
  22788. height: math.unit(1.72, "m"),
  22789. weight: math.unit(80, "lb"),
  22790. name: "Front (NSFW)",
  22791. image: {
  22792. source: "./media/characters/voski/front-nsfw.svg",
  22793. extra: 2076.22 / 2022.4,
  22794. bottom: 102.7 / 2177.3866
  22795. }
  22796. },
  22797. back: {
  22798. height: math.unit(1.72, "m"),
  22799. weight: math.unit(80, "lb"),
  22800. name: "Back",
  22801. image: {
  22802. source: "./media/characters/voski/back.svg",
  22803. extra: 2104 / 2051,
  22804. bottom: 10.45 / 2113.63
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(1.72, "m")
  22812. },
  22813. {
  22814. name: "Macro",
  22815. height: math.unit(55, "m"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro+",
  22820. height: math.unit(300, "m")
  22821. },
  22822. {
  22823. name: "Macro++",
  22824. height: math.unit(700, "m")
  22825. },
  22826. {
  22827. name: "Macro+++",
  22828. height: math.unit(4500, "m")
  22829. },
  22830. {
  22831. name: "Macro++++",
  22832. height: math.unit(45, "km")
  22833. },
  22834. {
  22835. name: "Macro+++++",
  22836. height: math.unit(1220, "km")
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(2.3, "m"),
  22845. weight: math.unit(304, "kg"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/icowom-lee/front.svg",
  22849. extra: 985 / 955,
  22850. bottom: 25.4 / 1012
  22851. }
  22852. },
  22853. fronttentacles: {
  22854. height: math.unit(2.3, "m"),
  22855. weight: math.unit(304, "kg"),
  22856. name: "Front-tentacles",
  22857. image: {
  22858. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22859. extra: 985 / 955,
  22860. bottom: 25.4 / 1012
  22861. }
  22862. },
  22863. back: {
  22864. height: math.unit(2.3, "m"),
  22865. weight: math.unit(304, "kg"),
  22866. name: "Back",
  22867. image: {
  22868. source: "./media/characters/icowom-lee/back.svg",
  22869. extra: 975 / 954,
  22870. bottom: 9.5 / 985
  22871. }
  22872. },
  22873. backtentacles: {
  22874. height: math.unit(2.3, "m"),
  22875. weight: math.unit(304, "kg"),
  22876. name: "Back-tentacles",
  22877. image: {
  22878. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22879. extra: 975 / 954,
  22880. bottom: 9.5 / 985
  22881. }
  22882. },
  22883. frontDressed: {
  22884. height: math.unit(2.3, "m"),
  22885. weight: math.unit(304, "kg"),
  22886. name: "Front (Dressed)",
  22887. image: {
  22888. source: "./media/characters/icowom-lee/front-dressed.svg",
  22889. extra: 3076 / 2933,
  22890. bottom: 51.4 / 3125.1889
  22891. }
  22892. },
  22893. rump: {
  22894. height: math.unit(0.776, "meters"),
  22895. name: "Rump",
  22896. image: {
  22897. source: "./media/characters/icowom-lee/rump.svg"
  22898. }
  22899. },
  22900. genitals: {
  22901. height: math.unit(0.78, "meters"),
  22902. name: "Genitals",
  22903. image: {
  22904. source: "./media/characters/icowom-lee/genitals.svg"
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(2.3, "meters"),
  22912. default: true
  22913. },
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(94, "meters"),
  22917. default: true
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22923. {
  22924. front: {
  22925. height: math.unit(22, "meters"),
  22926. weight: math.unit(21000, "kg"),
  22927. name: "Front",
  22928. image: {
  22929. source: "./media/characters/shock-diamond/front.svg",
  22930. extra: 2204 / 2053,
  22931. bottom: 65 / 2239.47
  22932. }
  22933. },
  22934. frontNude: {
  22935. height: math.unit(22, "meters"),
  22936. weight: math.unit(21000, "kg"),
  22937. name: "Front (Nude)",
  22938. image: {
  22939. source: "./media/characters/shock-diamond/front-nude.svg",
  22940. extra: 2514 / 2285,
  22941. bottom: 13 / 2527.56
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(3, "meters")
  22949. },
  22950. {
  22951. name: "Macro",
  22952. height: math.unit(22, "meters"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(5 + 4 / 12, "feet"),
  22962. weight: math.unit(120, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/rory/front.svg",
  22966. extra: 1318/1241,
  22967. bottom: 42/1360
  22968. }
  22969. },
  22970. back: {
  22971. height: math.unit(5 + 4 / 12, "feet"),
  22972. weight: math.unit(120, "lb"),
  22973. name: "Back",
  22974. image: {
  22975. source: "./media/characters/rory/back.svg",
  22976. extra: 1318/1241,
  22977. bottom: 42/1360
  22978. }
  22979. },
  22980. butt: {
  22981. height: math.unit(1.74, "feet"),
  22982. name: "Butt",
  22983. image: {
  22984. source: "./media/characters/rory/butt.svg"
  22985. }
  22986. },
  22987. dick: {
  22988. height: math.unit(1.02, "feet"),
  22989. name: "Dick",
  22990. image: {
  22991. source: "./media/characters/rory/dick.svg"
  22992. }
  22993. },
  22994. paws: {
  22995. height: math.unit(1, "feet"),
  22996. name: "Paws",
  22997. image: {
  22998. source: "./media/characters/rory/paws.svg"
  22999. }
  23000. },
  23001. frontAlt: {
  23002. height: math.unit(5 + 4 / 12, "feet"),
  23003. weight: math.unit(120, "lb"),
  23004. name: "Front (Alt)",
  23005. image: {
  23006. source: "./media/characters/rory/front-alt.svg",
  23007. extra: 589 / 556,
  23008. bottom: 45.7 / 635.76
  23009. }
  23010. },
  23011. frontAltNude: {
  23012. height: math.unit(5 + 4 / 12, "feet"),
  23013. weight: math.unit(120, "lb"),
  23014. name: "Front (Alt, Nude)",
  23015. image: {
  23016. source: "./media/characters/rory/front-alt-nude.svg",
  23017. extra: 589 / 556,
  23018. bottom: 45.7 / 635.76
  23019. }
  23020. },
  23021. side: {
  23022. height: math.unit(5 + 4 / 12, "feet"),
  23023. weight: math.unit(120, "lb"),
  23024. name: "Side",
  23025. image: {
  23026. source: "./media/characters/rory/side.svg",
  23027. extra: 597 / 564,
  23028. bottom: 55 / 653
  23029. }
  23030. },
  23031. backAlt: {
  23032. height: math.unit(5 + 4 / 12, "feet"),
  23033. weight: math.unit(120, "lb"),
  23034. name: "Back (Alt)",
  23035. image: {
  23036. source: "./media/characters/rory/back-alt.svg",
  23037. extra: 620 / 585,
  23038. bottom: 8.86 / 630.43
  23039. }
  23040. },
  23041. dickAlt: {
  23042. height: math.unit(0.86, "feet"),
  23043. name: "Dick (Alt)",
  23044. image: {
  23045. source: "./media/characters/rory/dick-alt.svg"
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(5 + 4 / 12, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Macro",
  23057. height: math.unit(100, "feet")
  23058. },
  23059. {
  23060. name: "Macro+",
  23061. height: math.unit(140, "feet")
  23062. },
  23063. {
  23064. name: "Macro++",
  23065. height: math.unit(300, "feet")
  23066. },
  23067. ]
  23068. ))
  23069. characterMakers.push(() => makeCharacter(
  23070. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23071. {
  23072. front: {
  23073. height: math.unit(5 + 9 / 12, "feet"),
  23074. weight: math.unit(190, "lb"),
  23075. name: "Front",
  23076. image: {
  23077. source: "./media/characters/sprisk/front.svg",
  23078. extra: 1225 / 1180,
  23079. bottom: 42.7 / 1266.4
  23080. }
  23081. },
  23082. frontNsfw: {
  23083. height: math.unit(5 + 9 / 12, "feet"),
  23084. weight: math.unit(190, "lb"),
  23085. name: "Front (NSFW)",
  23086. image: {
  23087. source: "./media/characters/sprisk/front-nsfw.svg",
  23088. extra: 1225 / 1180,
  23089. bottom: 42.7 / 1266.4
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(5 + 9 / 12, "feet"),
  23094. weight: math.unit(190, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/sprisk/back.svg",
  23098. extra: 1247 / 1200,
  23099. bottom: 5.6 / 1253.04
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Tiny",
  23106. height: math.unit(2, "inches")
  23107. },
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(5 + 9 / 12, "feet"),
  23111. default: true
  23112. },
  23113. {
  23114. name: "Mini Macro",
  23115. height: math.unit(18, "feet")
  23116. },
  23117. {
  23118. name: "Macro",
  23119. height: math.unit(100, "feet")
  23120. },
  23121. {
  23122. name: "MACRO",
  23123. height: math.unit(50, "miles")
  23124. },
  23125. {
  23126. name: "M A C R O",
  23127. height: math.unit(300, "miles")
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23133. {
  23134. side: {
  23135. height: math.unit(15.6, "meters"),
  23136. weight: math.unit(700000, "kg"),
  23137. name: "Side",
  23138. image: {
  23139. source: "./media/characters/bunsen/side.svg",
  23140. extra: 1644 / 358
  23141. }
  23142. },
  23143. foot: {
  23144. height: math.unit(1.611 * 1644 / 358, "meter"),
  23145. name: "Foot",
  23146. image: {
  23147. source: "./media/characters/bunsen/foot.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Small",
  23154. height: math.unit(10, "feet")
  23155. },
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(15.6, "meters"),
  23159. default: true
  23160. },
  23161. ]
  23162. ))
  23163. characterMakers.push(() => makeCharacter(
  23164. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23165. {
  23166. front: {
  23167. height: math.unit(4 + 11 / 12, "feet"),
  23168. weight: math.unit(140, "lb"),
  23169. name: "Front",
  23170. image: {
  23171. source: "./media/characters/sesh/front.svg",
  23172. extra: 3420 / 3231,
  23173. bottom: 72 / 3949.5
  23174. }
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(4 + 11 / 12, "feet")
  23181. },
  23182. {
  23183. name: "Grown",
  23184. height: math.unit(15, "feet"),
  23185. default: true
  23186. },
  23187. {
  23188. name: "Macro",
  23189. height: math.unit(1500, "feet")
  23190. },
  23191. {
  23192. name: "Megamacro",
  23193. height: math.unit(30, "miles")
  23194. },
  23195. {
  23196. name: "Continental",
  23197. height: math.unit(3000, "miles")
  23198. },
  23199. {
  23200. name: "Gravity Mass",
  23201. height: math.unit(300000, "miles")
  23202. },
  23203. {
  23204. name: "Planet Buster",
  23205. height: math.unit(30000000, "miles")
  23206. },
  23207. {
  23208. name: "Big",
  23209. height: math.unit(3000000000, "miles")
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(9, "feet"),
  23218. weight: math.unit(350, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/pepper/front.svg",
  23222. extra: 1448 / 1312,
  23223. bottom: 9.4 / 1457.88
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(9, "feet"),
  23228. weight: math.unit(350, "lb"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/pepper/back.svg",
  23232. extra: 1423 / 1300,
  23233. bottom: 4.6 / 1429
  23234. }
  23235. },
  23236. maw: {
  23237. height: math.unit(0.932, "feet"),
  23238. name: "Maw",
  23239. image: {
  23240. source: "./media/characters/pepper/maw.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(9, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(6, "feet"),
  23257. weight: math.unit(150, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/maelstrom/front.svg",
  23261. extra: 2100 / 1883,
  23262. bottom: 94 / 2196.7
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Less Kaiju",
  23269. height: math.unit(200, "feet")
  23270. },
  23271. {
  23272. name: "Kaiju",
  23273. height: math.unit(400, "feet"),
  23274. default: true
  23275. },
  23276. {
  23277. name: "Kaiju-er",
  23278. height: math.unit(600, "feet")
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(6 + 5 / 12, "feet"),
  23287. weight: math.unit(180, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/lexir/front.svg",
  23291. extra: 180 / 172,
  23292. bottom: 12 / 192
  23293. }
  23294. },
  23295. back: {
  23296. height: math.unit(6 + 5 / 12, "feet"),
  23297. weight: math.unit(180, "lb"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/lexir/back.svg",
  23301. extra: 183.84 / 175.5,
  23302. bottom: 3.1 / 187
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Very Smal",
  23309. height: math.unit(1, "nm")
  23310. },
  23311. {
  23312. name: "Normal",
  23313. height: math.unit(6 + 5 / 12, "feet"),
  23314. default: true
  23315. },
  23316. {
  23317. name: "Macro",
  23318. height: math.unit(1, "mile")
  23319. },
  23320. {
  23321. name: "Megamacro",
  23322. height: math.unit(50, "miles")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(1.5, "meters"),
  23331. weight: math.unit(100, "lb"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/maksio/front.svg",
  23335. extra: 1549 / 1531,
  23336. bottom: 123.7 / 1674.5429
  23337. }
  23338. },
  23339. back: {
  23340. height: math.unit(1.5, "meters"),
  23341. weight: math.unit(100, "lb"),
  23342. name: "Back",
  23343. image: {
  23344. source: "./media/characters/maksio/back.svg",
  23345. extra: 1541 / 1509,
  23346. bottom: 97 / 1639
  23347. }
  23348. },
  23349. hand: {
  23350. height: math.unit(0.621, "feet"),
  23351. name: "Hand",
  23352. image: {
  23353. source: "./media/characters/maksio/hand.svg"
  23354. }
  23355. },
  23356. foot: {
  23357. height: math.unit(1.611, "feet"),
  23358. name: "Foot",
  23359. image: {
  23360. source: "./media/characters/maksio/foot.svg"
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Shrunken",
  23367. height: math.unit(10, "cm")
  23368. },
  23369. {
  23370. name: "Normal",
  23371. height: math.unit(150, "cm"),
  23372. default: true
  23373. },
  23374. ]
  23375. ))
  23376. characterMakers.push(() => makeCharacter(
  23377. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23378. {
  23379. front: {
  23380. height: math.unit(100, "feet"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/erza-bear/front.svg",
  23384. extra: 2449 / 2390,
  23385. bottom: 46 / 2494
  23386. }
  23387. },
  23388. back: {
  23389. height: math.unit(100, "feet"),
  23390. name: "Back",
  23391. image: {
  23392. source: "./media/characters/erza-bear/back.svg",
  23393. extra: 2489 / 2430,
  23394. bottom: 85.4 / 2480
  23395. }
  23396. },
  23397. tail: {
  23398. height: math.unit(42, "feet"),
  23399. name: "Tail",
  23400. image: {
  23401. source: "./media/characters/erza-bear/tail.svg"
  23402. }
  23403. },
  23404. tongue: {
  23405. height: math.unit(8, "feet"),
  23406. name: "Tongue",
  23407. image: {
  23408. source: "./media/characters/erza-bear/tongue.svg"
  23409. }
  23410. },
  23411. dick: {
  23412. height: math.unit(10.5, "feet"),
  23413. name: "Dick",
  23414. image: {
  23415. source: "./media/characters/erza-bear/dick.svg"
  23416. }
  23417. },
  23418. dickVertical: {
  23419. height: math.unit(16.9, "feet"),
  23420. name: "Dick (Vertical)",
  23421. image: {
  23422. source: "./media/characters/erza-bear/dick-vertical.svg"
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Macro",
  23429. height: math.unit(100, "feet"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(172, "cm"),
  23439. weight: math.unit(73, "kg"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/violet-flor/front.svg",
  23443. extra: 1530 / 1442,
  23444. bottom: 61.9 / 1588.8
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(180, "cm"),
  23449. weight: math.unit(73, "kg"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/violet-flor/back.svg",
  23453. extra: 1692 / 1630,
  23454. bottom: 20 / 1712
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(172, "cm"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(6, "feet"),
  23471. weight: math.unit(220, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/lynn-rhea/front.svg",
  23475. extra: 310 / 273
  23476. }
  23477. },
  23478. back: {
  23479. height: math.unit(6, "feet"),
  23480. weight: math.unit(220, "lb"),
  23481. name: "Back",
  23482. image: {
  23483. source: "./media/characters/lynn-rhea/back.svg",
  23484. extra: 310 / 273
  23485. }
  23486. },
  23487. dicks: {
  23488. height: math.unit(0.9, "feet"),
  23489. name: "Dicks",
  23490. image: {
  23491. source: "./media/characters/lynn-rhea/dicks.svg"
  23492. }
  23493. },
  23494. slit: {
  23495. height: math.unit(0.4, "feet"),
  23496. name: "Slit",
  23497. image: {
  23498. source: "./media/characters/lynn-rhea/slit.svg"
  23499. }
  23500. },
  23501. },
  23502. [
  23503. {
  23504. name: "Micro",
  23505. height: math.unit(1, "inch")
  23506. },
  23507. {
  23508. name: "Macro",
  23509. height: math.unit(60, "feet"),
  23510. default: true
  23511. },
  23512. {
  23513. name: "Megamacro",
  23514. height: math.unit(2, "miles")
  23515. },
  23516. {
  23517. name: "Gigamacro",
  23518. height: math.unit(3, "earths")
  23519. },
  23520. {
  23521. name: "Galactic",
  23522. height: math.unit(0.8, "galaxies")
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23528. {
  23529. front: {
  23530. height: math.unit(1600, "feet"),
  23531. weight: math.unit(85758785169, "kg"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/valathos/front.svg",
  23535. extra: 1451 / 1339
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Macro",
  23542. height: math.unit(1600, "feet"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(7 + 5 / 12, "feet"),
  23552. weight: math.unit(300, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/azula/front.svg",
  23556. extra: 3208 / 2880,
  23557. bottom: 80.2 / 3277
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(7 + 5 / 12, "feet"),
  23562. weight: math.unit(300, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/azula/back.svg",
  23566. extra: 3169 / 2822,
  23567. bottom: 150.6 / 3321
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(7 + 5 / 12, "feet"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Big",
  23579. height: math.unit(20, "feet")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(5 + 1 / 12, "feet"),
  23588. weight: math.unit(110, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/rupert/front.svg",
  23592. extra: 1549 / 1495,
  23593. bottom: 54.2 / 1604.4
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(5 + 1 / 12, "feet"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23607. {
  23608. front: {
  23609. height: math.unit(8 + 4 / 12, "feet"),
  23610. weight: math.unit(350, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/sheera-castellar/front.svg",
  23614. extra: 1957 / 1894,
  23615. bottom: 26.97 / 1975.017
  23616. }
  23617. },
  23618. side: {
  23619. height: math.unit(8 + 4 / 12, "feet"),
  23620. weight: math.unit(350, "lb"),
  23621. name: "Side",
  23622. image: {
  23623. source: "./media/characters/sheera-castellar/side.svg",
  23624. extra: 1957 / 1894
  23625. }
  23626. },
  23627. back: {
  23628. height: math.unit(8 + 4 / 12, "feet"),
  23629. weight: math.unit(350, "lb"),
  23630. name: "Back",
  23631. image: {
  23632. source: "./media/characters/sheera-castellar/back.svg",
  23633. extra: 1957 / 1894
  23634. }
  23635. },
  23636. angled: {
  23637. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23638. weight: math.unit(350, "lb"),
  23639. name: "Angled",
  23640. image: {
  23641. source: "./media/characters/sheera-castellar/angled.svg",
  23642. extra: 1807 / 1707,
  23643. bottom: 68 / 1875
  23644. }
  23645. },
  23646. genitals: {
  23647. height: math.unit(2.2, "feet"),
  23648. name: "Genitals",
  23649. image: {
  23650. source: "./media/characters/sheera-castellar/genitals.svg"
  23651. }
  23652. },
  23653. taur: {
  23654. height: math.unit(10 + 6/12, "feet"),
  23655. name: "Taur",
  23656. image: {
  23657. source: "./media/characters/sheera-castellar/taur.svg",
  23658. extra: 2017/1909,
  23659. bottom: 185/2202
  23660. }
  23661. },
  23662. },
  23663. [
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(8 + 4 / 12, "feet")
  23667. },
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(150, "feet"),
  23671. default: true
  23672. },
  23673. {
  23674. name: "Macro+",
  23675. height: math.unit(800, "feet")
  23676. },
  23677. ]
  23678. ))
  23679. characterMakers.push(() => makeCharacter(
  23680. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23681. {
  23682. front: {
  23683. height: math.unit(6, "feet"),
  23684. weight: math.unit(150, "lb"),
  23685. name: "Front",
  23686. image: {
  23687. source: "./media/characters/jaipur/front.svg",
  23688. extra: 3860 / 3731,
  23689. bottom: 287 / 4140
  23690. }
  23691. },
  23692. back: {
  23693. height: math.unit(6, "feet"),
  23694. weight: math.unit(150, "lb"),
  23695. name: "Back",
  23696. image: {
  23697. source: "./media/characters/jaipur/back.svg",
  23698. extra: 4060 / 3930,
  23699. bottom: 151 / 4200
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(1.85, "meters"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Macro",
  23711. height: math.unit(150, "meters")
  23712. },
  23713. {
  23714. name: "Macro+",
  23715. height: math.unit(0.5, "miles")
  23716. },
  23717. {
  23718. name: "Macro++",
  23719. height: math.unit(2.5, "miles")
  23720. },
  23721. {
  23722. name: "Macro+++",
  23723. height: math.unit(12, "miles")
  23724. },
  23725. {
  23726. name: "Macro++++",
  23727. height: math.unit(120, "miles")
  23728. },
  23729. {
  23730. name: "Macro+++++",
  23731. height: math.unit(1200, "miles")
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23737. {
  23738. front: {
  23739. height: math.unit(6, "feet"),
  23740. weight: math.unit(150, "lb"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/sheila-wolf/front.svg",
  23744. extra: 1931 / 1808,
  23745. bottom: 29.5 / 1960
  23746. }
  23747. },
  23748. dick: {
  23749. height: math.unit(1.464, "feet"),
  23750. name: "Dick",
  23751. image: {
  23752. source: "./media/characters/sheila-wolf/dick.svg"
  23753. }
  23754. },
  23755. muzzle: {
  23756. height: math.unit(0.513, "feet"),
  23757. name: "Muzzle",
  23758. image: {
  23759. source: "./media/characters/sheila-wolf/muzzle.svg"
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Macro",
  23766. height: math.unit(70, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(32, "meters"),
  23776. weight: math.unit(300000, "kg"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/almor/front.svg",
  23780. extra: 1408 / 1322,
  23781. bottom: 94.6 / 1506.5
  23782. }
  23783. },
  23784. },
  23785. [
  23786. {
  23787. name: "Macro",
  23788. height: math.unit(32, "meters"),
  23789. default: true
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(7, "feet"),
  23798. weight: math.unit(200, "lb"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/silver/front.svg",
  23802. extra: 472.1 / 450.5,
  23803. bottom: 26.5 / 499.424
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(7, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(800, "feet")
  23816. },
  23817. {
  23818. name: "Megamacro",
  23819. height: math.unit(250, "miles")
  23820. },
  23821. ]
  23822. ))
  23823. characterMakers.push(() => makeCharacter(
  23824. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23825. {
  23826. front: {
  23827. height: math.unit(6, "feet"),
  23828. weight: math.unit(150, "lb"),
  23829. name: "Front",
  23830. image: {
  23831. source: "./media/characters/pliskin/front.svg",
  23832. extra: 1469 / 1359,
  23833. bottom: 70 / 1540
  23834. }
  23835. },
  23836. },
  23837. [
  23838. {
  23839. name: "Micro",
  23840. height: math.unit(3, "inches")
  23841. },
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(5 + 11 / 12, "feet"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Macro",
  23849. height: math.unit(120, "feet")
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(6, "feet"),
  23858. weight: math.unit(150, "lb"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/sammy/front.svg",
  23862. extra: 1193 / 1089,
  23863. bottom: 30.5 / 1226
  23864. }
  23865. },
  23866. },
  23867. [
  23868. {
  23869. name: "Macro",
  23870. height: math.unit(1700, "feet"),
  23871. default: true
  23872. },
  23873. {
  23874. name: "Examacro",
  23875. height: math.unit(2.5e9, "lightyears")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(21, "meters"),
  23884. weight: math.unit(12, "tonnes"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/kuru/front.svg",
  23888. extra: 4301 / 3785,
  23889. bottom: 371.3 / 4691
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Macro",
  23896. height: math.unit(21, "meters"),
  23897. default: true
  23898. },
  23899. ]
  23900. ))
  23901. characterMakers.push(() => makeCharacter(
  23902. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23903. {
  23904. front: {
  23905. height: math.unit(23, "meters"),
  23906. weight: math.unit(12.2, "tonnes"),
  23907. name: "Front",
  23908. image: {
  23909. source: "./media/characters/rakka/front.svg",
  23910. extra: 4670 / 4169,
  23911. bottom: 301 / 4968.7
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(23, "meters"),
  23919. default: true
  23920. },
  23921. ]
  23922. ))
  23923. characterMakers.push(() => makeCharacter(
  23924. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23925. {
  23926. front: {
  23927. height: math.unit(6, "feet"),
  23928. weight: math.unit(150, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/rhys-feline/front.svg",
  23932. extra: 2488 / 2308,
  23933. bottom: 35.67 / 2519.19
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Really Small",
  23940. height: math.unit(1, "nm")
  23941. },
  23942. {
  23943. name: "Micro",
  23944. height: math.unit(4, "inches")
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(4 + 10 / 12, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "Macro",
  23953. height: math.unit(100, "feet")
  23954. },
  23955. {
  23956. name: "Megamacto",
  23957. height: math.unit(50, "miles")
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23963. {
  23964. side: {
  23965. height: math.unit(30, "feet"),
  23966. weight: math.unit(35000, "kg"),
  23967. name: "Side",
  23968. image: {
  23969. source: "./media/characters/alydar/side.svg",
  23970. extra: 234 / 222,
  23971. bottom: 6.5 / 241
  23972. }
  23973. },
  23974. front: {
  23975. height: math.unit(30, "feet"),
  23976. weight: math.unit(35000, "kg"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/alydar/front.svg",
  23980. extra: 223.37 / 210.2,
  23981. bottom: 22.3 / 246.76
  23982. }
  23983. },
  23984. top: {
  23985. height: math.unit(64.54, "feet"),
  23986. weight: math.unit(35000, "kg"),
  23987. name: "Top",
  23988. image: {
  23989. source: "./media/characters/alydar/top.svg"
  23990. }
  23991. },
  23992. anthro: {
  23993. height: math.unit(30, "feet"),
  23994. weight: math.unit(9000, "kg"),
  23995. name: "Anthro",
  23996. image: {
  23997. source: "./media/characters/alydar/anthro.svg",
  23998. extra: 432 / 421,
  23999. bottom: 7.18 / 440
  24000. }
  24001. },
  24002. maw: {
  24003. height: math.unit(11.693, "feet"),
  24004. name: "Maw",
  24005. image: {
  24006. source: "./media/characters/alydar/maw.svg"
  24007. }
  24008. },
  24009. head: {
  24010. height: math.unit(11.693, "feet"),
  24011. name: "Head",
  24012. image: {
  24013. source: "./media/characters/alydar/head.svg"
  24014. }
  24015. },
  24016. headAlt: {
  24017. height: math.unit(12.861, "feet"),
  24018. name: "Head (Alt)",
  24019. image: {
  24020. source: "./media/characters/alydar/head-alt.svg"
  24021. }
  24022. },
  24023. wing: {
  24024. height: math.unit(20.712, "feet"),
  24025. name: "Wing",
  24026. image: {
  24027. source: "./media/characters/alydar/wing.svg"
  24028. }
  24029. },
  24030. wingFeather: {
  24031. height: math.unit(9.662, "feet"),
  24032. name: "Wing Feather",
  24033. image: {
  24034. source: "./media/characters/alydar/wing-feather.svg"
  24035. }
  24036. },
  24037. countourFeather: {
  24038. height: math.unit(4.154, "feet"),
  24039. name: "Contour Feather",
  24040. image: {
  24041. source: "./media/characters/alydar/contour-feather.svg"
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Diplomatic",
  24048. height: math.unit(13, "feet"),
  24049. default: true
  24050. },
  24051. {
  24052. name: "Small",
  24053. height: math.unit(30, "feet")
  24054. },
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(95, "feet"),
  24058. default: true
  24059. },
  24060. {
  24061. name: "Large",
  24062. height: math.unit(285, "feet")
  24063. },
  24064. {
  24065. name: "Incomprehensible",
  24066. height: math.unit(450, "megameters")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24072. {
  24073. side: {
  24074. height: math.unit(11, "feet"),
  24075. weight: math.unit(1750, "kg"),
  24076. name: "Side",
  24077. image: {
  24078. source: "./media/characters/selicia/side.svg",
  24079. extra: 440 / 396,
  24080. bottom: 24.8 / 465.979
  24081. }
  24082. },
  24083. maw: {
  24084. height: math.unit(4.665, "feet"),
  24085. name: "Maw",
  24086. image: {
  24087. source: "./media/characters/selicia/maw.svg"
  24088. }
  24089. },
  24090. },
  24091. [
  24092. {
  24093. name: "Normal",
  24094. height: math.unit(11, "feet"),
  24095. default: true
  24096. },
  24097. ]
  24098. ))
  24099. characterMakers.push(() => makeCharacter(
  24100. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24101. {
  24102. side: {
  24103. height: math.unit(2 + 6 / 12, "feet"),
  24104. weight: math.unit(30, "lb"),
  24105. name: "Side",
  24106. image: {
  24107. source: "./media/characters/layla/side.svg",
  24108. extra: 244 / 188,
  24109. bottom: 18.2 / 262.1
  24110. }
  24111. },
  24112. back: {
  24113. height: math.unit(2 + 6 / 12, "feet"),
  24114. weight: math.unit(30, "lb"),
  24115. name: "Back",
  24116. image: {
  24117. source: "./media/characters/layla/back.svg",
  24118. extra: 308 / 241.5,
  24119. bottom: 8.9 / 316.8
  24120. }
  24121. },
  24122. cumming: {
  24123. height: math.unit(2 + 6 / 12, "feet"),
  24124. weight: math.unit(30, "lb"),
  24125. name: "Cumming",
  24126. image: {
  24127. source: "./media/characters/layla/cumming.svg",
  24128. extra: 342 / 279,
  24129. bottom: 595 / 938
  24130. }
  24131. },
  24132. dickFlaccid: {
  24133. height: math.unit(2.595, "feet"),
  24134. name: "Flaccid Genitals",
  24135. image: {
  24136. source: "./media/characters/layla/dick-flaccid.svg"
  24137. }
  24138. },
  24139. dickErect: {
  24140. height: math.unit(2.359, "feet"),
  24141. name: "Erect Genitals",
  24142. image: {
  24143. source: "./media/characters/layla/dick-erect.svg"
  24144. }
  24145. },
  24146. dragon: {
  24147. height: math.unit(40, "feet"),
  24148. name: "Dragon",
  24149. image: {
  24150. source: "./media/characters/layla/dragon.svg",
  24151. extra: 610/535,
  24152. bottom: 367/977
  24153. }
  24154. },
  24155. taur: {
  24156. height: math.unit(30, "feet"),
  24157. name: "Taur",
  24158. image: {
  24159. source: "./media/characters/layla/taur.svg",
  24160. extra: 1268/1199,
  24161. bottom: 112/1380
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Micro",
  24168. height: math.unit(1, "inch")
  24169. },
  24170. {
  24171. name: "Small",
  24172. height: math.unit(1, "foot")
  24173. },
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(2 + 6 / 12, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(200, "feet")
  24182. },
  24183. {
  24184. name: "Megamacro",
  24185. height: math.unit(1000, "miles")
  24186. },
  24187. {
  24188. name: "Planetary",
  24189. height: math.unit(8000, "miles")
  24190. },
  24191. {
  24192. name: "True Layla",
  24193. height: math.unit(200000 * 7, "multiverses")
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24199. {
  24200. back: {
  24201. height: math.unit(10.5, "feet"),
  24202. weight: math.unit(800, "lb"),
  24203. name: "Back",
  24204. image: {
  24205. source: "./media/characters/knox/back.svg",
  24206. extra: 1486 / 1089,
  24207. bottom: 107 / 1601.4
  24208. }
  24209. },
  24210. side: {
  24211. height: math.unit(10.5, "feet"),
  24212. weight: math.unit(800, "lb"),
  24213. name: "Side",
  24214. image: {
  24215. source: "./media/characters/knox/side.svg",
  24216. extra: 244 / 218,
  24217. bottom: 14 / 260
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Compact",
  24224. height: math.unit(10.5, "feet"),
  24225. default: true
  24226. },
  24227. {
  24228. name: "Dynamax",
  24229. height: math.unit(210, "feet")
  24230. },
  24231. {
  24232. name: "Full Macro",
  24233. height: math.unit(850, "feet")
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(28, "feet"),
  24242. weight: math.unit(10500, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/kayda/front.svg",
  24246. extra: 1536 / 1428,
  24247. bottom: 68.7 / 1603
  24248. }
  24249. },
  24250. back: {
  24251. height: math.unit(28, "feet"),
  24252. weight: math.unit(10500, "lb"),
  24253. name: "Back",
  24254. image: {
  24255. source: "./media/characters/kayda/back.svg",
  24256. extra: 1557 / 1464,
  24257. bottom: 39.5 / 1597.49
  24258. }
  24259. },
  24260. dick: {
  24261. height: math.unit(3.858, "feet"),
  24262. name: "Dick",
  24263. image: {
  24264. source: "./media/characters/kayda/dick.svg"
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(28, "feet"),
  24272. default: true
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24278. {
  24279. front: {
  24280. height: math.unit(10 + 11 / 12, "feet"),
  24281. weight: math.unit(1400, "lb"),
  24282. name: "Front",
  24283. image: {
  24284. source: "./media/characters/brian/front.svg",
  24285. extra: 737 / 692,
  24286. bottom: 55.4 / 785
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(10 + 11 / 12, "feet"),
  24294. default: true
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24300. {
  24301. front: {
  24302. height: math.unit(5 + 8 / 12, "feet"),
  24303. weight: math.unit(140, "lb"),
  24304. name: "Front",
  24305. image: {
  24306. source: "./media/characters/khemri/front.svg",
  24307. extra: 4780 / 4059,
  24308. bottom: 80.1 / 4859.25
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Micro",
  24315. height: math.unit(6, "inches")
  24316. },
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(5 + 8 / 12, "feet"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24326. {
  24327. front: {
  24328. height: math.unit(13, "feet"),
  24329. weight: math.unit(1700, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/felix-braveheart/front.svg",
  24333. extra: 1222 / 1157,
  24334. bottom: 53.2 / 1280
  24335. }
  24336. },
  24337. back: {
  24338. height: math.unit(13, "feet"),
  24339. weight: math.unit(1700, "lb"),
  24340. name: "Back",
  24341. image: {
  24342. source: "./media/characters/felix-braveheart/back.svg",
  24343. extra: 1277 / 1203,
  24344. bottom: 50.2 / 1327
  24345. }
  24346. },
  24347. feral: {
  24348. height: math.unit(6, "feet"),
  24349. weight: math.unit(400, "lb"),
  24350. name: "Feral",
  24351. image: {
  24352. source: "./media/characters/felix-braveheart/feral.svg",
  24353. extra: 682 / 625,
  24354. bottom: 6.9 / 688
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(13, "feet"),
  24362. default: true
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24368. {
  24369. side: {
  24370. height: math.unit(5 + 11 / 12, "feet"),
  24371. weight: math.unit(1400, "lb"),
  24372. name: "Side",
  24373. image: {
  24374. source: "./media/characters/shadow-blade/side.svg",
  24375. extra: 1726 / 1267,
  24376. bottom: 58.4 / 1785
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(5 + 11 / 12, "feet"),
  24384. default: true
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(1 + 6 / 12, "feet"),
  24393. weight: math.unit(25, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/karla-halldor/front.svg",
  24397. extra: 1459 / 1383,
  24398. bottom: 12 / 1472
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Normal",
  24405. height: math.unit(1 + 6 / 12, "feet"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(6 + 2 / 12, "feet"),
  24415. weight: math.unit(160, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/ariam/front.svg",
  24419. extra: 1073/976,
  24420. bottom: 52/1125
  24421. }
  24422. },
  24423. back: {
  24424. height: math.unit(6 + 2/12, "feet"),
  24425. weight: math.unit(160, "lb"),
  24426. name: "Back",
  24427. image: {
  24428. source: "./media/characters/ariam/back.svg",
  24429. extra: 1103/1023,
  24430. bottom: 9/1112
  24431. }
  24432. },
  24433. dressed: {
  24434. height: math.unit(6 + 2/12, "feet"),
  24435. weight: math.unit(160, "lb"),
  24436. name: "Dressed",
  24437. image: {
  24438. source: "./media/characters/ariam/dressed.svg",
  24439. extra: 1099/1009,
  24440. bottom: 25/1124
  24441. }
  24442. },
  24443. squatting: {
  24444. height: math.unit(4.1, "feet"),
  24445. weight: math.unit(160, "lb"),
  24446. name: "Squatting",
  24447. image: {
  24448. source: "./media/characters/ariam/squatting.svg",
  24449. extra: 2617 / 2112,
  24450. bottom: 61.2 / 2681,
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(6 + 2 / 12, "feet"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Normal+",
  24462. height: math.unit(4, "meters")
  24463. },
  24464. {
  24465. name: "Macro",
  24466. height: math.unit(50, "meters")
  24467. },
  24468. {
  24469. name: "Macro+",
  24470. height: math.unit(100, "meters")
  24471. },
  24472. {
  24473. name: "Megamacro",
  24474. height: math.unit(20, "km")
  24475. },
  24476. {
  24477. name: "Caretaker",
  24478. height: math.unit(444, "megameters")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(1.67, "meters"),
  24487. weight: math.unit(140, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24491. extra: 438 / 410,
  24492. bottom: 0.75 / 439
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Shrunken",
  24499. height: math.unit(7.6, "cm")
  24500. },
  24501. {
  24502. name: "Human Scale",
  24503. height: math.unit(1.67, "meters")
  24504. },
  24505. {
  24506. name: "Wolxi Scale",
  24507. height: math.unit(36.7, "meters"),
  24508. default: true
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24514. {
  24515. front: {
  24516. height: math.unit(1.73, "meters"),
  24517. weight: math.unit(240, "lb"),
  24518. name: "Front",
  24519. image: {
  24520. source: "./media/characters/izue-two-mothers/front.svg",
  24521. extra: 469 / 437,
  24522. bottom: 1.24 / 470.6
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Shrunken",
  24529. height: math.unit(7.86, "cm")
  24530. },
  24531. {
  24532. name: "Human Scale",
  24533. height: math.unit(1.73, "meters")
  24534. },
  24535. {
  24536. name: "Wolxi Scale",
  24537. height: math.unit(38, "meters"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(1.55, "meters"),
  24547. weight: math.unit(120, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/teeku-love-shack/front.svg",
  24551. extra: 387 / 362,
  24552. bottom: 1.51 / 388
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Shrunken",
  24559. height: math.unit(7, "cm")
  24560. },
  24561. {
  24562. name: "Human Scale",
  24563. height: math.unit(1.55, "meters")
  24564. },
  24565. {
  24566. name: "Wolxi Scale",
  24567. height: math.unit(34.1, "meters"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(1.83, "meters"),
  24577. weight: math.unit(135, "lb"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/dejma-the-red/front.svg",
  24581. extra: 480 / 458,
  24582. bottom: 1.8 / 482
  24583. }
  24584. },
  24585. },
  24586. [
  24587. {
  24588. name: "Shrunken",
  24589. height: math.unit(8.3, "cm")
  24590. },
  24591. {
  24592. name: "Human Scale",
  24593. height: math.unit(1.83, "meters")
  24594. },
  24595. {
  24596. name: "Wolxi Scale",
  24597. height: math.unit(40, "meters"),
  24598. default: true
  24599. },
  24600. ]
  24601. ))
  24602. characterMakers.push(() => makeCharacter(
  24603. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24604. {
  24605. front: {
  24606. height: math.unit(1.78, "meters"),
  24607. weight: math.unit(65, "kg"),
  24608. name: "Front",
  24609. image: {
  24610. source: "./media/characters/aki/front.svg",
  24611. extra: 452 / 415
  24612. }
  24613. },
  24614. frontNsfw: {
  24615. height: math.unit(1.78, "meters"),
  24616. weight: math.unit(65, "kg"),
  24617. name: "Front (NSFW)",
  24618. image: {
  24619. source: "./media/characters/aki/front-nsfw.svg",
  24620. extra: 452 / 415
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(1.78, "meters"),
  24625. weight: math.unit(65, "kg"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/aki/back.svg",
  24629. extra: 452 / 415
  24630. }
  24631. },
  24632. rump: {
  24633. height: math.unit(2.05, "feet"),
  24634. name: "Rump",
  24635. image: {
  24636. source: "./media/characters/aki/rump.svg"
  24637. }
  24638. },
  24639. dick: {
  24640. height: math.unit(0.95, "feet"),
  24641. name: "Dick",
  24642. image: {
  24643. source: "./media/characters/aki/dick.svg"
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Micro",
  24650. height: math.unit(15, "cm")
  24651. },
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(178, "cm"),
  24655. default: true
  24656. },
  24657. {
  24658. name: "Macro",
  24659. height: math.unit(214, "m")
  24660. },
  24661. {
  24662. name: "Macro+",
  24663. height: math.unit(534, "m")
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(5 + 5 / 12, "feet"),
  24672. weight: math.unit(120, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/ari/front.svg",
  24676. extra: 714.5 / 682,
  24677. bottom: 8 / 722.5
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(5 + 5 / 12, "feet")
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(100, "feet"),
  24689. default: true
  24690. },
  24691. {
  24692. name: "Megamacro",
  24693. height: math.unit(100, "miles")
  24694. },
  24695. {
  24696. name: "Gigamacro",
  24697. height: math.unit(80000, "miles")
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24703. {
  24704. side: {
  24705. height: math.unit(9, "feet"),
  24706. weight: math.unit(400, "kg"),
  24707. name: "Side",
  24708. image: {
  24709. source: "./media/characters/bolt/side.svg",
  24710. extra: 1126 / 896,
  24711. bottom: 60 / 1187.3,
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Micro",
  24718. height: math.unit(5, "inches")
  24719. },
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(9, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(700, "feet")
  24728. },
  24729. {
  24730. name: "Max Size",
  24731. height: math.unit(1.52e22, "yottameters")
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(4.53, "meters"),
  24740. weight: math.unit(3, "tons"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/draekon-sylviar/front.svg",
  24744. extra: 1228 / 1068,
  24745. bottom: 41 / 1270
  24746. }
  24747. },
  24748. tail: {
  24749. height: math.unit(1.772, "meter"),
  24750. name: "Tail",
  24751. image: {
  24752. source: "./media/characters/draekon-sylviar/tail.svg"
  24753. }
  24754. },
  24755. head: {
  24756. height: math.unit(1.331, "meter"),
  24757. name: "Head",
  24758. image: {
  24759. source: "./media/characters/draekon-sylviar/head.svg"
  24760. }
  24761. },
  24762. hand: {
  24763. height: math.unit(0.564, "meter"),
  24764. name: "Hand",
  24765. image: {
  24766. source: "./media/characters/draekon-sylviar/hand.svg"
  24767. }
  24768. },
  24769. foot: {
  24770. height: math.unit(0.621, "meter"),
  24771. name: "Foot",
  24772. image: {
  24773. source: "./media/characters/draekon-sylviar/foot.svg",
  24774. bottom: 32 / 324
  24775. }
  24776. },
  24777. dick: {
  24778. height: math.unit(61, "cm"),
  24779. name: "Dick",
  24780. image: {
  24781. source: "./media/characters/draekon-sylviar/dick.svg"
  24782. }
  24783. },
  24784. dickseparated: {
  24785. height: math.unit(61, "cm"),
  24786. name: "Dick-separated",
  24787. image: {
  24788. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Small",
  24795. height: math.unit(4.53 / 2, "meters"),
  24796. default: true
  24797. },
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(4.53, "meters"),
  24801. default: true
  24802. },
  24803. {
  24804. name: "Large",
  24805. height: math.unit(4.53 * 2, "meters"),
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24811. {
  24812. front: {
  24813. height: math.unit(6 + 2 / 12, "feet"),
  24814. weight: math.unit(180, "lb"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/brawler/front.svg",
  24818. extra: 3301 / 3027,
  24819. bottom: 138 / 3439
  24820. }
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Normal",
  24826. height: math.unit(6 + 2 / 12, "feet"),
  24827. default: true
  24828. },
  24829. ]
  24830. ))
  24831. characterMakers.push(() => makeCharacter(
  24832. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24833. {
  24834. front: {
  24835. height: math.unit(11, "feet"),
  24836. weight: math.unit(1000, "lb"),
  24837. name: "Front",
  24838. image: {
  24839. source: "./media/characters/alex/front.svg",
  24840. bottom: 44.5 / 620
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Micro",
  24847. height: math.unit(5, "inches")
  24848. },
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(11, "feet"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(9.5e9, "feet")
  24857. },
  24858. {
  24859. name: "Max Size",
  24860. height: math.unit(1.4e283, "yottameters")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24866. {
  24867. female: {
  24868. height: math.unit(29.9, "m"),
  24869. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24870. name: "Female",
  24871. image: {
  24872. source: "./media/characters/zenari/female.svg",
  24873. extra: 3281.6 / 3217,
  24874. bottom: 72.2 / 3353
  24875. }
  24876. },
  24877. male: {
  24878. height: math.unit(27.7, "m"),
  24879. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24880. name: "Male",
  24881. image: {
  24882. source: "./media/characters/zenari/male.svg",
  24883. extra: 3008 / 2991,
  24884. bottom: 54.6 / 3069
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Macro",
  24891. height: math.unit(29.7, "meters"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24898. {
  24899. female: {
  24900. height: math.unit(23.8, "m"),
  24901. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24902. name: "Female",
  24903. image: {
  24904. source: "./media/characters/mactarian/female.svg",
  24905. extra: 2662 / 2569,
  24906. bottom: 73 / 2736
  24907. }
  24908. },
  24909. male: {
  24910. height: math.unit(23.8, "m"),
  24911. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24912. name: "Male",
  24913. image: {
  24914. source: "./media/characters/mactarian/male.svg",
  24915. extra: 2673 / 2600,
  24916. bottom: 76 / 2750
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Macro",
  24923. height: math.unit(23.8, "meters"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24930. {
  24931. female: {
  24932. height: math.unit(19.3, "m"),
  24933. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24934. name: "Female",
  24935. image: {
  24936. source: "./media/characters/umok/female.svg",
  24937. extra: 2186 / 2078,
  24938. bottom: 87 / 2277
  24939. }
  24940. },
  24941. male: {
  24942. height: math.unit(19.5, "m"),
  24943. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24944. name: "Male",
  24945. image: {
  24946. source: "./media/characters/umok/male.svg",
  24947. extra: 2233 / 2140,
  24948. bottom: 24.4 / 2258
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Macro",
  24955. height: math.unit(19.3, "meters"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24962. {
  24963. female: {
  24964. height: math.unit(26.15, "m"),
  24965. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24966. name: "Female",
  24967. image: {
  24968. source: "./media/characters/joraxian/female.svg",
  24969. extra: 2912 / 2824,
  24970. bottom: 36 / 2956
  24971. }
  24972. },
  24973. male: {
  24974. height: math.unit(25.4, "m"),
  24975. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24976. name: "Male",
  24977. image: {
  24978. source: "./media/characters/joraxian/male.svg",
  24979. extra: 2877 / 2721,
  24980. bottom: 82 / 2967
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Macro",
  24987. height: math.unit(26.15, "meters"),
  24988. default: true
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24994. {
  24995. female: {
  24996. height: math.unit(21.6, "m"),
  24997. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24998. name: "Female",
  24999. image: {
  25000. source: "./media/characters/sthara/female.svg",
  25001. extra: 2516 / 2347,
  25002. bottom: 21.5 / 2537
  25003. }
  25004. },
  25005. male: {
  25006. height: math.unit(24, "m"),
  25007. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25008. name: "Male",
  25009. image: {
  25010. source: "./media/characters/sthara/male.svg",
  25011. extra: 2732 / 2607,
  25012. bottom: 23 / 2732
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Macro",
  25019. height: math.unit(21.6, "meters"),
  25020. default: true
  25021. },
  25022. ]
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25026. {
  25027. front: {
  25028. height: math.unit(6 + 4 / 12, "feet"),
  25029. weight: math.unit(175, "lb"),
  25030. name: "Front",
  25031. image: {
  25032. source: "./media/characters/luka-bryzant/front.svg",
  25033. extra: 311 / 289,
  25034. bottom: 4 / 315
  25035. }
  25036. },
  25037. back: {
  25038. height: math.unit(6 + 4 / 12, "feet"),
  25039. weight: math.unit(175, "lb"),
  25040. name: "Back",
  25041. image: {
  25042. source: "./media/characters/luka-bryzant/back.svg",
  25043. extra: 311 / 289,
  25044. bottom: 3.8 / 313.7
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Micro",
  25051. height: math.unit(10, "inches")
  25052. },
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(6 + 4 / 12, "feet"),
  25056. default: true
  25057. },
  25058. {
  25059. name: "Large",
  25060. height: math.unit(12, "feet")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(5 + 7 / 12, "feet"),
  25069. weight: math.unit(185, "lb"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/aman-aquila/front.svg",
  25073. extra: 1013 / 976,
  25074. bottom: 45.6 / 1057
  25075. }
  25076. },
  25077. side: {
  25078. height: math.unit(5 + 7 / 12, "feet"),
  25079. weight: math.unit(185, "lb"),
  25080. name: "Side",
  25081. image: {
  25082. source: "./media/characters/aman-aquila/side.svg",
  25083. extra: 1054 / 1011,
  25084. bottom: 15 / 1070
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(5 + 7 / 12, "feet"),
  25089. weight: math.unit(185, "lb"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/aman-aquila/back.svg",
  25093. extra: 1026 / 970,
  25094. bottom: 12 / 1039
  25095. }
  25096. },
  25097. head: {
  25098. height: math.unit(1.211, "feet"),
  25099. name: "Head",
  25100. image: {
  25101. source: "./media/characters/aman-aquila/head.svg",
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Minimicro",
  25108. height: math.unit(0.057, "inches")
  25109. },
  25110. {
  25111. name: "Micro",
  25112. height: math.unit(7, "inches")
  25113. },
  25114. {
  25115. name: "Mini",
  25116. height: math.unit(3 + 7 / 12, "feet")
  25117. },
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(5 + 7 / 12, "feet"),
  25121. default: true
  25122. },
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(157 + 7 / 12, "feet")
  25126. },
  25127. {
  25128. name: "Megamacro",
  25129. height: math.unit(1557 + 7 / 12, "feet")
  25130. },
  25131. {
  25132. name: "Gigamacro",
  25133. height: math.unit(15557 + 7 / 12, "feet")
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(3 + 2 / 12, "inches"),
  25142. weight: math.unit(0.3, "ounces"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/hiphae/front.svg",
  25146. extra: 1931 / 1683,
  25147. bottom: 24 / 1955
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(3 + 1 / 2, "inches"),
  25155. default: true
  25156. },
  25157. ]
  25158. ))
  25159. characterMakers.push(() => makeCharacter(
  25160. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25161. {
  25162. front: {
  25163. height: math.unit(5 + 10 / 12, "feet"),
  25164. weight: math.unit(165, "lb"),
  25165. name: "Front",
  25166. image: {
  25167. source: "./media/characters/nicky/front.svg",
  25168. extra: 3144 / 2886,
  25169. bottom: 45.6 / 3192
  25170. }
  25171. },
  25172. back: {
  25173. height: math.unit(5 + 10 / 12, "feet"),
  25174. weight: math.unit(165, "lb"),
  25175. name: "Back",
  25176. image: {
  25177. source: "./media/characters/nicky/back.svg",
  25178. extra: 3055 / 2804,
  25179. bottom: 28.4 / 3087
  25180. }
  25181. },
  25182. frontclothed: {
  25183. height: math.unit(5 + 10 / 12, "feet"),
  25184. weight: math.unit(165, "lb"),
  25185. name: "Front-clothed",
  25186. image: {
  25187. source: "./media/characters/nicky/front-clothed.svg",
  25188. extra: 3184.9 / 2926.9,
  25189. bottom: 86.5 / 3239.9
  25190. }
  25191. },
  25192. foot: {
  25193. height: math.unit(1.16, "feet"),
  25194. name: "Foot",
  25195. image: {
  25196. source: "./media/characters/nicky/foot.svg"
  25197. }
  25198. },
  25199. feet: {
  25200. height: math.unit(1.34, "feet"),
  25201. name: "Feet",
  25202. image: {
  25203. source: "./media/characters/nicky/feet.svg"
  25204. }
  25205. },
  25206. maw: {
  25207. height: math.unit(0.9, "feet"),
  25208. name: "Maw",
  25209. image: {
  25210. source: "./media/characters/nicky/maw.svg"
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Normal",
  25217. height: math.unit(5 + 10 / 12, "feet"),
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(60, "feet")
  25223. },
  25224. {
  25225. name: "Megamacro",
  25226. height: math.unit(1, "mile")
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25232. {
  25233. side: {
  25234. height: math.unit(10, "feet"),
  25235. weight: math.unit(600, "lb"),
  25236. name: "Side",
  25237. image: {
  25238. source: "./media/characters/blair/side.svg",
  25239. bottom: 16.6 / 475,
  25240. extra: 458 / 431
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Micro",
  25247. height: math.unit(8, "inches")
  25248. },
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(10, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Macro",
  25256. height: math.unit(180, "feet")
  25257. },
  25258. ]
  25259. ))
  25260. characterMakers.push(() => makeCharacter(
  25261. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25262. {
  25263. front: {
  25264. height: math.unit(5 + 4 / 12, "feet"),
  25265. weight: math.unit(125, "lb"),
  25266. name: "Front",
  25267. image: {
  25268. source: "./media/characters/fisher/front.svg",
  25269. extra: 444 / 390,
  25270. bottom: 2 / 444.8
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Micro",
  25277. height: math.unit(4, "inches")
  25278. },
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(5 + 4 / 12, "feet"),
  25282. default: true
  25283. },
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(100, "feet")
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(6.71, "feet"),
  25295. weight: math.unit(200, "lb"),
  25296. capacity: math.unit(1000000, "people"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/gliss/front.svg",
  25300. extra: 2347 / 2231,
  25301. bottom: 113 / 2462
  25302. }
  25303. },
  25304. hammerspaceSize: {
  25305. height: math.unit(6.71 * 717, "feet"),
  25306. weight: math.unit(200, "lb"),
  25307. capacity: math.unit(1000000, "people"),
  25308. name: "Hammerspace Size",
  25309. image: {
  25310. source: "./media/characters/gliss/front.svg",
  25311. extra: 2347 / 2231,
  25312. bottom: 113 / 2462
  25313. }
  25314. },
  25315. },
  25316. [
  25317. {
  25318. name: "Normal",
  25319. height: math.unit(6.71, "feet"),
  25320. default: true
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25326. {
  25327. side: {
  25328. height: math.unit(1.44, "m"),
  25329. weight: math.unit(80, "kg"),
  25330. name: "Side",
  25331. image: {
  25332. source: "./media/characters/dune-anderson/side.svg",
  25333. bottom: 49 / 1426
  25334. }
  25335. },
  25336. },
  25337. [
  25338. {
  25339. name: "Wolf-sized",
  25340. height: math.unit(1.44, "meters")
  25341. },
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(5.05, "meters"),
  25345. default: true
  25346. },
  25347. {
  25348. name: "Big",
  25349. height: math.unit(14.4, "meters")
  25350. },
  25351. {
  25352. name: "Huge",
  25353. height: math.unit(144, "meters")
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25359. {
  25360. front: {
  25361. height: math.unit(7, "feet"),
  25362. weight: math.unit(425, "lb"),
  25363. name: "Front",
  25364. image: {
  25365. source: "./media/characters/hind/front.svg",
  25366. extra: 2091 / 1860,
  25367. bottom: 129 / 2220
  25368. }
  25369. },
  25370. back: {
  25371. height: math.unit(7, "feet"),
  25372. weight: math.unit(425, "lb"),
  25373. name: "Back",
  25374. image: {
  25375. source: "./media/characters/hind/back.svg",
  25376. extra: 2091 / 1860,
  25377. bottom: 24.6 / 2309
  25378. }
  25379. },
  25380. tail: {
  25381. height: math.unit(2.8, "feet"),
  25382. name: "Tail",
  25383. image: {
  25384. source: "./media/characters/hind/tail.svg"
  25385. }
  25386. },
  25387. head: {
  25388. height: math.unit(2.55, "feet"),
  25389. name: "Head",
  25390. image: {
  25391. source: "./media/characters/hind/head.svg"
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "XS",
  25398. height: math.unit(0.7, "feet")
  25399. },
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(7, "feet"),
  25403. default: true
  25404. },
  25405. {
  25406. name: "XL",
  25407. height: math.unit(70, "feet")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(2.1, "meters"),
  25416. weight: math.unit(150, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/tharquench-sizestealer/front.svg",
  25420. extra: 1605/1470,
  25421. bottom: 36/1641
  25422. }
  25423. },
  25424. frontAlt: {
  25425. height: math.unit(2.1, "meters"),
  25426. weight: math.unit(150, "lb"),
  25427. name: "Front (Alt)",
  25428. image: {
  25429. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25430. extra: 2318 / 2063,
  25431. bottom: 93.4 / 2410
  25432. }
  25433. },
  25434. },
  25435. [
  25436. {
  25437. name: "Nano",
  25438. height: math.unit(1, "mm")
  25439. },
  25440. {
  25441. name: "Micro",
  25442. height: math.unit(1, "cm")
  25443. },
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(2.1, "meters"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(7 + 5 / 12, "feet"),
  25456. weight: math.unit(357, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/solex-draconov/front.svg",
  25460. extra: 1993 / 1865,
  25461. bottom: 117 / 2111
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Natural Height",
  25468. height: math.unit(7 + 5 / 12, "feet"),
  25469. default: true
  25470. },
  25471. {
  25472. name: "Macro",
  25473. height: math.unit(350, "feet")
  25474. },
  25475. {
  25476. name: "Macro+",
  25477. height: math.unit(1000, "feet")
  25478. },
  25479. {
  25480. name: "Megamacro",
  25481. height: math.unit(20, "km")
  25482. },
  25483. {
  25484. name: "Megamacro+",
  25485. height: math.unit(1000, "km")
  25486. },
  25487. {
  25488. name: "Gigamacro",
  25489. height: math.unit(2.5, "Gm")
  25490. },
  25491. {
  25492. name: "Teramacro",
  25493. height: math.unit(15, "Tm")
  25494. },
  25495. {
  25496. name: "Galactic",
  25497. height: math.unit(30, "Zm")
  25498. },
  25499. {
  25500. name: "Universal",
  25501. height: math.unit(21000, "Ym")
  25502. },
  25503. {
  25504. name: "Omniversal",
  25505. height: math.unit(9.861e50, "Ym")
  25506. },
  25507. {
  25508. name: "Existential",
  25509. height: math.unit(1e300, "meters")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25515. {
  25516. side: {
  25517. height: math.unit(25, "feet"),
  25518. weight: math.unit(90000, "lb"),
  25519. name: "Side",
  25520. image: {
  25521. source: "./media/characters/mandarax/side.svg",
  25522. extra: 614 / 332,
  25523. bottom: 55 / 630
  25524. }
  25525. },
  25526. head: {
  25527. height: math.unit(11.4, "feet"),
  25528. name: "Head",
  25529. image: {
  25530. source: "./media/characters/mandarax/head.svg"
  25531. }
  25532. },
  25533. belly: {
  25534. height: math.unit(33, "feet"),
  25535. name: "Belly",
  25536. capacity: math.unit(500, "people"),
  25537. image: {
  25538. source: "./media/characters/mandarax/belly.svg"
  25539. }
  25540. },
  25541. dick: {
  25542. height: math.unit(8.46, "feet"),
  25543. name: "Dick",
  25544. image: {
  25545. source: "./media/characters/mandarax/dick.svg"
  25546. }
  25547. },
  25548. top: {
  25549. height: math.unit(28, "meters"),
  25550. name: "Top",
  25551. image: {
  25552. source: "./media/characters/mandarax/top.svg"
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(25, "feet"),
  25560. default: true
  25561. },
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25566. {
  25567. front: {
  25568. height: math.unit(5, "feet"),
  25569. weight: math.unit(90, "lb"),
  25570. name: "Front",
  25571. image: {
  25572. source: "./media/characters/pixil/front.svg",
  25573. extra: 2000 / 1618,
  25574. bottom: 12.3 / 2011
  25575. }
  25576. },
  25577. },
  25578. [
  25579. {
  25580. name: "Normal",
  25581. height: math.unit(5, "feet"),
  25582. default: true
  25583. },
  25584. {
  25585. name: "Megamacro",
  25586. height: math.unit(10, "miles"),
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(7 + 2 / 12, "feet"),
  25595. weight: math.unit(200, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/angel/front.svg",
  25599. extra: 1830 / 1737,
  25600. bottom: 22.6 / 1854,
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(7 + 2 / 12, "feet"),
  25608. default: true
  25609. },
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(1000, "feet")
  25613. },
  25614. {
  25615. name: "Megamacro",
  25616. height: math.unit(2, "miles")
  25617. },
  25618. {
  25619. name: "Gigamacro",
  25620. height: math.unit(20, "earths")
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25626. {
  25627. front: {
  25628. height: math.unit(5, "feet"),
  25629. weight: math.unit(180, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/mekana/front.svg",
  25633. extra: 1671 / 1605,
  25634. bottom: 3.5 / 1691
  25635. }
  25636. },
  25637. side: {
  25638. height: math.unit(5, "feet"),
  25639. weight: math.unit(180, "lb"),
  25640. name: "Side",
  25641. image: {
  25642. source: "./media/characters/mekana/side.svg",
  25643. extra: 1671 / 1605,
  25644. bottom: 3.5 / 1691
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(5, "feet"),
  25649. weight: math.unit(180, "lb"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/mekana/back.svg",
  25653. extra: 1671 / 1605,
  25654. bottom: 3.5 / 1691
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Normal",
  25661. height: math.unit(5, "feet"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(4 + 6 / 12, "feet"),
  25671. weight: math.unit(80, "lb"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/pixie/front.svg",
  25675. extra: 1924 / 1825,
  25676. bottom: 22.4 / 1946
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(4 + 6 / 12, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(40, "feet")
  25689. },
  25690. ]
  25691. ))
  25692. characterMakers.push(() => makeCharacter(
  25693. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25694. {
  25695. front: {
  25696. height: math.unit(2.1, "meters"),
  25697. weight: math.unit(200, "lb"),
  25698. name: "Front",
  25699. image: {
  25700. source: "./media/characters/the-lascivious/front.svg",
  25701. extra: 1 / 0.893,
  25702. bottom: 3.5 / 573.7
  25703. }
  25704. },
  25705. },
  25706. [
  25707. {
  25708. name: "Human Scale",
  25709. height: math.unit(2.1, "meters")
  25710. },
  25711. {
  25712. name: "Wolxi Scale",
  25713. height: math.unit(46.2, "m"),
  25714. default: true
  25715. },
  25716. {
  25717. name: "Boinker of Buildings",
  25718. height: math.unit(10, "km")
  25719. },
  25720. {
  25721. name: "Shagger of Skyscrapers",
  25722. height: math.unit(40, "km")
  25723. },
  25724. {
  25725. name: "Banger of Boroughs",
  25726. height: math.unit(4000, "km")
  25727. },
  25728. {
  25729. name: "Screwer of States",
  25730. height: math.unit(100000, "km")
  25731. },
  25732. {
  25733. name: "Pounder of Planets",
  25734. height: math.unit(2000000, "km")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(6, "feet"),
  25743. weight: math.unit(150, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/aj/front.svg",
  25747. extra: 2039 / 1562,
  25748. bottom: 40 / 2079
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(11 + 6 / 12, "feet"),
  25756. default: true
  25757. },
  25758. {
  25759. name: "Megamacro",
  25760. height: math.unit(60, "megameters")
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25766. {
  25767. side: {
  25768. height: math.unit(31 + 8 / 12, "feet"),
  25769. weight: math.unit(75000, "kg"),
  25770. name: "Side",
  25771. image: {
  25772. source: "./media/characters/koros/side.svg",
  25773. extra: 1442 / 1297,
  25774. bottom: 122.7 / 1562
  25775. }
  25776. },
  25777. dicksKingsCrown: {
  25778. height: math.unit(6, "feet"),
  25779. name: "Dicks (King's Crown)",
  25780. image: {
  25781. source: "./media/characters/koros/dicks-kings-crown.svg"
  25782. }
  25783. },
  25784. dicksTailSet: {
  25785. height: math.unit(3, "feet"),
  25786. name: "Dicks (Tail Set)",
  25787. image: {
  25788. source: "./media/characters/koros/dicks-tail-set.svg"
  25789. }
  25790. },
  25791. dickCumming: {
  25792. height: math.unit(7.98, "feet"),
  25793. name: "Dick (Cumming)",
  25794. image: {
  25795. source: "./media/characters/koros/dick-cumming.svg"
  25796. }
  25797. },
  25798. dicksBack: {
  25799. height: math.unit(5.9, "feet"),
  25800. name: "Dicks (Back)",
  25801. image: {
  25802. source: "./media/characters/koros/dicks-back.svg"
  25803. }
  25804. },
  25805. dicksFront: {
  25806. height: math.unit(3.72, "feet"),
  25807. name: "Dicks (Front)",
  25808. image: {
  25809. source: "./media/characters/koros/dicks-front.svg"
  25810. }
  25811. },
  25812. dicksPeeking: {
  25813. height: math.unit(3.0, "feet"),
  25814. name: "Dicks (Peeking)",
  25815. image: {
  25816. source: "./media/characters/koros/dicks-peeking.svg"
  25817. }
  25818. },
  25819. eye: {
  25820. height: math.unit(1.7, "feet"),
  25821. name: "Eye",
  25822. image: {
  25823. source: "./media/characters/koros/eye.svg"
  25824. }
  25825. },
  25826. headFront: {
  25827. height: math.unit(11.69, "feet"),
  25828. name: "Head (Front)",
  25829. image: {
  25830. source: "./media/characters/koros/head-front.svg"
  25831. }
  25832. },
  25833. headSide: {
  25834. height: math.unit(14, "feet"),
  25835. name: "Head (Side)",
  25836. image: {
  25837. source: "./media/characters/koros/head-side.svg"
  25838. }
  25839. },
  25840. leg: {
  25841. height: math.unit(17, "feet"),
  25842. name: "Leg",
  25843. image: {
  25844. source: "./media/characters/koros/leg.svg"
  25845. }
  25846. },
  25847. mawSide: {
  25848. height: math.unit(12.8, "feet"),
  25849. name: "Maw (Side)",
  25850. image: {
  25851. source: "./media/characters/koros/maw-side.svg"
  25852. }
  25853. },
  25854. mawSpitting: {
  25855. height: math.unit(17, "feet"),
  25856. name: "Maw (Spitting)",
  25857. image: {
  25858. source: "./media/characters/koros/maw-spitting.svg"
  25859. }
  25860. },
  25861. slit: {
  25862. height: math.unit(2.8, "feet"),
  25863. name: "Slit",
  25864. image: {
  25865. source: "./media/characters/koros/slit.svg"
  25866. }
  25867. },
  25868. stomach: {
  25869. height: math.unit(6.8, "feet"),
  25870. capacity: math.unit(20, "people"),
  25871. name: "Stomach",
  25872. image: {
  25873. source: "./media/characters/koros/stomach.svg"
  25874. }
  25875. },
  25876. wingspanBottom: {
  25877. height: math.unit(114, "feet"),
  25878. name: "Wingspan (Bottom)",
  25879. image: {
  25880. source: "./media/characters/koros/wingspan-bottom.svg"
  25881. }
  25882. },
  25883. wingspanTop: {
  25884. height: math.unit(104, "feet"),
  25885. name: "Wingspan (Top)",
  25886. image: {
  25887. source: "./media/characters/koros/wingspan-top.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(31 + 8 / 12, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(18 + 5 / 12, "feet"),
  25904. weight: math.unit(3750, "kg"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/vexx/front.svg",
  25908. extra: 426 / 396,
  25909. bottom: 31.5 / 458
  25910. }
  25911. },
  25912. maw: {
  25913. height: math.unit(6, "feet"),
  25914. name: "Maw",
  25915. image: {
  25916. source: "./media/characters/vexx/maw.svg"
  25917. }
  25918. },
  25919. },
  25920. [
  25921. {
  25922. name: "Normal",
  25923. height: math.unit(18 + 5 / 12, "feet"),
  25924. default: true
  25925. },
  25926. ]
  25927. ))
  25928. characterMakers.push(() => makeCharacter(
  25929. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25930. {
  25931. front: {
  25932. height: math.unit(17 + 6 / 12, "feet"),
  25933. weight: math.unit(150, "lb"),
  25934. name: "Front",
  25935. image: {
  25936. source: "./media/characters/baadra/front.svg",
  25937. extra: 3137 / 2890,
  25938. bottom: 168.4 / 3305
  25939. }
  25940. },
  25941. back: {
  25942. height: math.unit(17 + 6 / 12, "feet"),
  25943. weight: math.unit(150, "lb"),
  25944. name: "Back",
  25945. image: {
  25946. source: "./media/characters/baadra/back.svg",
  25947. extra: 3142 / 2890,
  25948. bottom: 220 / 3371
  25949. }
  25950. },
  25951. head: {
  25952. height: math.unit(5.45, "feet"),
  25953. name: "Head",
  25954. image: {
  25955. source: "./media/characters/baadra/head.svg"
  25956. }
  25957. },
  25958. headAngry: {
  25959. height: math.unit(4.95, "feet"),
  25960. name: "Head (Angry)",
  25961. image: {
  25962. source: "./media/characters/baadra/head-angry.svg"
  25963. }
  25964. },
  25965. headOpen: {
  25966. height: math.unit(6, "feet"),
  25967. name: "Head (Open)",
  25968. image: {
  25969. source: "./media/characters/baadra/head-open.svg"
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(17 + 6 / 12, "feet"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(7 + 3 / 12, "feet"),
  25986. weight: math.unit(180, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/juri/front.svg",
  25990. extra: 1401 / 1237,
  25991. bottom: 18.5 / 1418
  25992. }
  25993. },
  25994. side: {
  25995. height: math.unit(7 + 3 / 12, "feet"),
  25996. weight: math.unit(180, "lb"),
  25997. name: "Side",
  25998. image: {
  25999. source: "./media/characters/juri/side.svg",
  26000. extra: 1424 / 1242,
  26001. bottom: 18.5 / 1447
  26002. }
  26003. },
  26004. sitting: {
  26005. height: math.unit(6, "feet"),
  26006. weight: math.unit(180, "lb"),
  26007. name: "Sitting",
  26008. image: {
  26009. source: "./media/characters/juri/sitting.svg",
  26010. extra: 1270 / 1143,
  26011. bottom: 100 / 1343
  26012. }
  26013. },
  26014. back: {
  26015. height: math.unit(7 + 3 / 12, "feet"),
  26016. weight: math.unit(180, "lb"),
  26017. name: "Back",
  26018. image: {
  26019. source: "./media/characters/juri/back.svg",
  26020. extra: 1377 / 1240,
  26021. bottom: 23.7 / 1405
  26022. }
  26023. },
  26024. maw: {
  26025. height: math.unit(2.8, "feet"),
  26026. name: "Maw",
  26027. image: {
  26028. source: "./media/characters/juri/maw.svg"
  26029. }
  26030. },
  26031. stomach: {
  26032. height: math.unit(0.89, "feet"),
  26033. capacity: math.unit(4, "liters"),
  26034. name: "Stomach",
  26035. image: {
  26036. source: "./media/characters/juri/stomach.svg"
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Normal",
  26043. height: math.unit(7 + 3 / 12, "feet"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26050. {
  26051. fox: {
  26052. height: math.unit(5 + 6 / 12, "feet"),
  26053. weight: math.unit(140, "lb"),
  26054. name: "Fox",
  26055. image: {
  26056. source: "./media/characters/maxene-sita/fox.svg",
  26057. extra: 146 / 138,
  26058. bottom: 2.1 / 148.19
  26059. }
  26060. },
  26061. foxLaying: {
  26062. height: math.unit(1.70, "feet"),
  26063. weight: math.unit(140, "lb"),
  26064. name: "Fox (Laying)",
  26065. image: {
  26066. source: "./media/characters/maxene-sita/fox-laying.svg",
  26067. extra: 910 / 572,
  26068. bottom: 71 / 981
  26069. }
  26070. },
  26071. kitsune: {
  26072. height: math.unit(10, "feet"),
  26073. weight: math.unit(800, "lb"),
  26074. name: "Kitsune",
  26075. image: {
  26076. source: "./media/characters/maxene-sita/kitsune.svg",
  26077. extra: 185 / 176,
  26078. bottom: 4.7 / 189.9
  26079. }
  26080. },
  26081. hellhound: {
  26082. height: math.unit(10, "feet"),
  26083. weight: math.unit(700, "lb"),
  26084. name: "Hellhound",
  26085. image: {
  26086. source: "./media/characters/maxene-sita/hellhound.svg",
  26087. extra: 1600 / 1545,
  26088. bottom: 81 / 1681
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(5 + 6 / 12, "feet"),
  26096. default: true
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26102. {
  26103. front: {
  26104. height: math.unit(3 + 4 / 12, "feet"),
  26105. weight: math.unit(70, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/maia/front.svg",
  26109. extra: 227 / 219.5,
  26110. bottom: 40 / 267
  26111. }
  26112. },
  26113. back: {
  26114. height: math.unit(3 + 4 / 12, "feet"),
  26115. weight: math.unit(70, "lb"),
  26116. name: "Back",
  26117. image: {
  26118. source: "./media/characters/maia/back.svg",
  26119. extra: 237 / 225
  26120. }
  26121. },
  26122. },
  26123. [
  26124. {
  26125. name: "Normal",
  26126. height: math.unit(3 + 4 / 12, "feet"),
  26127. default: true
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(5 + 10 / 12, "feet"),
  26136. weight: math.unit(197, "lb"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/jabaro/front.svg",
  26140. extra: 225 / 216,
  26141. bottom: 5.06 / 230
  26142. }
  26143. },
  26144. back: {
  26145. height: math.unit(5 + 10 / 12, "feet"),
  26146. weight: math.unit(197, "lb"),
  26147. name: "Back",
  26148. image: {
  26149. source: "./media/characters/jabaro/back.svg",
  26150. extra: 225 / 219,
  26151. bottom: 1.9 / 227
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Normal",
  26158. height: math.unit(5 + 10 / 12, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(5 + 8 / 12, "feet"),
  26168. weight: math.unit(139, "lb"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/risa/front.svg",
  26172. extra: 270 / 260,
  26173. bottom: 11.2 / 282
  26174. }
  26175. },
  26176. back: {
  26177. height: math.unit(5 + 8 / 12, "feet"),
  26178. weight: math.unit(139, "lb"),
  26179. name: "Back",
  26180. image: {
  26181. source: "./media/characters/risa/back.svg",
  26182. extra: 264 / 255,
  26183. bottom: 4 / 268
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(5 + 8 / 12, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(2 + 11 / 12, "feet"),
  26200. weight: math.unit(30, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/weatley/front.svg",
  26204. bottom: 10.7 / 414,
  26205. extra: 403.5 / 362
  26206. }
  26207. },
  26208. back: {
  26209. height: math.unit(2 + 11 / 12, "feet"),
  26210. weight: math.unit(30, "lb"),
  26211. name: "Back",
  26212. image: {
  26213. source: "./media/characters/weatley/back.svg",
  26214. bottom: 10.7 / 414,
  26215. extra: 403.5 / 362
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(2 + 11 / 12, "feet"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(5 + 2 / 12, "feet"),
  26232. weight: math.unit(50, "kg"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/mercury-crescent/front.svg",
  26236. extra: 1088 / 1033,
  26237. bottom: 18.9 / 1109
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Normal",
  26244. height: math.unit(5 + 2 / 12, "feet"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(2, "feet"),
  26254. weight: math.unit(15, "kg"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/diamond-jones/front.svg",
  26258. extra: 727/723,
  26259. bottom: 46/773
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(2, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(3, "feet"),
  26276. weight: math.unit(30, "kg"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/sweet-bit/front.svg",
  26280. extra: 675 / 567,
  26281. bottom: 27.7 / 703
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Normal",
  26288. height: math.unit(3, "feet"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26295. {
  26296. side: {
  26297. height: math.unit(9.178, "feet"),
  26298. weight: math.unit(500, "lb"),
  26299. name: "Side",
  26300. image: {
  26301. source: "./media/characters/umbrazen/side.svg",
  26302. extra: 1730 / 1473,
  26303. bottom: 34.6 / 1765
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(9.178, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(10, "feet"),
  26320. weight: math.unit(750, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/arlist/front.svg",
  26324. extra: 961 / 778,
  26325. bottom: 6.2 / 986
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(10, "feet"),
  26333. default: true
  26334. },
  26335. ]
  26336. ))
  26337. characterMakers.push(() => makeCharacter(
  26338. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26339. {
  26340. front: {
  26341. height: math.unit(5 + 1 / 12, "feet"),
  26342. weight: math.unit(110, "lb"),
  26343. name: "Front",
  26344. image: {
  26345. source: "./media/characters/aradel/front.svg",
  26346. extra: 324 / 303,
  26347. bottom: 3.6 / 329.4
  26348. }
  26349. },
  26350. },
  26351. [
  26352. {
  26353. name: "Normal",
  26354. height: math.unit(5 + 1 / 12, "feet"),
  26355. default: true
  26356. },
  26357. ]
  26358. ))
  26359. characterMakers.push(() => makeCharacter(
  26360. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26361. {
  26362. front: {
  26363. height: math.unit(3 + 8 / 12, "feet"),
  26364. weight: math.unit(50, "lb"),
  26365. name: "Front",
  26366. image: {
  26367. source: "./media/characters/serryn/front.svg",
  26368. extra: 1792 / 1656,
  26369. bottom: 43.5 / 1840
  26370. }
  26371. },
  26372. },
  26373. [
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(3 + 8 / 12, "feet"),
  26377. default: true
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(7 + 10 / 12, "feet"),
  26386. weight: math.unit(255, "lb"),
  26387. name: "Front",
  26388. image: {
  26389. source: "./media/characters/xavier-thyme/front.svg",
  26390. extra: 3733 / 3642,
  26391. bottom: 131 / 3869
  26392. }
  26393. },
  26394. frontRaven: {
  26395. height: math.unit(7 + 10 / 12, "feet"),
  26396. weight: math.unit(255, "lb"),
  26397. name: "Front (Raven)",
  26398. image: {
  26399. source: "./media/characters/xavier-thyme/front-raven.svg",
  26400. extra: 4385 / 3642,
  26401. bottom: 131 / 4517
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(7 + 10 / 12, "feet"),
  26409. default: true
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(1.6, "m"),
  26418. weight: math.unit(50, "kg"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/kiki/front.svg",
  26422. extra: 4682 / 3610,
  26423. bottom: 115 / 4777
  26424. }
  26425. },
  26426. },
  26427. [
  26428. {
  26429. name: "Normal",
  26430. height: math.unit(1.6, "meters"),
  26431. default: true
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26437. {
  26438. front: {
  26439. height: math.unit(50, "m"),
  26440. weight: math.unit(500, "tonnes"),
  26441. name: "Front",
  26442. image: {
  26443. source: "./media/characters/ryoko/front.svg",
  26444. extra: 4632 / 3926,
  26445. bottom: 193 / 4823
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(50, "meters"),
  26453. default: true
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(30, "m"),
  26462. weight: math.unit(22, "tonnes"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/elio/front.svg",
  26466. extra: 4582 / 3720,
  26467. bottom: 236 / 4828
  26468. }
  26469. },
  26470. },
  26471. [
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(30, "meters"),
  26475. default: true
  26476. },
  26477. ]
  26478. ))
  26479. characterMakers.push(() => makeCharacter(
  26480. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26481. {
  26482. front: {
  26483. height: math.unit(6 + 3 / 12, "feet"),
  26484. weight: math.unit(120, "lb"),
  26485. name: "Front",
  26486. image: {
  26487. source: "./media/characters/azura/front.svg",
  26488. extra: 1149 / 1135,
  26489. bottom: 45 / 1194
  26490. }
  26491. },
  26492. frontClothed: {
  26493. height: math.unit(6 + 3 / 12, "feet"),
  26494. weight: math.unit(120, "lb"),
  26495. name: "Front (Clothed)",
  26496. image: {
  26497. source: "./media/characters/azura/front-clothed.svg",
  26498. extra: 1149 / 1135,
  26499. bottom: 45 / 1194
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(6 + 3 / 12, "feet"),
  26507. default: true
  26508. },
  26509. {
  26510. name: "Macro",
  26511. height: math.unit(20 + 6 / 12, "feet")
  26512. },
  26513. {
  26514. name: "Megamacro",
  26515. height: math.unit(12, "miles")
  26516. },
  26517. {
  26518. name: "Gigamacro",
  26519. height: math.unit(10000, "miles")
  26520. },
  26521. {
  26522. name: "Teramacro",
  26523. height: math.unit(900000, "miles")
  26524. },
  26525. ]
  26526. ))
  26527. characterMakers.push(() => makeCharacter(
  26528. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26529. {
  26530. front: {
  26531. height: math.unit(12, "feet"),
  26532. weight: math.unit(1, "ton"),
  26533. capacity: math.unit(660000, "gallons"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/zeus/front.svg",
  26537. extra: 5005 / 4717,
  26538. bottom: 363 / 5388
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(12, "feet")
  26546. },
  26547. {
  26548. name: "Preferred Size",
  26549. height: math.unit(0.5, "miles"),
  26550. default: true
  26551. },
  26552. {
  26553. name: "Giga Horse",
  26554. height: math.unit(300, "miles")
  26555. },
  26556. {
  26557. name: "Riding Planets",
  26558. height: math.unit(30, "megameters")
  26559. },
  26560. {
  26561. name: "Cosmic Giant",
  26562. height: math.unit(3, "zettameters")
  26563. },
  26564. {
  26565. name: "Breeding God",
  26566. height: math.unit(9.92e22, "yottameters")
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26572. {
  26573. side: {
  26574. height: math.unit(9, "feet"),
  26575. weight: math.unit(1500, "kg"),
  26576. name: "Side",
  26577. image: {
  26578. source: "./media/characters/fang/side.svg",
  26579. extra: 924 / 866,
  26580. bottom: 47.5 / 972.3
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(9, "feet"),
  26588. default: true
  26589. },
  26590. {
  26591. name: "Macro",
  26592. height: math.unit(75 + 6 / 12, "feet")
  26593. },
  26594. {
  26595. name: "Teramacro",
  26596. height: math.unit(50000, "miles")
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(10, "feet"),
  26605. weight: math.unit(2, "tons"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/rekhit/front.svg",
  26609. extra: 2796 / 2590,
  26610. bottom: 225 / 3022
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(10, "feet"),
  26618. default: true
  26619. },
  26620. {
  26621. name: "Macro",
  26622. height: math.unit(500, "feet")
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(7 + 6.451 / 12, "feet"),
  26631. weight: math.unit(310, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/dahlia-verrick/front.svg",
  26635. extra: 1488 / 1365,
  26636. bottom: 6.2 / 1495
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(7 + 6.451 / 12, "feet"),
  26641. weight: math.unit(310, "lb"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/dahlia-verrick/back.svg",
  26645. extra: 1472 / 1351,
  26646. bottom: 5.28 / 1477
  26647. }
  26648. },
  26649. frontBusiness: {
  26650. height: math.unit(7 + 6.451 / 12, "feet"),
  26651. weight: math.unit(200, "lb"),
  26652. name: "Front (Business)",
  26653. image: {
  26654. source: "./media/characters/dahlia-verrick/front-business.svg",
  26655. extra: 1478 / 1381,
  26656. bottom: 5.5 / 1484
  26657. }
  26658. },
  26659. frontCasual: {
  26660. height: math.unit(7 + 6.451 / 12, "feet"),
  26661. weight: math.unit(200, "lb"),
  26662. name: "Front (Casual)",
  26663. image: {
  26664. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26665. extra: 1478 / 1381,
  26666. bottom: 5.5 / 1484
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Travel-Sized",
  26673. height: math.unit(7.45, "inches")
  26674. },
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(7 + 6.451 / 12, "feet"),
  26678. default: true
  26679. },
  26680. {
  26681. name: "Hitting the Town",
  26682. height: math.unit(37 + 8 / 12, "feet")
  26683. },
  26684. {
  26685. name: "Stomp in the Suburbs",
  26686. height: math.unit(964 + 9.728 / 12, "feet")
  26687. },
  26688. {
  26689. name: "Sit on the City",
  26690. height: math.unit(61747 + 10.592 / 12, "feet")
  26691. },
  26692. {
  26693. name: "Glomp the Globe",
  26694. height: math.unit(252919327 + 4.832 / 12, "feet")
  26695. },
  26696. ]
  26697. ))
  26698. characterMakers.push(() => makeCharacter(
  26699. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26700. {
  26701. front: {
  26702. height: math.unit(6 + 4 / 12, "feet"),
  26703. weight: math.unit(320, "lb"),
  26704. name: "Front",
  26705. image: {
  26706. source: "./media/characters/balina-mahigan/front.svg",
  26707. extra: 447 / 428,
  26708. bottom: 18 / 466
  26709. }
  26710. },
  26711. back: {
  26712. height: math.unit(6 + 4 / 12, "feet"),
  26713. weight: math.unit(320, "lb"),
  26714. name: "Back",
  26715. image: {
  26716. source: "./media/characters/balina-mahigan/back.svg",
  26717. extra: 445 / 428,
  26718. bottom: 4.07 / 448
  26719. }
  26720. },
  26721. arm: {
  26722. height: math.unit(1.88, "feet"),
  26723. name: "Arm",
  26724. image: {
  26725. source: "./media/characters/balina-mahigan/arm.svg"
  26726. }
  26727. },
  26728. backPort: {
  26729. height: math.unit(0.685, "feet"),
  26730. name: "Back Port",
  26731. image: {
  26732. source: "./media/characters/balina-mahigan/back-port.svg"
  26733. }
  26734. },
  26735. hoofpaw: {
  26736. height: math.unit(1.41, "feet"),
  26737. name: "Hoofpaw",
  26738. image: {
  26739. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26740. }
  26741. },
  26742. leftHandBack: {
  26743. height: math.unit(0.938, "feet"),
  26744. name: "Left Hand (Back)",
  26745. image: {
  26746. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26747. }
  26748. },
  26749. leftHandFront: {
  26750. height: math.unit(0.938, "feet"),
  26751. name: "Left Hand (Front)",
  26752. image: {
  26753. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26754. }
  26755. },
  26756. rightHandBack: {
  26757. height: math.unit(0.95, "feet"),
  26758. name: "Right Hand (Back)",
  26759. image: {
  26760. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26761. }
  26762. },
  26763. rightHandFront: {
  26764. height: math.unit(0.95, "feet"),
  26765. name: "Right Hand (Front)",
  26766. image: {
  26767. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26768. }
  26769. },
  26770. },
  26771. [
  26772. {
  26773. name: "Normal",
  26774. height: math.unit(6 + 4 / 12, "feet"),
  26775. default: true
  26776. },
  26777. ]
  26778. ))
  26779. characterMakers.push(() => makeCharacter(
  26780. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26781. {
  26782. front: {
  26783. height: math.unit(6, "feet"),
  26784. weight: math.unit(320, "lb"),
  26785. name: "Front",
  26786. image: {
  26787. source: "./media/characters/balina-mejeri/front.svg",
  26788. extra: 517 / 488,
  26789. bottom: 44.2 / 561
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(6 + 4 / 12, "feet")
  26797. },
  26798. {
  26799. name: "Business",
  26800. height: math.unit(155, "feet"),
  26801. default: true
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26807. {
  26808. kneeling: {
  26809. height: math.unit(6 + 4 / 12, "feet"),
  26810. weight: math.unit(300 * 20, "lb"),
  26811. name: "Kneeling",
  26812. image: {
  26813. source: "./media/characters/balbarian/kneeling.svg",
  26814. extra: 922 / 862,
  26815. bottom: 42.4 / 965
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(6 + 4 / 12, "feet")
  26823. },
  26824. {
  26825. name: "Treasured",
  26826. height: math.unit(18 + 9 / 12, "feet"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(900, "feet")
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(6 + 4 / 12, "feet"),
  26840. weight: math.unit(325, "lb"),
  26841. name: "Front",
  26842. image: {
  26843. source: "./media/characters/balina-amarini/front.svg",
  26844. extra: 415 / 403,
  26845. bottom: 19 / 433.4
  26846. }
  26847. },
  26848. back: {
  26849. height: math.unit(6 + 4 / 12, "feet"),
  26850. weight: math.unit(325, "lb"),
  26851. name: "Back",
  26852. image: {
  26853. source: "./media/characters/balina-amarini/back.svg",
  26854. extra: 415 / 403,
  26855. bottom: 13.5 / 432
  26856. }
  26857. },
  26858. overdrive: {
  26859. height: math.unit(6 + 4 / 12, "feet"),
  26860. weight: math.unit(400, "lb"),
  26861. name: "Overdrive",
  26862. image: {
  26863. source: "./media/characters/balina-amarini/overdrive.svg",
  26864. extra: 269 / 259,
  26865. bottom: 12 / 282
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Boom",
  26872. height: math.unit(9 + 10 / 12, "feet"),
  26873. default: true
  26874. },
  26875. {
  26876. name: "Macro",
  26877. height: math.unit(280, "feet")
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26883. {
  26884. goddess: {
  26885. height: math.unit(600, "feet"),
  26886. weight: math.unit(2000000, "tons"),
  26887. name: "Goddess",
  26888. image: {
  26889. source: "./media/characters/lady-kubwa/goddess.svg",
  26890. extra: 1240.5 / 1223,
  26891. bottom: 22 / 1263
  26892. }
  26893. },
  26894. goddesser: {
  26895. height: math.unit(900, "feet"),
  26896. weight: math.unit(20000000, "lb"),
  26897. name: "Goddess-er",
  26898. image: {
  26899. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26900. extra: 899 / 888,
  26901. bottom: 12.6 / 912
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Macro",
  26908. height: math.unit(600, "feet"),
  26909. default: true
  26910. },
  26911. {
  26912. name: "Megamacro",
  26913. height: math.unit(250, "miles")
  26914. },
  26915. ]
  26916. ))
  26917. characterMakers.push(() => makeCharacter(
  26918. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26919. {
  26920. front: {
  26921. height: math.unit(7 + 7 / 12, "feet"),
  26922. weight: math.unit(250, "lb"),
  26923. name: "Front",
  26924. image: {
  26925. source: "./media/characters/tala-grovehorn/front.svg",
  26926. extra: 2636 / 2525,
  26927. bottom: 147 / 2781
  26928. }
  26929. },
  26930. back: {
  26931. height: math.unit(7 + 7 / 12, "feet"),
  26932. weight: math.unit(250, "lb"),
  26933. name: "Back",
  26934. image: {
  26935. source: "./media/characters/tala-grovehorn/back.svg",
  26936. extra: 2635 / 2539,
  26937. bottom: 100 / 2732.8
  26938. }
  26939. },
  26940. mouth: {
  26941. height: math.unit(1.15, "feet"),
  26942. name: "Mouth",
  26943. image: {
  26944. source: "./media/characters/tala-grovehorn/mouth.svg"
  26945. }
  26946. },
  26947. dick: {
  26948. height: math.unit(2.36, "feet"),
  26949. name: "Dick",
  26950. image: {
  26951. source: "./media/characters/tala-grovehorn/dick.svg"
  26952. }
  26953. },
  26954. slit: {
  26955. height: math.unit(0.61, "feet"),
  26956. name: "Slit",
  26957. image: {
  26958. source: "./media/characters/tala-grovehorn/slit.svg"
  26959. }
  26960. },
  26961. },
  26962. [
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(7 + 7 / 12, "feet"),
  26970. weight: math.unit(225, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/epona/front.svg",
  26974. extra: 2445 / 2290,
  26975. bottom: 251 / 2696
  26976. }
  26977. },
  26978. back: {
  26979. height: math.unit(7 + 7 / 12, "feet"),
  26980. weight: math.unit(225, "lb"),
  26981. name: "Back",
  26982. image: {
  26983. source: "./media/characters/epona/back.svg",
  26984. extra: 2546 / 2408,
  26985. bottom: 44 / 2589
  26986. }
  26987. },
  26988. genitals: {
  26989. height: math.unit(1.5, "feet"),
  26990. name: "Genitals",
  26991. image: {
  26992. source: "./media/characters/epona/genitals.svg"
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(7 + 7 / 12, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(7, "feet"),
  27009. weight: math.unit(518, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/avia-bloodbourn/front.svg",
  27013. extra: 1466 / 1350,
  27014. bottom: 65 / 1527
  27015. }
  27016. },
  27017. },
  27018. [
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(9.35, "feet"),
  27026. weight: math.unit(600, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/amera/front.svg",
  27030. extra: 891 / 818,
  27031. bottom: 30 / 922.7
  27032. }
  27033. },
  27034. back: {
  27035. height: math.unit(9.35, "feet"),
  27036. weight: math.unit(600, "lb"),
  27037. name: "Back",
  27038. image: {
  27039. source: "./media/characters/amera/back.svg",
  27040. extra: 876 / 824,
  27041. bottom: 6.8 / 884
  27042. }
  27043. },
  27044. dick: {
  27045. height: math.unit(2.14, "feet"),
  27046. name: "Dick",
  27047. image: {
  27048. source: "./media/characters/amera/dick.svg"
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(9.35, "feet"),
  27056. default: true
  27057. },
  27058. ]
  27059. ))
  27060. characterMakers.push(() => makeCharacter(
  27061. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27062. {
  27063. kneeling: {
  27064. height: math.unit(3 + 4 / 12, "feet"),
  27065. weight: math.unit(90, "lb"),
  27066. name: "Kneeling",
  27067. image: {
  27068. source: "./media/characters/rosewen/kneeling.svg",
  27069. extra: 1835 / 1571,
  27070. bottom: 27.7 / 1862
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Normal",
  27077. height: math.unit(3 + 4 / 12, "feet"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(5 + 10 / 12, "feet"),
  27087. weight: math.unit(200, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/sabah/front.svg",
  27091. extra: 849 / 763,
  27092. bottom: 33.9 / 881
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(5 + 10 / 12, "feet"),
  27100. default: true
  27101. },
  27102. ]
  27103. ))
  27104. characterMakers.push(() => makeCharacter(
  27105. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27106. {
  27107. front: {
  27108. height: math.unit(3 + 5 / 12, "feet"),
  27109. weight: math.unit(40, "kg"),
  27110. name: "Front",
  27111. image: {
  27112. source: "./media/characters/purple-flame/front.svg",
  27113. extra: 1577 / 1412,
  27114. bottom: 97 / 1694
  27115. }
  27116. },
  27117. frontDressed: {
  27118. height: math.unit(3 + 5 / 12, "feet"),
  27119. weight: math.unit(40, "kg"),
  27120. name: "Front (Dressed)",
  27121. image: {
  27122. source: "./media/characters/purple-flame/front-dressed.svg",
  27123. extra: 1577 / 1412,
  27124. bottom: 97 / 1694
  27125. }
  27126. },
  27127. headphones: {
  27128. height: math.unit(0.85, "feet"),
  27129. name: "Headphones",
  27130. image: {
  27131. source: "./media/characters/purple-flame/headphones.svg"
  27132. }
  27133. },
  27134. },
  27135. [
  27136. {
  27137. name: "Really Small",
  27138. height: math.unit(5, "cm")
  27139. },
  27140. {
  27141. name: "Micro",
  27142. height: math.unit(1 + 5 / 12, "feet")
  27143. },
  27144. {
  27145. name: "Normal",
  27146. height: math.unit(3 + 5 / 12, "feet"),
  27147. default: true
  27148. },
  27149. {
  27150. name: "Minimacro",
  27151. height: math.unit(125, "feet")
  27152. },
  27153. {
  27154. name: "Macro",
  27155. height: math.unit(0.5, "miles")
  27156. },
  27157. {
  27158. name: "Megamacro",
  27159. height: math.unit(50, "miles")
  27160. },
  27161. {
  27162. name: "Gigantic",
  27163. height: math.unit(750, "miles")
  27164. },
  27165. {
  27166. name: "Planetary",
  27167. height: math.unit(15000, "miles")
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27173. {
  27174. front: {
  27175. height: math.unit(14, "feet"),
  27176. weight: math.unit(959, "lb"),
  27177. name: "Front",
  27178. image: {
  27179. source: "./media/characters/arsenal/front.svg",
  27180. extra: 2357 / 2157,
  27181. bottom: 93 / 2458
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Normal",
  27188. height: math.unit(14, "feet"),
  27189. default: true
  27190. },
  27191. ]
  27192. ))
  27193. characterMakers.push(() => makeCharacter(
  27194. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27195. {
  27196. front: {
  27197. height: math.unit(6, "feet"),
  27198. weight: math.unit(150, "lb"),
  27199. name: "Front",
  27200. image: {
  27201. source: "./media/characters/adira/front.svg",
  27202. extra: 1078 / 1029,
  27203. bottom: 87 / 1166
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Micro",
  27210. height: math.unit(4, "inches"),
  27211. default: true
  27212. },
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(50, "feet")
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(16, "feet"),
  27224. weight: math.unit(1000, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/grim/front.svg",
  27228. extra: 622 / 614,
  27229. bottom: 18.1 / 642
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(16, "feet"),
  27234. weight: math.unit(1000, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/grim/back.svg",
  27238. extra: 610.6 / 602,
  27239. bottom: 40.8 / 652
  27240. }
  27241. },
  27242. hunched: {
  27243. height: math.unit(9.75, "feet"),
  27244. weight: math.unit(1000, "lb"),
  27245. name: "Hunched",
  27246. image: {
  27247. source: "./media/characters/grim/hunched.svg",
  27248. extra: 304 / 297,
  27249. bottom: 35.4 / 394
  27250. }
  27251. },
  27252. },
  27253. [
  27254. {
  27255. name: "Normal",
  27256. height: math.unit(16, "feet"),
  27257. default: true
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(2.3, "meters"),
  27266. weight: math.unit(300, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/sinja/front-sfw.svg",
  27270. extra: 1393 / 1294,
  27271. bottom: 70 / 1463
  27272. }
  27273. },
  27274. frontNsfw: {
  27275. height: math.unit(2.3, "meters"),
  27276. weight: math.unit(300, "lb"),
  27277. name: "Front (NSFW)",
  27278. image: {
  27279. source: "./media/characters/sinja/front-nsfw.svg",
  27280. extra: 1393 / 1294,
  27281. bottom: 70 / 1463
  27282. }
  27283. },
  27284. back: {
  27285. height: math.unit(2.3, "meters"),
  27286. weight: math.unit(300, "lb"),
  27287. name: "Back",
  27288. image: {
  27289. source: "./media/characters/sinja/back.svg",
  27290. extra: 1393 / 1294,
  27291. bottom: 70 / 1463
  27292. }
  27293. },
  27294. head: {
  27295. height: math.unit(1.771, "feet"),
  27296. name: "Head",
  27297. image: {
  27298. source: "./media/characters/sinja/head.svg"
  27299. }
  27300. },
  27301. slit: {
  27302. height: math.unit(0.8, "feet"),
  27303. name: "Slit",
  27304. image: {
  27305. source: "./media/characters/sinja/slit.svg"
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(2.3, "meters")
  27313. },
  27314. {
  27315. name: "Macro",
  27316. height: math.unit(91, "meters"),
  27317. default: true
  27318. },
  27319. {
  27320. name: "Megamacro",
  27321. height: math.unit(91440, "meters")
  27322. },
  27323. {
  27324. name: "Gigamacro",
  27325. height: math.unit(60960000, "meters")
  27326. },
  27327. {
  27328. name: "Teramacro",
  27329. height: math.unit(9144000000, "meters")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27335. {
  27336. front: {
  27337. height: math.unit(1.7, "meters"),
  27338. weight: math.unit(130, "lb"),
  27339. name: "Front",
  27340. image: {
  27341. source: "./media/characters/kyu/front.svg",
  27342. extra: 415 / 395,
  27343. bottom: 5 / 420
  27344. }
  27345. },
  27346. head: {
  27347. height: math.unit(1.75, "feet"),
  27348. name: "Head",
  27349. image: {
  27350. source: "./media/characters/kyu/head.svg"
  27351. }
  27352. },
  27353. foot: {
  27354. height: math.unit(0.81, "feet"),
  27355. name: "Foot",
  27356. image: {
  27357. source: "./media/characters/kyu/foot.svg"
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Normal",
  27364. height: math.unit(1.7, "meters")
  27365. },
  27366. {
  27367. name: "Macro",
  27368. height: math.unit(131, "feet"),
  27369. default: true
  27370. },
  27371. {
  27372. name: "Megamacro",
  27373. height: math.unit(91440, "meters")
  27374. },
  27375. {
  27376. name: "Gigamacro",
  27377. height: math.unit(60960000, "meters")
  27378. },
  27379. {
  27380. name: "Teramacro",
  27381. height: math.unit(9144000000, "meters")
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27387. {
  27388. front: {
  27389. height: math.unit(7 + 1 / 12, "feet"),
  27390. weight: math.unit(250, "lb"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/joey/front.svg",
  27394. extra: 1791 / 1537,
  27395. bottom: 28 / 1816
  27396. }
  27397. },
  27398. },
  27399. [
  27400. {
  27401. name: "Micro",
  27402. height: math.unit(3, "inches")
  27403. },
  27404. {
  27405. name: "Normal",
  27406. height: math.unit(7 + 1 / 12, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(165, "cm"),
  27416. weight: math.unit(140, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/sam-evans/front.svg",
  27420. extra: 3417 / 3230,
  27421. bottom: 41.3 / 3417
  27422. }
  27423. },
  27424. frontSixTails: {
  27425. height: math.unit(165, "cm"),
  27426. weight: math.unit(140, "lb"),
  27427. name: "Front-six-tails",
  27428. image: {
  27429. source: "./media/characters/sam-evans/front-six-tails.svg",
  27430. extra: 3417 / 3230,
  27431. bottom: 41.3 / 3417
  27432. }
  27433. },
  27434. back: {
  27435. height: math.unit(165, "cm"),
  27436. weight: math.unit(140, "lb"),
  27437. name: "Back",
  27438. image: {
  27439. source: "./media/characters/sam-evans/back.svg",
  27440. extra: 3227 / 3032,
  27441. bottom: 6.8 / 3234
  27442. }
  27443. },
  27444. face: {
  27445. height: math.unit(0.68, "feet"),
  27446. name: "Face",
  27447. image: {
  27448. source: "./media/characters/sam-evans/face.svg"
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(165, "cm"),
  27456. default: true
  27457. },
  27458. {
  27459. name: "Macro",
  27460. height: math.unit(100, "meters")
  27461. },
  27462. {
  27463. name: "Macro+",
  27464. height: math.unit(800, "meters")
  27465. },
  27466. {
  27467. name: "Macro++",
  27468. height: math.unit(3, "km")
  27469. },
  27470. {
  27471. name: "Macro+++",
  27472. height: math.unit(30, "km")
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(10, "feet"),
  27481. weight: math.unit(750, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/juliet-a/front.svg",
  27485. extra: 1766 / 1720,
  27486. bottom: 43 / 1809
  27487. }
  27488. },
  27489. back: {
  27490. height: math.unit(10, "feet"),
  27491. weight: math.unit(750, "lb"),
  27492. name: "Back",
  27493. image: {
  27494. source: "./media/characters/juliet-a/back.svg",
  27495. extra: 1781 / 1734,
  27496. bottom: 35 / 1810,
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Normal",
  27503. height: math.unit(10, "feet"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Dragon Form",
  27508. height: math.unit(250, "feet")
  27509. },
  27510. {
  27511. name: "Macro",
  27512. height: math.unit(1000, "feet")
  27513. },
  27514. {
  27515. name: "Megamacro",
  27516. height: math.unit(10000, "feet")
  27517. }
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27522. {
  27523. regular: {
  27524. height: math.unit(7 + 3 / 12, "feet"),
  27525. weight: math.unit(260, "lb"),
  27526. name: "Regular",
  27527. image: {
  27528. source: "./media/characters/wild/regular.svg",
  27529. extra: 97.45 / 92,
  27530. bottom: 6.8 / 104.3
  27531. }
  27532. },
  27533. biggums: {
  27534. height: math.unit(8 + 6 / 12, "feet"),
  27535. weight: math.unit(425, "lb"),
  27536. name: "Biggums",
  27537. image: {
  27538. source: "./media/characters/wild/biggums.svg",
  27539. extra: 97.45 / 92,
  27540. bottom: 7.5 / 132.34
  27541. }
  27542. },
  27543. mawRegular: {
  27544. height: math.unit(1.24, "feet"),
  27545. name: "Maw (Regular)",
  27546. image: {
  27547. source: "./media/characters/wild/maw.svg"
  27548. }
  27549. },
  27550. mawBiggums: {
  27551. height: math.unit(1.47, "feet"),
  27552. name: "Maw (Biggums)",
  27553. image: {
  27554. source: "./media/characters/wild/maw.svg"
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(7 + 3 / 12, "feet"),
  27562. default: true
  27563. },
  27564. ]
  27565. ))
  27566. characterMakers.push(() => makeCharacter(
  27567. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27568. {
  27569. front: {
  27570. height: math.unit(2.5, "meters"),
  27571. weight: math.unit(200, "kg"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/vidar/front.svg",
  27575. extra: 2994 / 2795,
  27576. bottom: 56 / 3061
  27577. }
  27578. },
  27579. back: {
  27580. height: math.unit(2.5, "meters"),
  27581. weight: math.unit(200, "kg"),
  27582. name: "Back",
  27583. image: {
  27584. source: "./media/characters/vidar/back.svg",
  27585. extra: 3131 / 2928,
  27586. bottom: 13.5 / 3141.5
  27587. }
  27588. },
  27589. feral: {
  27590. height: math.unit(2.5, "meters"),
  27591. weight: math.unit(2000, "kg"),
  27592. name: "Feral",
  27593. image: {
  27594. source: "./media/characters/vidar/feral.svg",
  27595. extra: 2790 / 1765,
  27596. bottom: 6 / 2796
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Normal",
  27603. height: math.unit(2.5, "meters"),
  27604. default: true
  27605. },
  27606. {
  27607. name: "Macro",
  27608. height: math.unit(100, "meters")
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(5 + 9 / 12, "feet"),
  27617. weight: math.unit(120, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/ash/front.svg",
  27621. extra: 2189 / 1961,
  27622. bottom: 5.2 / 2194
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(5 + 9 / 12, "feet"),
  27630. default: true
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(9, "feet"),
  27639. weight: math.unit(10000, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/gygabite/front.svg",
  27643. bottom: 31.7 / 537.8,
  27644. extra: 505 / 370
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(9, "feet"),
  27652. default: true
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(12, "feet"),
  27661. weight: math.unit(35000, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/p0tat0/front.svg",
  27665. extra: 1065 / 921,
  27666. bottom: 55.7 / 1121.25
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(12, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27680. {
  27681. side: {
  27682. height: math.unit(6.5, "feet"),
  27683. weight: math.unit(800, "lb"),
  27684. name: "Side",
  27685. image: {
  27686. source: "./media/characters/dusk/side.svg",
  27687. extra: 615 / 373,
  27688. bottom: 53 / 664
  27689. }
  27690. },
  27691. sitting: {
  27692. height: math.unit(7, "feet"),
  27693. weight: math.unit(800, "lb"),
  27694. name: "Sitting",
  27695. image: {
  27696. source: "./media/characters/dusk/sitting.svg",
  27697. extra: 753 / 425,
  27698. bottom: 33 / 774
  27699. }
  27700. },
  27701. head: {
  27702. height: math.unit(6.1, "feet"),
  27703. name: "Head",
  27704. image: {
  27705. source: "./media/characters/dusk/head.svg"
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Normal",
  27712. height: math.unit(7, "feet"),
  27713. default: true
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27719. {
  27720. front: {
  27721. height: math.unit(15, "feet"),
  27722. weight: math.unit(7000, "lb"),
  27723. name: "Front",
  27724. image: {
  27725. source: "./media/characters/jay-direwolf/front.svg",
  27726. extra: 1810 / 1732,
  27727. bottom: 66 / 1892
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(15, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27741. {
  27742. front: {
  27743. height: math.unit(4 + 9 / 12, "feet"),
  27744. weight: math.unit(130, "lb"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/anchovie/front.svg",
  27748. extra: 382 / 350,
  27749. bottom: 25 / 409
  27750. }
  27751. },
  27752. back: {
  27753. height: math.unit(4 + 9 / 12, "feet"),
  27754. weight: math.unit(130, "lb"),
  27755. name: "Back",
  27756. image: {
  27757. source: "./media/characters/anchovie/back.svg",
  27758. extra: 385 / 352,
  27759. bottom: 16.6 / 402
  27760. }
  27761. },
  27762. frontDressed: {
  27763. height: math.unit(4 + 9 / 12, "feet"),
  27764. weight: math.unit(130, "lb"),
  27765. name: "Front (Dressed)",
  27766. image: {
  27767. source: "./media/characters/anchovie/front-dressed.svg",
  27768. extra: 382 / 350,
  27769. bottom: 25 / 409
  27770. }
  27771. },
  27772. backDressed: {
  27773. height: math.unit(4 + 9 / 12, "feet"),
  27774. weight: math.unit(130, "lb"),
  27775. name: "Back (Dressed)",
  27776. image: {
  27777. source: "./media/characters/anchovie/back-dressed.svg",
  27778. extra: 385 / 352,
  27779. bottom: 16.6 / 402
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Micro",
  27786. height: math.unit(6.4, "inches")
  27787. },
  27788. {
  27789. name: "Normal",
  27790. height: math.unit(4 + 9 / 12, "feet"),
  27791. default: true
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(2, "meters"),
  27800. weight: math.unit(180, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/acidrenamon/front.svg",
  27804. extra: 987 / 890,
  27805. bottom: 22.8 / 1009
  27806. }
  27807. },
  27808. back: {
  27809. height: math.unit(2, "meters"),
  27810. weight: math.unit(180, "lb"),
  27811. name: "Back",
  27812. image: {
  27813. source: "./media/characters/acidrenamon/back.svg",
  27814. extra: 983 / 891,
  27815. bottom: 8.4 / 992
  27816. }
  27817. },
  27818. head: {
  27819. height: math.unit(1.92, "feet"),
  27820. name: "Head",
  27821. image: {
  27822. source: "./media/characters/acidrenamon/head.svg"
  27823. }
  27824. },
  27825. rump: {
  27826. height: math.unit(1.72, "feet"),
  27827. name: "Rump",
  27828. image: {
  27829. source: "./media/characters/acidrenamon/rump.svg"
  27830. }
  27831. },
  27832. tail: {
  27833. height: math.unit(4.2, "feet"),
  27834. name: "Tail",
  27835. image: {
  27836. source: "./media/characters/acidrenamon/tail.svg"
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(2, "meters"),
  27844. default: true
  27845. },
  27846. {
  27847. name: "Minimacro",
  27848. height: math.unit(7, "meters")
  27849. },
  27850. {
  27851. name: "Macro",
  27852. height: math.unit(200, "meters")
  27853. },
  27854. {
  27855. name: "Gigamacro",
  27856. height: math.unit(0.2, "earths")
  27857. },
  27858. ]
  27859. ))
  27860. characterMakers.push(() => makeCharacter(
  27861. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27862. {
  27863. front: {
  27864. height: math.unit(152, "feet"),
  27865. name: "Front",
  27866. image: {
  27867. source: "./media/characters/kenzie-lee/front.svg",
  27868. extra: 1869/1774,
  27869. bottom: 128/1997
  27870. }
  27871. },
  27872. side: {
  27873. height: math.unit(86, "feet"),
  27874. name: "Side",
  27875. image: {
  27876. source: "./media/characters/kenzie-lee/side.svg",
  27877. extra: 930/815,
  27878. bottom: 177/1107
  27879. }
  27880. },
  27881. paw: {
  27882. height: math.unit(15, "feet"),
  27883. name: "Paw",
  27884. image: {
  27885. source: "./media/characters/kenzie-lee/paw.svg"
  27886. }
  27887. },
  27888. },
  27889. [
  27890. {
  27891. name: "Micro",
  27892. height: math.unit(1.5, "inches")
  27893. },
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(152, "feet"),
  27897. default: true
  27898. },
  27899. {
  27900. name: "Megamacro",
  27901. height: math.unit(7, "miles")
  27902. },
  27903. {
  27904. name: "Gigamacro",
  27905. height: math.unit(8000, "miles")
  27906. },
  27907. ]
  27908. ))
  27909. characterMakers.push(() => makeCharacter(
  27910. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27911. {
  27912. side: {
  27913. height: math.unit(6, "feet"),
  27914. weight: math.unit(150, "lb"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/withers/side.svg",
  27918. extra: 1830 / 1728,
  27919. bottom: 96 / 1927
  27920. }
  27921. },
  27922. front: {
  27923. height: math.unit(6, "feet"),
  27924. weight: math.unit(150, "lb"),
  27925. name: "Front",
  27926. image: {
  27927. source: "./media/characters/withers/front.svg",
  27928. extra: 1514 / 1438,
  27929. bottom: 118 / 1632
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Macro",
  27936. height: math.unit(168, "feet"),
  27937. default: true
  27938. },
  27939. {
  27940. name: "Megamacro",
  27941. height: math.unit(15, "miles")
  27942. }
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(6 + 7 / 12, "feet"),
  27950. weight: math.unit(250, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/nemoskii/front.svg",
  27954. extra: 2270 / 1734,
  27955. bottom: 86 / 2354
  27956. }
  27957. },
  27958. back: {
  27959. height: math.unit(6 + 7 / 12, "feet"),
  27960. weight: math.unit(250, "lb"),
  27961. name: "Back",
  27962. image: {
  27963. source: "./media/characters/nemoskii/back.svg",
  27964. extra: 1845 / 1788,
  27965. bottom: 10.5 / 1852
  27966. }
  27967. },
  27968. head: {
  27969. height: math.unit(1.31, "feet"),
  27970. name: "Head",
  27971. image: {
  27972. source: "./media/characters/nemoskii/head.svg"
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Micro",
  27979. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27980. },
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(6 + 7 / 12, "feet"),
  27984. default: true
  27985. },
  27986. {
  27987. name: "Macro",
  27988. height: math.unit((6 + 7 / 12) * 150, "feet")
  27989. },
  27990. {
  27991. name: "Macro+",
  27992. height: math.unit((6 + 7 / 12) * 500, "feet")
  27993. },
  27994. {
  27995. name: "Megamacro",
  27996. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(1, "mile"),
  28005. weight: math.unit(265261.9, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/shui/front.svg",
  28009. extra: 1633 / 1564,
  28010. bottom: 91.5 / 1726
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Macro",
  28017. height: math.unit(1, "mile"),
  28018. default: true
  28019. },
  28020. ]
  28021. ))
  28022. characterMakers.push(() => makeCharacter(
  28023. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28024. {
  28025. front: {
  28026. height: math.unit(12 + 6 / 12, "feet"),
  28027. weight: math.unit(1342, "lb"),
  28028. name: "Front",
  28029. image: {
  28030. source: "./media/characters/arokh-takakura/front.svg",
  28031. extra: 1089 / 1043,
  28032. bottom: 77.4 / 1176.7
  28033. }
  28034. },
  28035. back: {
  28036. height: math.unit(12 + 6 / 12, "feet"),
  28037. weight: math.unit(1342, "lb"),
  28038. name: "Back",
  28039. image: {
  28040. source: "./media/characters/arokh-takakura/back.svg",
  28041. extra: 1046 / 1019,
  28042. bottom: 102 / 1150
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Big",
  28049. height: math.unit(12 + 6 / 12, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(5 + 6 / 12, "feet"),
  28059. weight: math.unit(150, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/theo/front.svg",
  28063. extra: 1184 / 1131,
  28064. bottom: 7.4 / 1191
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Micro",
  28071. height: math.unit(5, "inches")
  28072. },
  28073. {
  28074. name: "Normal",
  28075. height: math.unit(5 + 6 / 12, "feet"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(5 + 9 / 12, "feet"),
  28085. weight: math.unit(130, "lb"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/cecelia-swift/front.svg",
  28089. extra: 502 / 484,
  28090. bottom: 23 / 523
  28091. }
  28092. },
  28093. back: {
  28094. height: math.unit(5 + 9 / 12, "feet"),
  28095. weight: math.unit(130, "lb"),
  28096. name: "Back",
  28097. image: {
  28098. source: "./media/characters/cecelia-swift/back.svg",
  28099. extra: 499 / 485,
  28100. bottom: 12 / 511
  28101. }
  28102. },
  28103. head: {
  28104. height: math.unit(0.90, "feet"),
  28105. name: "Head",
  28106. image: {
  28107. source: "./media/characters/cecelia-swift/head.svg"
  28108. }
  28109. },
  28110. rump: {
  28111. height: math.unit(1.75, "feet"),
  28112. name: "Rump",
  28113. image: {
  28114. source: "./media/characters/cecelia-swift/rump.svg"
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(5 + 9 / 12, "feet"),
  28122. default: true
  28123. },
  28124. {
  28125. name: "Big",
  28126. height: math.unit(50, "feet")
  28127. },
  28128. {
  28129. name: "Macro",
  28130. height: math.unit(100, "feet")
  28131. },
  28132. {
  28133. name: "Macro+",
  28134. height: math.unit(500, "feet")
  28135. },
  28136. {
  28137. name: "Macro++",
  28138. height: math.unit(1000, "feet")
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(6, "feet"),
  28147. weight: math.unit(150, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/kaunan/front.svg",
  28151. extra: 2890 / 2523,
  28152. bottom: 49 / 2939
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(150, "feet"),
  28160. default: true
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(175, "cm"),
  28169. weight: math.unit(60, "kg"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/fei/front.svg",
  28173. extra: 1873/1723,
  28174. bottom: 53/1926
  28175. }
  28176. },
  28177. },
  28178. [
  28179. {
  28180. name: "Mortal",
  28181. height: math.unit(175, "cm")
  28182. },
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(3500, "m"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Stroll",
  28190. height: math.unit(17.5, "km")
  28191. },
  28192. {
  28193. name: "Showoff",
  28194. height: math.unit(175, "km")
  28195. },
  28196. ]
  28197. ))
  28198. characterMakers.push(() => makeCharacter(
  28199. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28200. {
  28201. front: {
  28202. height: math.unit(7, "feet"),
  28203. weight: math.unit(1000, "kg"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/edrax/front.svg",
  28207. extra: 2838 / 2550,
  28208. bottom: 130 / 2968
  28209. }
  28210. },
  28211. },
  28212. [
  28213. {
  28214. name: "Small",
  28215. height: math.unit(7, "feet")
  28216. },
  28217. {
  28218. name: "Normal",
  28219. height: math.unit(1500, "meters")
  28220. },
  28221. {
  28222. name: "Mega",
  28223. height: math.unit(12000000, "km"),
  28224. default: true
  28225. },
  28226. {
  28227. name: "Megamacro",
  28228. height: math.unit(10600000, "lightyears")
  28229. },
  28230. {
  28231. name: "Hypermacro",
  28232. height: math.unit(256, "yottameters")
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28238. {
  28239. front: {
  28240. height: math.unit(10, "feet"),
  28241. weight: math.unit(750, "lb"),
  28242. name: "Front",
  28243. image: {
  28244. source: "./media/characters/clove/front.svg",
  28245. extra: 1918/1751,
  28246. bottom: 52/1970
  28247. }
  28248. },
  28249. back: {
  28250. height: math.unit(10, "feet"),
  28251. weight: math.unit(750, "lb"),
  28252. name: "Back",
  28253. image: {
  28254. source: "./media/characters/clove/back.svg",
  28255. extra: 1912/1747,
  28256. bottom: 50/1962
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(10, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(4, "feet"),
  28273. weight: math.unit(50, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/alex-rabbit/front.svg",
  28277. extra: 507 / 458,
  28278. bottom: 18.5 / 527
  28279. }
  28280. },
  28281. back: {
  28282. height: math.unit(4, "feet"),
  28283. weight: math.unit(50, "lb"),
  28284. name: "Back",
  28285. image: {
  28286. source: "./media/characters/alex-rabbit/back.svg",
  28287. extra: 502 / 460,
  28288. bottom: 18.9 / 521
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(4, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(1 + 3 / 12, "feet"),
  28305. weight: math.unit(80, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/zander-rose/front.svg",
  28309. extra: 916 / 797,
  28310. bottom: 17 / 933
  28311. }
  28312. },
  28313. back: {
  28314. height: math.unit(1 + 3 / 12, "feet"),
  28315. weight: math.unit(80, "lb"),
  28316. name: "Back",
  28317. image: {
  28318. source: "./media/characters/zander-rose/back.svg",
  28319. extra: 903 / 779,
  28320. bottom: 31 / 934
  28321. }
  28322. },
  28323. },
  28324. [
  28325. {
  28326. name: "Normal",
  28327. height: math.unit(1 + 3 / 12, "feet"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28334. {
  28335. anthro: {
  28336. height: math.unit(6, "feet"),
  28337. weight: math.unit(150, "lb"),
  28338. name: "Anthro",
  28339. image: {
  28340. source: "./media/characters/razz/anthro.svg",
  28341. extra: 1437 / 1343,
  28342. bottom: 48 / 1485
  28343. }
  28344. },
  28345. feral: {
  28346. height: math.unit(6, "feet"),
  28347. weight: math.unit(150, "lb"),
  28348. name: "Feral",
  28349. image: {
  28350. source: "./media/characters/razz/feral.svg",
  28351. extra: 2569 / 1385,
  28352. bottom: 95 / 2664
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(6, "feet"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(9 + 4 / 12, "feet"),
  28369. weight: math.unit(500, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/morrigan/front.svg",
  28373. extra: 2707 / 2579,
  28374. bottom: 156 / 2863
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(9 + 4 / 12, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(5, "stories"),
  28391. weight: math.unit(4000, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/jenene/front.svg",
  28395. extra: 1780 / 1710,
  28396. bottom: 57 / 1837
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(5, "stories"),
  28404. default: true
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28410. {
  28411. taurSfw: {
  28412. height: math.unit(10, "meters"),
  28413. weight: math.unit(17500, "kg"),
  28414. name: "Taur",
  28415. image: {
  28416. source: "./media/characters/faey/taur-sfw.svg",
  28417. extra: 1200 / 968,
  28418. bottom: 41 / 1241
  28419. }
  28420. },
  28421. chestmaw: {
  28422. height: math.unit(2.01, "meters"),
  28423. name: "Chestmaw",
  28424. image: {
  28425. source: "./media/characters/faey/chestmaw.svg"
  28426. }
  28427. },
  28428. foot: {
  28429. height: math.unit(2.43, "meters"),
  28430. name: "Foot",
  28431. image: {
  28432. source: "./media/characters/faey/foot.svg"
  28433. }
  28434. },
  28435. jaws: {
  28436. height: math.unit(1.66, "meters"),
  28437. name: "Jaws",
  28438. image: {
  28439. source: "./media/characters/faey/jaws.svg"
  28440. }
  28441. },
  28442. tongues: {
  28443. height: math.unit(2.01, "meters"),
  28444. name: "Tongues",
  28445. image: {
  28446. source: "./media/characters/faey/tongues.svg"
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Small",
  28453. height: math.unit(10, "meters"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Big",
  28458. height: math.unit(500000, "km")
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(7, "feet"),
  28467. weight: math.unit(275, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/roku/front.svg",
  28471. extra: 903 / 878,
  28472. bottom: 37 / 940
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(7, "feet"),
  28480. default: true
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(500, "feet")
  28485. },
  28486. {
  28487. name: "Megamacro",
  28488. height: math.unit(200, "miles")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(6 + 2 / 12, "feet"),
  28497. weight: math.unit(150, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/lira/front.svg",
  28501. extra: 1727 / 1605,
  28502. bottom: 26 / 1753
  28503. }
  28504. },
  28505. back: {
  28506. height: math.unit(6 + 2 / 12, "feet"),
  28507. weight: math.unit(150, "lb"),
  28508. name: "Back",
  28509. image: {
  28510. source: "./media/characters/lira/back.svg",
  28511. extra: 1713/1621,
  28512. bottom: 20/1733
  28513. }
  28514. },
  28515. hand: {
  28516. height: math.unit(0.75, "feet"),
  28517. name: "Hand",
  28518. image: {
  28519. source: "./media/characters/lira/hand.svg"
  28520. }
  28521. },
  28522. maw: {
  28523. height: math.unit(0.65, "feet"),
  28524. name: "Maw",
  28525. image: {
  28526. source: "./media/characters/lira/maw.svg"
  28527. }
  28528. },
  28529. pawDigi: {
  28530. height: math.unit(1.6, "feet"),
  28531. name: "Paw Digi",
  28532. image: {
  28533. source: "./media/characters/lira/paw-digi.svg"
  28534. }
  28535. },
  28536. pawPlanti: {
  28537. height: math.unit(1.4, "feet"),
  28538. name: "Paw Planti",
  28539. image: {
  28540. source: "./media/characters/lira/paw-planti.svg"
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(6 + 2 / 12, "feet"),
  28548. default: true
  28549. },
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(100, "feet")
  28553. },
  28554. {
  28555. name: "Macro²",
  28556. height: math.unit(1600, "feet")
  28557. },
  28558. {
  28559. name: "Planetary",
  28560. height: math.unit(20, "earths")
  28561. },
  28562. ]
  28563. ))
  28564. characterMakers.push(() => makeCharacter(
  28565. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28566. {
  28567. front: {
  28568. height: math.unit(6, "feet"),
  28569. weight: math.unit(150, "lb"),
  28570. name: "Front",
  28571. image: {
  28572. source: "./media/characters/hadjet/front.svg",
  28573. extra: 1480 / 1346,
  28574. bottom: 26 / 1506
  28575. }
  28576. },
  28577. frontNsfw: {
  28578. height: math.unit(6, "feet"),
  28579. weight: math.unit(150, "lb"),
  28580. name: "Front (NSFW)",
  28581. image: {
  28582. source: "./media/characters/hadjet/front-nsfw.svg",
  28583. extra: 1440 / 1358,
  28584. bottom: 52 / 1492
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(10, "stories"),
  28592. default: true
  28593. },
  28594. {
  28595. name: "Megamacro",
  28596. height: math.unit(1.5, "miles")
  28597. },
  28598. {
  28599. name: "Megamacro+",
  28600. height: math.unit(5, "miles")
  28601. },
  28602. ]
  28603. ))
  28604. characterMakers.push(() => makeCharacter(
  28605. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28606. {
  28607. side: {
  28608. height: math.unit(106, "feet"),
  28609. weight: math.unit(500, "tonnes"),
  28610. name: "Side",
  28611. image: {
  28612. source: "./media/characters/kodran/side.svg",
  28613. extra: 553 / 480,
  28614. bottom: 33 / 586
  28615. }
  28616. },
  28617. front: {
  28618. height: math.unit(132, "feet"),
  28619. weight: math.unit(500, "tonnes"),
  28620. name: "Front",
  28621. image: {
  28622. source: "./media/characters/kodran/front.svg",
  28623. extra: 667 / 643,
  28624. bottom: 42 / 709
  28625. }
  28626. },
  28627. flying: {
  28628. height: math.unit(350, "feet"),
  28629. weight: math.unit(500, "tonnes"),
  28630. name: "Flying",
  28631. image: {
  28632. source: "./media/characters/kodran/flying.svg"
  28633. }
  28634. },
  28635. foot: {
  28636. height: math.unit(33, "feet"),
  28637. name: "Foot",
  28638. image: {
  28639. source: "./media/characters/kodran/foot.svg"
  28640. }
  28641. },
  28642. footFront: {
  28643. height: math.unit(19, "feet"),
  28644. name: "Foot (Front)",
  28645. image: {
  28646. source: "./media/characters/kodran/foot-front.svg",
  28647. extra: 261 / 261,
  28648. bottom: 91 / 352
  28649. }
  28650. },
  28651. headFront: {
  28652. height: math.unit(53, "feet"),
  28653. name: "Head (Front)",
  28654. image: {
  28655. source: "./media/characters/kodran/head-front.svg"
  28656. }
  28657. },
  28658. headSide: {
  28659. height: math.unit(65, "feet"),
  28660. name: "Head (Side)",
  28661. image: {
  28662. source: "./media/characters/kodran/head-side.svg"
  28663. }
  28664. },
  28665. throat: {
  28666. height: math.unit(79, "feet"),
  28667. name: "Throat",
  28668. image: {
  28669. source: "./media/characters/kodran/throat.svg"
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Large",
  28676. height: math.unit(106, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28683. {
  28684. side: {
  28685. height: math.unit(11, "feet"),
  28686. weight: math.unit(150, "lb"),
  28687. name: "Side",
  28688. image: {
  28689. source: "./media/characters/pyxaron/side.svg",
  28690. extra: 305 / 195,
  28691. bottom: 17 / 322
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Normal",
  28698. height: math.unit(11, "feet"),
  28699. default: true
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/meep/front.svg",
  28712. extra: 88 / 80,
  28713. bottom: 6 / 94
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Fun Sized",
  28720. height: math.unit(2, "inches"),
  28721. default: true
  28722. },
  28723. {
  28724. name: "Friend Sized",
  28725. height: math.unit(8, "inches")
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(15, "feet"),
  28734. weight: math.unit(2500, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/holly-rabbit/front.svg",
  28738. extra: 1433 / 1233,
  28739. bottom: 125 / 1558
  28740. }
  28741. },
  28742. dick: {
  28743. height: math.unit(4.6, "feet"),
  28744. name: "Dick",
  28745. image: {
  28746. source: "./media/characters/holly-rabbit/dick.svg"
  28747. }
  28748. },
  28749. },
  28750. [
  28751. {
  28752. name: "Normal",
  28753. height: math.unit(15, "feet"),
  28754. default: true
  28755. },
  28756. {
  28757. name: "Macro",
  28758. height: math.unit(250, "feet")
  28759. },
  28760. {
  28761. name: "Macro+",
  28762. height: math.unit(2500, "feet")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(3.02, "meters"),
  28771. weight: math.unit(500, "kg"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/drena/front.svg",
  28775. extra: 282 / 243,
  28776. bottom: 8 / 290
  28777. }
  28778. },
  28779. side: {
  28780. height: math.unit(3.02, "meters"),
  28781. weight: math.unit(500, "kg"),
  28782. name: "Side",
  28783. image: {
  28784. source: "./media/characters/drena/side.svg",
  28785. extra: 280 / 245,
  28786. bottom: 10 / 290
  28787. }
  28788. },
  28789. back: {
  28790. height: math.unit(3.02, "meters"),
  28791. weight: math.unit(500, "kg"),
  28792. name: "Back",
  28793. image: {
  28794. source: "./media/characters/drena/back.svg",
  28795. extra: 278 / 243,
  28796. bottom: 2 / 280
  28797. }
  28798. },
  28799. foot: {
  28800. height: math.unit(0.75, "meters"),
  28801. name: "Foot",
  28802. image: {
  28803. source: "./media/characters/drena/foot.svg"
  28804. }
  28805. },
  28806. maw: {
  28807. height: math.unit(0.82, "meters"),
  28808. name: "Maw",
  28809. image: {
  28810. source: "./media/characters/drena/maw.svg"
  28811. }
  28812. },
  28813. rump: {
  28814. height: math.unit(0.93, "meters"),
  28815. name: "Rump",
  28816. image: {
  28817. source: "./media/characters/drena/rump.svg"
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(3.02, "meters"),
  28825. default: true
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(6 + 4 / 12, "feet"),
  28834. weight: math.unit(250, "lb"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/remmyzilla/front.svg",
  28838. extra: 4033 / 3588,
  28839. bottom: 123 / 4156
  28840. }
  28841. },
  28842. back: {
  28843. height: math.unit(6 + 4 / 12, "feet"),
  28844. weight: math.unit(250, "lb"),
  28845. name: "Back",
  28846. image: {
  28847. source: "./media/characters/remmyzilla/back.svg",
  28848. extra: 2687 / 2555,
  28849. bottom: 48 / 2735
  28850. }
  28851. },
  28852. paw: {
  28853. height: math.unit(1.73, "feet"),
  28854. name: "Paw",
  28855. image: {
  28856. source: "./media/characters/remmyzilla/paw.svg"
  28857. }
  28858. },
  28859. maw: {
  28860. height: math.unit(1.73, "feet"),
  28861. name: "Maw",
  28862. image: {
  28863. source: "./media/characters/remmyzilla/maw.svg"
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(6 + 4 / 12, "feet")
  28871. },
  28872. {
  28873. name: "Minimacro",
  28874. height: math.unit(12 + 8 / 12, "feet")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(640, "feet"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Megamacro",
  28883. height: math.unit(6400, "feet")
  28884. },
  28885. {
  28886. name: "Gigamacro",
  28887. height: math.unit(64000, "miles")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(2.5, "meters"),
  28896. weight: math.unit(300, "lb"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/lawrence/front.svg",
  28900. extra: 357 / 335,
  28901. bottom: 30 / 387
  28902. }
  28903. },
  28904. back: {
  28905. height: math.unit(2.5, "meters"),
  28906. weight: math.unit(300, "lb"),
  28907. name: "Back",
  28908. image: {
  28909. source: "./media/characters/lawrence/back.svg",
  28910. extra: 357 / 338,
  28911. bottom: 16 / 373
  28912. }
  28913. },
  28914. head: {
  28915. height: math.unit(0.9, "meter"),
  28916. name: "Head",
  28917. image: {
  28918. source: "./media/characters/lawrence/head.svg"
  28919. }
  28920. },
  28921. maw: {
  28922. height: math.unit(0.7, "meter"),
  28923. name: "Maw",
  28924. image: {
  28925. source: "./media/characters/lawrence/maw.svg"
  28926. }
  28927. },
  28928. footBottom: {
  28929. height: math.unit(0.5, "meter"),
  28930. name: "Foot (Bottom)",
  28931. image: {
  28932. source: "./media/characters/lawrence/foot-bottom.svg"
  28933. }
  28934. },
  28935. footTop: {
  28936. height: math.unit(0.5, "meter"),
  28937. name: "Foot (Top)",
  28938. image: {
  28939. source: "./media/characters/lawrence/foot-top.svg"
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(2.5, "meters"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(95, "meters")
  28952. },
  28953. {
  28954. name: "Megamacro",
  28955. height: math.unit(150, "km")
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28961. {
  28962. front: {
  28963. height: math.unit(4.2, "meters"),
  28964. name: "Front",
  28965. image: {
  28966. source: "./media/characters/sydney/front.svg",
  28967. extra: 1323 / 1277,
  28968. bottom: 111 / 1434
  28969. }
  28970. },
  28971. },
  28972. [
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(4.2, "meters"),
  28976. default: true
  28977. },
  28978. ]
  28979. ))
  28980. characterMakers.push(() => makeCharacter(
  28981. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28982. {
  28983. back: {
  28984. height: math.unit(201, "feet"),
  28985. name: "Back",
  28986. image: {
  28987. source: "./media/characters/jessica/back.svg",
  28988. extra: 273 / 259,
  28989. bottom: 7 / 280
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Normal",
  28996. height: math.unit(201, "feet"),
  28997. default: true
  28998. },
  28999. {
  29000. name: "Megamacro",
  29001. height: math.unit(8, "miles")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29007. {
  29008. side: {
  29009. height: math.unit(5.6, "m"),
  29010. weight: math.unit(8000, "kg"),
  29011. name: "Side",
  29012. image: {
  29013. source: "./media/characters/victoria/side.svg",
  29014. extra: 1542/1229,
  29015. bottom: 124/1666
  29016. }
  29017. },
  29018. maw: {
  29019. height: math.unit(7.14, "feet"),
  29020. name: "Maw",
  29021. image: {
  29022. source: "./media/characters/victoria/maw.svg"
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(5.6, "m"),
  29030. default: true
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29036. {
  29037. front: {
  29038. height: math.unit(5 + 6 / 12, "feet"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/cat/front.svg",
  29042. extra: 1449/1295,
  29043. bottom: 34/1483
  29044. },
  29045. form: "cat",
  29046. default: true
  29047. },
  29048. back: {
  29049. height: math.unit(5 + 6 / 12, "feet"),
  29050. name: "Back",
  29051. image: {
  29052. source: "./media/characters/cat/back.svg",
  29053. extra: 1466/1301,
  29054. bottom: 19/1485
  29055. },
  29056. form: "cat"
  29057. },
  29058. taur: {
  29059. height: math.unit(7, "feet"),
  29060. name: "Taur",
  29061. image: {
  29062. source: "./media/characters/cat/taur.svg",
  29063. extra: 1389/1233,
  29064. bottom: 83/1472
  29065. },
  29066. form: "taur",
  29067. default: true
  29068. },
  29069. lucarioFront: {
  29070. height: math.unit(4, "feet"),
  29071. name: "Lucario (Front)",
  29072. image: {
  29073. source: "./media/characters/cat/lucario-front.svg",
  29074. extra: 1149/1019,
  29075. bottom: 84/1233
  29076. },
  29077. form: "lucario",
  29078. default: true
  29079. },
  29080. lucarioBack: {
  29081. height: math.unit(4, "feet"),
  29082. name: "Lucario (Back)",
  29083. image: {
  29084. source: "./media/characters/cat/lucario-back.svg",
  29085. extra: 1190/1059,
  29086. bottom: 33/1223
  29087. },
  29088. form: "lucario"
  29089. },
  29090. megaLucario: {
  29091. height: math.unit(4, "feet"),
  29092. name: "Mega Lucario",
  29093. image: {
  29094. source: "./media/characters/cat/mega-lucario.svg",
  29095. extra: 1515 / 1319,
  29096. bottom: 63 / 1578
  29097. },
  29098. form: "lucario"
  29099. },
  29100. nickit: {
  29101. height: math.unit(2, "feet"),
  29102. name: "Nickit",
  29103. image: {
  29104. source: "./media/characters/cat/nickit.svg",
  29105. extra: 1980 / 1585,
  29106. bottom: 102 / 2082
  29107. },
  29108. form: "nickit",
  29109. default: true
  29110. },
  29111. lopunnyFront: {
  29112. height: math.unit(5, "feet"),
  29113. name: "Lopunny (Front)",
  29114. image: {
  29115. source: "./media/characters/cat/lopunny-front.svg",
  29116. extra: 1782 / 1469,
  29117. bottom: 38 / 1820
  29118. },
  29119. form: "lopunny",
  29120. default: true
  29121. },
  29122. lopunnyBack: {
  29123. height: math.unit(5, "feet"),
  29124. name: "Lopunny (Back)",
  29125. image: {
  29126. source: "./media/characters/cat/lopunny-back.svg",
  29127. extra: 1660 / 1490,
  29128. bottom: 25 / 1685
  29129. },
  29130. form: "lopunny"
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Really small",
  29136. height: math.unit(1, "nm")
  29137. },
  29138. {
  29139. name: "Micro",
  29140. height: math.unit(5, "inches")
  29141. },
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(5 + 6 / 12, "feet"),
  29145. default: true
  29146. },
  29147. {
  29148. name: "Macro",
  29149. height: math.unit(50, "feet")
  29150. },
  29151. {
  29152. name: "Macro+",
  29153. height: math.unit(150, "feet")
  29154. },
  29155. {
  29156. name: "Megamacro",
  29157. height: math.unit(100, "miles")
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(63.4, "meters"),
  29166. weight: math.unit(3.28349e+6, "kilograms"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/kirina-violet/front.svg",
  29170. extra: 2812 / 2725,
  29171. bottom: 0 / 2812
  29172. }
  29173. },
  29174. back: {
  29175. height: math.unit(63.4, "meters"),
  29176. weight: math.unit(3.28349e+6, "kilograms"),
  29177. name: "Back",
  29178. image: {
  29179. source: "./media/characters/kirina-violet/back.svg",
  29180. extra: 2812 / 2725,
  29181. bottom: 0 / 2812
  29182. }
  29183. },
  29184. mouth: {
  29185. height: math.unit(4.35, "meters"),
  29186. name: "Mouth",
  29187. image: {
  29188. source: "./media/characters/kirina-violet/mouth.svg"
  29189. }
  29190. },
  29191. paw: {
  29192. height: math.unit(5.6, "meters"),
  29193. name: "Paw",
  29194. image: {
  29195. source: "./media/characters/kirina-violet/paw.svg"
  29196. }
  29197. },
  29198. tail: {
  29199. height: math.unit(18, "meters"),
  29200. name: "Tail",
  29201. image: {
  29202. source: "./media/characters/kirina-violet/tail.svg"
  29203. }
  29204. },
  29205. },
  29206. [
  29207. {
  29208. name: "Macro",
  29209. height: math.unit(63.4, "meters"),
  29210. default: true
  29211. },
  29212. ]
  29213. ))
  29214. characterMakers.push(() => makeCharacter(
  29215. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29216. {
  29217. front: {
  29218. height: math.unit(75, "feet"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/cat-gigachu/front.svg",
  29222. extra: 1239/1027,
  29223. bottom: 32/1271
  29224. }
  29225. },
  29226. back: {
  29227. height: math.unit(75, "feet"),
  29228. name: "Back",
  29229. image: {
  29230. source: "./media/characters/cat-gigachu/back.svg",
  29231. extra: 1229/1030,
  29232. bottom: 9/1238
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Dynamax",
  29239. height: math.unit(75, "feet"),
  29240. default: true
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(6, "feet"),
  29249. weight: math.unit(150, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/sfaiyan/front.svg",
  29253. extra: 999 / 978,
  29254. bottom: 5 / 1004
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(1.82, "meters")
  29262. },
  29263. {
  29264. name: "Giant",
  29265. height: math.unit(2.27, "km"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(179, "cm"),
  29275. weight: math.unit(100, "kg"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/raunehkeli/front.svg",
  29279. extra: 1934 / 1926,
  29280. bottom: 0 / 1934
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Normal",
  29287. height: math.unit(179, "cm")
  29288. },
  29289. {
  29290. name: "Maximum",
  29291. height: math.unit(575, "meters"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(6, "feet"),
  29301. weight: math.unit(150, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29305. extra: 2625 / 2518,
  29306. bottom: 60 / 2685
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(6 + 2 / 12, "feet")
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(1180, "feet"),
  29318. default: true
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(5 + 6 / 12, "feet"),
  29327. weight: math.unit(108, "lb"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/lilith-zott/front.svg",
  29331. extra: 2510 / 2238,
  29332. bottom: 100 / 2610
  29333. }
  29334. },
  29335. frontDressed: {
  29336. height: math.unit(5 + 6 / 12, "feet"),
  29337. weight: math.unit(108, "lb"),
  29338. name: "Front (Dressed)",
  29339. image: {
  29340. source: "./media/characters/lilith-zott/front-dressed.svg",
  29341. extra: 2510 / 2238,
  29342. bottom: 100 / 2610
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(5 + 6 / 12, "feet")
  29350. },
  29351. {
  29352. name: "Macro",
  29353. height: math.unit(1030, "feet"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29360. {
  29361. front: {
  29362. height: math.unit(6, "feet"),
  29363. weight: math.unit(150, "lb"),
  29364. name: "Front",
  29365. image: {
  29366. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29367. extra: 2567 / 2435,
  29368. bottom: 39 / 2606
  29369. }
  29370. },
  29371. frontSuper: {
  29372. height: math.unit(6, "feet"),
  29373. name: "Front (Super)",
  29374. image: {
  29375. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29376. extra: 2567 / 2435,
  29377. bottom: 39 / 2606
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(5 + 10 / 12, "feet")
  29385. },
  29386. {
  29387. name: "Macro",
  29388. height: math.unit(1100, "feet"),
  29389. default: true
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(100, "miles"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/sona/front.svg",
  29401. extra: 2433 / 2201,
  29402. bottom: 53 / 2486
  29403. }
  29404. },
  29405. foot: {
  29406. height: math.unit(16.1, "miles"),
  29407. name: "Foot",
  29408. image: {
  29409. source: "./media/characters/sona/foot.svg"
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Macro",
  29416. height: math.unit(100, "miles"),
  29417. default: true
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(6, "feet"),
  29426. weight: math.unit(150, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/bailey/front.svg",
  29430. extra: 1778 / 1724,
  29431. bottom: 30 / 1808
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Micro",
  29438. height: math.unit(4, "inches")
  29439. },
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(5 + 5 / 12, "feet"),
  29443. default: true
  29444. },
  29445. {
  29446. name: "Macro",
  29447. height: math.unit(250, "feet")
  29448. },
  29449. {
  29450. name: "Megamacro",
  29451. height: math.unit(100, "miles")
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29457. {
  29458. front: {
  29459. height: math.unit(5 + 2 / 12, "feet"),
  29460. weight: math.unit(120, "lb"),
  29461. name: "Front",
  29462. image: {
  29463. source: "./media/characters/snaps/front.svg",
  29464. extra: 2370 / 2177,
  29465. bottom: 48 / 2418
  29466. }
  29467. },
  29468. back: {
  29469. height: math.unit(5 + 2 / 12, "feet"),
  29470. weight: math.unit(120, "lb"),
  29471. name: "Back",
  29472. image: {
  29473. source: "./media/characters/snaps/back.svg",
  29474. extra: 2408 / 2258,
  29475. bottom: 15 / 2423
  29476. }
  29477. },
  29478. },
  29479. [
  29480. {
  29481. name: "Micro",
  29482. height: math.unit(9, "inches")
  29483. },
  29484. {
  29485. name: "Normal",
  29486. height: math.unit(5 + 2 / 12, "feet"),
  29487. default: true
  29488. },
  29489. {
  29490. name: "Mini Macro",
  29491. height: math.unit(10, "feet")
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29497. {
  29498. front: {
  29499. height: math.unit(1.8, "meters"),
  29500. weight: math.unit(85, "kg"),
  29501. name: "Front",
  29502. image: {
  29503. source: "./media/characters/azteck/front.svg",
  29504. extra: 2815 / 2625,
  29505. bottom: 89 / 2904
  29506. }
  29507. },
  29508. back: {
  29509. height: math.unit(1.8, "meters"),
  29510. weight: math.unit(85, "kg"),
  29511. name: "Back",
  29512. image: {
  29513. source: "./media/characters/azteck/back.svg",
  29514. extra: 2856 / 2648,
  29515. bottom: 85 / 2941
  29516. }
  29517. },
  29518. frontDressed: {
  29519. height: math.unit(1.8, "meters"),
  29520. weight: math.unit(85, "kg"),
  29521. name: "Front (Dressed)",
  29522. image: {
  29523. source: "./media/characters/azteck/front-dressed.svg",
  29524. extra: 2147 / 2003,
  29525. bottom: 68 / 2215
  29526. }
  29527. },
  29528. head: {
  29529. height: math.unit(0.47, "meters"),
  29530. weight: math.unit(85, "kg"),
  29531. name: "Head",
  29532. image: {
  29533. source: "./media/characters/azteck/head.svg"
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Bite sized",
  29540. height: math.unit(16, "cm")
  29541. },
  29542. {
  29543. name: "Normal",
  29544. height: math.unit(1.8, "meters"),
  29545. default: true
  29546. },
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29551. {
  29552. front: {
  29553. height: math.unit(6, "feet"),
  29554. weight: math.unit(150, "lb"),
  29555. name: "Front",
  29556. image: {
  29557. source: "./media/characters/pidge/front.svg",
  29558. extra: 620 / 588,
  29559. bottom: 9 / 629
  29560. }
  29561. },
  29562. back: {
  29563. height: math.unit(6, "feet"),
  29564. weight: math.unit(150, "lb"),
  29565. name: "Back",
  29566. image: {
  29567. source: "./media/characters/pidge/back.svg",
  29568. extra: 620 / 588,
  29569. bottom: 9 / 629
  29570. }
  29571. },
  29572. },
  29573. [
  29574. {
  29575. name: "Macro",
  29576. height: math.unit(1, "mile"),
  29577. default: true
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(6, "feet"),
  29586. weight: math.unit(150, "lb"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/en/front.svg",
  29590. extra: 1697 / 1563,
  29591. bottom: 103 / 1800
  29592. }
  29593. },
  29594. back: {
  29595. height: math.unit(6, "feet"),
  29596. weight: math.unit(150, "lb"),
  29597. name: "Back",
  29598. image: {
  29599. source: "./media/characters/en/back.svg",
  29600. extra: 1700 / 1570,
  29601. bottom: 51 / 1751
  29602. }
  29603. },
  29604. frontDressed: {
  29605. height: math.unit(6, "feet"),
  29606. weight: math.unit(150, "lb"),
  29607. name: "Front (Dressed)",
  29608. image: {
  29609. source: "./media/characters/en/front-dressed.svg",
  29610. extra: 1697 / 1563,
  29611. bottom: 103 / 1800
  29612. }
  29613. },
  29614. backDressed: {
  29615. height: math.unit(6, "feet"),
  29616. weight: math.unit(150, "lb"),
  29617. name: "Back (Dressed)",
  29618. image: {
  29619. source: "./media/characters/en/back-dressed.svg",
  29620. extra: 1700 / 1570,
  29621. bottom: 51 / 1751
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Macro",
  29628. height: math.unit(210, "feet"),
  29629. default: true
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(6, "feet"),
  29638. weight: math.unit(150, "lb"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/haze-orris/front.svg",
  29642. extra: 3975 / 3525,
  29643. bottom: 137 / 4112
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Micro",
  29650. height: math.unit(150, "mm"),
  29651. default: true
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(6, "feet"),
  29660. weight: math.unit(150, "lb"),
  29661. name: "Front",
  29662. image: {
  29663. source: "./media/characters/casselene-yaro/front.svg",
  29664. extra: 4721 / 4541,
  29665. bottom: 82 / 4803
  29666. }
  29667. },
  29668. back: {
  29669. height: math.unit(6, "feet"),
  29670. weight: math.unit(150, "lb"),
  29671. name: "Back",
  29672. image: {
  29673. source: "./media/characters/casselene-yaro/back.svg",
  29674. extra: 4569 / 4377,
  29675. bottom: 69 / 4638
  29676. }
  29677. },
  29678. frontDressed: {
  29679. height: math.unit(6, "feet"),
  29680. weight: math.unit(150, "lb"),
  29681. name: "Front-dressed",
  29682. image: {
  29683. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29684. extra: 4721 / 4541,
  29685. bottom: 82 / 4803
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Macro",
  29692. height: math.unit(190, "feet"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(6, "feet"),
  29702. weight: math.unit(150, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/myra-rue-delore/front.svg",
  29706. extra: 1340 / 1308,
  29707. bottom: 67 / 1407
  29708. }
  29709. },
  29710. back: {
  29711. height: math.unit(6, "feet"),
  29712. weight: math.unit(150, "lb"),
  29713. name: "Back",
  29714. image: {
  29715. source: "./media/characters/myra-rue-delore/back.svg",
  29716. extra: 1341 / 1310,
  29717. bottom: 40 / 1381
  29718. }
  29719. },
  29720. frontDressed: {
  29721. height: math.unit(6, "feet"),
  29722. weight: math.unit(150, "lb"),
  29723. name: "Front (Dressed)",
  29724. image: {
  29725. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29726. extra: 1340 / 1308,
  29727. bottom: 67 / 1407
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(150, "feet"),
  29735. default: true
  29736. },
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29741. {
  29742. front: {
  29743. height: math.unit(10, "feet"),
  29744. weight: math.unit(15015, "lb"),
  29745. name: "Front",
  29746. image: {
  29747. source: "./media/characters/fem!plat/front.svg",
  29748. extra: 2799 / 2604,
  29749. bottom: 149 / 2948
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(10, "feet"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Macro",
  29761. height: math.unit(100, "feet")
  29762. },
  29763. {
  29764. name: "Megamacro",
  29765. height: math.unit(1000, "feet")
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(15 + 5 / 12, "feet"),
  29774. weight: math.unit(4600, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/neapolitan-ananassa/front.svg",
  29778. extra: 2903 / 2736,
  29779. bottom: 0 / 2903
  29780. }
  29781. },
  29782. side: {
  29783. height: math.unit(15 + 5 / 12, "feet"),
  29784. weight: math.unit(4600, "lb"),
  29785. name: "Side",
  29786. image: {
  29787. source: "./media/characters/neapolitan-ananassa/side.svg",
  29788. extra: 2925 / 2719,
  29789. bottom: 0 / 2925
  29790. }
  29791. },
  29792. back: {
  29793. height: math.unit(15 + 5 / 12, "feet"),
  29794. weight: math.unit(4600, "lb"),
  29795. name: "Back",
  29796. image: {
  29797. source: "./media/characters/neapolitan-ananassa/back.svg",
  29798. extra: 2903 / 2736,
  29799. bottom: 0 / 2903
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(15 + 5 / 12, "feet"),
  29807. default: true
  29808. },
  29809. {
  29810. name: "Post-Millenium",
  29811. height: math.unit(35 + 5 / 12, "feet")
  29812. },
  29813. {
  29814. name: "Post-Era",
  29815. height: math.unit(450 + 5 / 12, "feet")
  29816. },
  29817. ]
  29818. ))
  29819. characterMakers.push(() => makeCharacter(
  29820. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29821. {
  29822. front: {
  29823. height: math.unit(300, "meters"),
  29824. weight: math.unit(125000, "tonnes"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/pazuzu/front.svg",
  29828. extra: 877 / 794,
  29829. bottom: 47 / 924
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Macro",
  29836. height: math.unit(300, "meters"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29843. {
  29844. side: {
  29845. height: math.unit(10 + 7 / 12, "feet"),
  29846. weight: math.unit(2.5, "tons"),
  29847. name: "Side",
  29848. image: {
  29849. source: "./media/characters/aasha/side.svg",
  29850. extra: 1345 / 1245,
  29851. bottom: 111 / 1456
  29852. }
  29853. },
  29854. back: {
  29855. height: math.unit(10 + 7 / 12, "feet"),
  29856. weight: math.unit(2.5, "tons"),
  29857. name: "Back",
  29858. image: {
  29859. source: "./media/characters/aasha/back.svg",
  29860. extra: 1133 / 1057,
  29861. bottom: 257 / 1390
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(10 + 7 / 12, "feet"),
  29869. default: true
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29875. {
  29876. front: {
  29877. height: math.unit(6 + 3 / 12, "feet"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/nevan/front.svg",
  29881. extra: 704 / 704,
  29882. bottom: 28 / 732
  29883. }
  29884. },
  29885. back: {
  29886. height: math.unit(6 + 3 / 12, "feet"),
  29887. name: "Back",
  29888. image: {
  29889. source: "./media/characters/nevan/back.svg",
  29890. extra: 714 / 714,
  29891. bottom: 21 / 735
  29892. }
  29893. },
  29894. frontFlaccid: {
  29895. height: math.unit(6 + 3 / 12, "feet"),
  29896. name: "Front (Flaccid)",
  29897. image: {
  29898. source: "./media/characters/nevan/front-flaccid.svg",
  29899. extra: 704 / 704,
  29900. bottom: 28 / 732
  29901. }
  29902. },
  29903. frontErect: {
  29904. height: math.unit(6 + 3 / 12, "feet"),
  29905. name: "Front (Erect)",
  29906. image: {
  29907. source: "./media/characters/nevan/front-erect.svg",
  29908. extra: 704 / 704,
  29909. bottom: 28 / 732
  29910. }
  29911. },
  29912. backFlaccid: {
  29913. height: math.unit(6 + 3 / 12, "feet"),
  29914. name: "Back (Flaccid)",
  29915. image: {
  29916. source: "./media/characters/nevan/back-flaccid.svg",
  29917. extra: 714 / 714,
  29918. bottom: 21 / 735
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(6 + 3 / 12, "feet"),
  29926. default: true
  29927. },
  29928. ]
  29929. ))
  29930. characterMakers.push(() => makeCharacter(
  29931. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29932. {
  29933. front: {
  29934. height: math.unit(4, "feet"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/arhan/front.svg",
  29938. extra: 3368 / 3133,
  29939. bottom: 0 / 3368
  29940. }
  29941. },
  29942. side: {
  29943. height: math.unit(4, "feet"),
  29944. name: "Side",
  29945. image: {
  29946. source: "./media/characters/arhan/side.svg",
  29947. extra: 3347 / 3105,
  29948. bottom: 0 / 3347
  29949. }
  29950. },
  29951. tongue: {
  29952. height: math.unit(1.42, "feet"),
  29953. name: "Tongue",
  29954. image: {
  29955. source: "./media/characters/arhan/tongue.svg"
  29956. }
  29957. },
  29958. head: {
  29959. height: math.unit(0.85, "feet"),
  29960. name: "Head",
  29961. image: {
  29962. source: "./media/characters/arhan/head.svg"
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(4, "feet"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(5 + 7.5 / 12, "feet"),
  29979. weight: math.unit(120, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/digi-duncan/front.svg",
  29983. extra: 330 / 326,
  29984. bottom: 16 / 346
  29985. }
  29986. },
  29987. side: {
  29988. height: math.unit(5 + 7.5 / 12, "feet"),
  29989. weight: math.unit(120, "lb"),
  29990. name: "Side",
  29991. image: {
  29992. source: "./media/characters/digi-duncan/side.svg",
  29993. extra: 341 / 337,
  29994. bottom: 1 / 342
  29995. }
  29996. },
  29997. back: {
  29998. height: math.unit(5 + 7.5 / 12, "feet"),
  29999. weight: math.unit(120, "lb"),
  30000. name: "Back",
  30001. image: {
  30002. source: "./media/characters/digi-duncan/back.svg",
  30003. extra: 330 / 326,
  30004. bottom: 12 / 342
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Speck",
  30011. height: math.unit(0.25, "mm")
  30012. },
  30013. {
  30014. name: "Micro",
  30015. height: math.unit(5, "mm")
  30016. },
  30017. {
  30018. name: "Tiny",
  30019. height: math.unit(0.5, "inches"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Human",
  30024. height: math.unit(5 + 7.5 / 12, "feet")
  30025. },
  30026. {
  30027. name: "Minigiant",
  30028. height: math.unit(8 + 5.25, "feet")
  30029. },
  30030. {
  30031. name: "Giant",
  30032. height: math.unit(2000, "feet")
  30033. },
  30034. {
  30035. name: "Mega",
  30036. height: math.unit(371.1, "miles")
  30037. },
  30038. ]
  30039. ))
  30040. characterMakers.push(() => makeCharacter(
  30041. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30042. {
  30043. front: {
  30044. height: math.unit(2, "meters"),
  30045. weight: math.unit(350, "kg"),
  30046. name: "Front",
  30047. image: {
  30048. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30049. extra: 898 / 838,
  30050. bottom: 9 / 907
  30051. }
  30052. },
  30053. },
  30054. [
  30055. {
  30056. name: "Micro",
  30057. height: math.unit(8, "meters")
  30058. },
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(50, "meters"),
  30062. default: true
  30063. },
  30064. {
  30065. name: "Macro",
  30066. height: math.unit(500, "meters")
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30072. {
  30073. front: {
  30074. height: math.unit(6 + 6 / 12, "feet"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/khardesh/front.svg",
  30078. extra: 1788/1596,
  30079. bottom: 66/1854
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(6 + 6 / 12, "feet"),
  30084. name: "Back",
  30085. image: {
  30086. source: "./media/characters/khardesh/back.svg",
  30087. extra: 1781/1584,
  30088. bottom: 68/1849
  30089. }
  30090. },
  30091. },
  30092. [
  30093. {
  30094. name: "Normal",
  30095. height: math.unit(6 + 6 / 12, "feet"),
  30096. default: true
  30097. },
  30098. {
  30099. name: "Normal+",
  30100. height: math.unit(4, "meters")
  30101. },
  30102. {
  30103. name: "Macro",
  30104. height: math.unit(50, "meters")
  30105. },
  30106. {
  30107. name: "Macro+",
  30108. height: math.unit(100, "meters")
  30109. },
  30110. {
  30111. name: "Megamacro",
  30112. height: math.unit(20, "km")
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(6, "feet"),
  30121. weight: math.unit(150, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/kosho/front.svg",
  30125. extra: 1847 / 1847,
  30126. bottom: 86 / 1933
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Second-stage micro",
  30133. height: math.unit(0.5, "inches")
  30134. },
  30135. {
  30136. name: "First-stage micro",
  30137. height: math.unit(6, "inches")
  30138. },
  30139. {
  30140. name: "Normal",
  30141. height: math.unit(6, "feet"),
  30142. default: true
  30143. },
  30144. {
  30145. name: "First-stage macro",
  30146. height: math.unit(72, "feet")
  30147. },
  30148. {
  30149. name: "Second-stage macro",
  30150. height: math.unit(864, "feet")
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30156. {
  30157. normal: {
  30158. height: math.unit(4 + 6 / 12, "feet"),
  30159. name: "Normal",
  30160. image: {
  30161. source: "./media/characters/hydra/normal.svg",
  30162. extra: 2833 / 2634,
  30163. bottom: 68 / 2901
  30164. }
  30165. },
  30166. smol: {
  30167. height: math.unit(0.705, "inches"),
  30168. name: "Smol",
  30169. image: {
  30170. source: "./media/characters/hydra/smol.svg",
  30171. extra: 2715 / 2540,
  30172. bottom: 0 / 2715
  30173. }
  30174. },
  30175. },
  30176. [
  30177. {
  30178. name: "Normal",
  30179. height: math.unit(4 + 6 / 12, "feet"),
  30180. default: true
  30181. }
  30182. ]
  30183. ))
  30184. characterMakers.push(() => makeCharacter(
  30185. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30186. {
  30187. front: {
  30188. height: math.unit(0.6, "cm"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/daz/front.svg",
  30192. extra: 1682 / 1164,
  30193. bottom: 42 / 1724
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Normal",
  30200. height: math.unit(0.6, "cm"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(6, "feet"),
  30210. weight: math.unit(235, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/theo-pangolin/front.svg",
  30214. extra: 1996 / 1969,
  30215. bottom: 115 / 2111
  30216. }
  30217. },
  30218. back: {
  30219. height: math.unit(6, "feet"),
  30220. weight: math.unit(235, "lb"),
  30221. name: "Back",
  30222. image: {
  30223. source: "./media/characters/theo-pangolin/back.svg",
  30224. extra: 1979 / 1979,
  30225. bottom: 40 / 2019
  30226. }
  30227. },
  30228. feral: {
  30229. height: math.unit(2, "feet"),
  30230. weight: math.unit(30, "lb"),
  30231. name: "Feral",
  30232. image: {
  30233. source: "./media/characters/theo-pangolin/feral.svg",
  30234. extra: 803 / 791,
  30235. bottom: 181 / 984
  30236. }
  30237. },
  30238. footFive: {
  30239. height: math.unit(1.43, "feet"),
  30240. name: "Foot (Five Toes)",
  30241. image: {
  30242. source: "./media/characters/theo-pangolin/foot-five.svg"
  30243. }
  30244. },
  30245. footFour: {
  30246. height: math.unit(1.43, "feet"),
  30247. name: "Foot (Four Toes)",
  30248. image: {
  30249. source: "./media/characters/theo-pangolin/foot-four.svg"
  30250. }
  30251. },
  30252. handFour: {
  30253. height: math.unit(0.81, "feet"),
  30254. name: "Hand (Four Fingers)",
  30255. image: {
  30256. source: "./media/characters/theo-pangolin/hand-four.svg"
  30257. }
  30258. },
  30259. handThree: {
  30260. height: math.unit(0.81, "feet"),
  30261. name: "Hand (Three Fingers)",
  30262. image: {
  30263. source: "./media/characters/theo-pangolin/hand-three.svg"
  30264. }
  30265. },
  30266. headFront: {
  30267. height: math.unit(1.37, "feet"),
  30268. name: "Head (Front)",
  30269. image: {
  30270. source: "./media/characters/theo-pangolin/head-front.svg"
  30271. }
  30272. },
  30273. headSide: {
  30274. height: math.unit(1.43, "feet"),
  30275. name: "Head (Side)",
  30276. image: {
  30277. source: "./media/characters/theo-pangolin/head-side.svg"
  30278. }
  30279. },
  30280. tongue: {
  30281. height: math.unit(2.29, "feet"),
  30282. name: "Tongue",
  30283. image: {
  30284. source: "./media/characters/theo-pangolin/tongue.svg"
  30285. }
  30286. },
  30287. },
  30288. [
  30289. {
  30290. name: "Normal",
  30291. height: math.unit(6, "feet")
  30292. },
  30293. {
  30294. name: "Macro",
  30295. height: math.unit(400, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(6, "inches"),
  30305. weight: math.unit(0.036, "kg"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/renée/front.svg",
  30309. extra: 900 / 886,
  30310. bottom: 8 / 908
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Nano",
  30317. height: math.unit(1, "nm")
  30318. },
  30319. {
  30320. name: "Micro",
  30321. height: math.unit(1, "mm")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(6, "inches")
  30326. },
  30327. {
  30328. name: "Macro",
  30329. height: math.unit(2000, "feet"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "Megamacro",
  30334. height: math.unit(2, "km")
  30335. },
  30336. {
  30337. name: "Gigamacro",
  30338. height: math.unit(2000, "km")
  30339. },
  30340. {
  30341. name: "Teramacro",
  30342. height: math.unit(250000, "km")
  30343. },
  30344. ]
  30345. ))
  30346. characterMakers.push(() => makeCharacter(
  30347. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30348. {
  30349. front: {
  30350. height: math.unit(4, "meters"),
  30351. weight: math.unit(150, "kg"),
  30352. name: "Front",
  30353. image: {
  30354. source: "./media/characters/caledvwlch/front.svg",
  30355. extra: 1760 / 1551,
  30356. bottom: 28 / 1788
  30357. }
  30358. },
  30359. side: {
  30360. height: math.unit(4, "meters"),
  30361. weight: math.unit(150, "kg"),
  30362. name: "Side",
  30363. image: {
  30364. source: "./media/characters/caledvwlch/side.svg",
  30365. extra: 1605 / 1536,
  30366. bottom: 31 / 1636
  30367. }
  30368. },
  30369. back: {
  30370. height: math.unit(4, "meters"),
  30371. weight: math.unit(150, "kg"),
  30372. name: "Back",
  30373. image: {
  30374. source: "./media/characters/caledvwlch/back.svg",
  30375. extra: 1635 / 1565,
  30376. bottom: 27 / 1662
  30377. }
  30378. },
  30379. },
  30380. [
  30381. {
  30382. name: "\"Incognito\"",
  30383. height: math.unit(4, "meters")
  30384. },
  30385. {
  30386. name: "Small rampage",
  30387. height: math.unit(600, "meters")
  30388. },
  30389. {
  30390. name: "Mega",
  30391. height: math.unit(30, "km")
  30392. },
  30393. {
  30394. name: "Home-size",
  30395. height: math.unit(50, "km"),
  30396. default: true
  30397. },
  30398. {
  30399. name: "Giga",
  30400. height: math.unit(300, "km")
  30401. },
  30402. {
  30403. name: "Lounging",
  30404. height: math.unit(11000, "km")
  30405. },
  30406. {
  30407. name: "Planet snacking",
  30408. height: math.unit(2000000, "km")
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30414. {
  30415. front: {
  30416. height: math.unit(6, "feet"),
  30417. weight: math.unit(215, "lb"),
  30418. name: "Front",
  30419. image: {
  30420. source: "./media/characters/sapphire-svell/front.svg",
  30421. extra: 495 / 455,
  30422. bottom: 20 / 515
  30423. }
  30424. },
  30425. back: {
  30426. height: math.unit(6, "feet"),
  30427. weight: math.unit(216, "lb"),
  30428. name: "Back",
  30429. image: {
  30430. source: "./media/characters/sapphire-svell/back.svg",
  30431. extra: 497 / 477,
  30432. bottom: 7 / 504
  30433. }
  30434. },
  30435. maw: {
  30436. height: math.unit(1.57, "feet"),
  30437. name: "Maw",
  30438. image: {
  30439. source: "./media/characters/sapphire-svell/maw.svg"
  30440. }
  30441. },
  30442. foot: {
  30443. height: math.unit(1.07, "feet"),
  30444. name: "Foot",
  30445. image: {
  30446. source: "./media/characters/sapphire-svell/foot.svg"
  30447. }
  30448. },
  30449. toering: {
  30450. height: math.unit(1.7, "inch"),
  30451. name: "Toering",
  30452. image: {
  30453. source: "./media/characters/sapphire-svell/toering.svg"
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Normal",
  30460. height: math.unit(300, "feet"),
  30461. default: true
  30462. },
  30463. {
  30464. name: "Augmented",
  30465. height: math.unit(1250, "feet")
  30466. },
  30467. {
  30468. name: "Unleashed",
  30469. height: math.unit(3000, "feet")
  30470. },
  30471. ]
  30472. ))
  30473. characterMakers.push(() => makeCharacter(
  30474. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30475. {
  30476. side: {
  30477. height: math.unit(2 + 3 / 12, "feet"),
  30478. weight: math.unit(110, "lb"),
  30479. name: "Side",
  30480. image: {
  30481. source: "./media/characters/glitch-flux/side.svg",
  30482. extra: 997 / 805,
  30483. bottom: 20 / 1017
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Normal",
  30490. height: math.unit(2 + 3 / 12, "feet"),
  30491. default: true
  30492. },
  30493. ]
  30494. ))
  30495. characterMakers.push(() => makeCharacter(
  30496. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30497. {
  30498. front: {
  30499. height: math.unit(4, "meters"),
  30500. name: "Front",
  30501. image: {
  30502. source: "./media/characters/mid/front.svg",
  30503. extra: 507 / 476,
  30504. bottom: 17 / 524
  30505. }
  30506. },
  30507. back: {
  30508. height: math.unit(4, "meters"),
  30509. name: "Back",
  30510. image: {
  30511. source: "./media/characters/mid/back.svg",
  30512. extra: 519 / 487,
  30513. bottom: 7 / 526
  30514. }
  30515. },
  30516. stuck: {
  30517. height: math.unit(2.2, "meters"),
  30518. name: "Stuck",
  30519. image: {
  30520. source: "./media/characters/mid/stuck.svg",
  30521. extra: 1951 / 1869,
  30522. bottom: 88 / 2039
  30523. }
  30524. }
  30525. },
  30526. [
  30527. {
  30528. name: "Normal",
  30529. height: math.unit(4, "meters"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Big",
  30534. height: math.unit(10, "meters")
  30535. },
  30536. {
  30537. name: "Macro",
  30538. height: math.unit(800, "meters")
  30539. },
  30540. {
  30541. name: "Megamacro",
  30542. height: math.unit(100, "km")
  30543. },
  30544. {
  30545. name: "Overgrown",
  30546. height: math.unit(1, "parsec")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(2.5, "meters"),
  30555. weight: math.unit(225, "kg"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/iris/front.svg",
  30559. extra: 3348 / 3251,
  30560. bottom: 205 / 3553
  30561. }
  30562. },
  30563. maw: {
  30564. height: math.unit(0.56, "meter"),
  30565. name: "Maw",
  30566. image: {
  30567. source: "./media/characters/iris/maw.svg"
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Mewter cat",
  30574. height: math.unit(1.2, "meters")
  30575. },
  30576. {
  30577. name: "Minimacro",
  30578. height: math.unit(2.5, "meters"),
  30579. default: true
  30580. },
  30581. {
  30582. name: "Macro",
  30583. height: math.unit(180, "meters")
  30584. },
  30585. {
  30586. name: "Megamacro",
  30587. height: math.unit(2746, "meters")
  30588. },
  30589. ]
  30590. ))
  30591. characterMakers.push(() => makeCharacter(
  30592. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30593. {
  30594. front: {
  30595. height: math.unit(6, "feet"),
  30596. weight: math.unit(135, "lb"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/axel/front.svg",
  30600. extra: 908 / 908,
  30601. bottom: 58 / 966
  30602. }
  30603. },
  30604. side: {
  30605. height: math.unit(6, "feet"),
  30606. weight: math.unit(135, "lb"),
  30607. name: "Side",
  30608. image: {
  30609. source: "./media/characters/axel/side.svg",
  30610. extra: 958 / 958,
  30611. bottom: 11 / 969
  30612. }
  30613. },
  30614. back: {
  30615. height: math.unit(6, "feet"),
  30616. weight: math.unit(135, "lb"),
  30617. name: "Back",
  30618. image: {
  30619. source: "./media/characters/axel/back.svg",
  30620. extra: 887 / 887,
  30621. bottom: 34 / 921
  30622. }
  30623. },
  30624. head: {
  30625. height: math.unit(1.07, "feet"),
  30626. name: "Head",
  30627. image: {
  30628. source: "./media/characters/axel/head.svg"
  30629. }
  30630. },
  30631. beak: {
  30632. height: math.unit(1.4, "feet"),
  30633. name: "Beak",
  30634. image: {
  30635. source: "./media/characters/axel/beak.svg"
  30636. }
  30637. },
  30638. beakSide: {
  30639. height: math.unit(1.4, "feet"),
  30640. name: "Beak Side",
  30641. image: {
  30642. source: "./media/characters/axel/beak-side.svg"
  30643. }
  30644. },
  30645. sheath: {
  30646. height: math.unit(0.5, "feet"),
  30647. name: "Sheath",
  30648. image: {
  30649. source: "./media/characters/axel/sheath.svg"
  30650. }
  30651. },
  30652. dick: {
  30653. height: math.unit(0.98, "feet"),
  30654. name: "Dick",
  30655. image: {
  30656. source: "./media/characters/axel/dick.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Macro",
  30663. height: math.unit(68, "meters"),
  30664. default: true
  30665. },
  30666. ]
  30667. ))
  30668. characterMakers.push(() => makeCharacter(
  30669. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30670. {
  30671. front: {
  30672. height: math.unit(3.5, "meters"),
  30673. weight: math.unit(1200, "kg"),
  30674. name: "Front",
  30675. image: {
  30676. source: "./media/characters/joanna/front.svg",
  30677. extra: 1596 / 1488,
  30678. bottom: 29 / 1625
  30679. }
  30680. },
  30681. back: {
  30682. height: math.unit(3.5, "meters"),
  30683. weight: math.unit(1200, "kg"),
  30684. name: "Back",
  30685. image: {
  30686. source: "./media/characters/joanna/back.svg",
  30687. extra: 1594 / 1495,
  30688. bottom: 26 / 1620
  30689. }
  30690. },
  30691. frontShorts: {
  30692. height: math.unit(3.5, "meters"),
  30693. weight: math.unit(1200, "kg"),
  30694. name: "Front (Shorts)",
  30695. image: {
  30696. source: "./media/characters/joanna/front-shorts.svg",
  30697. extra: 1596 / 1488,
  30698. bottom: 29 / 1625
  30699. }
  30700. },
  30701. frontBiker: {
  30702. height: math.unit(3.5, "meters"),
  30703. weight: math.unit(1200, "kg"),
  30704. name: "Front (Biker)",
  30705. image: {
  30706. source: "./media/characters/joanna/front-biker.svg",
  30707. extra: 1596 / 1488,
  30708. bottom: 29 / 1625
  30709. }
  30710. },
  30711. backBiker: {
  30712. height: math.unit(3.5, "meters"),
  30713. weight: math.unit(1200, "kg"),
  30714. name: "Back (Biker)",
  30715. image: {
  30716. source: "./media/characters/joanna/back-biker.svg",
  30717. extra: 1594 / 1495,
  30718. bottom: 88 / 1682
  30719. }
  30720. },
  30721. bikeLeft: {
  30722. height: math.unit(2.4, "meters"),
  30723. weight: math.unit(1600, "kg"),
  30724. name: "Bike (Left)",
  30725. image: {
  30726. source: "./media/characters/joanna/bike-left.svg",
  30727. extra: 720 / 720,
  30728. bottom: 8 / 728
  30729. }
  30730. },
  30731. bikeRight: {
  30732. height: math.unit(2.4, "meters"),
  30733. weight: math.unit(1600, "kg"),
  30734. name: "Bike (Right)",
  30735. image: {
  30736. source: "./media/characters/joanna/bike-right.svg",
  30737. extra: 720 / 720,
  30738. bottom: 8 / 728
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Incognito",
  30745. height: math.unit(3.5, "meters")
  30746. },
  30747. {
  30748. name: "Casual Big",
  30749. height: math.unit(200, "meters")
  30750. },
  30751. {
  30752. name: "Macro",
  30753. height: math.unit(600, "meters")
  30754. },
  30755. {
  30756. name: "Original",
  30757. height: math.unit(20, "km"),
  30758. default: true
  30759. },
  30760. {
  30761. name: "Giga",
  30762. height: math.unit(400, "km")
  30763. },
  30764. {
  30765. name: "Lounging",
  30766. height: math.unit(1500, "km")
  30767. },
  30768. {
  30769. name: "Planetary",
  30770. height: math.unit(200000, "km")
  30771. },
  30772. ]
  30773. ))
  30774. characterMakers.push(() => makeCharacter(
  30775. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30776. {
  30777. front: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(150, "lb"),
  30780. name: "Front",
  30781. image: {
  30782. source: "./media/characters/hugo-sigil/front.svg",
  30783. extra: 522 / 500,
  30784. bottom: 2 / 524
  30785. }
  30786. },
  30787. back: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Back",
  30791. image: {
  30792. source: "./media/characters/hugo-sigil/back.svg",
  30793. extra: 519 / 495,
  30794. bottom: 5 / 524
  30795. }
  30796. },
  30797. maw: {
  30798. height: math.unit(1.4, "feet"),
  30799. weight: math.unit(150, "lb"),
  30800. name: "Maw",
  30801. image: {
  30802. source: "./media/characters/hugo-sigil/maw.svg"
  30803. }
  30804. },
  30805. feet: {
  30806. height: math.unit(1.56, "feet"),
  30807. weight: math.unit(150, "lb"),
  30808. name: "Feet",
  30809. image: {
  30810. source: "./media/characters/hugo-sigil/feet.svg",
  30811. extra: 177 / 177,
  30812. bottom: 12 / 189
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(6, "feet")
  30820. },
  30821. {
  30822. name: "Macro",
  30823. height: math.unit(200, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30830. {
  30831. front: {
  30832. height: math.unit(6, "feet"),
  30833. weight: math.unit(150, "lb"),
  30834. name: "Front",
  30835. image: {
  30836. source: "./media/characters/peri/front.svg",
  30837. extra: 2354 / 2233,
  30838. bottom: 49 / 2403
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Really Small",
  30845. height: math.unit(1, "nm")
  30846. },
  30847. {
  30848. name: "Micro",
  30849. height: math.unit(4, "inches")
  30850. },
  30851. {
  30852. name: "Normal",
  30853. height: math.unit(7, "inches"),
  30854. default: true
  30855. },
  30856. {
  30857. name: "Macro",
  30858. height: math.unit(400, "feet")
  30859. },
  30860. {
  30861. name: "Megamacro",
  30862. height: math.unit(100, "miles")
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30868. {
  30869. frontSlim: {
  30870. height: math.unit(7, "feet"),
  30871. name: "Front (Slim)",
  30872. image: {
  30873. source: "./media/characters/issilora/front-slim.svg",
  30874. extra: 529 / 449,
  30875. bottom: 53 / 582
  30876. }
  30877. },
  30878. sideSlim: {
  30879. height: math.unit(7, "feet"),
  30880. name: "Side (Slim)",
  30881. image: {
  30882. source: "./media/characters/issilora/side-slim.svg",
  30883. extra: 570 / 480,
  30884. bottom: 30 / 600
  30885. }
  30886. },
  30887. backSlim: {
  30888. height: math.unit(7, "feet"),
  30889. name: "Back (Slim)",
  30890. image: {
  30891. source: "./media/characters/issilora/back-slim.svg",
  30892. extra: 537 / 455,
  30893. bottom: 46 / 583
  30894. }
  30895. },
  30896. frontBuff: {
  30897. height: math.unit(7, "feet"),
  30898. name: "Front (Buff)",
  30899. image: {
  30900. source: "./media/characters/issilora/front-buff.svg",
  30901. extra: 2310 / 2035,
  30902. bottom: 335 / 2645
  30903. }
  30904. },
  30905. head: {
  30906. height: math.unit(1.94, "feet"),
  30907. name: "Head",
  30908. image: {
  30909. source: "./media/characters/issilora/head.svg"
  30910. }
  30911. },
  30912. },
  30913. [
  30914. {
  30915. name: "Minimum",
  30916. height: math.unit(7, "feet")
  30917. },
  30918. {
  30919. name: "Comfortable",
  30920. height: math.unit(17, "feet")
  30921. },
  30922. {
  30923. name: "Fun Size",
  30924. height: math.unit(47, "feet")
  30925. },
  30926. {
  30927. name: "Natural Macro",
  30928. height: math.unit(137, "feet"),
  30929. default: true
  30930. },
  30931. {
  30932. name: "Maximum Kaiju",
  30933. height: math.unit(397, "feet")
  30934. },
  30935. ]
  30936. ))
  30937. characterMakers.push(() => makeCharacter(
  30938. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30939. {
  30940. front: {
  30941. height: math.unit(50 + 9/12, "feet"),
  30942. weight: math.unit(32.8, "tons"),
  30943. name: "Front",
  30944. image: {
  30945. source: "./media/characters/irb'iiritaahn/front.svg",
  30946. extra: 1878/1826,
  30947. bottom: 326/2204
  30948. }
  30949. },
  30950. back: {
  30951. height: math.unit(50 + 9/12, "feet"),
  30952. weight: math.unit(32.8, "tons"),
  30953. name: "Back",
  30954. image: {
  30955. source: "./media/characters/irb'iiritaahn/back.svg",
  30956. extra: 2052/2018,
  30957. bottom: 152/2204
  30958. }
  30959. },
  30960. head: {
  30961. height: math.unit(12.86, "feet"),
  30962. name: "Head",
  30963. image: {
  30964. source: "./media/characters/irb'iiritaahn/head.svg"
  30965. }
  30966. },
  30967. maw: {
  30968. height: math.unit(9.66, "feet"),
  30969. name: "Maw",
  30970. image: {
  30971. source: "./media/characters/irb'iiritaahn/maw.svg"
  30972. }
  30973. },
  30974. frontDick: {
  30975. height: math.unit(8.78461, "feet"),
  30976. name: "Front Dick",
  30977. image: {
  30978. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30979. }
  30980. },
  30981. rearDick: {
  30982. height: math.unit(8.78461, "feet"),
  30983. name: "Rear Dick",
  30984. image: {
  30985. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30986. }
  30987. },
  30988. rearDickUnfolded: {
  30989. height: math.unit(8.78, "feet"),
  30990. name: "Rear Dick (Unfolded)",
  30991. image: {
  30992. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30993. }
  30994. },
  30995. wings: {
  30996. height: math.unit(43, "feet"),
  30997. name: "Wings",
  30998. image: {
  30999. source: "./media/characters/irb'iiritaahn/wings.svg"
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Macro",
  31006. height: math.unit(50 + 9/12, "feet"),
  31007. default: true
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(205, "cm"),
  31016. weight: math.unit(102, "kg"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/irbisgreif/front.svg",
  31020. extra: 785/706,
  31021. bottom: 13/798
  31022. }
  31023. },
  31024. back: {
  31025. height: math.unit(205, "cm"),
  31026. weight: math.unit(102, "kg"),
  31027. name: "Back",
  31028. image: {
  31029. source: "./media/characters/irbisgreif/back.svg",
  31030. extra: 713/701,
  31031. bottom: 26/739
  31032. }
  31033. },
  31034. frontDressed: {
  31035. height: math.unit(216, "cm"),
  31036. weight: math.unit(102, "kg"),
  31037. name: "Front-dressed",
  31038. image: {
  31039. source: "./media/characters/irbisgreif/front-dressed.svg",
  31040. extra: 902/776,
  31041. bottom: 14/916
  31042. }
  31043. },
  31044. sideDressed: {
  31045. height: math.unit(195, "cm"),
  31046. weight: math.unit(102, "kg"),
  31047. name: "Side-dressed",
  31048. image: {
  31049. source: "./media/characters/irbisgreif/side-dressed.svg",
  31050. extra: 788/688,
  31051. bottom: 21/809
  31052. }
  31053. },
  31054. backDressed: {
  31055. height: math.unit(216, "cm"),
  31056. weight: math.unit(102, "kg"),
  31057. name: "Back-dressed",
  31058. image: {
  31059. source: "./media/characters/irbisgreif/back-dressed.svg",
  31060. extra: 901/783,
  31061. bottom: 10/911
  31062. }
  31063. },
  31064. dick: {
  31065. height: math.unit(0.49, "feet"),
  31066. name: "Dick",
  31067. image: {
  31068. source: "./media/characters/irbisgreif/dick.svg"
  31069. }
  31070. },
  31071. wingTop: {
  31072. height: math.unit(1.93 , "feet"),
  31073. name: "Wing-top",
  31074. image: {
  31075. source: "./media/characters/irbisgreif/wing-top.svg"
  31076. }
  31077. },
  31078. wingBottom: {
  31079. height: math.unit(1.93 , "feet"),
  31080. name: "Wing-bottom",
  31081. image: {
  31082. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Normal",
  31089. height: math.unit(216, "cm"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/pride/front.svg",
  31103. extra: 1299/1230,
  31104. bottom: 18/1317
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(7, "feet")
  31112. },
  31113. {
  31114. name: "Mini-macro",
  31115. height: math.unit(11, "feet")
  31116. },
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(15, "meters"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Macro+",
  31124. height: math.unit(40, "meters")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31130. {
  31131. front: {
  31132. height: math.unit(4 + 2 / 12, "feet"),
  31133. weight: math.unit(95, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/vaelophis-nyx/front.svg",
  31137. extra: 2532/2330,
  31138. bottom: 0/2532
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(4 + 2 / 12, "feet"),
  31143. weight: math.unit(95, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/vaelophis-nyx/back.svg",
  31147. extra: 2484/2361,
  31148. bottom: 0/2484
  31149. }
  31150. },
  31151. feralSide: {
  31152. height: math.unit(2 + 1/12, "feet"),
  31153. weight: math.unit(20, "lb"),
  31154. name: "Feral (Side)",
  31155. image: {
  31156. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31157. extra: 1721/1581,
  31158. bottom: 70/1791
  31159. }
  31160. },
  31161. feralLazing: {
  31162. height: math.unit(1.08, "feet"),
  31163. weight: math.unit(20, "lb"),
  31164. name: "Feral (Lazing)",
  31165. image: {
  31166. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31167. extra: 822/822,
  31168. bottom: 248/1070
  31169. }
  31170. },
  31171. ear: {
  31172. height: math.unit(0.416, "feet"),
  31173. name: "Ear",
  31174. image: {
  31175. source: "./media/characters/vaelophis-nyx/ear.svg"
  31176. }
  31177. },
  31178. eye: {
  31179. height: math.unit(0.0748, "feet"),
  31180. name: "Eye",
  31181. image: {
  31182. source: "./media/characters/vaelophis-nyx/eye.svg"
  31183. }
  31184. },
  31185. mouth: {
  31186. height: math.unit(0.378, "feet"),
  31187. name: "Mouth",
  31188. image: {
  31189. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31190. }
  31191. },
  31192. spade: {
  31193. height: math.unit(0.55, "feet"),
  31194. name: "Spade",
  31195. image: {
  31196. source: "./media/characters/vaelophis-nyx/spade.svg"
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(4 + 2/12, "feet"),
  31204. default: true
  31205. },
  31206. ]
  31207. ))
  31208. characterMakers.push(() => makeCharacter(
  31209. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31210. {
  31211. front: {
  31212. height: math.unit(7, "feet"),
  31213. weight: math.unit(231, "lb"),
  31214. name: "Front",
  31215. image: {
  31216. source: "./media/characters/flux/front.svg",
  31217. extra: 919/871,
  31218. bottom: 0/919
  31219. }
  31220. },
  31221. back: {
  31222. height: math.unit(7, "feet"),
  31223. weight: math.unit(231, "lb"),
  31224. name: "Back",
  31225. image: {
  31226. source: "./media/characters/flux/back.svg",
  31227. extra: 1040/992,
  31228. bottom: 0/1040
  31229. }
  31230. },
  31231. frontDressed: {
  31232. height: math.unit(7, "feet"),
  31233. weight: math.unit(231, "lb"),
  31234. name: "Front (Dressed)",
  31235. image: {
  31236. source: "./media/characters/flux/front-dressed.svg",
  31237. extra: 919/871,
  31238. bottom: 0/919
  31239. }
  31240. },
  31241. feralSide: {
  31242. height: math.unit(5, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Feral (Side)",
  31245. image: {
  31246. source: "./media/characters/flux/feral-side.svg",
  31247. extra: 598/528,
  31248. bottom: 28/626
  31249. }
  31250. },
  31251. head: {
  31252. height: math.unit(1.585, "feet"),
  31253. name: "Head",
  31254. image: {
  31255. source: "./media/characters/flux/head.svg"
  31256. }
  31257. },
  31258. headSide: {
  31259. height: math.unit(1.74, "feet"),
  31260. name: "Head (Side)",
  31261. image: {
  31262. source: "./media/characters/flux/head-side.svg"
  31263. }
  31264. },
  31265. headSideFire: {
  31266. height: math.unit(1.76, "feet"),
  31267. name: "Head (Side, Fire)",
  31268. image: {
  31269. source: "./media/characters/flux/head-side-fire.svg"
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(7, "feet"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31283. {
  31284. front: {
  31285. height: math.unit(9, "feet"),
  31286. weight: math.unit(1012, "lb"),
  31287. name: "Front",
  31288. image: {
  31289. source: "./media/characters/ulfra-lupae/front.svg",
  31290. extra: 1083/1011,
  31291. bottom: 67/1150
  31292. }
  31293. },
  31294. },
  31295. [
  31296. {
  31297. name: "Micro",
  31298. height: math.unit(6, "inches")
  31299. },
  31300. {
  31301. name: "Socializing",
  31302. height: math.unit(6 + 5/12, "feet")
  31303. },
  31304. {
  31305. name: "Normal",
  31306. height: math.unit(9, "feet"),
  31307. default: true
  31308. },
  31309. {
  31310. name: "Macro",
  31311. height: math.unit(150, "feet")
  31312. },
  31313. ]
  31314. ))
  31315. characterMakers.push(() => makeCharacter(
  31316. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31317. {
  31318. front: {
  31319. height: math.unit(5 + 2/12, "feet"),
  31320. weight: math.unit(120, "lb"),
  31321. name: "Front",
  31322. image: {
  31323. source: "./media/characters/timber/front.svg",
  31324. extra: 2814/2705,
  31325. bottom: 181/2995
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Normal",
  31332. height: math.unit(5 + 2/12, "feet"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(5 + 7/12, "feet"),
  31342. weight: math.unit(220, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/nicki/front.svg",
  31346. extra: 453/419,
  31347. bottom: 7/460
  31348. }
  31349. },
  31350. frontAlt: {
  31351. height: math.unit(5 + 7/12, "feet"),
  31352. weight: math.unit(220, "lb"),
  31353. name: "Front-alt",
  31354. image: {
  31355. source: "./media/characters/nicki/front-alt.svg",
  31356. extra: 435/411,
  31357. bottom: 12/447
  31358. }
  31359. },
  31360. back: {
  31361. height: math.unit(5 + 7/12, "feet"),
  31362. weight: math.unit(220, "lb"),
  31363. name: "Back",
  31364. image: {
  31365. source: "./media/characters/nicki/back.svg",
  31366. extra: 440/413,
  31367. bottom: 19/459
  31368. }
  31369. },
  31370. taur: {
  31371. height: math.unit(7 + 6/12, "feet"),
  31372. weight: math.unit(700, "lb"),
  31373. name: "Taur",
  31374. image: {
  31375. source: "./media/characters/nicki/taur.svg",
  31376. extra: 975/773,
  31377. bottom: 0/975
  31378. }
  31379. },
  31380. frontNsfw: {
  31381. height: math.unit(5 + 7/12, "feet"),
  31382. weight: math.unit(220, "lb"),
  31383. name: "Front (NSFW)",
  31384. image: {
  31385. source: "./media/characters/nicki/front-nsfw.svg",
  31386. extra: 453/419,
  31387. bottom: 7/460
  31388. }
  31389. },
  31390. frontNsfwAlt: {
  31391. height: math.unit(5 + 7/12, "feet"),
  31392. weight: math.unit(220, "lb"),
  31393. name: "Front (Alt, NSFW)",
  31394. image: {
  31395. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31396. extra: 435/411,
  31397. bottom: 12/447
  31398. }
  31399. },
  31400. backNsfw: {
  31401. height: math.unit(5 + 7/12, "feet"),
  31402. weight: math.unit(220, "lb"),
  31403. name: "Back (NSFW)",
  31404. image: {
  31405. source: "./media/characters/nicki/back-nsfw.svg",
  31406. extra: 440/413,
  31407. bottom: 19/459
  31408. }
  31409. },
  31410. head: {
  31411. height: math.unit(2.1, "feet"),
  31412. name: "Head",
  31413. image: {
  31414. source: "./media/characters/nicki/head.svg"
  31415. }
  31416. },
  31417. paw: {
  31418. height: math.unit(1.88, "feet"),
  31419. name: "Paw",
  31420. image: {
  31421. source: "./media/characters/nicki/paw.svg"
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(5 + 7/12, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(7 + 10/12, "feet"),
  31438. weight: math.unit(3.5, "tons"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/lee/front.svg",
  31442. extra: 1773/1615,
  31443. bottom: 86/1859
  31444. }
  31445. },
  31446. hand: {
  31447. height: math.unit(1.78, "feet"),
  31448. name: "Hand",
  31449. image: {
  31450. source: "./media/characters/lee/hand.svg"
  31451. }
  31452. },
  31453. maw: {
  31454. height: math.unit(1.18, "feet"),
  31455. name: "Maw",
  31456. image: {
  31457. source: "./media/characters/lee/maw.svg"
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Normal",
  31464. height: math.unit(7 + 10/12, "feet"),
  31465. default: true
  31466. },
  31467. ]
  31468. ))
  31469. characterMakers.push(() => makeCharacter(
  31470. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31471. {
  31472. front: {
  31473. height: math.unit(9, "feet"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/guti/front.svg",
  31477. extra: 4551/4355,
  31478. bottom: 123/4674
  31479. }
  31480. },
  31481. tongue: {
  31482. height: math.unit(1, "feet"),
  31483. name: "Tongue",
  31484. image: {
  31485. source: "./media/characters/guti/tongue.svg"
  31486. }
  31487. },
  31488. paw: {
  31489. height: math.unit(1.18, "feet"),
  31490. name: "Paw",
  31491. image: {
  31492. source: "./media/characters/guti/paw.svg"
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(9, "feet"),
  31500. default: true
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31506. {
  31507. side: {
  31508. height: math.unit(5, "meters"),
  31509. name: "Side",
  31510. image: {
  31511. source: "./media/characters/vesper/side.svg",
  31512. extra: 1605/1518,
  31513. bottom: 0/1605
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Small",
  31520. height: math.unit(5, "meters")
  31521. },
  31522. {
  31523. name: "Sage",
  31524. height: math.unit(100, "meters"),
  31525. default: true
  31526. },
  31527. {
  31528. name: "Fun Size",
  31529. height: math.unit(600, "meters")
  31530. },
  31531. {
  31532. name: "Goddess",
  31533. height: math.unit(20000, "km")
  31534. },
  31535. {
  31536. name: "Maximum",
  31537. height: math.unit(5, "galaxies")
  31538. },
  31539. ]
  31540. ))
  31541. characterMakers.push(() => makeCharacter(
  31542. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31543. {
  31544. front: {
  31545. height: math.unit(6 + 3/12, "feet"),
  31546. weight: math.unit(190, "lb"),
  31547. name: "Front",
  31548. image: {
  31549. source: "./media/characters/gawain/front.svg",
  31550. extra: 2222/2139,
  31551. bottom: 90/2312
  31552. }
  31553. },
  31554. back: {
  31555. height: math.unit(6 + 3/12, "feet"),
  31556. weight: math.unit(190, "lb"),
  31557. name: "Back",
  31558. image: {
  31559. source: "./media/characters/gawain/back.svg",
  31560. extra: 2199/2111,
  31561. bottom: 73/2272
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(6 + 3/12, "feet"),
  31569. default: true
  31570. },
  31571. ]
  31572. ))
  31573. characterMakers.push(() => makeCharacter(
  31574. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31575. {
  31576. side: {
  31577. height: math.unit(3.5, "meters"),
  31578. weight: math.unit(16000, "lb"),
  31579. name: "Side",
  31580. image: {
  31581. source: "./media/characters/dascalti/side.svg",
  31582. extra: 392/273,
  31583. bottom: 47/439
  31584. }
  31585. },
  31586. breath: {
  31587. height: math.unit(7.4, "feet"),
  31588. name: "Breath",
  31589. image: {
  31590. source: "./media/characters/dascalti/breath.svg"
  31591. }
  31592. },
  31593. fed: {
  31594. height: math.unit(3.6, "meters"),
  31595. weight: math.unit(16000, "lb"),
  31596. name: "Fed",
  31597. image: {
  31598. source: "./media/characters/dascalti/fed.svg",
  31599. extra: 1419/820,
  31600. bottom: 95/1514
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Normal",
  31607. height: math.unit(3.5, "meters"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31614. {
  31615. front: {
  31616. height: math.unit(3 + 5/12, "feet"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/mauve/front.svg",
  31620. extra: 1126/1033,
  31621. bottom: 65/1191
  31622. }
  31623. },
  31624. side: {
  31625. height: math.unit(3 + 5/12, "feet"),
  31626. name: "Side",
  31627. image: {
  31628. source: "./media/characters/mauve/side.svg",
  31629. extra: 1089/1001,
  31630. bottom: 29/1118
  31631. }
  31632. },
  31633. back: {
  31634. height: math.unit(3 + 5/12, "feet"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/mauve/back.svg",
  31638. extra: 1173/1053,
  31639. bottom: 109/1282
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(3 + 5/12, "feet"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(6 + 3/12, "feet"),
  31656. weight: math.unit(430, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/carlos/front.svg",
  31660. extra: 1964/1913,
  31661. bottom: 70/2034
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(6 + 3/12, "feet"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31675. {
  31676. back: {
  31677. height: math.unit(5 + 10/12, "feet"),
  31678. weight: math.unit(200, "lb"),
  31679. name: "Back",
  31680. image: {
  31681. source: "./media/characters/jax/back.svg",
  31682. extra: 764/739,
  31683. bottom: 25/789
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(5 + 10/12, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(8, "feet"),
  31700. weight: math.unit(250, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/eikthynir/front.svg",
  31704. extra: 1332/1166,
  31705. bottom: 82/1414
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(8, "feet"),
  31710. weight: math.unit(250, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/eikthynir/back.svg",
  31714. extra: 1342/1190,
  31715. bottom: 19/1361
  31716. }
  31717. },
  31718. dick: {
  31719. height: math.unit(2.35, "feet"),
  31720. name: "Dick",
  31721. image: {
  31722. source: "./media/characters/eikthynir/dick.svg"
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(8, "feet"),
  31730. default: true
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31736. {
  31737. front: {
  31738. height: math.unit(99, "meters"),
  31739. weight: math.unit(13000, "tons"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/zlmos/front.svg",
  31743. extra: 2202/1992,
  31744. bottom: 315/2517
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Macro",
  31751. height: math.unit(99, "meters"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(6 + 5/12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/purri/front.svg",
  31764. extra: 1698/1610,
  31765. bottom: 32/1730
  31766. }
  31767. },
  31768. frontAlt: {
  31769. height: math.unit(6 + 5/12, "feet"),
  31770. name: "Front (Alt)",
  31771. image: {
  31772. source: "./media/characters/purri/front-alt.svg",
  31773. extra: 450/420,
  31774. bottom: 26/476
  31775. }
  31776. },
  31777. boots: {
  31778. height: math.unit(5.5, "feet"),
  31779. name: "Boots",
  31780. image: {
  31781. source: "./media/characters/purri/boots.svg",
  31782. extra: 905/853,
  31783. bottom: 18/923
  31784. }
  31785. },
  31786. lying: {
  31787. height: math.unit(2, "feet"),
  31788. name: "Lying",
  31789. image: {
  31790. source: "./media/characters/purri/lying.svg",
  31791. extra: 940/843,
  31792. bottom: 146/1086
  31793. }
  31794. },
  31795. devious: {
  31796. height: math.unit(1.77, "feet"),
  31797. name: "Devious",
  31798. image: {
  31799. source: "./media/characters/purri/devious.svg",
  31800. extra: 1440/1155,
  31801. bottom: 147/1587
  31802. }
  31803. },
  31804. bean: {
  31805. height: math.unit(1.94, "feet"),
  31806. name: "Bean",
  31807. image: {
  31808. source: "./media/characters/purri/bean.svg"
  31809. }
  31810. },
  31811. },
  31812. [
  31813. {
  31814. name: "Micro",
  31815. height: math.unit(1, "mm")
  31816. },
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(6 + 5/12, "feet"),
  31820. default: true
  31821. },
  31822. {
  31823. name: "Macro :3c",
  31824. height: math.unit(2, "miles")
  31825. },
  31826. ]
  31827. ))
  31828. characterMakers.push(() => makeCharacter(
  31829. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31830. {
  31831. front: {
  31832. height: math.unit(6 + 2/12, "feet"),
  31833. weight: math.unit(250, "lb"),
  31834. name: "Front",
  31835. image: {
  31836. source: "./media/characters/moonlight/front.svg",
  31837. extra: 1044/908,
  31838. bottom: 56/1100
  31839. }
  31840. },
  31841. feral: {
  31842. height: math.unit(3 + 1/12, "feet"),
  31843. weight: math.unit(50, "kg"),
  31844. name: "Feral",
  31845. image: {
  31846. source: "./media/characters/moonlight/feral.svg",
  31847. extra: 3705/2791,
  31848. bottom: 145/3850
  31849. }
  31850. },
  31851. paw: {
  31852. height: math.unit(1, "feet"),
  31853. name: "Paw",
  31854. image: {
  31855. source: "./media/characters/moonlight/paw.svg"
  31856. }
  31857. },
  31858. paws: {
  31859. height: math.unit(0.98, "feet"),
  31860. name: "Paws",
  31861. image: {
  31862. source: "./media/characters/moonlight/paws.svg",
  31863. extra: 939/939,
  31864. bottom: 50/989
  31865. }
  31866. },
  31867. mouth: {
  31868. height: math.unit(0.48, "feet"),
  31869. name: "Mouth",
  31870. image: {
  31871. source: "./media/characters/moonlight/mouth.svg"
  31872. }
  31873. },
  31874. dick: {
  31875. height: math.unit(1.46, "feet"),
  31876. name: "Dick",
  31877. image: {
  31878. source: "./media/characters/moonlight/dick.svg"
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(6 + 2/12, "feet"),
  31886. default: true
  31887. },
  31888. {
  31889. name: "Macro",
  31890. height: math.unit(300, "feet")
  31891. },
  31892. {
  31893. name: "Macro+",
  31894. height: math.unit(1, "mile")
  31895. },
  31896. {
  31897. name: "Mt. Moon",
  31898. height: math.unit(5, "miles")
  31899. },
  31900. {
  31901. name: "Megamacro",
  31902. height: math.unit(15, "miles")
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31908. {
  31909. back: {
  31910. height: math.unit(6, "feet"),
  31911. weight: math.unit(150, "lb"),
  31912. name: "Back",
  31913. image: {
  31914. source: "./media/characters/sylen/back.svg",
  31915. extra: 1335/1273,
  31916. bottom: 107/1442
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Normal",
  31923. height: math.unit(5 + 5/12, "feet")
  31924. },
  31925. {
  31926. name: "Megamacro",
  31927. height: math.unit(3, "miles"),
  31928. default: true
  31929. },
  31930. ]
  31931. ))
  31932. characterMakers.push(() => makeCharacter(
  31933. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31934. {
  31935. front: {
  31936. height: math.unit(6, "feet"),
  31937. weight: math.unit(190, "lb"),
  31938. name: "Front",
  31939. image: {
  31940. source: "./media/characters/huttser/front.svg",
  31941. extra: 1152/1058,
  31942. bottom: 23/1175
  31943. }
  31944. },
  31945. side: {
  31946. height: math.unit(6, "feet"),
  31947. weight: math.unit(190, "lb"),
  31948. name: "Side",
  31949. image: {
  31950. source: "./media/characters/huttser/side.svg",
  31951. extra: 1174/1065,
  31952. bottom: 18/1192
  31953. }
  31954. },
  31955. back: {
  31956. height: math.unit(6, "feet"),
  31957. weight: math.unit(190, "lb"),
  31958. name: "Back",
  31959. image: {
  31960. source: "./media/characters/huttser/back.svg",
  31961. extra: 1158/1056,
  31962. bottom: 12/1170
  31963. }
  31964. },
  31965. },
  31966. [
  31967. ]
  31968. ))
  31969. characterMakers.push(() => makeCharacter(
  31970. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31971. {
  31972. side: {
  31973. height: math.unit(12 + 9/12, "feet"),
  31974. weight: math.unit(15000, "lb"),
  31975. name: "Side",
  31976. image: {
  31977. source: "./media/characters/faan/side.svg",
  31978. extra: 2747/2697,
  31979. bottom: 0/2747
  31980. }
  31981. },
  31982. front: {
  31983. height: math.unit(12 + 9/12, "feet"),
  31984. weight: math.unit(15000, "lb"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/faan/front.svg",
  31988. extra: 607/571,
  31989. bottom: 24/631
  31990. }
  31991. },
  31992. head: {
  31993. height: math.unit(2.85, "feet"),
  31994. name: "Head",
  31995. image: {
  31996. source: "./media/characters/faan/head.svg"
  31997. }
  31998. },
  31999. headAlt: {
  32000. height: math.unit(3.13, "feet"),
  32001. name: "Head-alt",
  32002. image: {
  32003. source: "./media/characters/faan/head-alt.svg"
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(12 + 9/12, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32017. {
  32018. front: {
  32019. height: math.unit(6, "feet"),
  32020. weight: math.unit(300, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/tanio/front.svg",
  32024. extra: 711/673,
  32025. bottom: 25/736
  32026. }
  32027. },
  32028. },
  32029. [
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(6, "feet"),
  32033. default: true
  32034. },
  32035. ]
  32036. ))
  32037. characterMakers.push(() => makeCharacter(
  32038. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32039. {
  32040. front: {
  32041. height: math.unit(3, "inches"),
  32042. name: "Front",
  32043. image: {
  32044. source: "./media/characters/noboru/front.svg",
  32045. extra: 1039/932,
  32046. bottom: 18/1057
  32047. }
  32048. },
  32049. },
  32050. [
  32051. {
  32052. name: "Micro",
  32053. height: math.unit(3, "inches"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32060. {
  32061. front: {
  32062. height: math.unit(1.85, "meters"),
  32063. weight: math.unit(80, "kg"),
  32064. name: "Front",
  32065. image: {
  32066. source: "./media/characters/daniel-barrett/front.svg",
  32067. extra: 355/337,
  32068. bottom: 9/364
  32069. }
  32070. },
  32071. },
  32072. [
  32073. {
  32074. name: "Pico",
  32075. height: math.unit(0.0433, "mm")
  32076. },
  32077. {
  32078. name: "Nano",
  32079. height: math.unit(1.5, "mm")
  32080. },
  32081. {
  32082. name: "Micro",
  32083. height: math.unit(5.3, "cm"),
  32084. default: true
  32085. },
  32086. {
  32087. name: "Normal",
  32088. height: math.unit(1.85, "meters")
  32089. },
  32090. {
  32091. name: "Macro",
  32092. height: math.unit(64.7, "meters")
  32093. },
  32094. {
  32095. name: "Megamacro",
  32096. height: math.unit(2.26, "km")
  32097. },
  32098. {
  32099. name: "Gigamacro",
  32100. height: math.unit(79, "km")
  32101. },
  32102. {
  32103. name: "Teramacro",
  32104. height: math.unit(2765, "km")
  32105. },
  32106. {
  32107. name: "Petamacro",
  32108. height: math.unit(96678, "km")
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32114. {
  32115. front: {
  32116. height: math.unit(30, "meters"),
  32117. weight: math.unit(400, "tons"),
  32118. name: "Front",
  32119. image: {
  32120. source: "./media/characters/zeel/front.svg",
  32121. extra: 2599/2599,
  32122. bottom: 226/2825
  32123. }
  32124. },
  32125. },
  32126. [
  32127. {
  32128. name: "Macro",
  32129. height: math.unit(30, "meters"),
  32130. default: true
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(6 + 7/12, "feet"),
  32139. weight: math.unit(210, "lb"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/tarn/front.svg",
  32143. extra: 3517/3220,
  32144. bottom: 91/3608
  32145. }
  32146. },
  32147. back: {
  32148. height: math.unit(6 + 7/12, "feet"),
  32149. weight: math.unit(210, "lb"),
  32150. name: "Back",
  32151. image: {
  32152. source: "./media/characters/tarn/back.svg",
  32153. extra: 3566/3241,
  32154. bottom: 34/3600
  32155. }
  32156. },
  32157. dick: {
  32158. height: math.unit(1.65, "feet"),
  32159. name: "Dick",
  32160. image: {
  32161. source: "./media/characters/tarn/dick.svg"
  32162. }
  32163. },
  32164. paw: {
  32165. height: math.unit(1.80, "feet"),
  32166. name: "Paw",
  32167. image: {
  32168. source: "./media/characters/tarn/paw.svg"
  32169. }
  32170. },
  32171. tongue: {
  32172. height: math.unit(0.97, "feet"),
  32173. name: "Tongue",
  32174. image: {
  32175. source: "./media/characters/tarn/tongue.svg"
  32176. }
  32177. },
  32178. },
  32179. [
  32180. {
  32181. name: "Micro",
  32182. height: math.unit(4, "inches")
  32183. },
  32184. {
  32185. name: "Normal",
  32186. height: math.unit(6 + 7/12, "feet"),
  32187. default: true
  32188. },
  32189. {
  32190. name: "Macro",
  32191. height: math.unit(300, "feet")
  32192. },
  32193. ]
  32194. ))
  32195. characterMakers.push(() => makeCharacter(
  32196. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32197. {
  32198. front: {
  32199. height: math.unit(5 + 7/12, "feet"),
  32200. weight: math.unit(80, "kg"),
  32201. name: "Front",
  32202. image: {
  32203. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32204. extra: 3023/2865,
  32205. bottom: 33/3056
  32206. }
  32207. },
  32208. back: {
  32209. height: math.unit(5 + 7/12, "feet"),
  32210. weight: math.unit(80, "kg"),
  32211. name: "Back",
  32212. image: {
  32213. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32214. extra: 3020/2886,
  32215. bottom: 30/3050
  32216. }
  32217. },
  32218. dick: {
  32219. height: math.unit(0.98, "feet"),
  32220. name: "Dick",
  32221. image: {
  32222. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32223. }
  32224. },
  32225. anatomy: {
  32226. height: math.unit(2.86, "feet"),
  32227. name: "Anatomy",
  32228. image: {
  32229. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32230. }
  32231. },
  32232. },
  32233. [
  32234. {
  32235. name: "Really Small",
  32236. height: math.unit(2, "inches")
  32237. },
  32238. {
  32239. name: "Micro",
  32240. height: math.unit(5.583, "inches")
  32241. },
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(5 + 7/12, "feet"),
  32245. default: true
  32246. },
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(67, "feet")
  32250. },
  32251. {
  32252. name: "Megamacro",
  32253. height: math.unit(134, "feet")
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32259. {
  32260. front: {
  32261. height: math.unit(9, "feet"),
  32262. weight: math.unit(120, "lb"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/sally/front.svg",
  32266. extra: 1506/1349,
  32267. bottom: 66/1572
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(9, "feet"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32281. {
  32282. front: {
  32283. height: math.unit(8, "feet"),
  32284. weight: math.unit(900, "lb"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/owen/front.svg",
  32288. extra: 1761/1657,
  32289. bottom: 74/1835
  32290. }
  32291. },
  32292. side: {
  32293. height: math.unit(8, "feet"),
  32294. weight: math.unit(900, "lb"),
  32295. name: "Side",
  32296. image: {
  32297. source: "./media/characters/owen/side.svg",
  32298. extra: 1797/1734,
  32299. bottom: 30/1827
  32300. }
  32301. },
  32302. back: {
  32303. height: math.unit(8, "feet"),
  32304. weight: math.unit(900, "lb"),
  32305. name: "Back",
  32306. image: {
  32307. source: "./media/characters/owen/back.svg",
  32308. extra: 1796/1706,
  32309. bottom: 59/1855
  32310. }
  32311. },
  32312. maw: {
  32313. height: math.unit(1.76, "feet"),
  32314. name: "Maw",
  32315. image: {
  32316. source: "./media/characters/owen/maw.svg"
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(8, "feet"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32330. {
  32331. front: {
  32332. height: math.unit(4, "feet"),
  32333. weight: math.unit(400, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/ryth/front.svg",
  32337. extra: 1920/1748,
  32338. bottom: 42/1962
  32339. }
  32340. },
  32341. back: {
  32342. height: math.unit(4, "feet"),
  32343. weight: math.unit(400, "lb"),
  32344. name: "Back",
  32345. image: {
  32346. source: "./media/characters/ryth/back.svg",
  32347. extra: 1897/1690,
  32348. bottom: 89/1986
  32349. }
  32350. },
  32351. mouth: {
  32352. height: math.unit(1.39, "feet"),
  32353. name: "Mouth",
  32354. image: {
  32355. source: "./media/characters/ryth/mouth.svg"
  32356. }
  32357. },
  32358. tailmaw: {
  32359. height: math.unit(1.23, "feet"),
  32360. name: "Tailmaw",
  32361. image: {
  32362. source: "./media/characters/ryth/tailmaw.svg"
  32363. }
  32364. },
  32365. goia: {
  32366. height: math.unit(4, "meters"),
  32367. weight: math.unit(10800, "lb"),
  32368. name: "Goia",
  32369. image: {
  32370. source: "./media/characters/ryth/goia.svg",
  32371. extra: 745/640,
  32372. bottom: 107/852
  32373. }
  32374. },
  32375. goiaFront: {
  32376. height: math.unit(4, "meters"),
  32377. weight: math.unit(10800, "lb"),
  32378. name: "Goia (Front)",
  32379. image: {
  32380. source: "./media/characters/ryth/goia-front.svg",
  32381. extra: 750/586,
  32382. bottom: 114/864
  32383. }
  32384. },
  32385. goiaMaw: {
  32386. height: math.unit(5.55, "feet"),
  32387. name: "Goia Maw",
  32388. image: {
  32389. source: "./media/characters/ryth/goia-maw.svg"
  32390. }
  32391. },
  32392. goiaForepaw: {
  32393. height: math.unit(3.5, "feet"),
  32394. name: "Goia Forepaw",
  32395. image: {
  32396. source: "./media/characters/ryth/goia-forepaw.svg"
  32397. }
  32398. },
  32399. goiaHindpaw: {
  32400. height: math.unit(5.55, "feet"),
  32401. name: "Goia Hindpaw",
  32402. image: {
  32403. source: "./media/characters/ryth/goia-hindpaw.svg"
  32404. }
  32405. },
  32406. },
  32407. [
  32408. {
  32409. name: "Normal",
  32410. height: math.unit(4, "feet"),
  32411. default: true
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(7, "feet"),
  32420. weight: math.unit(180, "lb"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/necrolance/front.svg",
  32424. extra: 1062/947,
  32425. bottom: 41/1103
  32426. }
  32427. },
  32428. back: {
  32429. height: math.unit(7, "feet"),
  32430. weight: math.unit(180, "lb"),
  32431. name: "Back",
  32432. image: {
  32433. source: "./media/characters/necrolance/back.svg",
  32434. extra: 1045/984,
  32435. bottom: 14/1059
  32436. }
  32437. },
  32438. wing: {
  32439. height: math.unit(2.67, "feet"),
  32440. name: "Wing",
  32441. image: {
  32442. source: "./media/characters/necrolance/wing.svg"
  32443. }
  32444. },
  32445. },
  32446. [
  32447. {
  32448. name: "Normal",
  32449. height: math.unit(7, "feet"),
  32450. default: true
  32451. },
  32452. ]
  32453. ))
  32454. characterMakers.push(() => makeCharacter(
  32455. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32456. {
  32457. front: {
  32458. height: math.unit(76, "meters"),
  32459. weight: math.unit(30000, "tons"),
  32460. name: "Front",
  32461. image: {
  32462. source: "./media/characters/tyler/front.svg",
  32463. extra: 1640/1640,
  32464. bottom: 114/1754
  32465. }
  32466. },
  32467. },
  32468. [
  32469. {
  32470. name: "Macro",
  32471. height: math.unit(76, "meters"),
  32472. default: true
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(4 + 11/12, "feet"),
  32481. weight: math.unit(132, "lb"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/icey/front.svg",
  32485. extra: 2750/2550,
  32486. bottom: 33/2783
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(4 + 11/12, "feet"),
  32491. weight: math.unit(132, "lb"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/icey/back.svg",
  32495. extra: 2624/2481,
  32496. bottom: 35/2659
  32497. }
  32498. },
  32499. },
  32500. [
  32501. {
  32502. name: "Normal",
  32503. height: math.unit(4 + 11/12, "feet"),
  32504. default: true
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(100, "feet"),
  32513. weight: math.unit(0, "lb"),
  32514. name: "Front",
  32515. image: {
  32516. source: "./media/characters/smile/front.svg",
  32517. extra: 2983/2912,
  32518. bottom: 162/3145
  32519. }
  32520. },
  32521. back: {
  32522. height: math.unit(100, "feet"),
  32523. weight: math.unit(0, "lb"),
  32524. name: "Back",
  32525. image: {
  32526. source: "./media/characters/smile/back.svg",
  32527. extra: 3143/3031,
  32528. bottom: 91/3234
  32529. }
  32530. },
  32531. head: {
  32532. height: math.unit(26.3, "feet"),
  32533. weight: math.unit(0, "lb"),
  32534. name: "Head",
  32535. image: {
  32536. source: "./media/characters/smile/head.svg"
  32537. }
  32538. },
  32539. collar: {
  32540. height: math.unit(5.3, "feet"),
  32541. weight: math.unit(0, "lb"),
  32542. name: "Collar",
  32543. image: {
  32544. source: "./media/characters/smile/collar.svg"
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Macro",
  32551. height: math.unit(100, "feet"),
  32552. default: true
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32558. {
  32559. dragon: {
  32560. height: math.unit(26, "feet"),
  32561. weight: math.unit(36, "tons"),
  32562. name: "Dragon",
  32563. image: {
  32564. source: "./media/characters/arimphae/dragon.svg",
  32565. extra: 1574/983,
  32566. bottom: 357/1931
  32567. }
  32568. },
  32569. drake: {
  32570. height: math.unit(9, "feet"),
  32571. weight: math.unit(1.5, "tons"),
  32572. name: "Drake",
  32573. image: {
  32574. source: "./media/characters/arimphae/drake.svg",
  32575. extra: 1120/925,
  32576. bottom: 435/1555
  32577. }
  32578. },
  32579. },
  32580. [
  32581. {
  32582. name: "Small",
  32583. height: math.unit(26*5/9, "feet")
  32584. },
  32585. {
  32586. name: "Normal",
  32587. height: math.unit(26, "feet"),
  32588. default: true
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32594. {
  32595. front: {
  32596. height: math.unit(8 + 9/12, "feet"),
  32597. name: "Front",
  32598. image: {
  32599. source: "./media/characters/xander/front.svg",
  32600. extra: 1237/974,
  32601. bottom: 94/1331
  32602. }
  32603. },
  32604. },
  32605. [
  32606. {
  32607. name: "Normal",
  32608. height: math.unit(8 + 9/12, "feet"),
  32609. default: true
  32610. },
  32611. {
  32612. name: "Gaze Grabber",
  32613. height: math.unit(13 + 8/12, "feet")
  32614. },
  32615. {
  32616. name: "Jaw Dropper",
  32617. height: math.unit(27, "feet")
  32618. },
  32619. {
  32620. name: "Show Stopper",
  32621. height: math.unit(136, "feet")
  32622. },
  32623. {
  32624. name: "Superstar",
  32625. height: math.unit(1.9e6, "miles")
  32626. },
  32627. ]
  32628. ))
  32629. characterMakers.push(() => makeCharacter(
  32630. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32631. {
  32632. side: {
  32633. height: math.unit(2100, "feet"),
  32634. name: "Side",
  32635. image: {
  32636. source: "./media/characters/osiris/side.svg",
  32637. extra: 1105/939,
  32638. bottom: 167/1272
  32639. }
  32640. },
  32641. },
  32642. [
  32643. {
  32644. name: "Macro",
  32645. height: math.unit(2100, "feet"),
  32646. default: true
  32647. },
  32648. ]
  32649. ))
  32650. characterMakers.push(() => makeCharacter(
  32651. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32652. {
  32653. front: {
  32654. height: math.unit(6 + 8/12, "feet"),
  32655. weight: math.unit(225, "lb"),
  32656. name: "Front",
  32657. image: {
  32658. source: "./media/characters/rhys-londe/front.svg",
  32659. extra: 2258/2141,
  32660. bottom: 188/2446
  32661. }
  32662. },
  32663. back: {
  32664. height: math.unit(6 + 8/12, "feet"),
  32665. weight: math.unit(225, "lb"),
  32666. name: "Back",
  32667. image: {
  32668. source: "./media/characters/rhys-londe/back.svg",
  32669. extra: 2237/2137,
  32670. bottom: 63/2300
  32671. }
  32672. },
  32673. frontNsfw: {
  32674. height: math.unit(6 + 8/12, "feet"),
  32675. weight: math.unit(225, "lb"),
  32676. name: "Front (NSFW)",
  32677. image: {
  32678. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32679. extra: 2258/2141,
  32680. bottom: 188/2446
  32681. }
  32682. },
  32683. backNsfw: {
  32684. height: math.unit(6 + 8/12, "feet"),
  32685. weight: math.unit(225, "lb"),
  32686. name: "Back (NSFW)",
  32687. image: {
  32688. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32689. extra: 2237/2137,
  32690. bottom: 63/2300
  32691. }
  32692. },
  32693. dick: {
  32694. height: math.unit(30, "inches"),
  32695. name: "Dick",
  32696. image: {
  32697. source: "./media/characters/rhys-londe/dick.svg"
  32698. }
  32699. },
  32700. maw: {
  32701. height: math.unit(1.6, "feet"),
  32702. name: "Maw",
  32703. image: {
  32704. source: "./media/characters/rhys-londe/maw.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(6 + 8/12, "feet"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32718. {
  32719. front: {
  32720. height: math.unit(3 + 10/12, "feet"),
  32721. weight: math.unit(90, "lb"),
  32722. name: "Front",
  32723. image: {
  32724. source: "./media/characters/taivas-ensim/front.svg",
  32725. extra: 1327/1216,
  32726. bottom: 96/1423
  32727. }
  32728. },
  32729. back: {
  32730. height: math.unit(3 + 10/12, "feet"),
  32731. weight: math.unit(90, "lb"),
  32732. name: "Back",
  32733. image: {
  32734. source: "./media/characters/taivas-ensim/back.svg",
  32735. extra: 1355/1247,
  32736. bottom: 11/1366
  32737. }
  32738. },
  32739. frontNsfw: {
  32740. height: math.unit(3 + 10/12, "feet"),
  32741. weight: math.unit(90, "lb"),
  32742. name: "Front (NSFW)",
  32743. image: {
  32744. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32745. extra: 1327/1216,
  32746. bottom: 96/1423
  32747. }
  32748. },
  32749. backNsfw: {
  32750. height: math.unit(3 + 10/12, "feet"),
  32751. weight: math.unit(90, "lb"),
  32752. name: "Back (NSFW)",
  32753. image: {
  32754. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32755. extra: 1355/1247,
  32756. bottom: 11/1366
  32757. }
  32758. },
  32759. },
  32760. [
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(3 + 10/12, "feet"),
  32764. default: true
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32770. {
  32771. front: {
  32772. height: math.unit(9 + 6/12, "feet"),
  32773. weight: math.unit(940, "lb"),
  32774. name: "Front",
  32775. image: {
  32776. source: "./media/characters/byliss/front.svg",
  32777. extra: 1327/1290,
  32778. bottom: 82/1409
  32779. }
  32780. },
  32781. back: {
  32782. height: math.unit(9 + 6/12, "feet"),
  32783. weight: math.unit(940, "lb"),
  32784. name: "Back",
  32785. image: {
  32786. source: "./media/characters/byliss/back.svg",
  32787. extra: 1376/1349,
  32788. bottom: 9/1385
  32789. }
  32790. },
  32791. frontNsfw: {
  32792. height: math.unit(9 + 6/12, "feet"),
  32793. weight: math.unit(940, "lb"),
  32794. name: "Front (NSFW)",
  32795. image: {
  32796. source: "./media/characters/byliss/front-nsfw.svg",
  32797. extra: 1327/1290,
  32798. bottom: 82/1409
  32799. }
  32800. },
  32801. backNsfw: {
  32802. height: math.unit(9 + 6/12, "feet"),
  32803. weight: math.unit(940, "lb"),
  32804. name: "Back (NSFW)",
  32805. image: {
  32806. source: "./media/characters/byliss/back-nsfw.svg",
  32807. extra: 1376/1349,
  32808. bottom: 9/1385
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(9 + 6/12, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(5 + 2/12, "feet"),
  32825. weight: math.unit(200, "lb"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/noraly/front.svg",
  32829. extra: 4985/4773,
  32830. bottom: 150/5135
  32831. }
  32832. },
  32833. full: {
  32834. height: math.unit(5 + 2/12, "feet"),
  32835. weight: math.unit(164, "lb"),
  32836. name: "Full",
  32837. image: {
  32838. source: "./media/characters/noraly/full.svg",
  32839. extra: 1114/1059,
  32840. bottom: 35/1149
  32841. }
  32842. },
  32843. fuller: {
  32844. height: math.unit(5 + 2/12, "feet"),
  32845. weight: math.unit(230, "lb"),
  32846. name: "Fuller",
  32847. image: {
  32848. source: "./media/characters/noraly/fuller.svg",
  32849. extra: 1114/1059,
  32850. bottom: 35/1149
  32851. }
  32852. },
  32853. fullest: {
  32854. height: math.unit(5 + 2/12, "feet"),
  32855. weight: math.unit(300, "lb"),
  32856. name: "Fullest",
  32857. image: {
  32858. source: "./media/characters/noraly/fullest.svg",
  32859. extra: 1114/1059,
  32860. bottom: 35/1149
  32861. }
  32862. },
  32863. },
  32864. [
  32865. {
  32866. name: "Normal",
  32867. height: math.unit(5 + 2/12, "feet"),
  32868. default: true
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32874. {
  32875. front: {
  32876. height: math.unit(5 + 2/12, "feet"),
  32877. weight: math.unit(210, "lb"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/pera/front.svg",
  32881. extra: 1560/1531,
  32882. bottom: 165/1725
  32883. }
  32884. },
  32885. back: {
  32886. height: math.unit(5 + 2/12, "feet"),
  32887. weight: math.unit(210, "lb"),
  32888. name: "Back",
  32889. image: {
  32890. source: "./media/characters/pera/back.svg",
  32891. extra: 1523/1493,
  32892. bottom: 152/1675
  32893. }
  32894. },
  32895. dick: {
  32896. height: math.unit(2.4, "feet"),
  32897. name: "Dick",
  32898. image: {
  32899. source: "./media/characters/pera/dick.svg"
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(5 + 2/12, "feet"),
  32907. default: true
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32913. {
  32914. front: {
  32915. height: math.unit(12, "feet"),
  32916. weight: math.unit(3200, "lb"),
  32917. name: "Front",
  32918. image: {
  32919. source: "./media/characters/julian/front.svg",
  32920. extra: 2962/2701,
  32921. bottom: 184/3146
  32922. }
  32923. },
  32924. maw: {
  32925. height: math.unit(5.35, "feet"),
  32926. name: "Maw",
  32927. image: {
  32928. source: "./media/characters/julian/maw.svg"
  32929. }
  32930. },
  32931. paw: {
  32932. height: math.unit(3.07, "feet"),
  32933. name: "Paw",
  32934. image: {
  32935. source: "./media/characters/julian/paw.svg"
  32936. }
  32937. },
  32938. },
  32939. [
  32940. {
  32941. name: "Default",
  32942. height: math.unit(12, "feet"),
  32943. default: true
  32944. },
  32945. {
  32946. name: "Big",
  32947. height: math.unit(50, "feet")
  32948. },
  32949. {
  32950. name: "Really Big",
  32951. height: math.unit(1, "mile")
  32952. },
  32953. {
  32954. name: "Extremely Big",
  32955. height: math.unit(100, "miles")
  32956. },
  32957. {
  32958. name: "Planet Hugger",
  32959. height: math.unit(200, "megameters")
  32960. },
  32961. {
  32962. name: "Unreasonably Big",
  32963. height: math.unit(1e300, "meters")
  32964. },
  32965. ]
  32966. ))
  32967. characterMakers.push(() => makeCharacter(
  32968. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32969. {
  32970. solgooleo: {
  32971. height: math.unit(4, "meters"),
  32972. weight: math.unit(6000*1.5, "kg"),
  32973. volume: math.unit(6000, "liters"),
  32974. name: "Solgooleo",
  32975. image: {
  32976. source: "./media/characters/pi/solgooleo.svg",
  32977. extra: 388/331,
  32978. bottom: 29/417
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(4, "meters"),
  32986. default: true
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32992. {
  32993. front: {
  32994. height: math.unit(8, "feet"),
  32995. weight: math.unit(4, "tons"),
  32996. name: "Front",
  32997. image: {
  32998. source: "./media/characters/shaun/front.svg",
  32999. extra: 503/495,
  33000. bottom: 20/523
  33001. }
  33002. },
  33003. back: {
  33004. height: math.unit(8, "feet"),
  33005. weight: math.unit(4, "tons"),
  33006. name: "Back",
  33007. image: {
  33008. source: "./media/characters/shaun/back.svg",
  33009. extra: 487/480,
  33010. bottom: 20/507
  33011. }
  33012. },
  33013. },
  33014. [
  33015. {
  33016. name: "Lorg",
  33017. height: math.unit(8, "feet"),
  33018. default: true
  33019. },
  33020. ]
  33021. ))
  33022. characterMakers.push(() => makeCharacter(
  33023. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33024. {
  33025. frontAnthro: {
  33026. height: math.unit(7, "feet"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/sini/front-anthro.svg",
  33030. extra: 726/678,
  33031. bottom: 35/761
  33032. },
  33033. form: "anthro",
  33034. default: true
  33035. },
  33036. backAnthro: {
  33037. height: math.unit(7, "feet"),
  33038. name: "Back",
  33039. image: {
  33040. source: "./media/characters/sini/back-anthro.svg",
  33041. extra: 743/701,
  33042. bottom: 12/755
  33043. },
  33044. form: "anthro",
  33045. },
  33046. frontAnthroNsfw: {
  33047. height: math.unit(7, "feet"),
  33048. name: "Front (NSFW)",
  33049. image: {
  33050. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33051. extra: 726/678,
  33052. bottom: 35/761
  33053. },
  33054. form: "anthro"
  33055. },
  33056. backAnthroNsfw: {
  33057. height: math.unit(7, "feet"),
  33058. name: "Back (NSFW)",
  33059. image: {
  33060. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33061. extra: 743/701,
  33062. bottom: 12/755
  33063. },
  33064. form: "anthro",
  33065. },
  33066. mawAnthro: {
  33067. height: math.unit(2.14, "feet"),
  33068. name: "Maw",
  33069. image: {
  33070. source: "./media/characters/sini/maw-anthro.svg"
  33071. },
  33072. form: "anthro"
  33073. },
  33074. dick: {
  33075. height: math.unit(1.45, "feet"),
  33076. name: "Dick",
  33077. image: {
  33078. source: "./media/characters/sini/dick-anthro.svg"
  33079. },
  33080. form: "anthro"
  33081. },
  33082. feral: {
  33083. height: math.unit(16, "feet"),
  33084. name: "Feral",
  33085. image: {
  33086. source: "./media/characters/sini/feral.svg",
  33087. extra: 814/605,
  33088. bottom: 11/825
  33089. },
  33090. form: "feral",
  33091. default: true
  33092. },
  33093. feralNsfw: {
  33094. height: math.unit(16, "feet"),
  33095. name: "Feral (NSFW)",
  33096. image: {
  33097. source: "./media/characters/sini/feral-nsfw.svg",
  33098. extra: 814/605,
  33099. bottom: 11/825
  33100. },
  33101. form: "feral"
  33102. },
  33103. mawFeral: {
  33104. height: math.unit(5.66, "feet"),
  33105. name: "Maw",
  33106. image: {
  33107. source: "./media/characters/sini/maw-feral.svg"
  33108. },
  33109. form: "feral",
  33110. },
  33111. pawFeral: {
  33112. height: math.unit(5.17, "feet"),
  33113. name: "Paw",
  33114. image: {
  33115. source: "./media/characters/sini/paw-feral.svg"
  33116. },
  33117. form: "feral",
  33118. },
  33119. rumpFeral: {
  33120. height: math.unit(13.11, "feet"),
  33121. name: "Rump",
  33122. image: {
  33123. source: "./media/characters/sini/rump-feral.svg"
  33124. },
  33125. form: "feral",
  33126. },
  33127. dickFeral: {
  33128. height: math.unit(1, "feet"),
  33129. name: "Dick",
  33130. image: {
  33131. source: "./media/characters/sini/dick-feral.svg"
  33132. },
  33133. form: "feral",
  33134. },
  33135. eyeFeral: {
  33136. height: math.unit(1.23, "feet"),
  33137. name: "Eye",
  33138. image: {
  33139. source: "./media/characters/sini/eye-feral.svg"
  33140. },
  33141. form: "feral",
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(7, "feet"),
  33148. default: true,
  33149. form: "anthro"
  33150. },
  33151. {
  33152. name: "Normal",
  33153. height: math.unit(16, "feet"),
  33154. default: true,
  33155. form: "feral"
  33156. },
  33157. ],
  33158. {
  33159. "anthro": {
  33160. name: "Anthro",
  33161. default: true
  33162. },
  33163. "feral": {
  33164. name: "Feral",
  33165. }
  33166. }
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33170. {
  33171. side: {
  33172. height: math.unit(13, "meters"),
  33173. weight: math.unit(9072, "kg"),
  33174. name: "Side",
  33175. image: {
  33176. source: "./media/characters/raylldo/side.svg",
  33177. extra: 403/344,
  33178. bottom: 42/445
  33179. }
  33180. },
  33181. leaping: {
  33182. height: math.unit(12.3, "meters"),
  33183. weight: math.unit(9072, "kg"),
  33184. name: "Leaping",
  33185. image: {
  33186. source: "./media/characters/raylldo/leaping.svg",
  33187. extra: 470/249,
  33188. bottom: 13/483
  33189. }
  33190. },
  33191. flying: {
  33192. height: math.unit(18, "meters"),
  33193. weight: math.unit(9072, "kg"),
  33194. name: "Flying",
  33195. image: {
  33196. source: "./media/characters/raylldo/flying.svg"
  33197. }
  33198. },
  33199. head: {
  33200. height: math.unit(5.85, "meters"),
  33201. name: "Head",
  33202. image: {
  33203. source: "./media/characters/raylldo/head.svg"
  33204. }
  33205. },
  33206. maw: {
  33207. height: math.unit(5.32, "meters"),
  33208. name: "Maw",
  33209. image: {
  33210. source: "./media/characters/raylldo/maw.svg"
  33211. }
  33212. },
  33213. eye: {
  33214. height: math.unit(0.54, "meters"),
  33215. name: "Eye",
  33216. image: {
  33217. source: "./media/characters/raylldo/eye.svg"
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Normal",
  33224. height: math.unit(13, "meters"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33231. {
  33232. anthroFront: {
  33233. height: math.unit(9, "feet"),
  33234. weight: math.unit(600, "lb"),
  33235. name: "Anthro (Front)",
  33236. image: {
  33237. source: "./media/characters/glint/anthro-front.svg",
  33238. extra: 1097/1018,
  33239. bottom: 28/1125
  33240. }
  33241. },
  33242. anthroBack: {
  33243. height: math.unit(9, "feet"),
  33244. weight: math.unit(600, "lb"),
  33245. name: "Anthro (Back)",
  33246. image: {
  33247. source: "./media/characters/glint/anthro-back.svg",
  33248. extra: 1154/997,
  33249. bottom: 36/1190
  33250. }
  33251. },
  33252. feral: {
  33253. height: math.unit(11, "feet"),
  33254. weight: math.unit(50000, "lb"),
  33255. name: "Feral",
  33256. image: {
  33257. source: "./media/characters/glint/feral.svg",
  33258. extra: 3035/1585,
  33259. bottom: 1169/4204
  33260. }
  33261. },
  33262. dickAnthro: {
  33263. height: math.unit(0.7, "meters"),
  33264. name: "Dick (Anthro)",
  33265. image: {
  33266. source: "./media/characters/glint/dick-anthro.svg"
  33267. }
  33268. },
  33269. dickFeral: {
  33270. height: math.unit(2.65, "meters"),
  33271. name: "Dick (Feral)",
  33272. image: {
  33273. source: "./media/characters/glint/dick-feral.svg"
  33274. }
  33275. },
  33276. slitHidden: {
  33277. height: math.unit(5.85, "meters"),
  33278. name: "Slit (Hidden)",
  33279. image: {
  33280. source: "./media/characters/glint/slit-hidden.svg"
  33281. }
  33282. },
  33283. slitErect: {
  33284. height: math.unit(5.85, "meters"),
  33285. name: "Slit (Erect)",
  33286. image: {
  33287. source: "./media/characters/glint/slit-erect.svg"
  33288. }
  33289. },
  33290. mawAnthro: {
  33291. height: math.unit(0.63, "meters"),
  33292. name: "Maw (Anthro)",
  33293. image: {
  33294. source: "./media/characters/glint/maw.svg"
  33295. }
  33296. },
  33297. mawFeral: {
  33298. height: math.unit(2.89, "meters"),
  33299. name: "Maw (Feral)",
  33300. image: {
  33301. source: "./media/characters/glint/maw.svg"
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(9, "feet"),
  33309. default: true
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33315. {
  33316. side: {
  33317. height: math.unit(15, "feet"),
  33318. weight: math.unit(5000, "kg"),
  33319. name: "Side",
  33320. image: {
  33321. source: "./media/characters/kairne/side.svg",
  33322. extra: 979/811,
  33323. bottom: 13/992
  33324. }
  33325. },
  33326. front: {
  33327. height: math.unit(15, "feet"),
  33328. weight: math.unit(5000, "kg"),
  33329. name: "Front",
  33330. image: {
  33331. source: "./media/characters/kairne/front.svg",
  33332. extra: 908/814,
  33333. bottom: 26/934
  33334. }
  33335. },
  33336. sideNsfw: {
  33337. height: math.unit(15, "feet"),
  33338. weight: math.unit(5000, "kg"),
  33339. name: "Side (NSFW)",
  33340. image: {
  33341. source: "./media/characters/kairne/side-nsfw.svg",
  33342. extra: 979/811,
  33343. bottom: 13/992
  33344. }
  33345. },
  33346. frontNsfw: {
  33347. height: math.unit(15, "feet"),
  33348. weight: math.unit(5000, "kg"),
  33349. name: "Front (NSFW)",
  33350. image: {
  33351. source: "./media/characters/kairne/front-nsfw.svg",
  33352. extra: 908/814,
  33353. bottom: 26/934
  33354. }
  33355. },
  33356. dickCaged: {
  33357. height: math.unit(0.65, "meters"),
  33358. name: "Dick-caged",
  33359. image: {
  33360. source: "./media/characters/kairne/dick-caged.svg"
  33361. }
  33362. },
  33363. dick: {
  33364. height: math.unit(0.79, "meters"),
  33365. name: "Dick",
  33366. image: {
  33367. source: "./media/characters/kairne/dick.svg"
  33368. }
  33369. },
  33370. genitals: {
  33371. height: math.unit(1.29, "meters"),
  33372. name: "Genitals",
  33373. image: {
  33374. source: "./media/characters/kairne/genitals.svg"
  33375. }
  33376. },
  33377. maw: {
  33378. height: math.unit(1.73, "meters"),
  33379. name: "Maw",
  33380. image: {
  33381. source: "./media/characters/kairne/maw.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(15, "feet"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(5 + 8/12, "feet"),
  33398. weight: math.unit(139, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/biscuit-jackal/front.svg",
  33402. extra: 2106/1961,
  33403. bottom: 58/2164
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(5 + 8/12, "feet"),
  33408. weight: math.unit(139, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/biscuit-jackal/back.svg",
  33412. extra: 2132/1976,
  33413. bottom: 57/2189
  33414. }
  33415. },
  33416. werejackal: {
  33417. height: math.unit(6 + 3/12, "feet"),
  33418. weight: math.unit(188, "lb"),
  33419. name: "Werejackal",
  33420. image: {
  33421. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33422. extra: 2373/2178,
  33423. bottom: 53/2426
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(5 + 8/12, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(140, "cm"),
  33440. weight: math.unit(45, "kg"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/tayra-white/front.svg",
  33444. extra: 2229/2192,
  33445. bottom: 75/2304
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(140, "cm"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(4 + 5/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/scoop/front.svg",
  33465. extra: 1257/1136,
  33466. bottom: 69/1326
  33467. }
  33468. },
  33469. back: {
  33470. height: math.unit(4 + 5/12, "feet"),
  33471. name: "Back",
  33472. image: {
  33473. source: "./media/characters/scoop/back.svg",
  33474. extra: 1321/1152,
  33475. bottom: 32/1353
  33476. }
  33477. },
  33478. maw: {
  33479. height: math.unit(0.68, "feet"),
  33480. name: "Maw",
  33481. image: {
  33482. source: "./media/characters/scoop/maw.svg"
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Really Small",
  33489. height: math.unit(1, "mm")
  33490. },
  33491. {
  33492. name: "Micro",
  33493. height: math.unit(1, "inch")
  33494. },
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(4 + 5/12, "feet"),
  33498. default: true
  33499. },
  33500. {
  33501. name: "Macro",
  33502. height: math.unit(200, "feet")
  33503. },
  33504. {
  33505. name: "Megamacro",
  33506. height: math.unit(3240, "feet")
  33507. },
  33508. {
  33509. name: "Teramacro",
  33510. height: math.unit(2500, "miles")
  33511. },
  33512. ]
  33513. ))
  33514. characterMakers.push(() => makeCharacter(
  33515. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33516. {
  33517. front: {
  33518. height: math.unit(15 + 7/12, "feet"),
  33519. name: "Front",
  33520. image: {
  33521. source: "./media/characters/saphinara/front.svg",
  33522. extra: 604/546,
  33523. bottom: 19/623
  33524. }
  33525. },
  33526. side: {
  33527. height: math.unit(15 + 7/12, "feet"),
  33528. name: "Side",
  33529. image: {
  33530. source: "./media/characters/saphinara/side.svg",
  33531. extra: 605/547,
  33532. bottom: 6/611
  33533. }
  33534. },
  33535. back: {
  33536. height: math.unit(15 + 7/12, "feet"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/saphinara/back.svg",
  33540. extra: 591/531,
  33541. bottom: 13/604
  33542. }
  33543. },
  33544. frontTail: {
  33545. height: math.unit(15 + 7/12, "feet"),
  33546. name: "Front (Full Tail)",
  33547. image: {
  33548. source: "./media/characters/saphinara/front-tail.svg",
  33549. extra: 748/547,
  33550. bottom: 66/814
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(15 + 7/12, "feet"),
  33558. default: true
  33559. },
  33560. {
  33561. name: "Angry",
  33562. height: math.unit(30 + 6/12, "feet")
  33563. },
  33564. {
  33565. name: "Enraged",
  33566. height: math.unit(102 + 1/12, "feet")
  33567. },
  33568. ]
  33569. ))
  33570. characterMakers.push(() => makeCharacter(
  33571. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33572. {
  33573. front: {
  33574. height: math.unit(6 + 8/12, "feet"),
  33575. weight: math.unit(300, "lb"),
  33576. name: "Front",
  33577. image: {
  33578. source: "./media/characters/jrain/front.svg",
  33579. extra: 3039/2865,
  33580. bottom: 399/3438
  33581. }
  33582. },
  33583. back: {
  33584. height: math.unit(6 + 8/12, "feet"),
  33585. weight: math.unit(300, "lb"),
  33586. name: "Back",
  33587. image: {
  33588. source: "./media/characters/jrain/back.svg",
  33589. extra: 3089/2938,
  33590. bottom: 172/3261
  33591. }
  33592. },
  33593. head: {
  33594. height: math.unit(2.14, "feet"),
  33595. name: "Head",
  33596. image: {
  33597. source: "./media/characters/jrain/head.svg"
  33598. }
  33599. },
  33600. maw: {
  33601. height: math.unit(1.77, "feet"),
  33602. name: "Maw",
  33603. image: {
  33604. source: "./media/characters/jrain/maw.svg"
  33605. }
  33606. },
  33607. leftHand: {
  33608. height: math.unit(1.1, "feet"),
  33609. name: "Left Hand",
  33610. image: {
  33611. source: "./media/characters/jrain/left-hand.svg"
  33612. }
  33613. },
  33614. rightHand: {
  33615. height: math.unit(1.1, "feet"),
  33616. name: "Right Hand",
  33617. image: {
  33618. source: "./media/characters/jrain/right-hand.svg"
  33619. }
  33620. },
  33621. eye: {
  33622. height: math.unit(0.35, "feet"),
  33623. name: "Eye",
  33624. image: {
  33625. source: "./media/characters/jrain/eye.svg"
  33626. }
  33627. },
  33628. },
  33629. [
  33630. {
  33631. name: "Normal",
  33632. height: math.unit(6 + 8/12, "feet"),
  33633. default: true
  33634. },
  33635. {
  33636. name: "Casually Large",
  33637. height: math.unit(25, "feet")
  33638. },
  33639. {
  33640. name: "Giant",
  33641. height: math.unit(100, "feet")
  33642. },
  33643. {
  33644. name: "Kaiju",
  33645. height: math.unit(300, "feet")
  33646. },
  33647. ]
  33648. ))
  33649. characterMakers.push(() => makeCharacter(
  33650. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33651. {
  33652. dragon: {
  33653. height: math.unit(5, "meters"),
  33654. name: "Dragon",
  33655. image: {
  33656. source: "./media/characters/sabrina/dragon.svg",
  33657. extra: 3670 / 2365,
  33658. bottom: 333 / 4003
  33659. }
  33660. },
  33661. gryphon: {
  33662. height: math.unit(3, "meters"),
  33663. name: "Gryphon",
  33664. image: {
  33665. source: "./media/characters/sabrina/gryphon.svg",
  33666. extra: 1576 / 945,
  33667. bottom: 71 / 1647
  33668. }
  33669. },
  33670. snake: {
  33671. height: math.unit(12, "meters"),
  33672. name: "Snake",
  33673. image: {
  33674. source: "./media/characters/sabrina/snake.svg",
  33675. extra: 1758 / 1320,
  33676. bottom: 186 / 1944
  33677. }
  33678. },
  33679. collar: {
  33680. height: math.unit(1.86, "meters"),
  33681. name: "Collar",
  33682. image: {
  33683. source: "./media/characters/sabrina/collar.svg"
  33684. }
  33685. },
  33686. eye: {
  33687. height: math.unit(0.53, "meters"),
  33688. name: "Eye",
  33689. image: {
  33690. source: "./media/characters/sabrina/eye.svg"
  33691. }
  33692. },
  33693. foot: {
  33694. height: math.unit(1.86, "meters"),
  33695. name: "Foot",
  33696. image: {
  33697. source: "./media/characters/sabrina/foot.svg"
  33698. }
  33699. },
  33700. hand: {
  33701. height: math.unit(1.32, "meters"),
  33702. name: "Hand",
  33703. image: {
  33704. source: "./media/characters/sabrina/hand.svg"
  33705. }
  33706. },
  33707. head: {
  33708. height: math.unit(2.44, "meters"),
  33709. name: "Head",
  33710. image: {
  33711. source: "./media/characters/sabrina/head.svg"
  33712. }
  33713. },
  33714. headAngry: {
  33715. height: math.unit(2.44, "meters"),
  33716. name: "Head (Angry))",
  33717. image: {
  33718. source: "./media/characters/sabrina/head-angry.svg"
  33719. }
  33720. },
  33721. maw: {
  33722. height: math.unit(1.65, "meters"),
  33723. name: "Maw",
  33724. image: {
  33725. source: "./media/characters/sabrina/maw.svg"
  33726. }
  33727. },
  33728. spikes: {
  33729. height: math.unit(1.69, "meters"),
  33730. name: "Spikes",
  33731. image: {
  33732. source: "./media/characters/sabrina/spikes.svg"
  33733. }
  33734. },
  33735. stomach: {
  33736. height: math.unit(1.15, "meters"),
  33737. name: "Stomach",
  33738. image: {
  33739. source: "./media/characters/sabrina/stomach.svg"
  33740. }
  33741. },
  33742. tongue: {
  33743. height: math.unit(1.27, "meters"),
  33744. name: "Tongue",
  33745. image: {
  33746. source: "./media/characters/sabrina/tongue.svg"
  33747. }
  33748. },
  33749. wingDorsal: {
  33750. height: math.unit(4.85, "meters"),
  33751. name: "Wing (Dorsal)",
  33752. image: {
  33753. source: "./media/characters/sabrina/wing-dorsal.svg"
  33754. }
  33755. },
  33756. wingVentral: {
  33757. height: math.unit(4.85, "meters"),
  33758. name: "Wing (Ventral)",
  33759. image: {
  33760. source: "./media/characters/sabrina/wing-ventral.svg"
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(5, "meters"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33774. {
  33775. frontMaid: {
  33776. height: math.unit(5 + 5/12, "feet"),
  33777. weight: math.unit(130, "lb"),
  33778. name: "Front (Maid)",
  33779. image: {
  33780. source: "./media/characters/midnight-tales/front-maid.svg",
  33781. extra: 489/454,
  33782. bottom: 61/550
  33783. }
  33784. },
  33785. frontFormal: {
  33786. height: math.unit(5 + 5/12, "feet"),
  33787. weight: math.unit(130, "lb"),
  33788. name: "Front (Formal)",
  33789. image: {
  33790. source: "./media/characters/midnight-tales/front-formal.svg",
  33791. extra: 489/454,
  33792. bottom: 61/550
  33793. }
  33794. },
  33795. back: {
  33796. height: math.unit(5 + 5/12, "feet"),
  33797. weight: math.unit(130, "lb"),
  33798. name: "Back",
  33799. image: {
  33800. source: "./media/characters/midnight-tales/back.svg",
  33801. extra: 498/456,
  33802. bottom: 33/531
  33803. }
  33804. },
  33805. frontBeast: {
  33806. height: math.unit(40, "feet"),
  33807. weight: math.unit(64000, "lb"),
  33808. name: "Front (Beast)",
  33809. image: {
  33810. source: "./media/characters/midnight-tales/front-beast.svg",
  33811. extra: 927/860,
  33812. bottom: 53/980
  33813. }
  33814. },
  33815. backBeast: {
  33816. height: math.unit(40, "feet"),
  33817. weight: math.unit(64000, "lb"),
  33818. name: "Back (Beast)",
  33819. image: {
  33820. source: "./media/characters/midnight-tales/back-beast.svg",
  33821. extra: 929/855,
  33822. bottom: 16/945
  33823. }
  33824. },
  33825. footBeast: {
  33826. height: math.unit(6.7, "feet"),
  33827. name: "Foot (Beast)",
  33828. image: {
  33829. source: "./media/characters/midnight-tales/foot-beast.svg"
  33830. }
  33831. },
  33832. headBeast: {
  33833. height: math.unit(8, "feet"),
  33834. name: "Head (Beast)",
  33835. image: {
  33836. source: "./media/characters/midnight-tales/head-beast.svg"
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(5 + 5 / 12, "feet"),
  33844. default: true
  33845. },
  33846. {
  33847. name: "Macro",
  33848. height: math.unit(25, "feet")
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(5 + 10/12, "feet"),
  33857. name: "Front",
  33858. image: {
  33859. source: "./media/characters/argon/front.svg",
  33860. extra: 2009/1935,
  33861. bottom: 118/2127
  33862. }
  33863. },
  33864. back: {
  33865. height: math.unit(5 + 10/12, "feet"),
  33866. name: "Back",
  33867. image: {
  33868. source: "./media/characters/argon/back.svg",
  33869. extra: 2047/1992,
  33870. bottom: 20/2067
  33871. }
  33872. },
  33873. frontDressed: {
  33874. height: math.unit(5 + 10/12, "feet"),
  33875. name: "Front (Dressed)",
  33876. image: {
  33877. source: "./media/characters/argon/front-dressed.svg",
  33878. extra: 2009/1935,
  33879. bottom: 118/2127
  33880. }
  33881. },
  33882. },
  33883. [
  33884. {
  33885. name: "Normal",
  33886. height: math.unit(5 + 10/12, "feet"),
  33887. default: true
  33888. },
  33889. ]
  33890. ))
  33891. characterMakers.push(() => makeCharacter(
  33892. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33893. {
  33894. front: {
  33895. height: math.unit(8 + 6/12, "feet"),
  33896. weight: math.unit(1150, "lb"),
  33897. name: "Front",
  33898. image: {
  33899. source: "./media/characters/kichi/front.svg",
  33900. extra: 1267/1164,
  33901. bottom: 61/1328
  33902. }
  33903. },
  33904. back: {
  33905. height: math.unit(8 + 6/12, "feet"),
  33906. weight: math.unit(1150, "lb"),
  33907. name: "Back",
  33908. image: {
  33909. source: "./media/characters/kichi/back.svg",
  33910. extra: 1273/1166,
  33911. bottom: 33/1306
  33912. }
  33913. },
  33914. },
  33915. [
  33916. {
  33917. name: "Normal",
  33918. height: math.unit(8 + 6/12, "feet"),
  33919. default: true
  33920. },
  33921. ]
  33922. ))
  33923. characterMakers.push(() => makeCharacter(
  33924. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33925. {
  33926. front: {
  33927. height: math.unit(6, "feet"),
  33928. weight: math.unit(210, "lb"),
  33929. name: "Front",
  33930. image: {
  33931. source: "./media/characters/manetel-greyscale/front.svg",
  33932. extra: 350/312,
  33933. bottom: 8/358
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Micro",
  33940. height: math.unit(2, "inches")
  33941. },
  33942. {
  33943. name: "Normal",
  33944. height: math.unit(6, "feet"),
  33945. default: true
  33946. },
  33947. {
  33948. name: "Minimacro",
  33949. height: math.unit(17, "feet")
  33950. },
  33951. {
  33952. name: "Macro",
  33953. height: math.unit(117, "feet")
  33954. },
  33955. ]
  33956. ))
  33957. characterMakers.push(() => makeCharacter(
  33958. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33959. {
  33960. side: {
  33961. height: math.unit(5 + 1/12, "feet"),
  33962. weight: math.unit(418, "lb"),
  33963. name: "Side",
  33964. image: {
  33965. source: "./media/characters/softpurr/side.svg",
  33966. extra: 1993/1945,
  33967. bottom: 134/2127
  33968. }
  33969. },
  33970. front: {
  33971. height: math.unit(5 + 1/12, "feet"),
  33972. weight: math.unit(418, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/softpurr/front.svg",
  33976. extra: 1950/1856,
  33977. bottom: 174/2124
  33978. }
  33979. },
  33980. paw: {
  33981. height: math.unit(1, "feet"),
  33982. name: "Paw",
  33983. image: {
  33984. source: "./media/characters/softpurr/paw.svg"
  33985. }
  33986. },
  33987. },
  33988. [
  33989. {
  33990. name: "Normal",
  33991. height: math.unit(5 + 1/12, "feet"),
  33992. default: true
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33998. {
  33999. front: {
  34000. height: math.unit(260, "meters"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/anahita/front.svg",
  34004. extra: 665/635,
  34005. bottom: 89/754
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Macro",
  34012. height: math.unit(260, "meters"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34019. {
  34020. front: {
  34021. height: math.unit(4 + 10/12, "feet"),
  34022. weight: math.unit(160, "lb"),
  34023. name: "Front",
  34024. image: {
  34025. source: "./media/characters/chip-mouse/front.svg",
  34026. extra: 3528/3408,
  34027. bottom: 0/3528
  34028. }
  34029. },
  34030. frontNsfw: {
  34031. height: math.unit(4 + 10/12, "feet"),
  34032. weight: math.unit(160, "lb"),
  34033. name: "Front (NSFW)",
  34034. image: {
  34035. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34036. extra: 3528/3408,
  34037. bottom: 0/3528
  34038. }
  34039. },
  34040. },
  34041. [
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(4 + 10/12, "feet"),
  34045. default: true
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34051. {
  34052. side: {
  34053. height: math.unit(10, "feet"),
  34054. weight: math.unit(14000, "lb"),
  34055. name: "Side",
  34056. image: {
  34057. source: "./media/characters/kremm/side.svg",
  34058. extra: 1390/1053,
  34059. bottom: 90/1480
  34060. }
  34061. },
  34062. gut: {
  34063. height: math.unit(5.8, "feet"),
  34064. name: "Gut",
  34065. image: {
  34066. source: "./media/characters/kremm/gut.svg"
  34067. }
  34068. },
  34069. ass: {
  34070. height: math.unit(6.1, "feet"),
  34071. name: "Ass",
  34072. image: {
  34073. source: "./media/characters/kremm/ass.svg"
  34074. }
  34075. },
  34076. jaws: {
  34077. height: math.unit(2.2, "feet"),
  34078. name: "Jaws",
  34079. image: {
  34080. source: "./media/characters/kremm/jaws.svg"
  34081. }
  34082. },
  34083. dick: {
  34084. height: math.unit(4.26, "feet"),
  34085. name: "Dick",
  34086. image: {
  34087. source: "./media/characters/kremm/dick.svg"
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(10, "feet"),
  34095. default: true
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(30, "stories"),
  34104. name: "Front",
  34105. image: {
  34106. source: "./media/characters/kai/front.svg",
  34107. extra: 1892/1718,
  34108. bottom: 162/2054
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Macro",
  34115. height: math.unit(30, "stories"),
  34116. default: true
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(6 + 4/12, "feet"),
  34125. weight: math.unit(145, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/sykes/front.svg",
  34129. extra: 1321 / 1187,
  34130. bottom: 66 / 1387
  34131. }
  34132. },
  34133. back: {
  34134. height: math.unit(6 + 4/12, "feet"),
  34135. weight: math.unit(145, "lb"),
  34136. name: "Back",
  34137. image: {
  34138. source: "./media/characters/sykes/back.svg",
  34139. extra: 1326/1181,
  34140. bottom: 31/1357
  34141. }
  34142. },
  34143. handBack: {
  34144. height: math.unit(0.9, "feet"),
  34145. name: "Hand (Back)",
  34146. image: {
  34147. source: "./media/characters/sykes/hand-back.svg"
  34148. }
  34149. },
  34150. handFront: {
  34151. height: math.unit(0.839, "feet"),
  34152. name: "Hand (Front)",
  34153. image: {
  34154. source: "./media/characters/sykes/hand-front.svg"
  34155. }
  34156. },
  34157. leftFoot: {
  34158. height: math.unit(1.2, "feet"),
  34159. name: "Foot (Left)",
  34160. image: {
  34161. source: "./media/characters/sykes/foot-left.svg"
  34162. }
  34163. },
  34164. rightFoot: {
  34165. height: math.unit(1.2, "feet"),
  34166. name: "Foot (Right)",
  34167. image: {
  34168. source: "./media/characters/sykes/foot-right.svg"
  34169. }
  34170. },
  34171. maw: {
  34172. height: math.unit(1.93, "feet"),
  34173. name: "Maw",
  34174. image: {
  34175. source: "./media/characters/sykes/maw.svg"
  34176. }
  34177. },
  34178. teeth: {
  34179. height: math.unit(0.51, "feet"),
  34180. name: "Teeth",
  34181. image: {
  34182. source: "./media/characters/sykes/teeth.svg"
  34183. }
  34184. },
  34185. tongue: {
  34186. height: math.unit(2.13, "feet"),
  34187. name: "Tongue",
  34188. image: {
  34189. source: "./media/characters/sykes/tongue.svg"
  34190. }
  34191. },
  34192. uvula: {
  34193. height: math.unit(0.16, "feet"),
  34194. name: "Uvula",
  34195. image: {
  34196. source: "./media/characters/sykes/uvula.svg"
  34197. }
  34198. },
  34199. collar: {
  34200. height: math.unit(0.287, "feet"),
  34201. name: "Collar",
  34202. image: {
  34203. source: "./media/characters/sykes/collar.svg"
  34204. }
  34205. },
  34206. },
  34207. [
  34208. {
  34209. name: "Shrunken",
  34210. height: math.unit(5, "inches")
  34211. },
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(6 + 4 / 12, "feet"),
  34215. default: true
  34216. },
  34217. {
  34218. name: "Big",
  34219. height: math.unit(15, "feet")
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(5 + 8/12, "feet"),
  34228. weight: math.unit(190, "lb"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/oven-otter/front.svg",
  34232. extra: 1809/1740,
  34233. bottom: 181/1990
  34234. }
  34235. },
  34236. back: {
  34237. height: math.unit(5 + 8/12, "feet"),
  34238. weight: math.unit(190, "lb"),
  34239. name: "Back",
  34240. image: {
  34241. source: "./media/characters/oven-otter/back.svg",
  34242. extra: 1709/1635,
  34243. bottom: 118/1827
  34244. }
  34245. },
  34246. hand: {
  34247. height: math.unit(1.07, "feet"),
  34248. name: "Hand",
  34249. image: {
  34250. source: "./media/characters/oven-otter/hand.svg"
  34251. }
  34252. },
  34253. beans: {
  34254. height: math.unit(1.74, "feet"),
  34255. name: "Beans",
  34256. image: {
  34257. source: "./media/characters/oven-otter/beans.svg"
  34258. }
  34259. },
  34260. },
  34261. [
  34262. {
  34263. name: "Micro",
  34264. height: math.unit(0.5, "inches")
  34265. },
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(5 + 8/12, "feet"),
  34269. default: true
  34270. },
  34271. {
  34272. name: "Macro",
  34273. height: math.unit(250, "feet")
  34274. },
  34275. {
  34276. name: "Really High",
  34277. height: math.unit(420, "feet")
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34283. {
  34284. front: {
  34285. height: math.unit(5, "meters"),
  34286. weight: math.unit(292000000000000, "kg"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/devourer/front.svg",
  34290. extra: 1800/1733,
  34291. bottom: 211/2011
  34292. }
  34293. },
  34294. maw: {
  34295. height: math.unit(1.1, "meter"),
  34296. name: "Maw",
  34297. image: {
  34298. source: "./media/characters/devourer/maw.svg"
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Small",
  34305. height: math.unit(3, "meters")
  34306. },
  34307. {
  34308. name: "Large",
  34309. height: math.unit(5, "meters"),
  34310. default: true
  34311. },
  34312. ]
  34313. ))
  34314. characterMakers.push(() => makeCharacter(
  34315. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34316. {
  34317. front: {
  34318. height: math.unit(6, "feet"),
  34319. weight: math.unit(400, "lb"),
  34320. name: "Front",
  34321. image: {
  34322. source: "./media/characters/ellarby/front.svg",
  34323. extra: 1909/1763,
  34324. bottom: 80/1989
  34325. }
  34326. },
  34327. back: {
  34328. height: math.unit(6, "feet"),
  34329. weight: math.unit(400, "lb"),
  34330. name: "Back",
  34331. image: {
  34332. source: "./media/characters/ellarby/back.svg",
  34333. extra: 1914/1784,
  34334. bottom: 172/2086
  34335. }
  34336. },
  34337. },
  34338. [
  34339. {
  34340. name: "Mischief",
  34341. height: math.unit(18, "inches")
  34342. },
  34343. {
  34344. name: "Trouble",
  34345. height: math.unit(12, "feet")
  34346. },
  34347. {
  34348. name: "Havoc",
  34349. height: math.unit(200, "feet"),
  34350. default: true
  34351. },
  34352. {
  34353. name: "Pandemonium",
  34354. height: math.unit(1, "mile")
  34355. },
  34356. {
  34357. name: "Catastrophe",
  34358. height: math.unit(100, "miles")
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34364. {
  34365. front: {
  34366. height: math.unit(4.7, "meters"),
  34367. weight: math.unit(6500, "kg"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/vex/front.svg",
  34371. extra: 1288/1140,
  34372. bottom: 100/1388
  34373. }
  34374. },
  34375. },
  34376. [
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(4.7, "meters"),
  34380. default: true
  34381. },
  34382. ]
  34383. ))
  34384. characterMakers.push(() => makeCharacter(
  34385. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34386. {
  34387. normal: {
  34388. height: math.unit(6, "feet"),
  34389. weight: math.unit(350, "lb"),
  34390. name: "Normal",
  34391. image: {
  34392. source: "./media/characters/teshy/normal.svg",
  34393. extra: 1795/1735,
  34394. bottom: 16/1811
  34395. }
  34396. },
  34397. monsterFront: {
  34398. height: math.unit(12, "feet"),
  34399. weight: math.unit(4700, "lb"),
  34400. name: "Monster (Front)",
  34401. image: {
  34402. source: "./media/characters/teshy/monster-front.svg",
  34403. extra: 2042/2034,
  34404. bottom: 128/2170
  34405. }
  34406. },
  34407. monsterSide: {
  34408. height: math.unit(12, "feet"),
  34409. weight: math.unit(4700, "lb"),
  34410. name: "Monster (Side)",
  34411. image: {
  34412. source: "./media/characters/teshy/monster-side.svg",
  34413. extra: 2067/2056,
  34414. bottom: 70/2137
  34415. }
  34416. },
  34417. monsterBack: {
  34418. height: math.unit(12, "feet"),
  34419. weight: math.unit(4700, "lb"),
  34420. name: "Monster (Back)",
  34421. image: {
  34422. source: "./media/characters/teshy/monster-back.svg",
  34423. extra: 1921/1914,
  34424. bottom: 171/2092
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Normal",
  34431. height: math.unit(6, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(6, "feet"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/ramey/front.svg",
  34444. extra: 790/787,
  34445. bottom: 27/817
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(6, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(5 + 5/12, "feet"),
  34462. weight: math.unit(120, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/phirae/front.svg",
  34466. extra: 2491/2436,
  34467. bottom: 38/2529
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(5 + 5/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34481. {
  34482. front: {
  34483. height: math.unit(5 + 3/12, "feet"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/stagglas/front.svg",
  34487. extra: 962/882,
  34488. bottom: 53/1015
  34489. }
  34490. },
  34491. feral: {
  34492. height: math.unit(335, "cm"),
  34493. name: "Feral",
  34494. image: {
  34495. source: "./media/characters/stagglas/feral.svg",
  34496. extra: 1732/1090,
  34497. bottom: 48/1780
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(5 + 3/12, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(5 + 4/12, "feet"),
  34514. weight: math.unit(145, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/starra/front.svg",
  34518. extra: 1790/1691,
  34519. bottom: 91/1881
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(5 + 4/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(2.2, "meters"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34539. extra: 1194/1005,
  34540. bottom: 25/1219
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(2.2, "meters"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34554. {
  34555. side: {
  34556. height: math.unit(8 + 2/12, "feet"),
  34557. weight: math.unit(1240, "lb"),
  34558. name: "Side",
  34559. image: {
  34560. source: "./media/characters/mika-valentine/side.svg",
  34561. extra: 2670/2501,
  34562. bottom: 250/2920
  34563. }
  34564. },
  34565. },
  34566. [
  34567. {
  34568. name: "Normal",
  34569. height: math.unit(8 + 2/12, "feet"),
  34570. default: true
  34571. },
  34572. ]
  34573. ))
  34574. characterMakers.push(() => makeCharacter(
  34575. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34576. {
  34577. front: {
  34578. height: math.unit(7 + 2/12, "feet"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/xoltol/front.svg",
  34582. extra: 2212/2124,
  34583. bottom: 84/2296
  34584. }
  34585. },
  34586. side: {
  34587. height: math.unit(7 + 2/12, "feet"),
  34588. name: "Side",
  34589. image: {
  34590. source: "./media/characters/xoltol/side.svg",
  34591. extra: 2273/2197,
  34592. bottom: 26/2299
  34593. }
  34594. },
  34595. hand: {
  34596. height: math.unit(2.5, "feet"),
  34597. name: "Hand",
  34598. image: {
  34599. source: "./media/characters/xoltol/hand.svg"
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Small-ish",
  34606. height: math.unit(5 + 11/12, "feet")
  34607. },
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(7 + 2/12, "feet")
  34611. },
  34612. {
  34613. name: "\"Macro\"",
  34614. height: math.unit(14 + 9/12, "feet"),
  34615. default: true
  34616. },
  34617. {
  34618. name: "Alternate Height",
  34619. height: math.unit(20, "feet")
  34620. },
  34621. {
  34622. name: "Actually Macro",
  34623. height: math.unit(100, "feet")
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(5 + 2/12, "feet"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/kotetsu-redwood/front.svg",
  34635. extra: 1053/942,
  34636. bottom: 60/1113
  34637. }
  34638. },
  34639. },
  34640. [
  34641. {
  34642. name: "Normal",
  34643. height: math.unit(5 + 2/12, "feet"),
  34644. default: true
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(2.4, "meters"),
  34653. weight: math.unit(125, "kg"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/lilith/front.svg",
  34657. extra: 1590/1513,
  34658. bottom: 203/1793
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Humanoid",
  34665. height: math.unit(2.4, "meters")
  34666. },
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(6, "meters"),
  34670. default: true
  34671. },
  34672. {
  34673. name: "Largest",
  34674. height: math.unit(55, "meters")
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(8 + 4/12, "feet"),
  34683. weight: math.unit(535, "lb"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/beh'kah-bolger/front.svg",
  34687. extra: 1660/1603,
  34688. bottom: 37/1697
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(8 + 4/12, "feet"),
  34696. default: true
  34697. },
  34698. {
  34699. name: "Kaiju",
  34700. height: math.unit(250, "feet")
  34701. },
  34702. {
  34703. name: "Still Growing",
  34704. height: math.unit(10, "miles")
  34705. },
  34706. {
  34707. name: "Continental",
  34708. height: math.unit(5000, "miles")
  34709. },
  34710. {
  34711. name: "Final Form",
  34712. height: math.unit(2500000, "miles")
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34718. {
  34719. front: {
  34720. height: math.unit(7 + 2/12, "feet"),
  34721. weight: math.unit(230, "kg"),
  34722. name: "Front",
  34723. image: {
  34724. source: "./media/characters/tatyana-milewska/front.svg",
  34725. extra: 1199/1150,
  34726. bottom: 86/1285
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(7 + 2/12, "feet"),
  34734. default: true
  34735. },
  34736. {
  34737. name: "Big",
  34738. height: math.unit(12, "feet")
  34739. },
  34740. {
  34741. name: "Minimacro",
  34742. height: math.unit(20, "feet")
  34743. },
  34744. {
  34745. name: "Macro",
  34746. height: math.unit(120, "feet")
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34752. {
  34753. front: {
  34754. height: math.unit(7 + 8/12, "feet"),
  34755. weight: math.unit(152, "kg"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/helen-arri/front.svg",
  34759. extra: 440/423,
  34760. bottom: 14/454
  34761. }
  34762. },
  34763. back: {
  34764. height: math.unit(7 + 8/12, "feet"),
  34765. weight: math.unit(152, "kg"),
  34766. name: "Back",
  34767. image: {
  34768. source: "./media/characters/helen-arri/back.svg",
  34769. extra: 443/426,
  34770. bottom: 8/451
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Normal",
  34777. height: math.unit(7 + 8/12, "feet"),
  34778. default: true
  34779. },
  34780. {
  34781. name: "Big",
  34782. height: math.unit(14, "feet")
  34783. },
  34784. {
  34785. name: "Minimacro",
  34786. height: math.unit(24, "feet")
  34787. },
  34788. {
  34789. name: "Macro",
  34790. height: math.unit(140, "feet")
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(6, "meters"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/ehanu-rehu/front.svg",
  34802. extra: 1800/1800,
  34803. bottom: 59/1859
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Normal",
  34810. height: math.unit(6, "meters"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(7 + 3/12, "feet"),
  34820. name: "Front",
  34821. image: {
  34822. source: "./media/characters/renholder/front.svg",
  34823. extra: 3096/2960,
  34824. bottom: 250/3346
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal Bat",
  34831. height: math.unit(7 + 3/12, "feet"),
  34832. default: true
  34833. },
  34834. {
  34835. name: "Slightly Tall Bat",
  34836. height: math.unit(100, "feet")
  34837. },
  34838. {
  34839. name: "Big Bat",
  34840. height: math.unit(1000, "feet")
  34841. },
  34842. {
  34843. name: "City-Sized Bat",
  34844. height: math.unit(200000, "feet")
  34845. },
  34846. {
  34847. name: "Bigger Bat",
  34848. height: math.unit(10000, "miles")
  34849. },
  34850. {
  34851. name: "Solar Sized Bat",
  34852. height: math.unit(100, "AU")
  34853. },
  34854. {
  34855. name: "Galactic Bat",
  34856. height: math.unit(200000, "lightyears")
  34857. },
  34858. {
  34859. name: "Universally Known Bat",
  34860. height: math.unit(1, "universe")
  34861. },
  34862. ]
  34863. ))
  34864. characterMakers.push(() => makeCharacter(
  34865. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34866. {
  34867. front: {
  34868. height: math.unit(6 + 11/12, "feet"),
  34869. weight: math.unit(250, "lb"),
  34870. name: "Front",
  34871. image: {
  34872. source: "./media/characters/cookiecat/front.svg",
  34873. extra: 893/827,
  34874. bottom: 14/907
  34875. }
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Micro",
  34881. height: math.unit(3, "inches")
  34882. },
  34883. {
  34884. name: "Normal",
  34885. height: math.unit(6 + 11/12, "feet"),
  34886. default: true
  34887. },
  34888. {
  34889. name: "Macro",
  34890. height: math.unit(100, "feet")
  34891. },
  34892. {
  34893. name: "Macro+",
  34894. height: math.unit(404, "feet")
  34895. },
  34896. {
  34897. name: "Megamacro",
  34898. height: math.unit(165, "miles")
  34899. },
  34900. {
  34901. name: "Planetary",
  34902. height: math.unit(4600, "miles")
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(10 + 3/12, "feet"),
  34911. weight: math.unit(1500, "lb"),
  34912. name: "Front",
  34913. image: {
  34914. source: "./media/characters/tux-kusanagi/front.svg",
  34915. extra: 944/840,
  34916. bottom: 39/983
  34917. }
  34918. },
  34919. back: {
  34920. height: math.unit(10 + 3/12, "feet"),
  34921. weight: math.unit(1500, "lb"),
  34922. name: "Back",
  34923. image: {
  34924. source: "./media/characters/tux-kusanagi/back.svg",
  34925. extra: 941/842,
  34926. bottom: 28/969
  34927. }
  34928. },
  34929. rump: {
  34930. height: math.unit(5.25, "feet"),
  34931. name: "Rump",
  34932. image: {
  34933. source: "./media/characters/tux-kusanagi/rump.svg"
  34934. }
  34935. },
  34936. beak: {
  34937. height: math.unit(1.54, "feet"),
  34938. name: "Beak",
  34939. image: {
  34940. source: "./media/characters/tux-kusanagi/beak.svg"
  34941. }
  34942. },
  34943. },
  34944. [
  34945. {
  34946. name: "Normal",
  34947. height: math.unit(10 + 3/12, "feet"),
  34948. default: true
  34949. },
  34950. ]
  34951. ))
  34952. characterMakers.push(() => makeCharacter(
  34953. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34954. {
  34955. front: {
  34956. height: math.unit(58, "feet"),
  34957. weight: math.unit(200, "tons"),
  34958. name: "Front",
  34959. image: {
  34960. source: "./media/characters/uzarmazari/front.svg",
  34961. extra: 1575/1455,
  34962. bottom: 152/1727
  34963. }
  34964. },
  34965. back: {
  34966. height: math.unit(58, "feet"),
  34967. weight: math.unit(200, "tons"),
  34968. name: "Back",
  34969. image: {
  34970. source: "./media/characters/uzarmazari/back.svg",
  34971. extra: 1585/1510,
  34972. bottom: 157/1742
  34973. }
  34974. },
  34975. head: {
  34976. height: math.unit(26, "feet"),
  34977. name: "Head",
  34978. image: {
  34979. source: "./media/characters/uzarmazari/head.svg"
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(58, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34993. {
  34994. side: {
  34995. height: math.unit(15, "feet"),
  34996. name: "Side",
  34997. image: {
  34998. source: "./media/characters/akitu/side.svg",
  34999. extra: 1421/1321,
  35000. bottom: 157/1578
  35001. }
  35002. },
  35003. front: {
  35004. height: math.unit(15, "feet"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/akitu/front.svg",
  35008. extra: 1435/1326,
  35009. bottom: 232/1667
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(15, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(10 + 8/12, "feet"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/azalie-croixland/front.svg",
  35029. extra: 1972/1856,
  35030. bottom: 31/2003
  35031. }
  35032. },
  35033. },
  35034. [
  35035. {
  35036. name: "Original Height",
  35037. height: math.unit(5 + 4/12, "feet")
  35038. },
  35039. {
  35040. name: "Normal Height",
  35041. height: math.unit(10 + 8/12, "feet"),
  35042. default: true
  35043. },
  35044. ]
  35045. ))
  35046. characterMakers.push(() => makeCharacter(
  35047. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35048. {
  35049. side: {
  35050. height: math.unit(7 + 1/12, "feet"),
  35051. weight: math.unit(245, "lb"),
  35052. name: "Side",
  35053. image: {
  35054. source: "./media/characters/kavus-kazian/side.svg",
  35055. extra: 349/342,
  35056. bottom: 15/364
  35057. }
  35058. },
  35059. },
  35060. [
  35061. {
  35062. name: "Normal",
  35063. height: math.unit(7 + 1/12, "feet"),
  35064. default: true
  35065. },
  35066. ]
  35067. ))
  35068. characterMakers.push(() => makeCharacter(
  35069. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35070. {
  35071. normalFront: {
  35072. height: math.unit(5 + 11/12, "feet"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/moonlight-rose/normal-front.svg",
  35076. extra: 1980/1825,
  35077. bottom: 18/1998
  35078. },
  35079. form: "normal",
  35080. default: true
  35081. },
  35082. normalBack: {
  35083. height: math.unit(5 + 11/12, "feet"),
  35084. name: "Back",
  35085. image: {
  35086. source: "./media/characters/moonlight-rose/normal-back.svg",
  35087. extra: 2010/1839,
  35088. bottom: 10/2020
  35089. },
  35090. form: "normal"
  35091. },
  35092. demonFront: {
  35093. height: math.unit(1.5, "earths"),
  35094. name: "Front",
  35095. image: {
  35096. source: "./media/characters/moonlight-rose/demon.svg",
  35097. extra: 1400/1294,
  35098. bottom: 45/1445
  35099. },
  35100. form: "demon",
  35101. default: true
  35102. },
  35103. terraFront: {
  35104. height: math.unit(1.5, "earths"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/moonlight-rose/terra.svg"
  35108. },
  35109. form: "terra",
  35110. default: true
  35111. },
  35112. jupiterFront: {
  35113. height: math.unit(69911*2, "km"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35117. extra: 1367/1286,
  35118. bottom: 55/1422
  35119. },
  35120. form: "jupiter",
  35121. default: true
  35122. },
  35123. neptuneFront: {
  35124. height: math.unit(24622*2, "feet"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35128. extra: 1851/1712,
  35129. bottom: 0/1851
  35130. },
  35131. form: "neptune",
  35132. default: true
  35133. },
  35134. },
  35135. [
  35136. {
  35137. name: "\"Natural\" Height",
  35138. height: math.unit(5 + 11/12, "feet"),
  35139. form: "normal"
  35140. },
  35141. {
  35142. name: "Smallest comfortable size",
  35143. height: math.unit(40, "meters"),
  35144. form: "normal"
  35145. },
  35146. {
  35147. name: "Common size",
  35148. height: math.unit(50, "km"),
  35149. form: "normal",
  35150. default: true
  35151. },
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(1.5, "earths"),
  35155. form: "demon",
  35156. default: true
  35157. },
  35158. {
  35159. name: "Universal",
  35160. height: math.unit(15, "universes"),
  35161. form: "demon"
  35162. },
  35163. {
  35164. name: "Earth",
  35165. height: math.unit(1.5, "earths"),
  35166. form: "terra",
  35167. default: true
  35168. },
  35169. {
  35170. name: "Super Earth",
  35171. height: math.unit(67.5, "earths"),
  35172. form: "terra"
  35173. },
  35174. {
  35175. name: "Doesn't fit in a solar system...",
  35176. height: math.unit(1, "galaxy"),
  35177. form: "terra"
  35178. },
  35179. {
  35180. name: "Saturn",
  35181. height: math.unit(58232*2, "km"),
  35182. form: "jupiter"
  35183. },
  35184. {
  35185. name: "Jupiter",
  35186. height: math.unit(69911*2, "km"),
  35187. form: "jupiter",
  35188. default: true
  35189. },
  35190. {
  35191. name: "HD 100546 b",
  35192. height: math.unit(482938, "km"),
  35193. form: "jupiter"
  35194. },
  35195. {
  35196. name: "Enceladus",
  35197. height: math.unit(513*2, "km"),
  35198. form: "neptune"
  35199. },
  35200. {
  35201. name: "Europe",
  35202. height: math.unit(1560*2, "km"),
  35203. form: "neptune"
  35204. },
  35205. {
  35206. name: "Neptune",
  35207. height: math.unit(24622*2, "km"),
  35208. form: "neptune",
  35209. default: true
  35210. },
  35211. {
  35212. name: "CoRoT-9b",
  35213. height: math.unit(75067*2, "km"),
  35214. form: "neptune"
  35215. },
  35216. ],
  35217. {
  35218. "normal": {
  35219. name: "Normal",
  35220. default: true
  35221. },
  35222. "demon": {
  35223. name: "Demon"
  35224. },
  35225. "terra": {
  35226. name: "Terra"
  35227. },
  35228. "jupiter": {
  35229. name: "Jupiter"
  35230. },
  35231. "neptune": {
  35232. name: "Neptune"
  35233. }
  35234. }
  35235. ))
  35236. characterMakers.push(() => makeCharacter(
  35237. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35238. {
  35239. front: {
  35240. height: math.unit(16, "feet"),
  35241. weight: math.unit(610, "kg"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/huckle/front.svg",
  35245. extra: 1731/1625,
  35246. bottom: 33/1764
  35247. }
  35248. },
  35249. back: {
  35250. height: math.unit(16, "feet"),
  35251. weight: math.unit(610, "kg"),
  35252. name: "Back",
  35253. image: {
  35254. source: "./media/characters/huckle/back.svg",
  35255. extra: 1738/1651,
  35256. bottom: 37/1775
  35257. }
  35258. },
  35259. laughing: {
  35260. height: math.unit(3.75, "feet"),
  35261. name: "Laughing",
  35262. image: {
  35263. source: "./media/characters/huckle/laughing.svg"
  35264. }
  35265. },
  35266. angry: {
  35267. height: math.unit(4.15, "feet"),
  35268. name: "Angry",
  35269. image: {
  35270. source: "./media/characters/huckle/angry.svg"
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(16, "feet"),
  35278. default: true
  35279. },
  35280. {
  35281. name: "Mini Macro",
  35282. height: math.unit(463, "feet")
  35283. },
  35284. {
  35285. name: "Macro",
  35286. height: math.unit(1680, "meters")
  35287. },
  35288. {
  35289. name: "Mega Macro",
  35290. height: math.unit(175, "km")
  35291. },
  35292. {
  35293. name: "Terra Macro",
  35294. height: math.unit(32, "gigameters")
  35295. },
  35296. {
  35297. name: "Multiverse+",
  35298. height: math.unit(2.56e23, "yottameters")
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(6 + 9/12, "feet"),
  35307. weight: math.unit(280, "lb"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/candy/front.svg",
  35311. extra: 234/217,
  35312. bottom: 11/245
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Really Small",
  35319. height: math.unit(0.1, "nm")
  35320. },
  35321. {
  35322. name: "Micro",
  35323. height: math.unit(2, "inches")
  35324. },
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(6 + 9/12, "feet"),
  35328. default: true
  35329. },
  35330. {
  35331. name: "Small Macro",
  35332. height: math.unit(69, "feet")
  35333. },
  35334. {
  35335. name: "Macro",
  35336. height: math.unit(160, "feet")
  35337. },
  35338. {
  35339. name: "Megamacro",
  35340. height: math.unit(22000, "miles")
  35341. },
  35342. {
  35343. name: "Gigamacro",
  35344. height: math.unit(50000, "miles")
  35345. },
  35346. ]
  35347. ))
  35348. characterMakers.push(() => makeCharacter(
  35349. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35350. {
  35351. front: {
  35352. height: math.unit(4, "feet"),
  35353. weight: math.unit(90, "lb"),
  35354. name: "Front",
  35355. image: {
  35356. source: "./media/characters/joey-mcdonald/front.svg",
  35357. extra: 1059/852,
  35358. bottom: 33/1092
  35359. }
  35360. },
  35361. back: {
  35362. height: math.unit(4, "feet"),
  35363. weight: math.unit(90, "lb"),
  35364. name: "Back",
  35365. image: {
  35366. source: "./media/characters/joey-mcdonald/back.svg",
  35367. extra: 1077/879,
  35368. bottom: 5/1082
  35369. }
  35370. },
  35371. frontKobold: {
  35372. height: math.unit(4, "feet"),
  35373. weight: math.unit(100, "lb"),
  35374. name: "Front-kobold",
  35375. image: {
  35376. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35377. extra: 1480/1367,
  35378. bottom: 0/1480
  35379. }
  35380. },
  35381. backKobold: {
  35382. height: math.unit(4, "feet"),
  35383. weight: math.unit(100, "lb"),
  35384. name: "Back-kobold",
  35385. image: {
  35386. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35387. extra: 1449/1361,
  35388. bottom: 0/1449
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(4, "feet"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(12 + 6/12, "feet"),
  35405. name: "Front",
  35406. image: {
  35407. source: "./media/characters/kass-lockheed/front.svg",
  35408. extra: 354/343,
  35409. bottom: 9/363
  35410. }
  35411. },
  35412. back: {
  35413. height: math.unit(12 + 6/12, "feet"),
  35414. name: "Back",
  35415. image: {
  35416. source: "./media/characters/kass-lockheed/back.svg",
  35417. extra: 364/352,
  35418. bottom: 3/367
  35419. }
  35420. },
  35421. dick: {
  35422. height: math.unit(3.12, "feet"),
  35423. name: "Dick",
  35424. image: {
  35425. source: "./media/characters/kass-lockheed/dick.svg"
  35426. }
  35427. },
  35428. head: {
  35429. height: math.unit(2.6, "feet"),
  35430. name: "Head",
  35431. image: {
  35432. source: "./media/characters/kass-lockheed/head.svg"
  35433. }
  35434. },
  35435. bleh: {
  35436. height: math.unit(2.85, "feet"),
  35437. name: "Bleh",
  35438. image: {
  35439. source: "./media/characters/kass-lockheed/bleh.svg"
  35440. }
  35441. },
  35442. smug: {
  35443. height: math.unit(2.85, "feet"),
  35444. name: "Smug",
  35445. image: {
  35446. source: "./media/characters/kass-lockheed/smug.svg"
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(12 + 6/12, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(6 + 2/12, "feet"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/taylor/front.svg",
  35466. extra: 639/495,
  35467. bottom: 12/651
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(6 + 2/12, "feet"),
  35475. default: true
  35476. },
  35477. {
  35478. name: "Big",
  35479. height: math.unit(15, "feet")
  35480. },
  35481. {
  35482. name: "Lorg",
  35483. height: math.unit(80, "feet")
  35484. },
  35485. {
  35486. name: "Too Lorg",
  35487. height: math.unit(120, "feet")
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(15, "feet"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/kaizer/front.svg",
  35499. extra: 1612/1436,
  35500. bottom: 43/1655
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(15, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(2, "feet"),
  35517. weight: math.unit(30, "lb"),
  35518. name: "Front",
  35519. image: {
  35520. source: "./media/characters/sandy/front.svg",
  35521. extra: 1439/1307,
  35522. bottom: 194/1633
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(2, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35536. {
  35537. front: {
  35538. height: math.unit(3, "feet"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/mellvi/front.svg",
  35542. extra: 1831/1630,
  35543. bottom: 58/1889
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Normal",
  35550. height: math.unit(3, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(5 + 11/12, "feet"),
  35560. weight: math.unit(200, "lb"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/shirou/front.svg",
  35564. extra: 2491/2383,
  35565. bottom: 189/2680
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(5 + 11/12, "feet"),
  35570. weight: math.unit(200, "lb"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/shirou/back.svg",
  35574. extra: 2554/2450,
  35575. bottom: 76/2630
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(5 + 11/12, "feet"),
  35583. default: true
  35584. },
  35585. ]
  35586. ))
  35587. characterMakers.push(() => makeCharacter(
  35588. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35589. {
  35590. front: {
  35591. height: math.unit(6 + 3/12, "feet"),
  35592. weight: math.unit(177, "lb"),
  35593. name: "Front",
  35594. image: {
  35595. source: "./media/characters/noryu/front.svg",
  35596. extra: 973/885,
  35597. bottom: 10/983
  35598. }
  35599. },
  35600. },
  35601. [
  35602. {
  35603. name: "Normal",
  35604. height: math.unit(6 + 3/12, "feet"),
  35605. default: true
  35606. },
  35607. ]
  35608. ))
  35609. characterMakers.push(() => makeCharacter(
  35610. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35611. {
  35612. front: {
  35613. height: math.unit(5 + 6/12, "feet"),
  35614. weight: math.unit(170, "lb"),
  35615. name: "Front",
  35616. image: {
  35617. source: "./media/characters/mevolas-rubenido/front.svg",
  35618. extra: 2109/1901,
  35619. bottom: 96/2205
  35620. }
  35621. },
  35622. },
  35623. [
  35624. {
  35625. name: "Normal",
  35626. height: math.unit(5 + 6/12, "feet"),
  35627. default: true
  35628. },
  35629. ]
  35630. ))
  35631. characterMakers.push(() => makeCharacter(
  35632. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35633. {
  35634. front: {
  35635. height: math.unit(100, "feet"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/dee/front.svg",
  35639. extra: 2153/2036,
  35640. bottom: 59/2212
  35641. }
  35642. },
  35643. back: {
  35644. height: math.unit(100, "feet"),
  35645. name: "Back",
  35646. image: {
  35647. source: "./media/characters/dee/back.svg",
  35648. extra: 2183/2058,
  35649. bottom: 75/2258
  35650. }
  35651. },
  35652. foot: {
  35653. height: math.unit(19.43, "feet"),
  35654. name: "Foot",
  35655. image: {
  35656. source: "./media/characters/dee/foot.svg"
  35657. }
  35658. },
  35659. hoof: {
  35660. height: math.unit(20.6, "feet"),
  35661. name: "Hoof",
  35662. image: {
  35663. source: "./media/characters/dee/hoof.svg"
  35664. }
  35665. },
  35666. },
  35667. [
  35668. {
  35669. name: "Macro",
  35670. height: math.unit(100, "feet"),
  35671. default: true
  35672. },
  35673. ]
  35674. ))
  35675. characterMakers.push(() => makeCharacter(
  35676. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35677. {
  35678. front: {
  35679. height: math.unit(5 + 6/12, "feet"),
  35680. name: "Front",
  35681. image: {
  35682. source: "./media/characters/teh/front.svg",
  35683. extra: 1002/847,
  35684. bottom: 62/1064
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(5 + 6/12, "feet"),
  35692. default: true
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35698. {
  35699. side: {
  35700. height: math.unit(6 + 1/12, "feet"),
  35701. weight: math.unit(204, "lb"),
  35702. name: "Side",
  35703. image: {
  35704. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35705. extra: 974/775,
  35706. bottom: 169/1143
  35707. }
  35708. },
  35709. sitting: {
  35710. height: math.unit(6 + 2/12, "feet"),
  35711. weight: math.unit(204, "lb"),
  35712. name: "Sitting",
  35713. image: {
  35714. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35715. extra: 1175/964,
  35716. bottom: 378/1553
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(6 + 1/12, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35730. {
  35731. front: {
  35732. height: math.unit(6, "inches"),
  35733. name: "Front",
  35734. image: {
  35735. source: "./media/characters/tululi/front.svg",
  35736. extra: 1997/1876,
  35737. bottom: 20/2017
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(6, "inches"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35751. {
  35752. front: {
  35753. height: math.unit(4 + 1/12, "feet"),
  35754. name: "Front",
  35755. image: {
  35756. source: "./media/characters/star/front.svg",
  35757. extra: 1493/1189,
  35758. bottom: 48/1541
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(4 + 1/12, "feet"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(6 + 3/12, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/comet/front.svg",
  35778. extra: 1681/1462,
  35779. bottom: 26/1707
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(6 + 3/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(950, "feet"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/vortex/front.svg",
  35799. extra: 1497/1434,
  35800. bottom: 56/1553
  35801. }
  35802. },
  35803. maw: {
  35804. height: math.unit(285, "feet"),
  35805. name: "Maw",
  35806. image: {
  35807. source: "./media/characters/vortex/maw.svg"
  35808. }
  35809. },
  35810. },
  35811. [
  35812. {
  35813. name: "Macro",
  35814. height: math.unit(950, "feet"),
  35815. default: true
  35816. },
  35817. ]
  35818. ))
  35819. characterMakers.push(() => makeCharacter(
  35820. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35821. {
  35822. front: {
  35823. height: math.unit(600, "feet"),
  35824. weight: math.unit(0.02, "grams"),
  35825. name: "Front",
  35826. image: {
  35827. source: "./media/characters/doodle/front.svg",
  35828. extra: 1578/1413,
  35829. bottom: 37/1615
  35830. }
  35831. },
  35832. },
  35833. [
  35834. {
  35835. name: "Macro",
  35836. height: math.unit(600, "feet"),
  35837. default: true
  35838. },
  35839. ]
  35840. ))
  35841. characterMakers.push(() => makeCharacter(
  35842. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35843. {
  35844. front: {
  35845. height: math.unit(6 + 6/12, "feet"),
  35846. name: "Front",
  35847. image: {
  35848. source: "./media/characters/jai/front.svg",
  35849. extra: 1645/1534,
  35850. bottom: 115/1760
  35851. }
  35852. },
  35853. },
  35854. [
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(6 + 6/12, "feet"),
  35858. default: true
  35859. },
  35860. ]
  35861. ))
  35862. characterMakers.push(() => makeCharacter(
  35863. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35864. {
  35865. front: {
  35866. height: math.unit(6 + 8/12, "feet"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/pixel/front.svg",
  35870. extra: 1900/1735,
  35871. bottom: 63/1963
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Normal",
  35878. height: math.unit(6 + 8/12, "feet"),
  35879. default: true
  35880. },
  35881. ]
  35882. ))
  35883. characterMakers.push(() => makeCharacter(
  35884. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35885. {
  35886. back: {
  35887. height: math.unit(4 + 1/12, "feet"),
  35888. weight: math.unit(75, "lb"),
  35889. name: "Back",
  35890. image: {
  35891. source: "./media/characters/rhett/back.svg",
  35892. extra: 930/878,
  35893. bottom: 25/955
  35894. }
  35895. },
  35896. front: {
  35897. height: math.unit(4 + 1/12, "feet"),
  35898. weight: math.unit(75, "lb"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/rhett/front.svg",
  35902. extra: 1682/1586,
  35903. bottom: 92/1774
  35904. }
  35905. },
  35906. },
  35907. [
  35908. {
  35909. name: "Micro",
  35910. height: math.unit(8, "inches")
  35911. },
  35912. {
  35913. name: "Tiny",
  35914. height: math.unit(2, "feet")
  35915. },
  35916. {
  35917. name: "Normal",
  35918. height: math.unit(4 + 1/12, "feet"),
  35919. default: true
  35920. },
  35921. ]
  35922. ))
  35923. characterMakers.push(() => makeCharacter(
  35924. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35925. {
  35926. front: {
  35927. height: math.unit(3 + 3/12, "feet"),
  35928. name: "Front",
  35929. image: {
  35930. source: "./media/characters/penny/front.svg",
  35931. extra: 1406/1311,
  35932. bottom: 26/1432
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(3 + 3/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(4 + 11/12, "feet"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/monty/front.svg",
  35952. extra: 1479/1209,
  35953. bottom: 0/1479
  35954. }
  35955. },
  35956. },
  35957. [
  35958. {
  35959. name: "Normal",
  35960. height: math.unit(4 + 11/12, "feet"),
  35961. default: true
  35962. },
  35963. ]
  35964. ))
  35965. characterMakers.push(() => makeCharacter(
  35966. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35967. {
  35968. front: {
  35969. height: math.unit(8 + 4/12, "feet"),
  35970. name: "Front",
  35971. image: {
  35972. source: "./media/characters/sterling/front.svg",
  35973. extra: 1420/1236,
  35974. bottom: 27/1447
  35975. }
  35976. },
  35977. },
  35978. [
  35979. {
  35980. name: "Normal",
  35981. height: math.unit(8 + 4/12, "feet"),
  35982. default: true
  35983. },
  35984. ]
  35985. ))
  35986. characterMakers.push(() => makeCharacter(
  35987. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35988. {
  35989. front: {
  35990. height: math.unit(15, "feet"),
  35991. name: "Front",
  35992. image: {
  35993. source: "./media/characters/marble/front.svg",
  35994. extra: 973/937,
  35995. bottom: 32/1005
  35996. }
  35997. },
  35998. },
  35999. [
  36000. {
  36001. name: "Normal",
  36002. height: math.unit(15, "feet"),
  36003. default: true
  36004. },
  36005. ]
  36006. ))
  36007. characterMakers.push(() => makeCharacter(
  36008. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36009. {
  36010. front: {
  36011. height: math.unit(3, "inches"),
  36012. name: "Front",
  36013. image: {
  36014. source: "./media/characters/powder/front.svg",
  36015. extra: 1504/1334,
  36016. bottom: 518/2022
  36017. }
  36018. },
  36019. },
  36020. [
  36021. {
  36022. name: "Normal",
  36023. height: math.unit(3, "inches"),
  36024. default: true
  36025. },
  36026. ]
  36027. ))
  36028. characterMakers.push(() => makeCharacter(
  36029. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36030. {
  36031. front: {
  36032. height: math.unit(4 + 5/12, "feet"),
  36033. name: "Front",
  36034. image: {
  36035. source: "./media/characters/joey-raccoon/front.svg",
  36036. extra: 1273/1197,
  36037. bottom: 0/1273
  36038. }
  36039. },
  36040. },
  36041. [
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(4 + 5/12, "feet"),
  36045. default: true
  36046. },
  36047. ]
  36048. ))
  36049. characterMakers.push(() => makeCharacter(
  36050. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36051. {
  36052. front: {
  36053. height: math.unit(8 + 4/12, "feet"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/vick/front.svg",
  36057. extra: 2187/2118,
  36058. bottom: 47/2234
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(8 + 4/12, "feet"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36072. {
  36073. front: {
  36074. height: math.unit(5 + 5/12, "feet"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/mitsy/front.svg",
  36078. extra: 1842/1695,
  36079. bottom: 0/1842
  36080. }
  36081. },
  36082. },
  36083. [
  36084. {
  36085. name: "Normal",
  36086. height: math.unit(5 + 5/12, "feet"),
  36087. default: true
  36088. },
  36089. ]
  36090. ))
  36091. characterMakers.push(() => makeCharacter(
  36092. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36093. {
  36094. front: {
  36095. height: math.unit(6 + 3/12, "feet"),
  36096. name: "Front",
  36097. image: {
  36098. source: "./media/characters/silvy/front.svg",
  36099. extra: 1995/1836,
  36100. bottom: 225/2220
  36101. }
  36102. },
  36103. },
  36104. [
  36105. {
  36106. name: "Normal",
  36107. height: math.unit(6 + 3/12, "feet"),
  36108. default: true
  36109. },
  36110. ]
  36111. ))
  36112. characterMakers.push(() => makeCharacter(
  36113. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36114. {
  36115. front: {
  36116. height: math.unit(3 + 8/12, "feet"),
  36117. name: "Front",
  36118. image: {
  36119. source: "./media/characters/rodney/front.svg",
  36120. extra: 1956/1747,
  36121. bottom: 31/1987
  36122. }
  36123. },
  36124. frontDressed: {
  36125. height: math.unit(2.9, "feet"),
  36126. name: "Front (Dressed)",
  36127. image: {
  36128. source: "./media/characters/rodney/front-dressed.svg",
  36129. extra: 1382/1241,
  36130. bottom: 385/1767
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(3 + 8/12, "feet"),
  36138. default: true
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(5 + 9/12, "feet"),
  36147. weight: math.unit(194, "lbs"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/zakail-sudekai/front.svg",
  36151. extra: 2696/2533,
  36152. bottom: 248/2944
  36153. }
  36154. },
  36155. maw: {
  36156. height: math.unit(1.35, "feet"),
  36157. name: "Maw",
  36158. image: {
  36159. source: "./media/characters/zakail-sudekai/maw.svg"
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(5 + 9/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(8 + 4/12, "feet"),
  36176. weight: math.unit(1200, "lb"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/eleanor/front.svg",
  36180. extra: 1226/1192,
  36181. bottom: 52/1278
  36182. }
  36183. },
  36184. back: {
  36185. height: math.unit(8 + 4/12, "feet"),
  36186. weight: math.unit(1200, "lb"),
  36187. name: "Back",
  36188. image: {
  36189. source: "./media/characters/eleanor/back.svg",
  36190. extra: 1242/1184,
  36191. bottom: 60/1302
  36192. }
  36193. },
  36194. head: {
  36195. height: math.unit(2.62, "feet"),
  36196. name: "Head",
  36197. image: {
  36198. source: "./media/characters/eleanor/head.svg"
  36199. }
  36200. },
  36201. },
  36202. [
  36203. {
  36204. name: "Normal",
  36205. height: math.unit(8 + 4/12, "feet"),
  36206. default: true
  36207. },
  36208. ]
  36209. ))
  36210. characterMakers.push(() => makeCharacter(
  36211. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36212. {
  36213. front: {
  36214. height: math.unit(8 + 4/12, "feet"),
  36215. weight: math.unit(750, "lb"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/tanya/front.svg",
  36219. extra: 1749/1615,
  36220. bottom: 33/1782
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(8 + 4/12, "feet"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36234. {
  36235. front: {
  36236. height: math.unit(5, "feet"),
  36237. weight: math.unit(225, "lb"),
  36238. name: "Front",
  36239. image: {
  36240. source: "./media/characters/cindy/front.svg",
  36241. extra: 1320/1250,
  36242. bottom: 42/1362
  36243. }
  36244. },
  36245. frontDressed: {
  36246. height: math.unit(5, "feet"),
  36247. weight: math.unit(225, "lb"),
  36248. name: "Front (Dressed)",
  36249. image: {
  36250. source: "./media/characters/cindy/front-dressed.svg",
  36251. extra: 1320/1250,
  36252. bottom: 42/1362
  36253. }
  36254. },
  36255. back: {
  36256. height: math.unit(5, "feet"),
  36257. weight: math.unit(225, "lb"),
  36258. name: "Back",
  36259. image: {
  36260. source: "./media/characters/cindy/back.svg",
  36261. extra: 1384/1346,
  36262. bottom: 14/1398
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(5, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36276. {
  36277. front: {
  36278. height: math.unit(6 + 9/12, "feet"),
  36279. weight: math.unit(440, "lb"),
  36280. name: "Front",
  36281. image: {
  36282. source: "./media/characters/wilbur-owen/front.svg",
  36283. extra: 1575/1448,
  36284. bottom: 72/1647
  36285. }
  36286. },
  36287. back: {
  36288. height: math.unit(6 + 9/12, "feet"),
  36289. weight: math.unit(440, "lb"),
  36290. name: "Back",
  36291. image: {
  36292. source: "./media/characters/wilbur-owen/back.svg",
  36293. extra: 1578/1445,
  36294. bottom: 36/1614
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(6 + 9/12, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(6 + 5/12, "feet"),
  36311. weight: math.unit(650, "lb"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/keegan/front.svg",
  36315. extra: 2387/2198,
  36316. bottom: 33/2420
  36317. }
  36318. },
  36319. side: {
  36320. height: math.unit(6 + 5/12, "feet"),
  36321. weight: math.unit(650, "lb"),
  36322. name: "Side",
  36323. image: {
  36324. source: "./media/characters/keegan/side.svg",
  36325. extra: 2390/2202,
  36326. bottom: 47/2437
  36327. }
  36328. },
  36329. back: {
  36330. height: math.unit(6 + 5/12, "feet"),
  36331. weight: math.unit(650, "lb"),
  36332. name: "Back",
  36333. image: {
  36334. source: "./media/characters/keegan/back.svg",
  36335. extra: 2418/2268,
  36336. bottom: 15/2433
  36337. }
  36338. },
  36339. frontSfw: {
  36340. height: math.unit(6 + 5/12, "feet"),
  36341. weight: math.unit(650, "lb"),
  36342. name: "Front (SFW)",
  36343. image: {
  36344. source: "./media/characters/keegan/front-sfw.svg",
  36345. extra: 2387/2198,
  36346. bottom: 33/2420
  36347. }
  36348. },
  36349. beans: {
  36350. height: math.unit(1.85, "feet"),
  36351. name: "Beans",
  36352. image: {
  36353. source: "./media/characters/keegan/beans.svg"
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Normal",
  36360. height: math.unit(6 + 5/12, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(9, "feet"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/colton/front.svg",
  36373. extra: 1589/1326,
  36374. bottom: 139/1728
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Normal",
  36381. height: math.unit(9, "feet"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36388. {
  36389. front: {
  36390. height: math.unit(2 + 9/12, "feet"),
  36391. name: "Front",
  36392. image: {
  36393. source: "./media/characters/bora/front.svg",
  36394. extra: 1265/1250,
  36395. bottom: 24/1289
  36396. }
  36397. },
  36398. },
  36399. [
  36400. {
  36401. name: "Normal",
  36402. height: math.unit(2 + 9/12, "feet"),
  36403. default: true
  36404. },
  36405. ]
  36406. ))
  36407. characterMakers.push(() => makeCharacter(
  36408. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36409. {
  36410. front: {
  36411. height: math.unit(8, "feet"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/myu-myu/front.svg",
  36415. extra: 1949/1857,
  36416. bottom: 90/2039
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(8, "feet"),
  36424. default: true
  36425. },
  36426. {
  36427. name: "Big",
  36428. height: math.unit(15, "feet")
  36429. },
  36430. {
  36431. name: "BIG",
  36432. height: math.unit(25, "feet")
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36438. {
  36439. side: {
  36440. height: math.unit(7 + 5/12, "feet"),
  36441. weight: math.unit(2800, "lb"),
  36442. name: "Side",
  36443. image: {
  36444. source: "./media/characters/haloren/side.svg",
  36445. extra: 1793/409,
  36446. bottom: 59/1852
  36447. }
  36448. },
  36449. frontPaw: {
  36450. height: math.unit(2.36, "feet"),
  36451. name: "Front paw",
  36452. image: {
  36453. source: "./media/characters/haloren/front-paw.svg"
  36454. }
  36455. },
  36456. hindPaw: {
  36457. height: math.unit(3.18, "feet"),
  36458. name: "Hind paw",
  36459. image: {
  36460. source: "./media/characters/haloren/hind-paw.svg"
  36461. }
  36462. },
  36463. maw: {
  36464. height: math.unit(5.05, "feet"),
  36465. name: "Maw",
  36466. image: {
  36467. source: "./media/characters/haloren/maw.svg"
  36468. }
  36469. },
  36470. dick: {
  36471. height: math.unit(2.90, "feet"),
  36472. name: "Dick",
  36473. image: {
  36474. source: "./media/characters/haloren/dick.svg"
  36475. }
  36476. },
  36477. },
  36478. [
  36479. {
  36480. name: "Normal",
  36481. height: math.unit(7 + 5/12, "feet"),
  36482. default: true
  36483. },
  36484. {
  36485. name: "Enhanced",
  36486. height: math.unit(14 + 3/12, "feet")
  36487. },
  36488. ]
  36489. ))
  36490. characterMakers.push(() => makeCharacter(
  36491. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36492. {
  36493. front: {
  36494. height: math.unit(171, "cm"),
  36495. name: "Front",
  36496. image: {
  36497. source: "./media/characters/kimmy/front.svg",
  36498. extra: 1491/1435,
  36499. bottom: 53/1544
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Small",
  36506. height: math.unit(9, "cm")
  36507. },
  36508. {
  36509. name: "Normal",
  36510. height: math.unit(171, "cm"),
  36511. default: true
  36512. },
  36513. ]
  36514. ))
  36515. characterMakers.push(() => makeCharacter(
  36516. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36517. {
  36518. front: {
  36519. height: math.unit(8, "feet"),
  36520. weight: math.unit(300, "lb"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/galeboomer/front.svg",
  36524. extra: 4651/4415,
  36525. bottom: 162/4813
  36526. }
  36527. },
  36528. back: {
  36529. height: math.unit(8, "feet"),
  36530. weight: math.unit(300, "lb"),
  36531. name: "Back",
  36532. image: {
  36533. source: "./media/characters/galeboomer/back.svg",
  36534. extra: 4544/4314,
  36535. bottom: 16/4560
  36536. }
  36537. },
  36538. frontAlt: {
  36539. height: math.unit(8, "feet"),
  36540. weight: math.unit(300, "lb"),
  36541. name: "Front (Alt)",
  36542. image: {
  36543. source: "./media/characters/galeboomer/front-alt.svg",
  36544. extra: 4458/4228,
  36545. bottom: 68/4526
  36546. }
  36547. },
  36548. maw: {
  36549. height: math.unit(1.2, "feet"),
  36550. name: "Maw",
  36551. image: {
  36552. source: "./media/characters/galeboomer/maw.svg"
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Normal",
  36559. height: math.unit(8, "feet"),
  36560. default: true
  36561. },
  36562. ]
  36563. ))
  36564. characterMakers.push(() => makeCharacter(
  36565. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36566. {
  36567. front: {
  36568. height: math.unit(5 + 9/12, "feet"),
  36569. weight: math.unit(120, "lb"),
  36570. name: "Front",
  36571. image: {
  36572. source: "./media/characters/chyr/front.svg",
  36573. extra: 1323/1254,
  36574. bottom: 63/1386
  36575. }
  36576. },
  36577. back: {
  36578. height: math.unit(5 + 9/12, "feet"),
  36579. weight: math.unit(120, "lb"),
  36580. name: "Back",
  36581. image: {
  36582. source: "./media/characters/chyr/back.svg",
  36583. extra: 1323/1252,
  36584. bottom: 48/1371
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(5 + 9/12, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36598. {
  36599. front: {
  36600. height: math.unit(7, "feet"),
  36601. weight: math.unit(310, "lb"),
  36602. name: "Front",
  36603. image: {
  36604. source: "./media/characters/solarus/front.svg",
  36605. extra: 2415/2021,
  36606. bottom: 103/2518
  36607. }
  36608. },
  36609. back: {
  36610. height: math.unit(7, "feet"),
  36611. weight: math.unit(310, "lb"),
  36612. name: "Back",
  36613. image: {
  36614. source: "./media/characters/solarus/back.svg",
  36615. extra: 2463/2089,
  36616. bottom: 79/2542
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(7, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(16, "feet"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36636. extra: 1844/1780,
  36637. bottom: 58/1902
  36638. }
  36639. },
  36640. winterCoat: {
  36641. height: math.unit(16, "feet"),
  36642. name: "Winter Coat",
  36643. image: {
  36644. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36645. extra: 1807/1775,
  36646. bottom: 69/1876
  36647. }
  36648. },
  36649. },
  36650. [
  36651. {
  36652. name: "Normal",
  36653. height: math.unit(16, "feet"),
  36654. default: true
  36655. },
  36656. {
  36657. name: "Chicago Size",
  36658. height: math.unit(560, "feet")
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36664. {
  36665. front: {
  36666. height: math.unit(11 + 6/12, "feet"),
  36667. weight: math.unit(1366, "lb"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/lexor/front.svg",
  36671. extra: 1560/1481,
  36672. bottom: 211/1771
  36673. }
  36674. },
  36675. back: {
  36676. height: math.unit(11 + 6/12, "feet"),
  36677. weight: math.unit(1366, "lb"),
  36678. name: "Back",
  36679. image: {
  36680. source: "./media/characters/lexor/back.svg",
  36681. extra: 1614/1533,
  36682. bottom: 76/1690
  36683. }
  36684. },
  36685. maw: {
  36686. height: math.unit(3, "feet"),
  36687. name: "Maw",
  36688. image: {
  36689. source: "./media/characters/lexor/maw.svg"
  36690. }
  36691. },
  36692. dick: {
  36693. height: math.unit(2.59, "feet"),
  36694. name: "Dick",
  36695. image: {
  36696. source: "./media/characters/lexor/dick.svg"
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(11 + 6/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36710. {
  36711. front: {
  36712. height: math.unit(5 + 8/12, "feet"),
  36713. name: "Front",
  36714. image: {
  36715. source: "./media/characters/magnum/front.svg",
  36716. extra: 942/855,
  36717. bottom: 26/968
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(5 + 8/12, "feet"),
  36725. default: true
  36726. },
  36727. ]
  36728. ))
  36729. characterMakers.push(() => makeCharacter(
  36730. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36731. {
  36732. front: {
  36733. height: math.unit(18 + 4/12, "feet"),
  36734. weight: math.unit(1500, "kg"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/solas-sharpsman/front.svg",
  36738. extra: 1698/1589,
  36739. bottom: 0/1698
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(18 + 4/12, "feet"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(5 + 5/12, "feet"),
  36756. weight: math.unit(180, "lb"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/october/front.svg",
  36760. extra: 1800/1650,
  36761. bottom: 0/1800
  36762. }
  36763. },
  36764. frontNsfw: {
  36765. height: math.unit(5 + 5/12, "feet"),
  36766. weight: math.unit(180, "lb"),
  36767. name: "Front (NSFW)",
  36768. image: {
  36769. source: "./media/characters/october/front-nsfw.svg",
  36770. extra: 1392/1307,
  36771. bottom: 42/1434
  36772. }
  36773. },
  36774. },
  36775. [
  36776. {
  36777. name: "Normal",
  36778. height: math.unit(5 + 5/12, "feet"),
  36779. default: true
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(8 + 6/12, "feet"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/essynkardi/front.svg",
  36791. extra: 1914/1846,
  36792. bottom: 22/1936
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(8 + 6/12, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36806. {
  36807. front: {
  36808. height: math.unit(6 + 6/12, "feet"),
  36809. weight: math.unit(7, "lb"),
  36810. name: "Front",
  36811. image: {
  36812. source: "./media/characters/icky/front.svg",
  36813. extra: 813/782,
  36814. bottom: 66/879
  36815. }
  36816. },
  36817. back: {
  36818. height: math.unit(6 + 6/12, "feet"),
  36819. weight: math.unit(7, "lb"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/icky/back.svg",
  36823. extra: 754/735,
  36824. bottom: 56/810
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(6 + 6/12, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(15, "feet"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/rojas/front.svg",
  36844. extra: 1462/1408,
  36845. bottom: 95/1557
  36846. }
  36847. },
  36848. back: {
  36849. height: math.unit(15, "feet"),
  36850. name: "Back",
  36851. image: {
  36852. source: "./media/characters/rojas/back.svg",
  36853. extra: 1023/954,
  36854. bottom: 28/1051
  36855. }
  36856. },
  36857. },
  36858. [
  36859. {
  36860. name: "Normal",
  36861. height: math.unit(15, "feet"),
  36862. default: true
  36863. },
  36864. ]
  36865. ))
  36866. characterMakers.push(() => makeCharacter(
  36867. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36868. {
  36869. frontHuman: {
  36870. height: math.unit(5 + 7/12, "feet"),
  36871. name: "Front (Human)",
  36872. image: {
  36873. source: "./media/characters/alek-dryagan/front-human.svg",
  36874. extra: 1687/1667,
  36875. bottom: 69/1756
  36876. }
  36877. },
  36878. backHuman: {
  36879. height: math.unit(5 + 7/12, "feet"),
  36880. name: "Back (Human)",
  36881. image: {
  36882. source: "./media/characters/alek-dryagan/back-human.svg",
  36883. extra: 1670/1649,
  36884. bottom: 65/1735
  36885. }
  36886. },
  36887. frontDemi: {
  36888. height: math.unit(65, "feet"),
  36889. name: "Front (Demi)",
  36890. image: {
  36891. source: "./media/characters/alek-dryagan/front-demi.svg",
  36892. extra: 1669/1642,
  36893. bottom: 49/1718
  36894. }
  36895. },
  36896. backDemi: {
  36897. height: math.unit(65, "feet"),
  36898. name: "Back (Demi)",
  36899. image: {
  36900. source: "./media/characters/alek-dryagan/back-demi.svg",
  36901. extra: 1658/1637,
  36902. bottom: 40/1698
  36903. }
  36904. },
  36905. mawHuman: {
  36906. height: math.unit(0.3, "feet"),
  36907. name: "Maw (Human)",
  36908. image: {
  36909. source: "./media/characters/alek-dryagan/maw-human.svg"
  36910. }
  36911. },
  36912. mawDemi: {
  36913. height: math.unit(3.8, "feet"),
  36914. name: "Maw (Demi)",
  36915. image: {
  36916. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(5 + 7/12, "feet"),
  36924. default: true
  36925. },
  36926. ]
  36927. ))
  36928. characterMakers.push(() => makeCharacter(
  36929. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36930. {
  36931. frontHuman: {
  36932. height: math.unit(5 + 2/12, "feet"),
  36933. name: "Front (Human)",
  36934. image: {
  36935. source: "./media/characters/gen/front-human.svg",
  36936. extra: 1627/1538,
  36937. bottom: 71/1698
  36938. }
  36939. },
  36940. backHuman: {
  36941. height: math.unit(5 + 2/12, "feet"),
  36942. name: "Back (Human)",
  36943. image: {
  36944. source: "./media/characters/gen/back-human.svg",
  36945. extra: 1638/1548,
  36946. bottom: 69/1707
  36947. }
  36948. },
  36949. frontDemi: {
  36950. height: math.unit(5 + 2/12, "feet"),
  36951. name: "Front (Demi)",
  36952. image: {
  36953. source: "./media/characters/gen/front-demi.svg",
  36954. extra: 1627/1538,
  36955. bottom: 71/1698
  36956. }
  36957. },
  36958. backDemi: {
  36959. height: math.unit(5 + 2/12, "feet"),
  36960. name: "Back (Demi)",
  36961. image: {
  36962. source: "./media/characters/gen/back-demi.svg",
  36963. extra: 1638/1548,
  36964. bottom: 69/1707
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(5 + 2/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36978. {
  36979. frontImp: {
  36980. height: math.unit(1 + 11/12, "feet"),
  36981. name: "Front (Imp)",
  36982. image: {
  36983. source: "./media/characters/max-kobold/front-imp.svg",
  36984. extra: 1238/1134,
  36985. bottom: 81/1319
  36986. }
  36987. },
  36988. backImp: {
  36989. height: math.unit(1 + 11/12, "feet"),
  36990. name: "Back (Imp)",
  36991. image: {
  36992. source: "./media/characters/max-kobold/back-imp.svg",
  36993. extra: 1334/1175,
  36994. bottom: 34/1368
  36995. }
  36996. },
  36997. frontDemi: {
  36998. height: math.unit(5 + 9/12, "feet"),
  36999. name: "Front (Demi)",
  37000. image: {
  37001. source: "./media/characters/max-kobold/front-demi.svg",
  37002. extra: 1715/1685,
  37003. bottom: 54/1769
  37004. }
  37005. },
  37006. backDemi: {
  37007. height: math.unit(5 + 9/12, "feet"),
  37008. name: "Back (Demi)",
  37009. image: {
  37010. source: "./media/characters/max-kobold/back-demi.svg",
  37011. extra: 1752/1729,
  37012. bottom: 41/1793
  37013. }
  37014. },
  37015. handImp: {
  37016. height: math.unit(0.45, "feet"),
  37017. name: "Hand (Imp)",
  37018. image: {
  37019. source: "./media/characters/max-kobold/hand.svg"
  37020. }
  37021. },
  37022. pawImp: {
  37023. height: math.unit(0.46, "feet"),
  37024. name: "Paw (Imp)",
  37025. image: {
  37026. source: "./media/characters/max-kobold/paw.svg"
  37027. }
  37028. },
  37029. handDemi: {
  37030. height: math.unit(0.80, "feet"),
  37031. name: "Hand (Demi)",
  37032. image: {
  37033. source: "./media/characters/max-kobold/hand.svg"
  37034. }
  37035. },
  37036. pawDemi: {
  37037. height: math.unit(1.1, "feet"),
  37038. name: "Paw (Demi)",
  37039. image: {
  37040. source: "./media/characters/max-kobold/paw.svg"
  37041. }
  37042. },
  37043. headImp: {
  37044. height: math.unit(1.33, "feet"),
  37045. name: "Head (Imp)",
  37046. image: {
  37047. source: "./media/characters/max-kobold/head-imp.svg"
  37048. }
  37049. },
  37050. mawImp: {
  37051. height: math.unit(0.75, "feet"),
  37052. name: "Maw (Imp)",
  37053. image: {
  37054. source: "./media/characters/max-kobold/maw-imp.svg"
  37055. }
  37056. },
  37057. mawDemi: {
  37058. height: math.unit(0.42, "feet"),
  37059. name: "Maw (Demi)",
  37060. image: {
  37061. source: "./media/characters/max-kobold/maw-demi.svg"
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Normal",
  37068. height: math.unit(1 + 11/12, "feet"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(7 + 5/12, "feet"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/carbon/front.svg",
  37081. extra: 1754/1689,
  37082. bottom: 65/1819
  37083. }
  37084. },
  37085. back: {
  37086. height: math.unit(7 + 5/12, "feet"),
  37087. name: "Back",
  37088. image: {
  37089. source: "./media/characters/carbon/back.svg",
  37090. extra: 1762/1695,
  37091. bottom: 24/1786
  37092. }
  37093. },
  37094. frontGigantamax: {
  37095. height: math.unit(150, "feet"),
  37096. name: "Front (Gigantamax)",
  37097. image: {
  37098. source: "./media/characters/carbon/front-gigantamax.svg",
  37099. extra: 1826/1669,
  37100. bottom: 59/1885
  37101. }
  37102. },
  37103. backGigantamax: {
  37104. height: math.unit(150, "feet"),
  37105. name: "Back (Gigantamax)",
  37106. image: {
  37107. source: "./media/characters/carbon/back-gigantamax.svg",
  37108. extra: 1796/1653,
  37109. bottom: 53/1849
  37110. }
  37111. },
  37112. maw: {
  37113. height: math.unit(0.48, "feet"),
  37114. name: "Maw",
  37115. image: {
  37116. source: "./media/characters/carbon/maw.svg"
  37117. }
  37118. },
  37119. mawGigantamax: {
  37120. height: math.unit(7.5, "feet"),
  37121. name: "Maw (Gigantamax)",
  37122. image: {
  37123. source: "./media/characters/carbon/maw-gigantamax.svg"
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(7 + 5/12, "feet"),
  37131. default: true
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37137. {
  37138. front: {
  37139. height: math.unit(6, "feet"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/maverick/front.svg",
  37143. extra: 1672/1661,
  37144. bottom: 85/1757
  37145. }
  37146. },
  37147. back: {
  37148. height: math.unit(6, "feet"),
  37149. name: "Back",
  37150. image: {
  37151. source: "./media/characters/maverick/back.svg",
  37152. extra: 1642/1631,
  37153. bottom: 38/1680
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(6, "feet"),
  37161. default: true
  37162. },
  37163. ]
  37164. ))
  37165. characterMakers.push(() => makeCharacter(
  37166. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37167. {
  37168. front: {
  37169. height: math.unit(15, "feet"),
  37170. weight: math.unit(615, "lb"),
  37171. name: "Front",
  37172. image: {
  37173. source: "./media/characters/grockle/front.svg",
  37174. extra: 1535/1427,
  37175. bottom: 56/1591
  37176. }
  37177. },
  37178. },
  37179. [
  37180. {
  37181. name: "Normal",
  37182. height: math.unit(15, "feet"),
  37183. default: true
  37184. },
  37185. {
  37186. name: "Large",
  37187. height: math.unit(150, "feet")
  37188. },
  37189. {
  37190. name: "Macro",
  37191. height: math.unit(1876, "feet")
  37192. },
  37193. {
  37194. name: "Mega Macro",
  37195. height: math.unit(121940, "feet")
  37196. },
  37197. {
  37198. name: "Giga Macro",
  37199. height: math.unit(750, "km")
  37200. },
  37201. {
  37202. name: "Tera Macro",
  37203. height: math.unit(750000, "km")
  37204. },
  37205. {
  37206. name: "Galactic",
  37207. height: math.unit(1.4e5, "km")
  37208. },
  37209. {
  37210. name: "Godlike",
  37211. height: math.unit(9.8e280, "galaxies")
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(11, "meters"),
  37220. weight: math.unit(20, "tonnes"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/alistair/front.svg",
  37224. extra: 1265/1009,
  37225. bottom: 93/1358
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(11, "meters"),
  37233. default: true
  37234. },
  37235. ]
  37236. ))
  37237. characterMakers.push(() => makeCharacter(
  37238. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37239. {
  37240. front: {
  37241. height: math.unit(5 + 8/12, "feet"),
  37242. name: "Front",
  37243. image: {
  37244. source: "./media/characters/haruka/front.svg",
  37245. extra: 2012/1952,
  37246. bottom: 0/2012
  37247. }
  37248. },
  37249. },
  37250. [
  37251. {
  37252. name: "Normal",
  37253. height: math.unit(5 + 8/12, "feet"),
  37254. default: true
  37255. },
  37256. ]
  37257. ))
  37258. characterMakers.push(() => makeCharacter(
  37259. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37260. {
  37261. back: {
  37262. height: math.unit(9, "feet"),
  37263. name: "Back",
  37264. image: {
  37265. source: "./media/characters/vivian-sylveon/back.svg",
  37266. extra: 1853/1714,
  37267. bottom: 0/1853
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(9, "feet"),
  37275. default: true
  37276. },
  37277. {
  37278. name: "Macro",
  37279. height: math.unit(500, "feet")
  37280. },
  37281. {
  37282. name: "Megamacro",
  37283. height: math.unit(600, "miles")
  37284. },
  37285. {
  37286. name: "Gigamacro",
  37287. height: math.unit(30000, "miles")
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37293. {
  37294. anthro: {
  37295. height: math.unit(5 + 10/12, "feet"),
  37296. weight: math.unit(100, "lb"),
  37297. name: "Anthro",
  37298. image: {
  37299. source: "./media/characters/daiki/anthro.svg",
  37300. extra: 1115/1027,
  37301. bottom: 69/1184
  37302. }
  37303. },
  37304. feral: {
  37305. height: math.unit(200, "feet"),
  37306. name: "Feral",
  37307. image: {
  37308. source: "./media/characters/daiki/feral.svg",
  37309. extra: 1256/313,
  37310. bottom: 39/1295
  37311. }
  37312. },
  37313. feralHead: {
  37314. height: math.unit(171, "feet"),
  37315. name: "Feral Head",
  37316. image: {
  37317. source: "./media/characters/daiki/feral-head.svg"
  37318. }
  37319. },
  37320. manaDragon: {
  37321. height: math.unit(170, "meters"),
  37322. name: "Mana-dragon",
  37323. image: {
  37324. source: "./media/characters/daiki/mana-dragon.svg",
  37325. extra: 763/420,
  37326. bottom: 97/860
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(5 + 10/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37340. {
  37341. fullyEquippedFront: {
  37342. height: math.unit(3 + 1/12, "feet"),
  37343. weight: math.unit(24, "lb"),
  37344. name: "Fully Equipped (Front)",
  37345. image: {
  37346. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37347. extra: 687/605,
  37348. bottom: 18/705
  37349. }
  37350. },
  37351. fullyEquippedBack: {
  37352. height: math.unit(3 + 1/12, "feet"),
  37353. weight: math.unit(24, "lb"),
  37354. name: "Fully Equipped (Back)",
  37355. image: {
  37356. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37357. extra: 689/590,
  37358. bottom: 18/707
  37359. }
  37360. },
  37361. dailyWear: {
  37362. height: math.unit(3 + 1/12, "feet"),
  37363. weight: math.unit(24, "lb"),
  37364. name: "Daily Wear",
  37365. image: {
  37366. source: "./media/characters/tea-spot/daily-wear.svg",
  37367. extra: 701/620,
  37368. bottom: 21/722
  37369. }
  37370. },
  37371. maidWork: {
  37372. height: math.unit(3 + 1/12, "feet"),
  37373. weight: math.unit(24, "lb"),
  37374. name: "Maid Work",
  37375. image: {
  37376. source: "./media/characters/tea-spot/maid-work.svg",
  37377. extra: 693/609,
  37378. bottom: 15/708
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(3 + 1/12, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(175, "cm"),
  37395. weight: math.unit(75, "kg"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/chee/front.svg",
  37399. extra: 1796/1740,
  37400. bottom: 40/1836
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Micro-Micro",
  37407. height: math.unit(1, "nm")
  37408. },
  37409. {
  37410. name: "Micro-erst",
  37411. height: math.unit(1, "micrometer")
  37412. },
  37413. {
  37414. name: "Micro-er",
  37415. height: math.unit(1, "cm")
  37416. },
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(175, "cm"),
  37420. default: true
  37421. },
  37422. {
  37423. name: "Macro",
  37424. height: math.unit(100, "m")
  37425. },
  37426. {
  37427. name: "Macro-er",
  37428. height: math.unit(1, "km")
  37429. },
  37430. {
  37431. name: "Macro-erst",
  37432. height: math.unit(10, "km")
  37433. },
  37434. {
  37435. name: "Macro-Macro",
  37436. height: math.unit(100, "km")
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(11 + 9/12, "feet"),
  37445. weight: math.unit(935, "lb"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/kingsley/front.svg",
  37449. extra: 1803/1674,
  37450. bottom: 127/1930
  37451. }
  37452. },
  37453. frontNude: {
  37454. height: math.unit(11 + 9/12, "feet"),
  37455. weight: math.unit(935, "lb"),
  37456. name: "Front (Nude)",
  37457. image: {
  37458. source: "./media/characters/kingsley/front-nude.svg",
  37459. extra: 1803/1674,
  37460. bottom: 127/1930
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(11 + 9/12, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37474. {
  37475. side: {
  37476. height: math.unit(9, "feet"),
  37477. name: "Side",
  37478. image: {
  37479. source: "./media/characters/rymel/side.svg",
  37480. extra: 792/469,
  37481. bottom: 121/913
  37482. }
  37483. },
  37484. maw: {
  37485. height: math.unit(2.4, "meters"),
  37486. name: "Maw",
  37487. image: {
  37488. source: "./media/characters/rymel/maw.svg"
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "House Drake",
  37495. height: math.unit(2, "feet")
  37496. },
  37497. {
  37498. name: "Reduced",
  37499. height: math.unit(4.5, "feet")
  37500. },
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(9, "feet"),
  37504. default: true
  37505. },
  37506. ]
  37507. ))
  37508. characterMakers.push(() => makeCharacter(
  37509. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37510. {
  37511. front: {
  37512. height: math.unit(1.74, "meters"),
  37513. weight: math.unit(55, "kg"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/rubus/front.svg",
  37517. extra: 1894/1742,
  37518. bottom: 44/1938
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(1.74, "meters"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(5 + 2/12, "feet"),
  37535. weight: math.unit(112, "lb"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/cassie-kingston/front.svg",
  37539. extra: 1438/1390,
  37540. bottom: 47/1485
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(5 + 2/12, "feet"),
  37548. default: true
  37549. },
  37550. {
  37551. name: "Macro",
  37552. height: math.unit(128, "feet")
  37553. },
  37554. {
  37555. name: "Megamacro",
  37556. height: math.unit(2.56, "miles")
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(7, "feet"),
  37565. name: "Front",
  37566. image: {
  37567. source: "./media/characters/fox/front.svg",
  37568. extra: 1798/1703,
  37569. bottom: 55/1853
  37570. }
  37571. },
  37572. back: {
  37573. height: math.unit(7, "feet"),
  37574. name: "Back",
  37575. image: {
  37576. source: "./media/characters/fox/back.svg",
  37577. extra: 1748/1649,
  37578. bottom: 32/1780
  37579. }
  37580. },
  37581. head: {
  37582. height: math.unit(1.95, "feet"),
  37583. name: "Head",
  37584. image: {
  37585. source: "./media/characters/fox/head.svg"
  37586. }
  37587. },
  37588. dick: {
  37589. height: math.unit(1.33, "feet"),
  37590. name: "Dick",
  37591. image: {
  37592. source: "./media/characters/fox/dick.svg"
  37593. }
  37594. },
  37595. foot: {
  37596. height: math.unit(1, "feet"),
  37597. name: "Foot",
  37598. image: {
  37599. source: "./media/characters/fox/foot.svg"
  37600. }
  37601. },
  37602. paw: {
  37603. height: math.unit(0.92, "feet"),
  37604. name: "Paw",
  37605. image: {
  37606. source: "./media/characters/fox/paw.svg"
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Small",
  37613. height: math.unit(3, "inches")
  37614. },
  37615. {
  37616. name: "\"Realistic\"",
  37617. height: math.unit(7, "feet")
  37618. },
  37619. {
  37620. name: "Normal",
  37621. height: math.unit(150, "feet"),
  37622. default: true
  37623. },
  37624. {
  37625. name: "BIG",
  37626. height: math.unit(1200, "feet")
  37627. },
  37628. {
  37629. name: "👀",
  37630. height: math.unit(5, "miles")
  37631. },
  37632. {
  37633. name: "👀👀👀",
  37634. height: math.unit(64, "miles")
  37635. },
  37636. ]
  37637. ))
  37638. characterMakers.push(() => makeCharacter(
  37639. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37640. {
  37641. front: {
  37642. height: math.unit(625, "feet"),
  37643. name: "Front",
  37644. image: {
  37645. source: "./media/characters/asonja-rossa/front.svg",
  37646. extra: 1833/1686,
  37647. bottom: 24/1857
  37648. }
  37649. },
  37650. back: {
  37651. height: math.unit(625, "feet"),
  37652. name: "Back",
  37653. image: {
  37654. source: "./media/characters/asonja-rossa/back.svg",
  37655. extra: 1852/1753,
  37656. bottom: 26/1878
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Macro",
  37663. height: math.unit(625, "feet"),
  37664. default: true
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37670. {
  37671. side: {
  37672. height: math.unit(8, "feet"),
  37673. name: "Side",
  37674. image: {
  37675. source: "./media/characters/rezukii/side.svg",
  37676. extra: 979/542,
  37677. bottom: 87/1066
  37678. }
  37679. },
  37680. sitting: {
  37681. height: math.unit(14.6, "feet"),
  37682. name: "Sitting",
  37683. image: {
  37684. source: "./media/characters/rezukii/sitting.svg",
  37685. extra: 1023/813,
  37686. bottom: 45/1068
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Tiny",
  37693. height: math.unit(2, "feet")
  37694. },
  37695. {
  37696. name: "Smol",
  37697. height: math.unit(4, "feet")
  37698. },
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(8, "feet"),
  37702. default: true
  37703. },
  37704. {
  37705. name: "Big",
  37706. height: math.unit(12, "feet")
  37707. },
  37708. {
  37709. name: "Macro",
  37710. height: math.unit(30, "feet")
  37711. },
  37712. ]
  37713. ))
  37714. characterMakers.push(() => makeCharacter(
  37715. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37716. {
  37717. front: {
  37718. height: math.unit(14, "feet"),
  37719. weight: math.unit(9.5, "tonnes"),
  37720. name: "Front",
  37721. image: {
  37722. source: "./media/characters/dawnheart/front.svg",
  37723. extra: 2792/2675,
  37724. bottom: 64/2856
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(14, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37738. {
  37739. front: {
  37740. height: math.unit(1.7, "m"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/gladi/front.svg",
  37744. extra: 1460/1362,
  37745. bottom: 19/1479
  37746. }
  37747. },
  37748. back: {
  37749. height: math.unit(1.7, "m"),
  37750. name: "Back",
  37751. image: {
  37752. source: "./media/characters/gladi/back.svg",
  37753. extra: 1459/1357,
  37754. bottom: 12/1471
  37755. }
  37756. },
  37757. feral: {
  37758. height: math.unit(2.05, "m"),
  37759. name: "Feral",
  37760. image: {
  37761. source: "./media/characters/gladi/feral.svg",
  37762. extra: 821/557,
  37763. bottom: 91/912
  37764. }
  37765. },
  37766. },
  37767. [
  37768. {
  37769. name: "Shortest",
  37770. height: math.unit(70, "cm")
  37771. },
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(1.7, "m")
  37775. },
  37776. {
  37777. name: "Macro",
  37778. height: math.unit(10, "m"),
  37779. default: true
  37780. },
  37781. {
  37782. name: "Tallest",
  37783. height: math.unit(200, "m")
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(5 + 7/12, "feet"),
  37792. weight: math.unit(2, "tons"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/erdno/front.svg",
  37796. extra: 1234/1129,
  37797. bottom: 35/1269
  37798. }
  37799. },
  37800. angled: {
  37801. height: math.unit(5 + 7/12, "feet"),
  37802. weight: math.unit(2, "tons"),
  37803. name: "Angled",
  37804. image: {
  37805. source: "./media/characters/erdno/angled.svg",
  37806. extra: 1185/1139,
  37807. bottom: 36/1221
  37808. }
  37809. },
  37810. side: {
  37811. height: math.unit(5 + 7/12, "feet"),
  37812. weight: math.unit(2, "tons"),
  37813. name: "Side",
  37814. image: {
  37815. source: "./media/characters/erdno/side.svg",
  37816. extra: 1191/1144,
  37817. bottom: 40/1231
  37818. }
  37819. },
  37820. back: {
  37821. height: math.unit(5 + 7/12, "feet"),
  37822. weight: math.unit(2, "tons"),
  37823. name: "Back",
  37824. image: {
  37825. source: "./media/characters/erdno/back.svg",
  37826. extra: 1202/1146,
  37827. bottom: 17/1219
  37828. }
  37829. },
  37830. frontNsfw: {
  37831. height: math.unit(5 + 7/12, "feet"),
  37832. weight: math.unit(2, "tons"),
  37833. name: "Front (NSFW)",
  37834. image: {
  37835. source: "./media/characters/erdno/front-nsfw.svg",
  37836. extra: 1234/1129,
  37837. bottom: 35/1269
  37838. }
  37839. },
  37840. angledNsfw: {
  37841. height: math.unit(5 + 7/12, "feet"),
  37842. weight: math.unit(2, "tons"),
  37843. name: "Angled (NSFW)",
  37844. image: {
  37845. source: "./media/characters/erdno/angled-nsfw.svg",
  37846. extra: 1185/1139,
  37847. bottom: 36/1221
  37848. }
  37849. },
  37850. sideNsfw: {
  37851. height: math.unit(5 + 7/12, "feet"),
  37852. weight: math.unit(2, "tons"),
  37853. name: "Side (NSFW)",
  37854. image: {
  37855. source: "./media/characters/erdno/side-nsfw.svg",
  37856. extra: 1191/1144,
  37857. bottom: 40/1231
  37858. }
  37859. },
  37860. backNsfw: {
  37861. height: math.unit(5 + 7/12, "feet"),
  37862. weight: math.unit(2, "tons"),
  37863. name: "Back (NSFW)",
  37864. image: {
  37865. source: "./media/characters/erdno/back-nsfw.svg",
  37866. extra: 1202/1146,
  37867. bottom: 17/1219
  37868. }
  37869. },
  37870. frontHyper: {
  37871. height: math.unit(5 + 7/12, "feet"),
  37872. weight: math.unit(2, "tons"),
  37873. name: "Front (Hyper)",
  37874. image: {
  37875. source: "./media/characters/erdno/front-hyper.svg",
  37876. extra: 1298/1136,
  37877. bottom: 35/1333
  37878. }
  37879. },
  37880. },
  37881. [
  37882. {
  37883. name: "Normal",
  37884. height: math.unit(5 + 7/12, "feet"),
  37885. default: true
  37886. },
  37887. {
  37888. name: "Big",
  37889. height: math.unit(5.7, "meters")
  37890. },
  37891. {
  37892. name: "Macro",
  37893. height: math.unit(5.7, "kilometers")
  37894. },
  37895. {
  37896. name: "Megamacro",
  37897. height: math.unit(5.7, "earths")
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37903. {
  37904. front: {
  37905. height: math.unit(5 + 10/12, "feet"),
  37906. weight: math.unit(150, "lb"),
  37907. name: "Front",
  37908. image: {
  37909. source: "./media/characters/jamie/front.svg",
  37910. extra: 1908/1768,
  37911. bottom: 19/1927
  37912. }
  37913. },
  37914. },
  37915. [
  37916. {
  37917. name: "Minimum",
  37918. height: math.unit(2, "cm")
  37919. },
  37920. {
  37921. name: "Micro",
  37922. height: math.unit(3, "inches")
  37923. },
  37924. {
  37925. name: "Normal",
  37926. height: math.unit(5 + 10/12, "feet"),
  37927. default: true
  37928. },
  37929. {
  37930. name: "Macro",
  37931. height: math.unit(150, "feet")
  37932. },
  37933. {
  37934. name: "Megamacro",
  37935. height: math.unit(10000, "m")
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(2, "meters"),
  37944. weight: math.unit(100, "kg"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/shiron/front.svg",
  37948. extra: 2103/1985,
  37949. bottom: 98/2201
  37950. }
  37951. },
  37952. back: {
  37953. height: math.unit(2, "meters"),
  37954. weight: math.unit(100, "kg"),
  37955. name: "Back",
  37956. image: {
  37957. source: "./media/characters/shiron/back.svg",
  37958. extra: 2110/2015,
  37959. bottom: 89/2199
  37960. }
  37961. },
  37962. hand: {
  37963. height: math.unit(0.96, "feet"),
  37964. name: "Hand",
  37965. image: {
  37966. source: "./media/characters/shiron/hand.svg"
  37967. }
  37968. },
  37969. foot: {
  37970. height: math.unit(1.464, "feet"),
  37971. name: "Foot",
  37972. image: {
  37973. source: "./media/characters/shiron/foot.svg"
  37974. }
  37975. },
  37976. },
  37977. [
  37978. {
  37979. name: "Normal",
  37980. height: math.unit(2, "meters")
  37981. },
  37982. {
  37983. name: "Macro",
  37984. height: math.unit(500, "meters"),
  37985. default: true
  37986. },
  37987. {
  37988. name: "Megamacro",
  37989. height: math.unit(20, "km")
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(6, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/sam/front.svg",
  38001. extra: 849/826,
  38002. bottom: 19/868
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(6, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(8 + 4/12, "feet"),
  38019. weight: math.unit(122, "kg"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/namori-kurogawa/front.svg",
  38023. extra: 1894/1576,
  38024. bottom: 34/1928
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(8 + 4/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(9, "feet"),
  38041. weight: math.unit(621, "lb"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/unmru/front.svg",
  38045. extra: 1853/1747,
  38046. bottom: 73/1926
  38047. }
  38048. },
  38049. side: {
  38050. height: math.unit(9, "feet"),
  38051. weight: math.unit(621, "lb"),
  38052. name: "Side",
  38053. image: {
  38054. source: "./media/characters/unmru/side.svg",
  38055. extra: 1781/1671,
  38056. bottom: 127/1908
  38057. }
  38058. },
  38059. back: {
  38060. height: math.unit(9, "feet"),
  38061. weight: math.unit(621, "lb"),
  38062. name: "Back",
  38063. image: {
  38064. source: "./media/characters/unmru/back.svg",
  38065. extra: 1894/1765,
  38066. bottom: 75/1969
  38067. }
  38068. },
  38069. dick: {
  38070. height: math.unit(3, "feet"),
  38071. weight: math.unit(35, "lb"),
  38072. name: "Dick",
  38073. image: {
  38074. source: "./media/characters/unmru/dick.svg"
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(9, "feet")
  38082. },
  38083. {
  38084. name: "Natural",
  38085. height: math.unit(27, "feet"),
  38086. default: true
  38087. },
  38088. {
  38089. name: "Giant",
  38090. height: math.unit(90, "feet")
  38091. },
  38092. {
  38093. name: "Kaiju",
  38094. height: math.unit(270, "feet")
  38095. },
  38096. {
  38097. name: "Macro",
  38098. height: math.unit(900, "feet")
  38099. },
  38100. {
  38101. name: "Macro+",
  38102. height: math.unit(2700, "feet")
  38103. },
  38104. {
  38105. name: "Megamacro",
  38106. height: math.unit(9000, "feet")
  38107. },
  38108. {
  38109. name: "City-Crushing",
  38110. height: math.unit(27000, "feet")
  38111. },
  38112. {
  38113. name: "Mountain-Mashing",
  38114. height: math.unit(90000, "feet")
  38115. },
  38116. {
  38117. name: "Earth-Eclipsing",
  38118. height: math.unit(2.7e8, "feet")
  38119. },
  38120. {
  38121. name: "Sol-Swallowing",
  38122. height: math.unit(9e10, "feet")
  38123. },
  38124. {
  38125. name: "Majoris-Munching",
  38126. height: math.unit(2.7e13, "feet")
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38132. {
  38133. front: {
  38134. height: math.unit(1, "inch"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/squeaks-mouse/front.svg",
  38138. extra: 352/308,
  38139. bottom: 25/377
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Micro",
  38146. height: math.unit(1, "inch"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38153. {
  38154. side: {
  38155. height: math.unit(35, "feet"),
  38156. name: "Side",
  38157. image: {
  38158. source: "./media/characters/sayko/side.svg",
  38159. extra: 1697/1021,
  38160. bottom: 82/1779
  38161. }
  38162. },
  38163. head: {
  38164. height: math.unit(16, "feet"),
  38165. name: "Head",
  38166. image: {
  38167. source: "./media/characters/sayko/head.svg"
  38168. }
  38169. },
  38170. forepaw: {
  38171. height: math.unit(7.85, "feet"),
  38172. name: "Forepaw",
  38173. image: {
  38174. source: "./media/characters/sayko/forepaw.svg"
  38175. }
  38176. },
  38177. hindpaw: {
  38178. height: math.unit(8.8, "feet"),
  38179. name: "Hindpaw",
  38180. image: {
  38181. source: "./media/characters/sayko/hindpaw.svg"
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(35, "feet"),
  38189. default: true
  38190. },
  38191. {
  38192. name: "Colossus",
  38193. height: math.unit(100, "meters")
  38194. },
  38195. {
  38196. name: "\"Small\" Deity",
  38197. height: math.unit(1, "km")
  38198. },
  38199. {
  38200. name: "\"Large\" Deity",
  38201. height: math.unit(15, "km")
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(6, "feet"),
  38210. weight: math.unit(250, "lb"),
  38211. name: "Front",
  38212. image: {
  38213. source: "./media/characters/mukiro/front.svg",
  38214. extra: 1368/1310,
  38215. bottom: 34/1402
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(6, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(12 + 4/12, "feet"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38235. extra: 1346/1311,
  38236. bottom: 65/1411
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Base",
  38243. height: math.unit(12 + 4/12, "feet"),
  38244. default: true
  38245. },
  38246. {
  38247. name: "Macro",
  38248. height: math.unit(150, "feet")
  38249. },
  38250. {
  38251. name: "Mega",
  38252. height: math.unit(2, "miles")
  38253. },
  38254. {
  38255. name: "Demi God",
  38256. height: math.unit(4, "AU")
  38257. },
  38258. {
  38259. name: "God Size",
  38260. height: math.unit(1, "universe")
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(3 + 3/12, "feet"),
  38269. weight: math.unit(88, "lb"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/trey/front.svg",
  38273. extra: 1815/1509,
  38274. bottom: 60/1875
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(3 + 3/12, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38288. {
  38289. front: {
  38290. height: math.unit(4, "meters"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/adelonda/front.svg",
  38294. extra: 1077/982,
  38295. bottom: 39/1116
  38296. }
  38297. },
  38298. back: {
  38299. height: math.unit(4, "meters"),
  38300. name: "Back",
  38301. image: {
  38302. source: "./media/characters/adelonda/back.svg",
  38303. extra: 1105/1003,
  38304. bottom: 25/1130
  38305. }
  38306. },
  38307. feral: {
  38308. height: math.unit(40/1.5, "meters"),
  38309. name: "Feral",
  38310. image: {
  38311. source: "./media/characters/adelonda/feral.svg",
  38312. extra: 597/271,
  38313. bottom: 387/984
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Normal",
  38320. height: math.unit(4, "meters"),
  38321. default: true
  38322. },
  38323. ]
  38324. ))
  38325. characterMakers.push(() => makeCharacter(
  38326. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38327. {
  38328. front: {
  38329. height: math.unit(8 + 4/12, "feet"),
  38330. weight: math.unit(670, "lb"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/acadiel/front.svg",
  38334. extra: 1901/1595,
  38335. bottom: 142/2043
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(8 + 4/12, "feet"),
  38343. default: true
  38344. },
  38345. {
  38346. name: "Macro",
  38347. height: math.unit(200, "feet")
  38348. },
  38349. ]
  38350. ))
  38351. characterMakers.push(() => makeCharacter(
  38352. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38353. {
  38354. front: {
  38355. height: math.unit(6 + 2/12, "feet"),
  38356. weight: math.unit(185, "lb"),
  38357. name: "Front",
  38358. image: {
  38359. source: "./media/characters/kayne-ein/front.svg",
  38360. extra: 1780/1560,
  38361. bottom: 81/1861
  38362. }
  38363. },
  38364. },
  38365. [
  38366. {
  38367. name: "Normal",
  38368. height: math.unit(6 + 2/12, "feet"),
  38369. default: true
  38370. },
  38371. {
  38372. name: "Transformation Stage",
  38373. height: math.unit(15, "feet")
  38374. },
  38375. {
  38376. name: "Macro",
  38377. height: math.unit(150, "feet")
  38378. },
  38379. {
  38380. name: "Earth's Shadow",
  38381. height: math.unit(6200, "miles")
  38382. },
  38383. {
  38384. name: "Universal Demon",
  38385. height: math.unit(28e9, "parsecs")
  38386. },
  38387. {
  38388. name: "Multiverse God",
  38389. height: math.unit(3, "multiverses")
  38390. },
  38391. ]
  38392. ))
  38393. characterMakers.push(() => makeCharacter(
  38394. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38395. {
  38396. front: {
  38397. height: math.unit(5 + 5/12, "feet"),
  38398. name: "Front",
  38399. image: {
  38400. source: "./media/characters/fawn/front.svg",
  38401. extra: 1873/1731,
  38402. bottom: 95/1968
  38403. }
  38404. },
  38405. back: {
  38406. height: math.unit(5 + 5/12, "feet"),
  38407. name: "Back",
  38408. image: {
  38409. source: "./media/characters/fawn/back.svg",
  38410. extra: 1813/1700,
  38411. bottom: 14/1827
  38412. }
  38413. },
  38414. hoof: {
  38415. height: math.unit(1.45, "feet"),
  38416. name: "Hoof",
  38417. image: {
  38418. source: "./media/characters/fawn/hoof.svg"
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Normal",
  38425. height: math.unit(5 + 5/12, "feet"),
  38426. default: true
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(2 + 5/12, "feet"),
  38435. name: "Front",
  38436. image: {
  38437. source: "./media/characters/orion/front.svg",
  38438. extra: 1366/1304,
  38439. bottom: 43/1409
  38440. }
  38441. },
  38442. paw: {
  38443. height: math.unit(0.52, "feet"),
  38444. name: "Paw",
  38445. image: {
  38446. source: "./media/characters/orion/paw.svg"
  38447. }
  38448. },
  38449. },
  38450. [
  38451. {
  38452. name: "Normal",
  38453. height: math.unit(2 + 5/12, "feet"),
  38454. default: true
  38455. },
  38456. ]
  38457. ))
  38458. characterMakers.push(() => makeCharacter(
  38459. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38460. {
  38461. front: {
  38462. height: math.unit(5 + 10/12, "feet"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/vera/front.svg",
  38466. extra: 1680/1575,
  38467. bottom: 49/1729
  38468. }
  38469. },
  38470. back: {
  38471. height: math.unit(5 + 10/12, "feet"),
  38472. name: "Back",
  38473. image: {
  38474. source: "./media/characters/vera/back.svg",
  38475. extra: 1700/1588,
  38476. bottom: 18/1718
  38477. }
  38478. },
  38479. arcanine: {
  38480. height: math.unit(6 + 8/12, "feet"),
  38481. name: "Arcanine",
  38482. image: {
  38483. source: "./media/characters/vera/arcanine.svg",
  38484. extra: 1590/1511,
  38485. bottom: 71/1661
  38486. }
  38487. },
  38488. maw: {
  38489. height: math.unit(0.82, "feet"),
  38490. name: "Maw",
  38491. image: {
  38492. source: "./media/characters/vera/maw.svg"
  38493. }
  38494. },
  38495. mawArcanine: {
  38496. height: math.unit(0.97, "feet"),
  38497. name: "Maw (Arcanine)",
  38498. image: {
  38499. source: "./media/characters/vera/maw-arcanine.svg"
  38500. }
  38501. },
  38502. paw: {
  38503. height: math.unit(0.75, "feet"),
  38504. name: "Paw",
  38505. image: {
  38506. source: "./media/characters/vera/paw.svg"
  38507. }
  38508. },
  38509. pawprint: {
  38510. height: math.unit(0.52, "feet"),
  38511. name: "Pawprint",
  38512. image: {
  38513. source: "./media/characters/vera/pawprint.svg"
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(5 + 10/12, "feet"),
  38521. default: true
  38522. },
  38523. {
  38524. name: "Macro",
  38525. height: math.unit(75, "feet")
  38526. },
  38527. ]
  38528. ))
  38529. characterMakers.push(() => makeCharacter(
  38530. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38531. {
  38532. front: {
  38533. height: math.unit(4, "feet"),
  38534. weight: math.unit(40, "lb"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/orvan-rabbit/front.svg",
  38538. extra: 1896/1642,
  38539. bottom: 29/1925
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(4, "feet"),
  38547. default: true
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(6, "feet"),
  38556. weight: math.unit(168, "lb"),
  38557. name: "Front",
  38558. image: {
  38559. source: "./media/characters/lisa/front.svg",
  38560. extra: 2065/1867,
  38561. bottom: 46/2111
  38562. }
  38563. },
  38564. back: {
  38565. height: math.unit(6, "feet"),
  38566. weight: math.unit(168, "lb"),
  38567. name: "Back",
  38568. image: {
  38569. source: "./media/characters/lisa/back.svg",
  38570. extra: 1982/1838,
  38571. bottom: 29/2011
  38572. }
  38573. },
  38574. maw: {
  38575. height: math.unit(0.81, "feet"),
  38576. name: "Maw",
  38577. image: {
  38578. source: "./media/characters/lisa/maw.svg"
  38579. }
  38580. },
  38581. paw: {
  38582. height: math.unit(0.9, "feet"),
  38583. name: "Paw",
  38584. image: {
  38585. source: "./media/characters/lisa/paw.svg"
  38586. }
  38587. },
  38588. caribousune: {
  38589. height: math.unit(7 + 2/12, "feet"),
  38590. weight: math.unit(268, "lb"),
  38591. name: "Caribousune",
  38592. image: {
  38593. source: "./media/characters/lisa/caribousune.svg",
  38594. extra: 1843/1633,
  38595. bottom: 29/1872
  38596. }
  38597. },
  38598. frontCaribousune: {
  38599. height: math.unit(7 + 2/12, "feet"),
  38600. weight: math.unit(268, "lb"),
  38601. name: "Front (Caribousune)",
  38602. image: {
  38603. source: "./media/characters/lisa/front-caribousune.svg",
  38604. extra: 1818/1638,
  38605. bottom: 52/1870
  38606. }
  38607. },
  38608. sideCaribousune: {
  38609. height: math.unit(7 + 2/12, "feet"),
  38610. weight: math.unit(268, "lb"),
  38611. name: "Side (Caribousune)",
  38612. image: {
  38613. source: "./media/characters/lisa/side-caribousune.svg",
  38614. extra: 1851/1635,
  38615. bottom: 16/1867
  38616. }
  38617. },
  38618. backCaribousune: {
  38619. height: math.unit(7 + 2/12, "feet"),
  38620. weight: math.unit(268, "lb"),
  38621. name: "Back (Caribousune)",
  38622. image: {
  38623. source: "./media/characters/lisa/back-caribousune.svg",
  38624. extra: 1801/1604,
  38625. bottom: 44/1845
  38626. }
  38627. },
  38628. caribou: {
  38629. height: math.unit(7 + 2/12, "feet"),
  38630. weight: math.unit(268, "lb"),
  38631. name: "Caribou",
  38632. image: {
  38633. source: "./media/characters/lisa/caribou.svg",
  38634. extra: 1843/1633,
  38635. bottom: 29/1872
  38636. }
  38637. },
  38638. frontCaribou: {
  38639. height: math.unit(7 + 2/12, "feet"),
  38640. weight: math.unit(268, "lb"),
  38641. name: "Front (Caribou)",
  38642. image: {
  38643. source: "./media/characters/lisa/front-caribou.svg",
  38644. extra: 1818/1638,
  38645. bottom: 52/1870
  38646. }
  38647. },
  38648. sideCaribou: {
  38649. height: math.unit(7 + 2/12, "feet"),
  38650. weight: math.unit(268, "lb"),
  38651. name: "Side (Caribou)",
  38652. image: {
  38653. source: "./media/characters/lisa/side-caribou.svg",
  38654. extra: 1851/1635,
  38655. bottom: 16/1867
  38656. }
  38657. },
  38658. backCaribou: {
  38659. height: math.unit(7 + 2/12, "feet"),
  38660. weight: math.unit(268, "lb"),
  38661. name: "Back (Caribou)",
  38662. image: {
  38663. source: "./media/characters/lisa/back-caribou.svg",
  38664. extra: 1801/1604,
  38665. bottom: 44/1845
  38666. }
  38667. },
  38668. mawCaribou: {
  38669. height: math.unit(1.45, "feet"),
  38670. name: "Maw (Caribou)",
  38671. image: {
  38672. source: "./media/characters/lisa/maw-caribou.svg"
  38673. }
  38674. },
  38675. mawCaribousune: {
  38676. height: math.unit(1.45, "feet"),
  38677. name: "Maw (Caribousune)",
  38678. image: {
  38679. source: "./media/characters/lisa/maw-caribousune.svg"
  38680. }
  38681. },
  38682. pawCaribousune: {
  38683. height: math.unit(1.61, "feet"),
  38684. name: "Paw (Caribou)",
  38685. image: {
  38686. source: "./media/characters/lisa/paw-caribousune.svg"
  38687. }
  38688. },
  38689. },
  38690. [
  38691. {
  38692. name: "Normal",
  38693. height: math.unit(6, "feet")
  38694. },
  38695. {
  38696. name: "God Size",
  38697. height: math.unit(72, "feet"),
  38698. default: true
  38699. },
  38700. {
  38701. name: "Towering",
  38702. height: math.unit(288, "feet")
  38703. },
  38704. {
  38705. name: "City Size",
  38706. height: math.unit(48384, "feet")
  38707. },
  38708. {
  38709. name: "Continental",
  38710. height: math.unit(4200, "miles")
  38711. },
  38712. {
  38713. name: "Planet Eater",
  38714. height: math.unit(42, "earths")
  38715. },
  38716. {
  38717. name: "Star Swallower",
  38718. height: math.unit(42, "solarradii")
  38719. },
  38720. {
  38721. name: "System Swallower",
  38722. height: math.unit(84000, "AU")
  38723. },
  38724. {
  38725. name: "Galaxy Gobbler",
  38726. height: math.unit(42, "galaxies")
  38727. },
  38728. {
  38729. name: "Universe Devourer",
  38730. height: math.unit(42, "universes")
  38731. },
  38732. {
  38733. name: "Multiverse Muncher",
  38734. height: math.unit(42, "multiverses")
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(36, "feet"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/shadow-rat/front.svg",
  38746. extra: 1845/1758,
  38747. bottom: 83/1928
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Macro",
  38754. height: math.unit(36, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38761. {
  38762. side: {
  38763. height: math.unit(8, "feet"),
  38764. weight: math.unit(2630, "lb"),
  38765. name: "Side",
  38766. image: {
  38767. source: "./media/characters/torallia/side.svg",
  38768. extra: 2164/2021,
  38769. bottom: 371/2535
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Mortal Interaction",
  38776. height: math.unit(8, "feet")
  38777. },
  38778. {
  38779. name: "Natural",
  38780. height: math.unit(24, "feet"),
  38781. default: true
  38782. },
  38783. {
  38784. name: "Giant",
  38785. height: math.unit(80, "feet")
  38786. },
  38787. {
  38788. name: "Kaiju",
  38789. height: math.unit(240, "feet")
  38790. },
  38791. {
  38792. name: "Macro",
  38793. height: math.unit(800, "feet")
  38794. },
  38795. {
  38796. name: "Macro+",
  38797. height: math.unit(2400, "feet")
  38798. },
  38799. {
  38800. name: "Macro++",
  38801. height: math.unit(8000, "feet")
  38802. },
  38803. {
  38804. name: "City-Crushing",
  38805. height: math.unit(24000, "feet")
  38806. },
  38807. {
  38808. name: "Mountain-Mashing",
  38809. height: math.unit(80000, "feet")
  38810. },
  38811. {
  38812. name: "District Demolisher",
  38813. height: math.unit(240000, "feet")
  38814. },
  38815. {
  38816. name: "Tri-County Terror",
  38817. height: math.unit(800000, "feet")
  38818. },
  38819. {
  38820. name: "State Smasher",
  38821. height: math.unit(2.4e6, "feet")
  38822. },
  38823. {
  38824. name: "Nation Nemesis",
  38825. height: math.unit(8e6, "feet")
  38826. },
  38827. {
  38828. name: "Continent Cracker",
  38829. height: math.unit(2.4e7, "feet")
  38830. },
  38831. {
  38832. name: "Planet-Pillaging",
  38833. height: math.unit(8e7, "feet")
  38834. },
  38835. {
  38836. name: "Earth-Eclipsing",
  38837. height: math.unit(2.4e8, "feet")
  38838. },
  38839. {
  38840. name: "Jovian-Jostling",
  38841. height: math.unit(8e8, "feet")
  38842. },
  38843. {
  38844. name: "Gas Giant Gulper",
  38845. height: math.unit(2.4e9, "feet")
  38846. },
  38847. {
  38848. name: "Astral Annihilator",
  38849. height: math.unit(8e9, "feet")
  38850. },
  38851. {
  38852. name: "Celestial Conqueror",
  38853. height: math.unit(2.4e10, "feet")
  38854. },
  38855. {
  38856. name: "Sol-Swallowing",
  38857. height: math.unit(8e10, "feet")
  38858. },
  38859. {
  38860. name: "Hunter of the Heavens",
  38861. height: math.unit(2.4e13, "feet")
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38867. {
  38868. front: {
  38869. height: math.unit(6 + 8/12, "feet"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/rebecca-pawlson/front.svg",
  38873. extra: 1737/1596,
  38874. bottom: 107/1844
  38875. }
  38876. },
  38877. back: {
  38878. height: math.unit(6 + 8/12, "feet"),
  38879. name: "Back",
  38880. image: {
  38881. source: "./media/characters/rebecca-pawlson/back.svg",
  38882. extra: 1702/1523,
  38883. bottom: 86/1788
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(6 + 8/12, "feet")
  38891. },
  38892. {
  38893. name: "Mini Macro",
  38894. height: math.unit(10, "feet"),
  38895. default: true
  38896. },
  38897. {
  38898. name: "Macro",
  38899. height: math.unit(100, "feet")
  38900. },
  38901. {
  38902. name: "Mega Macro",
  38903. height: math.unit(2500, "feet")
  38904. },
  38905. {
  38906. name: "Giga Macro",
  38907. height: math.unit(50, "miles")
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38913. {
  38914. front: {
  38915. height: math.unit(7 + 6/12, "feet"),
  38916. weight: math.unit(600, "lb"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/moxie-nova/front.svg",
  38920. extra: 1734/1652,
  38921. bottom: 41/1775
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(7 + 6/12, "feet"),
  38929. default: true
  38930. },
  38931. ]
  38932. ))
  38933. characterMakers.push(() => makeCharacter(
  38934. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38935. {
  38936. goat: {
  38937. height: math.unit(4, "feet"),
  38938. weight: math.unit(180, "lb"),
  38939. name: "Goat",
  38940. image: {
  38941. source: "./media/characters/tiffany/goat.svg",
  38942. extra: 1845/1595,
  38943. bottom: 106/1951
  38944. }
  38945. },
  38946. front: {
  38947. height: math.unit(5, "feet"),
  38948. weight: math.unit(150, "lb"),
  38949. name: "Foxcoon",
  38950. image: {
  38951. source: "./media/characters/tiffany/foxcoon.svg",
  38952. extra: 1941/1845,
  38953. bottom: 58/1999
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(5, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(8, "feet"),
  38970. weight: math.unit(300, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/raxinath/front.svg",
  38974. extra: 1407/1309,
  38975. bottom: 39/1446
  38976. }
  38977. },
  38978. back: {
  38979. height: math.unit(8, "feet"),
  38980. weight: math.unit(300, "lb"),
  38981. name: "Back",
  38982. image: {
  38983. source: "./media/characters/raxinath/back.svg",
  38984. extra: 1405/1315,
  38985. bottom: 9/1414
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Speck",
  38992. height: math.unit(0.5, "nm")
  38993. },
  38994. {
  38995. name: "Micro",
  38996. height: math.unit(3, "inches")
  38997. },
  38998. {
  38999. name: "Kobold",
  39000. height: math.unit(3, "feet")
  39001. },
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(8, "feet"),
  39005. default: true
  39006. },
  39007. {
  39008. name: "Giant",
  39009. height: math.unit(50, "feet")
  39010. },
  39011. {
  39012. name: "Macro",
  39013. height: math.unit(1000, "feet")
  39014. },
  39015. {
  39016. name: "Megamacro",
  39017. height: math.unit(1, "mile")
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39023. {
  39024. front: {
  39025. height: math.unit(10, "feet"),
  39026. weight: math.unit(1442, "lb"),
  39027. name: "Front",
  39028. image: {
  39029. source: "./media/characters/mal-dragon/front.svg",
  39030. extra: 1515/1444,
  39031. bottom: 113/1628
  39032. }
  39033. },
  39034. back: {
  39035. height: math.unit(10, "feet"),
  39036. weight: math.unit(1442, "lb"),
  39037. name: "Back",
  39038. image: {
  39039. source: "./media/characters/mal-dragon/back.svg",
  39040. extra: 1527/1434,
  39041. bottom: 25/1552
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Mortal Interaction",
  39048. height: math.unit(10, "feet"),
  39049. default: true
  39050. },
  39051. {
  39052. name: "Large",
  39053. height: math.unit(30, "feet")
  39054. },
  39055. {
  39056. name: "Kaiju",
  39057. height: math.unit(300, "feet")
  39058. },
  39059. {
  39060. name: "Megamacro",
  39061. height: math.unit(10000, "feet")
  39062. },
  39063. {
  39064. name: "Continent Cracker",
  39065. height: math.unit(30000000, "feet")
  39066. },
  39067. {
  39068. name: "Sol-Swallowing",
  39069. height: math.unit(1e11, "feet")
  39070. },
  39071. {
  39072. name: "Light Universal",
  39073. height: math.unit(5, "universes")
  39074. },
  39075. {
  39076. name: "Universe Atoms",
  39077. height: math.unit(1.829e9, "universes")
  39078. },
  39079. {
  39080. name: "Light Multiversal",
  39081. height: math.unit(5, "multiverses")
  39082. },
  39083. {
  39084. name: "Multiverse Atoms",
  39085. height: math.unit(1.829e9, "multiverses")
  39086. },
  39087. {
  39088. name: "Fabric of Time",
  39089. height: math.unit(1e262, "multiverses")
  39090. },
  39091. ]
  39092. ))
  39093. characterMakers.push(() => makeCharacter(
  39094. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39095. {
  39096. front: {
  39097. height: math.unit(9, "feet"),
  39098. weight: math.unit(1050, "lb"),
  39099. name: "Front",
  39100. image: {
  39101. source: "./media/characters/tabitha/front.svg",
  39102. extra: 2083/1994,
  39103. bottom: 68/2151
  39104. }
  39105. },
  39106. },
  39107. [
  39108. {
  39109. name: "Baseline",
  39110. height: math.unit(9, "feet"),
  39111. default: true
  39112. },
  39113. {
  39114. name: "Giant",
  39115. height: math.unit(90, "feet")
  39116. },
  39117. {
  39118. name: "Macro",
  39119. height: math.unit(900, "feet")
  39120. },
  39121. {
  39122. name: "Megamacro",
  39123. height: math.unit(9000, "feet")
  39124. },
  39125. {
  39126. name: "City-Crushing",
  39127. height: math.unit(27000, "feet")
  39128. },
  39129. {
  39130. name: "Mountain-Mashing",
  39131. height: math.unit(90000, "feet")
  39132. },
  39133. {
  39134. name: "Nation Nemesis",
  39135. height: math.unit(9e6, "feet")
  39136. },
  39137. {
  39138. name: "Continent Cracker",
  39139. height: math.unit(27e6, "feet")
  39140. },
  39141. {
  39142. name: "Earth-Eclipsing",
  39143. height: math.unit(2.7e8, "feet")
  39144. },
  39145. {
  39146. name: "Gas Giant Gulper",
  39147. height: math.unit(2.7e9, "feet")
  39148. },
  39149. {
  39150. name: "Sol-Swallowing",
  39151. height: math.unit(9e10, "feet")
  39152. },
  39153. {
  39154. name: "Galaxy Gulper",
  39155. height: math.unit(9, "galaxies")
  39156. },
  39157. {
  39158. name: "Cosmos Churner",
  39159. height: math.unit(9, "universes")
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(160, "cm"),
  39168. weight: math.unit(55, "kg"),
  39169. name: "Front",
  39170. image: {
  39171. source: "./media/characters/tow/front.svg",
  39172. extra: 1751/1722,
  39173. bottom: 74/1825
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Norm",
  39180. height: math.unit(160, "cm")
  39181. },
  39182. {
  39183. name: "Casual",
  39184. height: math.unit(3200, "m"),
  39185. default: true
  39186. },
  39187. {
  39188. name: "Show-Off",
  39189. height: math.unit(160, "km")
  39190. },
  39191. ]
  39192. ))
  39193. characterMakers.push(() => makeCharacter(
  39194. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39195. {
  39196. front: {
  39197. height: math.unit(7 + 11/12, "feet"),
  39198. weight: math.unit(342.8, "lb"),
  39199. name: "Front",
  39200. image: {
  39201. source: "./media/characters/vivian-orca-dragon/front.svg",
  39202. extra: 1890/1865,
  39203. bottom: 28/1918
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Micro",
  39210. height: math.unit(5, "inches")
  39211. },
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(7 + 11/12, "feet"),
  39215. default: true
  39216. },
  39217. {
  39218. name: "Macro",
  39219. height: math.unit(395 + 7/12, "feet")
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39225. {
  39226. side: {
  39227. height: math.unit(10, "feet"),
  39228. weight: math.unit(1442, "lb"),
  39229. name: "Side",
  39230. image: {
  39231. source: "./media/characters/lotherakon/side.svg",
  39232. extra: 1604/1497,
  39233. bottom: 89/1693
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Mortal Interaction",
  39240. height: math.unit(10, "feet")
  39241. },
  39242. {
  39243. name: "Large",
  39244. height: math.unit(30, "feet"),
  39245. default: true
  39246. },
  39247. {
  39248. name: "Giant",
  39249. height: math.unit(100, "feet")
  39250. },
  39251. {
  39252. name: "Kaiju",
  39253. height: math.unit(300, "feet")
  39254. },
  39255. {
  39256. name: "Macro",
  39257. height: math.unit(1000, "feet")
  39258. },
  39259. {
  39260. name: "Macro+",
  39261. height: math.unit(3000, "feet")
  39262. },
  39263. {
  39264. name: "Megamacro",
  39265. height: math.unit(10000, "feet")
  39266. },
  39267. {
  39268. name: "City-Crushing",
  39269. height: math.unit(30000, "feet")
  39270. },
  39271. {
  39272. name: "Continent Cracker",
  39273. height: math.unit(30e6, "feet")
  39274. },
  39275. {
  39276. name: "Earth Eclipsing",
  39277. height: math.unit(3e8, "feet")
  39278. },
  39279. {
  39280. name: "Gas Giant Gulper",
  39281. height: math.unit(3e9, "feet")
  39282. },
  39283. {
  39284. name: "Sol-Swallowing",
  39285. height: math.unit(1e11, "feet")
  39286. },
  39287. {
  39288. name: "System Swallower",
  39289. height: math.unit(3e14, "feet")
  39290. },
  39291. {
  39292. name: "Galaxy Gulper",
  39293. height: math.unit(10, "galaxies")
  39294. },
  39295. {
  39296. name: "Light Universal",
  39297. height: math.unit(5, "universes")
  39298. },
  39299. {
  39300. name: "Universe Palm",
  39301. height: math.unit(20, "universes")
  39302. },
  39303. {
  39304. name: "Light Multiversal",
  39305. height: math.unit(5, "multiverses")
  39306. },
  39307. {
  39308. name: "Multiverse Palm",
  39309. height: math.unit(20, "multiverses")
  39310. },
  39311. {
  39312. name: "Inferno Incarnate",
  39313. height: math.unit(1e7, "multiverses")
  39314. },
  39315. ]
  39316. ))
  39317. characterMakers.push(() => makeCharacter(
  39318. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39319. {
  39320. front: {
  39321. height: math.unit(8, "feet"),
  39322. weight: math.unit(1200, "lb"),
  39323. name: "Front",
  39324. image: {
  39325. source: "./media/characters/malithee/front.svg",
  39326. extra: 1675/1640,
  39327. bottom: 162/1837
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Mortal Interaction",
  39334. height: math.unit(8, "feet"),
  39335. default: true
  39336. },
  39337. {
  39338. name: "Large",
  39339. height: math.unit(24, "feet")
  39340. },
  39341. {
  39342. name: "Kaiju",
  39343. height: math.unit(240, "feet")
  39344. },
  39345. {
  39346. name: "Megamacro",
  39347. height: math.unit(8000, "feet")
  39348. },
  39349. {
  39350. name: "Continent Cracker",
  39351. height: math.unit(24e6, "feet")
  39352. },
  39353. {
  39354. name: "Earth-Eclipsing",
  39355. height: math.unit(2.4e8, "feet")
  39356. },
  39357. {
  39358. name: "Sol-Swallowing",
  39359. height: math.unit(8e10, "feet")
  39360. },
  39361. {
  39362. name: "Galaxy Gulper",
  39363. height: math.unit(8, "galaxies")
  39364. },
  39365. {
  39366. name: "Light Universal",
  39367. height: math.unit(4, "universes")
  39368. },
  39369. {
  39370. name: "Universe Atoms",
  39371. height: math.unit(1.829e9, "universes")
  39372. },
  39373. {
  39374. name: "Light Multiversal",
  39375. height: math.unit(4, "multiverses")
  39376. },
  39377. {
  39378. name: "Multiverse Atoms",
  39379. height: math.unit(1.829e9, "multiverses")
  39380. },
  39381. {
  39382. name: "Nigh-Omnipresence",
  39383. height: math.unit(8e261, "multiverses")
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(10, "feet"),
  39392. weight: math.unit(1500, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/miles-thestia/front.svg",
  39396. extra: 1812/1727,
  39397. bottom: 86/1898
  39398. }
  39399. },
  39400. back: {
  39401. height: math.unit(10, "feet"),
  39402. weight: math.unit(1500, "lb"),
  39403. name: "Back",
  39404. image: {
  39405. source: "./media/characters/miles-thestia/back.svg",
  39406. extra: 1799/1690,
  39407. bottom: 47/1846
  39408. }
  39409. },
  39410. frontNsfw: {
  39411. height: math.unit(10, "feet"),
  39412. weight: math.unit(1500, "lb"),
  39413. name: "Front (NSFW)",
  39414. image: {
  39415. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39416. extra: 1812/1727,
  39417. bottom: 86/1898
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Mini-Macro",
  39424. height: math.unit(10, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(25, "feet"),
  39434. name: "Front",
  39435. image: {
  39436. source: "./media/characters/titan-s-wulf/front.svg",
  39437. extra: 1560/1484,
  39438. bottom: 76/1636
  39439. }
  39440. },
  39441. },
  39442. [
  39443. {
  39444. name: "Smallest",
  39445. height: math.unit(25, "feet"),
  39446. default: true
  39447. },
  39448. {
  39449. name: "Normal",
  39450. height: math.unit(200, "feet")
  39451. },
  39452. {
  39453. name: "Macro",
  39454. height: math.unit(200000, "feet")
  39455. },
  39456. {
  39457. name: "Multiversal Original",
  39458. height: math.unit(10000, "multiverses")
  39459. },
  39460. ]
  39461. ))
  39462. characterMakers.push(() => makeCharacter(
  39463. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39464. {
  39465. front: {
  39466. height: math.unit(8, "feet"),
  39467. weight: math.unit(553, "lb"),
  39468. name: "Front",
  39469. image: {
  39470. source: "./media/characters/tawendeh/front.svg",
  39471. extra: 2365/2268,
  39472. bottom: 83/2448
  39473. }
  39474. },
  39475. frontClothed: {
  39476. height: math.unit(8, "feet"),
  39477. weight: math.unit(553, "lb"),
  39478. name: "Front (Clothed)",
  39479. image: {
  39480. source: "./media/characters/tawendeh/front-clothed.svg",
  39481. extra: 2365/2268,
  39482. bottom: 83/2448
  39483. }
  39484. },
  39485. back: {
  39486. height: math.unit(8, "feet"),
  39487. weight: math.unit(553, "lb"),
  39488. name: "Back",
  39489. image: {
  39490. source: "./media/characters/tawendeh/back.svg",
  39491. extra: 2397/2294,
  39492. bottom: 42/2439
  39493. }
  39494. },
  39495. },
  39496. [
  39497. {
  39498. name: "Mortal Interaction",
  39499. height: math.unit(8, "feet"),
  39500. default: true
  39501. },
  39502. {
  39503. name: "Giant",
  39504. height: math.unit(80, "feet")
  39505. },
  39506. {
  39507. name: "Macro",
  39508. height: math.unit(800, "feet")
  39509. },
  39510. {
  39511. name: "Megamacro",
  39512. height: math.unit(8000, "feet")
  39513. },
  39514. {
  39515. name: "City-Crushing",
  39516. height: math.unit(24000, "feet")
  39517. },
  39518. {
  39519. name: "Mountain-Mashing",
  39520. height: math.unit(80000, "feet")
  39521. },
  39522. {
  39523. name: "Nation Nemesis",
  39524. height: math.unit(8e6, "feet")
  39525. },
  39526. {
  39527. name: "Continent Cracker",
  39528. height: math.unit(24e6, "feet")
  39529. },
  39530. {
  39531. name: "Earth-Eclipsing",
  39532. height: math.unit(2.4e8, "feet")
  39533. },
  39534. {
  39535. name: "Gas Giant Gulper",
  39536. height: math.unit(2.4e9, "feet")
  39537. },
  39538. {
  39539. name: "Sol-Swallowing",
  39540. height: math.unit(8e10, "feet")
  39541. },
  39542. {
  39543. name: "Galaxy Gulper",
  39544. height: math.unit(8, "galaxies")
  39545. },
  39546. {
  39547. name: "Cosmos Churner",
  39548. height: math.unit(8, "universes")
  39549. },
  39550. {
  39551. name: "Omnipotent Otter",
  39552. height: math.unit(80, "universes")
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39558. {
  39559. front: {
  39560. height: math.unit(2.6, "meters"),
  39561. weight: math.unit(900, "kg"),
  39562. name: "Front",
  39563. image: {
  39564. source: "./media/characters/neesha/front.svg",
  39565. extra: 1803/1653,
  39566. bottom: 128/1931
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(2.6, "meters"),
  39574. default: true
  39575. },
  39576. {
  39577. name: "Macro",
  39578. height: math.unit(50, "meters")
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(5, "feet"),
  39587. weight: math.unit(185, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/kyera/front.svg",
  39591. extra: 1875/1790,
  39592. bottom: 96/1971
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(5, "feet"),
  39600. default: true
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(7 + 6/12, "feet"),
  39609. weight: math.unit(540, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/yuko/front.svg",
  39613. extra: 1282/1222,
  39614. bottom: 101/1383
  39615. }
  39616. },
  39617. frontClothed: {
  39618. height: math.unit(7 + 6/12, "feet"),
  39619. weight: math.unit(540, "lb"),
  39620. name: "Front (Clothed)",
  39621. image: {
  39622. source: "./media/characters/yuko/front-clothed.svg",
  39623. extra: 1282/1222,
  39624. bottom: 101/1383
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(7 + 6/12, "feet"),
  39632. default: true
  39633. },
  39634. {
  39635. name: "Macro",
  39636. height: math.unit(26 + 9/12, "feet")
  39637. },
  39638. {
  39639. name: "Megamacro",
  39640. height: math.unit(300, "feet")
  39641. },
  39642. {
  39643. name: "Gigamacro",
  39644. height: math.unit(5000, "feet")
  39645. },
  39646. {
  39647. name: "Planetary",
  39648. height: math.unit(10000, "miles")
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(8 + 2/12, "feet"),
  39657. weight: math.unit(600, "lb"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/deam-nitrel/front.svg",
  39661. extra: 1308/1234,
  39662. bottom: 125/1433
  39663. }
  39664. },
  39665. },
  39666. [
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(8 + 2/12, "feet"),
  39670. default: true
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(6.1, "feet"),
  39679. weight: math.unit(180, "lb"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/skyress/front.svg",
  39683. extra: 1045/915,
  39684. bottom: 28/1073
  39685. }
  39686. },
  39687. maw: {
  39688. height: math.unit(1, "feet"),
  39689. name: "Maw",
  39690. image: {
  39691. source: "./media/characters/skyress/maw.svg"
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(6.1, "feet"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Macro",
  39703. height: math.unit(200, "feet")
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(4 + 2/12, "feet"),
  39712. weight: math.unit(40, "kg"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/amethyst-jones/front.svg",
  39716. extra: 1220/1150,
  39717. bottom: 101/1321
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(4 + 2/12, "feet"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(1.7, "m"),
  39734. weight: math.unit(135, "lb"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/jade/front.svg",
  39738. extra: 1818/1767,
  39739. bottom: 32/1850
  39740. }
  39741. },
  39742. back: {
  39743. height: math.unit(1.7, "m"),
  39744. weight: math.unit(135, "lb"),
  39745. name: "Back",
  39746. image: {
  39747. source: "./media/characters/jade/back.svg",
  39748. extra: 1869/1809,
  39749. bottom: 35/1904
  39750. }
  39751. },
  39752. hand: {
  39753. height: math.unit(0.24, "m"),
  39754. name: "Hand",
  39755. image: {
  39756. source: "./media/characters/jade/hand.svg"
  39757. }
  39758. },
  39759. foot: {
  39760. height: math.unit(0.263, "m"),
  39761. name: "Foot",
  39762. image: {
  39763. source: "./media/characters/jade/foot.svg"
  39764. }
  39765. },
  39766. dick: {
  39767. height: math.unit(0.47, "m"),
  39768. name: "Dick",
  39769. image: {
  39770. source: "./media/characters/jade/dick.svg"
  39771. }
  39772. },
  39773. },
  39774. [
  39775. {
  39776. name: "Micro",
  39777. height: math.unit(22, "cm")
  39778. },
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(1.7, "m"),
  39782. default: true
  39783. },
  39784. {
  39785. name: "Macro",
  39786. height: math.unit(152, "m")
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(100, "miles"),
  39795. weight: math.unit(20000, "tons"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/cookie/front.svg",
  39799. extra: 1125/1070,
  39800. bottom: 30/1155
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Big",
  39807. height: math.unit(50, "feet")
  39808. },
  39809. {
  39810. name: "Macro",
  39811. height: math.unit(100, "miles"),
  39812. default: true
  39813. },
  39814. {
  39815. name: "Megamacro",
  39816. height: math.unit(90000, "miles")
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(6, "feet"),
  39825. weight: math.unit(145, "lb"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/farzian/front.svg",
  39829. extra: 1902/1693,
  39830. bottom: 108/2010
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Macro",
  39837. height: math.unit(500, "feet"),
  39838. default: true
  39839. },
  39840. ]
  39841. ))
  39842. characterMakers.push(() => makeCharacter(
  39843. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39844. {
  39845. front: {
  39846. height: math.unit(3 + 6/12, "feet"),
  39847. weight: math.unit(50, "lb"),
  39848. name: "Front",
  39849. image: {
  39850. source: "./media/characters/kimberly-tilson/front.svg",
  39851. extra: 1400/1322,
  39852. bottom: 36/1436
  39853. }
  39854. },
  39855. back: {
  39856. height: math.unit(3 + 6/12, "feet"),
  39857. weight: math.unit(50, "lb"),
  39858. name: "Back",
  39859. image: {
  39860. source: "./media/characters/kimberly-tilson/back.svg",
  39861. extra: 1370/1307,
  39862. bottom: 20/1390
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Normal",
  39869. height: math.unit(3 + 6/12, "feet"),
  39870. default: true
  39871. },
  39872. ]
  39873. ))
  39874. characterMakers.push(() => makeCharacter(
  39875. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39876. {
  39877. front: {
  39878. height: math.unit(1148, "feet"),
  39879. weight: math.unit(34057, "lb"),
  39880. name: "Front",
  39881. image: {
  39882. source: "./media/characters/harthos/front.svg",
  39883. extra: 1391/1339,
  39884. bottom: 13/1404
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Macro",
  39891. height: math.unit(1148, "feet"),
  39892. default: true
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(15, "feet"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/hypatia/front.svg",
  39904. extra: 1653/1591,
  39905. bottom: 79/1732
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Normal",
  39912. height: math.unit(15, "feet")
  39913. },
  39914. {
  39915. name: "Small",
  39916. height: math.unit(300, "feet")
  39917. },
  39918. {
  39919. name: "Macro",
  39920. height: math.unit(2500, "feet"),
  39921. default: true
  39922. },
  39923. {
  39924. name: "Mega Macro",
  39925. height: math.unit(1500, "miles")
  39926. },
  39927. {
  39928. name: "Giga Macro",
  39929. height: math.unit(1.5e6, "miles")
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(6, "feet"),
  39938. weight: math.unit(200, "lb"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/wulver/front.svg",
  39942. extra: 1724/1632,
  39943. bottom: 130/1854
  39944. }
  39945. },
  39946. frontNsfw: {
  39947. height: math.unit(6, "feet"),
  39948. weight: math.unit(200, "lb"),
  39949. name: "Front (NSFW)",
  39950. image: {
  39951. source: "./media/characters/wulver/front-nsfw.svg",
  39952. extra: 1724/1632,
  39953. bottom: 130/1854
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Human-Sized",
  39960. height: math.unit(6, "feet")
  39961. },
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(4, "meters"),
  39965. default: true
  39966. },
  39967. {
  39968. name: "Large",
  39969. height: math.unit(6, "m")
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(7, "feet"),
  39978. name: "Front",
  39979. image: {
  39980. source: "./media/characters/maru/front.svg",
  39981. extra: 1595/1570,
  39982. bottom: 0/1595
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(7, "feet"),
  39990. default: true
  39991. },
  39992. {
  39993. name: "Macro",
  39994. height: math.unit(700, "feet")
  39995. },
  39996. {
  39997. name: "Mega Macro",
  39998. height: math.unit(25, "miles")
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40004. {
  40005. front: {
  40006. height: math.unit(6, "feet"),
  40007. weight: math.unit(170, "lb"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/xenon/front.svg",
  40011. extra: 1376/1305,
  40012. bottom: 56/1432
  40013. }
  40014. },
  40015. back: {
  40016. height: math.unit(6, "feet"),
  40017. weight: math.unit(170, "lb"),
  40018. name: "Back",
  40019. image: {
  40020. source: "./media/characters/xenon/back.svg",
  40021. extra: 1328/1259,
  40022. bottom: 95/1423
  40023. }
  40024. },
  40025. maw: {
  40026. height: math.unit(0.52, "feet"),
  40027. name: "Maw",
  40028. image: {
  40029. source: "./media/characters/xenon/maw.svg"
  40030. }
  40031. },
  40032. hand: {
  40033. height: math.unit(0.82, "feet"),
  40034. name: "Hand",
  40035. image: {
  40036. source: "./media/characters/xenon/hand.svg"
  40037. }
  40038. },
  40039. foot: {
  40040. height: math.unit(1.13, "feet"),
  40041. name: "Foot",
  40042. image: {
  40043. source: "./media/characters/xenon/foot.svg"
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Micro",
  40050. height: math.unit(0.8, "inches")
  40051. },
  40052. {
  40053. name: "Normal",
  40054. height: math.unit(6, "feet")
  40055. },
  40056. {
  40057. name: "Macro",
  40058. height: math.unit(50, "feet"),
  40059. default: true
  40060. },
  40061. {
  40062. name: "Macro+",
  40063. height: math.unit(250, "feet")
  40064. },
  40065. {
  40066. name: "Megamacro",
  40067. height: math.unit(1500, "feet")
  40068. },
  40069. ]
  40070. ))
  40071. characterMakers.push(() => makeCharacter(
  40072. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40073. {
  40074. front: {
  40075. height: math.unit(7 + 5/12, "feet"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/zane/front.svg",
  40079. extra: 1260/1203,
  40080. bottom: 94/1354
  40081. }
  40082. },
  40083. back: {
  40084. height: math.unit(5.05, "feet"),
  40085. name: "Back",
  40086. image: {
  40087. source: "./media/characters/zane/back.svg",
  40088. extra: 893/829,
  40089. bottom: 30/923
  40090. }
  40091. },
  40092. werewolf: {
  40093. height: math.unit(11, "feet"),
  40094. name: "Werewolf",
  40095. image: {
  40096. source: "./media/characters/zane/werewolf.svg",
  40097. extra: 1383/1323,
  40098. bottom: 89/1472
  40099. }
  40100. },
  40101. foot: {
  40102. height: math.unit(1.46, "feet"),
  40103. name: "Foot",
  40104. image: {
  40105. source: "./media/characters/zane/foot.svg"
  40106. }
  40107. },
  40108. footFront: {
  40109. height: math.unit(0.784, "feet"),
  40110. name: "Foot (Front)",
  40111. image: {
  40112. source: "./media/characters/zane/foot-front.svg"
  40113. }
  40114. },
  40115. dick: {
  40116. height: math.unit(1.95, "feet"),
  40117. name: "Dick",
  40118. image: {
  40119. source: "./media/characters/zane/dick.svg"
  40120. }
  40121. },
  40122. dickWerewolf: {
  40123. height: math.unit(3.77, "feet"),
  40124. name: "Dick (Werewolf)",
  40125. image: {
  40126. source: "./media/characters/zane/dick.svg"
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Normal",
  40133. height: math.unit(7 + 5/12, "feet"),
  40134. default: true
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40140. {
  40141. front: {
  40142. height: math.unit(6 + 2/12, "feet"),
  40143. weight: math.unit(284, "lb"),
  40144. name: "Front",
  40145. image: {
  40146. source: "./media/characters/benni-desparque/front.svg",
  40147. extra: 1353/1126,
  40148. bottom: 69/1422
  40149. }
  40150. },
  40151. },
  40152. [
  40153. {
  40154. name: "Civilian",
  40155. height: math.unit(6 + 2/12, "feet")
  40156. },
  40157. {
  40158. name: "Normal",
  40159. height: math.unit(98, "feet"),
  40160. default: true
  40161. },
  40162. {
  40163. name: "Kaiju Fighter",
  40164. height: math.unit(268, "feet")
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40170. {
  40171. front: {
  40172. height: math.unit(5, "feet"),
  40173. weight: math.unit(105, "lb"),
  40174. name: "Front",
  40175. image: {
  40176. source: "./media/characters/maxine/front.svg",
  40177. extra: 1386/1250,
  40178. bottom: 71/1457
  40179. }
  40180. },
  40181. },
  40182. [
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(5, "feet"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(11 + 7/12, "feet"),
  40195. weight: math.unit(9576, "lb"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/scaly/front.svg",
  40199. extra: 888/867,
  40200. bottom: 36/924
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(11 + 7/12, "feet"),
  40208. default: true
  40209. },
  40210. ]
  40211. ))
  40212. characterMakers.push(() => makeCharacter(
  40213. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40214. {
  40215. front: {
  40216. height: math.unit(6 + 3/12, "feet"),
  40217. name: "Front",
  40218. image: {
  40219. source: "./media/characters/saelria/front.svg",
  40220. extra: 1243/1138,
  40221. bottom: 46/1289
  40222. }
  40223. },
  40224. },
  40225. [
  40226. {
  40227. name: "Micro",
  40228. height: math.unit(6, "inches"),
  40229. },
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(6 + 3/12, "feet"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Macro",
  40237. height: math.unit(25, "feet")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(80, "meters"),
  40246. weight: math.unit(7000, "tonnes"),
  40247. name: "Front",
  40248. image: {
  40249. source: "./media/characters/tef/front.svg",
  40250. extra: 2036/1991,
  40251. bottom: 54/2090
  40252. }
  40253. },
  40254. back: {
  40255. height: math.unit(80, "meters"),
  40256. weight: math.unit(7000, "tonnes"),
  40257. name: "Back",
  40258. image: {
  40259. source: "./media/characters/tef/back.svg",
  40260. extra: 2036/1991,
  40261. bottom: 54/2090
  40262. }
  40263. },
  40264. },
  40265. [
  40266. {
  40267. name: "Macro",
  40268. height: math.unit(80, "meters"),
  40269. default: true
  40270. },
  40271. ]
  40272. ))
  40273. characterMakers.push(() => makeCharacter(
  40274. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40275. {
  40276. front: {
  40277. height: math.unit(13, "feet"),
  40278. weight: math.unit(6, "tons"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/rover/front.svg",
  40282. extra: 1233/1156,
  40283. bottom: 50/1283
  40284. }
  40285. },
  40286. back: {
  40287. height: math.unit(13, "feet"),
  40288. weight: math.unit(6, "tons"),
  40289. name: "Back",
  40290. image: {
  40291. source: "./media/characters/rover/back.svg",
  40292. extra: 1327/1258,
  40293. bottom: 39/1366
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(13, "feet"),
  40301. default: true
  40302. },
  40303. {
  40304. name: "Macro",
  40305. height: math.unit(1300, "feet")
  40306. },
  40307. {
  40308. name: "Megamacro",
  40309. height: math.unit(1300, "miles")
  40310. },
  40311. {
  40312. name: "Gigamacro",
  40313. height: math.unit(1300000, "miles")
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(6, "feet"),
  40322. weight: math.unit(150, "lb"),
  40323. name: "Front",
  40324. image: {
  40325. source: "./media/characters/ariz/front.svg",
  40326. extra: 1401/1346,
  40327. bottom: 5/1406
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(10, "feet"),
  40335. default: true
  40336. },
  40337. ]
  40338. ))
  40339. characterMakers.push(() => makeCharacter(
  40340. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40341. {
  40342. front: {
  40343. height: math.unit(6, "feet"),
  40344. weight: math.unit(140, "lb"),
  40345. name: "Front",
  40346. image: {
  40347. source: "./media/characters/sigrun/front.svg",
  40348. extra: 1418/1359,
  40349. bottom: 27/1445
  40350. }
  40351. },
  40352. },
  40353. [
  40354. {
  40355. name: "Macro",
  40356. height: math.unit(35, "feet"),
  40357. default: true
  40358. },
  40359. ]
  40360. ))
  40361. characterMakers.push(() => makeCharacter(
  40362. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40363. {
  40364. front: {
  40365. height: math.unit(6, "feet"),
  40366. weight: math.unit(150, "lb"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/numin/front.svg",
  40370. extra: 1433/1388,
  40371. bottom: 12/1445
  40372. }
  40373. },
  40374. },
  40375. [
  40376. {
  40377. name: "Macro",
  40378. height: math.unit(21.5, "km"),
  40379. default: true
  40380. },
  40381. ]
  40382. ))
  40383. characterMakers.push(() => makeCharacter(
  40384. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40385. {
  40386. front: {
  40387. height: math.unit(6, "feet"),
  40388. weight: math.unit(463, "lb"),
  40389. name: "Front",
  40390. image: {
  40391. source: "./media/characters/melwa/front.svg",
  40392. extra: 1307/1248,
  40393. bottom: 93/1400
  40394. }
  40395. },
  40396. },
  40397. [
  40398. {
  40399. name: "Macro",
  40400. height: math.unit(50, "meters"),
  40401. default: true
  40402. },
  40403. ]
  40404. ))
  40405. characterMakers.push(() => makeCharacter(
  40406. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40407. {
  40408. front: {
  40409. height: math.unit(325, "feet"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/zorkaiju/front.svg",
  40413. extra: 1955/1814,
  40414. bottom: 40/1995
  40415. }
  40416. },
  40417. frontExtended: {
  40418. height: math.unit(325, "feet"),
  40419. name: "Front (Extended)",
  40420. image: {
  40421. source: "./media/characters/zorkaiju/front-extended.svg",
  40422. extra: 1955/1814,
  40423. bottom: 40/1995
  40424. }
  40425. },
  40426. side: {
  40427. height: math.unit(325, "feet"),
  40428. name: "Side",
  40429. image: {
  40430. source: "./media/characters/zorkaiju/side.svg",
  40431. extra: 1495/1396,
  40432. bottom: 17/1512
  40433. }
  40434. },
  40435. sideExtended: {
  40436. height: math.unit(325, "feet"),
  40437. name: "Side (Extended)",
  40438. image: {
  40439. source: "./media/characters/zorkaiju/side-extended.svg",
  40440. extra: 1495/1396,
  40441. bottom: 17/1512
  40442. }
  40443. },
  40444. back: {
  40445. height: math.unit(325, "feet"),
  40446. name: "Back",
  40447. image: {
  40448. source: "./media/characters/zorkaiju/back.svg",
  40449. extra: 1959/1821,
  40450. bottom: 31/1990
  40451. }
  40452. },
  40453. backExtended: {
  40454. height: math.unit(325, "feet"),
  40455. name: "Back (Extended)",
  40456. image: {
  40457. source: "./media/characters/zorkaiju/back-extended.svg",
  40458. extra: 1959/1821,
  40459. bottom: 31/1990
  40460. }
  40461. },
  40462. hand: {
  40463. height: math.unit(58.4, "feet"),
  40464. name: "Hand",
  40465. image: {
  40466. source: "./media/characters/zorkaiju/hand.svg"
  40467. }
  40468. },
  40469. handExtended: {
  40470. height: math.unit(61.4, "feet"),
  40471. name: "Hand (Extended)",
  40472. image: {
  40473. source: "./media/characters/zorkaiju/hand-extended.svg"
  40474. }
  40475. },
  40476. foot: {
  40477. height: math.unit(95, "feet"),
  40478. name: "Foot",
  40479. image: {
  40480. source: "./media/characters/zorkaiju/foot.svg"
  40481. }
  40482. },
  40483. leftArm: {
  40484. height: math.unit(59, "feet"),
  40485. name: "Left Arm",
  40486. image: {
  40487. source: "./media/characters/zorkaiju/left-arm.svg"
  40488. }
  40489. },
  40490. rightArm: {
  40491. height: math.unit(59, "feet"),
  40492. name: "Right Arm",
  40493. image: {
  40494. source: "./media/characters/zorkaiju/right-arm.svg"
  40495. }
  40496. },
  40497. tail: {
  40498. height: math.unit(104, "feet"),
  40499. name: "Tail",
  40500. image: {
  40501. source: "./media/characters/zorkaiju/tail.svg"
  40502. }
  40503. },
  40504. tailExtended: {
  40505. height: math.unit(104, "feet"),
  40506. name: "Tail (Extended)",
  40507. image: {
  40508. source: "./media/characters/zorkaiju/tail-extended.svg"
  40509. }
  40510. },
  40511. tailBottom: {
  40512. height: math.unit(104, "feet"),
  40513. name: "Tail Bottom",
  40514. image: {
  40515. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40516. }
  40517. },
  40518. crystal: {
  40519. height: math.unit(27.54, "feet"),
  40520. name: "Crystal",
  40521. image: {
  40522. source: "./media/characters/zorkaiju/crystal.svg"
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Kaiju",
  40529. height: math.unit(325, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(6 + 1/12, "feet"),
  40539. weight: math.unit(115, "lb"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/bailey-belfry/front.svg",
  40543. extra: 1240/1121,
  40544. bottom: 101/1341
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Normal",
  40551. height: math.unit(6 + 1/12, "feet"),
  40552. default: true
  40553. },
  40554. ]
  40555. ))
  40556. characterMakers.push(() => makeCharacter(
  40557. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40558. {
  40559. side: {
  40560. height: math.unit(4, "meters"),
  40561. weight: math.unit(250, "kg"),
  40562. name: "Side",
  40563. image: {
  40564. source: "./media/characters/blacky/side.svg",
  40565. extra: 1027/919,
  40566. bottom: 43/1070
  40567. }
  40568. },
  40569. maw: {
  40570. height: math.unit(1, "meters"),
  40571. name: "Maw",
  40572. image: {
  40573. source: "./media/characters/blacky/maw.svg"
  40574. }
  40575. },
  40576. paw: {
  40577. height: math.unit(1, "meters"),
  40578. name: "Paw",
  40579. image: {
  40580. source: "./media/characters/blacky/paw.svg"
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Normal",
  40587. height: math.unit(4, "meters"),
  40588. default: true
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(170, "cm"),
  40597. weight: math.unit(66, "kg"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/thux-ei/front.svg",
  40601. extra: 1109/1011,
  40602. bottom: 8/1117
  40603. }
  40604. },
  40605. },
  40606. [
  40607. {
  40608. name: "Normal",
  40609. height: math.unit(170, "cm"),
  40610. default: true
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40616. {
  40617. front: {
  40618. height: math.unit(5, "feet"),
  40619. weight: math.unit(120, "lb"),
  40620. name: "Front",
  40621. image: {
  40622. source: "./media/characters/roxanne-voltaire/front.svg",
  40623. extra: 1901/1779,
  40624. bottom: 53/1954
  40625. }
  40626. },
  40627. },
  40628. [
  40629. {
  40630. name: "Normal",
  40631. height: math.unit(5, "feet"),
  40632. default: true
  40633. },
  40634. {
  40635. name: "Giant",
  40636. height: math.unit(50, "feet")
  40637. },
  40638. {
  40639. name: "Titan",
  40640. height: math.unit(500, "feet")
  40641. },
  40642. {
  40643. name: "Macro",
  40644. height: math.unit(5000, "feet")
  40645. },
  40646. {
  40647. name: "Megamacro",
  40648. height: math.unit(50000, "feet")
  40649. },
  40650. {
  40651. name: "Gigamacro",
  40652. height: math.unit(500000, "feet")
  40653. },
  40654. {
  40655. name: "Teramacro",
  40656. height: math.unit(5e6, "feet")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(6 + 2/12, "feet"),
  40665. name: "Front",
  40666. image: {
  40667. source: "./media/characters/squeaks/front.svg",
  40668. extra: 1823/1768,
  40669. bottom: 138/1961
  40670. }
  40671. },
  40672. },
  40673. [
  40674. {
  40675. name: "Micro",
  40676. height: math.unit(0.5, "inches")
  40677. },
  40678. {
  40679. name: "Normal",
  40680. height: math.unit(6 + 2/12, "feet"),
  40681. default: true
  40682. },
  40683. {
  40684. name: "Macro",
  40685. height: math.unit(600, "feet")
  40686. },
  40687. ]
  40688. ))
  40689. characterMakers.push(() => makeCharacter(
  40690. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40691. {
  40692. front: {
  40693. height: math.unit(1.72, "meters"),
  40694. name: "Front",
  40695. image: {
  40696. source: "./media/characters/archinger/front.svg",
  40697. extra: 1861/1675,
  40698. bottom: 125/1986
  40699. }
  40700. },
  40701. back: {
  40702. height: math.unit(1.72, "meters"),
  40703. name: "Back",
  40704. image: {
  40705. source: "./media/characters/archinger/back.svg",
  40706. extra: 1844/1701,
  40707. bottom: 104/1948
  40708. }
  40709. },
  40710. cock: {
  40711. height: math.unit(0.59, "feet"),
  40712. name: "Cock",
  40713. image: {
  40714. source: "./media/characters/archinger/cock.svg"
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(1.72, "meters"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Macro",
  40726. height: math.unit(84, "meters")
  40727. },
  40728. {
  40729. name: "Macro+",
  40730. height: math.unit(112, "meters")
  40731. },
  40732. {
  40733. name: "Macro++",
  40734. height: math.unit(960, "meters")
  40735. },
  40736. {
  40737. name: "Macro+++",
  40738. height: math.unit(4, "km")
  40739. },
  40740. {
  40741. name: "Macro++++",
  40742. height: math.unit(48, "km")
  40743. },
  40744. {
  40745. name: "Macro+++++",
  40746. height: math.unit(4500, "km")
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(5 + 5/12, "feet"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/alsnapz/front.svg",
  40758. extra: 1157/1065,
  40759. bottom: 42/1199
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Normal",
  40766. height: math.unit(5 + 5/12, "feet"),
  40767. default: true
  40768. },
  40769. ]
  40770. ))
  40771. characterMakers.push(() => makeCharacter(
  40772. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40773. {
  40774. side: {
  40775. height: math.unit(3.2, "earths"),
  40776. name: "Side",
  40777. image: {
  40778. source: "./media/characters/mag/side.svg",
  40779. extra: 1331/1008,
  40780. bottom: 52/1383
  40781. }
  40782. },
  40783. wing: {
  40784. height: math.unit(1.94, "earths"),
  40785. name: "Wing",
  40786. image: {
  40787. source: "./media/characters/mag/wing.svg"
  40788. }
  40789. },
  40790. dick: {
  40791. height: math.unit(1.8, "earths"),
  40792. name: "Dick",
  40793. image: {
  40794. source: "./media/characters/mag/dick.svg"
  40795. }
  40796. },
  40797. ass: {
  40798. height: math.unit(1.33, "earths"),
  40799. name: "Ass",
  40800. image: {
  40801. source: "./media/characters/mag/ass.svg"
  40802. }
  40803. },
  40804. head: {
  40805. height: math.unit(1.1, "earths"),
  40806. name: "Head",
  40807. image: {
  40808. source: "./media/characters/mag/head.svg"
  40809. }
  40810. },
  40811. maw: {
  40812. height: math.unit(1.62, "earths"),
  40813. name: "Maw",
  40814. image: {
  40815. source: "./media/characters/mag/maw.svg"
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Small",
  40822. height: math.unit(162, "feet")
  40823. },
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(3.2, "earths"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(512, "feet"),
  40836. weight: math.unit(63509, "tonnes"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/vorrel-harroc/front.svg",
  40840. extra: 1075/1063,
  40841. bottom: 62/1137
  40842. }
  40843. },
  40844. },
  40845. [
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(10, "feet")
  40849. },
  40850. {
  40851. name: "Macro",
  40852. height: math.unit(512, "feet"),
  40853. default: true
  40854. },
  40855. {
  40856. name: "Megamacro",
  40857. height: math.unit(256, "miles")
  40858. },
  40859. {
  40860. name: "Gigamacro",
  40861. height: math.unit(4096, "miles")
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40867. {
  40868. side: {
  40869. height: math.unit(50, "feet"),
  40870. name: "Side",
  40871. image: {
  40872. source: "./media/characters/froimar/side.svg",
  40873. extra: 855/638,
  40874. bottom: 99/954
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Macro",
  40881. height: math.unit(50, "feet"),
  40882. default: true
  40883. },
  40884. ]
  40885. ))
  40886. characterMakers.push(() => makeCharacter(
  40887. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40888. {
  40889. front: {
  40890. height: math.unit(210, "miles"),
  40891. name: "Front",
  40892. image: {
  40893. source: "./media/characters/timothy/front.svg",
  40894. extra: 1007/943,
  40895. bottom: 62/1069
  40896. }
  40897. },
  40898. frontSkirt: {
  40899. height: math.unit(210, "miles"),
  40900. name: "Front (Skirt)",
  40901. image: {
  40902. source: "./media/characters/timothy/front-skirt.svg",
  40903. extra: 1007/943,
  40904. bottom: 62/1069
  40905. }
  40906. },
  40907. frontCoat: {
  40908. height: math.unit(210, "miles"),
  40909. name: "Front (Coat)",
  40910. image: {
  40911. source: "./media/characters/timothy/front-coat.svg",
  40912. extra: 1007/943,
  40913. bottom: 62/1069
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Macro",
  40920. height: math.unit(210, "miles"),
  40921. default: true
  40922. },
  40923. {
  40924. name: "Megamacro",
  40925. height: math.unit(210000, "miles")
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(188, "feet"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/pyotr/front.svg",
  40937. extra: 1912/1826,
  40938. bottom: 18/1930
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Macro",
  40945. height: math.unit(188, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Megamacro",
  40950. height: math.unit(8, "miles")
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40956. {
  40957. side: {
  40958. height: math.unit(10, "feet"),
  40959. weight: math.unit(4500, "lb"),
  40960. name: "Side",
  40961. image: {
  40962. source: "./media/characters/ackart/side.svg",
  40963. extra: 1776/1668,
  40964. bottom: 116/1892
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(10, "feet"),
  40972. default: true
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40978. {
  40979. side: {
  40980. height: math.unit(21, "feet"),
  40981. name: "Side",
  40982. image: {
  40983. source: "./media/characters/nolow/side.svg",
  40984. extra: 1484/1434,
  40985. bottom: 85/1569
  40986. }
  40987. },
  40988. sideErect: {
  40989. height: math.unit(21, "feet"),
  40990. name: "Side-erect",
  40991. image: {
  40992. source: "./media/characters/nolow/side-erect.svg",
  40993. extra: 1484/1434,
  40994. bottom: 85/1569
  40995. }
  40996. },
  40997. },
  40998. [
  40999. {
  41000. name: "Regular",
  41001. height: math.unit(12, "feet")
  41002. },
  41003. {
  41004. name: "Big Chee",
  41005. height: math.unit(21, "feet"),
  41006. default: true
  41007. },
  41008. ]
  41009. ))
  41010. characterMakers.push(() => makeCharacter(
  41011. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41012. {
  41013. front: {
  41014. height: math.unit(7, "feet"),
  41015. weight: math.unit(250, "lb"),
  41016. name: "Front",
  41017. image: {
  41018. source: "./media/characters/nines/front.svg",
  41019. extra: 1741/1607,
  41020. bottom: 41/1782
  41021. }
  41022. },
  41023. side: {
  41024. height: math.unit(7, "feet"),
  41025. weight: math.unit(250, "lb"),
  41026. name: "Side",
  41027. image: {
  41028. source: "./media/characters/nines/side.svg",
  41029. extra: 1854/1735,
  41030. bottom: 93/1947
  41031. }
  41032. },
  41033. back: {
  41034. height: math.unit(7, "feet"),
  41035. weight: math.unit(250, "lb"),
  41036. name: "Back",
  41037. image: {
  41038. source: "./media/characters/nines/back.svg",
  41039. extra: 1748/1615,
  41040. bottom: 20/1768
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Megamacro",
  41047. height: math.unit(99, "km"),
  41048. default: true
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(5 + 10/12, "feet"),
  41057. weight: math.unit(210, "lb"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/zenith/front.svg",
  41061. extra: 1531/1452,
  41062. bottom: 198/1729
  41063. }
  41064. },
  41065. back: {
  41066. height: math.unit(5 + 10/12, "feet"),
  41067. weight: math.unit(210, "lb"),
  41068. name: "Back",
  41069. image: {
  41070. source: "./media/characters/zenith/back.svg",
  41071. extra: 1571/1487,
  41072. bottom: 75/1646
  41073. }
  41074. },
  41075. },
  41076. [
  41077. {
  41078. name: "Normal",
  41079. height: math.unit(5 + 10/12, "feet"),
  41080. default: true
  41081. }
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41086. {
  41087. front: {
  41088. height: math.unit(4, "feet"),
  41089. weight: math.unit(60, "lb"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/jasper/front.svg",
  41093. extra: 1450/1379,
  41094. bottom: 19/1469
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Normal",
  41101. height: math.unit(4, "feet"),
  41102. default: true
  41103. },
  41104. ]
  41105. ))
  41106. characterMakers.push(() => makeCharacter(
  41107. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41108. {
  41109. front: {
  41110. height: math.unit(6 + 5/12, "feet"),
  41111. weight: math.unit(290, "lb"),
  41112. name: "Front",
  41113. image: {
  41114. source: "./media/characters/tiberius-thyben/front.svg",
  41115. extra: 757/739,
  41116. bottom: 39/796
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Micro",
  41123. height: math.unit(1.5, "inches")
  41124. },
  41125. {
  41126. name: "Normal",
  41127. height: math.unit(6 + 5/12, "feet"),
  41128. default: true
  41129. },
  41130. {
  41131. name: "Macro",
  41132. height: math.unit(300, "feet")
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(5 + 6/12, "feet"),
  41141. weight: math.unit(60, "kg"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/sabre/front.svg",
  41145. extra: 738/671,
  41146. bottom: 27/765
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Teeny",
  41153. height: math.unit(2, "inches")
  41154. },
  41155. {
  41156. name: "Smol",
  41157. height: math.unit(8, "inches")
  41158. },
  41159. {
  41160. name: "Normal",
  41161. height: math.unit(5 + 6/12, "feet"),
  41162. default: true
  41163. },
  41164. {
  41165. name: "Mini-Macro",
  41166. height: math.unit(15, "feet")
  41167. },
  41168. {
  41169. name: "Macro",
  41170. height: math.unit(50, "feet")
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(6 + 4/12, "feet"),
  41179. weight: math.unit(170, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/charlie/front.svg",
  41183. extra: 1348/1228,
  41184. bottom: 15/1363
  41185. }
  41186. },
  41187. },
  41188. [
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(1700, "meters"),
  41192. default: true
  41193. },
  41194. {
  41195. name: "MegaMacro",
  41196. height: math.unit(20400, "meters")
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41202. {
  41203. front: {
  41204. height: math.unit(6 + 3/12, "feet"),
  41205. weight: math.unit(185, "lb"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/susan-grant/front.svg",
  41209. extra: 1351/1327,
  41210. bottom: 26/1377
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Normal",
  41217. height: math.unit(6 + 3/12, "feet"),
  41218. default: true
  41219. },
  41220. {
  41221. name: "Macro",
  41222. height: math.unit(225, "feet")
  41223. },
  41224. {
  41225. name: "Macro+",
  41226. height: math.unit(900, "feet")
  41227. },
  41228. {
  41229. name: "MegaMacro",
  41230. height: math.unit(14400, "feet")
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(5 + 4/12, "feet"),
  41239. weight: math.unit(110, "lb"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/axel-isanov/front.svg",
  41243. extra: 1096/1065,
  41244. bottom: 13/1109
  41245. }
  41246. },
  41247. },
  41248. [
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(5 + 4/12, "feet"),
  41252. default: true
  41253. },
  41254. ]
  41255. ))
  41256. characterMakers.push(() => makeCharacter(
  41257. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41258. {
  41259. front: {
  41260. height: math.unit(9, "feet"),
  41261. weight: math.unit(467, "lb"),
  41262. name: "Front",
  41263. image: {
  41264. source: "./media/characters/necahual/front.svg",
  41265. extra: 920/873,
  41266. bottom: 26/946
  41267. }
  41268. },
  41269. back: {
  41270. height: math.unit(9, "feet"),
  41271. weight: math.unit(467, "lb"),
  41272. name: "Back",
  41273. image: {
  41274. source: "./media/characters/necahual/back.svg",
  41275. extra: 930/884,
  41276. bottom: 16/946
  41277. }
  41278. },
  41279. frontUnderwear: {
  41280. height: math.unit(9, "feet"),
  41281. weight: math.unit(467, "lb"),
  41282. name: "Front (Underwear)",
  41283. image: {
  41284. source: "./media/characters/necahual/front-underwear.svg",
  41285. extra: 920/873,
  41286. bottom: 26/946
  41287. }
  41288. },
  41289. frontDressed: {
  41290. height: math.unit(9, "feet"),
  41291. weight: math.unit(467, "lb"),
  41292. name: "Front (Dressed)",
  41293. image: {
  41294. source: "./media/characters/necahual/front-dressed.svg",
  41295. extra: 920/873,
  41296. bottom: 26/946
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Comprsesed",
  41303. height: math.unit(9, "feet")
  41304. },
  41305. {
  41306. name: "Natural",
  41307. height: math.unit(15, "feet"),
  41308. default: true
  41309. },
  41310. {
  41311. name: "Boosted",
  41312. height: math.unit(50, "feet")
  41313. },
  41314. {
  41315. name: "Boosted+",
  41316. height: math.unit(150, "feet")
  41317. },
  41318. {
  41319. name: "Max",
  41320. height: math.unit(500, "feet")
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(22 + 1/12, "feet"),
  41329. weight: math.unit(3200, "lb"),
  41330. name: "Front",
  41331. image: {
  41332. source: "./media/characters/theo-acacia/front.svg",
  41333. extra: 1796/1741,
  41334. bottom: 83/1879
  41335. }
  41336. },
  41337. frontUnderwear: {
  41338. height: math.unit(22 + 1/12, "feet"),
  41339. weight: math.unit(3200, "lb"),
  41340. name: "Front (Underwear)",
  41341. image: {
  41342. source: "./media/characters/theo-acacia/front-underwear.svg",
  41343. extra: 1796/1741,
  41344. bottom: 83/1879
  41345. }
  41346. },
  41347. frontNude: {
  41348. height: math.unit(22 + 1/12, "feet"),
  41349. weight: math.unit(3200, "lb"),
  41350. name: "Front (Nude)",
  41351. image: {
  41352. source: "./media/characters/theo-acacia/front-nude.svg",
  41353. extra: 1796/1741,
  41354. bottom: 83/1879
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(22 + 1/12, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(20, "feet"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/astra/front.svg",
  41374. extra: 1850/1714,
  41375. bottom: 106/1956
  41376. }
  41377. },
  41378. frontUndressed: {
  41379. height: math.unit(20, "feet"),
  41380. name: "Front (Undressed)",
  41381. image: {
  41382. source: "./media/characters/astra/front-undressed.svg",
  41383. extra: 1926/1749,
  41384. bottom: 0/1926
  41385. }
  41386. },
  41387. hand: {
  41388. height: math.unit(1.53, "feet"),
  41389. name: "Hand",
  41390. image: {
  41391. source: "./media/characters/astra/hand.svg"
  41392. }
  41393. },
  41394. paw: {
  41395. height: math.unit(1.53, "feet"),
  41396. name: "Paw",
  41397. image: {
  41398. source: "./media/characters/astra/paw.svg"
  41399. }
  41400. },
  41401. },
  41402. [
  41403. {
  41404. name: "Smallest",
  41405. height: math.unit(20, "feet")
  41406. },
  41407. {
  41408. name: "Normal",
  41409. height: math.unit(1e9, "miles"),
  41410. default: true
  41411. },
  41412. {
  41413. name: "Larger",
  41414. height: math.unit(5, "multiverses")
  41415. },
  41416. {
  41417. name: "Largest",
  41418. height: math.unit(1e9, "multiverses")
  41419. },
  41420. ]
  41421. ))
  41422. characterMakers.push(() => makeCharacter(
  41423. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41424. {
  41425. front: {
  41426. height: math.unit(8, "feet"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/breanna/front.svg",
  41430. extra: 1912/1632,
  41431. bottom: 33/1945
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Smallest",
  41438. height: math.unit(8, "feet")
  41439. },
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(1, "mile"),
  41443. default: true
  41444. },
  41445. {
  41446. name: "Maximum",
  41447. height: math.unit(1500000000000, "lightyears")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(5 + 11/12, "feet"),
  41456. weight: math.unit(155, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/cai/front.svg",
  41460. extra: 1823/1702,
  41461. bottom: 32/1855
  41462. }
  41463. },
  41464. back: {
  41465. height: math.unit(5 + 11/12, "feet"),
  41466. weight: math.unit(155, "lb"),
  41467. name: "Back",
  41468. image: {
  41469. source: "./media/characters/cai/back.svg",
  41470. extra: 1809/1708,
  41471. bottom: 31/1840
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(5 + 11/12, "feet"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Big",
  41483. height: math.unit(15, "feet")
  41484. },
  41485. {
  41486. name: "Macro",
  41487. height: math.unit(200, "feet")
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(5 + 6/12, "feet"),
  41496. weight: math.unit(160, "lb"),
  41497. name: "Front",
  41498. image: {
  41499. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41500. extra: 1227/1174,
  41501. bottom: 37/1264
  41502. }
  41503. },
  41504. },
  41505. [
  41506. {
  41507. name: "Macro",
  41508. height: math.unit(444, "meters"),
  41509. default: true
  41510. },
  41511. ]
  41512. ))
  41513. characterMakers.push(() => makeCharacter(
  41514. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41515. {
  41516. front: {
  41517. height: math.unit(18 + 7/12, "feet"),
  41518. name: "Front",
  41519. image: {
  41520. source: "./media/characters/rex/front.svg",
  41521. extra: 1941/1807,
  41522. bottom: 66/2007
  41523. }
  41524. },
  41525. back: {
  41526. height: math.unit(18 + 7/12, "feet"),
  41527. name: "Back",
  41528. image: {
  41529. source: "./media/characters/rex/back.svg",
  41530. extra: 1937/1822,
  41531. bottom: 42/1979
  41532. }
  41533. },
  41534. boot: {
  41535. height: math.unit(3.45, "feet"),
  41536. name: "Boot",
  41537. image: {
  41538. source: "./media/characters/rex/boot.svg"
  41539. }
  41540. },
  41541. paw: {
  41542. height: math.unit(4.17, "feet"),
  41543. name: "Paw",
  41544. image: {
  41545. source: "./media/characters/rex/paw.svg"
  41546. }
  41547. },
  41548. head: {
  41549. height: math.unit(6.728, "feet"),
  41550. name: "Head",
  41551. image: {
  41552. source: "./media/characters/rex/head.svg"
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Nano",
  41559. height: math.unit(18 + 7/12, "feet")
  41560. },
  41561. {
  41562. name: "Micro",
  41563. height: math.unit(1.5, "megameters")
  41564. },
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(440, "megameters"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Macro",
  41572. height: math.unit(2.5, "gigameters")
  41573. },
  41574. {
  41575. name: "Gigamacro",
  41576. height: math.unit(2, "galaxies")
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41582. {
  41583. side: {
  41584. height: math.unit(32, "feet"),
  41585. weight: math.unit(250000, "lb"),
  41586. name: "Side",
  41587. image: {
  41588. source: "./media/characters/silverwing/side.svg",
  41589. extra: 1100/1019,
  41590. bottom: 204/1304
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Normal",
  41597. height: math.unit(32, "feet"),
  41598. default: true
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(6 + 6/12, "feet"),
  41607. weight: math.unit(350, "lb"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/tristan-hawthorne/front.svg",
  41611. extra: 1159/1124,
  41612. bottom: 37/1196
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(6 + 6/12, "feet"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(5 + 11/12, "feet"),
  41629. weight: math.unit(190, "lb"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/mizu/front.svg",
  41633. extra: 1988/1788,
  41634. bottom: 14/2002
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(5 + 11/12, "feet"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(1.7, "feet"),
  41651. weight: math.unit(50, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/dechroma/front.svg",
  41655. extra: 1095/859,
  41656. bottom: 64/1159
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(1.7, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41670. {
  41671. side: {
  41672. height: math.unit(30, "feet"),
  41673. name: "Side",
  41674. image: {
  41675. source: "./media/characters/veluren-thanazel/side.svg",
  41676. extra: 1611/633,
  41677. bottom: 118/1729
  41678. }
  41679. },
  41680. front: {
  41681. height: math.unit(30, "feet"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/veluren-thanazel/front.svg",
  41685. extra: 1486/636,
  41686. bottom: 238/1724
  41687. }
  41688. },
  41689. head: {
  41690. height: math.unit(21.4, "feet"),
  41691. name: "Head",
  41692. image: {
  41693. source: "./media/characters/veluren-thanazel/head.svg"
  41694. }
  41695. },
  41696. genitals: {
  41697. height: math.unit(19.4, "feet"),
  41698. name: "Genitals",
  41699. image: {
  41700. source: "./media/characters/veluren-thanazel/genitals.svg"
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Social",
  41707. height: math.unit(6, "feet")
  41708. },
  41709. {
  41710. name: "Play",
  41711. height: math.unit(12, "feet")
  41712. },
  41713. {
  41714. name: "True",
  41715. height: math.unit(30, "feet"),
  41716. default: true
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41722. {
  41723. front: {
  41724. height: math.unit(7 + 6/12, "feet"),
  41725. weight: math.unit(500, "kg"),
  41726. name: "Front",
  41727. image: {
  41728. source: "./media/characters/arcturas/front.svg",
  41729. extra: 1700/1500,
  41730. bottom: 145/1845
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Normal",
  41737. height: math.unit(7 + 6/12, "feet"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41744. {
  41745. side: {
  41746. height: math.unit(6, "feet"),
  41747. weight: math.unit(2, "tons"),
  41748. name: "Side",
  41749. image: {
  41750. source: "./media/characters/vitaen/side.svg",
  41751. extra: 1157/617,
  41752. bottom: 122/1279
  41753. }
  41754. },
  41755. },
  41756. [
  41757. {
  41758. name: "Normal",
  41759. height: math.unit(6, "feet"),
  41760. default: true
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(19, "feet"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/fia-dreamweaver/front.svg",
  41772. extra: 1630/1504,
  41773. bottom: 25/1655
  41774. }
  41775. },
  41776. },
  41777. [
  41778. {
  41779. name: "Normal",
  41780. height: math.unit(19, "feet"),
  41781. default: true
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41787. {
  41788. front: {
  41789. height: math.unit(5 + 4/12, "feet"),
  41790. name: "Front",
  41791. image: {
  41792. source: "./media/characters/artan/front.svg",
  41793. extra: 1618/1535,
  41794. bottom: 46/1664
  41795. }
  41796. },
  41797. back: {
  41798. height: math.unit(5 + 4/12, "feet"),
  41799. name: "Back",
  41800. image: {
  41801. source: "./media/characters/artan/back.svg",
  41802. extra: 1618/1543,
  41803. bottom: 31/1649
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(5 + 4/12, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41817. {
  41818. side: {
  41819. height: math.unit(182, "cm"),
  41820. weight: math.unit(1000, "lb"),
  41821. name: "Side",
  41822. image: {
  41823. source: "./media/characters/silver-dragon/side.svg",
  41824. extra: 710/287,
  41825. bottom: 88/798
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Normal",
  41832. height: math.unit(182, "cm"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41839. {
  41840. side: {
  41841. height: math.unit(6 + 6/12, "feet"),
  41842. weight: math.unit(1.5, "tons"),
  41843. name: "Side",
  41844. image: {
  41845. source: "./media/characters/zephyr/side.svg",
  41846. extra: 1433/586,
  41847. bottom: 109/1542
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(6 + 6/12, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41861. {
  41862. side: {
  41863. height: math.unit(1, "feet"),
  41864. name: "Side",
  41865. image: {
  41866. source: "./media/characters/vixye/side.svg",
  41867. extra: 632/541,
  41868. bottom: 0/632
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Normal",
  41875. height: math.unit(1, "feet"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "True",
  41880. height: math.unit(1e15, "multiverses")
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(8 + 2/12, "feet"),
  41889. weight: math.unit(650, "lb"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41893. extra: 1174/1137,
  41894. bottom: 82/1256
  41895. }
  41896. },
  41897. back: {
  41898. height: math.unit(8 + 2/12, "feet"),
  41899. weight: math.unit(650, "lb"),
  41900. name: "Back",
  41901. image: {
  41902. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41903. extra: 1204/1157,
  41904. bottom: 46/1250
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Wildform",
  41911. height: math.unit(8 + 2/12, "feet"),
  41912. default: true
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(18, "feet"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/cyphin/front.svg",
  41924. extra: 970/886,
  41925. bottom: 42/1012
  41926. }
  41927. },
  41928. back: {
  41929. height: math.unit(18, "feet"),
  41930. name: "Back",
  41931. image: {
  41932. source: "./media/characters/cyphin/back.svg",
  41933. extra: 1009/894,
  41934. bottom: 24/1033
  41935. }
  41936. },
  41937. head: {
  41938. height: math.unit(5.05, "feet"),
  41939. name: "Head",
  41940. image: {
  41941. source: "./media/characters/cyphin/head.svg"
  41942. }
  41943. },
  41944. tailbud: {
  41945. height: math.unit(5, "feet"),
  41946. name: "Tailbud",
  41947. image: {
  41948. source: "./media/characters/cyphin/tailbud.svg"
  41949. }
  41950. },
  41951. },
  41952. [
  41953. ]
  41954. ))
  41955. characterMakers.push(() => makeCharacter(
  41956. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41957. {
  41958. side: {
  41959. height: math.unit(10, "feet"),
  41960. weight: math.unit(6, "tons"),
  41961. name: "Side",
  41962. image: {
  41963. source: "./media/characters/raijin/side.svg",
  41964. extra: 1529/613,
  41965. bottom: 337/1866
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(10, "feet"),
  41973. default: true
  41974. },
  41975. ]
  41976. ))
  41977. characterMakers.push(() => makeCharacter(
  41978. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41979. {
  41980. side: {
  41981. height: math.unit(9, "feet"),
  41982. name: "Side",
  41983. image: {
  41984. source: "./media/characters/nilghais/side.svg",
  41985. extra: 1047/744,
  41986. bottom: 91/1138
  41987. }
  41988. },
  41989. head: {
  41990. height: math.unit(3.14, "feet"),
  41991. name: "Head",
  41992. image: {
  41993. source: "./media/characters/nilghais/head.svg"
  41994. }
  41995. },
  41996. mouth: {
  41997. height: math.unit(4.6, "feet"),
  41998. name: "Mouth",
  41999. image: {
  42000. source: "./media/characters/nilghais/mouth.svg"
  42001. }
  42002. },
  42003. wings: {
  42004. height: math.unit(24, "feet"),
  42005. name: "Wings",
  42006. image: {
  42007. source: "./media/characters/nilghais/wings.svg"
  42008. }
  42009. },
  42010. ass: {
  42011. height: math.unit(6.12, "feet"),
  42012. name: "Ass",
  42013. image: {
  42014. source: "./media/characters/nilghais/ass.svg"
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(9, "feet"),
  42022. default: true
  42023. },
  42024. ]
  42025. ))
  42026. characterMakers.push(() => makeCharacter(
  42027. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42028. {
  42029. regular: {
  42030. height: math.unit(16 + 2/12, "feet"),
  42031. weight: math.unit(2300, "lb"),
  42032. name: "Regular",
  42033. image: {
  42034. source: "./media/characters/zolgar/regular.svg",
  42035. extra: 1246/1004,
  42036. bottom: 124/1370
  42037. }
  42038. },
  42039. boxers: {
  42040. height: math.unit(16 + 2/12, "feet"),
  42041. weight: math.unit(2300, "lb"),
  42042. name: "Boxers",
  42043. image: {
  42044. source: "./media/characters/zolgar/boxers.svg",
  42045. extra: 1246/1004,
  42046. bottom: 124/1370
  42047. }
  42048. },
  42049. armored: {
  42050. height: math.unit(16 + 2/12, "feet"),
  42051. weight: math.unit(2300, "lb"),
  42052. name: "Armored",
  42053. image: {
  42054. source: "./media/characters/zolgar/armored.svg",
  42055. extra: 1246/1004,
  42056. bottom: 124/1370
  42057. }
  42058. },
  42059. goth: {
  42060. height: math.unit(16 + 2/12, "feet"),
  42061. weight: math.unit(2300, "lb"),
  42062. name: "Goth",
  42063. image: {
  42064. source: "./media/characters/zolgar/goth.svg",
  42065. extra: 1246/1004,
  42066. bottom: 124/1370
  42067. }
  42068. },
  42069. },
  42070. [
  42071. {
  42072. name: "Shrunken Down",
  42073. height: math.unit(9 + 2/12, "feet")
  42074. },
  42075. {
  42076. name: "Normal",
  42077. height: math.unit(16 + 2/12, "feet"),
  42078. default: true
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(6, "feet"),
  42087. weight: math.unit(168, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/luca/front.svg",
  42091. extra: 841/667,
  42092. bottom: 102/943
  42093. }
  42094. },
  42095. },
  42096. [
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(6, "feet"),
  42100. default: true
  42101. },
  42102. ]
  42103. ))
  42104. characterMakers.push(() => makeCharacter(
  42105. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42106. {
  42107. side: {
  42108. height: math.unit(7 + 3/12, "feet"),
  42109. weight: math.unit(312, "lb"),
  42110. name: "Side",
  42111. image: {
  42112. source: "./media/characters/zezo/side.svg",
  42113. extra: 1192/1067,
  42114. bottom: 63/1255
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Normal",
  42121. height: math.unit(7 + 3/12, "feet"),
  42122. default: true
  42123. },
  42124. ]
  42125. ))
  42126. characterMakers.push(() => makeCharacter(
  42127. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42128. {
  42129. front: {
  42130. height: math.unit(5 + 5/12, "feet"),
  42131. weight: math.unit(170, "lb"),
  42132. name: "Front",
  42133. image: {
  42134. source: "./media/characters/mayso/front.svg",
  42135. extra: 1215/1108,
  42136. bottom: 16/1231
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Normal",
  42143. height: math.unit(5 + 5/12, "feet"),
  42144. default: true
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(4 + 3/12, "feet"),
  42153. weight: math.unit(80, "lb"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/hess/front.svg",
  42157. extra: 1200/1123,
  42158. bottom: 16/1216
  42159. }
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Normal",
  42165. height: math.unit(4 + 3/12, "feet"),
  42166. default: true
  42167. },
  42168. ]
  42169. ))
  42170. characterMakers.push(() => makeCharacter(
  42171. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42172. {
  42173. front: {
  42174. height: math.unit(1.9, "meters"),
  42175. name: "Front",
  42176. image: {
  42177. source: "./media/characters/ashgar/front.svg",
  42178. extra: 1177/1146,
  42179. bottom: 99/1276
  42180. }
  42181. },
  42182. back: {
  42183. height: math.unit(1.9, "meters"),
  42184. name: "Back",
  42185. image: {
  42186. source: "./media/characters/ashgar/back.svg",
  42187. extra: 1201/1183,
  42188. bottom: 53/1254
  42189. }
  42190. },
  42191. feral: {
  42192. height: math.unit(1.4, "meters"),
  42193. name: "Feral",
  42194. image: {
  42195. source: "./media/characters/ashgar/feral.svg",
  42196. extra: 370/345,
  42197. bottom: 45/415
  42198. }
  42199. },
  42200. },
  42201. [
  42202. {
  42203. name: "Normal",
  42204. height: math.unit(1.9, "meters"),
  42205. default: true
  42206. },
  42207. ]
  42208. ))
  42209. characterMakers.push(() => makeCharacter(
  42210. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42211. {
  42212. regular: {
  42213. height: math.unit(6, "feet"),
  42214. weight: math.unit(220, "lb"),
  42215. name: "Regular",
  42216. image: {
  42217. source: "./media/characters/phillip/regular.svg",
  42218. extra: 1373/1277,
  42219. bottom: 75/1448
  42220. }
  42221. },
  42222. dressed: {
  42223. height: math.unit(6, "feet"),
  42224. weight: math.unit(220, "lb"),
  42225. name: "Dressed",
  42226. image: {
  42227. source: "./media/characters/phillip/dressed.svg",
  42228. extra: 1373/1277,
  42229. bottom: 75/1448
  42230. }
  42231. },
  42232. paw: {
  42233. height: math.unit(1.44, "feet"),
  42234. name: "Paw",
  42235. image: {
  42236. source: "./media/characters/phillip/paw.svg"
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Normal",
  42243. height: math.unit(6, "feet"),
  42244. default: true
  42245. },
  42246. ]
  42247. ))
  42248. characterMakers.push(() => makeCharacter(
  42249. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42250. {
  42251. side: {
  42252. height: math.unit(42, "feet"),
  42253. name: "Side",
  42254. image: {
  42255. source: "./media/characters/uvula/side.svg",
  42256. extra: 683/586,
  42257. bottom: 60/743
  42258. }
  42259. },
  42260. front: {
  42261. height: math.unit(42, "feet"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/uvula/front.svg",
  42265. extra: 705/613,
  42266. bottom: 54/759
  42267. }
  42268. },
  42269. maw: {
  42270. height: math.unit(23.5, "feet"),
  42271. name: "Maw",
  42272. image: {
  42273. source: "./media/characters/uvula/maw.svg"
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Original Size",
  42280. height: math.unit(14, "inches")
  42281. },
  42282. {
  42283. name: "Human Size",
  42284. height: math.unit(6, "feet")
  42285. },
  42286. {
  42287. name: "Big",
  42288. height: math.unit(42, "feet"),
  42289. default: true
  42290. },
  42291. {
  42292. name: "Bigger",
  42293. height: math.unit(100, "feet")
  42294. },
  42295. ]
  42296. ))
  42297. characterMakers.push(() => makeCharacter(
  42298. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42299. {
  42300. front: {
  42301. height: math.unit(5 + 11/12, "feet"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/lannah/front.svg",
  42305. extra: 1208/1113,
  42306. bottom: 97/1305
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Normal",
  42313. height: math.unit(5 + 11/12, "feet"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42320. {
  42321. front: {
  42322. height: math.unit(6 + 3/12, "feet"),
  42323. weight: math.unit(3.5, "tons"),
  42324. name: "Front",
  42325. image: {
  42326. source: "./media/characters/emberflame/front.svg",
  42327. extra: 1198/672,
  42328. bottom: 82/1280
  42329. }
  42330. },
  42331. side: {
  42332. height: math.unit(6 + 3/12, "feet"),
  42333. weight: math.unit(3.5, "tons"),
  42334. name: "Side",
  42335. image: {
  42336. source: "./media/characters/emberflame/side.svg",
  42337. extra: 938/527,
  42338. bottom: 56/994
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Normal",
  42345. height: math.unit(6 + 3/12, "feet"),
  42346. default: true
  42347. },
  42348. ]
  42349. ))
  42350. characterMakers.push(() => makeCharacter(
  42351. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42352. {
  42353. side: {
  42354. height: math.unit(17.5, "feet"),
  42355. weight: math.unit(35, "tons"),
  42356. name: "Side",
  42357. image: {
  42358. source: "./media/characters/sophie-ambrose/side.svg",
  42359. extra: 1573/1242,
  42360. bottom: 71/1644
  42361. }
  42362. },
  42363. maw: {
  42364. height: math.unit(7.4, "feet"),
  42365. name: "Maw",
  42366. image: {
  42367. source: "./media/characters/sophie-ambrose/maw.svg"
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(17.5, "feet"),
  42375. default: true
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42381. {
  42382. front: {
  42383. height: math.unit(280, "feet"),
  42384. weight: math.unit(550, "tons"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/king-mugi/front.svg",
  42388. extra: 1102/947,
  42389. bottom: 104/1206
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "King Mugi",
  42396. height: math.unit(280, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(64, "meters"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/nova-fox/front.svg",
  42409. extra: 1310/1246,
  42410. bottom: 65/1375
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Macro",
  42417. height: math.unit(64, "meters"),
  42418. default: true
  42419. },
  42420. ]
  42421. ))
  42422. characterMakers.push(() => makeCharacter(
  42423. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42424. {
  42425. front: {
  42426. height: math.unit(6 + 3/12, "feet"),
  42427. weight: math.unit(170, "lb"),
  42428. name: "Front",
  42429. image: {
  42430. source: "./media/characters/sam-bat/front.svg",
  42431. extra: 1601/1411,
  42432. bottom: 125/1726
  42433. }
  42434. },
  42435. back: {
  42436. height: math.unit(6 + 3/12, "feet"),
  42437. weight: math.unit(170, "lb"),
  42438. name: "Back",
  42439. image: {
  42440. source: "./media/characters/sam-bat/back.svg",
  42441. extra: 1577/1405,
  42442. bottom: 58/1635
  42443. }
  42444. },
  42445. },
  42446. [
  42447. {
  42448. name: "Normal",
  42449. height: math.unit(6 + 3/12, "feet"),
  42450. default: true
  42451. },
  42452. ]
  42453. ))
  42454. characterMakers.push(() => makeCharacter(
  42455. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42456. {
  42457. front: {
  42458. height: math.unit(59, "feet"),
  42459. weight: math.unit(40000, "lb"),
  42460. name: "Front",
  42461. image: {
  42462. source: "./media/characters/inari/front.svg",
  42463. extra: 1884/1350,
  42464. bottom: 95/1979
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Gigantamax",
  42471. height: math.unit(59, "feet"),
  42472. default: true
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(5 + 8/12, "feet"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/elizabeth/front.svg",
  42484. extra: 1395/1298,
  42485. bottom: 54/1449
  42486. }
  42487. },
  42488. mouth: {
  42489. height: math.unit(1.97, "feet"),
  42490. name: "Mouth",
  42491. image: {
  42492. source: "./media/characters/elizabeth/mouth.svg"
  42493. }
  42494. },
  42495. foot: {
  42496. height: math.unit(1.17, "feet"),
  42497. name: "Foot",
  42498. image: {
  42499. source: "./media/characters/elizabeth/foot.svg"
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(5 + 8/12, "feet"),
  42507. default: true
  42508. },
  42509. {
  42510. name: "Minimacro",
  42511. height: math.unit(18, "feet")
  42512. },
  42513. {
  42514. name: "Macro",
  42515. height: math.unit(180, "feet")
  42516. },
  42517. ]
  42518. ))
  42519. characterMakers.push(() => makeCharacter(
  42520. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42521. {
  42522. front: {
  42523. height: math.unit(5 + 2/12, "feet"),
  42524. name: "Front",
  42525. image: {
  42526. source: "./media/characters/october-gossamer/front.svg",
  42527. extra: 505/454,
  42528. bottom: 7/512
  42529. }
  42530. },
  42531. back: {
  42532. height: math.unit(5 + 2/12, "feet"),
  42533. name: "Back",
  42534. image: {
  42535. source: "./media/characters/october-gossamer/back.svg",
  42536. extra: 501/454,
  42537. bottom: 11/512
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Normal",
  42544. height: math.unit(5 + 2/12, "feet"),
  42545. default: true
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42551. {
  42552. front: {
  42553. height: math.unit(5, "feet"),
  42554. name: "Front",
  42555. image: {
  42556. source: "./media/characters/epiglottis/front.svg",
  42557. extra: 923/849,
  42558. bottom: 17/940
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Original Size",
  42565. height: math.unit(10, "inches")
  42566. },
  42567. {
  42568. name: "Human Size",
  42569. height: math.unit(5, "feet"),
  42570. default: true
  42571. },
  42572. {
  42573. name: "Big",
  42574. height: math.unit(25, "feet")
  42575. },
  42576. {
  42577. name: "Bigger",
  42578. height: math.unit(50, "feet")
  42579. },
  42580. {
  42581. name: "oh lawd",
  42582. height: math.unit(75, "feet")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(2 + 4/12, "feet"),
  42591. weight: math.unit(60, "lb"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/lerm/front.svg",
  42595. extra: 796/790,
  42596. bottom: 79/875
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(2 + 4/12, "feet"),
  42604. default: true
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(5.5, "feet"),
  42613. weight: math.unit(130, "lb"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/xena-nebadon/front.svg",
  42617. extra: 1828/1730,
  42618. bottom: 79/1907
  42619. }
  42620. },
  42621. },
  42622. [
  42623. {
  42624. name: "Tiny Puppy",
  42625. height: math.unit(3, "inches")
  42626. },
  42627. {
  42628. name: "Normal",
  42629. height: math.unit(5.5, "feet"),
  42630. default: true
  42631. },
  42632. {
  42633. name: "Lotta Lady",
  42634. height: math.unit(12, "feet")
  42635. },
  42636. {
  42637. name: "Pretty Big",
  42638. height: math.unit(100, "feet")
  42639. },
  42640. {
  42641. name: "Big",
  42642. height: math.unit(500, "feet")
  42643. },
  42644. {
  42645. name: "Skyscraper Toys",
  42646. height: math.unit(2500, "feet")
  42647. },
  42648. {
  42649. name: "Plane Catcher",
  42650. height: math.unit(8, "miles")
  42651. },
  42652. {
  42653. name: "Planet Toys",
  42654. height: math.unit(15, "earths")
  42655. },
  42656. {
  42657. name: "Stardust",
  42658. height: math.unit(0.25, "galaxies")
  42659. },
  42660. {
  42661. name: "Snacks",
  42662. height: math.unit(70, "universes")
  42663. },
  42664. ]
  42665. ))
  42666. characterMakers.push(() => makeCharacter(
  42667. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42668. {
  42669. front: {
  42670. height: math.unit(1.6, "meters"),
  42671. weight: math.unit(60, "kg"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/bounty/front.svg",
  42675. extra: 1426/1308,
  42676. bottom: 15/1441
  42677. }
  42678. },
  42679. back: {
  42680. height: math.unit(1.6, "meters"),
  42681. weight: math.unit(60, "kg"),
  42682. name: "Back",
  42683. image: {
  42684. source: "./media/characters/bounty/back.svg",
  42685. extra: 1417/1307,
  42686. bottom: 8/1425
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(1.6, "meters"),
  42694. default: true
  42695. },
  42696. {
  42697. name: "Macro",
  42698. height: math.unit(300, "meters")
  42699. },
  42700. ]
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42704. {
  42705. front: {
  42706. height: math.unit(2 + 8/12, "feet"),
  42707. weight: math.unit(15, "lb"),
  42708. name: "Front",
  42709. image: {
  42710. source: "./media/characters/mochi/front.svg",
  42711. extra: 1022/852,
  42712. bottom: 435/1457
  42713. }
  42714. },
  42715. back: {
  42716. height: math.unit(2 + 8/12, "feet"),
  42717. weight: math.unit(15, "lb"),
  42718. name: "Back",
  42719. image: {
  42720. source: "./media/characters/mochi/back.svg",
  42721. extra: 1335/1119,
  42722. bottom: 39/1374
  42723. }
  42724. },
  42725. bird: {
  42726. height: math.unit(2 + 8/12, "feet"),
  42727. weight: math.unit(15, "lb"),
  42728. name: "Bird",
  42729. image: {
  42730. source: "./media/characters/mochi/bird.svg",
  42731. extra: 1251/1113,
  42732. bottom: 178/1429
  42733. }
  42734. },
  42735. kaiju: {
  42736. height: math.unit(154, "feet"),
  42737. weight: math.unit(1e7, "lb"),
  42738. name: "Kaiju",
  42739. image: {
  42740. source: "./media/characters/mochi/kaiju.svg",
  42741. extra: 460/324,
  42742. bottom: 40/500
  42743. }
  42744. },
  42745. head: {
  42746. height: math.unit(1.21, "feet"),
  42747. name: "Head",
  42748. image: {
  42749. source: "./media/characters/mochi/head.svg"
  42750. }
  42751. },
  42752. alternateTail: {
  42753. height: math.unit(2 + 8/12, "feet"),
  42754. weight: math.unit(45, "lb"),
  42755. name: "Alternate Tail",
  42756. image: {
  42757. source: "./media/characters/mochi/alternate-tail.svg",
  42758. extra: 139/76,
  42759. bottom: 45/184
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Micro",
  42766. height: math.unit(2, "inches")
  42767. },
  42768. {
  42769. name: "Normal",
  42770. height: math.unit(2 + 8/12, "feet"),
  42771. default: true
  42772. },
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(106, "feet")
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(5.67, "feet"),
  42784. weight: math.unit(135, "lb"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/sarel/front.svg",
  42788. extra: 865/788,
  42789. bottom: 97/962
  42790. }
  42791. },
  42792. back: {
  42793. height: math.unit(5.67, "feet"),
  42794. weight: math.unit(135, "lb"),
  42795. name: "Back",
  42796. image: {
  42797. source: "./media/characters/sarel/back.svg",
  42798. extra: 857/777,
  42799. bottom: 32/889
  42800. }
  42801. },
  42802. chozoan: {
  42803. height: math.unit(5.67, "feet"),
  42804. weight: math.unit(135, "lb"),
  42805. name: "Chozoan",
  42806. image: {
  42807. source: "./media/characters/sarel/chozoan.svg",
  42808. extra: 865/788,
  42809. bottom: 97/962
  42810. }
  42811. },
  42812. current: {
  42813. height: math.unit(5.67, "feet"),
  42814. weight: math.unit(135, "lb"),
  42815. name: "Current",
  42816. image: {
  42817. source: "./media/characters/sarel/current.svg",
  42818. extra: 865/788,
  42819. bottom: 97/962
  42820. }
  42821. },
  42822. head: {
  42823. height: math.unit(1.77, "feet"),
  42824. name: "Head",
  42825. image: {
  42826. source: "./media/characters/sarel/head.svg"
  42827. }
  42828. },
  42829. claws: {
  42830. height: math.unit(1.8, "feet"),
  42831. name: "Claws",
  42832. image: {
  42833. source: "./media/characters/sarel/claws.svg"
  42834. }
  42835. },
  42836. clawsAlt: {
  42837. height: math.unit(1.8, "feet"),
  42838. name: "Claws-alt",
  42839. image: {
  42840. source: "./media/characters/sarel/claws-alt.svg"
  42841. }
  42842. },
  42843. },
  42844. [
  42845. {
  42846. name: "Normal",
  42847. height: math.unit(5.67, "feet"),
  42848. default: true
  42849. },
  42850. ]
  42851. ))
  42852. characterMakers.push(() => makeCharacter(
  42853. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42854. {
  42855. front: {
  42856. height: math.unit(5500, "feet"),
  42857. name: "Front",
  42858. image: {
  42859. source: "./media/characters/alyonia/front.svg",
  42860. extra: 1200/1135,
  42861. bottom: 29/1229
  42862. }
  42863. },
  42864. back: {
  42865. height: math.unit(5500, "feet"),
  42866. name: "Back",
  42867. image: {
  42868. source: "./media/characters/alyonia/back.svg",
  42869. extra: 1205/1138,
  42870. bottom: 10/1215
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Small",
  42877. height: math.unit(10, "feet")
  42878. },
  42879. {
  42880. name: "Macro",
  42881. height: math.unit(500, "feet")
  42882. },
  42883. {
  42884. name: "Mega Macro",
  42885. height: math.unit(5500, "feet"),
  42886. default: true
  42887. },
  42888. {
  42889. name: "Mega Macro+",
  42890. height: math.unit(500000, "feet")
  42891. },
  42892. {
  42893. name: "Giga Macro",
  42894. height: math.unit(3000, "miles")
  42895. },
  42896. {
  42897. name: "Tera Macro",
  42898. height: math.unit(2.8e6, "miles")
  42899. },
  42900. {
  42901. name: "Galactic",
  42902. height: math.unit(120000, "lightyears")
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42908. {
  42909. werewolf: {
  42910. height: math.unit(8, "feet"),
  42911. weight: math.unit(425, "lb"),
  42912. name: "Werewolf",
  42913. image: {
  42914. source: "./media/characters/autumn/werewolf.svg",
  42915. extra: 2154/2031,
  42916. bottom: 160/2314
  42917. }
  42918. },
  42919. human: {
  42920. height: math.unit(5 + 8/12, "feet"),
  42921. weight: math.unit(150, "lb"),
  42922. name: "Human",
  42923. image: {
  42924. source: "./media/characters/autumn/human.svg",
  42925. extra: 1200/1149,
  42926. bottom: 30/1230
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(8, "feet"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(8 + 5/12, "feet"),
  42943. weight: math.unit(825, "lb"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/cobalt-charizard/front.svg",
  42947. extra: 1268/1155,
  42948. bottom: 122/1390
  42949. }
  42950. },
  42951. side: {
  42952. height: math.unit(8 + 5/12, "feet"),
  42953. weight: math.unit(825, "lb"),
  42954. name: "Side",
  42955. image: {
  42956. source: "./media/characters/cobalt-charizard/side.svg",
  42957. extra: 1348/1257,
  42958. bottom: 58/1406
  42959. }
  42960. },
  42961. gMax: {
  42962. height: math.unit(134 + 11/12, "feet"),
  42963. name: "G-Max",
  42964. image: {
  42965. source: "./media/characters/cobalt-charizard/g-max.svg",
  42966. extra: 1835/1541,
  42967. bottom: 151/1986
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(8 + 5/12, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42981. {
  42982. front: {
  42983. height: math.unit(6 + 3/12, "feet"),
  42984. weight: math.unit(210, "lb"),
  42985. name: "Front",
  42986. image: {
  42987. source: "./media/characters/stella/front.svg",
  42988. extra: 3549/3335,
  42989. bottom: 51/3600
  42990. }
  42991. },
  42992. },
  42993. [
  42994. {
  42995. name: "Normal",
  42996. height: math.unit(6 + 3/12, "feet"),
  42997. default: true
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43003. {
  43004. front: {
  43005. height: math.unit(5, "feet"),
  43006. weight: math.unit(90, "lb"),
  43007. name: "Front",
  43008. image: {
  43009. source: "./media/characters/riley-bishop/front.svg",
  43010. extra: 1450/1428,
  43011. bottom: 152/1602
  43012. }
  43013. },
  43014. },
  43015. [
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(5, "feet"),
  43019. default: true
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43025. {
  43026. side: {
  43027. height: math.unit(8 + 2/12, "feet"),
  43028. weight: math.unit(500, "kg"),
  43029. name: "Side",
  43030. image: {
  43031. source: "./media/characters/theo-arcanine/side.svg",
  43032. extra: 1342/1074,
  43033. bottom: 111/1453
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(8 + 2/12, "feet"),
  43041. default: true
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43047. {
  43048. front: {
  43049. height: math.unit(4, "feet"),
  43050. name: "Front",
  43051. image: {
  43052. source: "./media/characters/kali/front.svg",
  43053. extra: 1921/1357,
  43054. bottom: 70/1991
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Normal",
  43061. height: math.unit(4, "feet"),
  43062. default: true
  43063. },
  43064. {
  43065. name: "Macro",
  43066. height: math.unit(32, "meters")
  43067. },
  43068. {
  43069. name: "Macro+",
  43070. height: math.unit(150, "meters")
  43071. },
  43072. {
  43073. name: "Megamacro",
  43074. height: math.unit(7500, "meters")
  43075. },
  43076. {
  43077. name: "Megamacro+",
  43078. height: math.unit(80, "kilometers")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43084. {
  43085. side: {
  43086. height: math.unit(5 + 11/12, "feet"),
  43087. weight: math.unit(236, "lb"),
  43088. name: "Side",
  43089. image: {
  43090. source: "./media/characters/gapp/side.svg",
  43091. extra: 775/340,
  43092. bottom: 58/833
  43093. }
  43094. },
  43095. mouth: {
  43096. height: math.unit(2.98, "feet"),
  43097. name: "Mouth",
  43098. image: {
  43099. source: "./media/characters/gapp/mouth.svg"
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(5 + 1/12, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(6, "feet"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/persephone/front.svg",
  43119. extra: 1895/1717,
  43120. bottom: 96/1991
  43121. }
  43122. },
  43123. back: {
  43124. height: math.unit(6, "feet"),
  43125. name: "Back",
  43126. image: {
  43127. source: "./media/characters/persephone/back.svg",
  43128. extra: 1868/1679,
  43129. bottom: 26/1894
  43130. }
  43131. },
  43132. casual: {
  43133. height: math.unit(6, "feet"),
  43134. name: "Casual",
  43135. image: {
  43136. source: "./media/characters/persephone/casual.svg",
  43137. extra: 1713/1541,
  43138. bottom: 76/1789
  43139. }
  43140. },
  43141. },
  43142. [
  43143. {
  43144. name: "Human Size",
  43145. height: math.unit(6, "feet")
  43146. },
  43147. {
  43148. name: "Big Steppy",
  43149. height: math.unit(600, "meters"),
  43150. default: true
  43151. },
  43152. {
  43153. name: "Galaxy Brain",
  43154. height: math.unit(1, "zettameter")
  43155. },
  43156. ]
  43157. ))
  43158. characterMakers.push(() => makeCharacter(
  43159. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43160. {
  43161. front: {
  43162. height: math.unit(1.85, "meters"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/riley-foxthing/front.svg",
  43166. extra: 1495/1354,
  43167. bottom: 122/1617
  43168. }
  43169. },
  43170. frontAlt: {
  43171. height: math.unit(1.85, "meters"),
  43172. name: "Front (Alt)",
  43173. image: {
  43174. source: "./media/characters/riley-foxthing/front-alt.svg",
  43175. extra: 1572/1389,
  43176. bottom: 116/1688
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Normal Sized",
  43183. height: math.unit(1.85, "meters"),
  43184. default: true
  43185. },
  43186. {
  43187. name: "Quite Sizable",
  43188. height: math.unit(5, "meters")
  43189. },
  43190. {
  43191. name: "Rather Large",
  43192. height: math.unit(20, "meters")
  43193. },
  43194. {
  43195. name: "Macro",
  43196. height: math.unit(450, "meters")
  43197. },
  43198. {
  43199. name: "Giga",
  43200. height: math.unit(5, "km")
  43201. },
  43202. ]
  43203. ))
  43204. characterMakers.push(() => makeCharacter(
  43205. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43206. {
  43207. front: {
  43208. height: math.unit(6, "feet"),
  43209. weight: math.unit(200, "lb"),
  43210. name: "Front",
  43211. image: {
  43212. source: "./media/characters/blizzard/front.svg",
  43213. extra: 1136/990,
  43214. bottom: 136/1272
  43215. }
  43216. },
  43217. back: {
  43218. height: math.unit(6, "feet"),
  43219. weight: math.unit(200, "lb"),
  43220. name: "Back",
  43221. image: {
  43222. source: "./media/characters/blizzard/back.svg",
  43223. extra: 1175/1034,
  43224. bottom: 97/1272
  43225. }
  43226. },
  43227. sitting: {
  43228. height: math.unit(3.725, "feet"),
  43229. weight: math.unit(200, "lb"),
  43230. name: "Sitting",
  43231. image: {
  43232. source: "./media/characters/blizzard/sitting.svg",
  43233. extra: 581/485,
  43234. bottom: 90/671
  43235. }
  43236. },
  43237. frontWizard: {
  43238. height: math.unit(7.9, "feet"),
  43239. weight: math.unit(200, "lb"),
  43240. name: "Front (Wizard)",
  43241. image: {
  43242. source: "./media/characters/blizzard/front-wizard.svg"
  43243. }
  43244. },
  43245. backWizard: {
  43246. height: math.unit(7.9, "feet"),
  43247. weight: math.unit(200, "lb"),
  43248. name: "Back (Wizard)",
  43249. image: {
  43250. source: "./media/characters/blizzard/back-wizard.svg"
  43251. }
  43252. },
  43253. frontNsfw: {
  43254. height: math.unit(6, "feet"),
  43255. weight: math.unit(200, "lb"),
  43256. name: "Front (NSFW)",
  43257. image: {
  43258. source: "./media/characters/blizzard/front-nsfw.svg",
  43259. extra: 1136/990,
  43260. bottom: 136/1272
  43261. }
  43262. },
  43263. backNsfw: {
  43264. height: math.unit(6, "feet"),
  43265. weight: math.unit(200, "lb"),
  43266. name: "Back (NSFW)",
  43267. image: {
  43268. source: "./media/characters/blizzard/back-nsfw.svg",
  43269. extra: 1175/1034,
  43270. bottom: 97/1272
  43271. }
  43272. },
  43273. sittingNsfw: {
  43274. height: math.unit(3.725, "feet"),
  43275. weight: math.unit(200, "lb"),
  43276. name: "Sitting (NSFW)",
  43277. image: {
  43278. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43279. extra: 581/485,
  43280. bottom: 90/671
  43281. }
  43282. },
  43283. wizardFrontNsfw: {
  43284. height: math.unit(7.9, "feet"),
  43285. weight: math.unit(200, "lb"),
  43286. name: "Wizard (Front, NSFW)",
  43287. image: {
  43288. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43289. }
  43290. },
  43291. },
  43292. [
  43293. {
  43294. name: "Normal",
  43295. height: math.unit(6, "feet"),
  43296. default: true
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(5 + 2/12, "feet"),
  43305. name: "Front",
  43306. image: {
  43307. source: "./media/characters/lumi/front.svg",
  43308. extra: 1328/1268,
  43309. bottom: 103/1431
  43310. }
  43311. },
  43312. back: {
  43313. height: math.unit(5 + 2/12, "feet"),
  43314. name: "Back",
  43315. image: {
  43316. source: "./media/characters/lumi/back.svg",
  43317. extra: 1381/1327,
  43318. bottom: 43/1424
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(5 + 2/12, "feet"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43332. {
  43333. front: {
  43334. height: math.unit(5 + 9/12, "feet"),
  43335. name: "Front",
  43336. image: {
  43337. source: "./media/characters/aliya-cotton/front.svg",
  43338. extra: 577/564,
  43339. bottom: 29/606
  43340. }
  43341. },
  43342. },
  43343. [
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(5 + 9/12, "feet"),
  43347. default: true
  43348. },
  43349. ]
  43350. ))
  43351. characterMakers.push(() => makeCharacter(
  43352. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43353. {
  43354. front: {
  43355. height: math.unit(2.7, "meters"),
  43356. weight: math.unit(25000, "lb"),
  43357. name: "Front",
  43358. image: {
  43359. source: "./media/characters/noah-luxray/front.svg",
  43360. extra: 1644/825,
  43361. bottom: 339/1983
  43362. }
  43363. },
  43364. side: {
  43365. height: math.unit(2.97, "meters"),
  43366. weight: math.unit(25000, "lb"),
  43367. name: "Side",
  43368. image: {
  43369. source: "./media/characters/noah-luxray/side.svg",
  43370. extra: 1319/650,
  43371. bottom: 163/1482
  43372. }
  43373. },
  43374. dick: {
  43375. height: math.unit(7.4, "feet"),
  43376. weight: math.unit(2500, "lb"),
  43377. name: "Dick",
  43378. image: {
  43379. source: "./media/characters/noah-luxray/dick.svg"
  43380. }
  43381. },
  43382. dickAlt: {
  43383. height: math.unit(10.83, "feet"),
  43384. weight: math.unit(2500, "lb"),
  43385. name: "Dick-alt",
  43386. image: {
  43387. source: "./media/characters/noah-luxray/dick-alt.svg"
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "BIG",
  43394. height: math.unit(2.7, "meters"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43401. {
  43402. standing: {
  43403. height: math.unit(183, "cm"),
  43404. weight: math.unit(68, "kg"),
  43405. name: "Standing",
  43406. image: {
  43407. source: "./media/characters/arion/standing.svg",
  43408. extra: 1869/1807,
  43409. bottom: 93/1962
  43410. }
  43411. },
  43412. reclining: {
  43413. height: math.unit(70.5, "cm"),
  43414. weight: math.unit(68, "lb"),
  43415. name: "Reclining",
  43416. image: {
  43417. source: "./media/characters/arion/reclining.svg",
  43418. extra: 937/870,
  43419. bottom: 63/1000
  43420. }
  43421. },
  43422. },
  43423. [
  43424. {
  43425. name: "Colossus Size, Low",
  43426. height: math.unit(33, "meters"),
  43427. default: true
  43428. },
  43429. {
  43430. name: "Colossus Size, Mid",
  43431. height: math.unit(52, "meters")
  43432. },
  43433. {
  43434. name: "Colossus Size, High",
  43435. height: math.unit(60, "meters")
  43436. },
  43437. {
  43438. name: "Titan Size, Low",
  43439. height: math.unit(91, "meters"),
  43440. },
  43441. {
  43442. name: "Titan Size, Mid",
  43443. height: math.unit(122, "meters")
  43444. },
  43445. {
  43446. name: "Titan Size, High",
  43447. height: math.unit(162, "meters")
  43448. },
  43449. ]
  43450. ))
  43451. characterMakers.push(() => makeCharacter(
  43452. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43453. {
  43454. front: {
  43455. height: math.unit(53, "meters"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/stellar-marbey/front.svg",
  43459. extra: 1913/1805,
  43460. bottom: 92/2005
  43461. }
  43462. },
  43463. back: {
  43464. height: math.unit(53, "meters"),
  43465. name: "Back",
  43466. image: {
  43467. source: "./media/characters/stellar-marbey/back.svg",
  43468. extra: 1960/1851,
  43469. bottom: 28/1988
  43470. }
  43471. },
  43472. mouth: {
  43473. height: math.unit(3.5, "meters"),
  43474. name: "Mouth",
  43475. image: {
  43476. source: "./media/characters/stellar-marbey/mouth.svg"
  43477. }
  43478. },
  43479. },
  43480. [
  43481. {
  43482. name: "Macro",
  43483. height: math.unit(53, "meters"),
  43484. default: true
  43485. },
  43486. ]
  43487. ))
  43488. characterMakers.push(() => makeCharacter(
  43489. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43490. {
  43491. front: {
  43492. height: math.unit(8 + 1/12, "feet"),
  43493. weight: math.unit(233, "lb"),
  43494. name: "Front",
  43495. image: {
  43496. source: "./media/characters/matsu/front.svg",
  43497. extra: 832/772,
  43498. bottom: 40/872
  43499. }
  43500. },
  43501. back: {
  43502. height: math.unit(8 + 1/12, "feet"),
  43503. weight: math.unit(233, "lb"),
  43504. name: "Back",
  43505. image: {
  43506. source: "./media/characters/matsu/back.svg",
  43507. extra: 839/780,
  43508. bottom: 47/886
  43509. }
  43510. },
  43511. },
  43512. [
  43513. {
  43514. name: "Normal",
  43515. height: math.unit(8 + 1/12, "feet"),
  43516. default: true
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43522. {
  43523. front: {
  43524. height: math.unit(4, "feet"),
  43525. weight: math.unit(148, "lb"),
  43526. name: "Front",
  43527. image: {
  43528. source: "./media/characters/thiz/front.svg",
  43529. extra: 1913/1748,
  43530. bottom: 62/1975
  43531. }
  43532. },
  43533. },
  43534. [
  43535. {
  43536. name: "Normal",
  43537. height: math.unit(4, "feet"),
  43538. default: true
  43539. },
  43540. ]
  43541. ))
  43542. characterMakers.push(() => makeCharacter(
  43543. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43544. {
  43545. front: {
  43546. height: math.unit(7 + 6/12, "feet"),
  43547. weight: math.unit(267, "lb"),
  43548. name: "Front",
  43549. image: {
  43550. source: "./media/characters/marcel/front.svg",
  43551. extra: 1221/1096,
  43552. bottom: 76/1297
  43553. }
  43554. },
  43555. },
  43556. [
  43557. {
  43558. name: "Normal",
  43559. height: math.unit(7 + 6/12, "feet"),
  43560. default: true
  43561. },
  43562. ]
  43563. ))
  43564. characterMakers.push(() => makeCharacter(
  43565. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43566. {
  43567. side: {
  43568. height: math.unit(42, "meters"),
  43569. name: "Side",
  43570. image: {
  43571. source: "./media/characters/flake/side.svg",
  43572. extra: 1525/1306,
  43573. bottom: 209/1734
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Normal",
  43580. height: math.unit(42, "meters"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43587. {
  43588. dressed: {
  43589. height: math.unit(6 + 4/12, "feet"),
  43590. weight: math.unit(520, "lb"),
  43591. name: "Dressed",
  43592. image: {
  43593. source: "./media/characters/someonne/dressed.svg",
  43594. extra: 1020/1010,
  43595. bottom: 178/1198
  43596. }
  43597. },
  43598. undressed: {
  43599. height: math.unit(6 + 4/12, "feet"),
  43600. weight: math.unit(520, "lb"),
  43601. name: "Undressed",
  43602. image: {
  43603. source: "./media/characters/someonne/undressed.svg",
  43604. extra: 1019/1014,
  43605. bottom: 169/1188
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(6 + 4/12, "feet"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43619. {
  43620. front: {
  43621. height: math.unit(3, "feet"),
  43622. weight: math.unit(30, "lb"),
  43623. name: "Front",
  43624. image: {
  43625. source: "./media/characters/till/front.svg",
  43626. extra: 892/823,
  43627. bottom: 55/947
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Normal",
  43634. height: math.unit(3, "feet"),
  43635. default: true
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(9 + 8/12, "feet"),
  43644. weight: math.unit(800, "lb"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/sydney-heki/front.svg",
  43648. extra: 1360/1300,
  43649. bottom: 22/1382
  43650. }
  43651. },
  43652. back: {
  43653. height: math.unit(9 + 8/12, "feet"),
  43654. weight: math.unit(800, "lb"),
  43655. name: "Back",
  43656. image: {
  43657. source: "./media/characters/sydney-heki/back.svg",
  43658. extra: 1356/1293,
  43659. bottom: 12/1368
  43660. }
  43661. },
  43662. frontDressed: {
  43663. height: math.unit(9 + 8/12, "feet"),
  43664. weight: math.unit(800, "lb"),
  43665. name: "Front-dressed",
  43666. image: {
  43667. source: "./media/characters/sydney-heki/front-dressed.svg",
  43668. extra: 1360/1300,
  43669. bottom: 22/1382
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(9 + 8/12, "feet"),
  43677. default: true
  43678. },
  43679. {
  43680. name: "Macro",
  43681. height: math.unit(500, "feet")
  43682. },
  43683. {
  43684. name: "Megamacro",
  43685. height: math.unit(3.6, "miles")
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(200, "cm"),
  43694. weight: math.unit(250, "lb"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/fowler-karlsson/front.svg",
  43698. extra: 897/845,
  43699. bottom: 123/1020
  43700. }
  43701. },
  43702. back: {
  43703. height: math.unit(200, "cm"),
  43704. weight: math.unit(250, "lb"),
  43705. name: "Back",
  43706. image: {
  43707. source: "./media/characters/fowler-karlsson/back.svg",
  43708. extra: 999/944,
  43709. bottom: 26/1025
  43710. }
  43711. },
  43712. dick: {
  43713. height: math.unit(1.92, "feet"),
  43714. weight: math.unit(150, "lb"),
  43715. name: "Dick",
  43716. image: {
  43717. source: "./media/characters/fowler-karlsson/dick.svg"
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Normal",
  43724. height: math.unit(200, "cm"),
  43725. default: true
  43726. },
  43727. {
  43728. name: "Smaller Macro",
  43729. height: math.unit(90, "m")
  43730. },
  43731. {
  43732. name: "Macro",
  43733. height: math.unit(150, "m")
  43734. },
  43735. {
  43736. name: "Bigger Macro",
  43737. height: math.unit(300, "m")
  43738. },
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43743. {
  43744. side: {
  43745. height: math.unit(8 + 2/12, "feet"),
  43746. weight: math.unit(1, "tonne"),
  43747. name: "Side",
  43748. image: {
  43749. source: "./media/characters/rylide/side.svg",
  43750. extra: 1318/1034,
  43751. bottom: 106/1424
  43752. }
  43753. },
  43754. sitting: {
  43755. height: math.unit(303, "cm"),
  43756. weight: math.unit(1, "tonne"),
  43757. name: "Sitting",
  43758. image: {
  43759. source: "./media/characters/rylide/sitting.svg",
  43760. extra: 1303/1103,
  43761. bottom: 36/1339
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(8 + 2/12, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(5 + 10/12, "feet"),
  43778. weight: math.unit(160, "lb"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/pudask/front.svg",
  43782. extra: 1616/1590,
  43783. bottom: 161/1777
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Ferret Height",
  43790. height: math.unit(2 + 5/12, "feet")
  43791. },
  43792. {
  43793. name: "Canon Height",
  43794. height: math.unit(5 + 10/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(3 + 6/12, "feet"),
  43804. weight: math.unit(60, "lb"),
  43805. name: "Front",
  43806. image: {
  43807. source: "./media/characters/ramita/front.svg",
  43808. extra: 1402/1232,
  43809. bottom: 62/1464
  43810. }
  43811. },
  43812. dressed: {
  43813. height: math.unit(3 + 6/12, "feet"),
  43814. weight: math.unit(60, "lb"),
  43815. name: "Dressed",
  43816. image: {
  43817. source: "./media/characters/ramita/dressed.svg",
  43818. extra: 1534/1249,
  43819. bottom: 50/1584
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(3 + 6/12, "feet"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43833. {
  43834. front: {
  43835. height: math.unit(8, "feet"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/ark/front.svg",
  43839. extra: 772/693,
  43840. bottom: 45/817
  43841. }
  43842. },
  43843. },
  43844. [
  43845. {
  43846. name: "Normal",
  43847. height: math.unit(8, "feet"),
  43848. default: true
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43854. {
  43855. front: {
  43856. height: math.unit(6, "feet"),
  43857. weight: math.unit(250, "lb"),
  43858. volume: math.unit(5/8, "gallons"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/ludwig-horn/front.svg",
  43862. extra: 1782/1635,
  43863. bottom: 96/1878
  43864. }
  43865. },
  43866. back: {
  43867. height: math.unit(6, "feet"),
  43868. weight: math.unit(250, "lb"),
  43869. volume: math.unit(5/8, "gallons"),
  43870. name: "Back",
  43871. image: {
  43872. source: "./media/characters/ludwig-horn/back.svg",
  43873. extra: 1874/1729,
  43874. bottom: 27/1901
  43875. }
  43876. },
  43877. dick: {
  43878. height: math.unit(1.05, "feet"),
  43879. weight: math.unit(15, "lb"),
  43880. volume: math.unit(5/8, "gallons"),
  43881. name: "Dick",
  43882. image: {
  43883. source: "./media/characters/ludwig-horn/dick.svg"
  43884. }
  43885. },
  43886. },
  43887. [
  43888. {
  43889. name: "Small",
  43890. height: math.unit(6, "feet")
  43891. },
  43892. {
  43893. name: "Typical",
  43894. height: math.unit(12, "feet"),
  43895. default: true
  43896. },
  43897. {
  43898. name: "Building",
  43899. height: math.unit(80, "feet")
  43900. },
  43901. {
  43902. name: "Town",
  43903. height: math.unit(800, "feet")
  43904. },
  43905. {
  43906. name: "Kingdom",
  43907. height: math.unit(80000, "feet")
  43908. },
  43909. {
  43910. name: "Planet",
  43911. height: math.unit(8000000, "feet")
  43912. },
  43913. {
  43914. name: "Universe",
  43915. height: math.unit(8000000000, "feet")
  43916. },
  43917. {
  43918. name: "Transcended",
  43919. height: math.unit(8e27, "feet")
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43925. {
  43926. front: {
  43927. height: math.unit(5, "feet"),
  43928. weight: math.unit(50, "kg"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/biot-avery/front.svg",
  43932. extra: 1295/1232,
  43933. bottom: 86/1381
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(5, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(6, "feet"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/kitsune-kiro/front.svg",
  43953. extra: 1270/1158,
  43954. bottom: 42/1312
  43955. }
  43956. },
  43957. frontAlt: {
  43958. height: math.unit(6, "feet"),
  43959. name: "Front-alt",
  43960. image: {
  43961. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43962. extra: 1130/1081,
  43963. bottom: 36/1166
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Smol",
  43970. height: math.unit(3, "feet")
  43971. },
  43972. {
  43973. name: "Normal",
  43974. height: math.unit(6, "feet"),
  43975. default: true
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43981. {
  43982. front: {
  43983. height: math.unit(6, "feet"),
  43984. weight: math.unit(125, "lb"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/jack-thatcher/front.svg",
  43988. extra: 1474/1370,
  43989. bottom: 26/1500
  43990. }
  43991. },
  43992. back: {
  43993. height: math.unit(6, "feet"),
  43994. weight: math.unit(125, "lb"),
  43995. name: "Back",
  43996. image: {
  43997. source: "./media/characters/jack-thatcher/back.svg",
  43998. extra: 1489/1384,
  43999. bottom: 18/1507
  44000. }
  44001. },
  44002. },
  44003. [
  44004. {
  44005. name: "Normal",
  44006. height: math.unit(6, "feet"),
  44007. default: true
  44008. },
  44009. {
  44010. name: "Macro",
  44011. height: math.unit(75, "feet")
  44012. },
  44013. {
  44014. name: "Macro-er",
  44015. height: math.unit(250, "feet")
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44021. {
  44022. front: {
  44023. height: math.unit(7, "feet"),
  44024. weight: math.unit(110, "kg"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/max-hyper/front.svg",
  44028. extra: 1969/1881,
  44029. bottom: 49/2018
  44030. }
  44031. },
  44032. },
  44033. [
  44034. {
  44035. name: "Normal",
  44036. height: math.unit(7, "feet"),
  44037. default: true
  44038. },
  44039. ]
  44040. ))
  44041. characterMakers.push(() => makeCharacter(
  44042. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44043. {
  44044. front: {
  44045. height: math.unit(5 + 5/12, "feet"),
  44046. weight: math.unit(160, "lb"),
  44047. name: "Front",
  44048. image: {
  44049. source: "./media/characters/spook/front.svg",
  44050. extra: 794/791,
  44051. bottom: 54/848
  44052. }
  44053. },
  44054. back: {
  44055. height: math.unit(5 + 5/12, "feet"),
  44056. weight: math.unit(160, "lb"),
  44057. name: "Back",
  44058. image: {
  44059. source: "./media/characters/spook/back.svg",
  44060. extra: 812/798,
  44061. bottom: 32/844
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(5 + 5/12, "feet"),
  44069. default: true
  44070. },
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44075. {
  44076. front: {
  44077. height: math.unit(18, "feet"),
  44078. name: "Front",
  44079. image: {
  44080. source: "./media/characters/xeaduulix/front.svg",
  44081. extra: 1380/1166,
  44082. bottom: 110/1490
  44083. }
  44084. },
  44085. back: {
  44086. height: math.unit(18, "feet"),
  44087. name: "Back",
  44088. image: {
  44089. source: "./media/characters/xeaduulix/back.svg",
  44090. extra: 1592/1170,
  44091. bottom: 128/1720
  44092. }
  44093. },
  44094. frontNsfw: {
  44095. height: math.unit(18, "feet"),
  44096. name: "Front (NSFW)",
  44097. image: {
  44098. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44099. extra: 1380/1166,
  44100. bottom: 110/1490
  44101. }
  44102. },
  44103. backNsfw: {
  44104. height: math.unit(18, "feet"),
  44105. name: "Back (NSFW)",
  44106. image: {
  44107. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44108. extra: 1592/1170,
  44109. bottom: 128/1720
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Normal",
  44116. height: math.unit(18, "feet"),
  44117. default: true
  44118. },
  44119. ]
  44120. ))
  44121. characterMakers.push(() => makeCharacter(
  44122. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44123. {
  44124. spreadWings: {
  44125. height: math.unit(20, "feet"),
  44126. name: "Spread Wings",
  44127. image: {
  44128. source: "./media/characters/fledge/spread-wings.svg",
  44129. extra: 693/635,
  44130. bottom: 26/719
  44131. }
  44132. },
  44133. front: {
  44134. height: math.unit(20, "feet"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/fledge/front.svg",
  44138. extra: 684/637,
  44139. bottom: 18/702
  44140. }
  44141. },
  44142. frontAlt: {
  44143. height: math.unit(20, "feet"),
  44144. name: "Front (Alt)",
  44145. image: {
  44146. source: "./media/characters/fledge/front-alt.svg",
  44147. extra: 708/664,
  44148. bottom: 13/721
  44149. }
  44150. },
  44151. back: {
  44152. height: math.unit(20, "feet"),
  44153. name: "Back",
  44154. image: {
  44155. source: "./media/characters/fledge/back.svg",
  44156. extra: 718/634,
  44157. bottom: 22/740
  44158. }
  44159. },
  44160. head: {
  44161. height: math.unit(5.55, "feet"),
  44162. name: "Head",
  44163. image: {
  44164. source: "./media/characters/fledge/head.svg"
  44165. }
  44166. },
  44167. headAlt: {
  44168. height: math.unit(5.1, "feet"),
  44169. name: "Head (Alt)",
  44170. image: {
  44171. source: "./media/characters/fledge/head-alt.svg"
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Small",
  44178. height: math.unit(6 + 2/12, "feet")
  44179. },
  44180. {
  44181. name: "Big",
  44182. height: math.unit(20, "feet"),
  44183. default: true
  44184. },
  44185. {
  44186. name: "Giant",
  44187. height: math.unit(100, "feet")
  44188. },
  44189. {
  44190. name: "Macro",
  44191. height: math.unit(200, "feet")
  44192. },
  44193. ]
  44194. ))
  44195. characterMakers.push(() => makeCharacter(
  44196. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44197. {
  44198. front: {
  44199. height: math.unit(1, "meter"),
  44200. name: "Front",
  44201. image: {
  44202. source: "./media/characters/atlas-morenai/front.svg",
  44203. extra: 1275/1043,
  44204. bottom: 19/1294
  44205. }
  44206. },
  44207. back: {
  44208. height: math.unit(1, "meter"),
  44209. name: "Back",
  44210. image: {
  44211. source: "./media/characters/atlas-morenai/back.svg",
  44212. extra: 1141/1001,
  44213. bottom: 25/1166
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Normal",
  44220. height: math.unit(1, "meter"),
  44221. default: true
  44222. },
  44223. {
  44224. name: "Magic-Infused",
  44225. height: math.unit(5, "meters")
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44231. {
  44232. front: {
  44233. height: math.unit(5, "meters"),
  44234. name: "Front",
  44235. image: {
  44236. source: "./media/characters/cintia/front.svg",
  44237. extra: 1312/1228,
  44238. bottom: 38/1350
  44239. }
  44240. },
  44241. back: {
  44242. height: math.unit(5, "meters"),
  44243. name: "Back",
  44244. image: {
  44245. source: "./media/characters/cintia/back.svg",
  44246. extra: 1260/1166,
  44247. bottom: 98/1358
  44248. }
  44249. },
  44250. frontDick: {
  44251. height: math.unit(5, "meters"),
  44252. name: "Front (Dick)",
  44253. image: {
  44254. source: "./media/characters/cintia/front-dick.svg",
  44255. extra: 1312/1228,
  44256. bottom: 38/1350
  44257. }
  44258. },
  44259. backDick: {
  44260. height: math.unit(5, "meters"),
  44261. name: "Back (Dick)",
  44262. image: {
  44263. source: "./media/characters/cintia/back-dick.svg",
  44264. extra: 1260/1166,
  44265. bottom: 98/1358
  44266. }
  44267. },
  44268. bust: {
  44269. height: math.unit(1.97, "meters"),
  44270. name: "Bust",
  44271. image: {
  44272. source: "./media/characters/cintia/bust.svg",
  44273. extra: 617/565,
  44274. bottom: 0/617
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(5, "meters"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44288. {
  44289. side: {
  44290. height: math.unit(100, "feet"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/denora/side.svg",
  44294. extra: 875/803,
  44295. bottom: 9/884
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Standard",
  44302. height: math.unit(100, "feet"),
  44303. default: true
  44304. },
  44305. {
  44306. name: "Grand",
  44307. height: math.unit(1000, "feet")
  44308. },
  44309. {
  44310. name: "Conquering",
  44311. height: math.unit(10000, "feet")
  44312. },
  44313. ]
  44314. ))
  44315. characterMakers.push(() => makeCharacter(
  44316. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44317. {
  44318. dressed: {
  44319. height: math.unit(8 + 5/12, "feet"),
  44320. weight: math.unit(700, "lb"),
  44321. name: "Dressed",
  44322. image: {
  44323. source: "./media/characters/kiva/dressed.svg",
  44324. extra: 1102/1055,
  44325. bottom: 60/1162
  44326. }
  44327. },
  44328. nude: {
  44329. height: math.unit(8 + 5/12, "feet"),
  44330. weight: math.unit(700, "lb"),
  44331. name: "Nude",
  44332. image: {
  44333. source: "./media/characters/kiva/nude.svg",
  44334. extra: 1102/1055,
  44335. bottom: 60/1162
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Base Height",
  44342. height: math.unit(8 + 5/12, "feet"),
  44343. default: true
  44344. },
  44345. {
  44346. name: "Macro",
  44347. height: math.unit(100, "feet")
  44348. },
  44349. {
  44350. name: "Max",
  44351. height: math.unit(3280, "feet")
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44357. {
  44358. front: {
  44359. height: math.unit(6 + 8/12, "feet"),
  44360. weight: math.unit(250, "lb"),
  44361. name: "Front",
  44362. image: {
  44363. source: "./media/characters/ztragon/front.svg",
  44364. extra: 1825/1684,
  44365. bottom: 98/1923
  44366. }
  44367. },
  44368. },
  44369. [
  44370. {
  44371. name: "Normal",
  44372. height: math.unit(6 + 8/12, "feet"),
  44373. default: true
  44374. },
  44375. {
  44376. name: "Macro",
  44377. height: math.unit(80, "feet")
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44383. {
  44384. front: {
  44385. height: math.unit(10.4, "feet"),
  44386. weight: math.unit(2, "tons"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/yesenia/front.svg",
  44390. extra: 1479/1474,
  44391. bottom: 233/1712
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(10.4, "feet"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44405. {
  44406. normal: {
  44407. height: math.unit(6 + 1/12, "feet"),
  44408. weight: math.unit(180, "lb"),
  44409. name: "Normal",
  44410. image: {
  44411. source: "./media/characters/leanne-lycheborne/normal.svg",
  44412. extra: 1748/1660,
  44413. bottom: 98/1846
  44414. }
  44415. },
  44416. were: {
  44417. height: math.unit(12, "feet"),
  44418. weight: math.unit(1600, "lb"),
  44419. name: "Were",
  44420. image: {
  44421. source: "./media/characters/leanne-lycheborne/were.svg",
  44422. extra: 1485/1432,
  44423. bottom: 66/1551
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Normal",
  44430. height: math.unit(6 + 1/12, "feet"),
  44431. default: true
  44432. },
  44433. ]
  44434. ))
  44435. characterMakers.push(() => makeCharacter(
  44436. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44437. {
  44438. side: {
  44439. height: math.unit(13, "feet"),
  44440. name: "Side",
  44441. image: {
  44442. source: "./media/characters/kira-tyler/side.svg",
  44443. extra: 693/393,
  44444. bottom: 58/751
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(13, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(10.3, "feet"),
  44461. weight: math.unit(150, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/blaze/front.svg",
  44465. extra: 1378/1286,
  44466. bottom: 172/1550
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Normal",
  44473. height: math.unit(10.3, "feet"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44480. {
  44481. side: {
  44482. height: math.unit(2, "meters"),
  44483. weight: math.unit(400, "kg"),
  44484. name: "Side",
  44485. image: {
  44486. source: "./media/characters/anu/side.svg",
  44487. extra: 506/394,
  44488. bottom: 18/524
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Humanoid",
  44495. height: math.unit(2, "meters")
  44496. },
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(5, "meters"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(5 + 5/12, "feet"),
  44509. weight: math.unit(170, "lb"),
  44510. name: "Front",
  44511. image: {
  44512. source: "./media/characters/synx-the-lynx/front.svg",
  44513. extra: 1893/1745,
  44514. bottom: 17/1910
  44515. }
  44516. },
  44517. side: {
  44518. height: math.unit(5 + 5/12, "feet"),
  44519. weight: math.unit(170, "lb"),
  44520. name: "Side",
  44521. image: {
  44522. source: "./media/characters/synx-the-lynx/side.svg",
  44523. extra: 1884/1740,
  44524. bottom: 39/1923
  44525. }
  44526. },
  44527. back: {
  44528. height: math.unit(5 + 5/12, "feet"),
  44529. weight: math.unit(170, "lb"),
  44530. name: "Back",
  44531. image: {
  44532. source: "./media/characters/synx-the-lynx/back.svg",
  44533. extra: 1903/1755,
  44534. bottom: 14/1917
  44535. }
  44536. },
  44537. },
  44538. [
  44539. {
  44540. name: "Normal",
  44541. height: math.unit(5 + 5/12, "feet"),
  44542. default: true
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44548. {
  44549. back: {
  44550. height: math.unit(15, "feet"),
  44551. name: "Back",
  44552. image: {
  44553. source: "./media/characters/nadezda-fex/back.svg",
  44554. extra: 1695/1481,
  44555. bottom: 25/1720
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(15, "feet"),
  44563. default: true
  44564. },
  44565. {
  44566. name: "Macro",
  44567. height: math.unit(2.5, "miles")
  44568. },
  44569. {
  44570. name: "Goddess",
  44571. height: math.unit(2, "multiverses")
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44577. {
  44578. front: {
  44579. height: math.unit(216, "cm"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/lev/front.svg",
  44583. extra: 1728/1670,
  44584. bottom: 82/1810
  44585. }
  44586. },
  44587. back: {
  44588. height: math.unit(216, "cm"),
  44589. name: "Back",
  44590. image: {
  44591. source: "./media/characters/lev/back.svg",
  44592. extra: 1738/1675,
  44593. bottom: 24/1762
  44594. }
  44595. },
  44596. dressed: {
  44597. height: math.unit(216, "cm"),
  44598. name: "Dressed",
  44599. image: {
  44600. source: "./media/characters/lev/dressed.svg",
  44601. extra: 1397/1351,
  44602. bottom: 73/1470
  44603. }
  44604. },
  44605. head: {
  44606. height: math.unit(0.51, "meter"),
  44607. name: "Head",
  44608. image: {
  44609. source: "./media/characters/lev/head.svg"
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(216, "cm"),
  44617. default: true
  44618. },
  44619. {
  44620. name: "Relatively Macro",
  44621. height: math.unit(80, "meters")
  44622. },
  44623. {
  44624. name: "Megamacro",
  44625. height: math.unit(21600, "meters")
  44626. },
  44627. {
  44628. name: "Megamacro+",
  44629. height: math.unit(64800, "meters")
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(2, "meters"),
  44638. weight: math.unit(80, "kg"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/moka/front.svg",
  44642. extra: 1337/1255,
  44643. bottom: 58/1395
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Micro",
  44650. height: math.unit(15, "cm")
  44651. },
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(2, "meters"),
  44655. default: true
  44656. },
  44657. {
  44658. name: "Macro",
  44659. height: math.unit(20, "meters"),
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(9, "feet"),
  44668. weight: math.unit(240, "lb"),
  44669. name: "Front",
  44670. image: {
  44671. source: "./media/characters/kuzco/front.svg",
  44672. extra: 1593/1487,
  44673. bottom: 32/1625
  44674. }
  44675. },
  44676. side: {
  44677. height: math.unit(9, "feet"),
  44678. weight: math.unit(240, "lb"),
  44679. name: "Side",
  44680. image: {
  44681. source: "./media/characters/kuzco/side.svg",
  44682. extra: 1575/1485,
  44683. bottom: 30/1605
  44684. }
  44685. },
  44686. back: {
  44687. height: math.unit(9, "feet"),
  44688. weight: math.unit(240, "lb"),
  44689. name: "Back",
  44690. image: {
  44691. source: "./media/characters/kuzco/back.svg",
  44692. extra: 1603/1514,
  44693. bottom: 14/1617
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(9, "feet"),
  44701. default: true
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44707. {
  44708. side: {
  44709. height: math.unit(2, "meters"),
  44710. weight: math.unit(300, "kg"),
  44711. name: "Side",
  44712. image: {
  44713. source: "./media/characters/ceruleus/side.svg",
  44714. extra: 1068/974,
  44715. bottom: 126/1194
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(16, "meters"),
  44723. default: true
  44724. },
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44729. {
  44730. front: {
  44731. height: math.unit(9, "feet"),
  44732. weight: math.unit(500, "kg"),
  44733. name: "Front",
  44734. image: {
  44735. source: "./media/characters/acouya/front.svg",
  44736. extra: 1660/1473,
  44737. bottom: 28/1688
  44738. }
  44739. },
  44740. },
  44741. [
  44742. {
  44743. name: "Normal",
  44744. height: math.unit(9, "feet"),
  44745. default: true
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44751. {
  44752. front: {
  44753. height: math.unit(5 + 6/12, "feet"),
  44754. weight: math.unit(195, "lb"),
  44755. name: "Front",
  44756. image: {
  44757. source: "./media/characters/vant/front.svg",
  44758. extra: 1396/1320,
  44759. bottom: 20/1416
  44760. }
  44761. },
  44762. back: {
  44763. height: math.unit(5 + 6/12, "feet"),
  44764. weight: math.unit(195, "lb"),
  44765. name: "Back",
  44766. image: {
  44767. source: "./media/characters/vant/back.svg",
  44768. extra: 1396/1320,
  44769. bottom: 20/1416
  44770. }
  44771. },
  44772. maw: {
  44773. height: math.unit(0.75, "feet"),
  44774. name: "Maw",
  44775. image: {
  44776. source: "./media/characters/vant/maw.svg"
  44777. }
  44778. },
  44779. paw: {
  44780. height: math.unit(1.07, "feet"),
  44781. name: "Paw",
  44782. image: {
  44783. source: "./media/characters/vant/paw.svg"
  44784. }
  44785. },
  44786. },
  44787. [
  44788. {
  44789. name: "Micro",
  44790. height: math.unit(0.25, "inches")
  44791. },
  44792. {
  44793. name: "Normal",
  44794. height: math.unit(5 + 6/12, "feet"),
  44795. default: true
  44796. },
  44797. {
  44798. name: "Macro",
  44799. height: math.unit(75, "feet")
  44800. },
  44801. ]
  44802. ))
  44803. characterMakers.push(() => makeCharacter(
  44804. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44805. {
  44806. front: {
  44807. height: math.unit(30, "meters"),
  44808. weight: math.unit(363, "tons"),
  44809. name: "Front",
  44810. image: {
  44811. source: "./media/characters/ahra/front.svg",
  44812. extra: 1914/1814,
  44813. bottom: 46/1960
  44814. }
  44815. },
  44816. },
  44817. [
  44818. {
  44819. name: "Macro",
  44820. height: math.unit(30, "meters"),
  44821. default: true
  44822. },
  44823. ]
  44824. ))
  44825. characterMakers.push(() => makeCharacter(
  44826. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44827. {
  44828. undressed: {
  44829. height: math.unit(2, "m"),
  44830. weight: math.unit(250, "kg"),
  44831. name: "Undressed",
  44832. image: {
  44833. source: "./media/characters/coriander/undressed.svg",
  44834. extra: 1757/1606,
  44835. bottom: 107/1864
  44836. }
  44837. },
  44838. dressed: {
  44839. height: math.unit(2, "m"),
  44840. weight: math.unit(250, "kg"),
  44841. name: "Dressed",
  44842. image: {
  44843. source: "./media/characters/coriander/dressed.svg",
  44844. extra: 1757/1606,
  44845. bottom: 107/1864
  44846. }
  44847. },
  44848. },
  44849. [
  44850. {
  44851. name: "Normal",
  44852. height: math.unit(4, "meters"),
  44853. default: true
  44854. },
  44855. {
  44856. name: "XL",
  44857. height: math.unit(6, "meters")
  44858. },
  44859. {
  44860. name: "XXL",
  44861. height: math.unit(8, "meters")
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44867. {
  44868. front: {
  44869. height: math.unit(6, "feet"),
  44870. name: "Front",
  44871. image: {
  44872. source: "./media/characters/syrinx/front.svg",
  44873. extra: 1557/1259,
  44874. bottom: 171/1728
  44875. }
  44876. },
  44877. },
  44878. [
  44879. {
  44880. name: "Normal",
  44881. height: math.unit(6 + 3/12, "feet"),
  44882. default: true
  44883. },
  44884. ]
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44888. {
  44889. front: {
  44890. height: math.unit(11 + 6/12, "feet"),
  44891. weight: math.unit(1.5, "tons"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/bor/front.svg",
  44895. extra: 1189/1109,
  44896. bottom: 170/1359
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(11 + 6/12, "feet"),
  44904. default: true
  44905. },
  44906. {
  44907. name: "Macro",
  44908. height: math.unit(32 + 9/12, "feet")
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44914. {
  44915. anthro: {
  44916. height: math.unit(9, "feet"),
  44917. weight: math.unit(2076, "lb"),
  44918. name: "Anthro",
  44919. image: {
  44920. source: "./media/characters/abacus/anthro.svg",
  44921. extra: 1540/1494,
  44922. bottom: 233/1773
  44923. }
  44924. },
  44925. pigeon: {
  44926. height: math.unit(1, "feet"),
  44927. name: "Pigeon",
  44928. image: {
  44929. source: "./media/characters/abacus/pigeon.svg",
  44930. extra: 528/525,
  44931. bottom: 46/574
  44932. }
  44933. },
  44934. },
  44935. [
  44936. {
  44937. name: "Normal",
  44938. height: math.unit(9, "feet"),
  44939. default: true
  44940. },
  44941. ]
  44942. ))
  44943. characterMakers.push(() => makeCharacter(
  44944. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44945. {
  44946. side: {
  44947. height: math.unit(6, "feet"),
  44948. name: "Side",
  44949. image: {
  44950. source: "./media/characters/delkhan/side.svg",
  44951. extra: 1884/1786,
  44952. bottom: 308/2192
  44953. }
  44954. },
  44955. head: {
  44956. height: math.unit(3.38, "feet"),
  44957. name: "Head",
  44958. image: {
  44959. source: "./media/characters/delkhan/head.svg"
  44960. }
  44961. },
  44962. },
  44963. [
  44964. {
  44965. name: "Normal",
  44966. height: math.unit(72, "feet"),
  44967. default: true
  44968. },
  44969. {
  44970. name: "Giant",
  44971. height: math.unit(172, "feet")
  44972. },
  44973. ]
  44974. ))
  44975. characterMakers.push(() => makeCharacter(
  44976. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44977. {
  44978. standing: {
  44979. height: math.unit(6, "feet"),
  44980. name: "Standing",
  44981. image: {
  44982. source: "./media/characters/euchidat/standing.svg",
  44983. extra: 1612/1553,
  44984. bottom: 116/1728
  44985. }
  44986. },
  44987. leaning: {
  44988. height: math.unit(6, "feet"),
  44989. name: "Leaning",
  44990. image: {
  44991. source: "./media/characters/euchidat/leaning.svg",
  44992. extra: 1719/1674,
  44993. bottom: 27/1746
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(175, "feet"),
  45001. default: true
  45002. },
  45003. {
  45004. name: "Megamacro",
  45005. height: math.unit(190, "miles")
  45006. },
  45007. {
  45008. name: "Gigamacro",
  45009. height: math.unit(190000, "miles")
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(6, "feet"),
  45018. weight: math.unit(150, "lb"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/rebecca-stack/front.svg",
  45022. extra: 1256/1201,
  45023. bottom: 18/1274
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(5 + 8/12, "feet"),
  45031. default: true
  45032. },
  45033. {
  45034. name: "Demolitionist",
  45035. height: math.unit(200, "feet")
  45036. },
  45037. {
  45038. name: "Out of Control",
  45039. height: math.unit(2, "miles")
  45040. },
  45041. {
  45042. name: "Giga",
  45043. height: math.unit(7200, "miles")
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45049. {
  45050. front: {
  45051. height: math.unit(6, "feet"),
  45052. weight: math.unit(150, "lb"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/jenny-cartwright/front.svg",
  45056. extra: 1384/1376,
  45057. bottom: 58/1442
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Normal",
  45064. height: math.unit(6 + 7/12, "feet"),
  45065. default: true
  45066. },
  45067. {
  45068. name: "Librarian",
  45069. height: math.unit(55, "feet")
  45070. },
  45071. {
  45072. name: "Sightseer",
  45073. height: math.unit(50, "miles")
  45074. },
  45075. {
  45076. name: "Giga",
  45077. height: math.unit(30000, "miles")
  45078. },
  45079. ]
  45080. ))
  45081. characterMakers.push(() => makeCharacter(
  45082. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45083. {
  45084. nude: {
  45085. height: math.unit(8, "feet"),
  45086. weight: math.unit(225, "lb"),
  45087. name: "Nude",
  45088. image: {
  45089. source: "./media/characters/marvy/nude.svg",
  45090. extra: 1900/1683,
  45091. bottom: 89/1989
  45092. }
  45093. },
  45094. dressed: {
  45095. height: math.unit(8, "feet"),
  45096. weight: math.unit(225, "lb"),
  45097. name: "Dressed",
  45098. image: {
  45099. source: "./media/characters/marvy/dressed.svg",
  45100. extra: 1900/1683,
  45101. bottom: 89/1989
  45102. }
  45103. },
  45104. head: {
  45105. height: math.unit(2.85, "feet"),
  45106. name: "Head",
  45107. image: {
  45108. source: "./media/characters/marvy/head.svg"
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Normal",
  45115. height: math.unit(8, "feet"),
  45116. default: true
  45117. },
  45118. ]
  45119. ))
  45120. characterMakers.push(() => makeCharacter(
  45121. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45122. {
  45123. front: {
  45124. height: math.unit(8, "feet"),
  45125. weight: math.unit(250, "lb"),
  45126. name: "Front",
  45127. image: {
  45128. source: "./media/characters/leah/front.svg",
  45129. extra: 1257/1149,
  45130. bottom: 109/1366
  45131. }
  45132. },
  45133. },
  45134. [
  45135. {
  45136. name: "Normal",
  45137. height: math.unit(8, "feet"),
  45138. default: true
  45139. },
  45140. {
  45141. name: "Minimacro",
  45142. height: math.unit(40, "feet")
  45143. },
  45144. {
  45145. name: "Macro",
  45146. height: math.unit(124, "feet")
  45147. },
  45148. {
  45149. name: "Megamacro",
  45150. height: math.unit(850, "feet")
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45156. {
  45157. side: {
  45158. height: math.unit(13 + 6/12, "feet"),
  45159. weight: math.unit(3200, "lb"),
  45160. name: "Side",
  45161. image: {
  45162. source: "./media/characters/alvir/side.svg",
  45163. extra: 896/589,
  45164. bottom: 26/922
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(13 + 6/12, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45178. {
  45179. front: {
  45180. height: math.unit(5 + 4/12, "feet"),
  45181. weight: math.unit(236, "lb"),
  45182. name: "Front",
  45183. image: {
  45184. source: "./media/characters/zaina-khalil/front.svg",
  45185. extra: 1533/1485,
  45186. bottom: 94/1627
  45187. }
  45188. },
  45189. side: {
  45190. height: math.unit(5 + 4/12, "feet"),
  45191. weight: math.unit(236, "lb"),
  45192. name: "Side",
  45193. image: {
  45194. source: "./media/characters/zaina-khalil/side.svg",
  45195. extra: 1537/1498,
  45196. bottom: 66/1603
  45197. }
  45198. },
  45199. back: {
  45200. height: math.unit(5 + 4/12, "feet"),
  45201. weight: math.unit(236, "lb"),
  45202. name: "Back",
  45203. image: {
  45204. source: "./media/characters/zaina-khalil/back.svg",
  45205. extra: 1546/1494,
  45206. bottom: 89/1635
  45207. }
  45208. },
  45209. },
  45210. [
  45211. {
  45212. name: "Normal",
  45213. height: math.unit(5 + 4/12, "feet"),
  45214. default: true
  45215. },
  45216. ]
  45217. ))
  45218. characterMakers.push(() => makeCharacter(
  45219. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45220. {
  45221. side: {
  45222. height: math.unit(12, "feet"),
  45223. weight: math.unit(4000, "lb"),
  45224. name: "Side",
  45225. image: {
  45226. source: "./media/characters/terry/side.svg",
  45227. extra: 1518/1439,
  45228. bottom: 149/1667
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(12, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(12, "feet"),
  45245. weight: math.unit(1500, "lb"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/kahea/front.svg",
  45249. extra: 1722/1617,
  45250. bottom: 179/1901
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(12, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45264. {
  45265. demonFront: {
  45266. height: math.unit(36, "feet"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/alex-xuria/demon-front.svg",
  45270. extra: 1705/1673,
  45271. bottom: 198/1903
  45272. },
  45273. form: "demon",
  45274. default: true
  45275. },
  45276. demonBack: {
  45277. height: math.unit(36, "feet"),
  45278. name: "Back",
  45279. image: {
  45280. source: "./media/characters/alex-xuria/demon-back.svg",
  45281. extra: 1725/1693,
  45282. bottom: 70/1795
  45283. },
  45284. form: "demon"
  45285. },
  45286. demonHead: {
  45287. height: math.unit(2.14, "meters"),
  45288. name: "Head",
  45289. image: {
  45290. source: "./media/characters/alex-xuria/demon-head.svg"
  45291. },
  45292. form: "demon"
  45293. },
  45294. demonHand: {
  45295. height: math.unit(1.61, "meters"),
  45296. name: "Hand",
  45297. image: {
  45298. source: "./media/characters/alex-xuria/demon-hand.svg"
  45299. },
  45300. form: "demon"
  45301. },
  45302. demonPaw: {
  45303. height: math.unit(1.35, "meters"),
  45304. name: "Paw",
  45305. image: {
  45306. source: "./media/characters/alex-xuria/demon-paw.svg"
  45307. },
  45308. form: "demon"
  45309. },
  45310. demonFoot: {
  45311. height: math.unit(2.2, "meters"),
  45312. name: "Foot",
  45313. image: {
  45314. source: "./media/characters/alex-xuria/demon-foot.svg"
  45315. },
  45316. form: "demon"
  45317. },
  45318. demonCock: {
  45319. height: math.unit(1.74, "meters"),
  45320. name: "Cock",
  45321. image: {
  45322. source: "./media/characters/alex-xuria/demon-cock.svg"
  45323. },
  45324. form: "demon"
  45325. },
  45326. demonTailClosed: {
  45327. height: math.unit(1.47, "meters"),
  45328. name: "Tail (Closed)",
  45329. image: {
  45330. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45331. },
  45332. form: "demon"
  45333. },
  45334. demonTailOpen: {
  45335. height: math.unit(2.85, "meters"),
  45336. name: "Tail (Open)",
  45337. image: {
  45338. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45339. },
  45340. form: "demon"
  45341. },
  45342. incubusFront: {
  45343. height: math.unit(12, "feet"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/alex-xuria/incubus-front.svg",
  45347. extra: 1754/1677,
  45348. bottom: 125/1879
  45349. },
  45350. form: "incubus",
  45351. default: true
  45352. },
  45353. incubusBack: {
  45354. height: math.unit(12, "feet"),
  45355. name: "Back",
  45356. image: {
  45357. source: "./media/characters/alex-xuria/incubus-back.svg",
  45358. extra: 1702/1647,
  45359. bottom: 30/1732
  45360. },
  45361. form: "incubus"
  45362. },
  45363. incubusHead: {
  45364. height: math.unit(3.45, "feet"),
  45365. name: "Head",
  45366. image: {
  45367. source: "./media/characters/alex-xuria/incubus-head.svg"
  45368. },
  45369. form: "incubus"
  45370. },
  45371. rabbitFront: {
  45372. height: math.unit(6, "feet"),
  45373. name: "Front",
  45374. image: {
  45375. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45376. extra: 1369/1349,
  45377. bottom: 45/1414
  45378. },
  45379. form: "rabbit",
  45380. default: true
  45381. },
  45382. rabbitSide: {
  45383. height: math.unit(6, "feet"),
  45384. name: "Side",
  45385. image: {
  45386. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45387. extra: 1370/1356,
  45388. bottom: 37/1407
  45389. },
  45390. form: "rabbit"
  45391. },
  45392. rabbitBack: {
  45393. height: math.unit(6, "feet"),
  45394. name: "Back",
  45395. image: {
  45396. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45397. extra: 1375/1358,
  45398. bottom: 43/1418
  45399. },
  45400. form: "rabbit"
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Normal",
  45406. height: math.unit(6, "feet"),
  45407. default: true,
  45408. form: "rabbit"
  45409. },
  45410. {
  45411. name: "Incubus",
  45412. height: math.unit(12, "feet"),
  45413. default: true,
  45414. form: "incubus"
  45415. },
  45416. {
  45417. name: "Demon",
  45418. height: math.unit(36, "feet"),
  45419. default: true,
  45420. form: "demon"
  45421. }
  45422. ],
  45423. {
  45424. "demon": {
  45425. name: "Demon",
  45426. default: true
  45427. },
  45428. "incubus": {
  45429. name: "Incubus",
  45430. },
  45431. "rabbit": {
  45432. name: "Rabbit"
  45433. }
  45434. }
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45438. {
  45439. front: {
  45440. height: math.unit(7 + 5/12, "feet"),
  45441. weight: math.unit(510, "lb"),
  45442. name: "Front",
  45443. image: {
  45444. source: "./media/characters/syrup/front.svg",
  45445. extra: 932/916,
  45446. bottom: 26/958
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(7 + 5/12, "feet"),
  45454. default: true
  45455. },
  45456. {
  45457. name: "Big",
  45458. height: math.unit(50, "feet")
  45459. },
  45460. {
  45461. name: "Macro",
  45462. height: math.unit(300, "feet")
  45463. },
  45464. {
  45465. name: "Megamacro",
  45466. height: math.unit(1, "mile")
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(6 + 9/12, "feet"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/zeimne/front.svg",
  45478. extra: 1969/1806,
  45479. bottom: 53/2022
  45480. }
  45481. },
  45482. },
  45483. [
  45484. {
  45485. name: "Normal",
  45486. height: math.unit(6 + 9/12, "feet"),
  45487. default: true
  45488. },
  45489. {
  45490. name: "Giant",
  45491. height: math.unit(550, "feet")
  45492. },
  45493. {
  45494. name: "Mega",
  45495. height: math.unit(3, "miles")
  45496. },
  45497. {
  45498. name: "Giga",
  45499. height: math.unit(250, "miles")
  45500. },
  45501. {
  45502. name: "Tera",
  45503. height: math.unit(1, "AU")
  45504. },
  45505. ]
  45506. ))
  45507. characterMakers.push(() => makeCharacter(
  45508. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45509. {
  45510. front: {
  45511. height: math.unit(5 + 2/12, "feet"),
  45512. name: "Front",
  45513. image: {
  45514. source: "./media/characters/grar/front.svg",
  45515. extra: 1331/1119,
  45516. bottom: 60/1391
  45517. }
  45518. },
  45519. back: {
  45520. height: math.unit(5 + 2/12, "feet"),
  45521. name: "Back",
  45522. image: {
  45523. source: "./media/characters/grar/back.svg",
  45524. extra: 1385/1169,
  45525. bottom: 23/1408
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Normal",
  45532. height: math.unit(5 + 2/12, "feet"),
  45533. default: true
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45539. {
  45540. front: {
  45541. height: math.unit(13 + 7/12, "feet"),
  45542. weight: math.unit(2200, "lb"),
  45543. name: "Front",
  45544. image: {
  45545. source: "./media/characters/endraya/front.svg",
  45546. extra: 1289/1215,
  45547. bottom: 50/1339
  45548. }
  45549. },
  45550. nude: {
  45551. height: math.unit(13 + 7/12, "feet"),
  45552. weight: math.unit(2200, "lb"),
  45553. name: "Nude",
  45554. image: {
  45555. source: "./media/characters/endraya/nude.svg",
  45556. extra: 1247/1171,
  45557. bottom: 40/1287
  45558. }
  45559. },
  45560. head: {
  45561. height: math.unit(2.6, "feet"),
  45562. name: "Head",
  45563. image: {
  45564. source: "./media/characters/endraya/head.svg"
  45565. }
  45566. },
  45567. slit: {
  45568. height: math.unit(3.4, "feet"),
  45569. name: "Slit",
  45570. image: {
  45571. source: "./media/characters/endraya/slit.svg"
  45572. }
  45573. },
  45574. },
  45575. [
  45576. {
  45577. name: "Normal",
  45578. height: math.unit(13 + 7/12, "feet"),
  45579. default: true
  45580. },
  45581. {
  45582. name: "Macro",
  45583. height: math.unit(200, "feet")
  45584. },
  45585. ]
  45586. ))
  45587. characterMakers.push(() => makeCharacter(
  45588. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45589. {
  45590. front: {
  45591. height: math.unit(412, "meters"),
  45592. name: "Front",
  45593. image: {
  45594. source: "./media/characters/rodryana/front.svg",
  45595. extra: 2002/1921,
  45596. bottom: 53/2055
  45597. }
  45598. },
  45599. back: {
  45600. height: math.unit(412, "meters"),
  45601. name: "Back",
  45602. image: {
  45603. source: "./media/characters/rodryana/back.svg",
  45604. extra: 1993/1926,
  45605. bottom: 48/2041
  45606. }
  45607. },
  45608. maw: {
  45609. height: math.unit(45, "meters"),
  45610. name: "Maw",
  45611. image: {
  45612. source: "./media/characters/rodryana/maw.svg"
  45613. }
  45614. },
  45615. slit: {
  45616. height: math.unit(72, "meters"),
  45617. name: "Slit",
  45618. image: {
  45619. source: "./media/characters/rodryana/slit.svg"
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Macro",
  45626. height: math.unit(412, "meters"),
  45627. default: true
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45633. {
  45634. front: {
  45635. height: math.unit(6, "feet"),
  45636. weight: math.unit(1000, "lb"),
  45637. name: "Front",
  45638. image: {
  45639. source: "./media/characters/asaya/front.svg",
  45640. extra: 1460/1200,
  45641. bottom: 71/1531
  45642. }
  45643. },
  45644. },
  45645. [
  45646. {
  45647. name: "Normal",
  45648. height: math.unit(8, "km"),
  45649. default: true
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45655. {
  45656. front: {
  45657. height: math.unit(3.5, "meters"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/sarzu-and-israz/front.svg",
  45661. extra: 1570/1558,
  45662. bottom: 150/1720
  45663. },
  45664. },
  45665. back: {
  45666. height: math.unit(3.5, "meters"),
  45667. name: "Back",
  45668. image: {
  45669. source: "./media/characters/sarzu-and-israz/back.svg",
  45670. extra: 1523/1509,
  45671. bottom: 132/1655
  45672. },
  45673. },
  45674. frontFemale: {
  45675. height: math.unit(3.5, "meters"),
  45676. name: "Front (Female)",
  45677. image: {
  45678. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45679. extra: 1570/1558,
  45680. bottom: 150/1720
  45681. },
  45682. },
  45683. frontHerm: {
  45684. height: math.unit(3.5, "meters"),
  45685. name: "Front (Herm)",
  45686. image: {
  45687. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45688. extra: 1570/1558,
  45689. bottom: 150/1720
  45690. },
  45691. },
  45692. },
  45693. [
  45694. {
  45695. name: "Normal",
  45696. height: math.unit(3.5, "meters"),
  45697. default: true,
  45698. },
  45699. {
  45700. name: "Macro",
  45701. height: math.unit(65.5, "meters"),
  45702. },
  45703. ],
  45704. ))
  45705. characterMakers.push(() => makeCharacter(
  45706. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45707. {
  45708. front: {
  45709. height: math.unit(6, "feet"),
  45710. weight: math.unit(250, "lb"),
  45711. name: "Front",
  45712. image: {
  45713. source: "./media/characters/zenimma/front.svg",
  45714. extra: 1346/1320,
  45715. bottom: 58/1404
  45716. }
  45717. },
  45718. back: {
  45719. height: math.unit(6, "feet"),
  45720. weight: math.unit(250, "lb"),
  45721. name: "Back",
  45722. image: {
  45723. source: "./media/characters/zenimma/back.svg",
  45724. extra: 1324/1308,
  45725. bottom: 44/1368
  45726. }
  45727. },
  45728. dick: {
  45729. height: math.unit(1.44, "feet"),
  45730. name: "Dick",
  45731. image: {
  45732. source: "./media/characters/zenimma/dick.svg"
  45733. }
  45734. },
  45735. },
  45736. [
  45737. {
  45738. name: "Canon Height",
  45739. height: math.unit(66, "miles"),
  45740. default: true
  45741. },
  45742. ]
  45743. ))
  45744. characterMakers.push(() => makeCharacter(
  45745. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45746. {
  45747. nude: {
  45748. height: math.unit(6, "feet"),
  45749. weight: math.unit(150, "lb"),
  45750. name: "Nude",
  45751. image: {
  45752. source: "./media/characters/shavon/nude.svg",
  45753. extra: 1242/1096,
  45754. bottom: 98/1340
  45755. }
  45756. },
  45757. dressed: {
  45758. height: math.unit(6, "feet"),
  45759. weight: math.unit(150, "lb"),
  45760. name: "Dressed",
  45761. image: {
  45762. source: "./media/characters/shavon/dressed.svg",
  45763. extra: 1242/1096,
  45764. bottom: 98/1340
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Macro",
  45771. height: math.unit(255, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45778. {
  45779. front: {
  45780. height: math.unit(6, "feet"),
  45781. name: "Front",
  45782. image: {
  45783. source: "./media/characters/steph/front.svg",
  45784. extra: 1430/1330,
  45785. bottom: 54/1484
  45786. }
  45787. },
  45788. },
  45789. [
  45790. {
  45791. name: "Normal",
  45792. height: math.unit(6, "feet"),
  45793. default: true
  45794. },
  45795. ]
  45796. ))
  45797. characterMakers.push(() => makeCharacter(
  45798. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45799. {
  45800. front: {
  45801. height: math.unit(9, "feet"),
  45802. weight: math.unit(400, "lb"),
  45803. name: "Front",
  45804. image: {
  45805. source: "./media/characters/kil'aman/front.svg",
  45806. extra: 1210/1159,
  45807. bottom: 109/1319
  45808. }
  45809. },
  45810. head: {
  45811. height: math.unit(2.14, "feet"),
  45812. name: "Head",
  45813. image: {
  45814. source: "./media/characters/kil'aman/head.svg"
  45815. }
  45816. },
  45817. maw: {
  45818. height: math.unit(1.21, "feet"),
  45819. name: "Maw",
  45820. image: {
  45821. source: "./media/characters/kil'aman/maw.svg"
  45822. }
  45823. },
  45824. foot: {
  45825. height: math.unit(1.7, "feet"),
  45826. name: "Foot",
  45827. image: {
  45828. source: "./media/characters/kil'aman/foot.svg"
  45829. }
  45830. },
  45831. dick: {
  45832. height: math.unit(2.1, "feet"),
  45833. name: "Dick",
  45834. image: {
  45835. source: "./media/characters/kil'aman/dick.svg"
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(9, "feet")
  45843. },
  45844. {
  45845. name: "Canon Height",
  45846. height: math.unit(10, "miles"),
  45847. default: true
  45848. },
  45849. {
  45850. name: "Maximum",
  45851. height: math.unit(6e9, "miles")
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(90, "feet"),
  45860. weight: math.unit(675000, "lb"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/qadan/front.svg",
  45864. extra: 1012/1004,
  45865. bottom: 78/1090
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(90, "feet"),
  45870. weight: math.unit(675000, "lb"),
  45871. name: "Back",
  45872. image: {
  45873. source: "./media/characters/qadan/back.svg",
  45874. extra: 1042/1031,
  45875. bottom: 55/1097
  45876. }
  45877. },
  45878. armored: {
  45879. height: math.unit(90, "feet"),
  45880. weight: math.unit(675000, "lb"),
  45881. name: "Armored",
  45882. image: {
  45883. source: "./media/characters/qadan/armored.svg",
  45884. extra: 1047/1037,
  45885. bottom: 48/1095
  45886. }
  45887. },
  45888. },
  45889. [
  45890. {
  45891. name: "Normal",
  45892. height: math.unit(90, "feet"),
  45893. default: true
  45894. },
  45895. ]
  45896. ))
  45897. characterMakers.push(() => makeCharacter(
  45898. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45899. {
  45900. front: {
  45901. height: math.unit(6, "feet"),
  45902. weight: math.unit(225, "lb"),
  45903. name: "Front",
  45904. image: {
  45905. source: "./media/characters/brooke/front.svg",
  45906. extra: 1050/1010,
  45907. bottom: 66/1116
  45908. }
  45909. },
  45910. back: {
  45911. height: math.unit(6, "feet"),
  45912. weight: math.unit(225, "lb"),
  45913. name: "Back",
  45914. image: {
  45915. source: "./media/characters/brooke/back.svg",
  45916. extra: 1053/1013,
  45917. bottom: 41/1094
  45918. }
  45919. },
  45920. dressed: {
  45921. height: math.unit(6, "feet"),
  45922. weight: math.unit(225, "lb"),
  45923. name: "Dressed",
  45924. image: {
  45925. source: "./media/characters/brooke/dressed.svg",
  45926. extra: 1050/1010,
  45927. bottom: 66/1116
  45928. }
  45929. },
  45930. },
  45931. [
  45932. {
  45933. name: "Canon Height",
  45934. height: math.unit(500, "miles"),
  45935. default: true
  45936. },
  45937. ]
  45938. ))
  45939. characterMakers.push(() => makeCharacter(
  45940. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45941. {
  45942. front: {
  45943. height: math.unit(6 + 2/12, "feet"),
  45944. weight: math.unit(210, "lb"),
  45945. name: "Front",
  45946. image: {
  45947. source: "./media/characters/wubs/front.svg",
  45948. extra: 1345/1325,
  45949. bottom: 70/1415
  45950. }
  45951. },
  45952. back: {
  45953. height: math.unit(6 + 2/12, "feet"),
  45954. weight: math.unit(210, "lb"),
  45955. name: "Back",
  45956. image: {
  45957. source: "./media/characters/wubs/back.svg",
  45958. extra: 1296/1275,
  45959. bottom: 58/1354
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Normal",
  45966. height: math.unit(6 + 2/12, "feet"),
  45967. default: true
  45968. },
  45969. {
  45970. name: "Macro",
  45971. height: math.unit(1000, "feet")
  45972. },
  45973. {
  45974. name: "Megamacro",
  45975. height: math.unit(1, "mile")
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(4, "feet"),
  45984. weight: math.unit(120, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/blue/front.svg",
  45988. extra: 1636/1525,
  45989. bottom: 43/1679
  45990. }
  45991. },
  45992. back: {
  45993. height: math.unit(4, "feet"),
  45994. weight: math.unit(120, "lb"),
  45995. name: "Back",
  45996. image: {
  45997. source: "./media/characters/blue/back.svg",
  45998. extra: 1660/1560,
  45999. bottom: 57/1717
  46000. }
  46001. },
  46002. paws: {
  46003. height: math.unit(0.826, "feet"),
  46004. name: "Paws",
  46005. image: {
  46006. source: "./media/characters/blue/paws.svg"
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Micro",
  46013. height: math.unit(3, "inches")
  46014. },
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(4, "feet"),
  46018. default: true
  46019. },
  46020. {
  46021. name: "Femenine Form",
  46022. height: math.unit(14, "feet")
  46023. },
  46024. {
  46025. name: "Werebat Form",
  46026. height: math.unit(18, "feet")
  46027. },
  46028. ]
  46029. ))
  46030. characterMakers.push(() => makeCharacter(
  46031. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46032. {
  46033. female: {
  46034. height: math.unit(7 + 4/12, "feet"),
  46035. weight: math.unit(243, "lb"),
  46036. name: "Female",
  46037. image: {
  46038. source: "./media/characters/kaya/female.svg",
  46039. extra: 975/898,
  46040. bottom: 34/1009
  46041. }
  46042. },
  46043. herm: {
  46044. height: math.unit(7 + 4/12, "feet"),
  46045. weight: math.unit(243, "lb"),
  46046. name: "Herm",
  46047. image: {
  46048. source: "./media/characters/kaya/herm.svg",
  46049. extra: 975/898,
  46050. bottom: 34/1009
  46051. }
  46052. },
  46053. },
  46054. [
  46055. {
  46056. name: "Normal",
  46057. height: math.unit(7 + 4/12, "feet"),
  46058. default: true
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46064. {
  46065. female: {
  46066. height: math.unit(9 + 4/12, "feet"),
  46067. weight: math.unit(398, "lb"),
  46068. name: "Female",
  46069. image: {
  46070. source: "./media/characters/kassandra/female.svg",
  46071. extra: 908/839,
  46072. bottom: 61/969
  46073. }
  46074. },
  46075. intersex: {
  46076. height: math.unit(9 + 4/12, "feet"),
  46077. weight: math.unit(398, "lb"),
  46078. name: "Intersex",
  46079. image: {
  46080. source: "./media/characters/kassandra/intersex.svg",
  46081. extra: 908/839,
  46082. bottom: 61/969
  46083. }
  46084. },
  46085. },
  46086. [
  46087. {
  46088. name: "Normal",
  46089. height: math.unit(9 + 4/12, "feet"),
  46090. default: true
  46091. },
  46092. ]
  46093. ))
  46094. characterMakers.push(() => makeCharacter(
  46095. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46096. {
  46097. front: {
  46098. height: math.unit(3, "meters"),
  46099. name: "Front",
  46100. image: {
  46101. source: "./media/characters/amy/front.svg",
  46102. extra: 1380/1343,
  46103. bottom: 70/1450
  46104. }
  46105. },
  46106. back: {
  46107. height: math.unit(3, "meters"),
  46108. name: "Back",
  46109. image: {
  46110. source: "./media/characters/amy/back.svg",
  46111. extra: 1380/1347,
  46112. bottom: 66/1446
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(3, "meters"),
  46120. default: true
  46121. },
  46122. ]
  46123. ))
  46124. characterMakers.push(() => makeCharacter(
  46125. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46126. {
  46127. side: {
  46128. height: math.unit(47, "cm"),
  46129. weight: math.unit(10.8, "kg"),
  46130. name: "Side",
  46131. image: {
  46132. source: "./media/characters/alphaschakal/side.svg",
  46133. extra: 1058/568,
  46134. bottom: 62/1120
  46135. }
  46136. },
  46137. back: {
  46138. height: math.unit(78, "cm"),
  46139. weight: math.unit(10.8, "kg"),
  46140. name: "Back",
  46141. image: {
  46142. source: "./media/characters/alphaschakal/back.svg",
  46143. extra: 1102/942,
  46144. bottom: 185/1287
  46145. }
  46146. },
  46147. head: {
  46148. height: math.unit(28, "cm"),
  46149. name: "Head",
  46150. image: {
  46151. source: "./media/characters/alphaschakal/head.svg",
  46152. extra: 696/508,
  46153. bottom: 0/696
  46154. }
  46155. },
  46156. paw: {
  46157. height: math.unit(16, "cm"),
  46158. name: "Paw",
  46159. image: {
  46160. source: "./media/characters/alphaschakal/paw.svg"
  46161. }
  46162. },
  46163. },
  46164. [
  46165. {
  46166. name: "Normal",
  46167. height: math.unit(47, "cm"),
  46168. default: true
  46169. },
  46170. {
  46171. name: "Macro",
  46172. height: math.unit(340, "cm")
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46178. {
  46179. front: {
  46180. height: math.unit(36, "earths"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/ecobyss/front.svg",
  46184. extra: 1282/1215,
  46185. bottom: 11/1293
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(36, "earths"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/ecobyss/back.svg",
  46193. extra: 1291/1222,
  46194. bottom: 8/1299
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(36, "earths"),
  46202. default: true
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46208. {
  46209. front: {
  46210. height: math.unit(12, "feet"),
  46211. name: "Front",
  46212. image: {
  46213. source: "./media/characters/vasuk/front.svg",
  46214. extra: 1326/1207,
  46215. bottom: 64/1390
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(12, "feet"),
  46223. default: true
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46229. {
  46230. side: {
  46231. height: math.unit(100, "feet"),
  46232. name: "Side",
  46233. image: {
  46234. source: "./media/characters/linneaus/side.svg",
  46235. extra: 987/807,
  46236. bottom: 47/1034
  46237. }
  46238. },
  46239. },
  46240. [
  46241. {
  46242. name: "Macro",
  46243. height: math.unit(100, "feet"),
  46244. default: true
  46245. },
  46246. ]
  46247. ))
  46248. characterMakers.push(() => makeCharacter(
  46249. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46250. {
  46251. front: {
  46252. height: math.unit(8, "feet"),
  46253. weight: math.unit(1200, "lb"),
  46254. name: "Front",
  46255. image: {
  46256. source: "./media/characters/nyterious-daligdig/front.svg",
  46257. extra: 1284/1094,
  46258. bottom: 84/1368
  46259. }
  46260. },
  46261. back: {
  46262. height: math.unit(8, "feet"),
  46263. weight: math.unit(1200, "lb"),
  46264. name: "Back",
  46265. image: {
  46266. source: "./media/characters/nyterious-daligdig/back.svg",
  46267. extra: 1301/1121,
  46268. bottom: 129/1430
  46269. }
  46270. },
  46271. mouth: {
  46272. height: math.unit(1.464, "feet"),
  46273. name: "Mouth",
  46274. image: {
  46275. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46276. }
  46277. },
  46278. },
  46279. [
  46280. {
  46281. name: "Small",
  46282. height: math.unit(8, "feet"),
  46283. default: true
  46284. },
  46285. {
  46286. name: "Normal",
  46287. height: math.unit(15, "feet")
  46288. },
  46289. {
  46290. name: "Macro",
  46291. height: math.unit(90, "feet")
  46292. },
  46293. ]
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46297. {
  46298. front: {
  46299. height: math.unit(7 + 4/12, "feet"),
  46300. weight: math.unit(252, "lb"),
  46301. name: "Front",
  46302. image: {
  46303. source: "./media/characters/bandel/front.svg",
  46304. extra: 1946/1775,
  46305. bottom: 26/1972
  46306. }
  46307. },
  46308. back: {
  46309. height: math.unit(7 + 4/12, "feet"),
  46310. weight: math.unit(252, "lb"),
  46311. name: "Back",
  46312. image: {
  46313. source: "./media/characters/bandel/back.svg",
  46314. extra: 1940/1770,
  46315. bottom: 25/1965
  46316. }
  46317. },
  46318. maw: {
  46319. height: math.unit(2.15, "feet"),
  46320. name: "Maw",
  46321. image: {
  46322. source: "./media/characters/bandel/maw.svg"
  46323. }
  46324. },
  46325. stomach: {
  46326. height: math.unit(1.95, "feet"),
  46327. name: "Stomach",
  46328. image: {
  46329. source: "./media/characters/bandel/stomach.svg"
  46330. }
  46331. },
  46332. },
  46333. [
  46334. {
  46335. name: "Normal",
  46336. height: math.unit(7 + 4/12, "feet"),
  46337. default: true
  46338. },
  46339. ]
  46340. ))
  46341. characterMakers.push(() => makeCharacter(
  46342. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46343. {
  46344. front: {
  46345. height: math.unit(10 + 5/12, "feet"),
  46346. weight: math.unit(773.5, "kg"),
  46347. name: "Front",
  46348. image: {
  46349. source: "./media/characters/zed/front.svg",
  46350. extra: 987/941,
  46351. bottom: 52/1039
  46352. }
  46353. },
  46354. },
  46355. [
  46356. {
  46357. name: "Short",
  46358. height: math.unit(5 + 4/12, "feet")
  46359. },
  46360. {
  46361. name: "Average",
  46362. height: math.unit(10 + 5/12, "feet"),
  46363. default: true
  46364. },
  46365. {
  46366. name: "Mini-Macro",
  46367. height: math.unit(24 + 9/12, "feet")
  46368. },
  46369. {
  46370. name: "Macro",
  46371. height: math.unit(249, "feet")
  46372. },
  46373. {
  46374. name: "Mega-Macro",
  46375. height: math.unit(12490, "feet")
  46376. },
  46377. {
  46378. name: "Giga-Macro",
  46379. height: math.unit(24.9, "miles")
  46380. },
  46381. {
  46382. name: "Tera-Macro",
  46383. height: math.unit(24900, "miles")
  46384. },
  46385. {
  46386. name: "Cosmic Scale",
  46387. height: math.unit(38.9, "lightyears")
  46388. },
  46389. {
  46390. name: "Universal Scale",
  46391. height: math.unit(138e12, "lightyears")
  46392. },
  46393. ]
  46394. ))
  46395. characterMakers.push(() => makeCharacter(
  46396. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46397. {
  46398. front: {
  46399. height: math.unit(1561, "inches"),
  46400. name: "Front",
  46401. image: {
  46402. source: "./media/characters/ivan/front.svg",
  46403. extra: 1126/1071,
  46404. bottom: 26/1152
  46405. }
  46406. },
  46407. back: {
  46408. height: math.unit(1561, "inches"),
  46409. name: "Back",
  46410. image: {
  46411. source: "./media/characters/ivan/back.svg",
  46412. extra: 1134/1079,
  46413. bottom: 30/1164
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(1561, "inches"),
  46421. default: true
  46422. },
  46423. ]
  46424. ))
  46425. characterMakers.push(() => makeCharacter(
  46426. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46427. {
  46428. front: {
  46429. height: math.unit(5 + 7/12, "feet"),
  46430. weight: math.unit(150, "lb"),
  46431. name: "Front",
  46432. image: {
  46433. source: "./media/characters/robin-arctic-hare/front.svg",
  46434. extra: 1148/974,
  46435. bottom: 20/1168
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(5 + 7/12, "feet"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. //characters
  46448. function makeCharacters() {
  46449. const results = [];
  46450. characterMakers.forEach(character => {
  46451. results.push(character());
  46452. });
  46453. return results;
  46454. }