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.
 
 
 

49227 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. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(150, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg"
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Micro",
  4847. height: math.unit(3, "inches"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Normal",
  4852. height: math.unit(5 + 5 / 12, "feet")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/tyrnn/front.svg"
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Main Height",
  4871. height: math.unit(355, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Fave. Height",
  4876. height: math.unit(2400, "feet")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(300, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/appledectomy/front.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Macro",
  4895. height: math.unit(2500, "feet")
  4896. },
  4897. {
  4898. name: "Megamacro",
  4899. height: math.unit(50, "miles"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(5000, "miles")
  4905. },
  4906. {
  4907. name: "Teramacro",
  4908. height: math.unit(250000, "miles")
  4909. },
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(200, "lbs"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/vulpes/front.svg",
  4921. extra: 573 / 543,
  4922. bottom: 0.033
  4923. }
  4924. },
  4925. side: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(200, "lbs"),
  4928. name: "Side",
  4929. image: {
  4930. source: "./media/characters/vulpes/side.svg",
  4931. extra: 577 / 549,
  4932. bottom: 11 / 588
  4933. }
  4934. },
  4935. back: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(200, "lbs"),
  4938. name: "Back",
  4939. image: {
  4940. source: "./media/characters/vulpes/back.svg",
  4941. extra: 573 / 549,
  4942. bottom: 20 / 593
  4943. }
  4944. },
  4945. feet: {
  4946. height: math.unit(1.276, "feet"),
  4947. name: "Feet",
  4948. image: {
  4949. source: "./media/characters/vulpes/feet.svg"
  4950. }
  4951. },
  4952. maw: {
  4953. height: math.unit(1.18, "feet"),
  4954. name: "Maw",
  4955. image: {
  4956. source: "./media/characters/vulpes/maw.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Micro",
  4963. height: math.unit(2, "inches")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(6.3, "feet")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(850, "feet")
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(7500, "feet"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(570000, "miles")
  4981. }
  4982. ]
  4983. ))
  4984. characterMakers.push(() => makeCharacter(
  4985. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4986. {
  4987. front: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(210, "lbs"),
  4990. name: "Front",
  4991. image: {
  4992. source: "./media/characters/rain-fallen/front.svg"
  4993. }
  4994. },
  4995. side: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(210, "lbs"),
  4998. name: "Side",
  4999. image: {
  5000. source: "./media/characters/rain-fallen/side.svg"
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(210, "lbs"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/rain-fallen/back.svg"
  5009. }
  5010. },
  5011. feral: {
  5012. height: math.unit(9, "feet"),
  5013. weight: math.unit(700, "lbs"),
  5014. name: "Feral",
  5015. image: {
  5016. source: "./media/characters/rain-fallen/feral.svg"
  5017. }
  5018. },
  5019. },
  5020. [
  5021. {
  5022. name: "Meddling with Mortals",
  5023. height: math.unit(8 + 8/12, "feet")
  5024. },
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(5, "meter")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(150, "meter"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Megamacro",
  5036. height: math.unit(278e6, "meter")
  5037. },
  5038. {
  5039. name: "Gigamacro",
  5040. height: math.unit(2e9, "meter")
  5041. },
  5042. {
  5043. name: "Teramacro",
  5044. height: math.unit(8e12, "meter")
  5045. },
  5046. {
  5047. name: "Devourer",
  5048. height: math.unit(14, "zettameters")
  5049. },
  5050. {
  5051. name: "Scarlet King",
  5052. height: math.unit(18, "yottameters")
  5053. },
  5054. {
  5055. name: "Void",
  5056. height: math.unit(1e88, "yottameters")
  5057. }
  5058. ]
  5059. ))
  5060. characterMakers.push(() => makeCharacter(
  5061. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5062. {
  5063. standing: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(180, "lbs"),
  5066. name: "Standing",
  5067. image: {
  5068. source: "./media/characters/zaakira/standing.svg",
  5069. extra: 1599/1504,
  5070. bottom: 39/1638
  5071. }
  5072. },
  5073. laying: {
  5074. height: math.unit(3, "feet"),
  5075. weight: math.unit(180, "lbs"),
  5076. name: "Laying",
  5077. image: {
  5078. source: "./media/characters/zaakira/laying.svg"
  5079. }
  5080. },
  5081. },
  5082. [
  5083. {
  5084. name: "Normal",
  5085. height: math.unit(12, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(279, "feet"),
  5090. default: true
  5091. }
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5096. {
  5097. femSfw: {
  5098. height: math.unit(8, "feet"),
  5099. weight: math.unit(350, "lb"),
  5100. name: "Fem",
  5101. image: {
  5102. source: "./media/characters/sigvald/fem-sfw.svg",
  5103. extra: 182 / 164,
  5104. bottom: 8.7 / 190.5
  5105. }
  5106. },
  5107. femNsfw: {
  5108. height: math.unit(8, "feet"),
  5109. weight: math.unit(350, "lb"),
  5110. name: "Fem (NSFW)",
  5111. image: {
  5112. source: "./media/characters/sigvald/fem-nsfw.svg",
  5113. extra: 182 / 164,
  5114. bottom: 8.7 / 190.5
  5115. }
  5116. },
  5117. maleNsfw: {
  5118. height: math.unit(8, "feet"),
  5119. weight: math.unit(350, "lb"),
  5120. name: "Male (NSFW)",
  5121. image: {
  5122. source: "./media/characters/sigvald/male-nsfw.svg",
  5123. extra: 182 / 164,
  5124. bottom: 8.7 / 190.5
  5125. }
  5126. },
  5127. hermNsfw: {
  5128. height: math.unit(8, "feet"),
  5129. weight: math.unit(350, "lb"),
  5130. name: "Herm (NSFW)",
  5131. image: {
  5132. source: "./media/characters/sigvald/herm-nsfw.svg",
  5133. extra: 182 / 164,
  5134. bottom: 8.7 / 190.5
  5135. }
  5136. },
  5137. dick: {
  5138. height: math.unit(2.36, "feet"),
  5139. name: "Dick",
  5140. image: {
  5141. source: "./media/characters/sigvald/dick.svg"
  5142. }
  5143. },
  5144. eye: {
  5145. height: math.unit(0.31, "feet"),
  5146. name: "Eye",
  5147. image: {
  5148. source: "./media/characters/sigvald/eye.svg"
  5149. }
  5150. },
  5151. mouth: {
  5152. height: math.unit(0.92, "feet"),
  5153. name: "Mouth",
  5154. image: {
  5155. source: "./media/characters/sigvald/mouth.svg"
  5156. }
  5157. },
  5158. paws: {
  5159. height: math.unit(2.2, "feet"),
  5160. name: "Paws",
  5161. image: {
  5162. source: "./media/characters/sigvald/paws.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Normal",
  5169. height: math.unit(8, "feet")
  5170. },
  5171. {
  5172. name: "Large",
  5173. height: math.unit(12, "feet")
  5174. },
  5175. {
  5176. name: "Larger",
  5177. height: math.unit(20, "feet")
  5178. },
  5179. {
  5180. name: "Macro",
  5181. height: math.unit(150, "feet")
  5182. },
  5183. {
  5184. name: "Macro+",
  5185. height: math.unit(200, "feet"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5192. {
  5193. side: {
  5194. height: math.unit(12, "feet"),
  5195. weight: math.unit(2000, "kg"),
  5196. name: "Side",
  5197. image: {
  5198. source: "./media/characters/scott/side.svg",
  5199. extra: 754 / 724,
  5200. bottom: 0.069
  5201. }
  5202. },
  5203. upright: {
  5204. height: math.unit(12, "feet"),
  5205. weight: math.unit(2000, "kg"),
  5206. name: "Upright",
  5207. image: {
  5208. source: "./media/characters/scott/upright.svg",
  5209. extra: 3881 / 3722,
  5210. bottom: 0.05
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(12, "feet"),
  5218. default: true
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5224. {
  5225. side: {
  5226. height: math.unit(8, "meters"),
  5227. weight: math.unit(84755, "lbs"),
  5228. name: "Side",
  5229. image: {
  5230. source: "./media/characters/tobias/side.svg",
  5231. extra: 1474 / 1096,
  5232. bottom: 38.9 / 1513.1235
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(8, "meters"),
  5240. default: true
  5241. },
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5246. {
  5247. front: {
  5248. height: math.unit(5.5, "feet"),
  5249. weight: math.unit(400, "lbs"),
  5250. name: "Front",
  5251. image: {
  5252. source: "./media/characters/kieran/front.svg",
  5253. extra: 2694 / 2364,
  5254. bottom: 217 / 2908
  5255. }
  5256. },
  5257. side: {
  5258. height: math.unit(5.5, "feet"),
  5259. weight: math.unit(400, "lbs"),
  5260. name: "Side",
  5261. image: {
  5262. source: "./media/characters/kieran/side.svg",
  5263. extra: 875 / 777,
  5264. bottom: 84.6 / 959
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(5.5, "feet"),
  5272. default: true
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5278. {
  5279. side: {
  5280. height: math.unit(2, "meters"),
  5281. weight: math.unit(70, "kg"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/sanya/side.svg",
  5285. bottom: 0.02,
  5286. extra: 1.02
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Small",
  5293. height: math.unit(2, "meters")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(3, "meters")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(16, "meters"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(2, "meters"),
  5311. weight: math.unit(120, "kg"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/miranda/front.svg",
  5315. extra: 195 / 185,
  5316. bottom: 10.9 / 206.5
  5317. }
  5318. },
  5319. back: {
  5320. height: math.unit(2, "meters"),
  5321. weight: math.unit(120, "kg"),
  5322. name: "Back",
  5323. image: {
  5324. source: "./media/characters/miranda/back.svg",
  5325. extra: 201 / 193,
  5326. bottom: 2.3 / 203.7
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(10, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "James", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. side: {
  5342. height: math.unit(2, "meters"),
  5343. weight: math.unit(100, "kg"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/james/front.svg",
  5347. extra: 10 / 8.5
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Normal",
  5354. height: math.unit(8.5, "feet"),
  5355. default: true
  5356. }
  5357. ]
  5358. ))
  5359. characterMakers.push(() => makeCharacter(
  5360. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5361. {
  5362. side: {
  5363. height: math.unit(9.5, "feet"),
  5364. weight: math.unit(2500, "lbs"),
  5365. name: "Side",
  5366. image: {
  5367. source: "./media/characters/heather/side.svg"
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(9.5, "feet"),
  5375. default: true
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5381. {
  5382. side: {
  5383. height: math.unit(6.5, "feet"),
  5384. weight: math.unit(400, "lbs"),
  5385. name: "Side",
  5386. image: {
  5387. source: "./media/characters/lukas/side.svg",
  5388. extra: 7.25 / 6.5
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(6.5, "feet"),
  5396. default: true
  5397. }
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5402. {
  5403. side: {
  5404. height: math.unit(5, "feet"),
  5405. weight: math.unit(3000, "lbs"),
  5406. name: "Side",
  5407. image: {
  5408. source: "./media/characters/louise/side.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(5, "feet"),
  5416. default: true
  5417. }
  5418. ]
  5419. ))
  5420. characterMakers.push(() => makeCharacter(
  5421. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5422. {
  5423. side: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(150, "lbs"),
  5426. name: "Side",
  5427. image: {
  5428. source: "./media/characters/ramona/side.svg",
  5429. extra: 871/854,
  5430. bottom: 41/912
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(5.3, "meters"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(20, "stories")
  5443. },
  5444. {
  5445. name: "Macro+",
  5446. height: math.unit(50, "stories")
  5447. },
  5448. ]
  5449. ))
  5450. characterMakers.push(() => makeCharacter(
  5451. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5452. {
  5453. standing: {
  5454. height: math.unit(5.75, "feet"),
  5455. weight: math.unit(160, "lbs"),
  5456. name: "Standing",
  5457. image: {
  5458. source: "./media/characters/deerpuff/standing.svg",
  5459. extra: 682 / 624
  5460. }
  5461. },
  5462. sitting: {
  5463. height: math.unit(5.75 / 1.79, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Sitting",
  5466. image: {
  5467. source: "./media/characters/deerpuff/sitting.svg",
  5468. bottom: 44 / 400,
  5469. extra: 1
  5470. }
  5471. },
  5472. taurLaying: {
  5473. height: math.unit(6, "feet"),
  5474. weight: math.unit(400, "lbs"),
  5475. name: "Taur (Laying)",
  5476. image: {
  5477. source: "./media/characters/deerpuff/taur-laying.svg"
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Puffball",
  5484. height: math.unit(6, "inches")
  5485. },
  5486. {
  5487. name: "Normalpuff",
  5488. height: math.unit(5.75, "feet")
  5489. },
  5490. {
  5491. name: "Macropuff",
  5492. height: math.unit(1500, "feet"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megapuff",
  5497. height: math.unit(500, "miles")
  5498. },
  5499. {
  5500. name: "Gigapuff",
  5501. height: math.unit(250000, "miles")
  5502. },
  5503. {
  5504. name: "Omegapuff",
  5505. height: math.unit(1000, "lightyears")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5511. {
  5512. stomping: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(170, "lbs"),
  5515. name: "Stomping",
  5516. image: {
  5517. source: "./media/characters/vivian/stomping.svg"
  5518. }
  5519. },
  5520. sitting: {
  5521. height: math.unit(6 / 1.75, "feet"),
  5522. weight: math.unit(170, "lbs"),
  5523. name: "Sitting",
  5524. image: {
  5525. source: "./media/characters/vivian/sitting.svg",
  5526. bottom: 1 / 6.4,
  5527. extra: 1,
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Normal",
  5534. height: math.unit(7, "feet"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(10, "stories")
  5540. },
  5541. {
  5542. name: "Macro+",
  5543. height: math.unit(30, "stories")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(10, "miles")
  5548. },
  5549. {
  5550. name: "Megamacro+",
  5551. height: math.unit(2750000, "meters")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(160, "lbs"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/prince/front.svg",
  5564. extra: 3400 / 3000
  5565. }
  5566. },
  5567. jumping: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Jumping",
  5571. image: {
  5572. source: "./media/characters/prince/jump.svg",
  5573. extra: 2555 / 2134
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(7.75, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Not cute",
  5585. height: math.unit(17, "feet")
  5586. },
  5587. {
  5588. name: "I said NOT",
  5589. height: math.unit(91, "feet")
  5590. },
  5591. {
  5592. name: "Please stop",
  5593. height: math.unit(560, "feet")
  5594. },
  5595. {
  5596. name: "What have you done",
  5597. height: math.unit(2200, "feet")
  5598. },
  5599. {
  5600. name: "Deer God",
  5601. height: math.unit(3.6, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5607. {
  5608. standing: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(300, "lbs"),
  5611. name: "Standing",
  5612. image: {
  5613. source: "./media/characters/psymon/standing.svg",
  5614. extra: 1888 / 1810,
  5615. bottom: 0.05
  5616. }
  5617. },
  5618. slithering: {
  5619. height: math.unit(6, "feet"),
  5620. weight: math.unit(300, "lbs"),
  5621. name: "Slithering",
  5622. image: {
  5623. source: "./media/characters/psymon/slithering.svg",
  5624. extra: 1330 / 1224
  5625. }
  5626. },
  5627. slitheringAlt: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering (Alt)",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering-alt.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(11.25, "feet"),
  5641. default: true
  5642. },
  5643. {
  5644. name: "Large",
  5645. height: math.unit(27, "feet")
  5646. },
  5647. {
  5648. name: "Giant",
  5649. height: math.unit(87, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(365, "feet")
  5654. },
  5655. {
  5656. name: "Megamacro",
  5657. height: math.unit(3, "miles")
  5658. },
  5659. {
  5660. name: "World Serpent",
  5661. height: math.unit(8000, "miles")
  5662. },
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(180, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/daimos/front.svg",
  5674. extra: 4160 / 3897,
  5675. bottom: 0.021
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Normal",
  5682. height: math.unit(8, "feet"),
  5683. default: true
  5684. },
  5685. {
  5686. name: "Big Dog",
  5687. height: math.unit(22, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(127, "feet")
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(3600, "feet")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5701. {
  5702. side: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(180, "lbs"),
  5705. name: "Side",
  5706. image: {
  5707. source: "./media/characters/blake/side.svg",
  5708. extra: 1212 / 1120,
  5709. bottom: 0.05
  5710. }
  5711. },
  5712. crouched: {
  5713. height: math.unit(6 * 0.57, "feet"),
  5714. weight: math.unit(180, "lbs"),
  5715. name: "Crouched",
  5716. image: {
  5717. source: "./media/characters/blake/crouched.svg",
  5718. extra: 840 / 587,
  5719. bottom: 0.04
  5720. }
  5721. },
  5722. bent: {
  5723. height: math.unit(6 * 0.75, "feet"),
  5724. weight: math.unit(180, "lbs"),
  5725. name: "Bent",
  5726. image: {
  5727. source: "./media/characters/blake/bent.svg",
  5728. extra: 592 / 544,
  5729. bottom: 0.035
  5730. }
  5731. },
  5732. },
  5733. [
  5734. {
  5735. name: "Normal",
  5736. height: math.unit(8 + 1 / 6, "feet"),
  5737. default: true
  5738. },
  5739. {
  5740. name: "Big Backside",
  5741. height: math.unit(37, "feet")
  5742. },
  5743. {
  5744. name: "Subway Shredder",
  5745. height: math.unit(72, "feet")
  5746. },
  5747. {
  5748. name: "City Carver",
  5749. height: math.unit(1675, "feet")
  5750. },
  5751. {
  5752. name: "Tectonic Tweaker",
  5753. height: math.unit(2300, "miles")
  5754. },
  5755. ]
  5756. ))
  5757. characterMakers.push(() => makeCharacter(
  5758. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5759. {
  5760. front: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(180, "lbs"),
  5763. name: "Front",
  5764. image: {
  5765. source: "./media/characters/guisetto/front.svg",
  5766. extra: 856 / 817,
  5767. bottom: 0.06
  5768. }
  5769. },
  5770. airborne: {
  5771. height: math.unit(6, "feet"),
  5772. weight: math.unit(180, "lbs"),
  5773. name: "Airborne",
  5774. image: {
  5775. source: "./media/characters/guisetto/airborne.svg",
  5776. extra: 584 / 525
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(10 + 11 / 12, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Large",
  5788. height: math.unit(35, "feet")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(475, "feet")
  5793. },
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(6, "feet"),
  5801. weight: math.unit(180, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/luxor/front.svg",
  5805. extra: 2940 / 2152
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/luxor/back.svg",
  5814. extra: 1083 / 960
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(5 + 5 / 6, "feet"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Lamp",
  5826. height: math.unit(50, "feet")
  5827. },
  5828. {
  5829. name: "Lämp",
  5830. height: math.unit(300, "feet")
  5831. },
  5832. {
  5833. name: "The sun is a lamp",
  5834. height: math.unit(250000, "miles")
  5835. },
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5840. {
  5841. front: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(50, "lbs"),
  5844. name: "Front",
  5845. image: {
  5846. source: "./media/characters/huoyan/front.svg"
  5847. }
  5848. },
  5849. side: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(180, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/huoyan/side.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Chef",
  5861. height: math.unit(9, "feet")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(65, "feet"),
  5866. default: true
  5867. },
  5868. {
  5869. name: "Macro",
  5870. height: math.unit(780, "feet")
  5871. },
  5872. {
  5873. name: "Flaming Mountain",
  5874. height: math.unit(4.8, "miles")
  5875. },
  5876. {
  5877. name: "Celestial",
  5878. height: math.unit(765000, "miles")
  5879. },
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(5 + 3 / 4, "feet"),
  5887. weight: math.unit(120, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/tails/front.svg"
  5891. }
  5892. }
  5893. },
  5894. [
  5895. {
  5896. name: "Normal",
  5897. height: math.unit(5 + 3 / 4, "feet"),
  5898. default: true
  5899. }
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(4, "feet"),
  5907. weight: math.unit(50, "lbs"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/rainy/front.svg"
  5911. }
  5912. }
  5913. },
  5914. [
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(800, "feet"),
  5918. default: true
  5919. }
  5920. ]
  5921. ))
  5922. characterMakers.push(() => makeCharacter(
  5923. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5924. {
  5925. front: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(150, "lbs"),
  5928. name: "Front",
  5929. image: {
  5930. source: "./media/characters/rainier/front.svg"
  5931. }
  5932. }
  5933. },
  5934. [
  5935. {
  5936. name: "Micro",
  5937. height: math.unit(2, "mm"),
  5938. default: true
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5944. {
  5945. front: {
  5946. height: math.unit(8 + 4/12, "feet"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/andy-renard/front.svg",
  5950. extra: 1839/1726,
  5951. bottom: 134/1973
  5952. }
  5953. },
  5954. back: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Back",
  5957. image: {
  5958. source: "./media/characters/andy-renard/back.svg",
  5959. extra: 1838/1710,
  5960. bottom: 105/1943
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Tall",
  5967. height: math.unit(8 + 4/12, "feet")
  5968. },
  5969. {
  5970. name: "Mini Macro",
  5971. height: math.unit(15, "feet"),
  5972. default: true
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(100, "feet")
  5977. },
  5978. {
  5979. name: "Mega Macro",
  5980. height: math.unit(1000, "feet")
  5981. },
  5982. {
  5983. name: "Giga Macro",
  5984. height: math.unit(10, "miles")
  5985. },
  5986. {
  5987. name: "God Macro",
  5988. height: math.unit(1, "multiverse")
  5989. },
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5994. {
  5995. front: {
  5996. height: math.unit(6, "feet"),
  5997. weight: math.unit(210, "lbs"),
  5998. name: "Front",
  5999. image: {
  6000. source: "./media/characters/cimmaron/front-sfw.svg",
  6001. extra: 701 / 676,
  6002. bottom: 0.046
  6003. }
  6004. },
  6005. back: {
  6006. height: math.unit(6, "feet"),
  6007. weight: math.unit(210, "lbs"),
  6008. name: "Back",
  6009. image: {
  6010. source: "./media/characters/cimmaron/back-sfw.svg",
  6011. extra: 701 / 676,
  6012. bottom: 0.046
  6013. }
  6014. },
  6015. frontNsfw: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(210, "lbs"),
  6018. name: "Front (NSFW)",
  6019. image: {
  6020. source: "./media/characters/cimmaron/front-nsfw.svg",
  6021. extra: 701 / 676,
  6022. bottom: 0.046
  6023. }
  6024. },
  6025. backNsfw: {
  6026. height: math.unit(6, "feet"),
  6027. weight: math.unit(210, "lbs"),
  6028. name: "Back (NSFW)",
  6029. image: {
  6030. source: "./media/characters/cimmaron/back-nsfw.svg",
  6031. extra: 701 / 676,
  6032. bottom: 0.046
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(1.714, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/cimmaron/dick.svg"
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Normal",
  6046. height: math.unit(6, "feet"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Macro Mayor",
  6051. height: math.unit(350, "meters")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(6, "feet"),
  6060. weight: math.unit(200, "lbs"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/akari/front.svg",
  6064. extra: 962 / 901,
  6065. bottom: 0.04
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(5, "inches"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(7, "feet")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(140, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/cynosura/front.svg",
  6090. extra: 896 / 847
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/cynosura/back.svg",
  6099. extra: 1365 / 1250
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(4, "inches")
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(5.75, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Tall",
  6115. height: math.unit(10, "feet")
  6116. },
  6117. {
  6118. name: "Big",
  6119. height: math.unit(20, "feet")
  6120. },
  6121. {
  6122. name: "Macro",
  6123. height: math.unit(50, "feet")
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(13 + 2/12, "feet"),
  6132. weight: math.unit(800, "kg"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/gin/front.svg",
  6136. extra: 1312/1191,
  6137. bottom: 45/1357
  6138. }
  6139. },
  6140. mouth: {
  6141. height: math.unit(2.39 * 1.8, "feet"),
  6142. name: "Mouth",
  6143. image: {
  6144. source: "./media/characters/gin/mouth.svg"
  6145. }
  6146. },
  6147. hand: {
  6148. height: math.unit(1.57 * 2.19, "feet"),
  6149. name: "Hand",
  6150. image: {
  6151. source: "./media/characters/gin/hand.svg"
  6152. }
  6153. },
  6154. foot: {
  6155. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6156. name: "Foot",
  6157. image: {
  6158. source: "./media/characters/gin/foot.svg"
  6159. }
  6160. },
  6161. sole: {
  6162. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6163. name: "Sole",
  6164. image: {
  6165. source: "./media/characters/gin/sole.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Very Small",
  6172. height: math.unit(13 + 2 / 12, "feet")
  6173. },
  6174. {
  6175. name: "Micro",
  6176. height: math.unit(600, "miles")
  6177. },
  6178. {
  6179. name: "Regular",
  6180. height: math.unit(20, "earths"),
  6181. default: true
  6182. },
  6183. {
  6184. name: "Macro",
  6185. height: math.unit(2.2, "solarradii")
  6186. },
  6187. {
  6188. name: "Teramacro",
  6189. height: math.unit(1.2, "galaxies")
  6190. },
  6191. {
  6192. name: "Omegamacro",
  6193. height: math.unit(200, "universes")
  6194. },
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6199. {
  6200. front: {
  6201. height: math.unit(6 + 1 / 6, "feet"),
  6202. weight: math.unit(178, "lbs"),
  6203. name: "Front",
  6204. image: {
  6205. source: "./media/characters/guy/front.svg"
  6206. }
  6207. }
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(6 + 1 / 6, "feet"),
  6213. default: true
  6214. },
  6215. {
  6216. name: "Large",
  6217. height: math.unit(25 + 7 / 12, "feet")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(60 + 9 / 12, "feet")
  6222. },
  6223. {
  6224. name: "Macro+",
  6225. height: math.unit(246, "feet")
  6226. },
  6227. {
  6228. name: "Macro++",
  6229. height: math.unit(878, "feet")
  6230. }
  6231. ]
  6232. ))
  6233. characterMakers.push(() => makeCharacter(
  6234. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6235. {
  6236. front: {
  6237. height: math.unit(9, "feet"),
  6238. weight: math.unit(800, "lbs"),
  6239. name: "Front",
  6240. image: {
  6241. source: "./media/characters/tiberius/front.svg",
  6242. extra: 2295 / 2071
  6243. }
  6244. },
  6245. back: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Back",
  6249. image: {
  6250. source: "./media/characters/tiberius/back.svg",
  6251. extra: 2373 / 2160
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(9, "feet"),
  6259. default: true
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6265. {
  6266. front: {
  6267. height: math.unit(6, "feet"),
  6268. weight: math.unit(600, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/surgo/front.svg",
  6272. extra: 3591 / 2227
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/surgo/back.svg",
  6281. extra: 3557 / 2228
  6282. }
  6283. },
  6284. laying: {
  6285. height: math.unit(6 * 0.85, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Laying",
  6288. image: {
  6289. source: "./media/characters/surgo/laying.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(6, "feet"),
  6297. default: true
  6298. }
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6303. {
  6304. side: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(150, "lbs"),
  6307. name: "Side",
  6308. image: {
  6309. source: "./media/characters/cibus/side.svg",
  6310. extra: 800 / 400
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6, "feet"),
  6318. default: true
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(240, "lbs"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/nibbles/front.svg"
  6331. }
  6332. },
  6333. side: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(240, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/nibbles/side.svg"
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(9, "feet"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6352. {
  6353. side: {
  6354. height: math.unit(5 + 1 / 6, "feet"),
  6355. weight: math.unit(130, "lbs"),
  6356. name: "Side",
  6357. image: {
  6358. source: "./media/characters/rikky/side.svg",
  6359. extra: 851 / 801
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5 + 1 / 6, "feet")
  6367. },
  6368. {
  6369. name: "Macro",
  6370. height: math.unit(152, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Megamacro",
  6375. height: math.unit(7, "miles")
  6376. }
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6381. {
  6382. side: {
  6383. height: math.unit(370, "cm"),
  6384. weight: math.unit(350, "lbs"),
  6385. name: "Side",
  6386. image: {
  6387. source: "./media/characters/malfressa/side.svg"
  6388. }
  6389. },
  6390. walking: {
  6391. height: math.unit(370, "cm"),
  6392. weight: math.unit(350, "lbs"),
  6393. name: "Walking",
  6394. image: {
  6395. source: "./media/characters/malfressa/walking.svg"
  6396. }
  6397. },
  6398. feral: {
  6399. height: math.unit(2500, "cm"),
  6400. weight: math.unit(100000, "lbs"),
  6401. name: "Feral",
  6402. image: {
  6403. source: "./media/characters/malfressa/feral.svg",
  6404. extra: 2108 / 837,
  6405. bottom: 0.02
  6406. }
  6407. },
  6408. },
  6409. [
  6410. {
  6411. name: "Normal",
  6412. height: math.unit(370, "cm")
  6413. },
  6414. {
  6415. name: "Macro",
  6416. height: math.unit(300, "meters"),
  6417. default: true
  6418. }
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6423. {
  6424. front: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(60, "kg"),
  6427. name: "Front",
  6428. image: {
  6429. source: "./media/characters/jaro/front.svg",
  6430. extra: 845/817,
  6431. bottom: 45/890
  6432. }
  6433. },
  6434. back: {
  6435. height: math.unit(6, "feet"),
  6436. weight: math.unit(60, "kg"),
  6437. name: "Back",
  6438. image: {
  6439. source: "./media/characters/jaro/back.svg",
  6440. extra: 847/817,
  6441. bottom: 34/881
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(7, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.5, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Minimacro",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(200, "meters")
  6462. }
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(195, "lb"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/rogue/front.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Macro",
  6480. height: math.unit(90, "feet"),
  6481. default: true
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6487. {
  6488. front: {
  6489. height: math.unit(5 + 8 / 12, "feet"),
  6490. weight: math.unit(140, "lb"),
  6491. name: "Front",
  6492. image: {
  6493. source: "./media/characters/piper/front.svg",
  6494. extra: 3948/3655,
  6495. bottom: 0/3948
  6496. }
  6497. },
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(2, "inches")
  6503. },
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(5 + 8 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(250, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Megamacro",
  6515. height: math.unit(7, "miles")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(220, "lb"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/gemini/front.svg"
  6528. }
  6529. },
  6530. back: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(220, "lb"),
  6533. name: "Back",
  6534. image: {
  6535. source: "./media/characters/gemini/back.svg"
  6536. }
  6537. },
  6538. kneeling: {
  6539. height: math.unit(6 / 1.5, "feet"),
  6540. weight: math.unit(220, "lb"),
  6541. name: "Kneeling",
  6542. image: {
  6543. source: "./media/characters/gemini/kneeling.svg",
  6544. bottom: 0.02
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(300, "meters"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Megamacro",
  6556. height: math.unit(6900, "meters")
  6557. },
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6562. {
  6563. anthro: {
  6564. height: math.unit(2.35, "meters"),
  6565. weight: math.unit(73, "kg"),
  6566. name: "Anthro",
  6567. image: {
  6568. source: "./media/characters/alicia/anthro.svg",
  6569. extra: 2571 / 2385,
  6570. bottom: 75 / 2648
  6571. }
  6572. },
  6573. paw: {
  6574. height: math.unit(1.32, "feet"),
  6575. name: "Paw",
  6576. image: {
  6577. source: "./media/characters/alicia/paw.svg"
  6578. }
  6579. },
  6580. feral: {
  6581. height: math.unit(1.69, "meters"),
  6582. weight: math.unit(73, "kg"),
  6583. name: "Feral",
  6584. image: {
  6585. source: "./media/characters/alicia/feral.svg",
  6586. extra: 2123 / 1715,
  6587. bottom: 222 / 2349
  6588. }
  6589. },
  6590. },
  6591. [
  6592. {
  6593. name: "Normal",
  6594. height: math.unit(2.35, "meters")
  6595. },
  6596. {
  6597. name: "Macro",
  6598. height: math.unit(60, "meters"),
  6599. default: true
  6600. },
  6601. {
  6602. name: "Megamacro",
  6603. height: math.unit(10000, "kilometers")
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(7, "feet"),
  6612. weight: math.unit(250, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/archy/front.svg"
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(1, "inch")
  6623. },
  6624. {
  6625. name: "Shorty",
  6626. height: math.unit(5, "feet")
  6627. },
  6628. {
  6629. name: "Normal",
  6630. height: math.unit(7, "feet")
  6631. },
  6632. {
  6633. name: "Macro",
  6634. height: math.unit(600, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Megamacro",
  6639. height: math.unit(1, "mile")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.65, "meters"),
  6648. weight: math.unit(74, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/berri/front.svg",
  6652. extra: 857 / 837,
  6653. bottom: 18 / 877
  6654. }
  6655. },
  6656. bum: {
  6657. height: math.unit(1.46, "feet"),
  6658. name: "Bum",
  6659. image: {
  6660. source: "./media/characters/berri/bum.svg"
  6661. }
  6662. },
  6663. mouth: {
  6664. height: math.unit(0.44, "feet"),
  6665. name: "Mouth",
  6666. image: {
  6667. source: "./media/characters/berri/mouth.svg"
  6668. }
  6669. },
  6670. paw: {
  6671. height: math.unit(0.826, "feet"),
  6672. name: "Paw",
  6673. image: {
  6674. source: "./media/characters/berri/paw.svg"
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(1.65, "meters")
  6682. },
  6683. {
  6684. name: "Macro",
  6685. height: math.unit(60, "m"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Megamacro",
  6690. height: math.unit(9.213, "km")
  6691. },
  6692. {
  6693. name: "Planet Eater",
  6694. height: math.unit(489, "megameters")
  6695. },
  6696. {
  6697. name: "Teramacro",
  6698. height: math.unit(2471635000000, "meters")
  6699. },
  6700. {
  6701. name: "Examacro",
  6702. height: math.unit(8.0624e+26, "meters")
  6703. }
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(1.72, "meters"),
  6711. weight: math.unit(68, "kg"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/lexi/front.svg"
  6715. }
  6716. }
  6717. },
  6718. [
  6719. {
  6720. name: "Very Smol",
  6721. height: math.unit(10, "mm")
  6722. },
  6723. {
  6724. name: "Micro",
  6725. height: math.unit(6.8, "cm"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(1.72, "m")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(1.69, "meters"),
  6739. weight: math.unit(68, "kg"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/martin/front.svg",
  6743. extra: 596 / 581
  6744. }
  6745. }
  6746. },
  6747. [
  6748. {
  6749. name: "Micro",
  6750. height: math.unit(6.85, "cm"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(1.69, "m")
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(1.69, "meters"),
  6764. weight: math.unit(68, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/juno/front.svg"
  6768. }
  6769. }
  6770. },
  6771. [
  6772. {
  6773. name: "Micro",
  6774. height: math.unit(7, "cm")
  6775. },
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(1.89, "m")
  6779. },
  6780. {
  6781. name: "Macro",
  6782. height: math.unit(353, "meters"),
  6783. default: true
  6784. }
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6789. {
  6790. front: {
  6791. height: math.unit(1.93, "meters"),
  6792. weight: math.unit(83, "kg"),
  6793. name: "Front",
  6794. image: {
  6795. source: "./media/characters/samantha/front.svg"
  6796. }
  6797. },
  6798. frontClothed: {
  6799. height: math.unit(1.93, "meters"),
  6800. weight: math.unit(83, "kg"),
  6801. name: "Front (Clothed)",
  6802. image: {
  6803. source: "./media/characters/samantha/front-clothed.svg"
  6804. }
  6805. },
  6806. back: {
  6807. height: math.unit(1.93, "meters"),
  6808. weight: math.unit(83, "kg"),
  6809. name: "Back",
  6810. image: {
  6811. source: "./media/characters/samantha/back.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Normal",
  6818. height: math.unit(1.93, "m")
  6819. },
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(74, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(223, "meters"),
  6828. },
  6829. {
  6830. name: "Megamacro",
  6831. height: math.unit(8381, "meters"),
  6832. },
  6833. {
  6834. name: "Megamacro+",
  6835. height: math.unit(12000, "kilometers")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(1.92, "meters"),
  6844. weight: math.unit(80, "kg"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/dr-clay/front.svg"
  6848. }
  6849. },
  6850. frontClothed: {
  6851. height: math.unit(1.92, "meters"),
  6852. weight: math.unit(80, "kg"),
  6853. name: "Front (Clothed)",
  6854. image: {
  6855. source: "./media/characters/dr-clay/front-clothed.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.92, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(214, "meters"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro+",
  6871. height: math.unit(12.237, "meters"),
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(557, "megameters"),
  6876. },
  6877. {
  6878. name: "Unimaginable",
  6879. height: math.unit(120e9, "lightyears")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(2, "meters"),
  6888. weight: math.unit(80, "kg"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6892. }
  6893. }
  6894. },
  6895. [
  6896. {
  6897. name: "Teramacro",
  6898. height: math.unit(500000, "lightyears"),
  6899. default: true
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6905. {
  6906. crux: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(150, "kg"),
  6909. name: "Crux",
  6910. image: {
  6911. source: "./media/characters/vemus/crux.svg",
  6912. extra: 1074/936,
  6913. bottom: 23/1097
  6914. }
  6915. },
  6916. skunkTanuki: {
  6917. height: math.unit(2, "meters"),
  6918. weight: math.unit(150, "kg"),
  6919. name: "Skunk-Tanuki",
  6920. image: {
  6921. source: "./media/characters/vemus/skunk-tanuki.svg",
  6922. extra: 926/893,
  6923. bottom: 20/946
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(3.75, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Big",
  6935. height: math.unit(8, "meters")
  6936. },
  6937. {
  6938. name: "Macro",
  6939. height: math.unit(100, "meters")
  6940. },
  6941. {
  6942. name: "Macro+",
  6943. height: math.unit(1500, "meters")
  6944. },
  6945. {
  6946. name: "Stellar",
  6947. height: math.unit(14e8, "meters")
  6948. },
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(2, "meters"),
  6956. weight: math.unit(70, "kg"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/beherit/front.svg",
  6960. extra: 1234/1109,
  6961. bottom: 55/1289
  6962. }
  6963. }
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet")
  6969. },
  6970. {
  6971. name: "Lorg",
  6972. height: math.unit(25, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Lorger",
  6977. height: math.unit(75, "feet")
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(200, "meters")
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(2, "meters"),
  6990. weight: math.unit(150, "kg"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/everett/front.svg",
  6994. extra: 1017/866,
  6995. bottom: 86/1103
  6996. }
  6997. },
  6998. paw: {
  6999. height: math.unit(2 / 3.6, "meters"),
  7000. name: "Paw",
  7001. image: {
  7002. source: "./media/characters/everett/paw.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(15, "feet"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Lorg",
  7014. height: math.unit(70, "feet"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Lorger",
  7019. height: math.unit(250, "feet")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(500, "meters")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(2, "meters"),
  7032. weight: math.unit(86, "kg"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/rose/front.svg",
  7036. extra: 1785/1636,
  7037. bottom: 30/1815
  7038. }
  7039. },
  7040. frontSporty: {
  7041. height: math.unit(2, "meters"),
  7042. weight: math.unit(86, "kg"),
  7043. name: "Front (Sporty)",
  7044. image: {
  7045. source: "./media/characters/rose/front-sporty.svg",
  7046. extra: 350/335,
  7047. bottom: 10/360
  7048. }
  7049. },
  7050. frontAlt: {
  7051. height: math.unit(1.6, "meters"),
  7052. weight: math.unit(86, "kg"),
  7053. name: "Front (Alt)",
  7054. image: {
  7055. source: "./media/characters/rose/front-alt.svg",
  7056. extra: 299/283,
  7057. bottom: 3/302
  7058. }
  7059. },
  7060. plush: {
  7061. height: math.unit(2, "meters"),
  7062. weight: math.unit(86/3, "kg"),
  7063. name: "Plush",
  7064. image: {
  7065. source: "./media/characters/rose/plush.svg",
  7066. extra: 361/337,
  7067. bottom: 11/372
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "True Micro",
  7074. height: math.unit(9, "cm")
  7075. },
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(16, "cm")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(1.85, "meters"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Mini-Macro",
  7087. height: math.unit(5, "meters")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(15, "meters")
  7092. },
  7093. {
  7094. name: "True Macro",
  7095. height: math.unit(40, "meters")
  7096. },
  7097. {
  7098. name: "City Scale",
  7099. height: math.unit(1, "km")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(350, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/regal/front.svg"
  7112. }
  7113. },
  7114. back: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(350, "lbs"),
  7117. name: "Back",
  7118. image: {
  7119. source: "./media/characters/regal/back.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Macro",
  7126. height: math.unit(350, "feet"),
  7127. default: true
  7128. }
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(4 + 11 / 12, "feet"),
  7136. weight: math.unit(100, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/opal/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(4 + 11 / 12, "feet"),
  7144. weight: math.unit(100, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/opal/front-alt.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Small",
  7154. height: math.unit(4 + 11 / 12, "feet")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(20, "feet"),
  7159. default: true
  7160. },
  7161. {
  7162. name: "Macro",
  7163. height: math.unit(120, "feet")
  7164. },
  7165. {
  7166. name: "Megamacro",
  7167. height: math.unit(80, "miles")
  7168. },
  7169. {
  7170. name: "True Size",
  7171. height: math.unit(100000, "lightyears")
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(200, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/vector-wuff/front.svg"
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Normal",
  7190. height: math.unit(2.8, "meters")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(450, "meters"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Megamacro",
  7199. height: math.unit(15, "kilometers")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(256, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/dannik/front.svg"
  7212. }
  7213. }
  7214. },
  7215. [
  7216. {
  7217. name: "Macro",
  7218. height: math.unit(69.57, "meters"),
  7219. default: true
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(120, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/azura-saharah/front.svg"
  7232. }
  7233. },
  7234. back: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(120, "lbs"),
  7237. name: "Back",
  7238. image: {
  7239. source: "./media/characters/azura-saharah/back.svg"
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(100, "feet"),
  7247. default: true
  7248. },
  7249. ]
  7250. ))
  7251. characterMakers.push(() => makeCharacter(
  7252. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7253. {
  7254. side: {
  7255. height: math.unit(5 + 4 / 12, "feet"),
  7256. weight: math.unit(163, "lbs"),
  7257. name: "Side",
  7258. image: {
  7259. source: "./media/characters/kennedy/side.svg"
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Standard Doggo",
  7266. height: math.unit(5 + 4 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Big Doggo",
  7270. height: math.unit(25 + 3 / 12, "feet"),
  7271. default: true
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(5 + 5/12, "feet"),
  7280. weight: math.unit(100, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/odios-de-lunar/front.svg",
  7284. extra: 1468/1323,
  7285. bottom: 22/1490
  7286. }
  7287. }
  7288. },
  7289. [
  7290. {
  7291. name: "Micro",
  7292. height: math.unit(3, "inches")
  7293. },
  7294. {
  7295. name: "Normal",
  7296. height: math.unit(5.5, "feet"),
  7297. default: true
  7298. },
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(100, "feet")
  7302. },
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7307. {
  7308. back: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(220, "lbs"),
  7311. name: "Back",
  7312. image: {
  7313. source: "./media/characters/mandake/back.svg"
  7314. }
  7315. }
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(7, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(78, "feet")
  7326. },
  7327. {
  7328. name: "Macro+",
  7329. height: math.unit(300, "meters")
  7330. },
  7331. {
  7332. name: "Macro++",
  7333. height: math.unit(2400, "feet")
  7334. },
  7335. {
  7336. name: "Megamacro",
  7337. height: math.unit(5167, "meters")
  7338. },
  7339. {
  7340. name: "Gigamacro",
  7341. height: math.unit(41769, "miles")
  7342. },
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(120, "lbs"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/yozey/front.svg"
  7354. }
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(6, "feet"),
  7358. weight: math.unit(120, "lbs"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/yozey/front-alt.svg"
  7362. }
  7363. },
  7364. side: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(120, "lbs"),
  7367. name: "Side",
  7368. image: {
  7369. source: "./media/characters/yozey/side.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Micro",
  7376. height: math.unit(3, "inches"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Normal",
  7381. height: math.unit(6, "feet")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(103, "lbs"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/valeska-voss/front.svg"
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Mini-Sized Sub",
  7400. height: math.unit(3.1, "inches")
  7401. },
  7402. {
  7403. name: "Mid-Sized Sub",
  7404. height: math.unit(6.2, "inches")
  7405. },
  7406. {
  7407. name: "Full-Sized Sub",
  7408. height: math.unit(9.3, "inches")
  7409. },
  7410. {
  7411. name: "Normal",
  7412. height: math.unit(5 + 2 / 12, "foot"),
  7413. default: true
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(6, "feet"),
  7422. weight: math.unit(160, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/gene-zeta/front.svg",
  7426. extra: 3006 / 2826,
  7427. bottom: 182 / 3188
  7428. }
  7429. }
  7430. },
  7431. [
  7432. {
  7433. name: "Micro",
  7434. height: math.unit(6, "inches")
  7435. },
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(5 + 11 / 12, "foot"),
  7439. default: true
  7440. },
  7441. {
  7442. name: "Macro",
  7443. height: math.unit(140, "feet")
  7444. },
  7445. {
  7446. name: "Supercharged",
  7447. height: math.unit(2500, "feet")
  7448. },
  7449. ]
  7450. ))
  7451. characterMakers.push(() => makeCharacter(
  7452. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7453. {
  7454. front: {
  7455. height: math.unit(6, "feet"),
  7456. weight: math.unit(350, "lbs"),
  7457. name: "Front",
  7458. image: {
  7459. source: "./media/characters/razinox/front.svg",
  7460. extra: 1686 / 1548,
  7461. bottom: 28.2 / 1868
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(6, "feet"),
  7466. weight: math.unit(350, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/razinox/back.svg",
  7470. extra: 1660 / 1590,
  7471. bottom: 15 / 1665
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(10 + 8 / 12, "foot")
  7479. },
  7480. {
  7481. name: "Minimacro",
  7482. height: math.unit(15, "foot")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(60, "foot"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(5, "miles")
  7492. },
  7493. {
  7494. name: "Gigamacro",
  7495. height: math.unit(6000, "miles")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(150, "lbs"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/cobalt/front.svg"
  7508. }
  7509. }
  7510. },
  7511. [
  7512. {
  7513. name: "Normal",
  7514. height: math.unit(8 + 1 / 12, "foot")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(111, "foot"),
  7519. default: true
  7520. },
  7521. {
  7522. name: "Supracosmic",
  7523. height: math.unit(1e42, "feet")
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7529. {
  7530. front: {
  7531. height: math.unit(6, "feet"),
  7532. weight: math.unit(140, "lbs"),
  7533. name: "Front",
  7534. image: {
  7535. source: "./media/characters/amanda/front.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(5, "inches"),
  7543. default: true
  7544. },
  7545. ]
  7546. ))
  7547. characterMakers.push(() => makeCharacter(
  7548. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7549. {
  7550. front: {
  7551. height: math.unit(2.75, "meters"),
  7552. weight: math.unit(1200, "lb"),
  7553. name: "Front",
  7554. image: {
  7555. source: "./media/characters/teal/front.svg",
  7556. extra: 2463 / 2320,
  7557. bottom: 166 / 2629
  7558. }
  7559. },
  7560. back: {
  7561. height: math.unit(2.75, "meters"),
  7562. weight: math.unit(1200, "lb"),
  7563. name: "Back",
  7564. image: {
  7565. source: "./media/characters/teal/back.svg",
  7566. extra: 2580 / 2489,
  7567. bottom: 151 / 2731
  7568. }
  7569. },
  7570. sitting: {
  7571. height: math.unit(1.9, "meters"),
  7572. weight: math.unit(1200, "lb"),
  7573. name: "Sitting",
  7574. image: {
  7575. source: "./media/characters/teal/sitting.svg",
  7576. extra: 623 / 590,
  7577. bottom: 121 / 744
  7578. }
  7579. },
  7580. standing: {
  7581. height: math.unit(2.75, "meters"),
  7582. weight: math.unit(1200, "lb"),
  7583. name: "Standing",
  7584. image: {
  7585. source: "./media/characters/teal/standing.svg",
  7586. extra: 923 / 893,
  7587. bottom: 60 / 983
  7588. }
  7589. },
  7590. stretching: {
  7591. height: math.unit(3.65, "meters"),
  7592. weight: math.unit(1200, "lb"),
  7593. name: "Stretching",
  7594. image: {
  7595. source: "./media/characters/teal/stretching.svg",
  7596. extra: 1276 / 1244,
  7597. bottom: 0 / 1276
  7598. }
  7599. },
  7600. legged: {
  7601. height: math.unit(1.3, "meters"),
  7602. weight: math.unit(100, "lb"),
  7603. name: "Legged",
  7604. image: {
  7605. source: "./media/characters/teal/legged.svg",
  7606. extra: 462 / 437,
  7607. bottom: 24 / 486
  7608. }
  7609. },
  7610. naga: {
  7611. height: math.unit(5.4, "meters"),
  7612. weight: math.unit(4000, "lb"),
  7613. name: "Naga",
  7614. image: {
  7615. source: "./media/characters/teal/naga.svg",
  7616. extra: 1902 / 1858,
  7617. bottom: 0 / 1902
  7618. }
  7619. },
  7620. hand: {
  7621. height: math.unit(0.52, "meters"),
  7622. name: "Hand",
  7623. image: {
  7624. source: "./media/characters/teal/hand.svg"
  7625. }
  7626. },
  7627. maw: {
  7628. height: math.unit(0.43, "meters"),
  7629. name: "Maw",
  7630. image: {
  7631. source: "./media/characters/teal/maw.svg"
  7632. }
  7633. },
  7634. slit: {
  7635. height: math.unit(0.25, "meters"),
  7636. name: "Slit",
  7637. image: {
  7638. source: "./media/characters/teal/slit.svg"
  7639. }
  7640. },
  7641. },
  7642. [
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(2.75, "meters"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(300, "feet")
  7651. },
  7652. {
  7653. name: "Macro+",
  7654. height: math.unit(2000, "feet")
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7660. {
  7661. frontCat: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(180, "lbs"),
  7664. name: "Front (Cat)",
  7665. image: {
  7666. source: "./media/characters/ravin-amulet/front-cat.svg"
  7667. }
  7668. },
  7669. frontCatAlt: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(180, "lbs"),
  7672. name: "Front (Alt, Cat)",
  7673. image: {
  7674. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7675. }
  7676. },
  7677. frontWerewolf: {
  7678. height: math.unit(6 * 1.2, "feet"),
  7679. weight: math.unit(225, "lbs"),
  7680. name: "Front (Werewolf)",
  7681. image: {
  7682. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7683. }
  7684. },
  7685. backWerewolf: {
  7686. height: math.unit(6 * 1.2, "feet"),
  7687. weight: math.unit(225, "lbs"),
  7688. name: "Back (Werewolf)",
  7689. image: {
  7690. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Nano",
  7697. height: math.unit(1, "micrometer")
  7698. },
  7699. {
  7700. name: "Micro",
  7701. height: math.unit(1, "inch")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(6, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(60, "feet")
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(6, "feet"),
  7719. weight: math.unit(165, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/fluoresce/front.svg"
  7723. }
  7724. }
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(6, "cm")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 7 / 12, "feet"),
  7734. default: true
  7735. },
  7736. {
  7737. name: "Macro",
  7738. height: math.unit(56, "feet")
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(1.9, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(9 + 6 / 12, "feet"),
  7751. weight: math.unit(523, "lbs"),
  7752. name: "Side",
  7753. image: {
  7754. source: "./media/characters/aurora/side.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(9 + 6 / 12, "feet")
  7762. },
  7763. {
  7764. name: "Macro",
  7765. height: math.unit(96, "feet"),
  7766. default: true
  7767. },
  7768. {
  7769. name: "Macro+",
  7770. height: math.unit(243, "feet")
  7771. },
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7776. {
  7777. front: {
  7778. height: math.unit(194, "cm"),
  7779. weight: math.unit(90, "kg"),
  7780. name: "Front",
  7781. image: {
  7782. source: "./media/characters/ranek/front.svg",
  7783. extra: 1862/1791,
  7784. bottom: 80/1942
  7785. }
  7786. },
  7787. back: {
  7788. height: math.unit(194, "cm"),
  7789. weight: math.unit(90, "kg"),
  7790. name: "Back",
  7791. image: {
  7792. source: "./media/characters/ranek/back.svg",
  7793. extra: 1853/1787,
  7794. bottom: 74/1927
  7795. }
  7796. },
  7797. feral: {
  7798. height: math.unit(30, "cm"),
  7799. weight: math.unit(1.6, "lbs"),
  7800. name: "Feral",
  7801. image: {
  7802. source: "./media/characters/ranek/feral.svg",
  7803. extra: 990/631,
  7804. bottom: 29/1019
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(194, "cm"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(100, "meters")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7822. {
  7823. front: {
  7824. height: math.unit(5 + 6 / 12, "feet"),
  7825. weight: math.unit(153, "lbs"),
  7826. name: "Front",
  7827. image: {
  7828. source: "./media/characters/andrew-cooper/front.svg"
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Nano",
  7835. height: math.unit(1, "mm")
  7836. },
  7837. {
  7838. name: "Micro",
  7839. height: math.unit(2, "inches")
  7840. },
  7841. {
  7842. name: "Normal",
  7843. height: math.unit(5 + 6 / 12, "feet"),
  7844. default: true
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(6, "feet"),
  7853. weight: math.unit(180, "lbs"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/akane-sato/front.svg",
  7857. extra: 1219 / 1140
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(6, "feet"),
  7862. weight: math.unit(180, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/akane-sato/back.svg",
  7866. extra: 1219 / 1170
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Normal",
  7873. height: math.unit(2.5, "meters")
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(250, "meters"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Megamacro",
  7882. height: math.unit(25, "km")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(65, "kg"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/rook/front.svg",
  7895. extra: 960 / 950
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(8.8, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(88, "feet"),
  7907. default: true
  7908. },
  7909. {
  7910. name: "Megamacro",
  7911. height: math.unit(8, "miles")
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(12 + 2 / 12, "feet"),
  7920. weight: math.unit(808, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/prodigy/front.svg"
  7924. }
  7925. }
  7926. },
  7927. [
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(12 + 2 / 12, "feet"),
  7931. default: true
  7932. },
  7933. {
  7934. name: "Macro",
  7935. height: math.unit(143, "feet")
  7936. },
  7937. {
  7938. name: "Macro+",
  7939. height: math.unit(400, "feet")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(225, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/daniel/front.svg"
  7952. }
  7953. },
  7954. leaning: {
  7955. height: math.unit(6, "feet"),
  7956. weight: math.unit(225, "lbs"),
  7957. name: "Leaning",
  7958. image: {
  7959. source: "./media/characters/daniel/leaning.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(1000, "feet"),
  7967. default: true
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(6, "feet"),
  7976. weight: math.unit(88, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/chiros/front.svg",
  7980. extra: 306 / 226
  7981. }
  7982. },
  7983. side: {
  7984. height: math.unit(6, "feet"),
  7985. weight: math.unit(88, "lbs"),
  7986. name: "Side",
  7987. image: {
  7988. source: "./media/characters/chiros/side.svg",
  7989. extra: 306 / 226
  7990. }
  7991. },
  7992. },
  7993. [
  7994. {
  7995. name: "Normal",
  7996. height: math.unit(6, "cm"),
  7997. default: true
  7998. },
  7999. ]
  8000. ))
  8001. characterMakers.push(() => makeCharacter(
  8002. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8003. {
  8004. front: {
  8005. height: math.unit(6, "feet"),
  8006. weight: math.unit(100, "lbs"),
  8007. name: "Front",
  8008. image: {
  8009. source: "./media/characters/selka/front.svg",
  8010. extra: 947 / 887
  8011. }
  8012. }
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(5, "cm"),
  8018. default: true
  8019. },
  8020. ]
  8021. ))
  8022. characterMakers.push(() => makeCharacter(
  8023. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8024. {
  8025. front: {
  8026. height: math.unit(8 + 3 / 12, "feet"),
  8027. weight: math.unit(424, "lbs"),
  8028. name: "Front",
  8029. image: {
  8030. source: "./media/characters/verin/front.svg",
  8031. extra: 1845 / 1550
  8032. }
  8033. },
  8034. frontArmored: {
  8035. height: math.unit(8 + 3 / 12, "feet"),
  8036. weight: math.unit(424, "lbs"),
  8037. name: "Front (Armored)",
  8038. image: {
  8039. source: "./media/characters/verin/front-armor.svg",
  8040. extra: 1845 / 1550,
  8041. bottom: 0.01
  8042. }
  8043. },
  8044. back: {
  8045. height: math.unit(8 + 3 / 12, "feet"),
  8046. weight: math.unit(424, "lbs"),
  8047. name: "Back",
  8048. image: {
  8049. source: "./media/characters/verin/back.svg",
  8050. bottom: 0.1,
  8051. extra: 1
  8052. }
  8053. },
  8054. foot: {
  8055. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8056. name: "Foot",
  8057. image: {
  8058. source: "./media/characters/verin/foot.svg"
  8059. }
  8060. },
  8061. },
  8062. [
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(8 + 3 / 12, "feet")
  8066. },
  8067. {
  8068. name: "Minimacro",
  8069. height: math.unit(21, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Macro",
  8074. height: math.unit(626, "feet")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(2.718, "meters"),
  8083. weight: math.unit(150, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sovrim-terraquian/front.svg",
  8087. extra: 1752/1689,
  8088. bottom: 36/1788
  8089. }
  8090. },
  8091. back: {
  8092. height: math.unit(2.718, "meters"),
  8093. weight: math.unit(150, "lbs"),
  8094. name: "Back",
  8095. image: {
  8096. source: "./media/characters/sovrim-terraquian/back.svg",
  8097. extra: 1698/1657,
  8098. bottom: 58/1756
  8099. }
  8100. },
  8101. tongue: {
  8102. height: math.unit(2.865, "feet"),
  8103. name: "Tongue",
  8104. image: {
  8105. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8106. }
  8107. },
  8108. hand: {
  8109. height: math.unit(1.61, "feet"),
  8110. name: "Hand",
  8111. image: {
  8112. source: "./media/characters/sovrim-terraquian/hand.svg"
  8113. }
  8114. },
  8115. foot: {
  8116. height: math.unit(1.05, "feet"),
  8117. name: "Foot",
  8118. image: {
  8119. source: "./media/characters/sovrim-terraquian/foot.svg"
  8120. }
  8121. },
  8122. footAlt: {
  8123. height: math.unit(0.88, "feet"),
  8124. name: "Foot (Alt)",
  8125. image: {
  8126. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Micro",
  8133. height: math.unit(2, "inches")
  8134. },
  8135. {
  8136. name: "Small",
  8137. height: math.unit(1, "meter")
  8138. },
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(Math.E, "meters"),
  8142. default: true
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(20, "meters")
  8147. },
  8148. {
  8149. name: "Macro+",
  8150. height: math.unit(400, "meters")
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(7, "feet"),
  8159. weight: math.unit(489, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/reece-silvermane/front.svg",
  8163. bottom: 0.02,
  8164. extra: 1
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Macro",
  8171. height: math.unit(1.5, "miles"),
  8172. default: true
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(6, "feet"),
  8181. weight: math.unit(78, "kg"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/kane/front.svg",
  8185. extra: 978 / 899
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(2.1, "m"),
  8193. },
  8194. {
  8195. name: "Macro",
  8196. height: math.unit(1, "km"),
  8197. default: true
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(200, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/tegon/front.svg",
  8210. bottom: 0.01,
  8211. extra: 1
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(1, "inch")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(6 + 3 / 12, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro",
  8227. height: math.unit(300, "feet")
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(69, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8237. {
  8238. side: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(2304, "lbs"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/arcturax/side.svg",
  8244. extra: 790 / 376,
  8245. bottom: 0.01
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Micro",
  8252. height: math.unit(2, "inch")
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(6, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(39, "feet"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Megamacro",
  8265. height: math.unit(7, "miles")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(50, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/sentri/front.svg",
  8278. extra: 1750 / 1570,
  8279. bottom: 0.025
  8280. }
  8281. },
  8282. frontAlt: {
  8283. height: math.unit(6, "feet"),
  8284. weight: math.unit(50, "lbs"),
  8285. name: "Front (Alt)",
  8286. image: {
  8287. source: "./media/characters/sentri/front-alt.svg",
  8288. extra: 1750 / 1570,
  8289. bottom: 0.025
  8290. }
  8291. },
  8292. },
  8293. [
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(15, "feet"),
  8297. default: true
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(2500, "feet")
  8302. }
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(5 + 8 / 12, "feet"),
  8310. weight: math.unit(130, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/corvin/front.svg",
  8314. extra: 1803 / 1629
  8315. }
  8316. },
  8317. frontShirt: {
  8318. height: math.unit(5 + 8 / 12, "feet"),
  8319. weight: math.unit(130, "lbs"),
  8320. name: "Front (Shirt)",
  8321. image: {
  8322. source: "./media/characters/corvin/front-shirt.svg",
  8323. extra: 1803 / 1629
  8324. }
  8325. },
  8326. frontPoncho: {
  8327. height: math.unit(5 + 8 / 12, "feet"),
  8328. weight: math.unit(130, "lbs"),
  8329. name: "Front (Poncho)",
  8330. image: {
  8331. source: "./media/characters/corvin/front-poncho.svg",
  8332. extra: 1803 / 1629
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(5 + 8 / 12, "feet"),
  8337. weight: math.unit(130, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/corvin/side.svg",
  8341. extra: 1012 / 945
  8342. }
  8343. },
  8344. back: {
  8345. height: math.unit(5 + 8 / 12, "feet"),
  8346. weight: math.unit(130, "lbs"),
  8347. name: "Back",
  8348. image: {
  8349. source: "./media/characters/corvin/back.svg",
  8350. extra: 1803 / 1629
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Micro",
  8357. height: math.unit(3, "inches")
  8358. },
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(5 + 8 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Macro",
  8365. height: math.unit(300, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(500, "miles")
  8371. }
  8372. ]
  8373. ))
  8374. characterMakers.push(() => makeCharacter(
  8375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8376. {
  8377. front: {
  8378. height: math.unit(6, "feet"),
  8379. weight: math.unit(135, "lbs"),
  8380. name: "Front",
  8381. image: {
  8382. source: "./media/characters/q/front.svg",
  8383. extra: 854 / 752,
  8384. bottom: 0.005
  8385. }
  8386. },
  8387. back: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(130, "lbs"),
  8390. name: "Back",
  8391. image: {
  8392. source: "./media/characters/q/back.svg",
  8393. extra: 854 / 752
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Macro",
  8400. height: math.unit(90, "feet"),
  8401. default: true
  8402. },
  8403. {
  8404. name: "Extra Macro",
  8405. height: math.unit(300, "feet"),
  8406. },
  8407. {
  8408. name: "BIG WALF",
  8409. height: math.unit(750, "feet"),
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(150, "lbs"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/carley/front.svg",
  8422. extra: 3927 / 3540,
  8423. bottom: 29.2 / 735
  8424. }
  8425. }
  8426. },
  8427. [
  8428. {
  8429. name: "Normal",
  8430. height: math.unit(6 + 3 / 12, "feet")
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(185, "feet"),
  8435. default: true
  8436. },
  8437. {
  8438. name: "Megamacro",
  8439. height: math.unit(8, "miles"),
  8440. },
  8441. ]
  8442. ))
  8443. characterMakers.push(() => makeCharacter(
  8444. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8445. {
  8446. front: {
  8447. height: math.unit(3, "feet"),
  8448. weight: math.unit(28, "lbs"),
  8449. name: "Front",
  8450. image: {
  8451. source: "./media/characters/citrine/front.svg"
  8452. }
  8453. }
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(3, "feet"),
  8459. default: true
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8465. {
  8466. front: {
  8467. height: math.unit(14, "feet"),
  8468. weight: math.unit(1450, "kg"),
  8469. capacity: math.unit(15, "people"),
  8470. name: "Front",
  8471. image: {
  8472. source: "./media/characters/aura-starwind/front.svg",
  8473. extra: 1440/1327,
  8474. bottom: 11/1451
  8475. }
  8476. },
  8477. side: {
  8478. height: math.unit(14, "feet"),
  8479. weight: math.unit(1450, "kg"),
  8480. capacity: math.unit(15, "people"),
  8481. name: "Side",
  8482. image: {
  8483. source: "./media/characters/aura-starwind/side.svg",
  8484. extra: 1654 / 1497
  8485. }
  8486. },
  8487. taur: {
  8488. height: math.unit(18, "feet"),
  8489. weight: math.unit(5500, "kg"),
  8490. capacity: math.unit(50, "people"),
  8491. name: "Taur",
  8492. image: {
  8493. source: "./media/characters/aura-starwind/taur.svg",
  8494. extra: 1760 / 1650
  8495. }
  8496. },
  8497. feral: {
  8498. height: math.unit(46, "feet"),
  8499. weight: math.unit(25000, "kg"),
  8500. capacity: math.unit(120, "people"),
  8501. name: "Feral",
  8502. image: {
  8503. source: "./media/characters/aura-starwind/feral.svg"
  8504. }
  8505. },
  8506. },
  8507. [
  8508. {
  8509. name: "Normal",
  8510. height: math.unit(14, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Macro",
  8515. height: math.unit(50, "meters")
  8516. },
  8517. {
  8518. name: "Megamacro",
  8519. height: math.unit(5000, "meters")
  8520. },
  8521. {
  8522. name: "Gigamacro",
  8523. height: math.unit(100000, "kilometers")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2 + 7 / 12, "feet"),
  8532. weight: math.unit(32, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/rivet/front.svg",
  8536. extra: 1716 / 1658,
  8537. bottom: 0.03
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(0.551, "feet"),
  8542. name: "Rivet's Foot",
  8543. image: {
  8544. source: "./media/characters/rivet/foot.svg"
  8545. },
  8546. rename: true
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(1.5, "inches"),
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(2 + 7 / 12, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(85, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(2.2, "km")
  8566. }
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(5 + 9 / 12, "feet"),
  8574. weight: math.unit(150, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/coffee/front.svg",
  8578. extra: 3666 / 3032,
  8579. bottom: 0.04
  8580. }
  8581. },
  8582. foot: {
  8583. height: math.unit(1.29, "feet"),
  8584. name: "Foot",
  8585. image: {
  8586. source: "./media/characters/coffee/foot.svg"
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(2, "inches"),
  8594. },
  8595. {
  8596. name: "Normal",
  8597. height: math.unit(5 + 9 / 12, "feet"),
  8598. default: true
  8599. },
  8600. {
  8601. name: "Macro",
  8602. height: math.unit(800, "feet")
  8603. },
  8604. {
  8605. name: "Megamacro",
  8606. height: math.unit(25, "miles")
  8607. }
  8608. ]
  8609. ))
  8610. characterMakers.push(() => makeCharacter(
  8611. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8612. {
  8613. front: {
  8614. height: math.unit(6, "feet"),
  8615. weight: math.unit(200, "lbs"),
  8616. name: "Front",
  8617. image: {
  8618. source: "./media/characters/chari-gal/front.svg",
  8619. extra: 1568 / 1385,
  8620. bottom: 0.047
  8621. }
  8622. },
  8623. gigantamax: {
  8624. height: math.unit(6 * 16, "feet"),
  8625. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8626. name: "Gigantamax",
  8627. image: {
  8628. source: "./media/characters/chari-gal/gigantamax.svg",
  8629. extra: 1124 / 888,
  8630. bottom: 0.03
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(5 + 7 / 12, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(200, "feet"),
  8642. default: true
  8643. }
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(6, "feet"),
  8651. weight: math.unit(150, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/nova/front.svg",
  8655. extra: 5000 / 4722,
  8656. bottom: 0.02
  8657. }
  8658. }
  8659. },
  8660. [
  8661. {
  8662. name: "Micro-",
  8663. height: math.unit(0.8, "inches")
  8664. },
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(3 + 1 / 12, "feet"),
  8677. weight: math.unit(21.7, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/argent/front.svg",
  8681. extra: 1471 / 1331,
  8682. bottom: 100.8 / 1575.5
  8683. }
  8684. }
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(2, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(3 + 1 / 12, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(120, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8704. {
  8705. lamp: {
  8706. height: math.unit(7 * 1559 / 989, "feet"),
  8707. name: "Magic Lamp",
  8708. image: {
  8709. source: "./media/characters/mira-al-cul/lamp.svg",
  8710. extra: 1617 / 1559
  8711. }
  8712. },
  8713. front: {
  8714. height: math.unit(7, "feet"),
  8715. name: "Front",
  8716. image: {
  8717. source: "./media/characters/mira-al-cul/front.svg",
  8718. extra: 1044 / 990
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Heavily Restricted",
  8725. height: math.unit(7 * 1559 / 989, "feet")
  8726. },
  8727. {
  8728. name: "Freshly Freed",
  8729. height: math.unit(50 * 1559 / 989, "feet")
  8730. },
  8731. {
  8732. name: "World Encompassing",
  8733. height: math.unit(10000 * 1559 / 989, "miles")
  8734. },
  8735. {
  8736. name: "Galactic",
  8737. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8738. },
  8739. {
  8740. name: "Palmed Universe",
  8741. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8742. default: true
  8743. },
  8744. {
  8745. name: "Multiversal Matriarch",
  8746. height: math.unit(8.87e10, "yottameters")
  8747. },
  8748. {
  8749. name: "Void Mother",
  8750. height: math.unit(3.14e110, "yottaparsecs")
  8751. },
  8752. {
  8753. name: "Toying with Transcendence",
  8754. height: math.unit(1e307, "meters")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8760. {
  8761. front: {
  8762. height: math.unit(17 + 1 / 12, "feet"),
  8763. weight: math.unit(476.2 * 5, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kuro-shi-uchū/front.svg",
  8767. extra: 2329 / 1835,
  8768. bottom: 0.02
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(2, "inches")
  8776. },
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(12, "meters")
  8780. },
  8781. {
  8782. name: "Planetary",
  8783. height: math.unit(0.00929, "AU"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Universal",
  8788. height: math.unit(20, "gigaparsecs")
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(5 + 2 / 12, "feet"),
  8797. weight: math.unit(120, "lbs"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/katherine/front.svg",
  8801. extra: 2075 / 1969
  8802. }
  8803. },
  8804. dress: {
  8805. height: math.unit(5 + 2 / 12, "feet"),
  8806. weight: math.unit(120, "lbs"),
  8807. name: "Dress",
  8808. image: {
  8809. source: "./media/characters/katherine/dress.svg",
  8810. extra: 2258 / 2064
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Micro",
  8817. height: math.unit(1, "inches"),
  8818. default: true
  8819. },
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 2 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(100, "meters")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(80, "miles")
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(7 + 8 / 12, "feet"),
  8839. weight: math.unit(250, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/yevis/front.svg",
  8843. extra: 1938 / 1755
  8844. }
  8845. }
  8846. },
  8847. [
  8848. {
  8849. name: "Mortal",
  8850. height: math.unit(7 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Battle",
  8854. height: math.unit(25 + 11 / 12, "feet")
  8855. },
  8856. {
  8857. name: "Wrath",
  8858. height: math.unit(1654 + 11 / 12, "feet")
  8859. },
  8860. {
  8861. name: "Planet Destroyer",
  8862. height: math.unit(12000, "miles")
  8863. },
  8864. {
  8865. name: "Galaxy Conqueror",
  8866. height: math.unit(1.45, "zettameters"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Universal War",
  8871. height: math.unit(184, "gigaparsecs")
  8872. },
  8873. {
  8874. name: "Eternity War",
  8875. height: math.unit(1.98e55, "yottaparsecs")
  8876. },
  8877. ]
  8878. ))
  8879. characterMakers.push(() => makeCharacter(
  8880. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8881. {
  8882. front: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(63, "kg"),
  8885. name: "Front",
  8886. image: {
  8887. source: "./media/characters/xavier/front.svg",
  8888. extra: 944 / 883
  8889. }
  8890. },
  8891. frontStretch: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(63, "kg"),
  8894. name: "Stretching",
  8895. image: {
  8896. source: "./media/characters/xavier/front-stretch.svg",
  8897. extra: 962 / 820
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 8 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(100, "meters"),
  8909. default: true
  8910. },
  8911. {
  8912. name: "McLargeHuge",
  8913. height: math.unit(10, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(5 + 5 / 12, "feet"),
  8922. weight: math.unit(150, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/joshii/front.svg",
  8926. extra: 765 / 653,
  8927. bottom: 51 / 816
  8928. }
  8929. },
  8930. foot: {
  8931. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8932. name: "Foot",
  8933. image: {
  8934. source: "./media/characters/joshii/foot.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(2, "inches"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Normal",
  8946. height: math.unit(5 + 5 / 12, "feet")
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(785, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(24.5, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/goddess-elizabeth/front.svg",
  8967. extra: 1800 / 1525,
  8968. bottom: 0.005
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/goddess-elizabeth/foot.svg"
  8976. }
  8977. },
  8978. mouth: {
  8979. height: math.unit(6, "feet"),
  8980. name: "Mouth",
  8981. image: {
  8982. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Micro",
  8989. height: math.unit(12, "feet")
  8990. },
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(80, "miles"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(15000, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(144, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/kara/front.svg"
  9011. }
  9012. },
  9013. feet: {
  9014. height: math.unit(6 / 6.765, "feet"),
  9015. name: "Kara's Feet",
  9016. rename: true,
  9017. image: {
  9018. source: "./media/characters/kara/feet.svg"
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Normal",
  9025. height: math.unit(5 + 9 / 12, "feet")
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(174, "feet"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(18, "feet"),
  9039. weight: math.unit(4050, "lb"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/tyrone/front.svg",
  9043. extra: 2405 / 2270,
  9044. bottom: 182 / 2587
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(18, "feet"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(300, "feet")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(15, "km")
  9061. },
  9062. {
  9063. name: "Gigamacro",
  9064. height: math.unit(500, "km")
  9065. },
  9066. {
  9067. name: "Teramacro",
  9068. height: math.unit(0.5, "gigameters")
  9069. },
  9070. {
  9071. name: "Omnimacro",
  9072. height: math.unit(1e252, "yottauniverse")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(7 + 8 / 12, "feet"),
  9081. weight: math.unit(120, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/danny/front.svg",
  9085. extra: 1490 / 1350
  9086. }
  9087. },
  9088. back: {
  9089. height: math.unit(7 + 8 / 12, "feet"),
  9090. weight: math.unit(120, "lb"),
  9091. name: "Back",
  9092. image: {
  9093. source: "./media/characters/danny/back.svg",
  9094. extra: 1490 / 1350
  9095. }
  9096. },
  9097. },
  9098. [
  9099. {
  9100. name: "Normal",
  9101. height: math.unit(7 + 8 / 12, "feet"),
  9102. default: true
  9103. },
  9104. ]
  9105. ))
  9106. characterMakers.push(() => makeCharacter(
  9107. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9108. {
  9109. front: {
  9110. height: math.unit(3.5, "inches"),
  9111. weight: math.unit(19, "grams"),
  9112. name: "Front",
  9113. image: {
  9114. source: "./media/characters/mallow/front.svg",
  9115. extra: 471 / 431
  9116. }
  9117. },
  9118. back: {
  9119. height: math.unit(3.5, "inches"),
  9120. weight: math.unit(19, "grams"),
  9121. name: "Back",
  9122. image: {
  9123. source: "./media/characters/mallow/back.svg",
  9124. extra: 471 / 431
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Normal",
  9131. height: math.unit(3.5, "inches"),
  9132. default: true
  9133. },
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(9, "feet"),
  9141. weight: math.unit(230, "kg"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/starry-aqua/front.svg"
  9145. }
  9146. },
  9147. back: {
  9148. height: math.unit(9, "feet"),
  9149. weight: math.unit(230, "kg"),
  9150. name: "Back",
  9151. image: {
  9152. source: "./media/characters/starry-aqua/back.svg"
  9153. }
  9154. },
  9155. hand: {
  9156. height: math.unit(9 * 0.1168, "feet"),
  9157. name: "Hand",
  9158. image: {
  9159. source: "./media/characters/starry-aqua/hand.svg"
  9160. }
  9161. },
  9162. foot: {
  9163. height: math.unit(9 * 0.18, "feet"),
  9164. name: "Foot",
  9165. image: {
  9166. source: "./media/characters/starry-aqua/foot.svg"
  9167. }
  9168. }
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(3, "inches")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(9, "feet")
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(300, "feet"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Megamacro",
  9186. height: math.unit(3200, "feet")
  9187. }
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(15, "feet"),
  9195. weight: math.unit(5026, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/luka-towers/front.svg",
  9199. extra: 1269/1133,
  9200. bottom: 51/1320
  9201. }
  9202. },
  9203. },
  9204. [
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(15, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Minimacro",
  9212. height: math.unit(25, "feet")
  9213. },
  9214. {
  9215. name: "Macro",
  9216. height: math.unit(320, "feet")
  9217. },
  9218. {
  9219. name: "Megamacro",
  9220. height: math.unit(35000, "feet")
  9221. },
  9222. {
  9223. name: "Gigamacro",
  9224. height: math.unit(4000, "miles")
  9225. },
  9226. {
  9227. name: "Teramacro",
  9228. height: math.unit(15000, "miles")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(150, "lb"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/natalie-nightring/front.svg",
  9241. extra: 1,
  9242. bottom: 0.06
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Uh Oh",
  9249. height: math.unit(0.1, "mm")
  9250. },
  9251. {
  9252. name: "Small",
  9253. height: math.unit(3, "inches")
  9254. },
  9255. {
  9256. name: "Human Scale",
  9257. height: math.unit(6, "feet")
  9258. },
  9259. {
  9260. name: "Librarian",
  9261. height: math.unit(50, "feet"),
  9262. default: true
  9263. },
  9264. {
  9265. name: "Immense",
  9266. height: math.unit(200, "miles")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(6, "feet"),
  9275. weight: math.unit(180, "lbs"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/danni-rosie/front.svg",
  9279. extra: 1260 / 1128,
  9280. bottom: 0.022
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Micro",
  9287. height: math.unit(2, "inches"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9294. {
  9295. front: {
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. weight: math.unit(220, "lb"),
  9298. name: "Front",
  9299. image: {
  9300. source: "./media/characters/samantha-kruse/front.svg",
  9301. extra: (985 / 935),
  9302. bottom: 0.03
  9303. }
  9304. },
  9305. frontUndressed: {
  9306. height: math.unit(5 + 9 / 12, "feet"),
  9307. weight: math.unit(220, "lb"),
  9308. name: "Front (Undressed)",
  9309. image: {
  9310. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9311. extra: (973 / 923),
  9312. bottom: 0.025
  9313. }
  9314. },
  9315. fat: {
  9316. height: math.unit(5 + 9 / 12, "feet"),
  9317. weight: math.unit(900, "lb"),
  9318. name: "Front (Fat)",
  9319. image: {
  9320. source: "./media/characters/samantha-kruse/fat.svg",
  9321. extra: 2688 / 2561
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(5 + 9 / 12, "feet"),
  9329. default: true
  9330. }
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9335. {
  9336. back: {
  9337. height: math.unit(5 + 4 / 12, "feet"),
  9338. weight: math.unit(4963, "lb"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/amelia-rosie/back.svg",
  9342. extra: 1113 / 963,
  9343. bottom: 0.01
  9344. }
  9345. },
  9346. },
  9347. [
  9348. {
  9349. name: "Level 0",
  9350. height: math.unit(5 + 4 / 12, "feet")
  9351. },
  9352. {
  9353. name: "Level 1",
  9354. height: math.unit(164597, "feet"),
  9355. default: true
  9356. },
  9357. {
  9358. name: "Level 2",
  9359. height: math.unit(956243, "miles")
  9360. },
  9361. {
  9362. name: "Level 3",
  9363. height: math.unit(29421709423, "miles")
  9364. },
  9365. {
  9366. name: "Level 4",
  9367. height: math.unit(154, "lightyears")
  9368. },
  9369. {
  9370. name: "Level 5",
  9371. height: math.unit(4738272, "lightyears")
  9372. },
  9373. {
  9374. name: "Level 6",
  9375. height: math.unit(145787152896, "lightyears")
  9376. },
  9377. ]
  9378. ))
  9379. characterMakers.push(() => makeCharacter(
  9380. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9381. {
  9382. front: {
  9383. height: math.unit(5 + 11 / 12, "feet"),
  9384. weight: math.unit(65, "kg"),
  9385. name: "Front",
  9386. image: {
  9387. source: "./media/characters/rook-kitara/front.svg",
  9388. extra: 1347 / 1274,
  9389. bottom: 0.005
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Totally Unfair",
  9396. height: math.unit(1.8, "mm")
  9397. },
  9398. {
  9399. name: "Lap Rookie",
  9400. height: math.unit(1.4, "feet")
  9401. },
  9402. {
  9403. name: "Normal",
  9404. height: math.unit(5 + 11 / 12, "feet"),
  9405. default: true
  9406. },
  9407. {
  9408. name: "How Did This Happen",
  9409. height: math.unit(80, "miles")
  9410. }
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(7, "feet"),
  9418. weight: math.unit(300, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/pisces/front.svg",
  9422. extra: 2255 / 2115,
  9423. bottom: 0.03
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(7, "feet"),
  9428. weight: math.unit(300, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/pisces/back.svg",
  9432. extra: 2146 / 2055,
  9433. bottom: 0.04
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Normal",
  9440. height: math.unit(7, "feet"),
  9441. default: true
  9442. },
  9443. {
  9444. name: "Swimming Pool",
  9445. height: math.unit(12.2, "meters")
  9446. },
  9447. {
  9448. name: "Olympic Swimming Pool",
  9449. height: math.unit(56.3, "meters")
  9450. },
  9451. {
  9452. name: "Lake Superior",
  9453. height: math.unit(93900, "meters")
  9454. },
  9455. {
  9456. name: "Mediterranean Sea",
  9457. height: math.unit(644457, "meters")
  9458. },
  9459. {
  9460. name: "World's Oceans",
  9461. height: math.unit(4567491, "meters")
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(2.3, "meters"),
  9470. weight: math.unit(120, "kg"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/zelas/front.svg"
  9474. }
  9475. },
  9476. side: {
  9477. height: math.unit(2.3, "meters"),
  9478. weight: math.unit(120, "kg"),
  9479. name: "Side",
  9480. image: {
  9481. source: "./media/characters/zelas/side.svg"
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.3, "meters"),
  9486. weight: math.unit(120, "kg"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/zelas/back.svg"
  9490. }
  9491. },
  9492. foot: {
  9493. height: math.unit(1.116, "feet"),
  9494. name: "Foot",
  9495. image: {
  9496. source: "./media/characters/zelas/foot.svg"
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Normal",
  9503. height: math.unit(2.3, "meters")
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(30, "meters"),
  9508. default: true
  9509. },
  9510. ]
  9511. ))
  9512. characterMakers.push(() => makeCharacter(
  9513. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9514. {
  9515. front: {
  9516. height: math.unit(1, "inch"),
  9517. weight: math.unit(0.21, "grams"),
  9518. name: "Front",
  9519. image: {
  9520. source: "./media/characters/talbot/front.svg",
  9521. extra: 594 / 544
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Micro",
  9528. height: math.unit(1, "inch"),
  9529. default: true
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9535. {
  9536. front: {
  9537. height: math.unit(3 + 3 / 12, "feet"),
  9538. weight: math.unit(51.8, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/fliss/front.svg",
  9542. extra: 840 / 640
  9543. }
  9544. },
  9545. },
  9546. [
  9547. {
  9548. name: "Teeny Tiny",
  9549. height: math.unit(1, "mm")
  9550. },
  9551. {
  9552. name: "Small",
  9553. height: math.unit(1, "inch"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Standard Sylveon",
  9558. height: math.unit(3 + 3 / 12, "feet")
  9559. },
  9560. {
  9561. name: "Large Nuisance",
  9562. height: math.unit(33, "feet")
  9563. },
  9564. {
  9565. name: "City Filler",
  9566. height: math.unit(3000, "feet")
  9567. },
  9568. {
  9569. name: "New Horizon",
  9570. height: math.unit(6000, "miles")
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(5, "cm"),
  9579. weight: math.unit(1.94, "g"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/fleta/front.svg",
  9583. extra: 835 / 803
  9584. }
  9585. },
  9586. back: {
  9587. height: math.unit(5, "cm"),
  9588. weight: math.unit(1.94, "g"),
  9589. name: "Back",
  9590. image: {
  9591. source: "./media/characters/fleta/back.svg",
  9592. extra: 835 / 803
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Micro",
  9599. height: math.unit(5, "cm"),
  9600. default: true
  9601. },
  9602. ]
  9603. ))
  9604. characterMakers.push(() => makeCharacter(
  9605. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9606. {
  9607. front: {
  9608. height: math.unit(6, "feet"),
  9609. weight: math.unit(225, "lb"),
  9610. name: "Front",
  9611. image: {
  9612. source: "./media/characters/dominic/front.svg",
  9613. extra: 1770 / 1620,
  9614. bottom: 0.025
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(225, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/dominic/back.svg",
  9623. extra: 1745 / 1620,
  9624. bottom: 0.065
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Nano",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro-",
  9635. height: math.unit(1, "mm")
  9636. },
  9637. {
  9638. name: "Micro",
  9639. height: math.unit(4, "inches")
  9640. },
  9641. {
  9642. name: "Normal",
  9643. height: math.unit(6 + 4 / 12, "feet"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(115, "feet")
  9649. },
  9650. {
  9651. name: "Macro+",
  9652. height: math.unit(955, "feet")
  9653. },
  9654. {
  9655. name: "Megamacro",
  9656. height: math.unit(8990, "feet")
  9657. },
  9658. {
  9659. name: "Gigmacro",
  9660. height: math.unit(9310, "miles")
  9661. },
  9662. {
  9663. name: "Teramacro",
  9664. height: math.unit(1567005010, "miles")
  9665. },
  9666. {
  9667. name: "Examacro",
  9668. height: math.unit(1425, "parsecs")
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(400, "feet"),
  9677. weight: math.unit(44444444, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/major-colonel/front.svg"
  9681. }
  9682. },
  9683. back: {
  9684. height: math.unit(400, "feet"),
  9685. weight: math.unit(44444444, "lb"),
  9686. name: "Back",
  9687. image: {
  9688. source: "./media/characters/major-colonel/back.svg"
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(400, "feet"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9702. {
  9703. catFront: {
  9704. height: math.unit(6, "feet"),
  9705. weight: math.unit(120, "lb"),
  9706. name: "Front (Cat Side)",
  9707. image: {
  9708. source: "./media/characters/axel-lycan/cat-front.svg",
  9709. extra: 430 / 402,
  9710. bottom: 43 / 472.35
  9711. }
  9712. },
  9713. catBack: {
  9714. height: math.unit(6, "feet"),
  9715. weight: math.unit(120, "lb"),
  9716. name: "Back (Cat Side)",
  9717. image: {
  9718. source: "./media/characters/axel-lycan/cat-back.svg",
  9719. extra: 447 / 419,
  9720. bottom: 23.3 / 469
  9721. }
  9722. },
  9723. wolfFront: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(120, "lb"),
  9726. name: "Front (Wolf Side)",
  9727. image: {
  9728. source: "./media/characters/axel-lycan/wolf-front.svg",
  9729. extra: 485 / 456,
  9730. bottom: 19 / 504
  9731. }
  9732. },
  9733. wolfBack: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(120, "lb"),
  9736. name: "Back (Wolf Side)",
  9737. image: {
  9738. source: "./media/characters/axel-lycan/wolf-back.svg",
  9739. extra: 475 / 438,
  9740. bottom: 39.2 / 514
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(1, "km"),
  9748. default: true
  9749. },
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(5 + 9 / 12, "feet"),
  9757. weight: math.unit(175, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/vanrel-hyena/front.svg",
  9761. extra: 1086 / 1010,
  9762. bottom: 0.04
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(5 + 9 / 12, "feet"),
  9770. default: true
  9771. },
  9772. ]
  9773. ))
  9774. characterMakers.push(() => makeCharacter(
  9775. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9776. {
  9777. front: {
  9778. height: math.unit(6, "feet"),
  9779. weight: math.unit(103, "lb"),
  9780. name: "Front",
  9781. image: {
  9782. source: "./media/characters/abbott-absol/front.svg",
  9783. extra: 2010 / 1842
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Megamicro",
  9790. height: math.unit(0.1, "mm")
  9791. },
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(1, "inch")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(6, "feet"),
  9799. default: true
  9800. },
  9801. ]
  9802. ))
  9803. characterMakers.push(() => makeCharacter(
  9804. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9805. {
  9806. front: {
  9807. height: math.unit(6, "feet"),
  9808. weight: math.unit(264, "lb"),
  9809. name: "Front",
  9810. image: {
  9811. source: "./media/characters/hector/front.svg",
  9812. extra: 2280 / 2130,
  9813. bottom: 0.07
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(12.25, "foot"),
  9821. default: true
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(160, "feet")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/sal/front.svg",
  9838. extra: 1846 / 1699,
  9839. bottom: 0.04
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(10, "miles"),
  9847. default: true
  9848. },
  9849. ]
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9853. {
  9854. front: {
  9855. height: math.unit(3, "meters"),
  9856. weight: math.unit(450, "kg"),
  9857. name: "front",
  9858. image: {
  9859. source: "./media/characters/ranger/front.svg",
  9860. extra: 2401 / 2243,
  9861. bottom: 0.05
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(3, "meters"),
  9869. default: true
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(14, "feet"),
  9878. weight: math.unit(800, "kg"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/theresa/front.svg",
  9882. extra: 3575 / 3346,
  9883. bottom: 0.03
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(14, "feet"),
  9891. default: true
  9892. },
  9893. ]
  9894. ))
  9895. characterMakers.push(() => makeCharacter(
  9896. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9897. {
  9898. front: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(3, "kg"),
  9901. name: "Front",
  9902. image: {
  9903. source: "./media/characters/ine/front.svg",
  9904. extra: 678 / 539,
  9905. bottom: 0.023
  9906. }
  9907. },
  9908. },
  9909. [
  9910. {
  9911. name: "Normal",
  9912. height: math.unit(2.265, "feet"),
  9913. default: true
  9914. },
  9915. ]
  9916. ))
  9917. characterMakers.push(() => makeCharacter(
  9918. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9919. {
  9920. front: {
  9921. height: math.unit(5, "feet"),
  9922. weight: math.unit(30, "kg"),
  9923. name: "Front",
  9924. image: {
  9925. source: "./media/characters/vial/front.svg",
  9926. extra: 1365 / 1277,
  9927. bottom: 0.04
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5, "feet"),
  9935. default: true
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9941. {
  9942. side: {
  9943. height: math.unit(3.4, "meters"),
  9944. weight: math.unit(1000, "lb"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/rovoska/side.svg",
  9948. extra: 4403 / 1515
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(3.4, "meters"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9962. {
  9963. front: {
  9964. height: math.unit(8, "feet"),
  9965. weight: math.unit(315, "lb"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/gunner-rotthbauer/front.svg"
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(8, "feet"),
  9973. weight: math.unit(315, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/gunner-rotthbauer/back.svg"
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Micro",
  9983. height: math.unit(3.5, "inches")
  9984. },
  9985. {
  9986. name: "Normal",
  9987. height: math.unit(8, "feet"),
  9988. default: true
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(250, "feet")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(1, "AU")
  9997. },
  9998. ]
  9999. ))
  10000. characterMakers.push(() => makeCharacter(
  10001. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10002. {
  10003. front: {
  10004. height: math.unit(5 + 5 / 12, "feet"),
  10005. weight: math.unit(140, "lb"),
  10006. name: "Front",
  10007. image: {
  10008. source: "./media/characters/allatia/front.svg",
  10009. extra: 1227 / 1180,
  10010. bottom: 0.027
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(5 + 5 / 12, "feet")
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(250, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(8, "miles")
  10027. }
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(120, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/tene/front.svg",
  10039. extra: 814/750,
  10040. bottom: 36/850
  10041. }
  10042. },
  10043. stomping: {
  10044. height: math.unit(2.025, "meters"),
  10045. weight: math.unit(120, "lb"),
  10046. name: "Stomping",
  10047. image: {
  10048. source: "./media/characters/tene/stomping.svg",
  10049. extra: 885/821,
  10050. bottom: 15/900
  10051. }
  10052. },
  10053. sitting: {
  10054. height: math.unit(1, "meter"),
  10055. weight: math.unit(120, "lb"),
  10056. name: "Sitting",
  10057. image: {
  10058. source: "./media/characters/tene/sitting.svg",
  10059. extra: 396/366,
  10060. bottom: 79/475
  10061. }
  10062. },
  10063. smiling: {
  10064. height: math.unit(1.2, "feet"),
  10065. name: "Smiling",
  10066. image: {
  10067. source: "./media/characters/tene/smiling.svg",
  10068. extra: 1364/1071,
  10069. bottom: 0/1364
  10070. }
  10071. },
  10072. smug: {
  10073. height: math.unit(1.3, "feet"),
  10074. name: "Smug",
  10075. image: {
  10076. source: "./media/characters/tene/smug.svg",
  10077. extra: 1323/1082,
  10078. bottom: 0/1323
  10079. }
  10080. },
  10081. feral: {
  10082. height: math.unit(3.9, "feet"),
  10083. weight: math.unit(250, "lb"),
  10084. name: "Feral",
  10085. image: {
  10086. source: "./media/characters/tene/feral.svg",
  10087. extra: 717 / 458,
  10088. bottom: 0.179
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(300, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(5, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10110. {
  10111. side: {
  10112. height: math.unit(6, "feet"),
  10113. name: "Side",
  10114. image: {
  10115. source: "./media/characters/evander/side.svg",
  10116. extra: 877 / 477
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(0.83, "meters"),
  10124. default: true
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(12, "feet"),
  10133. weight: math.unit(1000, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10137. extra: 1762 / 1611
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(12, "feet"),
  10142. weight: math.unit(1000, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10146. extra: 1762 / 1611
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(12, "feet"),
  10154. default: true
  10155. },
  10156. {
  10157. name: "Kaiju",
  10158. height: math.unit(150, "feet")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(6, "feet"),
  10167. weight: math.unit(150, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/zero-alurus/front.svg"
  10171. }
  10172. },
  10173. back: {
  10174. height: math.unit(6, "feet"),
  10175. weight: math.unit(150, "lb"),
  10176. name: "Back",
  10177. image: {
  10178. source: "./media/characters/zero-alurus/back.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(5 + 10 / 12, "feet")
  10186. },
  10187. {
  10188. name: "Macro",
  10189. height: math.unit(60, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro+",
  10194. height: math.unit(450, "feet")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(200, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/mega-shi/front.svg",
  10207. extra: 1279 / 1250,
  10208. bottom: 0.02
  10209. }
  10210. },
  10211. back: {
  10212. height: math.unit(6, "feet"),
  10213. weight: math.unit(200, "lb"),
  10214. name: "Back",
  10215. image: {
  10216. source: "./media/characters/mega-shi/back.svg",
  10217. extra: 1279 / 1250,
  10218. bottom: 0.02
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Micro",
  10225. height: math.unit(16 + 6 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Third Dimension",
  10229. height: math.unit(40, "meters")
  10230. },
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(660, "feet"),
  10234. default: true
  10235. },
  10236. {
  10237. name: "Megamacro",
  10238. height: math.unit(10, "miles")
  10239. },
  10240. {
  10241. name: "Planetary Launch",
  10242. height: math.unit(500, "miles")
  10243. },
  10244. {
  10245. name: "Interstellar",
  10246. height: math.unit(1e9, "miles")
  10247. },
  10248. {
  10249. name: "Leaving the Universe",
  10250. height: math.unit(1, "gigaparsec")
  10251. },
  10252. {
  10253. name: "Travelling Universes",
  10254. height: math.unit(30e15, "parsecs")
  10255. },
  10256. ]
  10257. ))
  10258. characterMakers.push(() => makeCharacter(
  10259. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10260. {
  10261. front: {
  10262. height: math.unit(5 + 4/12, "feet"),
  10263. weight: math.unit(120, "lb"),
  10264. name: "Front",
  10265. image: {
  10266. source: "./media/characters/odyssey/front.svg",
  10267. extra: 1747/1571,
  10268. bottom: 47/1794
  10269. }
  10270. },
  10271. side: {
  10272. height: math.unit(5.1, "feet"),
  10273. weight: math.unit(120, "lb"),
  10274. name: "Side",
  10275. image: {
  10276. source: "./media/characters/odyssey/side.svg",
  10277. extra: 1847/1619,
  10278. bottom: 47/1894
  10279. }
  10280. },
  10281. lounging: {
  10282. height: math.unit(1.464, "feet"),
  10283. weight: math.unit(120, "lb"),
  10284. name: "Lounging",
  10285. image: {
  10286. source: "./media/characters/odyssey/lounging.svg",
  10287. extra: 1235/837,
  10288. bottom: 551/1786
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(5 + 4 / 12, "feet")
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(1, "km")
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(3000, "km")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(1, "AU"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Omniversal",
  10312. height: math.unit(100e14, "lightyears")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(300, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/mekuto/front.svg",
  10325. extra: 921 / 832,
  10326. bottom: 0.03
  10327. }
  10328. },
  10329. hand: {
  10330. height: math.unit(6 / 10.24, "feet"),
  10331. name: "Hand",
  10332. image: {
  10333. source: "./media/characters/mekuto/hand.svg"
  10334. }
  10335. },
  10336. foot: {
  10337. height: math.unit(6 / 5.05, "feet"),
  10338. name: "Foot",
  10339. image: {
  10340. source: "./media/characters/mekuto/foot.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Minimicro",
  10347. height: math.unit(0.2, "inches")
  10348. },
  10349. {
  10350. name: "Micro",
  10351. height: math.unit(1.5, "inches")
  10352. },
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5 + 11 / 12, "feet"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Minimacro",
  10360. height: math.unit(17 + 9 / 12, "feet")
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(177.5, "feet")
  10365. },
  10366. {
  10367. name: "Megamacro",
  10368. height: math.unit(152, "miles")
  10369. },
  10370. ]
  10371. ))
  10372. characterMakers.push(() => makeCharacter(
  10373. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10374. {
  10375. front: {
  10376. height: math.unit(6.5, "inches"),
  10377. weight: math.unit(13, "oz"),
  10378. name: "Front",
  10379. image: {
  10380. source: "./media/characters/dafydd-tomos/front.svg",
  10381. extra: 2990 / 2603,
  10382. bottom: 0.03
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(6.5, "inches"),
  10390. default: true
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/splinter/front.svg",
  10403. extra: 2990 / 2882,
  10404. bottom: 0.04
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(150, "lb"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/splinter/back.svg",
  10413. extra: 2990 / 2882,
  10414. bottom: 0.04
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(6, "feet")
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(230, "meters"),
  10426. default: true
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(4 + 10 / 12, "feet"),
  10435. weight: math.unit(480, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/snow-gabumon/front.svg",
  10439. extra: 1140 / 963,
  10440. bottom: 0.058
  10441. }
  10442. },
  10443. back: {
  10444. height: math.unit(4 + 10 / 12, "feet"),
  10445. weight: math.unit(480, "lb"),
  10446. name: "Back",
  10447. image: {
  10448. source: "./media/characters/snow-gabumon/back.svg",
  10449. extra: 1115 / 962,
  10450. bottom: 0.041
  10451. }
  10452. },
  10453. frontUndresed: {
  10454. height: math.unit(4 + 10 / 12, "feet"),
  10455. weight: math.unit(480, "lb"),
  10456. name: "Front (Undressed)",
  10457. image: {
  10458. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10459. extra: 1061 / 960,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(1, "inch")
  10468. },
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(4 + 10 / 12, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(200, "feet")
  10477. },
  10478. {
  10479. name: "Megamacro",
  10480. height: math.unit(120, "miles")
  10481. },
  10482. {
  10483. name: "Gigamacro",
  10484. height: math.unit(9800, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(1.7, "meters"),
  10493. weight: math.unit(140, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/moody/front.svg",
  10497. extra: 3226 / 3007,
  10498. bottom: 0.087
  10499. }
  10500. },
  10501. },
  10502. [
  10503. {
  10504. name: "Micro",
  10505. height: math.unit(1, "mm")
  10506. },
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(1.7, "meters"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(80, "meters")
  10515. },
  10516. {
  10517. name: "Macro+",
  10518. height: math.unit(500, "meters")
  10519. },
  10520. ]
  10521. ))
  10522. characterMakers.push(() => makeCharacter(
  10523. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10524. {
  10525. front: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(150, "lb"),
  10528. name: "Front",
  10529. image: {
  10530. source: "./media/characters/zyas/front.svg",
  10531. extra: 1180 / 1120,
  10532. bottom: 0.045
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(10, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(500, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(5, "miles")
  10549. },
  10550. {
  10551. name: "Teramacro",
  10552. height: math.unit(150000, "miles")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/cuon/front.svg",
  10565. extra: 1390 / 1320,
  10566. bottom: 0.008
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(3, "inches")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(18 + 9 / 12, "feet"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(360, "feet")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(360, "miles")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(2.4, "meters"),
  10595. weight: math.unit(70, "kg"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/nyanuxk/front.svg",
  10599. extra: 1172 / 1084,
  10600. bottom: 0.065
  10601. }
  10602. },
  10603. side: {
  10604. height: math.unit(2.4, "meters"),
  10605. weight: math.unit(70, "kg"),
  10606. name: "Side",
  10607. image: {
  10608. source: "./media/characters/nyanuxk/side.svg",
  10609. extra: 1190 / 1132,
  10610. bottom: 0.007
  10611. }
  10612. },
  10613. back: {
  10614. height: math.unit(2.4, "meters"),
  10615. weight: math.unit(70, "kg"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/nyanuxk/back.svg",
  10619. extra: 1200 / 1141,
  10620. bottom: 0.015
  10621. }
  10622. },
  10623. foot: {
  10624. height: math.unit(0.52, "meters"),
  10625. name: "Foot",
  10626. image: {
  10627. source: "./media/characters/nyanuxk/foot.svg"
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Micro",
  10634. height: math.unit(2, "cm")
  10635. },
  10636. {
  10637. name: "Normal",
  10638. height: math.unit(2.4, "meters"),
  10639. default: true
  10640. },
  10641. {
  10642. name: "Smaller Macro",
  10643. height: math.unit(120, "meters")
  10644. },
  10645. {
  10646. name: "Bigger Macro",
  10647. height: math.unit(1.2, "km")
  10648. },
  10649. {
  10650. name: "Megamacro",
  10651. height: math.unit(15, "kilometers")
  10652. },
  10653. {
  10654. name: "Gigamacro",
  10655. height: math.unit(2000, "km")
  10656. },
  10657. {
  10658. name: "Teramacro",
  10659. height: math.unit(500000, "km")
  10660. },
  10661. ]
  10662. ))
  10663. characterMakers.push(() => makeCharacter(
  10664. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10665. {
  10666. side: {
  10667. height: math.unit(6, "feet"),
  10668. name: "Side",
  10669. image: {
  10670. source: "./media/characters/ailbhe/side.svg",
  10671. extra: 757 / 464,
  10672. bottom: 0.041
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.07, "meters"),
  10680. default: true
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(120, "kg"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zevulfius/front.svg",
  10693. extra: 965 / 903
  10694. }
  10695. },
  10696. side: {
  10697. height: math.unit(6, "feet"),
  10698. weight: math.unit(120, "kg"),
  10699. name: "Side",
  10700. image: {
  10701. source: "./media/characters/zevulfius/side.svg",
  10702. extra: 939 / 900
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(120, "kg"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/zevulfius/back.svg",
  10711. extra: 918 / 854,
  10712. bottom: 0.005
  10713. }
  10714. },
  10715. foot: {
  10716. height: math.unit(6 / 3.72, "feet"),
  10717. name: "Foot",
  10718. image: {
  10719. source: "./media/characters/zevulfius/foot.svg"
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(750, "meters")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(20, "km"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Gigamacro",
  10735. height: math.unit(2000, "km")
  10736. },
  10737. {
  10738. name: "Teramacro",
  10739. height: math.unit(250000, "km")
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(100, "feet"),
  10748. weight: math.unit(350, "kg"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/rikes/front.svg",
  10752. extra: 1565 / 1483,
  10753. bottom: 0.017
  10754. }
  10755. },
  10756. },
  10757. [
  10758. {
  10759. name: "Macro",
  10760. height: math.unit(100, "feet"),
  10761. default: true
  10762. },
  10763. ]
  10764. ))
  10765. characterMakers.push(() => makeCharacter(
  10766. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10767. {
  10768. front: {
  10769. height: math.unit(8, "feet"),
  10770. weight: math.unit(356, "lb"),
  10771. name: "Front",
  10772. image: {
  10773. source: "./media/characters/adam-silver-mane/front.svg",
  10774. extra: 1036/937,
  10775. bottom: 63/1099
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(8, "feet"),
  10780. weight: math.unit(356, "lb"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/adam-silver-mane/side.svg",
  10784. extra: 997/901,
  10785. bottom: 59/1056
  10786. }
  10787. },
  10788. frontNsfw: {
  10789. height: math.unit(8, "feet"),
  10790. weight: math.unit(356, "lb"),
  10791. name: "Front (NSFW)",
  10792. image: {
  10793. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10794. extra: 1036/937,
  10795. bottom: 63/1099
  10796. }
  10797. },
  10798. sideNsfw: {
  10799. height: math.unit(8, "feet"),
  10800. weight: math.unit(356, "lb"),
  10801. name: "Side (NSFW)",
  10802. image: {
  10803. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10804. extra: 997/901,
  10805. bottom: 59/1056
  10806. }
  10807. },
  10808. dick: {
  10809. height: math.unit(2.1, "feet"),
  10810. name: "Dick",
  10811. image: {
  10812. source: "./media/characters/adam-silver-mane/dick.svg"
  10813. }
  10814. },
  10815. taur: {
  10816. height: math.unit(16, "feet"),
  10817. weight: math.unit(1500, "kg"),
  10818. name: "Taur",
  10819. image: {
  10820. source: "./media/characters/adam-silver-mane/taur.svg",
  10821. extra: 1713 / 1571,
  10822. bottom: 0.01
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(8, "feet")
  10830. },
  10831. {
  10832. name: "Minimacro",
  10833. height: math.unit(80, "feet")
  10834. },
  10835. {
  10836. name: "MDA",
  10837. height: math.unit(80, "meters")
  10838. },
  10839. {
  10840. name: "Macro",
  10841. height: math.unit(800, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(8000, "feet")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(800, "miles")
  10851. },
  10852. {
  10853. name: "Teramacro",
  10854. height: math.unit(80000, "miles")
  10855. },
  10856. {
  10857. name: "Celestial",
  10858. height: math.unit(8e6, "miles")
  10859. },
  10860. {
  10861. name: "Star Dragon",
  10862. height: math.unit(800000, "parsecs")
  10863. },
  10864. {
  10865. name: "Godly",
  10866. height: math.unit(800, "teraparsecs")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/ky'owin/front.svg",
  10879. extra: 3888 / 3068,
  10880. bottom: 0.015
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(6 + 8 / 12, "feet")
  10888. },
  10889. {
  10890. name: "Large",
  10891. height: math.unit(68, "feet")
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(132, "feet")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(340, "feet")
  10900. },
  10901. {
  10902. name: "Macro++",
  10903. height: math.unit(680, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(1, "mile")
  10909. },
  10910. {
  10911. name: "Megamacro+",
  10912. height: math.unit(10, "miles")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4, "feet"),
  10921. weight: math.unit(50, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/mal/front.svg",
  10925. extra: 785 / 724,
  10926. bottom: 0.07
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Micro",
  10933. height: math.unit(4, "inches")
  10934. },
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(4, "feet"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(200, "feet")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(150, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/jordan-deware/front.svg",
  10955. extra: 1191 / 1012
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Nano",
  10962. height: math.unit(0.01, "mm")
  10963. },
  10964. {
  10965. name: "Minimicro",
  10966. height: math.unit(1, "mm")
  10967. },
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(0.5, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(4, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Minimacro",
  10979. height: math.unit(40, "meters")
  10980. },
  10981. {
  10982. name: "Small Macro",
  10983. height: math.unit(400, "meters")
  10984. },
  10985. {
  10986. name: "Macro",
  10987. height: math.unit(4, "miles")
  10988. },
  10989. {
  10990. name: "Megamacro",
  10991. height: math.unit(40, "miles")
  10992. },
  10993. {
  10994. name: "Megamacro+",
  10995. height: math.unit(400, "miles")
  10996. },
  10997. {
  10998. name: "Gigamacro",
  10999. height: math.unit(400000, "miles")
  11000. },
  11001. ]
  11002. ))
  11003. characterMakers.push(() => makeCharacter(
  11004. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11005. {
  11006. side: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(150, "lb"),
  11009. name: "Side",
  11010. image: {
  11011. source: "./media/characters/kimiko/side.svg",
  11012. extra: 600 / 358
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(15, "feet"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(220, "feet")
  11025. },
  11026. {
  11027. name: "Macro+",
  11028. height: math.unit(1450, "feet")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(11500, "feet")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(9500, "miles")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(2208005005, "miles")
  11041. },
  11042. {
  11043. name: "Examacro",
  11044. height: math.unit(2750, "parsecs")
  11045. },
  11046. {
  11047. name: "Zettamacro",
  11048. height: math.unit(101500, "parsecs")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11054. {
  11055. front: {
  11056. height: math.unit(6, "feet"),
  11057. weight: math.unit(70, "kg"),
  11058. name: "Front",
  11059. image: {
  11060. source: "./media/characters/andrew-sleepy/front.svg"
  11061. }
  11062. },
  11063. side: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(70, "kg"),
  11066. name: "Side",
  11067. image: {
  11068. source: "./media/characters/andrew-sleepy/side.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(1, "mm"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(150, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/judio/front.svg",
  11089. extra: 1258 / 1110
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Normal",
  11096. height: math.unit(5 + 6 / 12, "feet")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(1000, "feet"),
  11101. default: true
  11102. },
  11103. {
  11104. name: "Megamacro",
  11105. height: math.unit(10, "miles")
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11111. {
  11112. frontDressed: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(68, "kg"),
  11115. name: "Front (Dressed)",
  11116. image: {
  11117. source: "./media/characters/nomaxice/front-dressed.svg",
  11118. extra: 1137/824,
  11119. bottom: 74/1211
  11120. }
  11121. },
  11122. frontShorts: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(68, "kg"),
  11125. name: "Front (Shorts)",
  11126. image: {
  11127. source: "./media/characters/nomaxice/front-shorts.svg",
  11128. extra: 1137/824,
  11129. bottom: 74/1211
  11130. }
  11131. },
  11132. back: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(68, "kg"),
  11135. name: "Back",
  11136. image: {
  11137. source: "./media/characters/nomaxice/back.svg",
  11138. extra: 822/786,
  11139. bottom: 39/861
  11140. }
  11141. },
  11142. hand: {
  11143. height: math.unit(0.565, "feet"),
  11144. name: "Hand",
  11145. image: {
  11146. source: "./media/characters/nomaxice/hand.svg"
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(1, "feet"),
  11151. name: "Foot",
  11152. image: {
  11153. source: "./media/characters/nomaxice/foot.svg"
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Micro",
  11160. height: math.unit(8, "cm")
  11161. },
  11162. {
  11163. name: "Norm",
  11164. height: math.unit(1.82, "m")
  11165. },
  11166. {
  11167. name: "Norm+",
  11168. height: math.unit(8.8, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Big",
  11173. height: math.unit(8, "meters")
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(18, "meters")
  11178. },
  11179. {
  11180. name: "Macro+",
  11181. height: math.unit(88, "meters")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(12, "feet"),
  11190. weight: math.unit(1.5, "tons"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/dydros/front.svg",
  11194. extra: 863 / 800,
  11195. bottom: 0.015
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(12, "feet"),
  11200. weight: math.unit(1.5, "tons"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/dydros/back.svg",
  11204. extra: 900 / 843,
  11205. bottom: 0.005
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Normal",
  11212. height: math.unit(12, "feet"),
  11213. default: true
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(6, "feet"),
  11222. weight: math.unit(100, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/riggi/front.svg",
  11226. extra: 5787 / 5303
  11227. }
  11228. },
  11229. hyper: {
  11230. height: math.unit(6 * 5 / 3, "feet"),
  11231. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11232. name: "Hyper",
  11233. image: {
  11234. source: "./media/characters/riggi/hyper.svg",
  11235. extra: 3595 / 3485
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Small Macro",
  11242. height: math.unit(50, "feet")
  11243. },
  11244. {
  11245. name: "Default",
  11246. height: math.unit(200, "feet"),
  11247. default: true
  11248. },
  11249. {
  11250. name: "Loom",
  11251. height: math.unit(10000, "feet")
  11252. },
  11253. {
  11254. name: "Cruising Altitude",
  11255. height: math.unit(30000, "feet")
  11256. },
  11257. {
  11258. name: "Megamacro",
  11259. height: math.unit(100, "miles")
  11260. },
  11261. {
  11262. name: "Continent Sized",
  11263. height: math.unit(2800, "miles")
  11264. },
  11265. {
  11266. name: "Earth Sized",
  11267. height: math.unit(8000, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11273. {
  11274. front: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(250, "lb"),
  11277. name: "Front",
  11278. image: {
  11279. source: "./media/characters/alexi/front.svg",
  11280. extra: 3483 / 3291,
  11281. bottom: 0.04
  11282. }
  11283. },
  11284. back: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(250, "lb"),
  11287. name: "Back",
  11288. image: {
  11289. source: "./media/characters/alexi/back.svg",
  11290. extra: 3533 / 3356,
  11291. bottom: 0.021
  11292. }
  11293. },
  11294. frontTransforming: {
  11295. height: math.unit(8.58, "feet"),
  11296. weight: math.unit(1300, "lb"),
  11297. name: "Transforming",
  11298. image: {
  11299. source: "./media/characters/alexi/front-transforming.svg",
  11300. extra: 437 / 409,
  11301. bottom: 19 / 458.66
  11302. }
  11303. },
  11304. frontTransformed: {
  11305. height: math.unit(12.5, "feet"),
  11306. weight: math.unit(4000, "lb"),
  11307. name: "Transformed",
  11308. image: {
  11309. source: "./media/characters/alexi/front-transformed.svg",
  11310. extra: 639 / 614,
  11311. bottom: 30.55 / 671
  11312. }
  11313. },
  11314. },
  11315. [
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(14, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Minimacro",
  11323. height: math.unit(30, "meters")
  11324. },
  11325. {
  11326. name: "Macro",
  11327. height: math.unit(500, "meters")
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(9000, "km")
  11332. },
  11333. {
  11334. name: "Teramacro",
  11335. height: math.unit(384000, "km")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(150, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/kayroo/front.svg",
  11348. extra: 1153 / 1038,
  11349. bottom: 0.06
  11350. }
  11351. },
  11352. foot: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Foot",
  11356. image: {
  11357. source: "./media/characters/kayroo/foot.svg"
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(8, "feet"),
  11365. default: true
  11366. },
  11367. {
  11368. name: "Minimacro",
  11369. height: math.unit(250, "feet")
  11370. },
  11371. {
  11372. name: "Macro",
  11373. height: math.unit(2800, "feet")
  11374. },
  11375. {
  11376. name: "Megamacro",
  11377. height: math.unit(5200, "feet")
  11378. },
  11379. {
  11380. name: "Gigamacro",
  11381. height: math.unit(27000, "feet")
  11382. },
  11383. {
  11384. name: "Omega",
  11385. height: math.unit(45000, "feet")
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(18, "feet"),
  11394. weight: math.unit(5800, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/rhys/front.svg",
  11398. extra: 3386 / 3090,
  11399. bottom: 0.07
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(18, "feet"),
  11407. default: true
  11408. },
  11409. {
  11410. name: "Working Size",
  11411. height: math.unit(200, "feet")
  11412. },
  11413. {
  11414. name: "Demolition Size",
  11415. height: math.unit(2000, "feet")
  11416. },
  11417. {
  11418. name: "Maximum Licensed Size",
  11419. height: math.unit(5, "miles")
  11420. },
  11421. {
  11422. name: "Maximum Observed Size",
  11423. height: math.unit(10, "yottameters")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11429. {
  11430. front: {
  11431. height: math.unit(6, "feet"),
  11432. weight: math.unit(250, "lb"),
  11433. name: "Front",
  11434. image: {
  11435. source: "./media/characters/toto/front.svg",
  11436. extra: 527 / 479,
  11437. bottom: 0.05
  11438. }
  11439. },
  11440. },
  11441. [
  11442. {
  11443. name: "Micro",
  11444. height: math.unit(3, "feet")
  11445. },
  11446. {
  11447. name: "Normal",
  11448. height: math.unit(10, "feet")
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(150, "feet"),
  11453. default: true
  11454. },
  11455. {
  11456. name: "Megamacro",
  11457. height: math.unit(1200, "feet")
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "King", species: ["lion"], tags: ["anthro"] },
  11463. {
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/king/back.svg"
  11470. }
  11471. },
  11472. },
  11473. [
  11474. {
  11475. name: "Micro",
  11476. height: math.unit(2, "inches")
  11477. },
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(8, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(200, "feet"),
  11485. default: true
  11486. },
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(50, "miles")
  11490. },
  11491. ]
  11492. ))
  11493. characterMakers.push(() => makeCharacter(
  11494. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11495. {
  11496. front: {
  11497. height: math.unit(11, "feet"),
  11498. weight: math.unit(1400, "lb"),
  11499. name: "Front",
  11500. image: {
  11501. source: "./media/characters/cordite/front.svg",
  11502. extra: 1919/1827,
  11503. bottom: 40/1959
  11504. }
  11505. },
  11506. side: {
  11507. height: math.unit(11, "feet"),
  11508. weight: math.unit(1400, "lb"),
  11509. name: "Side",
  11510. image: {
  11511. source: "./media/characters/cordite/side.svg",
  11512. extra: 1908/1793,
  11513. bottom: 38/1946
  11514. }
  11515. },
  11516. back: {
  11517. height: math.unit(11, "feet"),
  11518. weight: math.unit(1400, "lb"),
  11519. name: "Back",
  11520. image: {
  11521. source: "./media/characters/cordite/back.svg",
  11522. extra: 1938/1837,
  11523. bottom: 10/1948
  11524. }
  11525. },
  11526. feral: {
  11527. height: math.unit(2, "feet"),
  11528. weight: math.unit(90, "lb"),
  11529. name: "Feral",
  11530. image: {
  11531. source: "./media/characters/cordite/feral.svg",
  11532. extra: 1260 / 755,
  11533. bottom: 0.05
  11534. }
  11535. },
  11536. },
  11537. [
  11538. {
  11539. name: "Normal",
  11540. height: math.unit(11, "feet"),
  11541. default: true
  11542. },
  11543. ]
  11544. ))
  11545. characterMakers.push(() => makeCharacter(
  11546. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11547. {
  11548. front: {
  11549. height: math.unit(6, "feet"),
  11550. weight: math.unit(150, "lb"),
  11551. name: "Front",
  11552. image: {
  11553. source: "./media/characters/pianostrong/front.svg",
  11554. extra: 6577 / 6254,
  11555. bottom: 0.02
  11556. }
  11557. },
  11558. side: {
  11559. height: math.unit(6, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/pianostrong/side.svg",
  11564. extra: 6106 / 5730
  11565. }
  11566. },
  11567. back: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Back",
  11571. image: {
  11572. source: "./media/characters/pianostrong/back.svg",
  11573. extra: 6085 / 5733,
  11574. bottom: 0.01
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(100, "feet")
  11582. },
  11583. {
  11584. name: "Macro+",
  11585. height: math.unit(300, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro++",
  11590. height: math.unit(1000, "feet")
  11591. },
  11592. ]
  11593. ))
  11594. characterMakers.push(() => makeCharacter(
  11595. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11596. {
  11597. front: {
  11598. height: math.unit(6, "feet"),
  11599. weight: math.unit(150, "lb"),
  11600. name: "Front",
  11601. image: {
  11602. source: "./media/characters/kona/front.svg",
  11603. extra: 2960 / 2629,
  11604. bottom: 0.005
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(11 + 8 / 12, "feet")
  11612. },
  11613. {
  11614. name: "Macro",
  11615. height: math.unit(850, "feet"),
  11616. default: true
  11617. },
  11618. {
  11619. name: "Macro+",
  11620. height: math.unit(1.5, "km"),
  11621. default: true
  11622. },
  11623. {
  11624. name: "Megamacro",
  11625. height: math.unit(80, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(3500, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. side: {
  11637. height: math.unit(1.9, "meters"),
  11638. weight: math.unit(326, "kg"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/levi/side.svg",
  11642. extra: 1704 / 1334,
  11643. bottom: 0.02
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Normal",
  11650. height: math.unit(1.9, "meters"),
  11651. default: true
  11652. },
  11653. {
  11654. name: "Macro",
  11655. height: math.unit(20, "meters")
  11656. },
  11657. {
  11658. name: "Macro+",
  11659. height: math.unit(200, "meters")
  11660. },
  11661. {
  11662. name: "Megamacro",
  11663. height: math.unit(2, "km")
  11664. },
  11665. {
  11666. name: "Megamacro+",
  11667. height: math.unit(20, "km")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(2500, "km")
  11672. },
  11673. {
  11674. name: "Gigamacro+",
  11675. height: math.unit(120000, "km")
  11676. },
  11677. {
  11678. name: "Teramacro",
  11679. height: math.unit(7.77e6, "km")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6 + 4/12, "feet"),
  11688. weight: math.unit(190, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/bmc/front.svg",
  11692. extra: 1626/1472,
  11693. bottom: 79/1705
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6 + 4/12, "feet"),
  11698. weight: math.unit(190, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/bmc/back.svg",
  11702. extra: 1640/1479,
  11703. bottom: 45/1685
  11704. }
  11705. },
  11706. frontArmor: {
  11707. height: math.unit(6 + 4/12, "feet"),
  11708. weight: math.unit(190, "lb"),
  11709. name: "Front-armor",
  11710. image: {
  11711. source: "./media/characters/bmc/front-armor.svg",
  11712. extra: 1538/1468,
  11713. bottom: 79/1617
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Human-sized",
  11720. height: math.unit(6 + 4 / 12, "feet")
  11721. },
  11722. {
  11723. name: "Interactive Size",
  11724. height: math.unit(25, "feet")
  11725. },
  11726. {
  11727. name: "Small",
  11728. height: math.unit(250, "feet")
  11729. },
  11730. {
  11731. name: "Normal",
  11732. height: math.unit(1250, "feet"),
  11733. default: true
  11734. },
  11735. {
  11736. name: "Good Day",
  11737. height: math.unit(88, "miles")
  11738. },
  11739. {
  11740. name: "Largest Measured Size",
  11741. height: math.unit(105.960, "galaxies")
  11742. },
  11743. ]
  11744. ))
  11745. characterMakers.push(() => makeCharacter(
  11746. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11747. {
  11748. front: {
  11749. height: math.unit(20, "feet"),
  11750. weight: math.unit(2016, "kg"),
  11751. name: "Front",
  11752. image: {
  11753. source: "./media/characters/sven-the-kaiju/front.svg",
  11754. extra: 1277/1250,
  11755. bottom: 35/1312
  11756. }
  11757. },
  11758. mouth: {
  11759. height: math.unit(1.85, "feet"),
  11760. name: "Mouth",
  11761. image: {
  11762. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Fairy",
  11769. height: math.unit(6, "inches")
  11770. },
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(20, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Rampage",
  11778. height: math.unit(200, "feet")
  11779. },
  11780. {
  11781. name: "Archfey Forest Guardian",
  11782. height: math.unit(1, "mile")
  11783. },
  11784. ]
  11785. ))
  11786. characterMakers.push(() => makeCharacter(
  11787. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11788. {
  11789. front: {
  11790. height: math.unit(4, "meters"),
  11791. weight: math.unit(2, "tons"),
  11792. name: "Front",
  11793. image: {
  11794. source: "./media/characters/marik/front.svg",
  11795. extra: 1057 / 1003,
  11796. bottom: 0.08
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(4, "meters"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(20, "meters")
  11809. },
  11810. {
  11811. name: "Megamacro",
  11812. height: math.unit(50, "km")
  11813. },
  11814. {
  11815. name: "Gigamacro",
  11816. height: math.unit(100, "km")
  11817. },
  11818. {
  11819. name: "Alpha Macro",
  11820. height: math.unit(7.88e7, "yottameters")
  11821. },
  11822. ]
  11823. ))
  11824. characterMakers.push(() => makeCharacter(
  11825. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11826. {
  11827. front: {
  11828. height: math.unit(6, "feet"),
  11829. weight: math.unit(110, "lb"),
  11830. name: "Front",
  11831. image: {
  11832. source: "./media/characters/mel/front.svg",
  11833. extra: 736 / 617,
  11834. bottom: 0.017
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Pico",
  11841. height: math.unit(3, "pm")
  11842. },
  11843. {
  11844. name: "Nano",
  11845. height: math.unit(3, "nm")
  11846. },
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(0.3, "mm"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Micro+",
  11854. height: math.unit(3, "mm")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(5 + 10.5 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11864. {
  11865. kaiju: {
  11866. height: math.unit(1.75, "meters"),
  11867. weight: math.unit(55, "kg"),
  11868. name: "Kaiju",
  11869. image: {
  11870. source: "./media/characters/lykonous/kaiju.svg",
  11871. extra: 1055 / 946,
  11872. bottom: 0.135
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(2.5, "meters"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Kaiju Dragon",
  11884. height: math.unit(60, "meters")
  11885. },
  11886. {
  11887. name: "Mega Kaiju",
  11888. height: math.unit(120, "km")
  11889. },
  11890. {
  11891. name: "Giga Kaiju",
  11892. height: math.unit(200, "megameters")
  11893. },
  11894. {
  11895. name: "Terra Kaiju",
  11896. height: math.unit(400, "gigameters")
  11897. },
  11898. {
  11899. name: "Kaiju Dragon God",
  11900. height: math.unit(13000, "exaparsecs")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/blü/front.svg",
  11913. extra: 1883 / 1564,
  11914. bottom: 0.031
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(13, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Big Boi",
  11926. height: math.unit(150, "meters")
  11927. },
  11928. {
  11929. name: "Mini Stomper",
  11930. height: math.unit(300, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(1000, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(11000, "meters")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(11000, "km")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(420000, "km")
  11947. },
  11948. {
  11949. name: "Examacro",
  11950. height: math.unit(120, "parsecs")
  11951. },
  11952. {
  11953. name: "God Tho",
  11954. height: math.unit(98000000000, "parsecs")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11960. {
  11961. taurFront: {
  11962. height: math.unit(6, "feet"),
  11963. weight: math.unit(200, "lb"),
  11964. name: "Taur (Front)",
  11965. image: {
  11966. source: "./media/characters/scales/taur-front.svg",
  11967. extra: 1,
  11968. bottom: 0.05
  11969. }
  11970. },
  11971. taurBack: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(200, "lb"),
  11974. name: "Taur (Back)",
  11975. image: {
  11976. source: "./media/characters/scales/taur-back.svg",
  11977. extra: 1,
  11978. bottom: 0.08
  11979. }
  11980. },
  11981. anthro: {
  11982. height: math.unit(6 * 7 / 12, "feet"),
  11983. weight: math.unit(100, "lb"),
  11984. name: "Anthro",
  11985. image: {
  11986. source: "./media/characters/scales/anthro.svg",
  11987. extra: 1,
  11988. bottom: 0.06
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(150, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/koragos/front.svg",
  12009. extra: 841 / 794,
  12010. bottom: 0.035
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(150, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/koragos/back.svg",
  12019. extra: 841 / 810,
  12020. bottom: 0.022
  12021. }
  12022. },
  12023. },
  12024. [
  12025. {
  12026. name: "Normal",
  12027. height: math.unit(6 + 11 / 12, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Macro",
  12032. height: math.unit(490, "feet")
  12033. },
  12034. {
  12035. name: "Megamacro",
  12036. height: math.unit(10, "miles")
  12037. },
  12038. {
  12039. name: "Gigamacro",
  12040. height: math.unit(50, "miles")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(250, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/xylrem/front.svg",
  12053. extra: 3323 / 3050,
  12054. bottom: 0.065
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Micro",
  12061. height: math.unit(4, "feet")
  12062. },
  12063. {
  12064. name: "Normal",
  12065. height: math.unit(16, "feet"),
  12066. default: true
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(2720, "feet")
  12071. },
  12072. {
  12073. name: "Megamacro",
  12074. height: math.unit(25000, "miles")
  12075. },
  12076. ]
  12077. ))
  12078. characterMakers.push(() => makeCharacter(
  12079. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12080. {
  12081. front: {
  12082. height: math.unit(8, "feet"),
  12083. weight: math.unit(250, "kg"),
  12084. name: "Front",
  12085. image: {
  12086. source: "./media/characters/ikideru/front.svg",
  12087. extra: 930 / 870,
  12088. bottom: 0.087
  12089. }
  12090. },
  12091. back: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(250, "kg"),
  12094. name: "Back",
  12095. image: {
  12096. source: "./media/characters/ikideru/back.svg",
  12097. extra: 919 / 852,
  12098. bottom: 0.055
  12099. }
  12100. },
  12101. },
  12102. [
  12103. {
  12104. name: "Rare",
  12105. height: math.unit(8, "feet"),
  12106. default: true
  12107. },
  12108. {
  12109. name: "Playful Loom",
  12110. height: math.unit(80, "feet")
  12111. },
  12112. {
  12113. name: "City Leaner",
  12114. height: math.unit(230, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(2500, "feet")
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(26400, "feet")
  12123. },
  12124. {
  12125. name: "Tectonic Shifter",
  12126. height: math.unit(1.7, "megameters")
  12127. },
  12128. {
  12129. name: "Planet Carer",
  12130. height: math.unit(21, "megameters")
  12131. },
  12132. {
  12133. name: "God",
  12134. height: math.unit(11157.22, "parsecs")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(120, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/neo/front.svg"
  12147. }
  12148. },
  12149. },
  12150. [
  12151. {
  12152. name: "Micro",
  12153. height: math.unit(2, "inches"),
  12154. default: true
  12155. },
  12156. {
  12157. name: "Human Size",
  12158. height: math.unit(5 + 8 / 12, "feet")
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(13 + 10 / 12, "feet"),
  12167. weight: math.unit(5320, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/chauncey-chantz/front.svg",
  12171. extra: 1587 / 1435,
  12172. bottom: 0.02
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Normal",
  12179. height: math.unit(13 + 10 / 12, "feet"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(45, "feet")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(250, "miles")
  12189. },
  12190. {
  12191. name: "Planetary",
  12192. height: math.unit(10000, "miles")
  12193. },
  12194. {
  12195. name: "Galactic",
  12196. height: math.unit(40000, "parsecs")
  12197. },
  12198. {
  12199. name: "Universal",
  12200. height: math.unit(1, "yottameter")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12206. {
  12207. front: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(150, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/epifox/front.svg",
  12213. extra: 1,
  12214. bottom: 0.075
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(6, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(12, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(3810, "feet")
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(500, "miles")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(1.8796, "m"),
  12243. weight: math.unit(230, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/colin-t/front.svg",
  12247. extra: 1272 / 1193,
  12248. bottom: 0.07
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Micro",
  12255. height: math.unit(0.571, "meters")
  12256. },
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(1.8796, "meters"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Tall",
  12264. height: math.unit(4, "meters")
  12265. },
  12266. {
  12267. name: "Macro",
  12268. height: math.unit(67.241, "meters")
  12269. },
  12270. {
  12271. name: "Megamacro",
  12272. height: math.unit(371.856, "meters")
  12273. },
  12274. {
  12275. name: "Planetary",
  12276. height: math.unit(12631.5689, "km")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(1.85, "meters"),
  12285. weight: math.unit(80, "kg"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/matvei/front.svg",
  12289. extra: 614 / 594,
  12290. bottom: 0.01
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(1.85, "meters"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(5 + 9 / 12, "feet"),
  12307. weight: math.unit(70, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/quincy/front.svg",
  12311. extra: 3041 / 2751
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(5 + 9 / 12, "feet"),
  12316. weight: math.unit(70, "lb"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/quincy/back.svg",
  12320. extra: 3041 / 2751
  12321. }
  12322. },
  12323. flying: {
  12324. height: math.unit(5 + 4 / 12, "feet"),
  12325. weight: math.unit(70, "lb"),
  12326. name: "Flying",
  12327. image: {
  12328. source: "./media/characters/quincy/flying.svg",
  12329. extra: 1044 / 930
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(3, "cm")
  12337. },
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(5 + 9 / 12, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(200, "meters"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Megamacro",
  12349. height: math.unit(1000, "meters")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(3 + 11/12, "feet"),
  12358. weight: math.unit(50, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/vanrel/front.svg",
  12362. extra: 1104/949,
  12363. bottom: 52/1156
  12364. }
  12365. },
  12366. back: {
  12367. height: math.unit(3 + 11/12, "feet"),
  12368. weight: math.unit(50, "lb"),
  12369. name: "Back",
  12370. image: {
  12371. source: "./media/characters/vanrel/back.svg",
  12372. extra: 1119/976,
  12373. bottom: 37/1156
  12374. }
  12375. },
  12376. tome: {
  12377. height: math.unit(1.35, "feet"),
  12378. weight: math.unit(10, "lb"),
  12379. name: "Vanrel's Tome",
  12380. rename: true,
  12381. image: {
  12382. source: "./media/characters/vanrel/tome.svg"
  12383. }
  12384. },
  12385. beans: {
  12386. height: math.unit(0.89, "feet"),
  12387. name: "Beans",
  12388. image: {
  12389. source: "./media/characters/vanrel/beans.svg"
  12390. }
  12391. },
  12392. },
  12393. [
  12394. {
  12395. name: "Normal",
  12396. height: math.unit(3 + 11/12, "feet"),
  12397. default: true
  12398. },
  12399. ]
  12400. ))
  12401. characterMakers.push(() => makeCharacter(
  12402. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12403. {
  12404. front: {
  12405. height: math.unit(7 + 5 / 12, "feet"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kuiper-vanrel/front.svg",
  12409. extra: 1219/1169,
  12410. bottom: 69/1288
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(7 + 5 / 12, "feet"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/kuiper-vanrel/back.svg",
  12418. extra: 1236/1193,
  12419. bottom: 27/1263
  12420. }
  12421. },
  12422. foot: {
  12423. height: math.unit(0.55, "meters"),
  12424. name: "Foot",
  12425. image: {
  12426. source: "./media/characters/kuiper-vanrel/foot.svg",
  12427. }
  12428. },
  12429. battle: {
  12430. height: math.unit(6.824, "feet"),
  12431. name: "Battle",
  12432. image: {
  12433. source: "./media/characters/kuiper-vanrel/battle.svg",
  12434. extra: 1466 / 1327,
  12435. bottom: 29 / 1492.5
  12436. }
  12437. },
  12438. meerkui: {
  12439. height: math.unit(18, "inches"),
  12440. name: "Meerkui",
  12441. image: {
  12442. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12443. extra: 1354/1289,
  12444. bottom: 69/1423
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Normal",
  12451. height: math.unit(7 + 5 / 12, "feet"),
  12452. default: true
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(8 + 5 / 12, "feet"),
  12461. name: "Front",
  12462. image: {
  12463. source: "./media/characters/keset-vanrel/front.svg",
  12464. extra: 1231/1148,
  12465. bottom: 82/1313
  12466. }
  12467. },
  12468. back: {
  12469. height: math.unit(8 + 5 / 12, "feet"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/keset-vanrel/back.svg",
  12473. extra: 1240/1174,
  12474. bottom: 33/1273
  12475. }
  12476. },
  12477. hand: {
  12478. height: math.unit(0.6, "meters"),
  12479. name: "Hand",
  12480. image: {
  12481. source: "./media/characters/keset-vanrel/hand.svg"
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(0.94978, "meters"),
  12486. name: "Foot",
  12487. image: {
  12488. source: "./media/characters/keset-vanrel/foot.svg"
  12489. }
  12490. },
  12491. battle: {
  12492. height: math.unit(7.408, "feet"),
  12493. name: "Battle",
  12494. image: {
  12495. source: "./media/characters/keset-vanrel/battle.svg",
  12496. extra: 1890 / 1386,
  12497. bottom: 73.28 / 1970
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(8 + 5 / 12, "feet"),
  12505. default: true
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/neos/front.svg",
  12518. extra: 1696 / 992,
  12519. bottom: 0.14
  12520. }
  12521. },
  12522. },
  12523. [
  12524. {
  12525. name: "Normal",
  12526. height: math.unit(54, "cm"),
  12527. default: true
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "m")
  12532. },
  12533. {
  12534. name: "Megamacro",
  12535. height: math.unit(10, "km")
  12536. },
  12537. {
  12538. name: "Megamacro+",
  12539. height: math.unit(100, "km")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(100, "Mm")
  12544. },
  12545. {
  12546. name: "Teramacro",
  12547. height: math.unit(100, "Gm")
  12548. },
  12549. {
  12550. name: "Examacro",
  12551. height: math.unit(100, "Em")
  12552. },
  12553. {
  12554. name: "Godly",
  12555. height: math.unit(10000, "Ym")
  12556. },
  12557. {
  12558. name: "Beyond Godly",
  12559. height: math.unit(25, "multiverses")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12565. {
  12566. feminine: {
  12567. height: math.unit(5, "feet"),
  12568. weight: math.unit(100, "lb"),
  12569. name: "Feminine",
  12570. image: {
  12571. source: "./media/characters/sammy-mouse/feminine.svg",
  12572. extra: 2526 / 2425,
  12573. bottom: 0.123
  12574. }
  12575. },
  12576. masculine: {
  12577. height: math.unit(5, "feet"),
  12578. weight: math.unit(100, "lb"),
  12579. name: "Masculine",
  12580. image: {
  12581. source: "./media/characters/sammy-mouse/masculine.svg",
  12582. extra: 2526 / 2425,
  12583. bottom: 0.123
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(5, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(5, "feet"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(60, "feet")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(4, "feet"),
  12608. weight: math.unit(50, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/kole/front.svg",
  12612. extra: 1423 / 1303,
  12613. bottom: 0.025
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(4, "feet"),
  12618. weight: math.unit(50, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/kole/back.svg",
  12622. extra: 1426 / 1280,
  12623. bottom: 0.02
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(4, "feet"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(2.5, "feet"),
  12640. weight: math.unit(32, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/rufran/front.svg",
  12644. extra: 1313/885,
  12645. bottom: 94/1407
  12646. }
  12647. },
  12648. side: {
  12649. height: math.unit(2.5, "feet"),
  12650. weight: math.unit(32, "lb"),
  12651. name: "Side",
  12652. image: {
  12653. source: "./media/characters/rufran/side.svg",
  12654. extra: 1109/852,
  12655. bottom: 118/1227
  12656. }
  12657. },
  12658. back: {
  12659. height: math.unit(2.5, "feet"),
  12660. weight: math.unit(32, "lb"),
  12661. name: "Back",
  12662. image: {
  12663. source: "./media/characters/rufran/back.svg",
  12664. extra: 1280/878,
  12665. bottom: 131/1411
  12666. }
  12667. },
  12668. mouth: {
  12669. height: math.unit(1.13, "feet"),
  12670. name: "Mouth",
  12671. image: {
  12672. source: "./media/characters/rufran/mouth.svg"
  12673. }
  12674. },
  12675. foot: {
  12676. height: math.unit(1.33, "feet"),
  12677. name: "Foot",
  12678. image: {
  12679. source: "./media/characters/rufran/foot.svg"
  12680. }
  12681. },
  12682. koboldFront: {
  12683. height: math.unit(2 + 6 / 12, "feet"),
  12684. weight: math.unit(20, "lb"),
  12685. name: "Front (Kobold)",
  12686. image: {
  12687. source: "./media/characters/rufran/kobold-front.svg",
  12688. extra: 2041 / 1839,
  12689. bottom: 0.055
  12690. }
  12691. },
  12692. koboldBack: {
  12693. height: math.unit(2 + 6 / 12, "feet"),
  12694. weight: math.unit(20, "lb"),
  12695. name: "Back (Kobold)",
  12696. image: {
  12697. source: "./media/characters/rufran/kobold-back.svg",
  12698. extra: 2054 / 1839,
  12699. bottom: 0.01
  12700. }
  12701. },
  12702. koboldHand: {
  12703. height: math.unit(0.2166, "meters"),
  12704. name: "Hand (Kobold)",
  12705. image: {
  12706. source: "./media/characters/rufran/kobold-hand.svg"
  12707. }
  12708. },
  12709. koboldFoot: {
  12710. height: math.unit(0.185, "meters"),
  12711. name: "Foot (Kobold)",
  12712. image: {
  12713. source: "./media/characters/rufran/kobold-foot.svg"
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Micro",
  12720. height: math.unit(1, "inch")
  12721. },
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(2 + 6 / 12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Big",
  12729. height: math.unit(60, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(325, "feet")
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(0.3, "meters"),
  12742. weight: math.unit(3.5, "kg"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/chip/front.svg",
  12746. extra: 748 / 674
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Micro",
  12753. height: math.unit(1, "inch"),
  12754. default: true
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12760. {
  12761. side: {
  12762. height: math.unit(2.3, "meters"),
  12763. weight: math.unit(3500, "lb"),
  12764. name: "Side",
  12765. image: {
  12766. source: "./media/characters/torvid/side.svg",
  12767. extra: 1972 / 722,
  12768. bottom: 0.035
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(2.3, "meters"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(2, "meters"),
  12785. weight: math.unit(150.5, "kg"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/susan/front.svg",
  12789. extra: 693 / 635,
  12790. bottom: 0.05
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(505, "miles"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(6, "feet"),
  12807. weight: math.unit(150, "lb"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/raindrops/front.svg",
  12811. extra: 2655 / 2461,
  12812. bottom: 49 / 2705
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(6, "feet"),
  12817. weight: math.unit(150, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/raindrops/back.svg",
  12821. extra: 2574 / 2400,
  12822. bottom: 65 / 2634
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Micro",
  12829. height: math.unit(6, "inches")
  12830. },
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(6 + 2 / 12, "feet")
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(131, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Megamacro",
  12842. height: math.unit(15, "miles")
  12843. },
  12844. {
  12845. name: "Gigamacro",
  12846. height: math.unit(4000, "miles")
  12847. },
  12848. {
  12849. name: "Teramacro",
  12850. height: math.unit(315000, "miles")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(2.794, "meters"),
  12859. weight: math.unit(325, "kg"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/tezwa/front.svg",
  12863. extra: 2083 / 1906,
  12864. bottom: 0.031
  12865. }
  12866. },
  12867. foot: {
  12868. height: math.unit(0.687, "meters"),
  12869. name: "Foot",
  12870. image: {
  12871. source: "./media/characters/tezwa/foot.svg"
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(9 + 2 / 12, "feet"),
  12879. default: true
  12880. },
  12881. ]
  12882. ))
  12883. characterMakers.push(() => makeCharacter(
  12884. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12885. {
  12886. front: {
  12887. height: math.unit(58, "feet"),
  12888. weight: math.unit(89000, "lb"),
  12889. name: "Front",
  12890. image: {
  12891. source: "./media/characters/typhus/front.svg",
  12892. extra: 816 / 800,
  12893. bottom: 0.065
  12894. }
  12895. },
  12896. },
  12897. [
  12898. {
  12899. name: "Macro",
  12900. height: math.unit(58, "feet"),
  12901. default: true
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(12, "feet"),
  12910. weight: math.unit(6, "tonnes"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/lyra-von-wulf/front.svg",
  12914. extra: 1,
  12915. bottom: 0.10
  12916. }
  12917. },
  12918. frontMecha: {
  12919. height: math.unit(12, "feet"),
  12920. weight: math.unit(12, "tonnes"),
  12921. name: "Front (Mecha)",
  12922. image: {
  12923. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12924. extra: 1,
  12925. bottom: 0.042
  12926. }
  12927. },
  12928. maw: {
  12929. height: math.unit(2.2, "feet"),
  12930. name: "Maw",
  12931. image: {
  12932. source: "./media/characters/lyra-von-wulf/maw.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(12, "feet"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Classic",
  12944. height: math.unit(50, "feet")
  12945. },
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(500, "feet")
  12949. },
  12950. {
  12951. name: "Megamacro",
  12952. height: math.unit(1, "mile")
  12953. },
  12954. {
  12955. name: "Gigamacro",
  12956. height: math.unit(400, "miles")
  12957. },
  12958. {
  12959. name: "Teramacro",
  12960. height: math.unit(22000, "miles")
  12961. },
  12962. {
  12963. name: "Solarmacro",
  12964. height: math.unit(8600000, "miles")
  12965. },
  12966. {
  12967. name: "Galactic",
  12968. height: math.unit(1057000, "lightyears")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(6 + 10 / 12, "feet"),
  12977. weight: math.unit(150, "lb"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/dixon/front.svg",
  12981. extra: 3361 / 3209,
  12982. bottom: 0.01
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(6 + 10 / 12, "feet"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Big",
  12994. height: math.unit(12, "meters")
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(500, "meters")
  12999. },
  13000. {
  13001. name: "Megamacro",
  13002. height: math.unit(2, "km")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(185, "cm"),
  13011. weight: math.unit(68, "kg"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/kauko/front.svg",
  13015. extra: 1455 / 1421,
  13016. bottom: 0.03
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(185, "cm"),
  13021. weight: math.unit(68, "kg"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/kauko/back.svg",
  13025. extra: 1455 / 1421,
  13026. bottom: 0.004
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Normal",
  13033. height: math.unit(185, "cm"),
  13034. default: true
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(6, "feet"),
  13043. weight: math.unit(150, "kg"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/varg/front.svg",
  13047. extra: 1108 / 1018,
  13048. bottom: 0.0375
  13049. }
  13050. },
  13051. },
  13052. [
  13053. {
  13054. name: "Normal",
  13055. height: math.unit(5, "meters")
  13056. },
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(200, "meters")
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(20, "kilometers")
  13064. },
  13065. {
  13066. name: "True Size",
  13067. height: math.unit(211, "km"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Gigamacro",
  13072. height: math.unit(1000, "km")
  13073. },
  13074. {
  13075. name: "Gigamacro+",
  13076. height: math.unit(8000, "km")
  13077. },
  13078. {
  13079. name: "Teramacro",
  13080. height: math.unit(1000000, "km")
  13081. },
  13082. ]
  13083. ))
  13084. characterMakers.push(() => makeCharacter(
  13085. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13086. {
  13087. front: {
  13088. height: math.unit(7 + 7 / 12, "feet"),
  13089. weight: math.unit(267, "lb"),
  13090. name: "Front",
  13091. image: {
  13092. source: "./media/characters/dayza/front.svg",
  13093. extra: 1262 / 1200,
  13094. bottom: 0.035
  13095. }
  13096. },
  13097. side: {
  13098. height: math.unit(7 + 7 / 12, "feet"),
  13099. weight: math.unit(267, "lb"),
  13100. name: "Side",
  13101. image: {
  13102. source: "./media/characters/dayza/side.svg",
  13103. extra: 1295 / 1245,
  13104. bottom: 0.05
  13105. }
  13106. },
  13107. back: {
  13108. height: math.unit(7 + 7 / 12, "feet"),
  13109. weight: math.unit(267, "lb"),
  13110. name: "Back",
  13111. image: {
  13112. source: "./media/characters/dayza/back.svg",
  13113. extra: 1241 / 1170
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Normal",
  13120. height: math.unit(7 + 7 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(155, "feet")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6 + 5 / 12, "feet"),
  13134. weight: math.unit(160, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/xanthos/front.svg",
  13138. extra: 1,
  13139. bottom: 0.04
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6 + 5 / 12, "feet"),
  13144. weight: math.unit(160, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/xanthos/back.svg",
  13148. extra: 1,
  13149. bottom: 0.03
  13150. }
  13151. },
  13152. hand: {
  13153. height: math.unit(0.928, "feet"),
  13154. name: "Hand",
  13155. image: {
  13156. source: "./media/characters/xanthos/hand.svg"
  13157. }
  13158. },
  13159. foot: {
  13160. height: math.unit(1.286, "feet"),
  13161. name: "Foot",
  13162. image: {
  13163. source: "./media/characters/xanthos/foot.svg"
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(6 + 5 / 12, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Normal+",
  13175. height: math.unit(6, "meters")
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(40, "feet")
  13180. },
  13181. {
  13182. name: "Macro+",
  13183. height: math.unit(200, "meters")
  13184. },
  13185. {
  13186. name: "Megamacro",
  13187. height: math.unit(20, "km")
  13188. },
  13189. {
  13190. name: "Megamacro+",
  13191. height: math.unit(100, "km")
  13192. },
  13193. {
  13194. name: "Gigamacro",
  13195. height: math.unit(200, "megameters")
  13196. },
  13197. {
  13198. name: "Gigamacro+",
  13199. height: math.unit(1.5, "gigameters")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6 + 3 / 12, "feet"),
  13208. weight: math.unit(215, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/grynn/front.svg",
  13212. extra: 4627 / 4209,
  13213. bottom: 0.047
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(6, "inches")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(6 + 3 / 12, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Big",
  13229. height: math.unit(104, "feet")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(944, "feet")
  13234. },
  13235. {
  13236. name: "Macro+",
  13237. height: math.unit(9480, "feet")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(78752, "feet")
  13242. },
  13243. {
  13244. name: "Megamacro+",
  13245. height: math.unit(630128, "feet")
  13246. },
  13247. {
  13248. name: "Megamacro++",
  13249. height: math.unit(3150695, "feet")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(7 + 5 / 12, "feet"),
  13258. weight: math.unit(450, "lb"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/mocha-aura/front.svg",
  13262. extra: 1907 / 1817,
  13263. bottom: 0.04
  13264. }
  13265. },
  13266. back: {
  13267. height: math.unit(7 + 5 / 12, "feet"),
  13268. weight: math.unit(450, "lb"),
  13269. name: "Back",
  13270. image: {
  13271. source: "./media/characters/mocha-aura/back.svg",
  13272. extra: 1900 / 1825,
  13273. bottom: 0.045
  13274. }
  13275. },
  13276. },
  13277. [
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(1, "nm")
  13281. },
  13282. {
  13283. name: "Megamicro",
  13284. height: math.unit(1, "mm")
  13285. },
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(3, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(7 + 5 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Macro",
  13297. height: math.unit(30, "feet")
  13298. },
  13299. {
  13300. name: "Megamacro",
  13301. height: math.unit(3500, "feet")
  13302. },
  13303. {
  13304. name: "Teramacro",
  13305. height: math.unit(500000, "miles")
  13306. },
  13307. {
  13308. name: "Petamacro",
  13309. height: math.unit(50000000000000000, "parsecs")
  13310. },
  13311. ]
  13312. ))
  13313. characterMakers.push(() => makeCharacter(
  13314. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13315. {
  13316. front: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Front",
  13320. image: {
  13321. source: "./media/characters/ilisha-devya/front.svg",
  13322. extra: 1053/1049,
  13323. bottom: 270/1323
  13324. }
  13325. },
  13326. back: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Back",
  13330. image: {
  13331. source: "./media/characters/ilisha-devya/back.svg",
  13332. extra: 1131/1128,
  13333. bottom: 39/1170
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Macro",
  13340. height: math.unit(500, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Megamacro",
  13345. height: math.unit(10, "miles")
  13346. },
  13347. {
  13348. name: "Gigamacro",
  13349. height: math.unit(100000, "miles")
  13350. },
  13351. {
  13352. name: "Examacro",
  13353. height: math.unit(1e9, "lightyears")
  13354. },
  13355. {
  13356. name: "Omniversal",
  13357. height: math.unit(1e33, "lightyears")
  13358. },
  13359. {
  13360. name: "Beyond Infinite",
  13361. height: math.unit(1e100, "lightyears")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13367. {
  13368. Side: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Side",
  13372. image: {
  13373. source: "./media/characters/mira/side.svg",
  13374. extra: 900 / 799,
  13375. bottom: 0.02
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Human Size",
  13382. height: math.unit(6, "feet")
  13383. },
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(100, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(10, "miles")
  13392. },
  13393. {
  13394. name: "Gigamacro",
  13395. height: math.unit(25000, "miles")
  13396. },
  13397. {
  13398. name: "Teramacro",
  13399. height: math.unit(300, "AU")
  13400. },
  13401. {
  13402. name: "Full Size",
  13403. height: math.unit(4.5e10, "lightyears")
  13404. },
  13405. ]
  13406. ))
  13407. characterMakers.push(() => makeCharacter(
  13408. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13409. {
  13410. front: {
  13411. height: math.unit(6, "feet"),
  13412. weight: math.unit(150, "lb"),
  13413. name: "Front",
  13414. image: {
  13415. source: "./media/characters/holly/front.svg",
  13416. extra: 639 / 606
  13417. }
  13418. },
  13419. back: {
  13420. height: math.unit(6, "feet"),
  13421. weight: math.unit(150, "lb"),
  13422. name: "Back",
  13423. image: {
  13424. source: "./media/characters/holly/back.svg",
  13425. extra: 623 / 598
  13426. }
  13427. },
  13428. frontWorking: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(150, "lb"),
  13431. name: "Front (Working)",
  13432. image: {
  13433. source: "./media/characters/holly/front-working.svg",
  13434. extra: 607 / 577,
  13435. bottom: 0.048
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(12 + 3 / 12, "feet"),
  13443. default: true
  13444. },
  13445. ]
  13446. ))
  13447. characterMakers.push(() => makeCharacter(
  13448. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13449. {
  13450. front: {
  13451. height: math.unit(6, "feet"),
  13452. weight: math.unit(150, "lb"),
  13453. name: "Front",
  13454. image: {
  13455. source: "./media/characters/porter/front.svg",
  13456. extra: 1,
  13457. bottom: 0.01
  13458. }
  13459. },
  13460. frontRobes: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "lb"),
  13463. name: "Front (Robes)",
  13464. image: {
  13465. source: "./media/characters/porter/front-robes.svg",
  13466. extra: 1.01,
  13467. bottom: 0.01
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(11 + 9 / 12, "feet"),
  13475. default: true
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13481. {
  13482. legendary: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Legendary",
  13486. image: {
  13487. source: "./media/characters/lucy/legendary.svg",
  13488. extra: 1355 / 1100,
  13489. bottom: 0.045
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Legendary",
  13496. height: math.unit(86882 * 2, "miles"),
  13497. default: true
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(6, "feet"),
  13506. weight: math.unit(150, "lb"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/drusilla/front.svg",
  13510. extra: 678 / 635,
  13511. bottom: 0.03
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(6, "feet"),
  13516. weight: math.unit(150, "lb"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/drusilla/back.svg",
  13520. extra: 678 / 635,
  13521. bottom: 0.005
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "feet")
  13529. },
  13530. {
  13531. name: "Canon Height",
  13532. height: math.unit(2000, "feet"),
  13533. default: true
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(6, "feet"),
  13542. weight: math.unit(180, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/renard-thatch/front.svg",
  13546. extra: 2411 / 2275,
  13547. bottom: 0.01
  13548. }
  13549. },
  13550. frontPosing: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(180, "lb"),
  13553. name: "Front (Posing)",
  13554. image: {
  13555. source: "./media/characters/renard-thatch/front-posing.svg",
  13556. extra: 2381 / 2261,
  13557. bottom: 0.01
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(180, "lb"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/renard-thatch/back.svg",
  13566. extra: 2428 / 2288
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Micro",
  13573. height: math.unit(3, "inches")
  13574. },
  13575. {
  13576. name: "Default",
  13577. height: math.unit(6, "feet"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Macro",
  13582. height: math.unit(75, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(1450, "feet"),
  13591. weight: math.unit(1.21e6, "tons"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/sekvra/front.svg",
  13595. extra: 1193/1190,
  13596. bottom: 78/1271
  13597. }
  13598. },
  13599. side: {
  13600. height: math.unit(1450, "feet"),
  13601. weight: math.unit(1.21e6, "tons"),
  13602. name: "Side",
  13603. image: {
  13604. source: "./media/characters/sekvra/side.svg",
  13605. extra: 1193/1190,
  13606. bottom: 52/1245
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(1450, "feet"),
  13611. weight: math.unit(1.21e6, "tons"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/sekvra/back.svg",
  13615. extra: 1219/1216,
  13616. bottom: 21/1240
  13617. }
  13618. },
  13619. frontClothed: {
  13620. height: math.unit(1450, "feet"),
  13621. weight: math.unit(1.21e6, "tons"),
  13622. name: "Front (Clothed)",
  13623. image: {
  13624. source: "./media/characters/sekvra/front-clothed.svg",
  13625. extra: 1192/1189,
  13626. bottom: 79/1271
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(1450, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Megamacro",
  13638. height: math.unit(15000, "feet")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/carmine/front.svg",
  13651. extra: 1,
  13652. bottom: 0.035
  13653. }
  13654. },
  13655. frontArmor: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armor)",
  13659. image: {
  13660. source: "./media/characters/carmine/front-armor.svg",
  13661. extra: 1,
  13662. bottom: 0.035
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Large",
  13669. height: math.unit(1, "mile")
  13670. },
  13671. {
  13672. name: "Huge",
  13673. height: math.unit(40, "miles"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Colossal",
  13678. height: math.unit(2500, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/elyssia/front.svg",
  13691. extra: 2201 / 2035,
  13692. bottom: 0.05
  13693. }
  13694. },
  13695. frontClothed: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front (Clothed)",
  13699. image: {
  13700. source: "./media/characters/elyssia/front-clothed.svg",
  13701. extra: 2201 / 2035,
  13702. bottom: 0.05
  13703. }
  13704. },
  13705. back: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(150, "lb"),
  13708. name: "Back",
  13709. image: {
  13710. source: "./media/characters/elyssia/back.svg",
  13711. extra: 2201 / 2035,
  13712. bottom: 0.013
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Smaller",
  13719. height: math.unit(150, "feet")
  13720. },
  13721. {
  13722. name: "Standard",
  13723. height: math.unit(1400, "feet"),
  13724. default: true
  13725. },
  13726. {
  13727. name: "Distracted",
  13728. height: math.unit(15000, "feet")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(7 + 4/12, "feet"),
  13737. weight: math.unit(690, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/geno-maxwell/front.svg",
  13741. extra: 984/856,
  13742. bottom: 87/1071
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(7 + 4/12, "feet"),
  13747. weight: math.unit(690, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/geno-maxwell/back.svg",
  13751. extra: 981/854,
  13752. bottom: 57/1038
  13753. }
  13754. },
  13755. frontCostume: {
  13756. height: math.unit(7 + 4/12, "feet"),
  13757. weight: math.unit(690, "lb"),
  13758. name: "Front (Costume)",
  13759. image: {
  13760. source: "./media/characters/geno-maxwell/front-costume.svg",
  13761. extra: 984/856,
  13762. bottom: 87/1071
  13763. }
  13764. },
  13765. backcostume: {
  13766. height: math.unit(7 + 4/12, "feet"),
  13767. weight: math.unit(690, "lb"),
  13768. name: "Back (Costume)",
  13769. image: {
  13770. source: "./media/characters/geno-maxwell/back-costume.svg",
  13771. extra: 981/854,
  13772. bottom: 57/1038
  13773. }
  13774. },
  13775. },
  13776. [
  13777. {
  13778. name: "Micro",
  13779. height: math.unit(3, "inches")
  13780. },
  13781. {
  13782. name: "Normal",
  13783. height: math.unit(7 + 4 / 12, "feet"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Macro",
  13788. height: math.unit(220, "feet")
  13789. },
  13790. {
  13791. name: "Megamacro",
  13792. height: math.unit(11, "miles")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 4/12, "feet"),
  13801. weight: math.unit(750, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/regena-maxwell/front.svg",
  13805. extra: 984/856,
  13806. bottom: 87/1071
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(7 + 4/12, "feet"),
  13811. weight: math.unit(750, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/regena-maxwell/back.svg",
  13815. extra: 981/854,
  13816. bottom: 57/1038
  13817. }
  13818. },
  13819. frontCostume: {
  13820. height: math.unit(7 + 4/12, "feet"),
  13821. weight: math.unit(750, "lb"),
  13822. name: "Front (Costume)",
  13823. image: {
  13824. source: "./media/characters/regena-maxwell/front-costume.svg",
  13825. extra: 984/856,
  13826. bottom: 87/1071
  13827. }
  13828. },
  13829. backcostume: {
  13830. height: math.unit(7 + 4/12, "feet"),
  13831. weight: math.unit(750, "lb"),
  13832. name: "Back (Costume)",
  13833. image: {
  13834. source: "./media/characters/regena-maxwell/back-costume.svg",
  13835. extra: 981/854,
  13836. bottom: 57/1038
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(7 + 4 / 12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(220, "feet")
  13849. },
  13850. {
  13851. name: "Megamacro",
  13852. height: math.unit(11, "miles")
  13853. },
  13854. ]
  13855. ))
  13856. characterMakers.push(() => makeCharacter(
  13857. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13858. {
  13859. front: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front",
  13863. image: {
  13864. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13865. extra: 860 / 690,
  13866. bottom: 0.03
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(1.7, "meters"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13880. {
  13881. front: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Front",
  13885. image: {
  13886. source: "./media/characters/quilly/front.svg",
  13887. extra: 890 / 776
  13888. }
  13889. },
  13890. },
  13891. [
  13892. {
  13893. name: "Gigamacro",
  13894. height: math.unit(404090, "miles"),
  13895. default: true
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(7 + 8 / 12, "feet"),
  13904. weight: math.unit(350, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/tempest/front.svg",
  13908. extra: 1175 / 1086,
  13909. bottom: 0.02
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(7 + 8 / 12, "feet"),
  13917. default: true
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13923. {
  13924. side: {
  13925. height: math.unit(4 + 5 / 12, "feet"),
  13926. weight: math.unit(80, "lb"),
  13927. name: "Side",
  13928. image: {
  13929. source: "./media/characters/rodger/side.svg",
  13930. extra: 1235 / 1118
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "inch")
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(4 + 5 / 12, "feet"),
  13942. default: true
  13943. },
  13944. {
  13945. name: "Macro",
  13946. height: math.unit(120, "feet")
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13952. {
  13953. front: {
  13954. height: math.unit(6, "feet"),
  13955. weight: math.unit(150, "lb"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/danyel/front.svg",
  13959. extra: 1185 / 1123,
  13960. bottom: 0.05
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Shrunken",
  13967. height: math.unit(0.5, "mm")
  13968. },
  13969. {
  13970. name: "Micro",
  13971. height: math.unit(1, "mm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Upsized",
  13976. height: math.unit(5 + 5 / 12, "feet")
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 6 / 12, "feet"),
  13985. weight: math.unit(200, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/vivian-bijoux/front.svg",
  13989. extra: 1217/1209,
  13990. bottom: 76/1293
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(5 + 6 / 12, "feet"),
  13995. weight: math.unit(200, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/vivian-bijoux/back.svg",
  13999. extra: 1214/1208,
  14000. bottom: 51/1265
  14001. }
  14002. },
  14003. dressed: {
  14004. height: math.unit(5 + 6 / 12, "feet"),
  14005. weight: math.unit(200, "lb"),
  14006. name: "Dressed",
  14007. image: {
  14008. source: "./media/characters/vivian-bijoux/dressed.svg",
  14009. extra: 1217/1209,
  14010. bottom: 76/1293
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(5 + 6 / 12, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Bad Dream",
  14022. height: math.unit(500, "feet")
  14023. },
  14024. {
  14025. name: "Nightmare",
  14026. height: math.unit(500, "miles")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6 + 1 / 12, "feet"),
  14035. weight: math.unit(260, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/zeta/front.svg",
  14039. extra: 1968 / 1889,
  14040. bottom: 0.06
  14041. }
  14042. },
  14043. back: {
  14044. height: math.unit(6 + 1 / 12, "feet"),
  14045. weight: math.unit(260, "lb"),
  14046. name: "Back",
  14047. image: {
  14048. source: "./media/characters/zeta/back.svg",
  14049. extra: 1944 / 1858,
  14050. bottom: 0.03
  14051. }
  14052. },
  14053. hand: {
  14054. height: math.unit(1.112, "feet"),
  14055. name: "Hand",
  14056. image: {
  14057. source: "./media/characters/zeta/hand.svg"
  14058. }
  14059. },
  14060. foot: {
  14061. height: math.unit(1.48, "feet"),
  14062. name: "Foot",
  14063. image: {
  14064. source: "./media/characters/zeta/foot.svg"
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Micro",
  14071. height: math.unit(6, "inches")
  14072. },
  14073. {
  14074. name: "Normal",
  14075. height: math.unit(6 + 1 / 12, "feet"),
  14076. default: true
  14077. },
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(20, "feet")
  14081. },
  14082. ]
  14083. ))
  14084. characterMakers.push(() => makeCharacter(
  14085. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14086. {
  14087. front: {
  14088. height: math.unit(6, "feet"),
  14089. weight: math.unit(150, "lb"),
  14090. name: "Front",
  14091. image: {
  14092. source: "./media/characters/jamie-larsen/front.svg",
  14093. extra: 962 / 933,
  14094. bottom: 0.02
  14095. }
  14096. },
  14097. back: {
  14098. height: math.unit(6, "feet"),
  14099. weight: math.unit(150, "lb"),
  14100. name: "Back",
  14101. image: {
  14102. source: "./media/characters/jamie-larsen/back.svg",
  14103. extra: 997 / 946
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(28 + 7 / 12, "feet"),
  14111. default: true
  14112. },
  14113. {
  14114. name: "Macro+",
  14115. height: math.unit(180, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(10, "miles")
  14120. },
  14121. {
  14122. name: "Gigamacro",
  14123. height: math.unit(200000, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(6, "feet"),
  14132. weight: math.unit(120, "lb"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/vance/front.svg",
  14136. extra: 1980 / 1890,
  14137. bottom: 0.09
  14138. }
  14139. },
  14140. back: {
  14141. height: math.unit(6, "feet"),
  14142. weight: math.unit(120, "lb"),
  14143. name: "Back",
  14144. image: {
  14145. source: "./media/characters/vance/back.svg",
  14146. extra: 2081 / 1994,
  14147. bottom: 0.014
  14148. }
  14149. },
  14150. hand: {
  14151. height: math.unit(0.88, "feet"),
  14152. name: "Hand",
  14153. image: {
  14154. source: "./media/characters/vance/hand.svg"
  14155. }
  14156. },
  14157. foot: {
  14158. height: math.unit(0.64, "feet"),
  14159. name: "Foot",
  14160. image: {
  14161. source: "./media/characters/vance/foot.svg"
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Small",
  14168. height: math.unit(90, "feet"),
  14169. default: true
  14170. },
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(100, "meters")
  14174. },
  14175. {
  14176. name: "Megamacro",
  14177. height: math.unit(15, "miles")
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/xochitl/front.svg",
  14190. extra: 2297 / 2261,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. back: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Back",
  14198. image: {
  14199. source: "./media/characters/xochitl/back.svg",
  14200. extra: 2386 / 2354,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. foot: {
  14205. height: math.unit(6 / 5 * 1.15, "feet"),
  14206. weight: math.unit(150, "lb"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/xochitl/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(80, "feet")
  14217. },
  14218. {
  14219. name: "Macro+",
  14220. height: math.unit(400, "feet"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Gigamacro",
  14225. height: math.unit(80000, "miles")
  14226. },
  14227. {
  14228. name: "Gigamacro+",
  14229. height: math.unit(400000, "miles")
  14230. },
  14231. {
  14232. name: "Teramacro",
  14233. height: math.unit(300, "AU")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/vincent/front.svg",
  14246. extra: 1130 / 1080,
  14247. bottom: 0.055
  14248. }
  14249. },
  14250. beak: {
  14251. height: math.unit(6 * 0.1, "feet"),
  14252. name: "Beak",
  14253. image: {
  14254. source: "./media/characters/vincent/beak.svg"
  14255. }
  14256. },
  14257. hand: {
  14258. height: math.unit(6 * 0.85, "feet"),
  14259. weight: math.unit(150, "lb"),
  14260. name: "Hand",
  14261. image: {
  14262. source: "./media/characters/vincent/hand.svg"
  14263. }
  14264. },
  14265. foot: {
  14266. height: math.unit(6 * 0.19, "feet"),
  14267. weight: math.unit(150, "lb"),
  14268. name: "Foot",
  14269. image: {
  14270. source: "./media/characters/vincent/foot.svg"
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Base",
  14277. height: math.unit(6 + 5 / 12, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(300, "feet")
  14283. },
  14284. {
  14285. name: "Megamacro",
  14286. height: math.unit(2, "miles")
  14287. },
  14288. {
  14289. name: "Gigamacro",
  14290. height: math.unit(1000, "miles")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(2, "meters"),
  14299. weight: math.unit(500, "kg"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/coatl/front.svg",
  14303. extra: 3948 / 3500,
  14304. bottom: 0.082
  14305. }
  14306. },
  14307. },
  14308. [
  14309. {
  14310. name: "Normal",
  14311. height: math.unit(4, "meters")
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(100, "meters"),
  14316. default: true
  14317. },
  14318. {
  14319. name: "Macro+",
  14320. height: math.unit(300, "meters")
  14321. },
  14322. {
  14323. name: "Megamacro",
  14324. height: math.unit(3, "gigameters")
  14325. },
  14326. {
  14327. name: "Megamacro+",
  14328. height: math.unit(300, "terameters")
  14329. },
  14330. {
  14331. name: "Megamacro++",
  14332. height: math.unit(3, "lightyears")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(50, "kg"),
  14342. name: "front",
  14343. image: {
  14344. source: "./media/characters/shiroryu/front.svg",
  14345. extra: 1990 / 1935
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Mortal Mingling",
  14352. height: math.unit(3, "meters")
  14353. },
  14354. {
  14355. name: "Kaiju-ish",
  14356. height: math.unit(250, "meters")
  14357. },
  14358. {
  14359. name: "Somewhat Godly",
  14360. height: math.unit(400, "km"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Planetary",
  14365. height: math.unit(300, "megameters")
  14366. },
  14367. {
  14368. name: "Galaxy-dwarfing",
  14369. height: math.unit(450, "kiloparsecs")
  14370. },
  14371. {
  14372. name: "Universe Eater",
  14373. height: math.unit(150, "gigaparsecs")
  14374. },
  14375. {
  14376. name: "Almost Immeasurable",
  14377. height: math.unit(1.3e266, "yottaparsecs")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(150, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/umeko/front.svg",
  14390. extra: 1,
  14391. bottom: 0.019
  14392. }
  14393. },
  14394. frontArmored: {
  14395. height: math.unit(6, "feet"),
  14396. weight: math.unit(150, "lb"),
  14397. name: "Front (Armored)",
  14398. image: {
  14399. source: "./media/characters/umeko/front-armored.svg",
  14400. extra: 1,
  14401. bottom: 0.021
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Macro",
  14408. height: math.unit(220, "feet"),
  14409. default: true
  14410. },
  14411. {
  14412. name: "Guardian Dragon",
  14413. height: math.unit(50, "miles")
  14414. },
  14415. {
  14416. name: "Cosmic",
  14417. height: math.unit(800000, "miles")
  14418. },
  14419. ]
  14420. ))
  14421. characterMakers.push(() => makeCharacter(
  14422. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14423. {
  14424. front: {
  14425. height: math.unit(6, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Front",
  14428. image: {
  14429. source: "./media/characters/cassidy/front.svg",
  14430. extra: 810/808,
  14431. bottom: 41/851
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Canon Height",
  14438. height: math.unit(120, "feet"),
  14439. default: true
  14440. },
  14441. {
  14442. name: "Macro+",
  14443. height: math.unit(400, "feet")
  14444. },
  14445. {
  14446. name: "Macro++",
  14447. height: math.unit(4000, "feet")
  14448. },
  14449. {
  14450. name: "Megamacro",
  14451. height: math.unit(3, "miles")
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/isaac/front.svg",
  14464. extra: 896 / 815,
  14465. bottom: 0.11
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Human Size",
  14472. height: math.unit(8, "feet"),
  14473. default: true
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(400, "feet")
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(50, "miles")
  14482. },
  14483. {
  14484. name: "Canon Height",
  14485. height: math.unit(200, "AU")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(72, "kg"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/sleekit/front.svg",
  14498. extra: 4693 / 4487,
  14499. bottom: 0.012
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Minimum Height",
  14506. height: math.unit(10, "meters")
  14507. },
  14508. {
  14509. name: "Smaller",
  14510. height: math.unit(25, "meters")
  14511. },
  14512. {
  14513. name: "Larger",
  14514. height: math.unit(38, "meters"),
  14515. default: true
  14516. },
  14517. {
  14518. name: "Maximum height",
  14519. height: math.unit(100, "meters")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/nillia/front.svg",
  14532. extra: 2195 / 2037,
  14533. bottom: 0.005
  14534. }
  14535. },
  14536. back: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Back",
  14540. image: {
  14541. source: "./media/characters/nillia/back.svg",
  14542. extra: 2195 / 2037,
  14543. bottom: 0.005
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Canon Height",
  14550. height: math.unit(489, "feet"),
  14551. default: true
  14552. }
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(150, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/mesmyriza/front.svg",
  14564. extra: 2067 / 1784,
  14565. bottom: 0.035
  14566. }
  14567. },
  14568. foot: {
  14569. height: math.unit(6 / (250 / 35), "feet"),
  14570. name: "Foot",
  14571. image: {
  14572. source: "./media/characters/mesmyriza/foot.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Macro",
  14579. height: math.unit(457, "meters"),
  14580. default: true
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(8, "megameters")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(250, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/saudade/front.svg",
  14597. extra: 1172 / 1139,
  14598. bottom: 0.035
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(3, "inches")
  14606. },
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(50, "feet")
  14615. },
  14616. {
  14617. name: "Megamacro",
  14618. height: math.unit(2800, "feet")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5 + 4 / 12, "feet"),
  14627. weight: math.unit(100, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/keireer/front.svg",
  14631. extra: 716 / 666,
  14632. bottom: 0.05
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(5 + 4 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(90, "kg"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/mirja/front.svg",
  14653. extra: 1789 / 1683,
  14654. bottom: 0.05
  14655. }
  14656. },
  14657. frontDressed: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(90, "lb"),
  14660. name: "Front (Dressed)",
  14661. image: {
  14662. source: "./media/characters/mirja/front-dressed.svg",
  14663. extra: 1789 / 1683,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. back: {
  14668. height: math.unit(6, "feet"),
  14669. weight: math.unit(90, "lb"),
  14670. name: "Back",
  14671. image: {
  14672. source: "./media/characters/mirja/back.svg",
  14673. extra: 953 / 917,
  14674. bottom: 0.017
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "\"Incognito\"",
  14681. height: math.unit(3, "meters")
  14682. },
  14683. {
  14684. name: "Strolling Size",
  14685. height: math.unit(15, "km")
  14686. },
  14687. {
  14688. name: "Larger Strolling Size",
  14689. height: math.unit(400, "km")
  14690. },
  14691. {
  14692. name: "Preferred Size",
  14693. height: math.unit(5000, "km")
  14694. },
  14695. {
  14696. name: "True Size",
  14697. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(15, "feet"),
  14707. weight: math.unit(880, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/nightraver/front.svg",
  14711. extra: 2444 / 2160,
  14712. bottom: 0.027
  14713. }
  14714. },
  14715. back: {
  14716. height: math.unit(15, "feet"),
  14717. weight: math.unit(880, "kg"),
  14718. name: "Back",
  14719. image: {
  14720. source: "./media/characters/nightraver/back.svg",
  14721. extra: 2309 / 2180,
  14722. bottom: 0.005
  14723. }
  14724. },
  14725. sole: {
  14726. height: math.unit(2.878, "feet"),
  14727. name: "Sole",
  14728. image: {
  14729. source: "./media/characters/nightraver/sole.svg"
  14730. }
  14731. },
  14732. foot: {
  14733. height: math.unit(2.285, "feet"),
  14734. name: "Foot",
  14735. image: {
  14736. source: "./media/characters/nightraver/foot.svg"
  14737. }
  14738. },
  14739. maw: {
  14740. height: math.unit(2.67, "feet"),
  14741. name: "Maw",
  14742. image: {
  14743. source: "./media/characters/nightraver/maw.svg"
  14744. }
  14745. },
  14746. },
  14747. [
  14748. {
  14749. name: "Micro",
  14750. height: math.unit(1, "cm")
  14751. },
  14752. {
  14753. name: "Normal",
  14754. height: math.unit(15, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro",
  14759. height: math.unit(300, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(300, "miles")
  14764. },
  14765. {
  14766. name: "Gigamacro",
  14767. height: math.unit(10000, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14773. {
  14774. side: {
  14775. height: math.unit(2, "inches"),
  14776. weight: math.unit(5, "grams"),
  14777. name: "Side",
  14778. image: {
  14779. source: "./media/characters/arc/side.svg"
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Micro",
  14786. height: math.unit(2, "inches"),
  14787. default: true
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(1.1938, "meters"),
  14796. weight: math.unit(54, "kg"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/nebula-shahar/front.svg",
  14800. extra: 1642 / 1436,
  14801. bottom: 0.06
  14802. }
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Megamicro",
  14808. height: math.unit(0.3, "mm")
  14809. },
  14810. {
  14811. name: "Micro",
  14812. height: math.unit(3, "cm")
  14813. },
  14814. {
  14815. name: "Normal",
  14816. height: math.unit(138, "cm"),
  14817. default: true
  14818. },
  14819. {
  14820. name: "Macro",
  14821. height: math.unit(30, "m")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(5.24, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/shayla/front.svg",
  14834. extra: 1512 / 1414,
  14835. bottom: 0.01
  14836. }
  14837. },
  14838. back: {
  14839. height: math.unit(5.24, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Back",
  14842. image: {
  14843. source: "./media/characters/shayla/back.svg",
  14844. extra: 1512 / 1414
  14845. }
  14846. },
  14847. hand: {
  14848. height: math.unit(0.7781496062992126, "feet"),
  14849. name: "Hand",
  14850. image: {
  14851. source: "./media/characters/shayla/hand.svg"
  14852. }
  14853. },
  14854. foot: {
  14855. height: math.unit(1.4206036745406823, "feet"),
  14856. name: "Foot",
  14857. image: {
  14858. source: "./media/characters/shayla/foot.svg"
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Micro",
  14865. height: math.unit(0.32, "feet")
  14866. },
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(5.24, "feet"),
  14870. default: true
  14871. },
  14872. {
  14873. name: "Macro",
  14874. height: math.unit(492.12, "feet")
  14875. },
  14876. {
  14877. name: "Megamacro",
  14878. height: math.unit(186.41, "miles")
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14884. {
  14885. front: {
  14886. height: math.unit(2.2, "m"),
  14887. weight: math.unit(120, "kg"),
  14888. name: "Front",
  14889. image: {
  14890. source: "./media/characters/pia-jr/front.svg",
  14891. extra: 1000 / 970,
  14892. bottom: 0.035
  14893. }
  14894. },
  14895. hand: {
  14896. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14897. name: "Hand",
  14898. image: {
  14899. source: "./media/characters/pia-jr/hand.svg"
  14900. }
  14901. },
  14902. paw: {
  14903. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14904. name: "Paw",
  14905. image: {
  14906. source: "./media/characters/pia-jr/paw.svg"
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Micro",
  14913. height: math.unit(1.2, "cm")
  14914. },
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(2.2, "m"),
  14918. default: true
  14919. },
  14920. {
  14921. name: "Macro",
  14922. height: math.unit(180, "m")
  14923. },
  14924. {
  14925. name: "Megamacro",
  14926. height: math.unit(420, "km")
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2, "m"),
  14935. weight: math.unit(115, "kg"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/pia-sr/front.svg",
  14939. extra: 760 / 730,
  14940. bottom: 0.015
  14941. }
  14942. },
  14943. back: {
  14944. height: math.unit(2, "m"),
  14945. weight: math.unit(115, "kg"),
  14946. name: "Back",
  14947. image: {
  14948. source: "./media/characters/pia-sr/back.svg",
  14949. extra: 760 / 730,
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. hand: {
  14954. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14955. name: "Hand",
  14956. image: {
  14957. source: "./media/characters/pia-sr/hand.svg"
  14958. }
  14959. },
  14960. foot: {
  14961. height: math.unit(1.83, "feet"),
  14962. name: "Foot",
  14963. image: {
  14964. source: "./media/characters/pia-sr/foot.svg"
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Micro",
  14971. height: math.unit(88, "mm")
  14972. },
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(2, "m"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Macro",
  14980. height: math.unit(200, "m")
  14981. },
  14982. {
  14983. name: "Megamacro",
  14984. height: math.unit(420, "km")
  14985. },
  14986. ]
  14987. ))
  14988. characterMakers.push(() => makeCharacter(
  14989. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14990. {
  14991. front: {
  14992. height: math.unit(8 + 2 / 12, "feet"),
  14993. weight: math.unit(300, "lb"),
  14994. name: "Front",
  14995. image: {
  14996. source: "./media/characters/kibibyte/front.svg",
  14997. extra: 2221 / 2098,
  14998. bottom: 0.04
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Normal",
  15005. height: math.unit(8 + 2 / 12, "feet"),
  15006. default: true
  15007. },
  15008. {
  15009. name: "Socialable Macro",
  15010. height: math.unit(50, "feet")
  15011. },
  15012. {
  15013. name: "Macro",
  15014. height: math.unit(300, "feet")
  15015. },
  15016. {
  15017. name: "Megamacro",
  15018. height: math.unit(500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/felix/front.svg",
  15031. extra: 762 / 722,
  15032. bottom: 0.02
  15033. }
  15034. },
  15035. frontClothed: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Front (Clothed)",
  15039. image: {
  15040. source: "./media/characters/felix/front-clothed.svg",
  15041. extra: 762 / 722,
  15042. bottom: 0.02
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(6 + 8 / 12, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(2600, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro",
  15058. height: math.unit(450, "miles")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(6 + 1 / 12, "feet"),
  15067. weight: math.unit(250, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/tobo/front.svg",
  15071. extra: 608 / 586,
  15072. bottom: 0.023
  15073. }
  15074. },
  15075. back: {
  15076. height: math.unit(6 + 1 / 12, "feet"),
  15077. weight: math.unit(250, "lb"),
  15078. name: "Back",
  15079. image: {
  15080. source: "./media/characters/tobo/back.svg",
  15081. extra: 608 / 586
  15082. }
  15083. },
  15084. },
  15085. [
  15086. {
  15087. name: "Nano",
  15088. height: math.unit(2, "nm")
  15089. },
  15090. {
  15091. name: "Megamicro",
  15092. height: math.unit(0.1, "mm")
  15093. },
  15094. {
  15095. name: "Micro",
  15096. height: math.unit(1, "inch"),
  15097. default: true
  15098. },
  15099. {
  15100. name: "Human-sized",
  15101. height: math.unit(6 + 1 / 12, "feet")
  15102. },
  15103. {
  15104. name: "Macro",
  15105. height: math.unit(250, "feet")
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(75, "miles")
  15110. },
  15111. {
  15112. name: "Texas-sized",
  15113. height: math.unit(750, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(50000, "miles")
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(6, "feet"),
  15126. weight: math.unit(269, "lb"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/danny-kapowsky/front.svg",
  15130. extra: 766 / 736,
  15131. bottom: 0.044
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(6, "feet"),
  15136. weight: math.unit(269, "lb"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/danny-kapowsky/back.svg",
  15140. extra: 797 / 760,
  15141. bottom: 0.025
  15142. }
  15143. },
  15144. },
  15145. [
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(150, "feet"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Macro+",
  15153. height: math.unit(200, "feet")
  15154. },
  15155. {
  15156. name: "Macro++",
  15157. height: math.unit(300, "feet")
  15158. },
  15159. {
  15160. name: "Macro+++",
  15161. height: math.unit(400, "feet")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15167. {
  15168. side: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(170, "lb"),
  15171. name: "Side",
  15172. image: {
  15173. source: "./media/characters/finn/side.svg",
  15174. extra: 1953 / 1807,
  15175. bottom: 0.057
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(14445, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(5 + 6 / 12, "feet"),
  15192. weight: math.unit(125, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/roy/front.svg",
  15196. extra: 1,
  15197. bottom: 0.11
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Micro",
  15204. height: math.unit(3, "inches"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(5 + 6 / 12, "feet")
  15210. },
  15211. {
  15212. name: "Lesser Macro",
  15213. height: math.unit(60, "feet")
  15214. },
  15215. {
  15216. name: "Greater Macro",
  15217. height: math.unit(120, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(100, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/aevsivs/front.svg",
  15230. extra: 1,
  15231. bottom: 0.03
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(100, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/aevsivs/back.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(2, "inches"),
  15247. default: true
  15248. },
  15249. {
  15250. name: "Normal",
  15251. height: math.unit(5, "feet")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 7 / 12, "feet"),
  15260. weight: math.unit(159, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/hildegard/front.svg",
  15264. extra: 289 / 269,
  15265. bottom: 7.63 / 297.8
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(5 + 7 / 12, "feet"),
  15270. weight: math.unit(159, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/hildegard/back.svg",
  15274. extra: 280 / 260,
  15275. bottom: 2.3 / 282
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(5 + 7 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15289. {
  15290. bernard: {
  15291. height: math.unit(2 + 7 / 12, "feet"),
  15292. weight: math.unit(66, "lb"),
  15293. name: "Bernard",
  15294. rename: true,
  15295. image: {
  15296. source: "./media/characters/bernard-wilder/bernard.svg",
  15297. extra: 192 / 128,
  15298. bottom: 0.05
  15299. }
  15300. },
  15301. wilder: {
  15302. height: math.unit(5 + 8 / 12, "feet"),
  15303. weight: math.unit(143, "lb"),
  15304. name: "Wilder",
  15305. rename: true,
  15306. image: {
  15307. source: "./media/characters/bernard-wilder/wilder.svg",
  15308. extra: 361 / 312,
  15309. bottom: 0.02
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(2 + 7 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15323. {
  15324. anthro: {
  15325. height: math.unit(6 + 1 / 12, "feet"),
  15326. weight: math.unit(155, "lb"),
  15327. name: "Anthro",
  15328. image: {
  15329. source: "./media/characters/hearth/anthro.svg",
  15330. extra: 1178/1136,
  15331. bottom: 28/1206
  15332. }
  15333. },
  15334. feral: {
  15335. height: math.unit(3.78, "feet"),
  15336. weight: math.unit(35, "kg"),
  15337. name: "Feral",
  15338. image: {
  15339. source: "./media/characters/hearth/feral.svg",
  15340. extra: 153 / 135,
  15341. bottom: 0.03
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(6 + 1 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(182, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ingrid/front.svg",
  15362. extra: 294 / 268,
  15363. bottom: 0.027
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(6, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15377. {
  15378. eevee: {
  15379. height: math.unit(2 + 10 / 12, "feet"),
  15380. weight: math.unit(86, "lb"),
  15381. name: "Malgam",
  15382. image: {
  15383. source: "./media/characters/malgam/eevee.svg",
  15384. extra: 952/784,
  15385. bottom: 38/990
  15386. }
  15387. },
  15388. sylveon: {
  15389. height: math.unit(4, "feet"),
  15390. weight: math.unit(101, "lb"),
  15391. name: "Future Malgam",
  15392. rename: true,
  15393. image: {
  15394. source: "./media/characters/malgam/sylveon.svg",
  15395. extra: 371 / 325,
  15396. bottom: 0.015
  15397. }
  15398. },
  15399. gigantamax: {
  15400. height: math.unit(50, "feet"),
  15401. name: "Gigantamax Malgam",
  15402. rename: true,
  15403. image: {
  15404. source: "./media/characters/malgam/gigantamax.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(2 + 10 / 12, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 11 / 12, "feet"),
  15421. weight: math.unit(188, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/fleur/front.svg",
  15425. extra: 309 / 283,
  15426. bottom: 0.007
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 11 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(5 + 4 / 12, "feet"),
  15443. weight: math.unit(122, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/jude/front.svg",
  15447. extra: 288 / 273,
  15448. bottom: 0.03
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(5 + 4 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(5 + 11 / 12, "feet"),
  15465. weight: math.unit(190, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/seara/front.svg",
  15469. extra: 1,
  15470. bottom: 0.05
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(5 + 11 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(16 + 5 / 12, "feet"),
  15487. weight: math.unit(524, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/caspian/front.svg",
  15491. extra: 1,
  15492. bottom: 0.04
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(16 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(5 + 7 / 12, "feet"),
  15509. weight: math.unit(170, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/mika/front.svg",
  15513. extra: 1,
  15514. bottom: 0.016
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(5 + 7 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6 + 2 / 12, "feet"),
  15531. weight: math.unit(268, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/sol/front.svg",
  15535. extra: 247 / 231,
  15536. bottom: 0.05
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(6 + 2 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15550. {
  15551. buizel: {
  15552. height: math.unit(2 + 5 / 12, "feet"),
  15553. weight: math.unit(87, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/umiko/buizel.svg",
  15557. extra: 172 / 157,
  15558. bottom: 0.01
  15559. },
  15560. form: "buizel",
  15561. default: true
  15562. },
  15563. floatzel: {
  15564. height: math.unit(5 + 9 / 12, "feet"),
  15565. weight: math.unit(250, "lb"),
  15566. name: "Front",
  15567. image: {
  15568. source: "./media/characters/umiko/floatzel.svg",
  15569. extra: 1076/1006,
  15570. bottom: 15/1091
  15571. },
  15572. form: "floatzel",
  15573. default: true
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(2 + 5 / 12, "feet"),
  15580. form: "buizel",
  15581. default: true
  15582. },
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(5 + 9 / 12, "feet"),
  15586. form: "floatzel",
  15587. default: true
  15588. },
  15589. ],
  15590. {
  15591. "buizel": {
  15592. name: "Buizel"
  15593. },
  15594. "floatzel": {
  15595. name: "Floatzel",
  15596. default: true
  15597. }
  15598. }
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6 + 2 / 12, "feet"),
  15605. weight: math.unit(146, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/iliac/front.svg",
  15609. extra: 389 / 365,
  15610. bottom: 0.035
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(6 + 2 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(6, "feet"),
  15627. weight: math.unit(170, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/topaz/front.svg",
  15631. extra: 317 / 303,
  15632. bottom: 0.055
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(6, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(5 + 11 / 12, "feet"),
  15649. weight: math.unit(144, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/gabriel/front.svg",
  15653. extra: 285 / 262,
  15654. bottom: 0.004
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(5 + 11 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15668. {
  15669. side: {
  15670. height: math.unit(6 + 5 / 12, "feet"),
  15671. weight: math.unit(300, "lb"),
  15672. name: "Side",
  15673. image: {
  15674. source: "./media/characters/tempest-suicune/side.svg",
  15675. extra: 195 / 154,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(6 + 5 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(7 + 2 / 12, "feet"),
  15693. weight: math.unit(322, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/vulcan/front.svg",
  15697. extra: 154 / 147,
  15698. bottom: 0.04
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 10 / 12, "feet"),
  15715. weight: math.unit(264, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/gault/front.svg",
  15719. extra: 161 / 140,
  15720. bottom: 0.028
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 10 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6, "feet"),
  15737. weight: math.unit(150, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/shard/front.svg",
  15741. extra: 273 / 238,
  15742. bottom: 0.02
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(3 + 6 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 11 / 12, "feet"),
  15759. weight: math.unit(146, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/ashe/front.svg",
  15763. extra: 400 / 373,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 11 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 5 / 12, "feet"),
  15781. weight: math.unit(135, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/beatrix/front.svg",
  15785. extra: 392 / 379,
  15786. bottom: 0.01
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 2/12, "feet"),
  15803. weight: math.unit(135, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/ignatius/front.svg",
  15807. extra: 1380/1259,
  15808. bottom: 27/1407
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(6 + 2/12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(6 + 2 / 12, "feet"),
  15825. weight: math.unit(138, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/mei-li/front.svg",
  15829. extra: 237 / 229,
  15830. bottom: 0.03
  15831. }
  15832. },
  15833. },
  15834. [
  15835. {
  15836. name: "Normal",
  15837. height: math.unit(6 + 2 / 12, "feet"),
  15838. default: true
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(2 + 4 / 12, "feet"),
  15847. weight: math.unit(62, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/puru/front.svg",
  15851. extra: 206 / 149,
  15852. bottom: 0.06
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(2 + 4 / 12, "feet"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15866. {
  15867. anthro: {
  15868. height: math.unit(5 + 8/12, "feet"),
  15869. weight: math.unit(200, "lb"),
  15870. energyNeed: math.unit(2000, "kcal"),
  15871. name: "Anthro",
  15872. image: {
  15873. source: "./media/characters/kee/anthro.svg",
  15874. extra: 3251/3184,
  15875. bottom: 250/3501
  15876. }
  15877. },
  15878. taur: {
  15879. height: math.unit(11, "feet"),
  15880. weight: math.unit(500, "lb"),
  15881. energyNeed: math.unit(5000, "kcal"),
  15882. name: "Taur",
  15883. image: {
  15884. source: "./media/characters/kee/taur.svg",
  15885. extra: 1362/1320,
  15886. bottom: 83/1445
  15887. }
  15888. },
  15889. },
  15890. [
  15891. {
  15892. name: "Normal",
  15893. height: math.unit(5 + 8/12, "feet"),
  15894. default: true
  15895. },
  15896. {
  15897. name: "Macro",
  15898. height: math.unit(35, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15904. {
  15905. anthro: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(190, "lb"),
  15908. name: "Anthro",
  15909. image: {
  15910. source: "./media/characters/cobalt-dracha/anthro.svg",
  15911. extra: 231 / 225,
  15912. bottom: 0.04
  15913. }
  15914. },
  15915. feral: {
  15916. height: math.unit(9 + 7 / 12, "feet"),
  15917. weight: math.unit(294, "lb"),
  15918. name: "Feral",
  15919. image: {
  15920. source: "./media/characters/cobalt-dracha/feral.svg",
  15921. extra: 692 / 633,
  15922. bottom: 0.05
  15923. }
  15924. },
  15925. },
  15926. [
  15927. {
  15928. name: "Normal",
  15929. height: math.unit(7, "feet"),
  15930. default: true
  15931. },
  15932. ]
  15933. ))
  15934. characterMakers.push(() => makeCharacter(
  15935. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15936. {
  15937. fallen: {
  15938. height: math.unit(11 + 8 / 12, "feet"),
  15939. weight: math.unit(485, "lb"),
  15940. name: "Java (Fallen)",
  15941. rename: true,
  15942. image: {
  15943. source: "./media/characters/java/fallen.svg",
  15944. extra: 226 / 208,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. godkin: {
  15949. height: math.unit(10 + 6 / 12, "feet"),
  15950. weight: math.unit(328, "lb"),
  15951. name: "Java (Godkin)",
  15952. rename: true,
  15953. image: {
  15954. source: "./media/characters/java/godkin.svg",
  15955. extra: 1104/1068,
  15956. bottom: 36/1140
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(11 + 8 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(5 + 9 / 12, "feet"),
  15973. weight: math.unit(170, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/purna/front.svg",
  15977. extra: 239 / 229,
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. },
  15982. [
  15983. {
  15984. name: "Normal",
  15985. height: math.unit(5 + 9 / 12, "feet"),
  15986. default: true
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(5 + 9 / 12, "feet"),
  15995. weight: math.unit(142, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/kuva/front.svg",
  15999. extra: 281 / 271,
  16000. bottom: 0.006
  16001. }
  16002. },
  16003. },
  16004. [
  16005. {
  16006. name: "Normal",
  16007. height: math.unit(5 + 9 / 12, "feet"),
  16008. default: true
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16014. {
  16015. anthro: {
  16016. height: math.unit(9 + 2 / 12, "feet"),
  16017. weight: math.unit(270, "lb"),
  16018. name: "Anthro",
  16019. image: {
  16020. source: "./media/characters/embra/anthro.svg",
  16021. extra: 200 / 187,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. feral: {
  16026. height: math.unit(18 + 8 / 12, "feet"),
  16027. weight: math.unit(576, "lb"),
  16028. name: "Feral",
  16029. image: {
  16030. source: "./media/characters/embra/feral.svg",
  16031. extra: 152 / 137,
  16032. bottom: 0.037
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(9 + 2 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16046. {
  16047. anthro: {
  16048. height: math.unit(10 + 9 / 12, "feet"),
  16049. weight: math.unit(224, "lb"),
  16050. name: "Anthro",
  16051. image: {
  16052. source: "./media/characters/grottos/anthro.svg",
  16053. extra: 350 / 332,
  16054. bottom: 0.045
  16055. }
  16056. },
  16057. feral: {
  16058. height: math.unit(20 + 7 / 12, "feet"),
  16059. weight: math.unit(629, "lb"),
  16060. name: "Feral",
  16061. image: {
  16062. source: "./media/characters/grottos/feral.svg",
  16063. extra: 207 / 190,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(10 + 9 / 12, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16078. {
  16079. anthro: {
  16080. height: math.unit(9 + 6 / 12, "feet"),
  16081. weight: math.unit(298, "lb"),
  16082. name: "Anthro",
  16083. image: {
  16084. source: "./media/characters/frifna/anthro.svg",
  16085. extra: 282 / 269,
  16086. bottom: 0.015
  16087. }
  16088. },
  16089. feral: {
  16090. height: math.unit(16 + 2 / 12, "feet"),
  16091. weight: math.unit(624, "lb"),
  16092. name: "Feral",
  16093. image: {
  16094. source: "./media/characters/frifna/feral.svg"
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(9 + 6 / 12, "feet"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6 + 2 / 12, "feet"),
  16111. weight: math.unit(168, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/elise/front.svg",
  16115. extra: 276 / 271
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 2 / 12, "feet"),
  16123. default: true
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(5 + 10 / 12, "feet"),
  16132. weight: math.unit(210, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/glade/front.svg",
  16136. extra: 258 / 247,
  16137. bottom: 0.008
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(5 + 10 / 12, "feet"),
  16145. default: true
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(5 + 10 / 12, "feet"),
  16154. weight: math.unit(129, "lb"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/rina/front.svg",
  16158. extra: 266 / 255,
  16159. bottom: 0.005
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(5 + 10 / 12, "feet"),
  16167. default: true
  16168. },
  16169. ]
  16170. ))
  16171. characterMakers.push(() => makeCharacter(
  16172. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16173. {
  16174. front: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(192, "lb"),
  16177. name: "Front",
  16178. image: {
  16179. source: "./media/characters/veronica/front.svg",
  16180. extra: 319 / 309,
  16181. bottom: 0.005
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(6 + 1 / 12, "feet"),
  16189. default: true
  16190. },
  16191. ]
  16192. ))
  16193. characterMakers.push(() => makeCharacter(
  16194. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16195. {
  16196. front: {
  16197. height: math.unit(9 + 3 / 12, "feet"),
  16198. weight: math.unit(1100, "lb"),
  16199. name: "Front",
  16200. image: {
  16201. source: "./media/characters/braxton/front.svg",
  16202. extra: 1057 / 984,
  16203. bottom: 0.05
  16204. }
  16205. },
  16206. },
  16207. [
  16208. {
  16209. name: "Normal",
  16210. height: math.unit(9 + 3 / 12, "feet")
  16211. },
  16212. {
  16213. name: "Giant",
  16214. height: math.unit(300, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Macro",
  16219. height: math.unit(700, "feet")
  16220. },
  16221. {
  16222. name: "Megamacro",
  16223. height: math.unit(6000, "feet")
  16224. },
  16225. ]
  16226. ))
  16227. characterMakers.push(() => makeCharacter(
  16228. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16229. {
  16230. front: {
  16231. height: math.unit(6 + 7 / 12, "feet"),
  16232. weight: math.unit(150, "lb"),
  16233. name: "Front",
  16234. image: {
  16235. source: "./media/characters/blue-feyonics/front.svg",
  16236. extra: 1403 / 1306,
  16237. bottom: 0.047
  16238. }
  16239. },
  16240. },
  16241. [
  16242. {
  16243. name: "Normal",
  16244. height: math.unit(6 + 7 / 12, "feet"),
  16245. default: true
  16246. },
  16247. ]
  16248. ))
  16249. characterMakers.push(() => makeCharacter(
  16250. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16251. {
  16252. front: {
  16253. height: math.unit(1.8, "meters"),
  16254. weight: math.unit(60, "kg"),
  16255. name: "Front",
  16256. image: {
  16257. source: "./media/characters/maxwell/front.svg",
  16258. extra: 2060 / 1873
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(1, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(1.8, "meter"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(30, "meters")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(10, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(150, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/jack/front.svg",
  16291. extra: 1754 / 1640,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(80000, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Max size",
  16304. height: math.unit(10, "lightyears")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16310. {
  16311. urban: {
  16312. height: math.unit(5, "feet"),
  16313. weight: math.unit(240, "lb"),
  16314. name: "Urban",
  16315. image: {
  16316. source: "./media/characters/cafat/urban.svg",
  16317. extra: 1223/1126,
  16318. bottom: 205/1428
  16319. }
  16320. },
  16321. summer: {
  16322. height: math.unit(5, "feet"),
  16323. weight: math.unit(240, "lb"),
  16324. name: "Summer",
  16325. image: {
  16326. source: "./media/characters/cafat/summer.svg",
  16327. extra: 1223/1126,
  16328. bottom: 205/1428
  16329. }
  16330. },
  16331. winter: {
  16332. height: math.unit(5, "feet"),
  16333. weight: math.unit(240, "lb"),
  16334. name: "Winter",
  16335. image: {
  16336. source: "./media/characters/cafat/winter.svg",
  16337. extra: 1223/1126,
  16338. bottom: 205/1428
  16339. }
  16340. },
  16341. lingerie: {
  16342. height: math.unit(5, "feet"),
  16343. weight: math.unit(240, "lb"),
  16344. name: "Lingerie",
  16345. image: {
  16346. source: "./media/characters/cafat/lingerie.svg",
  16347. extra: 1223/1126,
  16348. bottom: 205/1428
  16349. }
  16350. },
  16351. upright: {
  16352. height: math.unit(6.3, "feet"),
  16353. weight: math.unit(240, "lb"),
  16354. name: "Upright",
  16355. image: {
  16356. source: "./media/characters/cafat/upright.svg",
  16357. bottom: 0.01
  16358. }
  16359. },
  16360. uprightFull: {
  16361. height: math.unit(6.3, "feet"),
  16362. weight: math.unit(240, "lb"),
  16363. name: "Upright (Full)",
  16364. image: {
  16365. source: "./media/characters/cafat/upright-full.svg",
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Small",
  16373. height: math.unit(5, "feet"),
  16374. default: true
  16375. },
  16376. {
  16377. name: "Large",
  16378. height: math.unit(13, "feet")
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16384. {
  16385. front: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front",
  16389. image: {
  16390. source: "./media/characters/verin-raharra/front.svg",
  16391. extra: 5019 / 4835,
  16392. bottom: 0.023
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(7 + 5 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Upsized",
  16404. height: math.unit(20, "feet")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(7, "feet"),
  16413. weight: math.unit(230, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/nakata/front.svg",
  16417. extra: 1.005,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. {
  16429. name: "Big",
  16430. height: math.unit(14, "feet")
  16431. },
  16432. {
  16433. name: "Macro",
  16434. height: math.unit(400, "feet")
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(4.91, "feet"),
  16443. weight: math.unit(100, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/lily/front.svg",
  16447. extra: 1585 / 1415,
  16448. bottom: 0.02
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(4.91, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16462. {
  16463. laying: {
  16464. height: math.unit(4 + 4 / 12, "feet"),
  16465. weight: math.unit(600, "lb"),
  16466. name: "Laying",
  16467. image: {
  16468. source: "./media/characters/sheila/laying.svg",
  16469. extra: 1333 / 1265,
  16470. bottom: 0.16
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(4 + 4 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(6, "feet"),
  16487. weight: math.unit(190, "lb"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/sax/front.svg",
  16491. extra: 1187 / 973,
  16492. bottom: 0.042
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Micro",
  16499. height: math.unit(4, "inches"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(150, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/pandora/front.svg",
  16513. extra: 2720 / 2556,
  16514. bottom: 0.015
  16515. }
  16516. },
  16517. back: {
  16518. height: math.unit(6, "feet"),
  16519. weight: math.unit(150, "lb"),
  16520. name: "Back",
  16521. image: {
  16522. source: "./media/characters/pandora/back.svg",
  16523. extra: 2720 / 2556,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. beans: {
  16528. height: math.unit(6 / 8, "feet"),
  16529. name: "Beans",
  16530. image: {
  16531. source: "./media/characters/pandora/beans.svg"
  16532. }
  16533. },
  16534. collar: {
  16535. height: math.unit(0.31, "feet"),
  16536. name: "Collar",
  16537. image: {
  16538. source: "./media/characters/pandora/collar.svg"
  16539. }
  16540. },
  16541. skirt: {
  16542. height: math.unit(6, "feet"),
  16543. weight: math.unit(150, "lb"),
  16544. name: "Skirt",
  16545. image: {
  16546. source: "./media/characters/pandora/skirt.svg",
  16547. extra: 1622 / 1525,
  16548. bottom: 0.015
  16549. }
  16550. },
  16551. hoodie: {
  16552. height: math.unit(6, "feet"),
  16553. weight: math.unit(150, "lb"),
  16554. name: "Hoodie",
  16555. image: {
  16556. source: "./media/characters/pandora/hoodie.svg",
  16557. extra: 1622 / 1525,
  16558. bottom: 0.015
  16559. }
  16560. },
  16561. casual: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Casual",
  16565. image: {
  16566. source: "./media/characters/pandora/casual.svg",
  16567. extra: 1622 / 1525,
  16568. bottom: 0.015
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(6, "feet")
  16576. },
  16577. {
  16578. name: "Big Steppy",
  16579. height: math.unit(1, "km"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Galactic Steppy",
  16584. height: math.unit(2, "gigameters")
  16585. },
  16586. ]
  16587. ))
  16588. characterMakers.push(() => makeCharacter(
  16589. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16590. {
  16591. side: {
  16592. height: math.unit(10, "feet"),
  16593. weight: math.unit(800, "kg"),
  16594. name: "Side",
  16595. image: {
  16596. source: "./media/characters/venio-darcony/side.svg",
  16597. extra: 1373 / 1003,
  16598. bottom: 0.037
  16599. }
  16600. },
  16601. front: {
  16602. height: math.unit(19, "feet"),
  16603. weight: math.unit(800, "kg"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/venio-darcony/front.svg"
  16607. }
  16608. },
  16609. back: {
  16610. height: math.unit(19, "feet"),
  16611. weight: math.unit(800, "kg"),
  16612. name: "Back",
  16613. image: {
  16614. source: "./media/characters/venio-darcony/back.svg"
  16615. }
  16616. },
  16617. sideNsfw: {
  16618. height: math.unit(10, "feet"),
  16619. weight: math.unit(800, "kg"),
  16620. name: "Side (NSFW)",
  16621. image: {
  16622. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16623. extra: 1373 / 1003,
  16624. bottom: 0.037
  16625. }
  16626. },
  16627. frontNsfw: {
  16628. height: math.unit(19, "feet"),
  16629. weight: math.unit(800, "kg"),
  16630. name: "Front (NSFW)",
  16631. image: {
  16632. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16633. }
  16634. },
  16635. backNsfw: {
  16636. height: math.unit(19, "feet"),
  16637. weight: math.unit(800, "kg"),
  16638. name: "Back (NSFW)",
  16639. image: {
  16640. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16641. }
  16642. },
  16643. sideArmored: {
  16644. height: math.unit(10, "feet"),
  16645. weight: math.unit(800, "kg"),
  16646. name: "Side (Armored)",
  16647. image: {
  16648. source: "./media/characters/venio-darcony/side-armored.svg",
  16649. extra: 1373 / 1003,
  16650. bottom: 0.037
  16651. }
  16652. },
  16653. frontArmored: {
  16654. height: math.unit(19, "feet"),
  16655. weight: math.unit(900, "kg"),
  16656. name: "Front (Armored)",
  16657. image: {
  16658. source: "./media/characters/venio-darcony/front-armored.svg"
  16659. }
  16660. },
  16661. backArmored: {
  16662. height: math.unit(19, "feet"),
  16663. weight: math.unit(900, "kg"),
  16664. name: "Back (Armored)",
  16665. image: {
  16666. source: "./media/characters/venio-darcony/back-armored.svg"
  16667. }
  16668. },
  16669. sword: {
  16670. height: math.unit(10, "feet"),
  16671. weight: math.unit(50, "lb"),
  16672. name: "Sword",
  16673. image: {
  16674. source: "./media/characters/venio-darcony/sword.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(10, "feet")
  16682. },
  16683. {
  16684. name: "Macro",
  16685. height: math.unit(130, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Macro+",
  16690. height: math.unit(240, "feet")
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(6, "feet"),
  16699. weight: math.unit(150, "lb"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/veski/front.svg",
  16703. extra: 1299 / 1225,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(6, "feet"),
  16709. weight: math.unit(150, "lb"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/veski/back.svg",
  16713. extra: 1299 / 1225,
  16714. bottom: 0.008
  16715. }
  16716. },
  16717. maw: {
  16718. height: math.unit(1.5 * 1.21, "feet"),
  16719. name: "Maw",
  16720. image: {
  16721. source: "./media/characters/veski/maw.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(2, "km"),
  16729. default: true
  16730. },
  16731. ]
  16732. ))
  16733. characterMakers.push(() => makeCharacter(
  16734. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16735. {
  16736. front: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/isabelle/front.svg",
  16741. extra: 2130 / 1976,
  16742. bottom: 0.05
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Supermicro",
  16749. height: math.unit(10, "micrometers")
  16750. },
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1, "inch")
  16754. },
  16755. {
  16756. name: "Tiny",
  16757. height: math.unit(5, "inches")
  16758. },
  16759. {
  16760. name: "Standard",
  16761. height: math.unit(5 + 7 / 12, "inches")
  16762. },
  16763. {
  16764. name: "Macro",
  16765. height: math.unit(80, "meters"),
  16766. default: true
  16767. },
  16768. {
  16769. name: "Megamacro",
  16770. height: math.unit(250, "meters")
  16771. },
  16772. {
  16773. name: "Gigamacro",
  16774. height: math.unit(5, "km")
  16775. },
  16776. {
  16777. name: "Cosmic",
  16778. height: math.unit(2.5e6, "miles")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(6, "feet"),
  16787. weight: math.unit(150, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/hanzo/front.svg",
  16791. extra: 374 / 344,
  16792. bottom: 0.02
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(8, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(7, "feet"),
  16809. weight: math.unit(130, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/anna/front.svg",
  16813. extra: 169 / 145,
  16814. bottom: 0.06
  16815. }
  16816. },
  16817. full: {
  16818. height: math.unit(4.96, "feet"),
  16819. weight: math.unit(220, "lb"),
  16820. name: "Full",
  16821. image: {
  16822. source: "./media/characters/anna/full.svg",
  16823. extra: 138 / 114,
  16824. bottom: 0.15
  16825. }
  16826. },
  16827. tongue: {
  16828. height: math.unit(2.53, "feet"),
  16829. name: "Tongue",
  16830. image: {
  16831. source: "./media/characters/anna/tongue.svg"
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(7, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16845. {
  16846. front: {
  16847. height: math.unit(7, "feet"),
  16848. weight: math.unit(150, "lb"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/ian-corvid/front.svg",
  16852. extra: 150 / 142,
  16853. bottom: 0.02
  16854. }
  16855. },
  16856. back: {
  16857. height: math.unit(7, "feet"),
  16858. weight: math.unit(150, "lb"),
  16859. name: "Back",
  16860. image: {
  16861. source: "./media/characters/ian-corvid/back.svg",
  16862. extra: 150 / 143,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. stomping: {
  16867. height: math.unit(7, "feet"),
  16868. weight: math.unit(150, "lb"),
  16869. name: "Stomping",
  16870. image: {
  16871. source: "./media/characters/ian-corvid/stomping.svg",
  16872. extra: 76 / 72
  16873. }
  16874. },
  16875. sitting: {
  16876. height: math.unit(7 / 1.8, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Sitting",
  16879. image: {
  16880. source: "./media/characters/ian-corvid/sitting.svg",
  16881. extra: 1400 / 1269,
  16882. bottom: 0.15
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Tiny Microw",
  16889. height: math.unit(1, "inch")
  16890. },
  16891. {
  16892. name: "Microw",
  16893. height: math.unit(6, "inches")
  16894. },
  16895. {
  16896. name: "Crow",
  16897. height: math.unit(7 + 1 / 12, "feet"),
  16898. default: true
  16899. },
  16900. {
  16901. name: "Macrow",
  16902. height: math.unit(176, "feet")
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 7 / 12, "feet"),
  16911. weight: math.unit(147, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/natalie-kellon/front.svg",
  16915. extra: 1214 / 1141,
  16916. bottom: 0.02
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Micro",
  16923. height: math.unit(1 / 16, "inch")
  16924. },
  16925. {
  16926. name: "Tiny",
  16927. height: math.unit(4, "inches")
  16928. },
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(5 + 7 / 12, "feet"),
  16932. default: true
  16933. },
  16934. {
  16935. name: "Amazon",
  16936. height: math.unit(12, "feet")
  16937. },
  16938. {
  16939. name: "Giantess",
  16940. height: math.unit(160, "meters")
  16941. },
  16942. {
  16943. name: "Titaness",
  16944. height: math.unit(800, "meters")
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. weight: math.unit(150, "lb"),
  16954. name: "Front",
  16955. image: {
  16956. source: "./media/characters/alluria/front.svg",
  16957. extra: 806 / 738,
  16958. bottom: 0.01
  16959. }
  16960. },
  16961. side: {
  16962. height: math.unit(6, "feet"),
  16963. weight: math.unit(150, "lb"),
  16964. name: "Side",
  16965. image: {
  16966. source: "./media/characters/alluria/side.svg",
  16967. extra: 800 / 750,
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/alluria/back.svg",
  16976. extra: 806 / 738,
  16977. }
  16978. },
  16979. frontMaid: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(150, "lb"),
  16982. name: "Front (Maid)",
  16983. image: {
  16984. source: "./media/characters/alluria/front-maid.svg",
  16985. extra: 806 / 738,
  16986. bottom: 0.01
  16987. }
  16988. },
  16989. sideMaid: {
  16990. height: math.unit(6, "feet"),
  16991. weight: math.unit(150, "lb"),
  16992. name: "Side (Maid)",
  16993. image: {
  16994. source: "./media/characters/alluria/side-maid.svg",
  16995. extra: 800 / 750,
  16996. bottom: 0.005
  16997. }
  16998. },
  16999. backMaid: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(150, "lb"),
  17002. name: "Back (Maid)",
  17003. image: {
  17004. source: "./media/characters/alluria/back-maid.svg",
  17005. extra: 806 / 738,
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Micro",
  17012. height: math.unit(6, "inches"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/kyle/front.svg",
  17026. extra: 1069 / 962,
  17027. bottom: 77.228 / 1727.45
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Macro",
  17034. height: math.unit(150, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6, "feet"),
  17044. weight: math.unit(300, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/duncan/front.svg",
  17048. extra: 1650 / 1482,
  17049. bottom: 0.05
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Macro",
  17056. height: math.unit(100, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 4 / 12, "feet"),
  17066. weight: math.unit(220, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/memory/front.svg",
  17070. extra: 3641 / 3545,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 4 / 12, "feet"),
  17076. weight: math.unit(220, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/memory/back.svg",
  17080. extra: 3641 / 3545,
  17081. bottom: 0.025
  17082. }
  17083. },
  17084. frontSkirt: {
  17085. height: math.unit(5 + 4 / 12, "feet"),
  17086. weight: math.unit(220, "lb"),
  17087. name: "Front (Skirt)",
  17088. image: {
  17089. source: "./media/characters/memory/front-skirt.svg",
  17090. extra: 3641 / 3545,
  17091. bottom: 0.03
  17092. }
  17093. },
  17094. frontDress: {
  17095. height: math.unit(5 + 4 / 12, "feet"),
  17096. weight: math.unit(220, "lb"),
  17097. name: "Front (Dress)",
  17098. image: {
  17099. source: "./media/characters/memory/front-dress.svg",
  17100. extra: 3641 / 3545,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Micro",
  17108. height: math.unit(6, "inches"),
  17109. default: true
  17110. },
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(5 + 4 / 12, "feet")
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(4 + 11 / 12, "feet"),
  17122. weight: math.unit(100, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/luno/front.svg",
  17126. extra: 1535 / 1487,
  17127. bottom: 0.03
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(3, "inches")
  17135. },
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(4 + 11 / 12, "feet"),
  17139. default: true
  17140. },
  17141. {
  17142. name: "Macro",
  17143. height: math.unit(300, "feet")
  17144. },
  17145. {
  17146. name: "Megamacro",
  17147. height: math.unit(700, "miles")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6 + 2 / 12, "feet"),
  17156. weight: math.unit(170, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/jamesy/front.svg",
  17160. extra: 440 / 382,
  17161. bottom: 0.005
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Micro",
  17168. height: math.unit(3, "inches")
  17169. },
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(6 + 2 / 12, "feet"),
  17173. default: true
  17174. },
  17175. {
  17176. name: "Macro",
  17177. height: math.unit(300, "feet")
  17178. },
  17179. {
  17180. name: "Megamacro",
  17181. height: math.unit(700, "miles")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(160, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/mark/front.svg",
  17194. extra: 3300 / 3100,
  17195. bottom: 136.42 / 3440.47
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(120, "meters")
  17203. },
  17204. {
  17205. name: "Bigger Macro",
  17206. height: math.unit(350, "meters")
  17207. },
  17208. {
  17209. name: "Megamacro",
  17210. height: math.unit(8, "km"),
  17211. default: true
  17212. },
  17213. {
  17214. name: "Continental",
  17215. height: math.unit(4550, "km")
  17216. },
  17217. {
  17218. name: "Planetary",
  17219. height: math.unit(65000, "km")
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(6, "feet"),
  17228. weight: math.unit(400, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/mac/front.svg",
  17232. extra: 1048 / 987.7,
  17233. bottom: 60 / 1107.6,
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(500, "feet"),
  17241. default: true
  17242. },
  17243. ]
  17244. ))
  17245. characterMakers.push(() => makeCharacter(
  17246. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17247. {
  17248. front: {
  17249. height: math.unit(5 + 2 / 12, "feet"),
  17250. weight: math.unit(190, "lb"),
  17251. name: "Front",
  17252. image: {
  17253. source: "./media/characters/bari/front.svg",
  17254. extra: 3156 / 2880,
  17255. bottom: 0.03
  17256. }
  17257. },
  17258. back: {
  17259. height: math.unit(5 + 2 / 12, "feet"),
  17260. weight: math.unit(190, "lb"),
  17261. name: "Back",
  17262. image: {
  17263. source: "./media/characters/bari/back.svg",
  17264. extra: 3260 / 2834,
  17265. bottom: 0.025
  17266. }
  17267. },
  17268. frontPlush: {
  17269. height: math.unit(5 + 2 / 12, "feet"),
  17270. weight: math.unit(190, "lb"),
  17271. name: "Front (Plush)",
  17272. image: {
  17273. source: "./media/characters/bari/front-plush.svg",
  17274. extra: 1112 / 1061,
  17275. bottom: 0.002
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(3, "inches")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 2 / 12, "feet"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(20, "feet")
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17297. {
  17298. front: {
  17299. height: math.unit(6 + 1 / 12, "feet"),
  17300. weight: math.unit(275, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/hunter-misha-raven/front.svg"
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Mortal",
  17310. height: math.unit(6 + 1 / 12, "feet")
  17311. },
  17312. {
  17313. name: "Divine",
  17314. height: math.unit(1.12134e34, "parsecs"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(6 + 3 / 12, "feet"),
  17324. weight: math.unit(220, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/max-calore/front.svg",
  17328. extra: 1700 / 1648,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. back: {
  17333. height: math.unit(6 + 3 / 12, "feet"),
  17334. weight: math.unit(220, "lb"),
  17335. name: "Back",
  17336. image: {
  17337. source: "./media/characters/max-calore/back.svg",
  17338. extra: 1700 / 1648,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6 + 3 / 12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17353. {
  17354. side: {
  17355. height: math.unit(2 + 8 / 12, "feet"),
  17356. weight: math.unit(99, "lb"),
  17357. name: "Side",
  17358. image: {
  17359. source: "./media/characters/aspen/side.svg",
  17360. extra: 152 / 138,
  17361. bottom: 0.032
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(2 + 8 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17375. {
  17376. side: {
  17377. height: math.unit(3 + 2 / 12, "feet"),
  17378. weight: math.unit(224, "lb"),
  17379. name: "Side",
  17380. image: {
  17381. source: "./media/characters/sheila-feral-wolf/side.svg",
  17382. extra: 179 / 166,
  17383. bottom: 0.03
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(3 + 2 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17397. {
  17398. side: {
  17399. height: math.unit(1 + 9 / 12, "feet"),
  17400. weight: math.unit(38, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/michelle/side.svg",
  17404. extra: 147 / 136.7,
  17405. bottom: 0.03
  17406. }
  17407. },
  17408. },
  17409. [
  17410. {
  17411. name: "Normal",
  17412. height: math.unit(1 + 9 / 12, "feet"),
  17413. default: true
  17414. },
  17415. ]
  17416. ))
  17417. characterMakers.push(() => makeCharacter(
  17418. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17419. {
  17420. front: {
  17421. height: math.unit(1.54, "feet"),
  17422. weight: math.unit(50, "lb"),
  17423. name: "Front",
  17424. image: {
  17425. source: "./media/characters/nino/front.svg"
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(1.54, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(1.49, "feet"),
  17442. weight: math.unit(45, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/viola/front.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.49, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 5 / 12, "feet"),
  17462. weight: math.unit(580, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/atlas/front.svg",
  17466. extra: 298.5 / 290,
  17467. bottom: 0.015
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 5 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17481. {
  17482. side: {
  17483. height: math.unit(15.6, "inches"),
  17484. weight: math.unit(10, "lb"),
  17485. name: "Side",
  17486. image: {
  17487. source: "./media/characters/davy/side.svg",
  17488. extra: 200 / 170,
  17489. bottom: 0.01
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(15.6, "inches"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17503. {
  17504. side: {
  17505. height: math.unit(4 + 8 / 12, "feet"),
  17506. weight: math.unit(166, "lb"),
  17507. name: "Side",
  17508. image: {
  17509. source: "./media/characters/fiona/side.svg",
  17510. extra: 232 / 220,
  17511. bottom: 0.03
  17512. }
  17513. },
  17514. },
  17515. [
  17516. {
  17517. name: "Normal",
  17518. height: math.unit(4 + 8 / 12, "feet"),
  17519. default: true
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17525. {
  17526. front: {
  17527. height: math.unit(26, "inches"),
  17528. weight: math.unit(35, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/lyla/front.svg",
  17532. bottom: 0.1
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(3, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17546. {
  17547. side: {
  17548. height: math.unit(1.8, "feet"),
  17549. weight: math.unit(44, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/perseus/side.svg",
  17553. bottom: 0.21
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(1.8, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17567. {
  17568. side: {
  17569. height: math.unit(4 + 2 / 12, "feet"),
  17570. weight: math.unit(20, "lb"),
  17571. name: "Side",
  17572. image: {
  17573. source: "./media/characters/remus/side.svg"
  17574. }
  17575. },
  17576. },
  17577. [
  17578. {
  17579. name: "Normal",
  17580. height: math.unit(4 + 2 / 12, "feet"),
  17581. default: true
  17582. },
  17583. ]
  17584. ))
  17585. characterMakers.push(() => makeCharacter(
  17586. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17587. {
  17588. front: {
  17589. height: math.unit(4 + 11 / 12, "feet"),
  17590. weight: math.unit(114, "lb"),
  17591. name: "Front",
  17592. image: {
  17593. source: "./media/characters/raf/front.svg",
  17594. extra: 1504/1339,
  17595. bottom: 26/1530
  17596. }
  17597. },
  17598. side: {
  17599. height: math.unit(4 + 11 / 12, "feet"),
  17600. weight: math.unit(114, "lb"),
  17601. name: "Side",
  17602. image: {
  17603. source: "./media/characters/raf/side.svg",
  17604. extra: 1466/1316,
  17605. bottom: 29/1495
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Micro",
  17612. height: math.unit(2, "inches")
  17613. },
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(4 + 11 / 12, "feet"),
  17617. default: true
  17618. },
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(70, "feet")
  17622. },
  17623. ]
  17624. ))
  17625. characterMakers.push(() => makeCharacter(
  17626. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17627. {
  17628. front: {
  17629. height: math.unit(1.5, "meters"),
  17630. weight: math.unit(68, "kg"),
  17631. name: "Front",
  17632. image: {
  17633. source: "./media/characters/liam-einarr/front.svg",
  17634. extra: 2822 / 2666
  17635. }
  17636. },
  17637. back: {
  17638. height: math.unit(1.5, "meters"),
  17639. weight: math.unit(68, "kg"),
  17640. name: "Back",
  17641. image: {
  17642. source: "./media/characters/liam-einarr/back.svg",
  17643. extra: 2822 / 2666,
  17644. bottom: 0.015
  17645. }
  17646. },
  17647. },
  17648. [
  17649. {
  17650. name: "Normal",
  17651. height: math.unit(1.5, "meters"),
  17652. default: true
  17653. },
  17654. {
  17655. name: "Macro",
  17656. height: math.unit(150, "meters")
  17657. },
  17658. {
  17659. name: "Megamacro",
  17660. height: math.unit(35, "km")
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(6, "feet"),
  17669. weight: math.unit(75, "kg"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/linda/front.svg",
  17673. extra: 930 / 874,
  17674. bottom: 0.004
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(6, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(6 + 8 / 12, "feet"),
  17691. weight: math.unit(220, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/caylex/front.svg",
  17695. extra: 821 / 772,
  17696. bottom: 0.07
  17697. }
  17698. },
  17699. back: {
  17700. height: math.unit(6 + 8 / 12, "feet"),
  17701. weight: math.unit(220, "lb"),
  17702. name: "Back",
  17703. image: {
  17704. source: "./media/characters/caylex/back.svg",
  17705. extra: 821 / 772,
  17706. bottom: 0.022
  17707. }
  17708. },
  17709. hand: {
  17710. height: math.unit(1.25, "feet"),
  17711. name: "Hand",
  17712. image: {
  17713. source: "./media/characters/caylex/hand.svg"
  17714. }
  17715. },
  17716. foot: {
  17717. height: math.unit(1.6, "feet"),
  17718. name: "Foot",
  17719. image: {
  17720. source: "./media/characters/caylex/foot.svg"
  17721. }
  17722. },
  17723. armored: {
  17724. height: math.unit(6 + 8 / 12, "feet"),
  17725. weight: math.unit(250, "lb"),
  17726. name: "Armored",
  17727. image: {
  17728. source: "./media/characters/caylex/armored.svg",
  17729. extra: 1420 / 1310,
  17730. bottom: 0.045
  17731. }
  17732. },
  17733. },
  17734. [
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(6 + 8 / 12, "feet"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Normal+",
  17742. height: math.unit(12, "feet")
  17743. },
  17744. ]
  17745. ))
  17746. characterMakers.push(() => makeCharacter(
  17747. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17748. {
  17749. front: {
  17750. height: math.unit(7 + 6 / 12, "feet"),
  17751. weight: math.unit(288, "lb"),
  17752. name: "Front",
  17753. image: {
  17754. source: "./media/characters/alana/front.svg",
  17755. extra: 679 / 653,
  17756. bottom: 22.5 / 701
  17757. }
  17758. },
  17759. },
  17760. [
  17761. {
  17762. name: "Normal",
  17763. height: math.unit(7 + 6 / 12, "feet")
  17764. },
  17765. {
  17766. name: "Large",
  17767. height: math.unit(50, "feet")
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(100, "feet"),
  17772. default: true
  17773. },
  17774. {
  17775. name: "Macro+",
  17776. height: math.unit(200, "feet")
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(6 + 1 / 12, "feet"),
  17785. weight: math.unit(210, "lb"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/hasani/front.svg",
  17789. extra: 244 / 232,
  17790. bottom: 0.01
  17791. }
  17792. },
  17793. back: {
  17794. height: math.unit(6 + 1 / 12, "feet"),
  17795. weight: math.unit(210, "lb"),
  17796. name: "Back",
  17797. image: {
  17798. source: "./media/characters/hasani/back.svg",
  17799. extra: 244 / 232,
  17800. bottom: 0.01
  17801. }
  17802. },
  17803. },
  17804. [
  17805. {
  17806. name: "Normal",
  17807. height: math.unit(6 + 1 / 12, "feet")
  17808. },
  17809. {
  17810. name: "Macro",
  17811. height: math.unit(175, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(1.82, "meters"),
  17821. weight: math.unit(140, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/nita/front.svg",
  17825. extra: 2473 / 2363,
  17826. bottom: 0.01
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.82, "m")
  17834. },
  17835. {
  17836. name: "Macro",
  17837. height: math.unit(300, "m")
  17838. },
  17839. {
  17840. name: "Mistake Canon",
  17841. height: math.unit(0.5, "miles"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Big Mistake",
  17846. height: math.unit(13, "miles")
  17847. },
  17848. {
  17849. name: "Playing God",
  17850. height: math.unit(2450, "miles")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(120, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/shiriko/front.svg",
  17863. extra: 970/934,
  17864. bottom: 5/975
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6, "feet"),
  17881. name: "front",
  17882. image: {
  17883. source: "./media/characters/deja/front.svg",
  17884. extra: 926 / 840,
  17885. bottom: 0.07
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Planck Length",
  17892. height: math.unit(1.6e-35, "meters")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(30.48, "meters"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Universal",
  17901. height: math.unit(8.8e26, "meters")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17907. {
  17908. side: {
  17909. height: math.unit(8, "feet"),
  17910. weight: math.unit(6300, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/anima/side.svg",
  17914. bottom: 0.035
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(8, "feet"),
  17922. default: true
  17923. },
  17924. ]
  17925. ))
  17926. characterMakers.push(() => makeCharacter(
  17927. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17928. {
  17929. front: {
  17930. height: math.unit(8, "feet"),
  17931. weight: math.unit(350, "lb"),
  17932. name: "Front",
  17933. image: {
  17934. source: "./media/characters/bianca/front.svg",
  17935. extra: 234 / 225,
  17936. bottom: 0.03
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(8, "feet"),
  17944. default: true
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(6, "feet"),
  17953. weight: math.unit(150, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/adinia/front.svg",
  17957. extra: 1845 / 1672,
  17958. bottom: 0.02
  17959. }
  17960. },
  17961. back: {
  17962. height: math.unit(6, "feet"),
  17963. weight: math.unit(150, "lb"),
  17964. name: "Back",
  17965. image: {
  17966. source: "./media/characters/adinia/back.svg",
  17967. extra: 1845 / 1672,
  17968. bottom: 0.002
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(11 + 5 / 12, "feet"),
  17976. default: true
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(3, "meters"),
  17985. weight: math.unit(200, "kg"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/lykasa/front.svg",
  17989. extra: 1076 / 976,
  17990. bottom: 0.06
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(3, "meters")
  17998. },
  17999. {
  18000. name: "Kaiju",
  18001. height: math.unit(120, "meters"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Mega Kaiju",
  18006. height: math.unit(240, "km")
  18007. },
  18008. {
  18009. name: "Giga Kaiju",
  18010. height: math.unit(400, "megameters")
  18011. },
  18012. {
  18013. name: "Tera Kaiju",
  18014. height: math.unit(800, "gigameters")
  18015. },
  18016. {
  18017. name: "Kaiju Dragon Goddess",
  18018. height: math.unit(26, "zettaparsecs")
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18024. {
  18025. side: {
  18026. height: math.unit(283 / 124 * 6, "feet"),
  18027. weight: math.unit(35000, "lb"),
  18028. name: "Side",
  18029. image: {
  18030. source: "./media/characters/malfaren/side.svg",
  18031. extra: 1310/529,
  18032. bottom: 24/1334
  18033. }
  18034. },
  18035. front: {
  18036. height: math.unit(22.36, "feet"),
  18037. weight: math.unit(35000, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/malfaren/front.svg",
  18041. extra: 1237/1115,
  18042. bottom: 32/1269
  18043. }
  18044. },
  18045. maw: {
  18046. height: math.unit(6.9, "feet"),
  18047. name: "Maw",
  18048. image: {
  18049. source: "./media/characters/malfaren/maw.svg"
  18050. }
  18051. },
  18052. dick: {
  18053. height: math.unit(6.19, "feet"),
  18054. name: "Dick",
  18055. image: {
  18056. source: "./media/characters/malfaren/dick.svg"
  18057. }
  18058. },
  18059. eye: {
  18060. height: math.unit(0.69, "feet"),
  18061. name: "Eye",
  18062. image: {
  18063. source: "./media/characters/malfaren/eye.svg"
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Big",
  18070. height: math.unit(283 / 162 * 6, "feet"),
  18071. },
  18072. {
  18073. name: "Bigger",
  18074. height: math.unit(283 / 124 * 6, "feet")
  18075. },
  18076. {
  18077. name: "Massive",
  18078. height: math.unit(283 / 92 * 6, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "👀💦",
  18083. height: math.unit(283 / 73 * 6, "feet"),
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(1.7, "m"),
  18092. weight: math.unit(70, "kg"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/kernel/front.svg",
  18096. extra: 222 / 210,
  18097. bottom: 0.007
  18098. }
  18099. },
  18100. },
  18101. [
  18102. {
  18103. name: "Nano",
  18104. height: math.unit(17, "micrometers")
  18105. },
  18106. {
  18107. name: "Micro",
  18108. height: math.unit(1.7, "mm")
  18109. },
  18110. {
  18111. name: "Small",
  18112. height: math.unit(1.7, "cm")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(1.7, "m"),
  18117. default: true
  18118. },
  18119. ]
  18120. ))
  18121. characterMakers.push(() => makeCharacter(
  18122. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18123. {
  18124. front: {
  18125. height: math.unit(1.75, "meters"),
  18126. weight: math.unit(65, "kg"),
  18127. name: "Front",
  18128. image: {
  18129. source: "./media/characters/jayne-folest/front.svg",
  18130. extra: 2115 / 2007,
  18131. bottom: 0.02
  18132. }
  18133. },
  18134. back: {
  18135. height: math.unit(1.75, "meters"),
  18136. weight: math.unit(65, "kg"),
  18137. name: "Back",
  18138. image: {
  18139. source: "./media/characters/jayne-folest/back.svg",
  18140. extra: 2115 / 2007,
  18141. bottom: 0.005
  18142. }
  18143. },
  18144. frontClothed: {
  18145. height: math.unit(1.75, "meters"),
  18146. weight: math.unit(65, "kg"),
  18147. name: "Front (Clothed)",
  18148. image: {
  18149. source: "./media/characters/jayne-folest/front-clothed.svg",
  18150. extra: 2115 / 2007,
  18151. bottom: 0.035
  18152. }
  18153. },
  18154. hand: {
  18155. height: math.unit(1 / 1.260, "feet"),
  18156. name: "Hand",
  18157. image: {
  18158. source: "./media/characters/jayne-folest/hand.svg"
  18159. }
  18160. },
  18161. foot: {
  18162. height: math.unit(1 / 0.918, "feet"),
  18163. name: "Foot",
  18164. image: {
  18165. source: "./media/characters/jayne-folest/foot.svg"
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Micro",
  18172. height: math.unit(4, "cm")
  18173. },
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(1.75, "meters")
  18177. },
  18178. {
  18179. name: "Macro",
  18180. height: math.unit(47.5, "meters"),
  18181. default: true
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18187. {
  18188. front: {
  18189. height: math.unit(180, "cm"),
  18190. weight: math.unit(70, "kg"),
  18191. name: "Front",
  18192. image: {
  18193. source: "./media/characters/algier/front.svg",
  18194. extra: 596 / 572,
  18195. bottom: 0.04
  18196. }
  18197. },
  18198. back: {
  18199. height: math.unit(180, "cm"),
  18200. weight: math.unit(70, "kg"),
  18201. name: "Back",
  18202. image: {
  18203. source: "./media/characters/algier/back.svg",
  18204. extra: 596 / 572,
  18205. bottom: 0.025
  18206. }
  18207. },
  18208. frontdressed: {
  18209. height: math.unit(180, "cm"),
  18210. weight: math.unit(150, "kg"),
  18211. name: "Front-dressed",
  18212. image: {
  18213. source: "./media/characters/algier/front-dressed.svg",
  18214. extra: 596 / 572,
  18215. bottom: 0.038
  18216. }
  18217. },
  18218. },
  18219. [
  18220. {
  18221. name: "Micro",
  18222. height: math.unit(5, "cm")
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(180, "cm"),
  18227. default: true
  18228. },
  18229. {
  18230. name: "Macro",
  18231. height: math.unit(64, "m")
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18237. {
  18238. upright: {
  18239. height: math.unit(7, "feet"),
  18240. weight: math.unit(300, "lb"),
  18241. name: "Upright",
  18242. image: {
  18243. source: "./media/characters/pretzel/upright.svg",
  18244. extra: 534 / 522,
  18245. bottom: 0.065
  18246. }
  18247. },
  18248. sprawling: {
  18249. height: math.unit(3.75, "feet"),
  18250. weight: math.unit(300, "lb"),
  18251. name: "Sprawling",
  18252. image: {
  18253. source: "./media/characters/pretzel/sprawling.svg",
  18254. extra: 314 / 281,
  18255. bottom: 0.1
  18256. }
  18257. },
  18258. tongue: {
  18259. height: math.unit(2, "feet"),
  18260. name: "Tongue",
  18261. image: {
  18262. source: "./media/characters/pretzel/tongue.svg"
  18263. }
  18264. },
  18265. },
  18266. [
  18267. {
  18268. name: "Normal",
  18269. height: math.unit(7, "feet"),
  18270. default: true
  18271. },
  18272. {
  18273. name: "Oversized",
  18274. height: math.unit(15, "feet")
  18275. },
  18276. {
  18277. name: "Huge",
  18278. height: math.unit(30, "feet")
  18279. },
  18280. {
  18281. name: "Macro",
  18282. height: math.unit(250, "feet")
  18283. },
  18284. ]
  18285. ))
  18286. characterMakers.push(() => makeCharacter(
  18287. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18288. {
  18289. sideFront: {
  18290. height: math.unit(5 + 2 / 12, "feet"),
  18291. weight: math.unit(120, "lb"),
  18292. name: "Front Side",
  18293. image: {
  18294. source: "./media/characters/roxi/side-front.svg",
  18295. extra: 2924 / 2717,
  18296. bottom: 0.08
  18297. }
  18298. },
  18299. sideBack: {
  18300. height: math.unit(5 + 2 / 12, "feet"),
  18301. weight: math.unit(120, "lb"),
  18302. name: "Back Side",
  18303. image: {
  18304. source: "./media/characters/roxi/side-back.svg",
  18305. extra: 2904 / 2693,
  18306. bottom: 0.06
  18307. }
  18308. },
  18309. front: {
  18310. height: math.unit(5 + 2 / 12, "feet"),
  18311. weight: math.unit(120, "lb"),
  18312. name: "Front",
  18313. image: {
  18314. source: "./media/characters/roxi/front.svg",
  18315. extra: 2028 / 1907,
  18316. bottom: 0.01
  18317. }
  18318. },
  18319. frontAlt: {
  18320. height: math.unit(5 + 2 / 12, "feet"),
  18321. weight: math.unit(120, "lb"),
  18322. name: "Front (Alt)",
  18323. image: {
  18324. source: "./media/characters/roxi/front-alt.svg",
  18325. extra: 1828 / 1798,
  18326. bottom: 0.01
  18327. }
  18328. },
  18329. sitting: {
  18330. height: math.unit(2.8, "feet"),
  18331. weight: math.unit(120, "lb"),
  18332. name: "Sitting",
  18333. image: {
  18334. source: "./media/characters/roxi/sitting.svg",
  18335. extra: 2660 / 2462,
  18336. bottom: 0.1
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(5 + 2 / 12, "feet"),
  18344. default: true
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18350. {
  18351. side: {
  18352. height: math.unit(55, "feet"),
  18353. weight: math.unit(153, "tons"),
  18354. name: "Side",
  18355. image: {
  18356. source: "./media/characters/shadow/side.svg",
  18357. extra: 701 / 628,
  18358. bottom: 0.02
  18359. }
  18360. },
  18361. flying: {
  18362. height: math.unit(145, "feet"),
  18363. weight: math.unit(153, "tons"),
  18364. name: "Flying",
  18365. image: {
  18366. source: "./media/characters/shadow/flying.svg"
  18367. }
  18368. },
  18369. },
  18370. [
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(55, "feet"),
  18374. default: true
  18375. },
  18376. ]
  18377. ))
  18378. characterMakers.push(() => makeCharacter(
  18379. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18380. {
  18381. front: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(200, "lb"),
  18384. name: "Front",
  18385. image: {
  18386. source: "./media/characters/marcie/front.svg",
  18387. extra: 960 / 876,
  18388. bottom: 58 / 1017.87
  18389. }
  18390. },
  18391. },
  18392. [
  18393. {
  18394. name: "Macro",
  18395. height: math.unit(1, "mile"),
  18396. default: true
  18397. },
  18398. ]
  18399. ))
  18400. characterMakers.push(() => makeCharacter(
  18401. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18402. {
  18403. front: {
  18404. height: math.unit(7, "feet"),
  18405. weight: math.unit(200, "lb"),
  18406. name: "Front",
  18407. image: {
  18408. source: "./media/characters/kachina/front.svg",
  18409. extra: 1290.68 / 1119,
  18410. bottom: 36.5 / 1327.18
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(7, "feet"),
  18418. default: true
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18424. {
  18425. looking: {
  18426. height: math.unit(2, "meters"),
  18427. weight: math.unit(300, "kg"),
  18428. name: "Looking",
  18429. image: {
  18430. source: "./media/characters/kash/looking.svg",
  18431. extra: 474 / 344,
  18432. bottom: 0.03
  18433. }
  18434. },
  18435. side: {
  18436. height: math.unit(2, "meters"),
  18437. weight: math.unit(300, "kg"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/kash/side.svg",
  18441. extra: 302 / 251,
  18442. bottom: 0.03
  18443. }
  18444. },
  18445. front: {
  18446. height: math.unit(2, "meters"),
  18447. weight: math.unit(300, "kg"),
  18448. name: "Front",
  18449. image: {
  18450. source: "./media/characters/kash/front.svg",
  18451. extra: 495 / 360,
  18452. bottom: 0.015
  18453. }
  18454. },
  18455. },
  18456. [
  18457. {
  18458. name: "Normal",
  18459. height: math.unit(2, "meters"),
  18460. default: true
  18461. },
  18462. {
  18463. name: "Big",
  18464. height: math.unit(3, "meters")
  18465. },
  18466. {
  18467. name: "Large",
  18468. height: math.unit(5, "meters")
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18474. {
  18475. feeding: {
  18476. height: math.unit(6.7, "feet"),
  18477. weight: math.unit(350, "lb"),
  18478. name: "Feeding",
  18479. image: {
  18480. source: "./media/characters/lalim/feeding.svg",
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6.7, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(9.5, "feet"),
  18497. weight: math.unit(600, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/de'vout/front.svg",
  18501. extra: 1443 / 1328,
  18502. bottom: 0.025
  18503. }
  18504. },
  18505. back: {
  18506. height: math.unit(9.5, "feet"),
  18507. weight: math.unit(600, "lb"),
  18508. name: "Back",
  18509. image: {
  18510. source: "./media/characters/de'vout/back.svg",
  18511. extra: 1443 / 1328
  18512. }
  18513. },
  18514. frontDressed: {
  18515. height: math.unit(9.5, "feet"),
  18516. weight: math.unit(600, "lb"),
  18517. name: "Front (Dressed",
  18518. image: {
  18519. source: "./media/characters/de'vout/front-dressed.svg",
  18520. extra: 1443 / 1328,
  18521. bottom: 0.025
  18522. }
  18523. },
  18524. backDressed: {
  18525. height: math.unit(9.5, "feet"),
  18526. weight: math.unit(600, "lb"),
  18527. name: "Back (Dressed",
  18528. image: {
  18529. source: "./media/characters/de'vout/back-dressed.svg",
  18530. extra: 1443 / 1328
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(9.5, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(8, "feet"),
  18547. weight: math.unit(225, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/talana/front.svg",
  18551. extra: 1410 / 1300,
  18552. bottom: 0.015
  18553. }
  18554. },
  18555. frontDressed: {
  18556. height: math.unit(8, "feet"),
  18557. weight: math.unit(225, "lb"),
  18558. name: "Front (Dressed",
  18559. image: {
  18560. source: "./media/characters/talana/front-dressed.svg",
  18561. extra: 1410 / 1300,
  18562. bottom: 0.015
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(8, "feet"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18576. {
  18577. side: {
  18578. height: math.unit(7.2, "feet"),
  18579. weight: math.unit(150, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/xeauvok/side.svg",
  18583. extra: 1975 / 1523,
  18584. bottom: 0.07
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7.2, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18598. {
  18599. side: {
  18600. height: math.unit(10, "feet"),
  18601. weight: math.unit(900, "kg"),
  18602. name: "Side",
  18603. image: {
  18604. source: "./media/characters/zara/side.svg",
  18605. extra: 504 / 498
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(10, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(6, "feet"),
  18622. weight: math.unit(150, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/richard-dragon/side.svg",
  18626. extra: 845 / 340,
  18627. bottom: 0.017
  18628. }
  18629. },
  18630. maw: {
  18631. height: math.unit(2.97, "feet"),
  18632. name: "Maw",
  18633. image: {
  18634. source: "./media/characters/richard-dragon/maw.svg"
  18635. }
  18636. },
  18637. },
  18638. [
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(4, "feet"),
  18646. weight: math.unit(100, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/richard-smeargle/front.svg",
  18650. extra: 2952 / 2820,
  18651. bottom: 0.028
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(4, "feet"),
  18659. default: true
  18660. },
  18661. {
  18662. name: "Dynamax",
  18663. height: math.unit(20, "meters")
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(6, "feet"),
  18672. weight: math.unit(110, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/klay/front.svg",
  18676. extra: 962 / 883,
  18677. bottom: 0.04
  18678. }
  18679. },
  18680. back: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(110, "lb"),
  18683. name: "Back",
  18684. image: {
  18685. source: "./media/characters/klay/back.svg",
  18686. extra: 962 / 883
  18687. }
  18688. },
  18689. beans: {
  18690. height: math.unit(1.15, "feet"),
  18691. name: "Beans",
  18692. image: {
  18693. source: "./media/characters/klay/beans.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(6, "inches")
  18701. },
  18702. {
  18703. name: "Mini",
  18704. height: math.unit(3, "feet")
  18705. },
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6, "feet"),
  18709. default: true
  18710. },
  18711. {
  18712. name: "Big",
  18713. height: math.unit(25, "feet")
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(100, "feet")
  18718. },
  18719. {
  18720. name: "Megamacro",
  18721. height: math.unit(400, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(6, "feet"),
  18730. weight: math.unit(160, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/marcus/front.svg",
  18734. extra: 734 / 676,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Little",
  18742. height: math.unit(6, "feet")
  18743. },
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(110, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Macro",
  18751. height: math.unit(250, "feet")
  18752. },
  18753. {
  18754. name: "Megamacro",
  18755. height: math.unit(1000, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(7, "feet"),
  18764. weight: math.unit(275, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/claude-delroute/front.svg",
  18768. extra: 902/827,
  18769. bottom: 26/928
  18770. }
  18771. },
  18772. side: {
  18773. height: math.unit(7, "feet"),
  18774. weight: math.unit(275, "lb"),
  18775. name: "Side",
  18776. image: {
  18777. source: "./media/characters/claude-delroute/side.svg",
  18778. extra: 908/853,
  18779. bottom: 16/924
  18780. }
  18781. },
  18782. back: {
  18783. height: math.unit(7, "feet"),
  18784. weight: math.unit(275, "lb"),
  18785. name: "Back",
  18786. image: {
  18787. source: "./media/characters/claude-delroute/back.svg",
  18788. extra: 911/829,
  18789. bottom: 18/929
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(0.6407, "meters"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/claude-delroute/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(7, "feet"),
  18804. default: true
  18805. },
  18806. {
  18807. name: "Lorge",
  18808. height: math.unit(20, "feet")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(8 + 4 / 12, "feet"),
  18817. weight: math.unit(600, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/dragonien/front.svg",
  18821. extra: 100 / 94,
  18822. bottom: 3.3 / 103.3445
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(8 + 4 / 12, "feet"),
  18827. weight: math.unit(600, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/dragonien/back.svg",
  18831. extra: 776 / 746,
  18832. bottom: 6.4 / 782.0616
  18833. }
  18834. },
  18835. foot: {
  18836. height: math.unit(1.54, "feet"),
  18837. name: "Foot",
  18838. image: {
  18839. source: "./media/characters/dragonien/foot.svg",
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(8 + 4 / 12, "feet"),
  18847. default: true
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(200, "feet")
  18852. },
  18853. {
  18854. name: "Megamacro",
  18855. height: math.unit(1, "mile")
  18856. },
  18857. {
  18858. name: "Gigamacro",
  18859. height: math.unit(1000, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18865. {
  18866. front: {
  18867. height: math.unit(5 + 2 / 12, "feet"),
  18868. weight: math.unit(110, "lb"),
  18869. name: "Front",
  18870. image: {
  18871. source: "./media/characters/desta/front.svg",
  18872. extra: 767 / 726,
  18873. bottom: 11.7 / 779
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(5 + 2 / 12, "feet"),
  18878. weight: math.unit(110, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/desta/back.svg",
  18882. extra: 777 / 728,
  18883. bottom: 6 / 784
  18884. }
  18885. },
  18886. frontAlt: {
  18887. height: math.unit(5 + 2 / 12, "feet"),
  18888. weight: math.unit(110, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/desta/front-alt.svg",
  18892. extra: 1482 / 1417
  18893. }
  18894. },
  18895. side: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(110, "lb"),
  18898. name: "Side",
  18899. image: {
  18900. source: "./media/characters/desta/side.svg",
  18901. extra: 2579 / 2491,
  18902. bottom: 0.053
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Micro",
  18909. height: math.unit(6, "inches")
  18910. },
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(5 + 2 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(62, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1800, "feet")
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(10, "feet"),
  18931. weight: math.unit(700, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/storm-alystar/front.svg",
  18935. extra: 2112 / 1898,
  18936. bottom: 0.034
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Micro",
  18943. height: math.unit(3.5, "inches")
  18944. },
  18945. {
  18946. name: "Normal",
  18947. height: math.unit(10, "feet"),
  18948. default: true
  18949. },
  18950. {
  18951. name: "Macro",
  18952. height: math.unit(400, "feet")
  18953. },
  18954. {
  18955. name: "Deific",
  18956. height: math.unit(60, "miles")
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(2.35, "meters"),
  18965. weight: math.unit(119, "kg"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/ilia/front.svg",
  18969. extra: 1285 / 1255,
  18970. bottom: 0.06
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(2.35, "meters")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(140, "meters"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(100, "miles")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(6 + 5 / 12, "feet"),
  18995. weight: math.unit(190, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/kingdead/front.svg",
  18999. extra: 1228 / 1177
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Micro",
  19006. height: math.unit(7, "inches")
  19007. },
  19008. {
  19009. name: "Normal",
  19010. height: math.unit(6 + 5 / 12, "feet")
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(150, "feet"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Megamacro",
  19019. height: math.unit(200, "miles")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(8, "feet"),
  19028. weight: math.unit(600, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/kyrehx/front.svg",
  19032. extra: 1195 / 1095,
  19033. bottom: 0.034
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Micro",
  19040. height: math.unit(2, "inches")
  19041. },
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(8, "feet"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(255, "feet")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19058. weight: math.unit(184, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/xang/front.svg",
  19062. extra: 845 / 755
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(0.935 * 146, "feet")
  19075. },
  19076. {
  19077. name: "Megamacro",
  19078. height: math.unit(0.935 * 3, "miles")
  19079. },
  19080. ]
  19081. ))
  19082. characterMakers.push(() => makeCharacter(
  19083. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19084. {
  19085. frontDressed: {
  19086. height: math.unit(5 + 7 / 12, "feet"),
  19087. weight: math.unit(140, "lb"),
  19088. name: "Front (Dressed)",
  19089. image: {
  19090. source: "./media/characters/doc-weardno/front-dressed.svg",
  19091. extra: 263 / 234
  19092. }
  19093. },
  19094. backDressed: {
  19095. height: math.unit(5 + 7 / 12, "feet"),
  19096. weight: math.unit(140, "lb"),
  19097. name: "Back (Dressed)",
  19098. image: {
  19099. source: "./media/characters/doc-weardno/back-dressed.svg",
  19100. extra: 266 / 238
  19101. }
  19102. },
  19103. front: {
  19104. height: math.unit(5 + 7 / 12, "feet"),
  19105. weight: math.unit(140, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/doc-weardno/front.svg",
  19109. extra: 254 / 233
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Micro",
  19116. height: math.unit(3, "inches")
  19117. },
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(25, "feet")
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(2, "miles")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6 + 2 / 12, "feet"),
  19138. weight: math.unit(153, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/seth-whilst/front.svg",
  19142. bottom: 0.07
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(5, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(3, "inches"),
  19163. weight: math.unit(8, "grams"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/pocket-jabari/front.svg",
  19167. extra: 1024 / 974,
  19168. bottom: 0.039
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Minimicro",
  19175. height: math.unit(8, "mm")
  19176. },
  19177. {
  19178. name: "Micro",
  19179. height: math.unit(3, "inches"),
  19180. default: true
  19181. },
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(3, "feet")
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(15, "feet"),
  19193. weight: math.unit(3280, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/sapphy/front.svg",
  19197. extra: 671 / 577,
  19198. bottom: 0.085
  19199. }
  19200. },
  19201. back: {
  19202. height: math.unit(15, "feet"),
  19203. weight: math.unit(3280, "lb"),
  19204. name: "Back",
  19205. image: {
  19206. source: "./media/characters/sapphy/back.svg",
  19207. extra: 631 / 607,
  19208. bottom: 0.045
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(15, "feet")
  19216. },
  19217. {
  19218. name: "Casual Macro",
  19219. height: math.unit(120, "feet")
  19220. },
  19221. {
  19222. name: "Macro",
  19223. height: math.unit(2150, "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Megamacro",
  19228. height: math.unit(8, "miles")
  19229. },
  19230. {
  19231. name: "Galaxy Mom",
  19232. height: math.unit(6, "megalightyears")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(6, "feet"),
  19241. weight: math.unit(170, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/kiro/front.svg",
  19245. extra: 1064 / 1012,
  19246. bottom: 0.052
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Micro",
  19253. height: math.unit(6, "inches")
  19254. },
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(6, "feet"),
  19258. default: true
  19259. },
  19260. {
  19261. name: "Macro",
  19262. height: math.unit(72, "feet")
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19268. {
  19269. front: {
  19270. height: math.unit(5 + 9 / 12, "feet"),
  19271. weight: math.unit(175, "lb"),
  19272. name: "Front",
  19273. image: {
  19274. source: "./media/characters/irishfox/front.svg",
  19275. extra: 1912 / 1680,
  19276. bottom: 0.02
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Nano",
  19283. height: math.unit(1, "mm")
  19284. },
  19285. {
  19286. name: "Micro",
  19287. height: math.unit(2, "inches")
  19288. },
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 9 / 12, "feet"),
  19292. default: true
  19293. },
  19294. {
  19295. name: "Macro",
  19296. height: math.unit(45, "feet")
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 1 / 12, "feet"),
  19305. weight: math.unit(75, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/aronai-sieyes/front.svg",
  19309. extra: 1532/1450,
  19310. bottom: 42/1574
  19311. }
  19312. },
  19313. side: {
  19314. height: math.unit(6 + 1 / 12, "feet"),
  19315. weight: math.unit(75, "lb"),
  19316. name: "Side",
  19317. image: {
  19318. source: "./media/characters/aronai-sieyes/side.svg",
  19319. extra: 1422/1365,
  19320. bottom: 148/1570
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(6 + 1 / 12, "feet"),
  19325. weight: math.unit(75, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/aronai-sieyes/back.svg",
  19329. extra: 1526/1464,
  19330. bottom: 51/1577
  19331. }
  19332. },
  19333. dressed: {
  19334. height: math.unit(6 + 1 / 12, "feet"),
  19335. weight: math.unit(75, "lb"),
  19336. name: "Dressed",
  19337. image: {
  19338. source: "./media/characters/aronai-sieyes/dressed.svg",
  19339. extra: 1559/1483,
  19340. bottom: 39/1598
  19341. }
  19342. },
  19343. slit: {
  19344. height: math.unit(1.3, "feet"),
  19345. name: "Slit",
  19346. image: {
  19347. source: "./media/characters/aronai-sieyes/slit.svg"
  19348. }
  19349. },
  19350. slitSpread: {
  19351. height: math.unit(0.9, "feet"),
  19352. name: "Slit (Spread)",
  19353. image: {
  19354. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19355. }
  19356. },
  19357. rump: {
  19358. height: math.unit(1.3, "feet"),
  19359. name: "Rump",
  19360. image: {
  19361. source: "./media/characters/aronai-sieyes/rump.svg"
  19362. }
  19363. },
  19364. maw: {
  19365. height: math.unit(1.25, "feet"),
  19366. name: "Maw",
  19367. image: {
  19368. source: "./media/characters/aronai-sieyes/maw.svg"
  19369. }
  19370. },
  19371. feral: {
  19372. height: math.unit(18, "feet"),
  19373. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19374. name: "Feral",
  19375. image: {
  19376. source: "./media/characters/aronai-sieyes/feral.svg",
  19377. extra: 1530 / 1240,
  19378. bottom: 0.035
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Micro",
  19385. height: math.unit(2, "inches")
  19386. },
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(6 + 1 / 12, "feet"),
  19390. default: true
  19391. }
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19396. {
  19397. front: {
  19398. height: math.unit(12, "feet"),
  19399. weight: math.unit(410, "kg"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/xuna/front.svg",
  19403. extra: 2184 / 1980
  19404. }
  19405. },
  19406. side: {
  19407. height: math.unit(12, "feet"),
  19408. weight: math.unit(410, "kg"),
  19409. name: "Side",
  19410. image: {
  19411. source: "./media/characters/xuna/side.svg",
  19412. extra: 2184 / 1980
  19413. }
  19414. },
  19415. back: {
  19416. height: math.unit(12, "feet"),
  19417. weight: math.unit(410, "kg"),
  19418. name: "Back",
  19419. image: {
  19420. source: "./media/characters/xuna/back.svg",
  19421. extra: 2184 / 1980
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Nano glow",
  19428. height: math.unit(10, "nm")
  19429. },
  19430. {
  19431. name: "Micro floof",
  19432. height: math.unit(0.3, "m")
  19433. },
  19434. {
  19435. name: "Huggable softy boi",
  19436. height: math.unit(3.6576, "m"),
  19437. default: true
  19438. },
  19439. {
  19440. name: "Admirable floof",
  19441. height: math.unit(80, "meters")
  19442. },
  19443. {
  19444. name: "Gentle macro",
  19445. height: math.unit(300, "meters")
  19446. },
  19447. {
  19448. name: "Very careful floof",
  19449. height: math.unit(3200, "meters")
  19450. },
  19451. {
  19452. name: "The mega floof",
  19453. height: math.unit(36000, "meters")
  19454. },
  19455. {
  19456. name: "Giga-fur-Wicker",
  19457. height: math.unit(4800000, "meters")
  19458. },
  19459. {
  19460. name: "Licky world",
  19461. height: math.unit(20000000, "meters")
  19462. },
  19463. {
  19464. name: "Floofy cyan sun",
  19465. height: math.unit(1500000000, "meters")
  19466. },
  19467. {
  19468. name: "Milky Wicker",
  19469. height: math.unit(1000000000000000000000, "meters")
  19470. },
  19471. {
  19472. name: "The observing Wicker",
  19473. height: math.unit(999999999999999999999999999, "meters")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(5 + 9 / 12, "feet"),
  19482. weight: math.unit(150, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/arokha-sieyes/front.svg",
  19486. extra: 1425 / 1284,
  19487. bottom: 0.05
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(5 + 9 / 12, "feet")
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(30, "meters"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(6, "feet"),
  19508. weight: math.unit(180, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/arokh-sieyes/front.svg",
  19512. extra: 1830 / 1769,
  19513. bottom: 0.01
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(6, "feet")
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(30, "meters"),
  19525. default: true
  19526. },
  19527. ]
  19528. ))
  19529. characterMakers.push(() => makeCharacter(
  19530. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19531. {
  19532. side: {
  19533. height: math.unit(13 + 1 / 12, "feet"),
  19534. weight: math.unit(8.5, "tonnes"),
  19535. name: "Side",
  19536. image: {
  19537. source: "./media/characters/goldeneye/side.svg",
  19538. extra: 1182 / 778,
  19539. bottom: 0.067
  19540. }
  19541. },
  19542. paw: {
  19543. height: math.unit(3.4, "feet"),
  19544. name: "Paw",
  19545. image: {
  19546. source: "./media/characters/goldeneye/paw.svg"
  19547. }
  19548. },
  19549. },
  19550. [
  19551. {
  19552. name: "Normal",
  19553. height: math.unit(13 + 1 / 12, "feet"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19560. {
  19561. front: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(210, "lb"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/leonardo-lycheborne/front.svg",
  19567. extra: 776/723,
  19568. bottom: 34/810
  19569. }
  19570. },
  19571. side: {
  19572. height: math.unit(6 + 1 / 12, "feet"),
  19573. weight: math.unit(210, "lb"),
  19574. name: "Side",
  19575. image: {
  19576. source: "./media/characters/leonardo-lycheborne/side.svg",
  19577. extra: 780/728,
  19578. bottom: 12/792
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(210, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/leonardo-lycheborne/back.svg",
  19587. extra: 775/721,
  19588. bottom: 17/792
  19589. }
  19590. },
  19591. hand: {
  19592. height: math.unit(1.08, "feet"),
  19593. name: "Hand",
  19594. image: {
  19595. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19596. }
  19597. },
  19598. foot: {
  19599. height: math.unit(1.32, "feet"),
  19600. name: "Foot",
  19601. image: {
  19602. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19603. }
  19604. },
  19605. maw: {
  19606. height: math.unit(1, "feet"),
  19607. name: "Maw",
  19608. image: {
  19609. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19610. }
  19611. },
  19612. were: {
  19613. height: math.unit(20, "feet"),
  19614. weight: math.unit(7800, "lb"),
  19615. name: "Were",
  19616. image: {
  19617. source: "./media/characters/leonardo-lycheborne/were.svg",
  19618. extra: 1224/1165,
  19619. bottom: 72/1296
  19620. }
  19621. },
  19622. feral: {
  19623. height: math.unit(7.5, "feet"),
  19624. weight: math.unit(600, "lb"),
  19625. name: "Feral",
  19626. image: {
  19627. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19628. extra: 797/702,
  19629. bottom: 139/936
  19630. }
  19631. },
  19632. taur: {
  19633. height: math.unit(11, "feet"),
  19634. weight: math.unit(3300, "lb"),
  19635. name: "Taur",
  19636. image: {
  19637. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19638. extra: 1271/1197,
  19639. bottom: 47/1318
  19640. }
  19641. },
  19642. barghest: {
  19643. height: math.unit(11, "feet"),
  19644. weight: math.unit(1300, "lb"),
  19645. name: "Barghest",
  19646. image: {
  19647. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19648. extra: 1291/1204,
  19649. bottom: 37/1328
  19650. }
  19651. },
  19652. dick: {
  19653. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19654. name: "Dick",
  19655. image: {
  19656. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19657. }
  19658. },
  19659. dickWere: {
  19660. height: math.unit((20) / 3.8, "feet"),
  19661. name: "Dick (Were)",
  19662. image: {
  19663. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(6 + 1 / 12, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(10, "feet"),
  19680. weight: math.unit(350, "lb"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/jet/front.svg",
  19684. extra: 2050 / 1980,
  19685. bottom: 0.013
  19686. }
  19687. },
  19688. back: {
  19689. height: math.unit(10, "feet"),
  19690. weight: math.unit(350, "lb"),
  19691. name: "Back",
  19692. image: {
  19693. source: "./media/characters/jet/back.svg",
  19694. extra: 2050 / 1980,
  19695. bottom: 0.013
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Micro",
  19702. height: math.unit(6, "inches")
  19703. },
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(10, "feet"),
  19707. default: true
  19708. },
  19709. {
  19710. name: "Macro",
  19711. height: math.unit(100, "feet")
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(15, "feet"),
  19720. weight: math.unit(2800, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/tanarath/front.svg",
  19724. extra: 2392 / 2220,
  19725. bottom: 0.03
  19726. }
  19727. },
  19728. back: {
  19729. height: math.unit(15, "feet"),
  19730. weight: math.unit(2800, "lb"),
  19731. name: "Back",
  19732. image: {
  19733. source: "./media/characters/tanarath/back.svg",
  19734. extra: 2392 / 2220,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(15, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(7 + 1 / 12, "feet"),
  19752. weight: math.unit(175, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/patty-cattybatty/front.svg",
  19756. extra: 908 / 874,
  19757. bottom: 0.025
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Micro",
  19764. height: math.unit(1, "inch")
  19765. },
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(7 + 1 / 12, "feet")
  19769. },
  19770. {
  19771. name: "Mini Macro",
  19772. height: math.unit(155, "feet")
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(1077, "feet")
  19777. },
  19778. {
  19779. name: "Mega Macro",
  19780. height: math.unit(47650, "feet"),
  19781. default: true
  19782. },
  19783. {
  19784. name: "Giga Macro",
  19785. height: math.unit(440, "miles")
  19786. },
  19787. {
  19788. name: "Tera Macro",
  19789. height: math.unit(8700, "miles")
  19790. },
  19791. {
  19792. name: "Planetary Macro",
  19793. height: math.unit(32700, "miles")
  19794. },
  19795. {
  19796. name: "Solar Macro",
  19797. height: math.unit(550000, "miles")
  19798. },
  19799. {
  19800. name: "Celestial Macro",
  19801. height: math.unit(2.5, "AU")
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(4 + 5 / 12, "feet"),
  19810. weight: math.unit(90, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/cappu/front.svg",
  19814. extra: 1247 / 1152,
  19815. bottom: 0.012
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(4 + 5 / 12, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19829. {
  19830. frontDressed: {
  19831. height: math.unit(70, "cm"),
  19832. weight: math.unit(6, "kg"),
  19833. name: "Front (Dressed)",
  19834. image: {
  19835. source: "./media/characters/sebi/front-dressed.svg",
  19836. extra: 713.5 / 686.5,
  19837. bottom: 0.003
  19838. }
  19839. },
  19840. front: {
  19841. height: math.unit(70, "cm"),
  19842. weight: math.unit(5, "kg"),
  19843. name: "Front",
  19844. image: {
  19845. source: "./media/characters/sebi/front.svg",
  19846. extra: 713.5 / 686.5,
  19847. bottom: 0.003
  19848. }
  19849. }
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(70, "cm"),
  19855. default: true
  19856. },
  19857. {
  19858. name: "Macro",
  19859. height: math.unit(8, "meters")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/typhek/front.svg",
  19872. extra: 1948 / 1929,
  19873. bottom: 0.025
  19874. }
  19875. },
  19876. side: {
  19877. height: math.unit(6, "feet"),
  19878. weight: math.unit(150, "lb"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/typhek/side.svg",
  19882. extra: 2034 / 2010,
  19883. bottom: 0.003
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(6, "feet"),
  19888. weight: math.unit(150, "lb"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/typhek/back.svg",
  19892. extra: 2005 / 1978,
  19893. bottom: 0.004
  19894. }
  19895. },
  19896. palm: {
  19897. height: math.unit(1.2, "feet"),
  19898. name: "Palm",
  19899. image: {
  19900. source: "./media/characters/typhek/palm.svg"
  19901. }
  19902. },
  19903. fist: {
  19904. height: math.unit(1.1, "feet"),
  19905. name: "Fist",
  19906. image: {
  19907. source: "./media/characters/typhek/fist.svg"
  19908. }
  19909. },
  19910. foot: {
  19911. height: math.unit(1.57, "feet"),
  19912. name: "Foot",
  19913. image: {
  19914. source: "./media/characters/typhek/foot.svg"
  19915. }
  19916. },
  19917. sole: {
  19918. height: math.unit(2.05, "feet"),
  19919. name: "Sole",
  19920. image: {
  19921. source: "./media/characters/typhek/sole.svg"
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Macro",
  19928. height: math.unit(40, "stories"),
  19929. default: true
  19930. },
  19931. {
  19932. name: "Megamacro",
  19933. height: math.unit(1, "mile")
  19934. },
  19935. {
  19936. name: "Gigamacro",
  19937. height: math.unit(4000, "solarradii")
  19938. },
  19939. {
  19940. name: "Universal",
  19941. height: math.unit(1.1, "universes")
  19942. }
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19947. {
  19948. side: {
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. weight: math.unit(150, "lb"),
  19951. name: "Side",
  19952. image: {
  19953. source: "./media/characters/kassy/side.svg",
  19954. extra: 1280 / 1225,
  19955. bottom: 0.002
  19956. }
  19957. },
  19958. front: {
  19959. height: math.unit(5 + 7 / 12, "feet"),
  19960. weight: math.unit(150, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/kassy/front.svg",
  19964. extra: 1280 / 1225,
  19965. bottom: 0.025
  19966. }
  19967. },
  19968. back: {
  19969. height: math.unit(5 + 7 / 12, "feet"),
  19970. weight: math.unit(150, "lb"),
  19971. name: "Back",
  19972. image: {
  19973. source: "./media/characters/kassy/back.svg",
  19974. extra: 1280 / 1225,
  19975. bottom: 0.002
  19976. }
  19977. },
  19978. foot: {
  19979. height: math.unit(1.266, "feet"),
  19980. name: "Foot",
  19981. image: {
  19982. source: "./media/characters/kassy/foot.svg"
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 7 / 12, "feet")
  19990. },
  19991. {
  19992. name: "Macro",
  19993. height: math.unit(137, "feet"),
  19994. default: true
  19995. },
  19996. {
  19997. name: "Megamacro",
  19998. height: math.unit(1, "mile")
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(6 + 1 / 12, "feet"),
  20007. weight: math.unit(200, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/neil/front.svg",
  20011. extra: 1326 / 1250,
  20012. bottom: 0.023
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(6 + 1 / 12, "feet"),
  20020. default: true
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(200, "feet")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(5 + 9 / 12, "feet"),
  20033. weight: math.unit(190, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/atticus/front.svg",
  20037. extra: 2934 / 2785,
  20038. bottom: 0.025
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(5 + 9 / 12, "feet"),
  20046. default: true
  20047. },
  20048. {
  20049. name: "Macro",
  20050. height: math.unit(180, "feet")
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20056. {
  20057. side: {
  20058. height: math.unit(9, "feet"),
  20059. weight: math.unit(650, "lb"),
  20060. name: "Side",
  20061. image: {
  20062. source: "./media/characters/milo/side.svg",
  20063. extra: 2644 / 2310,
  20064. bottom: 0.032
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(9, "feet"),
  20072. default: true
  20073. },
  20074. {
  20075. name: "Macro",
  20076. height: math.unit(300, "feet")
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20082. {
  20083. side: {
  20084. height: math.unit(8, "meters"),
  20085. weight: math.unit(90000, "kg"),
  20086. name: "Side",
  20087. image: {
  20088. source: "./media/characters/ijzer/side.svg",
  20089. extra: 2756 / 1600,
  20090. bottom: 0.01
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Small",
  20097. height: math.unit(3, "meters")
  20098. },
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(8, "meters"),
  20102. default: true
  20103. },
  20104. {
  20105. name: "Normal+",
  20106. height: math.unit(10, "meters")
  20107. },
  20108. {
  20109. name: "Bigger",
  20110. height: math.unit(24, "meters")
  20111. },
  20112. {
  20113. name: "Huge",
  20114. height: math.unit(80, "meters")
  20115. },
  20116. ]
  20117. ))
  20118. characterMakers.push(() => makeCharacter(
  20119. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20120. {
  20121. front: {
  20122. height: math.unit(6 + 2 / 12, "feet"),
  20123. weight: math.unit(153, "lb"),
  20124. name: "Front",
  20125. image: {
  20126. source: "./media/characters/luca-cervicum/front.svg",
  20127. extra: 370 / 327,
  20128. bottom: 0.015
  20129. }
  20130. },
  20131. back: {
  20132. height: math.unit(6 + 2 / 12, "feet"),
  20133. weight: math.unit(153, "lb"),
  20134. name: "Back",
  20135. image: {
  20136. source: "./media/characters/luca-cervicum/back.svg",
  20137. extra: 367 / 333,
  20138. bottom: 0.005
  20139. }
  20140. },
  20141. frontGear: {
  20142. height: math.unit(6 + 2 / 12, "feet"),
  20143. weight: math.unit(173, "lb"),
  20144. name: "Front (Gear)",
  20145. image: {
  20146. source: "./media/characters/luca-cervicum/front-gear.svg",
  20147. extra: 377 / 333,
  20148. bottom: 0.006
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(6 + 2 / 12, "feet"),
  20156. default: true
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(6 + 1 / 12, "feet"),
  20165. weight: math.unit(304, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/oliver/front.svg",
  20169. extra: 157 / 143,
  20170. bottom: 0.08
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 1 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 7 / 12, "feet"),
  20187. weight: math.unit(140, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/shane/front.svg",
  20191. extra: 304 / 289,
  20192. bottom: 0.005
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 7 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(5 + 9 / 12, "feet"),
  20209. weight: math.unit(178, "lb"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/shin/front.svg",
  20213. extra: 159 / 151,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 9 / 12, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20228. {
  20229. front: {
  20230. height: math.unit(5 + 10 / 12, "feet"),
  20231. weight: math.unit(168, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/xerxes/front.svg",
  20235. extra: 282 / 260,
  20236. bottom: 0.045
  20237. }
  20238. },
  20239. },
  20240. [
  20241. {
  20242. name: "Normal",
  20243. height: math.unit(5 + 10 / 12, "feet"),
  20244. default: true
  20245. },
  20246. ]
  20247. ))
  20248. characterMakers.push(() => makeCharacter(
  20249. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20250. {
  20251. front: {
  20252. height: math.unit(6 + 7 / 12, "feet"),
  20253. weight: math.unit(208, "lb"),
  20254. name: "Front",
  20255. image: {
  20256. source: "./media/characters/chaska/front.svg",
  20257. extra: 332 / 319,
  20258. bottom: 0.015
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(6 + 7 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20272. {
  20273. front: {
  20274. height: math.unit(5 + 8 / 12, "feet"),
  20275. weight: math.unit(208, "lb"),
  20276. name: "Front",
  20277. image: {
  20278. source: "./media/characters/enuk/front.svg",
  20279. extra: 437 / 406,
  20280. bottom: 0.02
  20281. }
  20282. },
  20283. },
  20284. [
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(5 + 8 / 12, "feet"),
  20288. default: true
  20289. },
  20290. ]
  20291. ))
  20292. characterMakers.push(() => makeCharacter(
  20293. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20294. {
  20295. front: {
  20296. height: math.unit(5 + 10 / 12, "feet"),
  20297. weight: math.unit(252, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/bruun/front.svg",
  20301. extra: 197 / 187,
  20302. bottom: 0.012
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(5 + 10 / 12, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(6 + 10 / 12, "feet"),
  20319. weight: math.unit(255, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/alexeev/front.svg",
  20323. extra: 213 / 200,
  20324. bottom: 0.05
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(6 + 10 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(2 + 8 / 12, "feet"),
  20341. weight: math.unit(22, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/evelyn/front.svg",
  20345. extra: 208 / 180
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(2 + 8 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(5 + 9 / 12, "feet"),
  20362. weight: math.unit(139, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/inca/front.svg",
  20366. extra: 294 / 291,
  20367. bottom: 0.03
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(5 + 9 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(6 + 3 / 12, "feet"),
  20384. weight: math.unit(185, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/mera/front.svg",
  20388. extra: 291 / 277,
  20389. bottom: 0.03
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(6 + 3 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(6 + 7 / 12, "feet"),
  20406. weight: math.unit(160, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/ceres/front.svg",
  20410. extra: 1023 / 950,
  20411. bottom: 0.027
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(6 + 7 / 12, "feet"),
  20416. weight: math.unit(160, "lb"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/ceres/back.svg",
  20420. extra: 1023 / 950
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(6 + 7 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5 + 10 / 12, "feet"),
  20437. weight: math.unit(150, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/kris/front.svg",
  20441. extra: 885 / 803,
  20442. bottom: 0.03
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5 + 10 / 12, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(7, "feet"),
  20459. weight: math.unit(120, "kg"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/taluthus/front.svg",
  20463. extra: 903 / 833,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(7, "feet"),
  20472. default: true
  20473. },
  20474. {
  20475. name: "Macro",
  20476. height: math.unit(300, "feet")
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(5 + 9 / 12, "feet"),
  20485. weight: math.unit(145, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/dawn/front.svg",
  20489. extra: 2094 / 2016,
  20490. bottom: 0.025
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(5 + 9 / 12, "feet"),
  20495. weight: math.unit(160, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/dawn/back.svg",
  20499. extra: 2112 / 2080,
  20500. bottom: 0.005
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Normal",
  20507. height: math.unit(6 + 7 / 12, "feet"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20514. {
  20515. anthro: {
  20516. height: math.unit(8 + 3 / 12, "feet"),
  20517. weight: math.unit(450, "lb"),
  20518. name: "Anthro",
  20519. image: {
  20520. source: "./media/characters/arador/anthro.svg",
  20521. extra: 1835 / 1718,
  20522. bottom: 0.025
  20523. }
  20524. },
  20525. feral: {
  20526. height: math.unit(4, "feet"),
  20527. weight: math.unit(200, "lb"),
  20528. name: "Feral",
  20529. image: {
  20530. source: "./media/characters/arador/feral.svg",
  20531. extra: 1683 / 1514,
  20532. bottom: 0.07
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(8 + 3 / 12, "feet")
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(82.5, "feet"),
  20544. default: true
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(5 + 10 / 12, "feet"),
  20553. weight: math.unit(125, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/dharsi/front.svg",
  20557. extra: 716 / 630,
  20558. bottom: 0.035
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Nano",
  20565. height: math.unit(100, "nm")
  20566. },
  20567. {
  20568. name: "Micro",
  20569. height: math.unit(2, "inches")
  20570. },
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(5 + 10 / 12, "feet"),
  20574. default: true
  20575. },
  20576. {
  20577. name: "Macro",
  20578. height: math.unit(1000, "feet")
  20579. },
  20580. {
  20581. name: "Megamacro",
  20582. height: math.unit(10, "miles")
  20583. },
  20584. {
  20585. name: "Gigamacro",
  20586. height: math.unit(3000, "miles")
  20587. },
  20588. {
  20589. name: "Teramacro",
  20590. height: math.unit(500000, "miles")
  20591. },
  20592. {
  20593. name: "Teramacro+",
  20594. height: math.unit(30, "galaxies")
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(6, "feet"),
  20603. weight: math.unit(150, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/deathy/front.svg",
  20607. extra: 1552 / 1463,
  20608. bottom: 0.025
  20609. }
  20610. },
  20611. side: {
  20612. height: math.unit(6, "feet"),
  20613. weight: math.unit(150, "lb"),
  20614. name: "Side",
  20615. image: {
  20616. source: "./media/characters/deathy/side.svg",
  20617. extra: 1604 / 1455,
  20618. bottom: 0.025
  20619. }
  20620. },
  20621. back: {
  20622. height: math.unit(6, "feet"),
  20623. weight: math.unit(150, "lb"),
  20624. name: "Back",
  20625. image: {
  20626. source: "./media/characters/deathy/back.svg",
  20627. extra: 1580 / 1463,
  20628. bottom: 0.005
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "Micro",
  20635. height: math.unit(5, "millimeters")
  20636. },
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(6 + 5 / 12, "feet"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20646. {
  20647. front: {
  20648. height: math.unit(16, "feet"),
  20649. weight: math.unit(4000, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/juniper/front.svg",
  20653. bottom: 0.04
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(16, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(6, "feet"),
  20670. weight: math.unit(150, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/hipster/front.svg",
  20674. extra: 1312 / 1209,
  20675. bottom: 0.025
  20676. }
  20677. },
  20678. back: {
  20679. height: math.unit(6, "feet"),
  20680. weight: math.unit(150, "lb"),
  20681. name: "Back",
  20682. image: {
  20683. source: "./media/characters/hipster/back.svg",
  20684. extra: 1281 / 1196,
  20685. bottom: 0.01
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Micro",
  20692. height: math.unit(1, "mm")
  20693. },
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(4, "inches"),
  20697. default: true
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(500, "feet")
  20702. },
  20703. {
  20704. name: "Megamacro",
  20705. height: math.unit(1000, "miles")
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(6, "feet"),
  20714. weight: math.unit(150, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/tendirmuldr/front.svg",
  20718. extra: 1878 / 1772,
  20719. bottom: 0.015
  20720. }
  20721. },
  20722. },
  20723. [
  20724. {
  20725. name: "Megamacro",
  20726. height: math.unit(1500, "miles"),
  20727. default: true
  20728. },
  20729. ]
  20730. ))
  20731. characterMakers.push(() => makeCharacter(
  20732. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20733. {
  20734. front: {
  20735. height: math.unit(14, "feet"),
  20736. weight: math.unit(12000, "lb"),
  20737. name: "Front",
  20738. image: {
  20739. source: "./media/characters/mort/front.svg",
  20740. extra: 365 / 318,
  20741. bottom: 0.01
  20742. }
  20743. },
  20744. side: {
  20745. height: math.unit(14, "feet"),
  20746. weight: math.unit(12000, "lb"),
  20747. name: "Side",
  20748. image: {
  20749. source: "./media/characters/mort/side.svg",
  20750. extra: 365 / 318,
  20751. bottom: 0.052
  20752. },
  20753. default: true
  20754. },
  20755. back: {
  20756. height: math.unit(14, "feet"),
  20757. weight: math.unit(12000, "lb"),
  20758. name: "Back",
  20759. image: {
  20760. source: "./media/characters/mort/back.svg",
  20761. extra: 371 / 332,
  20762. bottom: 0.18
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(14, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20776. {
  20777. front: {
  20778. height: math.unit(8, "feet"),
  20779. weight: math.unit(1, "ton"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/lycoa/front.svg",
  20783. extra: 1836/1728,
  20784. bottom: 81/1917
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(8, "feet"),
  20789. weight: math.unit(1, "ton"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/lycoa/back.svg",
  20793. extra: 1785/1720,
  20794. bottom: 91/1876
  20795. }
  20796. },
  20797. head: {
  20798. height: math.unit(1.6243, "feet"),
  20799. name: "Head",
  20800. image: {
  20801. source: "./media/characters/lycoa/head.svg",
  20802. extra: 1011/782,
  20803. bottom: 0/1011
  20804. }
  20805. },
  20806. tailmaw: {
  20807. height: math.unit(1.9, "feet"),
  20808. name: "Tailmaw",
  20809. image: {
  20810. source: "./media/characters/lycoa/tailmaw.svg"
  20811. }
  20812. },
  20813. tentacles: {
  20814. height: math.unit(2.1, "feet"),
  20815. name: "Tentacles",
  20816. image: {
  20817. source: "./media/characters/lycoa/tentacles.svg"
  20818. }
  20819. },
  20820. dick: {
  20821. height: math.unit(1.73, "feet"),
  20822. name: "Dick",
  20823. image: {
  20824. source: "./media/characters/lycoa/dick.svg"
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(8, "feet"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Macro",
  20836. height: math.unit(30, "feet")
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20842. {
  20843. front: {
  20844. height: math.unit(4 + 2 / 12, "feet"),
  20845. weight: math.unit(70, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/naldara/front.svg",
  20849. extra: 1664/1387,
  20850. bottom: 81/1745
  20851. },
  20852. form: "anthro",
  20853. default: true
  20854. },
  20855. naga: {
  20856. height: math.unit(20, "feet"),
  20857. weight: math.unit(15000, "kg"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/naldara/naga.svg",
  20861. extra: 1590/1396,
  20862. bottom: 285/1875
  20863. },
  20864. form: "naga",
  20865. default: true
  20866. },
  20867. },
  20868. [
  20869. {
  20870. name: "Normal",
  20871. height: math.unit(4 + 2 / 12, "feet"),
  20872. form: "anthro",
  20873. default: true
  20874. },
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(20, "feet"),
  20878. form: "naga",
  20879. default: true
  20880. },
  20881. ],
  20882. {
  20883. "anthro": {
  20884. name: "Anthro",
  20885. default: true
  20886. },
  20887. "naga": {
  20888. name: "Naga"
  20889. }
  20890. }
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(13 + 7 / 12, "feet"),
  20897. weight: math.unit(1500, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/briar/front.svg",
  20901. extra: 1223/1157,
  20902. bottom: 123/1346
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(13 + 7 / 12, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20916. {
  20917. side: {
  20918. height: math.unit(16, "feet"),
  20919. weight: math.unit(500, "lb"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/vanguard/side.svg",
  20923. extra: 1022/914,
  20924. bottom: 30/1052
  20925. }
  20926. },
  20927. sideAlt: {
  20928. height: math.unit(10, "feet"),
  20929. weight: math.unit(500, "lb"),
  20930. name: "Side (Alt)",
  20931. image: {
  20932. source: "./media/characters/vanguard/side-alt.svg",
  20933. extra: 502 / 425,
  20934. bottom: 0.087
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(17.71, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(7.5, "feet"),
  20951. weight: math.unit(2, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/artemis/work-safe-front.svg",
  20955. extra: 1192 / 1075,
  20956. bottom: 0.07
  20957. },
  20958. form: "work-safe",
  20959. default: true
  20960. },
  20961. frontNsfw: {
  20962. height: math.unit(7.5, "feet"),
  20963. weight: math.unit(2, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/artemis/calibrating-front.svg",
  20967. extra: 1192 / 1075,
  20968. bottom: 0.07
  20969. },
  20970. form: "calibrating",
  20971. default: true
  20972. },
  20973. frontNsfwer: {
  20974. height: math.unit(7.5, "feet"),
  20975. weight: math.unit(2, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/artemis/oversize-load-front.svg",
  20979. extra: 1192 / 1075,
  20980. bottom: 0.07
  20981. },
  20982. form: "oversize-load",
  20983. default: true
  20984. },
  20985. side: {
  20986. height: math.unit(7.5, "feet"),
  20987. weight: math.unit(2, "lb"),
  20988. name: "Side",
  20989. image: {
  20990. source: "./media/characters/artemis/work-safe-side.svg",
  20991. extra: 1192 / 1075,
  20992. bottom: 0.07
  20993. },
  20994. form: "work-safe"
  20995. },
  20996. sideNsfw: {
  20997. height: math.unit(7.5, "feet"),
  20998. weight: math.unit(2, "lb"),
  20999. name: "Side",
  21000. image: {
  21001. source: "./media/characters/artemis/calibrating-side.svg",
  21002. extra: 1192 / 1075,
  21003. bottom: 0.07
  21004. },
  21005. form: "calibrating"
  21006. },
  21007. sideNsfwer: {
  21008. height: math.unit(7.5, "feet"),
  21009. weight: math.unit(2, "lb"),
  21010. name: "Side",
  21011. image: {
  21012. source: "./media/characters/artemis/oversize-load-side.svg",
  21013. extra: 1192 / 1075,
  21014. bottom: 0.07
  21015. },
  21016. form: "oversize-load"
  21017. },
  21018. maw: {
  21019. height: math.unit(1.1, "feet"),
  21020. name: "Maw",
  21021. image: {
  21022. source: "./media/characters/artemis/maw.svg"
  21023. },
  21024. form: "work-safe"
  21025. },
  21026. stomach: {
  21027. height: math.unit(0.95, "feet"),
  21028. name: "Stomach",
  21029. image: {
  21030. source: "./media/characters/artemis/stomach.svg"
  21031. },
  21032. form: "work-safe"
  21033. },
  21034. dickCanine: {
  21035. height: math.unit(1, "feet"),
  21036. name: "Dick (Canine)",
  21037. image: {
  21038. source: "./media/characters/artemis/dick-canine.svg"
  21039. },
  21040. form: "calibrating"
  21041. },
  21042. dickEquine: {
  21043. height: math.unit(0.85, "feet"),
  21044. name: "Dick (Equine)",
  21045. image: {
  21046. source: "./media/characters/artemis/dick-equine.svg"
  21047. },
  21048. form: "calibrating"
  21049. },
  21050. dickExotic: {
  21051. height: math.unit(0.85, "feet"),
  21052. name: "Dick (Exotic)",
  21053. image: {
  21054. source: "./media/characters/artemis/dick-exotic.svg"
  21055. },
  21056. form: "calibrating"
  21057. },
  21058. dickCanineBigger: {
  21059. height: math.unit(1 * 1.33, "feet"),
  21060. name: "Dick (Canine)",
  21061. image: {
  21062. source: "./media/characters/artemis/dick-canine.svg"
  21063. },
  21064. form: "oversize-load"
  21065. },
  21066. dickEquineBigger: {
  21067. height: math.unit(0.85 * 1.33, "feet"),
  21068. name: "Dick (Equine)",
  21069. image: {
  21070. source: "./media/characters/artemis/dick-equine.svg"
  21071. },
  21072. form: "oversize-load"
  21073. },
  21074. dickExoticBigger: {
  21075. height: math.unit(0.85 * 1.33, "feet"),
  21076. name: "Dick (Exotic)",
  21077. image: {
  21078. source: "./media/characters/artemis/dick-exotic.svg"
  21079. },
  21080. form: "oversize-load"
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "Normal",
  21086. height: math.unit(7.5, "feet"),
  21087. form: "work-safe",
  21088. default: true
  21089. },
  21090. {
  21091. name: "Normal",
  21092. height: math.unit(7.5, "feet"),
  21093. form: "calibrating",
  21094. default: true
  21095. },
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(7.5, "feet"),
  21099. form: "oversize-load",
  21100. default: true
  21101. },
  21102. {
  21103. name: "Enlarged",
  21104. height: math.unit(12, "feet"),
  21105. form: "work-safe",
  21106. },
  21107. {
  21108. name: "Enlarged",
  21109. height: math.unit(12, "feet"),
  21110. form: "calibrating",
  21111. },
  21112. {
  21113. name: "Enlarged",
  21114. height: math.unit(12, "feet"),
  21115. form: "oversize-load",
  21116. },
  21117. ],
  21118. {
  21119. "work-safe": {
  21120. name: "Work-Safe",
  21121. default: true
  21122. },
  21123. "calibrating": {
  21124. name: "Calibrating"
  21125. },
  21126. "oversize-load": {
  21127. name: "Oversize Load"
  21128. }
  21129. }
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(5 + 3 / 12, "feet"),
  21136. weight: math.unit(160, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/kira/front.svg",
  21140. extra: 906 / 786,
  21141. bottom: 0.01
  21142. }
  21143. },
  21144. back: {
  21145. height: math.unit(5 + 3 / 12, "feet"),
  21146. weight: math.unit(160, "lb"),
  21147. name: "Back",
  21148. image: {
  21149. source: "./media/characters/kira/back.svg",
  21150. extra: 882 / 757,
  21151. bottom: 0.005
  21152. }
  21153. },
  21154. frontDressed: {
  21155. height: math.unit(5 + 3 / 12, "feet"),
  21156. weight: math.unit(160, "lb"),
  21157. name: "Front (Dressed)",
  21158. image: {
  21159. source: "./media/characters/kira/front-dressed.svg",
  21160. extra: 906 / 786,
  21161. bottom: 0.01
  21162. }
  21163. },
  21164. beans: {
  21165. height: math.unit(0.92, "feet"),
  21166. name: "Beans",
  21167. image: {
  21168. source: "./media/characters/kira/beans.svg"
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(5 + 3 / 12, "feet"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5 + 4 / 12, "feet"),
  21185. weight: math.unit(145, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/scramble/front.svg",
  21189. extra: 763 / 727,
  21190. bottom: 0.05
  21191. }
  21192. },
  21193. back: {
  21194. height: math.unit(5 + 4 / 12, "feet"),
  21195. weight: math.unit(145, "lb"),
  21196. name: "Back",
  21197. image: {
  21198. source: "./media/characters/scramble/back.svg",
  21199. extra: 826 / 737,
  21200. bottom: 0.002
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(5 + 4 / 12, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21214. {
  21215. side: {
  21216. height: math.unit(6 + 2 / 12, "feet"),
  21217. weight: math.unit(190, "lb"),
  21218. name: "Side",
  21219. image: {
  21220. source: "./media/characters/biscuit/side.svg",
  21221. extra: 858 / 791,
  21222. bottom: 0.044
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(6 + 2 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(5 + 2 / 12, "feet"),
  21239. weight: math.unit(120, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/poffin/front.svg",
  21243. extra: 786 / 680,
  21244. bottom: 0.005
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5 + 2 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(6 + 3 / 12, "feet"),
  21261. weight: math.unit(519, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/dhari/front.svg",
  21265. extra: 1048 / 946,
  21266. bottom: 0.015
  21267. }
  21268. },
  21269. back: {
  21270. height: math.unit(6 + 3 / 12, "feet"),
  21271. weight: math.unit(519, "lb"),
  21272. name: "Back",
  21273. image: {
  21274. source: "./media/characters/dhari/back.svg",
  21275. extra: 1048 / 931,
  21276. bottom: 0.005
  21277. }
  21278. },
  21279. frontDressed: {
  21280. height: math.unit(6 + 3 / 12, "feet"),
  21281. weight: math.unit(519, "lb"),
  21282. name: "Front (Dressed)",
  21283. image: {
  21284. source: "./media/characters/dhari/front-dressed.svg",
  21285. extra: 1713 / 1546,
  21286. bottom: 0.02
  21287. }
  21288. },
  21289. backDressed: {
  21290. height: math.unit(6 + 3 / 12, "feet"),
  21291. weight: math.unit(519, "lb"),
  21292. name: "Back (Dressed)",
  21293. image: {
  21294. source: "./media/characters/dhari/back-dressed.svg",
  21295. extra: 1699 / 1537,
  21296. bottom: 0.01
  21297. }
  21298. },
  21299. maw: {
  21300. height: math.unit(0.95, "feet"),
  21301. name: "Maw",
  21302. image: {
  21303. source: "./media/characters/dhari/maw.svg"
  21304. }
  21305. },
  21306. wereFront: {
  21307. height: math.unit(12 + 8 / 12, "feet"),
  21308. weight: math.unit(4000, "lb"),
  21309. name: "Front (Were)",
  21310. image: {
  21311. source: "./media/characters/dhari/were-front.svg",
  21312. extra: 1065 / 969,
  21313. bottom: 0.015
  21314. }
  21315. },
  21316. wereBack: {
  21317. height: math.unit(12 + 8 / 12, "feet"),
  21318. weight: math.unit(4000, "lb"),
  21319. name: "Back (Were)",
  21320. image: {
  21321. source: "./media/characters/dhari/were-back.svg",
  21322. extra: 1065 / 969,
  21323. bottom: 0.012
  21324. }
  21325. },
  21326. wereMaw: {
  21327. height: math.unit(0.625, "meters"),
  21328. name: "Maw (Were)",
  21329. image: {
  21330. source: "./media/characters/dhari/were-maw.svg"
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(6 + 3 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21344. {
  21345. anthro: {
  21346. height: math.unit(5 + 7 / 12, "feet"),
  21347. weight: math.unit(175, "lb"),
  21348. name: "Anthro",
  21349. image: {
  21350. source: "./media/characters/rena-dyne/anthro.svg",
  21351. extra: 1849 / 1785,
  21352. bottom: 0.005
  21353. }
  21354. },
  21355. taur: {
  21356. height: math.unit(15 + 6 / 12, "feet"),
  21357. weight: math.unit(8000, "lb"),
  21358. name: "Taur",
  21359. image: {
  21360. source: "./media/characters/rena-dyne/taur.svg",
  21361. extra: 2315 / 2234,
  21362. bottom: 0.033
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(5 + 7 / 12, "feet"),
  21370. default: true
  21371. },
  21372. ]
  21373. ))
  21374. characterMakers.push(() => makeCharacter(
  21375. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21376. {
  21377. front: {
  21378. height: math.unit(8, "feet"),
  21379. weight: math.unit(600, "lb"),
  21380. name: "Front",
  21381. image: {
  21382. source: "./media/characters/weremeep/front.svg",
  21383. extra: 967 / 862,
  21384. bottom: 0.01
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(8, "feet"),
  21392. default: true
  21393. },
  21394. {
  21395. name: "Lorg",
  21396. height: math.unit(12, "feet")
  21397. },
  21398. {
  21399. name: "Oh Lawd She Comin'",
  21400. height: math.unit(20, "feet")
  21401. },
  21402. ]
  21403. ))
  21404. characterMakers.push(() => makeCharacter(
  21405. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21406. {
  21407. front: {
  21408. height: math.unit(4, "feet"),
  21409. weight: math.unit(90, "lb"),
  21410. name: "Front",
  21411. image: {
  21412. source: "./media/characters/reza/front.svg",
  21413. extra: 1183 / 1111,
  21414. bottom: 0.017
  21415. }
  21416. },
  21417. back: {
  21418. height: math.unit(4, "feet"),
  21419. weight: math.unit(90, "lb"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/reza/back.svg",
  21423. extra: 1183 / 1111,
  21424. bottom: 0.01
  21425. }
  21426. },
  21427. drake: {
  21428. height: math.unit(30, "feet"),
  21429. weight: math.unit(246960, "lb"),
  21430. name: "Drake",
  21431. image: {
  21432. source: "./media/characters/reza/drake.svg",
  21433. extra: 2350 / 2024,
  21434. bottom: 60.7 / 2403
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(4, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21448. {
  21449. side: {
  21450. height: math.unit(15, "feet"),
  21451. weight: math.unit(14, "tons"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/athea/side.svg",
  21455. extra: 960 / 540,
  21456. bottom: 0.003
  21457. }
  21458. },
  21459. sitting: {
  21460. height: math.unit(6 * 2.85, "feet"),
  21461. weight: math.unit(14, "tons"),
  21462. name: "Sitting",
  21463. image: {
  21464. source: "./media/characters/athea/sitting.svg",
  21465. extra: 621 / 581,
  21466. bottom: 0.075
  21467. }
  21468. },
  21469. maw: {
  21470. height: math.unit(7.59498031496063, "feet"),
  21471. name: "Maw",
  21472. image: {
  21473. source: "./media/characters/athea/maw.svg"
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Lap Cat",
  21480. height: math.unit(2.5, "feet")
  21481. },
  21482. {
  21483. name: "Minimacro",
  21484. height: math.unit(15, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Macro",
  21489. height: math.unit(120, "feet")
  21490. },
  21491. {
  21492. name: "Macro+",
  21493. height: math.unit(640, "feet")
  21494. },
  21495. {
  21496. name: "Colossus",
  21497. height: math.unit(2.2, "miles")
  21498. },
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(8 + 8 / 12, "feet"),
  21506. weight: math.unit(130, "kg"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/seroko/front.svg",
  21510. extra: 1385 / 1280,
  21511. bottom: 0.025
  21512. }
  21513. },
  21514. back: {
  21515. height: math.unit(8 + 8 / 12, "feet"),
  21516. weight: math.unit(130, "kg"),
  21517. name: "Back",
  21518. image: {
  21519. source: "./media/characters/seroko/back.svg",
  21520. extra: 1369 / 1238,
  21521. bottom: 0.018
  21522. }
  21523. },
  21524. frontDressed: {
  21525. height: math.unit(8 + 8 / 12, "feet"),
  21526. weight: math.unit(130, "kg"),
  21527. name: "Front (Dressed)",
  21528. image: {
  21529. source: "./media/characters/seroko/front-dressed.svg",
  21530. extra: 1366 / 1275,
  21531. bottom: 0.03
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(8 + 8 / 12, "feet"),
  21539. default: true
  21540. },
  21541. ]
  21542. ))
  21543. characterMakers.push(() => makeCharacter(
  21544. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21545. {
  21546. front: {
  21547. height: math.unit(5.5, "feet"),
  21548. weight: math.unit(160, "lb"),
  21549. name: "Front",
  21550. image: {
  21551. source: "./media/characters/quatzi/front.svg",
  21552. extra: 2346 / 2242,
  21553. bottom: 0.015
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(5.5, "feet"),
  21561. default: true
  21562. },
  21563. {
  21564. name: "Big",
  21565. height: math.unit(7.7, "feet")
  21566. },
  21567. ]
  21568. ))
  21569. characterMakers.push(() => makeCharacter(
  21570. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21571. {
  21572. front: {
  21573. height: math.unit(5 + 11 / 12, "feet"),
  21574. weight: math.unit(180, "lb"),
  21575. name: "Front",
  21576. image: {
  21577. source: "./media/characters/sen/front.svg",
  21578. extra: 1321 / 1254,
  21579. bottom: 0.015
  21580. }
  21581. },
  21582. side: {
  21583. height: math.unit(5 + 11 / 12, "feet"),
  21584. weight: math.unit(180, "lb"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/sen/side.svg",
  21588. extra: 1321 / 1254,
  21589. bottom: 0.007
  21590. }
  21591. },
  21592. back: {
  21593. height: math.unit(5 + 11 / 12, "feet"),
  21594. weight: math.unit(180, "lb"),
  21595. name: "Back",
  21596. image: {
  21597. source: "./media/characters/sen/back.svg",
  21598. extra: 1321 / 1254
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(5 + 11 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(166.6, "cm"),
  21615. weight: math.unit(66.6, "kg"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/fruity/front.svg",
  21619. extra: 1510 / 1386,
  21620. bottom: 0.04
  21621. }
  21622. },
  21623. back: {
  21624. height: math.unit(166.6, "cm"),
  21625. weight: math.unit(66.6, "lb"),
  21626. name: "Back",
  21627. image: {
  21628. source: "./media/characters/fruity/back.svg",
  21629. extra: 1563 / 1435,
  21630. bottom: 0.005
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(166.6, "cm"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Demonic",
  21642. height: math.unit(166.6, "feet")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21648. {
  21649. side: {
  21650. height: math.unit(10, "feet"),
  21651. weight: math.unit(500, "lb"),
  21652. name: "Side",
  21653. image: {
  21654. source: "./media/characters/zost/side.svg",
  21655. extra: 2870/2533,
  21656. bottom: 252/3122
  21657. }
  21658. },
  21659. mawFront: {
  21660. height: math.unit(1.08, "meters"),
  21661. name: "Maw (Front)",
  21662. image: {
  21663. source: "./media/characters/zost/maw-front.svg"
  21664. }
  21665. },
  21666. mawSide: {
  21667. height: math.unit(2.66, "feet"),
  21668. name: "Maw (Side)",
  21669. image: {
  21670. source: "./media/characters/zost/maw-side.svg"
  21671. }
  21672. },
  21673. wingspan: {
  21674. height: math.unit(7.4, "feet"),
  21675. name: "Wingspan",
  21676. image: {
  21677. source: "./media/characters/zost/wingspan.svg"
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(10, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21691. {
  21692. front: {
  21693. height: math.unit(5 + 4 / 12, "feet"),
  21694. weight: math.unit(120, "lb"),
  21695. name: "Front",
  21696. image: {
  21697. source: "./media/characters/luci/front.svg",
  21698. extra: 1985 / 1884,
  21699. bottom: 0.04
  21700. }
  21701. },
  21702. back: {
  21703. height: math.unit(5 + 4 / 12, "feet"),
  21704. weight: math.unit(120, "lb"),
  21705. name: "Back",
  21706. image: {
  21707. source: "./media/characters/luci/back.svg",
  21708. extra: 1892 / 1791,
  21709. bottom: 0.002
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(5 + 4 / 12, "feet"),
  21717. default: true
  21718. },
  21719. ]
  21720. ))
  21721. characterMakers.push(() => makeCharacter(
  21722. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21723. {
  21724. front: {
  21725. height: math.unit(1500, "feet"),
  21726. weight: math.unit(3.8e6, "tons"),
  21727. name: "Front",
  21728. image: {
  21729. source: "./media/characters/2th/front.svg",
  21730. extra: 3489 / 3350,
  21731. bottom: 0.1
  21732. }
  21733. },
  21734. foot: {
  21735. height: math.unit(461, "feet"),
  21736. name: "Foot",
  21737. image: {
  21738. source: "./media/characters/2th/foot.svg"
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "\"Micro\"",
  21745. height: math.unit(15 + 7 / 12, "feet")
  21746. },
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(1500, "feet"),
  21750. default: true
  21751. },
  21752. {
  21753. name: "Macro",
  21754. height: math.unit(5000, "feet")
  21755. },
  21756. {
  21757. name: "Megamacro",
  21758. height: math.unit(15, "miles")
  21759. },
  21760. {
  21761. name: "Gigamacro",
  21762. height: math.unit(4000, "miles")
  21763. },
  21764. {
  21765. name: "Galactic",
  21766. height: math.unit(50, "AU")
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(5 + 6 / 12, "feet"),
  21775. weight: math.unit(220, "lb"),
  21776. name: "Front",
  21777. image: {
  21778. source: "./media/characters/amethyst/front.svg",
  21779. extra: 2078 / 2040,
  21780. bottom: 0.045
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(5 + 6 / 12, "feet"),
  21785. weight: math.unit(220, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/amethyst/back.svg",
  21789. extra: 2021 / 1989,
  21790. bottom: 0.02
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(5 + 6 / 12, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(4 + 11 / 12, "feet"),
  21807. weight: math.unit(120, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/yumi-akiyama/front.svg",
  21811. extra: 1327 / 1235,
  21812. bottom: 0.02
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(4 + 11 / 12, "feet"),
  21817. weight: math.unit(120, "lb"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/yumi-akiyama/back.svg",
  21821. extra: 1287 / 1245,
  21822. bottom: 0.002
  21823. }
  21824. },
  21825. },
  21826. [
  21827. {
  21828. name: "Galactic",
  21829. height: math.unit(50, "galaxies"),
  21830. default: true
  21831. },
  21832. {
  21833. name: "Universal",
  21834. height: math.unit(100, "universes")
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(8, "feet"),
  21843. weight: math.unit(500, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/rifter-yrmori/front.svg",
  21847. extra: 1180 / 1125,
  21848. bottom: 0.02
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(8, "feet"),
  21853. weight: math.unit(500, "lb"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/rifter-yrmori/back.svg",
  21857. extra: 1190 / 1145,
  21858. bottom: 0.001
  21859. }
  21860. },
  21861. wings: {
  21862. height: math.unit(7.75, "feet"),
  21863. weight: math.unit(500, "lb"),
  21864. name: "Wings",
  21865. image: {
  21866. source: "./media/characters/rifter-yrmori/wings.svg",
  21867. extra: 1357 / 1285
  21868. }
  21869. },
  21870. maw: {
  21871. height: math.unit(0.8, "feet"),
  21872. name: "Maw",
  21873. image: {
  21874. source: "./media/characters/rifter-yrmori/maw.svg"
  21875. }
  21876. },
  21877. mawfront: {
  21878. height: math.unit(1.45, "feet"),
  21879. name: "Maw (Front)",
  21880. image: {
  21881. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(8, "feet"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(42, "meters")
  21894. },
  21895. ]
  21896. ))
  21897. characterMakers.push(() => makeCharacter(
  21898. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21899. {
  21900. were: {
  21901. height: math.unit(25 + 6 / 12, "feet"),
  21902. weight: math.unit(10000, "lb"),
  21903. name: "Were",
  21904. image: {
  21905. source: "./media/characters/tahajin/were.svg",
  21906. extra: 801 / 770,
  21907. bottom: 0.042
  21908. }
  21909. },
  21910. aquatic: {
  21911. height: math.unit(6 + 4 / 12, "feet"),
  21912. weight: math.unit(160, "lb"),
  21913. name: "Aquatic",
  21914. image: {
  21915. source: "./media/characters/tahajin/aquatic.svg",
  21916. extra: 572 / 542,
  21917. bottom: 0.04
  21918. }
  21919. },
  21920. chow: {
  21921. height: math.unit(8 + 11 / 12, "feet"),
  21922. weight: math.unit(450, "lb"),
  21923. name: "Chow",
  21924. image: {
  21925. source: "./media/characters/tahajin/chow.svg",
  21926. extra: 660 / 640,
  21927. bottom: 0.015
  21928. }
  21929. },
  21930. demiNaga: {
  21931. height: math.unit(6 + 8 / 12, "feet"),
  21932. weight: math.unit(300, "lb"),
  21933. name: "Demi Naga",
  21934. image: {
  21935. source: "./media/characters/tahajin/demi-naga.svg",
  21936. extra: 643 / 615,
  21937. bottom: 0.1
  21938. }
  21939. },
  21940. data: {
  21941. height: math.unit(5, "inches"),
  21942. weight: math.unit(0.1, "lb"),
  21943. name: "Data",
  21944. image: {
  21945. source: "./media/characters/tahajin/data.svg"
  21946. }
  21947. },
  21948. fluu: {
  21949. height: math.unit(5 + 7 / 12, "feet"),
  21950. weight: math.unit(140, "lb"),
  21951. name: "Fluu",
  21952. image: {
  21953. source: "./media/characters/tahajin/fluu.svg",
  21954. extra: 628 / 592,
  21955. bottom: 0.02
  21956. }
  21957. },
  21958. starWarrior: {
  21959. height: math.unit(4 + 5 / 12, "feet"),
  21960. weight: math.unit(50, "lb"),
  21961. name: "Star Warrior",
  21962. image: {
  21963. source: "./media/characters/tahajin/star-warrior.svg"
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(25 + 6 / 12, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(8, "feet"),
  21980. weight: math.unit(350, "lb"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/gabira/front.svg",
  21984. extra: 608 / 580,
  21985. bottom: 0.03
  21986. }
  21987. },
  21988. back: {
  21989. height: math.unit(8, "feet"),
  21990. weight: math.unit(350, "lb"),
  21991. name: "Back",
  21992. image: {
  21993. source: "./media/characters/gabira/back.svg",
  21994. extra: 608 / 580,
  21995. bottom: 0.03
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(8, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(5 + 3 / 12, "feet"),
  22012. weight: math.unit(137, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/sasha-katraine/front.svg",
  22016. extra: 1745/1694,
  22017. bottom: 37/1782
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(5 + 3 / 12, "feet"),
  22022. weight: math.unit(137, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/sasha-katraine/back.svg",
  22026. extra: 1776/1699,
  22027. bottom: 26/1802
  22028. }
  22029. },
  22030. },
  22031. [
  22032. {
  22033. name: "Micro",
  22034. height: math.unit(5, "inches")
  22035. },
  22036. {
  22037. name: "Normal",
  22038. height: math.unit(5 + 3 / 12, "feet"),
  22039. default: true
  22040. },
  22041. ]
  22042. ))
  22043. characterMakers.push(() => makeCharacter(
  22044. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22045. {
  22046. side: {
  22047. height: math.unit(4, "inches"),
  22048. weight: math.unit(200, "grams"),
  22049. name: "Side",
  22050. image: {
  22051. source: "./media/characters/der/side.svg",
  22052. extra: 719 / 400,
  22053. bottom: 30.6 / 749.9187
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Micro",
  22060. height: math.unit(4, "inches"),
  22061. default: true
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22067. {
  22068. side: {
  22069. height: math.unit(30, "meters"),
  22070. weight: math.unit(700, "tonnes"),
  22071. name: "Side",
  22072. image: {
  22073. source: "./media/characters/fixerdragon/side.svg",
  22074. extra: (1293.0514 - 116.03) / 1106.86,
  22075. bottom: 116.03 / 1293.0514
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Planck",
  22082. height: math.unit(1.6e-35, "meters")
  22083. },
  22084. {
  22085. name: "Micro",
  22086. height: math.unit(0.4, "meters")
  22087. },
  22088. {
  22089. name: "Normal",
  22090. height: math.unit(30, "meters"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Megamacro",
  22095. height: math.unit(1.2, "megameters")
  22096. },
  22097. {
  22098. name: "Teramacro",
  22099. height: math.unit(130, "terameters")
  22100. },
  22101. {
  22102. name: "Yottamacro",
  22103. height: math.unit(6200, "yottameters")
  22104. },
  22105. ]
  22106. ));
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(8, "feet"),
  22112. weight: math.unit(250, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/kite/front.svg",
  22116. extra: 2796 / 2659,
  22117. bottom: 0.002
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8, "feet"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(360, "feet")
  22130. },
  22131. {
  22132. name: "Megamacro",
  22133. height: math.unit(1500, "feet")
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(5 + 11/12, "feet"),
  22142. weight: math.unit(170, "lb"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/poojawa-vynar/front.svg",
  22146. extra: 1735/1585,
  22147. bottom: 96/1831
  22148. }
  22149. },
  22150. back: {
  22151. height: math.unit(5 + 11/12, "feet"),
  22152. weight: math.unit(170, "lb"),
  22153. name: "Back",
  22154. image: {
  22155. source: "./media/characters/poojawa-vynar/back.svg",
  22156. extra: 1749/1607,
  22157. bottom: 28/1777
  22158. }
  22159. },
  22160. male: {
  22161. height: math.unit(5 + 11/12, "feet"),
  22162. weight: math.unit(170, "lb"),
  22163. name: "Male",
  22164. image: {
  22165. source: "./media/characters/poojawa-vynar/male.svg",
  22166. extra: 1855/1713,
  22167. bottom: 63/1918
  22168. }
  22169. },
  22170. taur: {
  22171. height: math.unit(5 + 11/12, "feet"),
  22172. weight: math.unit(170, "lb"),
  22173. name: "Taur",
  22174. image: {
  22175. source: "./media/characters/poojawa-vynar/taur.svg",
  22176. extra: 1151/1059,
  22177. bottom: 356/1507
  22178. }
  22179. },
  22180. frontDressed: {
  22181. height: math.unit(5 + 11/12, "feet"),
  22182. weight: math.unit(170, "lb"),
  22183. name: "Front (Dressed)",
  22184. image: {
  22185. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22186. extra: 1735/1585,
  22187. bottom: 96/1831
  22188. }
  22189. },
  22190. backDressed: {
  22191. height: math.unit(5 + 11/12, "feet"),
  22192. weight: math.unit(170, "lb"),
  22193. name: "Back (Dressed)",
  22194. image: {
  22195. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22196. extra: 1749/1607,
  22197. bottom: 28/1777
  22198. }
  22199. },
  22200. maleDressed: {
  22201. height: math.unit(5 + 11/12, "feet"),
  22202. weight: math.unit(170, "lb"),
  22203. name: "Male (Dressed)",
  22204. image: {
  22205. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22206. extra: 1855/1713,
  22207. bottom: 63/1918
  22208. }
  22209. },
  22210. taurDressed: {
  22211. height: math.unit(5 + 11/12, "feet"),
  22212. weight: math.unit(170, "lb"),
  22213. name: "Taur (Dressed)",
  22214. image: {
  22215. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22216. extra: 1151/1059,
  22217. bottom: 356/1507
  22218. }
  22219. },
  22220. maw: {
  22221. height: math.unit(1.46, "feet"),
  22222. name: "Maw",
  22223. image: {
  22224. source: "./media/characters/poojawa-vynar/maw.svg"
  22225. }
  22226. },
  22227. head: {
  22228. height: math.unit(2.34, "feet"),
  22229. name: "Head",
  22230. image: {
  22231. source: "./media/characters/poojawa-vynar/head.svg"
  22232. }
  22233. },
  22234. paw: {
  22235. height: math.unit(1.61, "feet"),
  22236. name: "Paw",
  22237. image: {
  22238. source: "./media/characters/poojawa-vynar/paw.svg"
  22239. }
  22240. },
  22241. pawToering: {
  22242. height: math.unit(1.72, "feet"),
  22243. name: "Paw (Toering)",
  22244. image: {
  22245. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22246. }
  22247. },
  22248. toering: {
  22249. height: math.unit(2.9, "inches"),
  22250. name: "Toering",
  22251. image: {
  22252. source: "./media/characters/poojawa-vynar/toering.svg"
  22253. }
  22254. },
  22255. shaft: {
  22256. height: math.unit(0.625, "feet"),
  22257. name: "Shaft",
  22258. image: {
  22259. source: "./media/characters/poojawa-vynar/shaft.svg"
  22260. }
  22261. },
  22262. spade: {
  22263. height: math.unit(0.42, "feet"),
  22264. name: "Spade",
  22265. image: {
  22266. source: "./media/characters/poojawa-vynar/spade.svg"
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Shortstack",
  22273. height: math.unit(4, "feet")
  22274. },
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(5 + 11 / 12, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Tauric",
  22282. height: math.unit(4, "meters")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(293, "meters"),
  22291. weight: math.unit(70400, "tons"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/violette/front.svg",
  22295. extra: 1227 / 1180,
  22296. bottom: 0.005
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(293, "meters"),
  22301. weight: math.unit(70400, "tons"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/violette/back.svg",
  22305. extra: 1227 / 1180,
  22306. bottom: 0.005
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(293, "meters"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(1050, "feet"),
  22323. weight: math.unit(200000, "tons"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/alessandra/front.svg",
  22327. extra: 960 / 912,
  22328. bottom: 0.06
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Macro",
  22335. height: math.unit(1050, "feet")
  22336. },
  22337. {
  22338. name: "Macro+",
  22339. height: math.unit(900, "meters"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(5, "feet"),
  22349. weight: math.unit(187, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/person/front.svg",
  22353. extra: 3087 / 2945,
  22354. bottom: 91 / 3181
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Micro",
  22361. height: math.unit(3, "inches")
  22362. },
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(5, "feet"),
  22366. default: true
  22367. },
  22368. {
  22369. name: "Macro",
  22370. height: math.unit(90, "feet")
  22371. },
  22372. {
  22373. name: "Max Size",
  22374. height: math.unit(280, "feet")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(4.5, "meters"),
  22383. weight: math.unit(3200, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/ty/front.svg",
  22387. extra: 1038 / 960,
  22388. bottom: 31.156 / 1068
  22389. }
  22390. },
  22391. back: {
  22392. height: math.unit(4.5, "meters"),
  22393. weight: math.unit(3200, "lb"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/ty/back.svg",
  22397. extra: 1044 / 966,
  22398. bottom: 7.48 / 1049
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(4.5, "meters"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(5 + 4 / 12, "feet"),
  22415. weight: math.unit(115, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/rocky/front.svg",
  22419. extra: 1012 / 975,
  22420. bottom: 54 / 1066
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(5 + 4 / 12, "feet"),
  22428. default: true
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22434. {
  22435. upright: {
  22436. height: math.unit(6, "meters"),
  22437. weight: math.unit(4000, "kg"),
  22438. name: "Upright",
  22439. image: {
  22440. source: "./media/characters/ruin/upright.svg",
  22441. extra: 668 / 661,
  22442. bottom: 42 / 799.8396
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Normal",
  22449. height: math.unit(6, "meters"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(5, "feet"),
  22459. weight: math.unit(106, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/robin/front.svg",
  22463. extra: 862 / 799,
  22464. bottom: 42.4 / 914.8856
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(5, "feet"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22478. {
  22479. side: {
  22480. height: math.unit(3, "feet"),
  22481. weight: math.unit(225, "lb"),
  22482. name: "Side",
  22483. image: {
  22484. source: "./media/characters/saian/side.svg",
  22485. extra: 566 / 356,
  22486. bottom: 79.7 / 643
  22487. }
  22488. },
  22489. maw: {
  22490. height: math.unit(2.85, "feet"),
  22491. name: "Maw",
  22492. image: {
  22493. source: "./media/characters/saian/maw.svg"
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Normal",
  22500. height: math.unit(3, "feet"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22507. {
  22508. side: {
  22509. height: math.unit(8, "feet"),
  22510. weight: math.unit(300, "lb"),
  22511. name: "Side",
  22512. image: {
  22513. source: "./media/characters/equus-silvermane/side.svg",
  22514. extra: 2176 / 2050,
  22515. bottom: 65.7 / 2245
  22516. }
  22517. },
  22518. front: {
  22519. height: math.unit(8, "feet"),
  22520. weight: math.unit(300, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/equus-silvermane/front.svg",
  22524. extra: 4633 / 4400,
  22525. bottom: 71.3 / 4706.915
  22526. }
  22527. },
  22528. sideStepping: {
  22529. height: math.unit(8, "feet"),
  22530. weight: math.unit(300, "lb"),
  22531. name: "Side (Stepping)",
  22532. image: {
  22533. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22534. extra: 1968 / 1860,
  22535. bottom: 16.4 / 1989
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(8, "feet")
  22543. },
  22544. {
  22545. name: "Minimacro",
  22546. height: math.unit(75, "feet"),
  22547. default: true
  22548. },
  22549. {
  22550. name: "Macro",
  22551. height: math.unit(150, "feet")
  22552. },
  22553. {
  22554. name: "Macro+",
  22555. height: math.unit(1000, "feet")
  22556. },
  22557. {
  22558. name: "Megamacro",
  22559. height: math.unit(1, "mile")
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22565. {
  22566. side: {
  22567. height: math.unit(20, "feet"),
  22568. weight: math.unit(30000, "kg"),
  22569. name: "Side",
  22570. image: {
  22571. source: "./media/characters/windar/side.svg",
  22572. extra: 1491 / 1248,
  22573. bottom: 82.56 / 1568
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(20, "feet"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22587. {
  22588. side: {
  22589. height: math.unit(15.66, "feet"),
  22590. weight: math.unit(150, "lb"),
  22591. name: "Side",
  22592. image: {
  22593. source: "./media/characters/melody/side.svg",
  22594. extra: 1097 / 944,
  22595. bottom: 11.8 / 1109
  22596. }
  22597. },
  22598. sideOutfit: {
  22599. height: math.unit(15.66, "feet"),
  22600. weight: math.unit(150, "lb"),
  22601. name: "Side (Outfit)",
  22602. image: {
  22603. source: "./media/characters/melody/side-outfit.svg",
  22604. extra: 1097 / 944,
  22605. bottom: 11.8 / 1109
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(15.66, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(8, "feet"),
  22622. weight: math.unit(325, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/windera/front.svg",
  22626. extra: 3180 / 2845,
  22627. bottom: 178 / 3365
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(8, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22641. {
  22642. front: {
  22643. height: math.unit(28.75, "feet"),
  22644. weight: math.unit(2000, "kg"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/sonear/front.svg",
  22648. extra: 1041.1 / 964.9,
  22649. bottom: 53.7 / 1096.6
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(28.75, "feet"),
  22657. default: true
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22663. {
  22664. side: {
  22665. height: math.unit(25.5, "feet"),
  22666. weight: math.unit(23000, "kg"),
  22667. name: "Side",
  22668. image: {
  22669. source: "./media/characters/kanara/side.svg"
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(25.5, "feet"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22683. {
  22684. side: {
  22685. height: math.unit(10, "feet"),
  22686. weight: math.unit(1000, "kg"),
  22687. name: "Side",
  22688. image: {
  22689. source: "./media/characters/ereus/side.svg",
  22690. extra: 1157 / 959,
  22691. bottom: 153 / 1312.5
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(10, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22705. {
  22706. side: {
  22707. height: math.unit(4.5, "feet"),
  22708. weight: math.unit(500, "lb"),
  22709. name: "Side",
  22710. image: {
  22711. source: "./media/characters/e-ter/side.svg",
  22712. extra: 1550 / 1248,
  22713. bottom: 146 / 1694
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(4.5, "feet"),
  22721. default: true
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22727. {
  22728. side: {
  22729. height: math.unit(9.7, "feet"),
  22730. weight: math.unit(4000, "kg"),
  22731. name: "Side",
  22732. image: {
  22733. source: "./media/characters/yamie/side.svg"
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(9.7, "feet"),
  22741. default: true
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22747. {
  22748. front: {
  22749. height: math.unit(50, "feet"),
  22750. weight: math.unit(50000, "kg"),
  22751. name: "Front",
  22752. image: {
  22753. source: "./media/characters/anders/front.svg",
  22754. extra: 570 / 539,
  22755. bottom: 14.7 / 586.7
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Large",
  22762. height: math.unit(50, "feet")
  22763. },
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(2000, "feet"),
  22767. default: true
  22768. },
  22769. {
  22770. name: "Megamacro",
  22771. height: math.unit(12, "miles")
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(7 + 2 / 12, "feet"),
  22780. weight: math.unit(300, "lb"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/reban/front.svg",
  22784. extra: 1287/1212,
  22785. bottom: 148/1435
  22786. }
  22787. },
  22788. head: {
  22789. height: math.unit(1.95, "feet"),
  22790. name: "Head",
  22791. image: {
  22792. source: "./media/characters/reban/head.svg"
  22793. }
  22794. },
  22795. maw: {
  22796. height: math.unit(0.95, "feet"),
  22797. name: "Maw",
  22798. image: {
  22799. source: "./media/characters/reban/maw.svg"
  22800. }
  22801. },
  22802. foot: {
  22803. height: math.unit(1.65, "feet"),
  22804. name: "Foot",
  22805. image: {
  22806. source: "./media/characters/reban/foot.svg"
  22807. }
  22808. },
  22809. dick: {
  22810. height: math.unit(7 / 5, "feet"),
  22811. name: "Dick",
  22812. image: {
  22813. source: "./media/characters/reban/dick.svg"
  22814. }
  22815. },
  22816. },
  22817. [
  22818. {
  22819. name: "Natural Height",
  22820. height: math.unit(7 + 2 / 12, "feet")
  22821. },
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(500, "feet"),
  22825. default: true
  22826. },
  22827. {
  22828. name: "Canon Height",
  22829. height: math.unit(50, "AU")
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22835. {
  22836. front: {
  22837. height: math.unit(6, "feet"),
  22838. weight: math.unit(150, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/terrance-keayes/front.svg",
  22842. extra: 1.005,
  22843. bottom: 151 / 1615
  22844. }
  22845. },
  22846. side: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Side",
  22850. image: {
  22851. source: "./media/characters/terrance-keayes/side.svg",
  22852. extra: 1.005,
  22853. bottom: 129.4 / 1544
  22854. }
  22855. },
  22856. back: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Back",
  22860. image: {
  22861. source: "./media/characters/terrance-keayes/back.svg",
  22862. extra: 1.005,
  22863. bottom: 58.4 / 1557.3
  22864. }
  22865. },
  22866. dick: {
  22867. height: math.unit(6 * 0.208, "feet"),
  22868. name: "Dick",
  22869. image: {
  22870. source: "./media/characters/terrance-keayes/dick.svg"
  22871. }
  22872. },
  22873. },
  22874. [
  22875. {
  22876. name: "Canon Height",
  22877. height: math.unit(35, "miles"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(6, "feet"),
  22887. weight: math.unit(150, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/ofelia/front.svg",
  22891. extra: 1130/1117,
  22892. bottom: 91/1221
  22893. }
  22894. },
  22895. back: {
  22896. height: math.unit(6, "feet"),
  22897. weight: math.unit(150, "lb"),
  22898. name: "Back",
  22899. image: {
  22900. source: "./media/characters/ofelia/back.svg",
  22901. extra: 1172/1159,
  22902. bottom: 28/1200
  22903. }
  22904. },
  22905. maw: {
  22906. height: math.unit(1, "feet"),
  22907. name: "Maw",
  22908. image: {
  22909. source: "./media/characters/ofelia/maw.svg"
  22910. }
  22911. },
  22912. foot: {
  22913. height: math.unit(1.949, "feet"),
  22914. name: "Foot",
  22915. image: {
  22916. source: "./media/characters/ofelia/foot.svg"
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Canon Height",
  22923. height: math.unit(2000, "miles"),
  22924. default: true
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(6, "feet"),
  22933. weight: math.unit(150, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/samuel/front.svg",
  22937. extra: 265 / 258,
  22938. bottom: 2 / 266.1566
  22939. }
  22940. },
  22941. },
  22942. [
  22943. {
  22944. name: "Macro",
  22945. height: math.unit(100, "feet"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Full Size",
  22950. height: math.unit(1000, "miles")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(6, "feet"),
  22959. weight: math.unit(300, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/beishir-kiel/front.svg",
  22963. extra: 569 / 547,
  22964. bottom: 41.9 / 609
  22965. }
  22966. },
  22967. maw: {
  22968. height: math.unit(6 * 0.202, "feet"),
  22969. name: "Maw",
  22970. image: {
  22971. source: "./media/characters/beishir-kiel/maw.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(300, "feet"),
  22979. default: true
  22980. },
  22981. ]
  22982. ))
  22983. characterMakers.push(() => makeCharacter(
  22984. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22985. {
  22986. front: {
  22987. height: math.unit(5 + 7/12, "feet"),
  22988. weight: math.unit(120, "lb"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/logan-grey/front.svg",
  22992. extra: 1836/1738,
  22993. bottom: 108/1944
  22994. }
  22995. },
  22996. back: {
  22997. height: math.unit(5 + 7/12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Back",
  23000. image: {
  23001. source: "./media/characters/logan-grey/back.svg",
  23002. extra: 1880/1794,
  23003. bottom: 24/1904
  23004. }
  23005. },
  23006. frontSfw: {
  23007. height: math.unit(5 + 7/12, "feet"),
  23008. weight: math.unit(120, "lb"),
  23009. name: "Front (SFW)",
  23010. image: {
  23011. source: "./media/characters/logan-grey/front-sfw.svg",
  23012. extra: 1836/1738,
  23013. bottom: 108/1944
  23014. }
  23015. },
  23016. backSfw: {
  23017. height: math.unit(5 + 7/12, "feet"),
  23018. weight: math.unit(120, "lb"),
  23019. name: "Back (SFW)",
  23020. image: {
  23021. source: "./media/characters/logan-grey/back-sfw.svg",
  23022. extra: 1880/1794,
  23023. bottom: 24/1904
  23024. }
  23025. },
  23026. hands: {
  23027. height: math.unit(0.84, "feet"),
  23028. name: "Hands",
  23029. image: {
  23030. source: "./media/characters/logan-grey/hands.svg"
  23031. }
  23032. },
  23033. paws: {
  23034. height: math.unit(0.72, "feet"),
  23035. name: "Paws",
  23036. image: {
  23037. source: "./media/characters/logan-grey/paws.svg"
  23038. }
  23039. },
  23040. cock: {
  23041. height: math.unit(1.45, "feet"),
  23042. name: "Cock",
  23043. image: {
  23044. source: "./media/characters/logan-grey/cock.svg"
  23045. }
  23046. },
  23047. cockAlt: {
  23048. height: math.unit(1.437, "feet"),
  23049. name: "Cock (alt)",
  23050. image: {
  23051. source: "./media/characters/logan-grey/cock-alt.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "Normal",
  23058. height: math.unit(5 + 8 / 12, "feet")
  23059. },
  23060. {
  23061. name: "The 500 Foot Femboy",
  23062. height: math.unit(500, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Megmacro",
  23067. height: math.unit(20, "miles")
  23068. },
  23069. ]
  23070. ))
  23071. characterMakers.push(() => makeCharacter(
  23072. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23073. {
  23074. front: {
  23075. height: math.unit(8 + 2 / 12, "feet"),
  23076. weight: math.unit(275, "lb"),
  23077. name: "Front",
  23078. image: {
  23079. source: "./media/characters/draganta/front.svg",
  23080. extra: 1177 / 1135,
  23081. bottom: 33.46 / 1212.1
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(8 + 6 / 12, "feet"),
  23089. default: true
  23090. },
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(150, "feet")
  23094. },
  23095. {
  23096. name: "Megamacro",
  23097. height: math.unit(1000, "miles")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(1.72, "m"),
  23106. weight: math.unit(80, "lb"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/voski/front.svg",
  23110. extra: 2076.22 / 2022.4,
  23111. bottom: 102.7 / 2177.3866
  23112. }
  23113. },
  23114. frontFlaccid: {
  23115. height: math.unit(1.72, "m"),
  23116. weight: math.unit(80, "lb"),
  23117. name: "Front (Flaccid)",
  23118. image: {
  23119. source: "./media/characters/voski/front-flaccid.svg",
  23120. extra: 2076.22 / 2022.4,
  23121. bottom: 102.7 / 2177.3866
  23122. }
  23123. },
  23124. frontErect: {
  23125. height: math.unit(1.72, "m"),
  23126. weight: math.unit(80, "lb"),
  23127. name: "Front (Erect)",
  23128. image: {
  23129. source: "./media/characters/voski/front-erect.svg",
  23130. extra: 2076.22 / 2022.4,
  23131. bottom: 102.7 / 2177.3866
  23132. }
  23133. },
  23134. back: {
  23135. height: math.unit(1.72, "m"),
  23136. weight: math.unit(80, "lb"),
  23137. name: "Back",
  23138. image: {
  23139. source: "./media/characters/voski/back.svg",
  23140. extra: 2104 / 2051,
  23141. bottom: 10.45 / 2113.63
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Normal",
  23148. height: math.unit(1.72, "m")
  23149. },
  23150. {
  23151. name: "Macro",
  23152. height: math.unit(55, "m"),
  23153. default: true
  23154. },
  23155. {
  23156. name: "Macro+",
  23157. height: math.unit(300, "m")
  23158. },
  23159. {
  23160. name: "Macro++",
  23161. height: math.unit(700, "m")
  23162. },
  23163. {
  23164. name: "Macro+++",
  23165. height: math.unit(4500, "m")
  23166. },
  23167. {
  23168. name: "Macro++++",
  23169. height: math.unit(45, "km")
  23170. },
  23171. {
  23172. name: "Macro+++++",
  23173. height: math.unit(1220, "km")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(2.3, "m"),
  23182. weight: math.unit(304, "kg"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/icowom-lee/front.svg",
  23186. extra: 985 / 955,
  23187. bottom: 25.4 / 1012
  23188. }
  23189. },
  23190. fronttentacles: {
  23191. height: math.unit(2.3, "m"),
  23192. weight: math.unit(304, "kg"),
  23193. name: "Front-tentacles",
  23194. image: {
  23195. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23196. extra: 985 / 955,
  23197. bottom: 25.4 / 1012
  23198. }
  23199. },
  23200. back: {
  23201. height: math.unit(2.3, "m"),
  23202. weight: math.unit(304, "kg"),
  23203. name: "Back",
  23204. image: {
  23205. source: "./media/characters/icowom-lee/back.svg",
  23206. extra: 975 / 954,
  23207. bottom: 9.5 / 985
  23208. }
  23209. },
  23210. backtentacles: {
  23211. height: math.unit(2.3, "m"),
  23212. weight: math.unit(304, "kg"),
  23213. name: "Back-tentacles",
  23214. image: {
  23215. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23216. extra: 975 / 954,
  23217. bottom: 9.5 / 985
  23218. }
  23219. },
  23220. frontDressed: {
  23221. height: math.unit(2.3, "m"),
  23222. weight: math.unit(304, "kg"),
  23223. name: "Front (Dressed)",
  23224. image: {
  23225. source: "./media/characters/icowom-lee/front-dressed.svg",
  23226. extra: 3076 / 2933,
  23227. bottom: 51.4 / 3125.1889
  23228. }
  23229. },
  23230. rump: {
  23231. height: math.unit(0.776, "meters"),
  23232. name: "Rump",
  23233. image: {
  23234. source: "./media/characters/icowom-lee/rump.svg"
  23235. }
  23236. },
  23237. genitals: {
  23238. height: math.unit(0.78, "meters"),
  23239. name: "Genitals",
  23240. image: {
  23241. source: "./media/characters/icowom-lee/genitals.svg"
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(2.3, "meters"),
  23249. default: true
  23250. },
  23251. {
  23252. name: "Macro",
  23253. height: math.unit(94, "meters"),
  23254. default: true
  23255. },
  23256. ]
  23257. ))
  23258. characterMakers.push(() => makeCharacter(
  23259. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23260. {
  23261. front: {
  23262. height: math.unit(22, "meters"),
  23263. weight: math.unit(21000, "kg"),
  23264. name: "Front",
  23265. image: {
  23266. source: "./media/characters/shock-diamond/front.svg",
  23267. extra: 2204 / 2053,
  23268. bottom: 65 / 2239.47
  23269. }
  23270. },
  23271. frontNude: {
  23272. height: math.unit(22, "meters"),
  23273. weight: math.unit(21000, "kg"),
  23274. name: "Front (Nude)",
  23275. image: {
  23276. source: "./media/characters/shock-diamond/front-nude.svg",
  23277. extra: 2514 / 2285,
  23278. bottom: 13 / 2527.56
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(3, "meters")
  23286. },
  23287. {
  23288. name: "Macro",
  23289. height: math.unit(22, "meters"),
  23290. default: true
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(5 + 4 / 12, "feet"),
  23299. weight: math.unit(120, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/rory/front.svg",
  23303. extra: 1318/1241,
  23304. bottom: 42/1360
  23305. }
  23306. },
  23307. back: {
  23308. height: math.unit(5 + 4 / 12, "feet"),
  23309. weight: math.unit(120, "lb"),
  23310. name: "Back",
  23311. image: {
  23312. source: "./media/characters/rory/back.svg",
  23313. extra: 1318/1241,
  23314. bottom: 42/1360
  23315. }
  23316. },
  23317. butt: {
  23318. height: math.unit(1.74, "feet"),
  23319. name: "Butt",
  23320. image: {
  23321. source: "./media/characters/rory/butt.svg"
  23322. }
  23323. },
  23324. dick: {
  23325. height: math.unit(1.02, "feet"),
  23326. name: "Dick",
  23327. image: {
  23328. source: "./media/characters/rory/dick.svg"
  23329. }
  23330. },
  23331. paws: {
  23332. height: math.unit(1, "feet"),
  23333. name: "Paws",
  23334. image: {
  23335. source: "./media/characters/rory/paws.svg"
  23336. }
  23337. },
  23338. frontAlt: {
  23339. height: math.unit(5 + 4 / 12, "feet"),
  23340. weight: math.unit(120, "lb"),
  23341. name: "Front (Alt)",
  23342. image: {
  23343. source: "./media/characters/rory/front-alt.svg",
  23344. extra: 589 / 556,
  23345. bottom: 45.7 / 635.76
  23346. }
  23347. },
  23348. frontAltNude: {
  23349. height: math.unit(5 + 4 / 12, "feet"),
  23350. weight: math.unit(120, "lb"),
  23351. name: "Front (Alt, Nude)",
  23352. image: {
  23353. source: "./media/characters/rory/front-alt-nude.svg",
  23354. extra: 589 / 556,
  23355. bottom: 45.7 / 635.76
  23356. }
  23357. },
  23358. side: {
  23359. height: math.unit(5 + 4 / 12, "feet"),
  23360. weight: math.unit(120, "lb"),
  23361. name: "Side",
  23362. image: {
  23363. source: "./media/characters/rory/side.svg",
  23364. extra: 597 / 564,
  23365. bottom: 55 / 653
  23366. }
  23367. },
  23368. backAlt: {
  23369. height: math.unit(5 + 4 / 12, "feet"),
  23370. weight: math.unit(120, "lb"),
  23371. name: "Back (Alt)",
  23372. image: {
  23373. source: "./media/characters/rory/back-alt.svg",
  23374. extra: 620 / 585,
  23375. bottom: 8.86 / 630.43
  23376. }
  23377. },
  23378. dickAlt: {
  23379. height: math.unit(0.86, "feet"),
  23380. name: "Dick (Alt)",
  23381. image: {
  23382. source: "./media/characters/rory/dick-alt.svg"
  23383. }
  23384. },
  23385. },
  23386. [
  23387. {
  23388. name: "Normal",
  23389. height: math.unit(5 + 4 / 12, "feet"),
  23390. default: true
  23391. },
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(100, "feet")
  23395. },
  23396. {
  23397. name: "Macro+",
  23398. height: math.unit(140, "feet")
  23399. },
  23400. {
  23401. name: "Macro++",
  23402. height: math.unit(300, "feet")
  23403. },
  23404. ]
  23405. ))
  23406. characterMakers.push(() => makeCharacter(
  23407. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23408. {
  23409. front: {
  23410. height: math.unit(5 + 9 / 12, "feet"),
  23411. weight: math.unit(190, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/sprisk/front.svg",
  23415. extra: 1225 / 1180,
  23416. bottom: 42.7 / 1266.4
  23417. }
  23418. },
  23419. frontNsfw: {
  23420. height: math.unit(5 + 9 / 12, "feet"),
  23421. weight: math.unit(190, "lb"),
  23422. name: "Front (NSFW)",
  23423. image: {
  23424. source: "./media/characters/sprisk/front-nsfw.svg",
  23425. extra: 1225 / 1180,
  23426. bottom: 42.7 / 1266.4
  23427. }
  23428. },
  23429. back: {
  23430. height: math.unit(5 + 9 / 12, "feet"),
  23431. weight: math.unit(190, "lb"),
  23432. name: "Back",
  23433. image: {
  23434. source: "./media/characters/sprisk/back.svg",
  23435. extra: 1247 / 1200,
  23436. bottom: 5.6 / 1253.04
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Tiny",
  23443. height: math.unit(2, "inches")
  23444. },
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(5 + 9 / 12, "feet"),
  23448. default: true
  23449. },
  23450. {
  23451. name: "Mini Macro",
  23452. height: math.unit(18, "feet")
  23453. },
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(100, "feet")
  23457. },
  23458. {
  23459. name: "MACRO",
  23460. height: math.unit(50, "miles")
  23461. },
  23462. {
  23463. name: "M A C R O",
  23464. height: math.unit(300, "miles")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23470. {
  23471. side: {
  23472. height: math.unit(15.6, "meters"),
  23473. weight: math.unit(700000, "kg"),
  23474. name: "Side",
  23475. image: {
  23476. source: "./media/characters/bunsen/side.svg",
  23477. extra: 1644 / 358
  23478. }
  23479. },
  23480. foot: {
  23481. height: math.unit(1.611 * 1644 / 358, "meter"),
  23482. name: "Foot",
  23483. image: {
  23484. source: "./media/characters/bunsen/foot.svg"
  23485. }
  23486. },
  23487. },
  23488. [
  23489. {
  23490. name: "Small",
  23491. height: math.unit(10, "feet")
  23492. },
  23493. {
  23494. name: "Normal",
  23495. height: math.unit(15.6, "meters"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(4 + 11 / 12, "feet"),
  23505. weight: math.unit(140, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/sesh/front.svg",
  23509. extra: 3420 / 3231,
  23510. bottom: 72 / 3949.5
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(4 + 11 / 12, "feet")
  23518. },
  23519. {
  23520. name: "Grown",
  23521. height: math.unit(15, "feet"),
  23522. default: true
  23523. },
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(1500, "feet")
  23527. },
  23528. {
  23529. name: "Megamacro",
  23530. height: math.unit(30, "miles")
  23531. },
  23532. {
  23533. name: "Continental",
  23534. height: math.unit(3000, "miles")
  23535. },
  23536. {
  23537. name: "Gravity Mass",
  23538. height: math.unit(300000, "miles")
  23539. },
  23540. {
  23541. name: "Planet Buster",
  23542. height: math.unit(30000000, "miles")
  23543. },
  23544. {
  23545. name: "Big",
  23546. height: math.unit(3000000000, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(9, "feet"),
  23555. weight: math.unit(350, "lb"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/pepper/front.svg",
  23559. extra: 1448 / 1312,
  23560. bottom: 9.4 / 1457.88
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(9, "feet"),
  23565. weight: math.unit(350, "lb"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/pepper/back.svg",
  23569. extra: 1423 / 1300,
  23570. bottom: 4.6 / 1429
  23571. }
  23572. },
  23573. maw: {
  23574. height: math.unit(0.932, "feet"),
  23575. name: "Maw",
  23576. image: {
  23577. source: "./media/characters/pepper/maw.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(9, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(6, "feet"),
  23594. weight: math.unit(150, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/maelstrom/front.svg",
  23598. extra: 2100 / 1883,
  23599. bottom: 94 / 2196.7
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Less Kaiju",
  23606. height: math.unit(200, "feet")
  23607. },
  23608. {
  23609. name: "Kaiju",
  23610. height: math.unit(400, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Kaiju-er",
  23615. height: math.unit(600, "feet")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(6 + 5 / 12, "feet"),
  23624. weight: math.unit(180, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/lexir/front.svg",
  23628. extra: 180 / 172,
  23629. bottom: 12 / 192
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(6 + 5 / 12, "feet"),
  23634. weight: math.unit(180, "lb"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/lexir/back.svg",
  23638. extra: 1273/1201,
  23639. bottom: 39/1312
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Very Smal",
  23646. height: math.unit(1, "nm")
  23647. },
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(6 + 5 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(1, "mile")
  23656. },
  23657. {
  23658. name: "Megamacro",
  23659. height: math.unit(50, "miles")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(1.5, "meters"),
  23668. weight: math.unit(100, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/maksio/front.svg",
  23672. extra: 1549 / 1531,
  23673. bottom: 123.7 / 1674.5429
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(1.5, "meters"),
  23678. weight: math.unit(100, "lb"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/maksio/back.svg",
  23682. extra: 1541 / 1509,
  23683. bottom: 97 / 1639
  23684. }
  23685. },
  23686. hand: {
  23687. height: math.unit(0.621, "feet"),
  23688. name: "Hand",
  23689. image: {
  23690. source: "./media/characters/maksio/hand.svg"
  23691. }
  23692. },
  23693. foot: {
  23694. height: math.unit(1.611, "feet"),
  23695. name: "Foot",
  23696. image: {
  23697. source: "./media/characters/maksio/foot.svg"
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Shrunken",
  23704. height: math.unit(10, "cm")
  23705. },
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(150, "cm"),
  23709. default: true
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(100, "feet"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/erza-bear/front.svg",
  23721. extra: 2449 / 2390,
  23722. bottom: 46 / 2494
  23723. }
  23724. },
  23725. back: {
  23726. height: math.unit(100, "feet"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/erza-bear/back.svg",
  23730. extra: 2489 / 2430,
  23731. bottom: 85.4 / 2480
  23732. }
  23733. },
  23734. tail: {
  23735. height: math.unit(42, "feet"),
  23736. name: "Tail",
  23737. image: {
  23738. source: "./media/characters/erza-bear/tail.svg"
  23739. }
  23740. },
  23741. tongue: {
  23742. height: math.unit(8, "feet"),
  23743. name: "Tongue",
  23744. image: {
  23745. source: "./media/characters/erza-bear/tongue.svg"
  23746. }
  23747. },
  23748. dick: {
  23749. height: math.unit(10.5, "feet"),
  23750. name: "Dick",
  23751. image: {
  23752. source: "./media/characters/erza-bear/dick.svg"
  23753. }
  23754. },
  23755. dickVertical: {
  23756. height: math.unit(16.9, "feet"),
  23757. name: "Dick (Vertical)",
  23758. image: {
  23759. source: "./media/characters/erza-bear/dick-vertical.svg"
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Macro",
  23766. height: math.unit(100, "feet"),
  23767. default: true
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23773. {
  23774. front: {
  23775. height: math.unit(172, "cm"),
  23776. weight: math.unit(73, "kg"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/violet-flor/front.svg",
  23780. extra: 1530 / 1442,
  23781. bottom: 61.9 / 1588.8
  23782. }
  23783. },
  23784. back: {
  23785. height: math.unit(180, "cm"),
  23786. weight: math.unit(73, "kg"),
  23787. name: "Back",
  23788. image: {
  23789. source: "./media/characters/violet-flor/back.svg",
  23790. extra: 1692 / 1630,
  23791. bottom: 20 / 1712
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(172, "cm"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(6, "feet"),
  23808. weight: math.unit(220, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/lynn-rhea/front.svg",
  23812. extra: 310 / 273
  23813. }
  23814. },
  23815. back: {
  23816. height: math.unit(6, "feet"),
  23817. weight: math.unit(220, "lb"),
  23818. name: "Back",
  23819. image: {
  23820. source: "./media/characters/lynn-rhea/back.svg",
  23821. extra: 310 / 273
  23822. }
  23823. },
  23824. dicks: {
  23825. height: math.unit(0.9, "feet"),
  23826. name: "Dicks",
  23827. image: {
  23828. source: "./media/characters/lynn-rhea/dicks.svg"
  23829. }
  23830. },
  23831. slit: {
  23832. height: math.unit(0.4, "feet"),
  23833. name: "Slit",
  23834. image: {
  23835. source: "./media/characters/lynn-rhea/slit.svg"
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Micro",
  23842. height: math.unit(1, "inch")
  23843. },
  23844. {
  23845. name: "Macro",
  23846. height: math.unit(60, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Megamacro",
  23851. height: math.unit(2, "miles")
  23852. },
  23853. {
  23854. name: "Gigamacro",
  23855. height: math.unit(3, "earths")
  23856. },
  23857. {
  23858. name: "Galactic",
  23859. height: math.unit(0.8, "galaxies")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23865. {
  23866. front: {
  23867. height: math.unit(1600, "feet"),
  23868. weight: math.unit(85758785169, "kg"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/valathos/front.svg",
  23872. extra: 1451 / 1339
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(1600, "feet"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(7 + 5 / 12, "feet"),
  23889. weight: math.unit(300, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/azula/front.svg",
  23893. extra: 3208 / 2880,
  23894. bottom: 80.2 / 3277
  23895. }
  23896. },
  23897. back: {
  23898. height: math.unit(7 + 5 / 12, "feet"),
  23899. weight: math.unit(300, "lb"),
  23900. name: "Back",
  23901. image: {
  23902. source: "./media/characters/azula/back.svg",
  23903. extra: 3169 / 2822,
  23904. bottom: 150.6 / 3321
  23905. }
  23906. },
  23907. },
  23908. [
  23909. {
  23910. name: "Normal",
  23911. height: math.unit(7 + 5 / 12, "feet"),
  23912. default: true
  23913. },
  23914. {
  23915. name: "Big",
  23916. height: math.unit(20, "feet")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(5 + 1 / 12, "feet"),
  23925. weight: math.unit(110, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/rupert/front.svg",
  23929. extra: 1549 / 1495,
  23930. bottom: 54.2 / 1604.4
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(5 + 1 / 12, "feet"),
  23938. default: true
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23944. {
  23945. front: {
  23946. height: math.unit(8 + 4 / 12, "feet"),
  23947. weight: math.unit(350, "lb"),
  23948. name: "Front",
  23949. image: {
  23950. source: "./media/characters/sheera-castellar/front.svg",
  23951. extra: 1957 / 1894,
  23952. bottom: 26.97 / 1975.017
  23953. }
  23954. },
  23955. side: {
  23956. height: math.unit(8 + 4 / 12, "feet"),
  23957. weight: math.unit(350, "lb"),
  23958. name: "Side",
  23959. image: {
  23960. source: "./media/characters/sheera-castellar/side.svg",
  23961. extra: 1957 / 1894
  23962. }
  23963. },
  23964. back: {
  23965. height: math.unit(8 + 4 / 12, "feet"),
  23966. weight: math.unit(350, "lb"),
  23967. name: "Back",
  23968. image: {
  23969. source: "./media/characters/sheera-castellar/back.svg",
  23970. extra: 1957 / 1894
  23971. }
  23972. },
  23973. angled: {
  23974. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23975. weight: math.unit(350, "lb"),
  23976. name: "Angled",
  23977. image: {
  23978. source: "./media/characters/sheera-castellar/angled.svg",
  23979. extra: 1807 / 1707,
  23980. bottom: 68 / 1875
  23981. }
  23982. },
  23983. genitals: {
  23984. height: math.unit(2.2, "feet"),
  23985. name: "Genitals",
  23986. image: {
  23987. source: "./media/characters/sheera-castellar/genitals.svg"
  23988. }
  23989. },
  23990. taur: {
  23991. height: math.unit(10 + 6/12, "feet"),
  23992. name: "Taur",
  23993. image: {
  23994. source: "./media/characters/sheera-castellar/taur.svg",
  23995. extra: 2017/1909,
  23996. bottom: 185/2202
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Normal",
  24003. height: math.unit(8 + 4 / 12, "feet")
  24004. },
  24005. {
  24006. name: "Macro",
  24007. height: math.unit(150, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Macro+",
  24012. height: math.unit(800, "feet")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(6, "feet"),
  24021. weight: math.unit(150, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/jaipur/front.svg",
  24025. extra: 3860 / 3731,
  24026. bottom: 287 / 4140
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(6, "feet"),
  24031. weight: math.unit(150, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/jaipur/back.svg",
  24035. extra: 1637/1561,
  24036. bottom: 154/1791
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Normal",
  24043. height: math.unit(1.85, "meters"),
  24044. default: true
  24045. },
  24046. {
  24047. name: "Macro",
  24048. height: math.unit(150, "meters")
  24049. },
  24050. {
  24051. name: "Macro+",
  24052. height: math.unit(0.5, "miles")
  24053. },
  24054. {
  24055. name: "Macro++",
  24056. height: math.unit(2.5, "miles")
  24057. },
  24058. {
  24059. name: "Macro+++",
  24060. height: math.unit(12, "miles")
  24061. },
  24062. {
  24063. name: "Macro++++",
  24064. height: math.unit(120, "miles")
  24065. },
  24066. {
  24067. name: "Macro+++++",
  24068. height: math.unit(1200, "miles")
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(6, "feet"),
  24077. weight: math.unit(150, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/sheila-wolf/front.svg",
  24081. extra: 1931 / 1808,
  24082. bottom: 29.5 / 1960
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(1.464, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/sheila-wolf/dick.svg"
  24090. }
  24091. },
  24092. muzzle: {
  24093. height: math.unit(0.513, "feet"),
  24094. name: "Muzzle",
  24095. image: {
  24096. source: "./media/characters/sheila-wolf/muzzle.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(70, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(32, "meters"),
  24113. weight: math.unit(300000, "kg"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/almor/front.svg",
  24117. extra: 1408 / 1322,
  24118. bottom: 94.6 / 1506.5
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Macro",
  24125. height: math.unit(32, "meters"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(7, "feet"),
  24135. weight: math.unit(200, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/silver/front.svg",
  24139. extra: 472.1 / 450.5,
  24140. bottom: 26.5 / 499.424
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(7, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(800, "feet")
  24153. },
  24154. {
  24155. name: "Megamacro",
  24156. height: math.unit(250, "miles")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(6, "feet"),
  24165. weight: math.unit(150, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/pliskin/front.svg",
  24169. extra: 1469 / 1359,
  24170. bottom: 70 / 1540
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Micro",
  24177. height: math.unit(3, "inches")
  24178. },
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(5 + 11 / 12, "feet"),
  24182. default: true
  24183. },
  24184. {
  24185. name: "Macro",
  24186. height: math.unit(120, "feet")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(6, "feet"),
  24195. weight: math.unit(150, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/sammy/front.svg",
  24199. extra: 1193 / 1089,
  24200. bottom: 30.5 / 1226
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Macro",
  24207. height: math.unit(1700, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Examacro",
  24212. height: math.unit(2.5e9, "lightyears")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(21, "meters"),
  24221. weight: math.unit(12, "tonnes"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/kuru/front.svg",
  24225. extra: 4301 / 3785,
  24226. bottom: 371.3 / 4691
  24227. }
  24228. },
  24229. },
  24230. [
  24231. {
  24232. name: "Macro",
  24233. height: math.unit(21, "meters"),
  24234. default: true
  24235. },
  24236. ]
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24240. {
  24241. front: {
  24242. height: math.unit(23, "meters"),
  24243. weight: math.unit(12.2, "tonnes"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/rakka/front.svg",
  24247. extra: 4670 / 4169,
  24248. bottom: 301 / 4968.7
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(23, "meters"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(6, "feet"),
  24265. weight: math.unit(150, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/rhys-feline/front.svg",
  24269. extra: 2488 / 2308,
  24270. bottom: 35.67 / 2519.19
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Really Small",
  24277. height: math.unit(1, "nm")
  24278. },
  24279. {
  24280. name: "Micro",
  24281. height: math.unit(4, "inches")
  24282. },
  24283. {
  24284. name: "Normal",
  24285. height: math.unit(4 + 10 / 12, "feet"),
  24286. default: true
  24287. },
  24288. {
  24289. name: "Macro",
  24290. height: math.unit(100, "feet")
  24291. },
  24292. {
  24293. name: "Megamacto",
  24294. height: math.unit(50, "miles")
  24295. },
  24296. ]
  24297. ))
  24298. characterMakers.push(() => makeCharacter(
  24299. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24300. {
  24301. side: {
  24302. height: math.unit(30, "feet"),
  24303. weight: math.unit(35000, "kg"),
  24304. name: "Side",
  24305. image: {
  24306. source: "./media/characters/alydar/side.svg",
  24307. extra: 234 / 222,
  24308. bottom: 6.5 / 241
  24309. }
  24310. },
  24311. front: {
  24312. height: math.unit(30, "feet"),
  24313. weight: math.unit(35000, "kg"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/alydar/front.svg",
  24317. extra: 223.37 / 210.2,
  24318. bottom: 22.3 / 246.76
  24319. }
  24320. },
  24321. top: {
  24322. height: math.unit(64.54, "feet"),
  24323. weight: math.unit(35000, "kg"),
  24324. name: "Top",
  24325. image: {
  24326. source: "./media/characters/alydar/top.svg"
  24327. }
  24328. },
  24329. anthro: {
  24330. height: math.unit(30, "feet"),
  24331. weight: math.unit(9000, "kg"),
  24332. name: "Anthro",
  24333. image: {
  24334. source: "./media/characters/alydar/anthro.svg",
  24335. extra: 432 / 421,
  24336. bottom: 7.18 / 440
  24337. }
  24338. },
  24339. maw: {
  24340. height: math.unit(11.693, "feet"),
  24341. name: "Maw",
  24342. image: {
  24343. source: "./media/characters/alydar/maw.svg"
  24344. }
  24345. },
  24346. head: {
  24347. height: math.unit(11.693, "feet"),
  24348. name: "Head",
  24349. image: {
  24350. source: "./media/characters/alydar/head.svg"
  24351. }
  24352. },
  24353. headAlt: {
  24354. height: math.unit(12.861, "feet"),
  24355. name: "Head (Alt)",
  24356. image: {
  24357. source: "./media/characters/alydar/head-alt.svg"
  24358. }
  24359. },
  24360. wing: {
  24361. height: math.unit(20.712, "feet"),
  24362. name: "Wing",
  24363. image: {
  24364. source: "./media/characters/alydar/wing.svg"
  24365. }
  24366. },
  24367. wingFeather: {
  24368. height: math.unit(9.662, "feet"),
  24369. name: "Wing Feather",
  24370. image: {
  24371. source: "./media/characters/alydar/wing-feather.svg"
  24372. }
  24373. },
  24374. countourFeather: {
  24375. height: math.unit(4.154, "feet"),
  24376. name: "Contour Feather",
  24377. image: {
  24378. source: "./media/characters/alydar/contour-feather.svg"
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Diplomatic",
  24385. height: math.unit(13, "feet"),
  24386. default: true
  24387. },
  24388. {
  24389. name: "Small",
  24390. height: math.unit(30, "feet")
  24391. },
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(95, "feet"),
  24395. default: true
  24396. },
  24397. {
  24398. name: "Large",
  24399. height: math.unit(285, "feet")
  24400. },
  24401. {
  24402. name: "Incomprehensible",
  24403. height: math.unit(450, "megameters")
  24404. },
  24405. ]
  24406. ))
  24407. characterMakers.push(() => makeCharacter(
  24408. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24409. {
  24410. side: {
  24411. height: math.unit(11, "feet"),
  24412. weight: math.unit(1750, "kg"),
  24413. name: "Side",
  24414. image: {
  24415. source: "./media/characters/selicia/side.svg",
  24416. extra: 440 / 396,
  24417. bottom: 24.8 / 465.979
  24418. }
  24419. },
  24420. maw: {
  24421. height: math.unit(4.665, "feet"),
  24422. name: "Maw",
  24423. image: {
  24424. source: "./media/characters/selicia/maw.svg"
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(11, "feet"),
  24432. default: true
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24438. {
  24439. side: {
  24440. height: math.unit(2 + 6 / 12, "feet"),
  24441. weight: math.unit(30, "lb"),
  24442. name: "Side",
  24443. image: {
  24444. source: "./media/characters/layla/side.svg",
  24445. extra: 244 / 188,
  24446. bottom: 18.2 / 262.1
  24447. }
  24448. },
  24449. back: {
  24450. height: math.unit(2 + 6 / 12, "feet"),
  24451. weight: math.unit(30, "lb"),
  24452. name: "Back",
  24453. image: {
  24454. source: "./media/characters/layla/back.svg",
  24455. extra: 308 / 241.5,
  24456. bottom: 8.9 / 316.8
  24457. }
  24458. },
  24459. cumming: {
  24460. height: math.unit(2 + 6 / 12, "feet"),
  24461. weight: math.unit(30, "lb"),
  24462. name: "Cumming",
  24463. image: {
  24464. source: "./media/characters/layla/cumming.svg",
  24465. extra: 342 / 279,
  24466. bottom: 595 / 938
  24467. }
  24468. },
  24469. dickFlaccid: {
  24470. height: math.unit(2.595, "feet"),
  24471. name: "Flaccid Genitals",
  24472. image: {
  24473. source: "./media/characters/layla/dick-flaccid.svg"
  24474. }
  24475. },
  24476. dickErect: {
  24477. height: math.unit(2.359, "feet"),
  24478. name: "Erect Genitals",
  24479. image: {
  24480. source: "./media/characters/layla/dick-erect.svg"
  24481. }
  24482. },
  24483. dragon: {
  24484. height: math.unit(40, "feet"),
  24485. name: "Dragon",
  24486. image: {
  24487. source: "./media/characters/layla/dragon.svg",
  24488. extra: 610/535,
  24489. bottom: 367/977
  24490. }
  24491. },
  24492. taur: {
  24493. height: math.unit(30, "feet"),
  24494. name: "Taur",
  24495. image: {
  24496. source: "./media/characters/layla/taur.svg",
  24497. extra: 1268/1199,
  24498. bottom: 112/1380
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Micro",
  24505. height: math.unit(1, "inch")
  24506. },
  24507. {
  24508. name: "Small",
  24509. height: math.unit(1, "foot")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(2 + 6 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(200, "feet")
  24519. },
  24520. {
  24521. name: "Megamacro",
  24522. height: math.unit(1000, "miles")
  24523. },
  24524. {
  24525. name: "Planetary",
  24526. height: math.unit(8000, "miles")
  24527. },
  24528. {
  24529. name: "True Layla",
  24530. height: math.unit(200000 * 7, "multiverses")
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24536. {
  24537. back: {
  24538. height: math.unit(10.5, "feet"),
  24539. weight: math.unit(800, "lb"),
  24540. name: "Back",
  24541. image: {
  24542. source: "./media/characters/knox/back.svg",
  24543. extra: 1486 / 1089,
  24544. bottom: 107 / 1601.4
  24545. }
  24546. },
  24547. side: {
  24548. height: math.unit(10.5, "feet"),
  24549. weight: math.unit(800, "lb"),
  24550. name: "Side",
  24551. image: {
  24552. source: "./media/characters/knox/side.svg",
  24553. extra: 244 / 218,
  24554. bottom: 14 / 260
  24555. }
  24556. },
  24557. },
  24558. [
  24559. {
  24560. name: "Compact",
  24561. height: math.unit(10.5, "feet"),
  24562. default: true
  24563. },
  24564. {
  24565. name: "Dynamax",
  24566. height: math.unit(210, "feet")
  24567. },
  24568. {
  24569. name: "Full Macro",
  24570. height: math.unit(850, "feet")
  24571. },
  24572. ]
  24573. ))
  24574. characterMakers.push(() => makeCharacter(
  24575. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24576. {
  24577. front: {
  24578. height: math.unit(28, "feet"),
  24579. weight: math.unit(10500, "lb"),
  24580. name: "Front",
  24581. image: {
  24582. source: "./media/characters/kayda/front.svg",
  24583. extra: 1536 / 1428,
  24584. bottom: 68.7 / 1603
  24585. }
  24586. },
  24587. back: {
  24588. height: math.unit(28, "feet"),
  24589. weight: math.unit(10500, "lb"),
  24590. name: "Back",
  24591. image: {
  24592. source: "./media/characters/kayda/back.svg",
  24593. extra: 1557 / 1464,
  24594. bottom: 39.5 / 1597.49
  24595. }
  24596. },
  24597. dick: {
  24598. height: math.unit(3.858, "feet"),
  24599. name: "Dick",
  24600. image: {
  24601. source: "./media/characters/kayda/dick.svg"
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Macro",
  24608. height: math.unit(28, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(10 + 11 / 12, "feet"),
  24618. weight: math.unit(1400, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/brian/front.svg",
  24622. extra: 737 / 692,
  24623. bottom: 55.4 / 785
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(10 + 11 / 12, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(5 + 8 / 12, "feet"),
  24640. weight: math.unit(140, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/khemri/front.svg",
  24644. extra: 4780 / 4059,
  24645. bottom: 80.1 / 4859.25
  24646. }
  24647. },
  24648. },
  24649. [
  24650. {
  24651. name: "Micro",
  24652. height: math.unit(6, "inches")
  24653. },
  24654. {
  24655. name: "Normal",
  24656. height: math.unit(5 + 8 / 12, "feet"),
  24657. default: true
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24663. {
  24664. front: {
  24665. height: math.unit(13, "feet"),
  24666. weight: math.unit(1700, "lb"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/felix-braveheart/front.svg",
  24670. extra: 1222 / 1157,
  24671. bottom: 53.2 / 1280
  24672. }
  24673. },
  24674. back: {
  24675. height: math.unit(13, "feet"),
  24676. weight: math.unit(1700, "lb"),
  24677. name: "Back",
  24678. image: {
  24679. source: "./media/characters/felix-braveheart/back.svg",
  24680. extra: 1277 / 1203,
  24681. bottom: 50.2 / 1327
  24682. }
  24683. },
  24684. feral: {
  24685. height: math.unit(6, "feet"),
  24686. weight: math.unit(400, "lb"),
  24687. name: "Feral",
  24688. image: {
  24689. source: "./media/characters/felix-braveheart/feral.svg",
  24690. extra: 682 / 625,
  24691. bottom: 6.9 / 688
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(13, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24705. {
  24706. side: {
  24707. height: math.unit(5 + 11 / 12, "feet"),
  24708. weight: math.unit(1400, "lb"),
  24709. name: "Side",
  24710. image: {
  24711. source: "./media/characters/shadow-blade/side.svg",
  24712. extra: 1726 / 1267,
  24713. bottom: 58.4 / 1785
  24714. }
  24715. },
  24716. },
  24717. [
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(5 + 11 / 12, "feet"),
  24721. default: true
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(1 + 6 / 12, "feet"),
  24730. weight: math.unit(25, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/karla-halldor/front.svg",
  24734. extra: 1459 / 1383,
  24735. bottom: 12 / 1472
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Normal",
  24742. height: math.unit(1 + 6 / 12, "feet"),
  24743. default: true
  24744. },
  24745. ]
  24746. ))
  24747. characterMakers.push(() => makeCharacter(
  24748. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24749. {
  24750. front: {
  24751. height: math.unit(6 + 2 / 12, "feet"),
  24752. weight: math.unit(160, "lb"),
  24753. name: "Front",
  24754. image: {
  24755. source: "./media/characters/ariam/front.svg",
  24756. extra: 1073/976,
  24757. bottom: 52/1125
  24758. }
  24759. },
  24760. back: {
  24761. height: math.unit(6 + 2/12, "feet"),
  24762. weight: math.unit(160, "lb"),
  24763. name: "Back",
  24764. image: {
  24765. source: "./media/characters/ariam/back.svg",
  24766. extra: 1103/1023,
  24767. bottom: 9/1112
  24768. }
  24769. },
  24770. dressed: {
  24771. height: math.unit(6 + 2/12, "feet"),
  24772. weight: math.unit(160, "lb"),
  24773. name: "Dressed",
  24774. image: {
  24775. source: "./media/characters/ariam/dressed.svg",
  24776. extra: 1099/1009,
  24777. bottom: 25/1124
  24778. }
  24779. },
  24780. squatting: {
  24781. height: math.unit(4.1, "feet"),
  24782. weight: math.unit(160, "lb"),
  24783. name: "Squatting",
  24784. image: {
  24785. source: "./media/characters/ariam/squatting.svg",
  24786. extra: 2617 / 2112,
  24787. bottom: 61.2 / 2681,
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(6 + 2 / 12, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Normal+",
  24799. height: math.unit(4, "meters")
  24800. },
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(50, "meters")
  24804. },
  24805. {
  24806. name: "Macro+",
  24807. height: math.unit(100, "meters")
  24808. },
  24809. {
  24810. name: "Megamacro",
  24811. height: math.unit(20, "km")
  24812. },
  24813. {
  24814. name: "Caretaker",
  24815. height: math.unit(444, "megameters")
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(1.67, "meters"),
  24824. weight: math.unit(140, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24828. extra: 438 / 410,
  24829. bottom: 0.75 / 439
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Shrunken",
  24836. height: math.unit(7.6, "cm")
  24837. },
  24838. {
  24839. name: "Human Scale",
  24840. height: math.unit(1.67, "meters")
  24841. },
  24842. {
  24843. name: "Wolxi Scale",
  24844. height: math.unit(36.7, "meters"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24851. {
  24852. front: {
  24853. height: math.unit(1.73, "meters"),
  24854. weight: math.unit(240, "lb"),
  24855. name: "Front",
  24856. image: {
  24857. source: "./media/characters/izue-two-mothers/front.svg",
  24858. extra: 469 / 437,
  24859. bottom: 1.24 / 470.6
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Shrunken",
  24866. height: math.unit(7.86, "cm")
  24867. },
  24868. {
  24869. name: "Human Scale",
  24870. height: math.unit(1.73, "meters")
  24871. },
  24872. {
  24873. name: "Wolxi Scale",
  24874. height: math.unit(38, "meters"),
  24875. default: true
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(1.55, "meters"),
  24884. weight: math.unit(120, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/teeku-love-shack/front.svg",
  24888. extra: 387 / 362,
  24889. bottom: 1.51 / 388
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Shrunken",
  24896. height: math.unit(7, "cm")
  24897. },
  24898. {
  24899. name: "Human Scale",
  24900. height: math.unit(1.55, "meters")
  24901. },
  24902. {
  24903. name: "Wolxi Scale",
  24904. height: math.unit(34.1, "meters"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(1.83, "meters"),
  24914. weight: math.unit(135, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/dejma-the-red/front.svg",
  24918. extra: 480 / 458,
  24919. bottom: 1.8 / 482
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Shrunken",
  24926. height: math.unit(8.3, "cm")
  24927. },
  24928. {
  24929. name: "Human Scale",
  24930. height: math.unit(1.83, "meters")
  24931. },
  24932. {
  24933. name: "Wolxi Scale",
  24934. height: math.unit(40, "meters"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(1.78, "meters"),
  24944. weight: math.unit(65, "kg"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/aki/front.svg",
  24948. extra: 452 / 415
  24949. }
  24950. },
  24951. frontNsfw: {
  24952. height: math.unit(1.78, "meters"),
  24953. weight: math.unit(65, "kg"),
  24954. name: "Front (NSFW)",
  24955. image: {
  24956. source: "./media/characters/aki/front-nsfw.svg",
  24957. extra: 452 / 415
  24958. }
  24959. },
  24960. back: {
  24961. height: math.unit(1.78, "meters"),
  24962. weight: math.unit(65, "kg"),
  24963. name: "Back",
  24964. image: {
  24965. source: "./media/characters/aki/back.svg",
  24966. extra: 452 / 415
  24967. }
  24968. },
  24969. rump: {
  24970. height: math.unit(2.05, "feet"),
  24971. name: "Rump",
  24972. image: {
  24973. source: "./media/characters/aki/rump.svg"
  24974. }
  24975. },
  24976. dick: {
  24977. height: math.unit(0.95, "feet"),
  24978. name: "Dick",
  24979. image: {
  24980. source: "./media/characters/aki/dick.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Micro",
  24987. height: math.unit(15, "cm")
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(178, "cm"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Macro",
  24996. height: math.unit(214, "m")
  24997. },
  24998. {
  24999. name: "Macro+",
  25000. height: math.unit(534, "m")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5 + 5 / 12, "feet"),
  25009. weight: math.unit(120, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/ari/front.svg",
  25013. extra: 1550/1471,
  25014. bottom: 39/1589
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(5 + 5 / 12, "feet")
  25022. },
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(100, "feet"),
  25026. default: true
  25027. },
  25028. {
  25029. name: "Megamacro",
  25030. height: math.unit(100, "miles")
  25031. },
  25032. {
  25033. name: "Gigamacro",
  25034. height: math.unit(80000, "miles")
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25040. {
  25041. side: {
  25042. height: math.unit(9, "feet"),
  25043. weight: math.unit(400, "kg"),
  25044. name: "Side",
  25045. image: {
  25046. source: "./media/characters/bolt/side.svg",
  25047. extra: 1126 / 896,
  25048. bottom: 60 / 1187.3,
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Micro",
  25055. height: math.unit(5, "inches")
  25056. },
  25057. {
  25058. name: "Normal",
  25059. height: math.unit(9, "feet"),
  25060. default: true
  25061. },
  25062. {
  25063. name: "Macro",
  25064. height: math.unit(700, "feet")
  25065. },
  25066. {
  25067. name: "Max Size",
  25068. height: math.unit(1.52e22, "yottameters")
  25069. },
  25070. ]
  25071. ))
  25072. characterMakers.push(() => makeCharacter(
  25073. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25074. {
  25075. front: {
  25076. height: math.unit(4.3, "meters"),
  25077. weight: math.unit(3, "tons"),
  25078. name: "Front",
  25079. image: {
  25080. source: "./media/characters/draekon-sylviar/front.svg",
  25081. extra: 2072/1512,
  25082. bottom: 74/2146
  25083. }
  25084. },
  25085. back: {
  25086. height: math.unit(4.3, "meters"),
  25087. weight: math.unit(3, "tons"),
  25088. name: "Back",
  25089. image: {
  25090. source: "./media/characters/draekon-sylviar/back.svg",
  25091. extra: 1639/1483,
  25092. bottom: 41/1680
  25093. }
  25094. },
  25095. feral: {
  25096. height: math.unit(1.15, "meters"),
  25097. weight: math.unit(3, "tons"),
  25098. name: "Feral",
  25099. image: {
  25100. source: "./media/characters/draekon-sylviar/feral.svg",
  25101. extra: 1033/395,
  25102. bottom: 130/1163
  25103. }
  25104. },
  25105. maw: {
  25106. height: math.unit(1.3, "meters"),
  25107. name: "Maw",
  25108. image: {
  25109. source: "./media/characters/draekon-sylviar/maw.svg"
  25110. }
  25111. },
  25112. mawSeparated: {
  25113. height: math.unit(1.53, "meters"),
  25114. name: "Separated Maw",
  25115. image: {
  25116. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25117. }
  25118. },
  25119. tail: {
  25120. height: math.unit(1.15, "meters"),
  25121. name: "Tail",
  25122. image: {
  25123. source: "./media/characters/draekon-sylviar/tail.svg"
  25124. }
  25125. },
  25126. tailDick: {
  25127. height: math.unit(1.15, "meters"),
  25128. name: "Tail (Dick)",
  25129. image: {
  25130. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25131. }
  25132. },
  25133. tailDickSeparated: {
  25134. height: math.unit(1.19, "meters"),
  25135. name: "Tail (Separated Dick)",
  25136. image: {
  25137. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25138. }
  25139. },
  25140. slit: {
  25141. height: math.unit(1, "meters"),
  25142. name: "Slit",
  25143. image: {
  25144. source: "./media/characters/draekon-sylviar/slit.svg"
  25145. }
  25146. },
  25147. dick: {
  25148. height: math.unit(1.15, "meters"),
  25149. name: "Dick",
  25150. image: {
  25151. source: "./media/characters/draekon-sylviar/dick.svg"
  25152. }
  25153. },
  25154. dickSeparated: {
  25155. height: math.unit(1.1, "meters"),
  25156. name: "Separated Dick",
  25157. image: {
  25158. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25159. }
  25160. },
  25161. sheath: {
  25162. height: math.unit(1.15, "meters"),
  25163. name: "Sheath",
  25164. image: {
  25165. source: "./media/characters/draekon-sylviar/sheath.svg"
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Small",
  25172. height: math.unit(4.53 / 2, "meters"),
  25173. default: true
  25174. },
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(4.53, "meters"),
  25178. default: true
  25179. },
  25180. {
  25181. name: "Large",
  25182. height: math.unit(4.53 * 2, "meters"),
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(6 + 2 / 12, "feet"),
  25191. weight: math.unit(180, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/brawler/front.svg",
  25195. extra: 3301 / 3027,
  25196. bottom: 138 / 3439
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Normal",
  25203. height: math.unit(6 + 2 / 12, "feet"),
  25204. default: true
  25205. },
  25206. ]
  25207. ))
  25208. characterMakers.push(() => makeCharacter(
  25209. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25210. {
  25211. front: {
  25212. height: math.unit(11, "feet"),
  25213. weight: math.unit(1000, "lb"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/alex/front.svg",
  25217. bottom: 44.5 / 620
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Micro",
  25224. height: math.unit(5, "inches")
  25225. },
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(11, "feet"),
  25229. default: true
  25230. },
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(9.5e9, "feet")
  25234. },
  25235. {
  25236. name: "Max Size",
  25237. height: math.unit(1.4e283, "yottameters")
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25243. {
  25244. female: {
  25245. height: math.unit(29.9, "m"),
  25246. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25247. name: "Female",
  25248. image: {
  25249. source: "./media/characters/zenari/female.svg",
  25250. extra: 3281.6 / 3217,
  25251. bottom: 72.2 / 3353
  25252. }
  25253. },
  25254. male: {
  25255. height: math.unit(27.7, "m"),
  25256. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25257. name: "Male",
  25258. image: {
  25259. source: "./media/characters/zenari/male.svg",
  25260. extra: 3008 / 2991,
  25261. bottom: 54.6 / 3069
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Macro",
  25268. height: math.unit(29.7, "meters"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25275. {
  25276. female: {
  25277. height: math.unit(23.8, "m"),
  25278. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25279. name: "Female",
  25280. image: {
  25281. source: "./media/characters/mactarian/female.svg",
  25282. extra: 2662 / 2569,
  25283. bottom: 73 / 2736
  25284. }
  25285. },
  25286. male: {
  25287. height: math.unit(23.8, "m"),
  25288. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25289. name: "Male",
  25290. image: {
  25291. source: "./media/characters/mactarian/male.svg",
  25292. extra: 2673 / 2600,
  25293. bottom: 76 / 2750
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Macro",
  25300. height: math.unit(23.8, "meters"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25307. {
  25308. female: {
  25309. height: math.unit(19.3, "m"),
  25310. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25311. name: "Female",
  25312. image: {
  25313. source: "./media/characters/umok/female.svg",
  25314. extra: 2186 / 2078,
  25315. bottom: 87 / 2277
  25316. }
  25317. },
  25318. male: {
  25319. height: math.unit(19.5, "m"),
  25320. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25321. name: "Male",
  25322. image: {
  25323. source: "./media/characters/umok/male.svg",
  25324. extra: 2233 / 2140,
  25325. bottom: 24.4 / 2258
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Macro",
  25332. height: math.unit(19.3, "meters"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25339. {
  25340. female: {
  25341. height: math.unit(26.15, "m"),
  25342. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25343. name: "Female",
  25344. image: {
  25345. source: "./media/characters/joraxian/female.svg",
  25346. extra: 2912 / 2824,
  25347. bottom: 36 / 2956
  25348. }
  25349. },
  25350. male: {
  25351. height: math.unit(25.4, "m"),
  25352. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25353. name: "Male",
  25354. image: {
  25355. source: "./media/characters/joraxian/male.svg",
  25356. extra: 2877 / 2721,
  25357. bottom: 82 / 2967
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(26.15, "meters"),
  25365. default: true
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25371. {
  25372. female: {
  25373. height: math.unit(21.6, "m"),
  25374. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25375. name: "Female",
  25376. image: {
  25377. source: "./media/characters/sthara/female.svg",
  25378. extra: 2516 / 2347,
  25379. bottom: 21.5 / 2537
  25380. }
  25381. },
  25382. male: {
  25383. height: math.unit(24, "m"),
  25384. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25385. name: "Male",
  25386. image: {
  25387. source: "./media/characters/sthara/male.svg",
  25388. extra: 2732 / 2607,
  25389. bottom: 23 / 2732
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Macro",
  25396. height: math.unit(21.6, "meters"),
  25397. default: true
  25398. },
  25399. ]
  25400. ))
  25401. characterMakers.push(() => makeCharacter(
  25402. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25403. {
  25404. front: {
  25405. height: math.unit(6 + 4 / 12, "feet"),
  25406. weight: math.unit(175, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/luka-bryzant/front.svg",
  25410. extra: 311 / 289,
  25411. bottom: 4 / 315
  25412. }
  25413. },
  25414. back: {
  25415. height: math.unit(6 + 4 / 12, "feet"),
  25416. weight: math.unit(175, "lb"),
  25417. name: "Back",
  25418. image: {
  25419. source: "./media/characters/luka-bryzant/back.svg",
  25420. extra: 311 / 289,
  25421. bottom: 3.8 / 313.7
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Micro",
  25428. height: math.unit(10, "inches")
  25429. },
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(6 + 4 / 12, "feet"),
  25433. default: true
  25434. },
  25435. {
  25436. name: "Large",
  25437. height: math.unit(12, "feet")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(5 + 7 / 12, "feet"),
  25446. weight: math.unit(185, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/aman-aquila/front.svg",
  25450. extra: 1013 / 976,
  25451. bottom: 45.6 / 1057
  25452. }
  25453. },
  25454. side: {
  25455. height: math.unit(5 + 7 / 12, "feet"),
  25456. weight: math.unit(185, "lb"),
  25457. name: "Side",
  25458. image: {
  25459. source: "./media/characters/aman-aquila/side.svg",
  25460. extra: 1054 / 1011,
  25461. bottom: 15 / 1070
  25462. }
  25463. },
  25464. back: {
  25465. height: math.unit(5 + 7 / 12, "feet"),
  25466. weight: math.unit(185, "lb"),
  25467. name: "Back",
  25468. image: {
  25469. source: "./media/characters/aman-aquila/back.svg",
  25470. extra: 1026 / 970,
  25471. bottom: 12 / 1039
  25472. }
  25473. },
  25474. head: {
  25475. height: math.unit(1.211, "feet"),
  25476. name: "Head",
  25477. image: {
  25478. source: "./media/characters/aman-aquila/head.svg",
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Minimicro",
  25485. height: math.unit(0.057, "inches")
  25486. },
  25487. {
  25488. name: "Micro",
  25489. height: math.unit(7, "inches")
  25490. },
  25491. {
  25492. name: "Mini",
  25493. height: math.unit(3 + 7 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(5 + 7 / 12, "feet"),
  25498. default: true
  25499. },
  25500. {
  25501. name: "Macro",
  25502. height: math.unit(157 + 7 / 12, "feet")
  25503. },
  25504. {
  25505. name: "Megamacro",
  25506. height: math.unit(1557 + 7 / 12, "feet")
  25507. },
  25508. {
  25509. name: "Gigamacro",
  25510. height: math.unit(15557 + 7 / 12, "feet")
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(3 + 2 / 12, "inches"),
  25519. weight: math.unit(0.3, "ounces"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/hiphae/front.svg",
  25523. extra: 1931 / 1683,
  25524. bottom: 24 / 1955
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(3 + 1 / 2, "inches"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(5 + 10 / 12, "feet"),
  25541. weight: math.unit(165, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/nicky/front.svg",
  25545. extra: 3144 / 2886,
  25546. bottom: 45.6 / 3192
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(5 + 10 / 12, "feet"),
  25551. weight: math.unit(165, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/nicky/back.svg",
  25555. extra: 3055 / 2804,
  25556. bottom: 28.4 / 3087
  25557. }
  25558. },
  25559. frontclothed: {
  25560. height: math.unit(5 + 10 / 12, "feet"),
  25561. weight: math.unit(165, "lb"),
  25562. name: "Front-clothed",
  25563. image: {
  25564. source: "./media/characters/nicky/front-clothed.svg",
  25565. extra: 3184.9 / 2926.9,
  25566. bottom: 86.5 / 3239.9
  25567. }
  25568. },
  25569. foot: {
  25570. height: math.unit(1.16, "feet"),
  25571. name: "Foot",
  25572. image: {
  25573. source: "./media/characters/nicky/foot.svg"
  25574. }
  25575. },
  25576. feet: {
  25577. height: math.unit(1.34, "feet"),
  25578. name: "Feet",
  25579. image: {
  25580. source: "./media/characters/nicky/feet.svg"
  25581. }
  25582. },
  25583. maw: {
  25584. height: math.unit(0.9, "feet"),
  25585. name: "Maw",
  25586. image: {
  25587. source: "./media/characters/nicky/maw.svg"
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(5 + 10 / 12, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Macro",
  25599. height: math.unit(60, "feet")
  25600. },
  25601. {
  25602. name: "Megamacro",
  25603. height: math.unit(1, "mile")
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25609. {
  25610. side: {
  25611. height: math.unit(10, "feet"),
  25612. weight: math.unit(600, "lb"),
  25613. name: "Side",
  25614. image: {
  25615. source: "./media/characters/blair/side.svg",
  25616. bottom: 16.6 / 475,
  25617. extra: 458 / 431
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Micro",
  25624. height: math.unit(8, "inches")
  25625. },
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(10, "feet"),
  25629. default: true
  25630. },
  25631. {
  25632. name: "Macro",
  25633. height: math.unit(180, "feet")
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25639. {
  25640. front: {
  25641. height: math.unit(5 + 4 / 12, "feet"),
  25642. weight: math.unit(125, "lb"),
  25643. name: "Front",
  25644. image: {
  25645. source: "./media/characters/fisher/front.svg",
  25646. extra: 444 / 390,
  25647. bottom: 2 / 444.8
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Micro",
  25654. height: math.unit(4, "inches")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(5 + 4 / 12, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "Macro",
  25663. height: math.unit(100, "feet")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(6.71, "feet"),
  25672. weight: math.unit(200, "lb"),
  25673. capacity: math.unit(1000000, "people"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/gliss/front.svg",
  25677. extra: 2347 / 2231,
  25678. bottom: 113 / 2462
  25679. }
  25680. },
  25681. hammerspaceSize: {
  25682. height: math.unit(6.71 * 717, "feet"),
  25683. weight: math.unit(200, "lb"),
  25684. capacity: math.unit(1000000, "people"),
  25685. name: "Hammerspace Size",
  25686. image: {
  25687. source: "./media/characters/gliss/front.svg",
  25688. extra: 2347 / 2231,
  25689. bottom: 113 / 2462
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(6.71, "feet"),
  25697. default: true
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25703. {
  25704. side: {
  25705. height: math.unit(1.44, "m"),
  25706. weight: math.unit(80, "kg"),
  25707. name: "Side",
  25708. image: {
  25709. source: "./media/characters/dune-anderson/side.svg",
  25710. bottom: 49 / 1426
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Wolf-sized",
  25717. height: math.unit(1.44, "meters")
  25718. },
  25719. {
  25720. name: "Normal",
  25721. height: math.unit(5.05, "meters"),
  25722. default: true
  25723. },
  25724. {
  25725. name: "Big",
  25726. height: math.unit(14.4, "meters")
  25727. },
  25728. {
  25729. name: "Huge",
  25730. height: math.unit(144, "meters")
  25731. },
  25732. ]
  25733. ))
  25734. characterMakers.push(() => makeCharacter(
  25735. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25736. {
  25737. front: {
  25738. height: math.unit(7, "feet"),
  25739. weight: math.unit(425, "lb"),
  25740. name: "Front",
  25741. image: {
  25742. source: "./media/characters/hind/front.svg",
  25743. extra: 2091 / 1860,
  25744. bottom: 129 / 2220
  25745. }
  25746. },
  25747. back: {
  25748. height: math.unit(7, "feet"),
  25749. weight: math.unit(425, "lb"),
  25750. name: "Back",
  25751. image: {
  25752. source: "./media/characters/hind/back.svg",
  25753. extra: 2091 / 1860,
  25754. bottom: 24.6 / 2309
  25755. }
  25756. },
  25757. tail: {
  25758. height: math.unit(2.8, "feet"),
  25759. name: "Tail",
  25760. image: {
  25761. source: "./media/characters/hind/tail.svg"
  25762. }
  25763. },
  25764. head: {
  25765. height: math.unit(2.55, "feet"),
  25766. name: "Head",
  25767. image: {
  25768. source: "./media/characters/hind/head.svg"
  25769. }
  25770. },
  25771. },
  25772. [
  25773. {
  25774. name: "XS",
  25775. height: math.unit(0.7, "feet")
  25776. },
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(7, "feet"),
  25780. default: true
  25781. },
  25782. {
  25783. name: "XL",
  25784. height: math.unit(70, "feet")
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(2.1, "meters"),
  25793. weight: math.unit(150, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/tharquench-sizestealer/front.svg",
  25797. extra: 1605/1470,
  25798. bottom: 36/1641
  25799. }
  25800. },
  25801. frontAlt: {
  25802. height: math.unit(2.1, "meters"),
  25803. weight: math.unit(150, "lb"),
  25804. name: "Front (Alt)",
  25805. image: {
  25806. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25807. extra: 2318 / 2063,
  25808. bottom: 93.4 / 2410
  25809. }
  25810. },
  25811. },
  25812. [
  25813. {
  25814. name: "Nano",
  25815. height: math.unit(1, "mm")
  25816. },
  25817. {
  25818. name: "Micro",
  25819. height: math.unit(1, "cm")
  25820. },
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(2.1, "meters"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(7 + 5 / 12, "feet"),
  25833. weight: math.unit(357, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/solex-draconov/front.svg",
  25837. extra: 1993 / 1865,
  25838. bottom: 117 / 2111
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Natural Height",
  25845. height: math.unit(7 + 5 / 12, "feet"),
  25846. default: true
  25847. },
  25848. {
  25849. name: "Macro",
  25850. height: math.unit(350, "feet")
  25851. },
  25852. {
  25853. name: "Macro+",
  25854. height: math.unit(1000, "feet")
  25855. },
  25856. {
  25857. name: "Megamacro",
  25858. height: math.unit(20, "km")
  25859. },
  25860. {
  25861. name: "Megamacro+",
  25862. height: math.unit(1000, "km")
  25863. },
  25864. {
  25865. name: "Gigamacro",
  25866. height: math.unit(2.5, "Gm")
  25867. },
  25868. {
  25869. name: "Teramacro",
  25870. height: math.unit(15, "Tm")
  25871. },
  25872. {
  25873. name: "Galactic",
  25874. height: math.unit(30, "Zm")
  25875. },
  25876. {
  25877. name: "Universal",
  25878. height: math.unit(21000, "Ym")
  25879. },
  25880. {
  25881. name: "Omniversal",
  25882. height: math.unit(9.861e50, "Ym")
  25883. },
  25884. {
  25885. name: "Existential",
  25886. height: math.unit(1e300, "meters")
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25892. {
  25893. side: {
  25894. height: math.unit(25, "feet"),
  25895. weight: math.unit(90000, "lb"),
  25896. name: "Side",
  25897. image: {
  25898. source: "./media/characters/mandarax/side.svg",
  25899. extra: 614 / 332,
  25900. bottom: 55 / 630
  25901. }
  25902. },
  25903. lounging: {
  25904. height: math.unit(15.4, "feet"),
  25905. weight: math.unit(90000, "lb"),
  25906. name: "Lounging",
  25907. image: {
  25908. source: "./media/characters/mandarax/lounging.svg",
  25909. extra: 817/609,
  25910. bottom: 685/1502
  25911. }
  25912. },
  25913. head: {
  25914. height: math.unit(11.4, "feet"),
  25915. name: "Head",
  25916. image: {
  25917. source: "./media/characters/mandarax/head.svg"
  25918. }
  25919. },
  25920. belly: {
  25921. height: math.unit(33, "feet"),
  25922. name: "Belly",
  25923. capacity: math.unit(500, "people"),
  25924. image: {
  25925. source: "./media/characters/mandarax/belly.svg"
  25926. }
  25927. },
  25928. dick: {
  25929. height: math.unit(8.46, "feet"),
  25930. name: "Dick",
  25931. image: {
  25932. source: "./media/characters/mandarax/dick.svg"
  25933. }
  25934. },
  25935. top: {
  25936. height: math.unit(28, "meters"),
  25937. name: "Top",
  25938. image: {
  25939. source: "./media/characters/mandarax/top.svg"
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(25, "feet"),
  25947. default: true
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(5, "feet"),
  25956. weight: math.unit(90, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/pixil/front.svg",
  25960. extra: 2000 / 1618,
  25961. bottom: 12.3 / 2011
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(5, "feet"),
  25969. default: true
  25970. },
  25971. {
  25972. name: "Megamacro",
  25973. height: math.unit(10, "miles"),
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(7 + 2 / 12, "feet"),
  25982. weight: math.unit(200, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/angel/front.svg",
  25986. extra: 1830 / 1737,
  25987. bottom: 22.6 / 1854,
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(7 + 2 / 12, "feet"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Macro",
  25999. height: math.unit(1000, "feet")
  26000. },
  26001. {
  26002. name: "Megamacro",
  26003. height: math.unit(2, "miles")
  26004. },
  26005. {
  26006. name: "Gigamacro",
  26007. height: math.unit(20, "earths")
  26008. },
  26009. ]
  26010. ))
  26011. characterMakers.push(() => makeCharacter(
  26012. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26013. {
  26014. front: {
  26015. height: math.unit(5, "feet"),
  26016. weight: math.unit(180, "lb"),
  26017. name: "Front",
  26018. image: {
  26019. source: "./media/characters/mekana/front.svg",
  26020. extra: 1671 / 1605,
  26021. bottom: 3.5 / 1691
  26022. }
  26023. },
  26024. side: {
  26025. height: math.unit(5, "feet"),
  26026. weight: math.unit(180, "lb"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/mekana/side.svg",
  26030. extra: 1671 / 1605,
  26031. bottom: 3.5 / 1691
  26032. }
  26033. },
  26034. back: {
  26035. height: math.unit(5, "feet"),
  26036. weight: math.unit(180, "lb"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/mekana/back.svg",
  26040. extra: 1671 / 1605,
  26041. bottom: 3.5 / 1691
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(5, "feet"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26055. {
  26056. front: {
  26057. height: math.unit(4 + 6 / 12, "feet"),
  26058. weight: math.unit(80, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/pixie/front.svg",
  26062. extra: 1924 / 1825,
  26063. bottom: 22.4 / 1946
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(4 + 6 / 12, "feet"),
  26071. default: true
  26072. },
  26073. {
  26074. name: "Macro",
  26075. height: math.unit(40, "feet")
  26076. },
  26077. ]
  26078. ))
  26079. characterMakers.push(() => makeCharacter(
  26080. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26081. {
  26082. front: {
  26083. height: math.unit(2.1, "meters"),
  26084. weight: math.unit(200, "lb"),
  26085. name: "Front",
  26086. image: {
  26087. source: "./media/characters/the-lascivious/front.svg",
  26088. extra: 1 / 0.893,
  26089. bottom: 3.5 / 573.7
  26090. }
  26091. },
  26092. },
  26093. [
  26094. {
  26095. name: "Human Scale",
  26096. height: math.unit(2.1, "meters")
  26097. },
  26098. {
  26099. name: "Wolxi Scale",
  26100. height: math.unit(46.2, "m"),
  26101. default: true
  26102. },
  26103. {
  26104. name: "Boinker of Buildings",
  26105. height: math.unit(10, "km")
  26106. },
  26107. {
  26108. name: "Shagger of Skyscrapers",
  26109. height: math.unit(40, "km")
  26110. },
  26111. {
  26112. name: "Banger of Boroughs",
  26113. height: math.unit(4000, "km")
  26114. },
  26115. {
  26116. name: "Screwer of States",
  26117. height: math.unit(100000, "km")
  26118. },
  26119. {
  26120. name: "Pounder of Planets",
  26121. height: math.unit(2000000, "km")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(6, "feet"),
  26130. weight: math.unit(150, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/aj/front.svg",
  26134. extra: 2039 / 1562,
  26135. bottom: 40 / 2079
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(11 + 6 / 12, "feet"),
  26143. default: true
  26144. },
  26145. {
  26146. name: "Megamacro",
  26147. height: math.unit(60, "megameters")
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26153. {
  26154. side: {
  26155. height: math.unit(31 + 8 / 12, "feet"),
  26156. weight: math.unit(75000, "kg"),
  26157. name: "Side",
  26158. image: {
  26159. source: "./media/characters/koros/side.svg",
  26160. extra: 1442 / 1297,
  26161. bottom: 122.7 / 1562
  26162. }
  26163. },
  26164. dicksKingsCrown: {
  26165. height: math.unit(6, "feet"),
  26166. name: "Dicks (King's Crown)",
  26167. image: {
  26168. source: "./media/characters/koros/dicks-kings-crown.svg"
  26169. }
  26170. },
  26171. dicksTailSet: {
  26172. height: math.unit(3, "feet"),
  26173. name: "Dicks (Tail Set)",
  26174. image: {
  26175. source: "./media/characters/koros/dicks-tail-set.svg"
  26176. }
  26177. },
  26178. dickCumming: {
  26179. height: math.unit(7.98, "feet"),
  26180. name: "Dick (Cumming)",
  26181. image: {
  26182. source: "./media/characters/koros/dick-cumming.svg"
  26183. }
  26184. },
  26185. dicksBack: {
  26186. height: math.unit(5.9, "feet"),
  26187. name: "Dicks (Back)",
  26188. image: {
  26189. source: "./media/characters/koros/dicks-back.svg"
  26190. }
  26191. },
  26192. dicksFront: {
  26193. height: math.unit(3.72, "feet"),
  26194. name: "Dicks (Front)",
  26195. image: {
  26196. source: "./media/characters/koros/dicks-front.svg"
  26197. }
  26198. },
  26199. dicksPeeking: {
  26200. height: math.unit(3.0, "feet"),
  26201. name: "Dicks (Peeking)",
  26202. image: {
  26203. source: "./media/characters/koros/dicks-peeking.svg"
  26204. }
  26205. },
  26206. eye: {
  26207. height: math.unit(1.7, "feet"),
  26208. name: "Eye",
  26209. image: {
  26210. source: "./media/characters/koros/eye.svg"
  26211. }
  26212. },
  26213. headFront: {
  26214. height: math.unit(11.69, "feet"),
  26215. name: "Head (Front)",
  26216. image: {
  26217. source: "./media/characters/koros/head-front.svg"
  26218. }
  26219. },
  26220. headSide: {
  26221. height: math.unit(14, "feet"),
  26222. name: "Head (Side)",
  26223. image: {
  26224. source: "./media/characters/koros/head-side.svg"
  26225. }
  26226. },
  26227. leg: {
  26228. height: math.unit(17, "feet"),
  26229. name: "Leg",
  26230. image: {
  26231. source: "./media/characters/koros/leg.svg"
  26232. }
  26233. },
  26234. mawSide: {
  26235. height: math.unit(12.8, "feet"),
  26236. name: "Maw (Side)",
  26237. image: {
  26238. source: "./media/characters/koros/maw-side.svg"
  26239. }
  26240. },
  26241. mawSpitting: {
  26242. height: math.unit(17, "feet"),
  26243. name: "Maw (Spitting)",
  26244. image: {
  26245. source: "./media/characters/koros/maw-spitting.svg"
  26246. }
  26247. },
  26248. slit: {
  26249. height: math.unit(2.8, "feet"),
  26250. name: "Slit",
  26251. image: {
  26252. source: "./media/characters/koros/slit.svg"
  26253. }
  26254. },
  26255. stomach: {
  26256. height: math.unit(6.8, "feet"),
  26257. capacity: math.unit(20, "people"),
  26258. name: "Stomach",
  26259. image: {
  26260. source: "./media/characters/koros/stomach.svg"
  26261. }
  26262. },
  26263. wingspanBottom: {
  26264. height: math.unit(114, "feet"),
  26265. name: "Wingspan (Bottom)",
  26266. image: {
  26267. source: "./media/characters/koros/wingspan-bottom.svg"
  26268. }
  26269. },
  26270. wingspanTop: {
  26271. height: math.unit(104, "feet"),
  26272. name: "Wingspan (Top)",
  26273. image: {
  26274. source: "./media/characters/koros/wingspan-top.svg"
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(31 + 8 / 12, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(18 + 5 / 12, "feet"),
  26291. weight: math.unit(3750, "kg"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/vexx/front.svg",
  26295. extra: 426 / 396,
  26296. bottom: 31.5 / 458
  26297. }
  26298. },
  26299. maw: {
  26300. height: math.unit(6, "feet"),
  26301. name: "Maw",
  26302. image: {
  26303. source: "./media/characters/vexx/maw.svg"
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(18 + 5 / 12, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(17 + 6 / 12, "feet"),
  26320. weight: math.unit(150, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/baadra/front.svg",
  26324. extra: 1694/1553,
  26325. bottom: 179/1873
  26326. }
  26327. },
  26328. frontAlt: {
  26329. height: math.unit(17 + 6 / 12, "feet"),
  26330. weight: math.unit(150, "lb"),
  26331. name: "Front (Alt)",
  26332. image: {
  26333. source: "./media/characters/baadra/front-alt.svg",
  26334. extra: 3137 / 2890,
  26335. bottom: 168.4 / 3305
  26336. }
  26337. },
  26338. back: {
  26339. height: math.unit(17 + 6 / 12, "feet"),
  26340. weight: math.unit(150, "lb"),
  26341. name: "Back",
  26342. image: {
  26343. source: "./media/characters/baadra/back.svg",
  26344. extra: 3142 / 2890,
  26345. bottom: 220 / 3371
  26346. }
  26347. },
  26348. head: {
  26349. height: math.unit(5.45, "feet"),
  26350. name: "Head",
  26351. image: {
  26352. source: "./media/characters/baadra/head.svg"
  26353. }
  26354. },
  26355. headAngry: {
  26356. height: math.unit(4.95, "feet"),
  26357. name: "Head (Angry)",
  26358. image: {
  26359. source: "./media/characters/baadra/head-angry.svg"
  26360. }
  26361. },
  26362. headOpen: {
  26363. height: math.unit(6, "feet"),
  26364. name: "Head (Open)",
  26365. image: {
  26366. source: "./media/characters/baadra/head-open.svg"
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(17 + 6 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(7 + 3 / 12, "feet"),
  26383. weight: math.unit(180, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/juri/front.svg",
  26387. extra: 1401 / 1237,
  26388. bottom: 18.5 / 1418
  26389. }
  26390. },
  26391. side: {
  26392. height: math.unit(7 + 3 / 12, "feet"),
  26393. weight: math.unit(180, "lb"),
  26394. name: "Side",
  26395. image: {
  26396. source: "./media/characters/juri/side.svg",
  26397. extra: 1424 / 1242,
  26398. bottom: 18.5 / 1447
  26399. }
  26400. },
  26401. sitting: {
  26402. height: math.unit(6, "feet"),
  26403. weight: math.unit(180, "lb"),
  26404. name: "Sitting",
  26405. image: {
  26406. source: "./media/characters/juri/sitting.svg",
  26407. extra: 1270 / 1143,
  26408. bottom: 100 / 1343
  26409. }
  26410. },
  26411. back: {
  26412. height: math.unit(7 + 3 / 12, "feet"),
  26413. weight: math.unit(180, "lb"),
  26414. name: "Back",
  26415. image: {
  26416. source: "./media/characters/juri/back.svg",
  26417. extra: 1377 / 1240,
  26418. bottom: 23.7 / 1405
  26419. }
  26420. },
  26421. maw: {
  26422. height: math.unit(2.8, "feet"),
  26423. name: "Maw",
  26424. image: {
  26425. source: "./media/characters/juri/maw.svg"
  26426. }
  26427. },
  26428. stomach: {
  26429. height: math.unit(0.89, "feet"),
  26430. capacity: math.unit(4, "liters"),
  26431. name: "Stomach",
  26432. image: {
  26433. source: "./media/characters/juri/stomach.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Normal",
  26440. height: math.unit(7 + 3 / 12, "feet"),
  26441. default: true
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26447. {
  26448. fox: {
  26449. height: math.unit(5 + 6 / 12, "feet"),
  26450. weight: math.unit(140, "lb"),
  26451. name: "Fox",
  26452. image: {
  26453. source: "./media/characters/maxene-sita/fox.svg",
  26454. extra: 146 / 138,
  26455. bottom: 2.1 / 148.19
  26456. }
  26457. },
  26458. foxLaying: {
  26459. height: math.unit(1.70, "feet"),
  26460. weight: math.unit(140, "lb"),
  26461. name: "Fox (Laying)",
  26462. image: {
  26463. source: "./media/characters/maxene-sita/fox-laying.svg",
  26464. extra: 910 / 572,
  26465. bottom: 71 / 981
  26466. }
  26467. },
  26468. kitsune: {
  26469. height: math.unit(10, "feet"),
  26470. weight: math.unit(800, "lb"),
  26471. name: "Kitsune",
  26472. image: {
  26473. source: "./media/characters/maxene-sita/kitsune.svg",
  26474. extra: 185 / 176,
  26475. bottom: 4.7 / 189.9
  26476. }
  26477. },
  26478. hellhound: {
  26479. height: math.unit(10, "feet"),
  26480. weight: math.unit(700, "lb"),
  26481. name: "Hellhound",
  26482. image: {
  26483. source: "./media/characters/maxene-sita/hellhound.svg",
  26484. extra: 1600 / 1545,
  26485. bottom: 81 / 1681
  26486. }
  26487. },
  26488. },
  26489. [
  26490. {
  26491. name: "Normal",
  26492. height: math.unit(5 + 6 / 12, "feet"),
  26493. default: true
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26499. {
  26500. front: {
  26501. height: math.unit(3 + 4 / 12, "feet"),
  26502. weight: math.unit(70, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/maia/front.svg",
  26506. extra: 227 / 219.5,
  26507. bottom: 40 / 267
  26508. }
  26509. },
  26510. back: {
  26511. height: math.unit(3 + 4 / 12, "feet"),
  26512. weight: math.unit(70, "lb"),
  26513. name: "Back",
  26514. image: {
  26515. source: "./media/characters/maia/back.svg",
  26516. extra: 237 / 225
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(3 + 4 / 12, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(5 + 10 / 12, "feet"),
  26533. weight: math.unit(197, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/jabaro/front.svg",
  26537. extra: 225 / 216,
  26538. bottom: 5.06 / 230
  26539. }
  26540. },
  26541. back: {
  26542. height: math.unit(5 + 10 / 12, "feet"),
  26543. weight: math.unit(197, "lb"),
  26544. name: "Back",
  26545. image: {
  26546. source: "./media/characters/jabaro/back.svg",
  26547. extra: 225 / 219,
  26548. bottom: 1.9 / 227
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 10 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(5 + 8 / 12, "feet"),
  26565. weight: math.unit(139, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/risa/front.svg",
  26569. extra: 270 / 260,
  26570. bottom: 11.2 / 282
  26571. }
  26572. },
  26573. back: {
  26574. height: math.unit(5 + 8 / 12, "feet"),
  26575. weight: math.unit(139, "lb"),
  26576. name: "Back",
  26577. image: {
  26578. source: "./media/characters/risa/back.svg",
  26579. extra: 264 / 255,
  26580. bottom: 4 / 268
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(5 + 8 / 12, "feet"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(2 + 11 / 12, "feet"),
  26597. weight: math.unit(30, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/weatley/front.svg",
  26601. bottom: 10.7 / 414,
  26602. extra: 403.5 / 362
  26603. }
  26604. },
  26605. back: {
  26606. height: math.unit(2 + 11 / 12, "feet"),
  26607. weight: math.unit(30, "lb"),
  26608. name: "Back",
  26609. image: {
  26610. source: "./media/characters/weatley/back.svg",
  26611. bottom: 10.7 / 414,
  26612. extra: 403.5 / 362
  26613. }
  26614. },
  26615. },
  26616. [
  26617. {
  26618. name: "Normal",
  26619. height: math.unit(2 + 11 / 12, "feet"),
  26620. default: true
  26621. },
  26622. ]
  26623. ))
  26624. characterMakers.push(() => makeCharacter(
  26625. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26626. {
  26627. front: {
  26628. height: math.unit(5 + 2 / 12, "feet"),
  26629. weight: math.unit(50, "kg"),
  26630. name: "Front",
  26631. image: {
  26632. source: "./media/characters/mercury-crescent/front.svg",
  26633. extra: 1088 / 1033,
  26634. bottom: 18.9 / 1109
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(5 + 2 / 12, "feet"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26648. {
  26649. front: {
  26650. height: math.unit(2, "feet"),
  26651. weight: math.unit(15, "kg"),
  26652. name: "Front",
  26653. image: {
  26654. source: "./media/characters/diamond-jones/front.svg",
  26655. extra: 727/723,
  26656. bottom: 46/773
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Normal",
  26663. height: math.unit(2, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(3, "feet"),
  26673. weight: math.unit(30, "kg"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/sweet-bit/front.svg",
  26677. extra: 675 / 567,
  26678. bottom: 27.7 / 703
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(3, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26692. {
  26693. side: {
  26694. height: math.unit(9.178, "feet"),
  26695. weight: math.unit(500, "lb"),
  26696. name: "Side",
  26697. image: {
  26698. source: "./media/characters/umbrazen/side.svg",
  26699. extra: 1730 / 1473,
  26700. bottom: 34.6 / 1765
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(9.178, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(10, "feet"),
  26717. weight: math.unit(750, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/arlist/front.svg",
  26721. extra: 961 / 778,
  26722. bottom: 6.2 / 986
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(10, "feet"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(5 + 1 / 12, "feet"),
  26739. weight: math.unit(110, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/aradel/front.svg",
  26743. extra: 324 / 303,
  26744. bottom: 3.6 / 329.4
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(5 + 1 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26758. {
  26759. dressed: {
  26760. height: math.unit(3 + 8 / 12, "feet"),
  26761. weight: math.unit(50, "lb"),
  26762. name: "Dressed",
  26763. image: {
  26764. source: "./media/characters/serryn/dressed.svg",
  26765. extra: 1792 / 1656,
  26766. bottom: 43.5 / 1840
  26767. }
  26768. },
  26769. nude: {
  26770. height: math.unit(3 + 8 / 12, "feet"),
  26771. weight: math.unit(50, "lb"),
  26772. name: "Nude",
  26773. image: {
  26774. source: "./media/characters/serryn/nude.svg",
  26775. extra: 1792 / 1656,
  26776. bottom: 43.5 / 1840
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(3 + 8 / 12, "feet"),
  26784. default: true
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(7 + 10 / 12, "feet"),
  26793. weight: math.unit(255, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/xavier-thyme/front.svg",
  26797. extra: 3733 / 3642,
  26798. bottom: 131 / 3869
  26799. }
  26800. },
  26801. frontRaven: {
  26802. height: math.unit(7 + 10 / 12, "feet"),
  26803. weight: math.unit(255, "lb"),
  26804. name: "Front (Raven)",
  26805. image: {
  26806. source: "./media/characters/xavier-thyme/front-raven.svg",
  26807. extra: 4385 / 3642,
  26808. bottom: 131 / 4517
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(7 + 10 / 12, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(1.6, "m"),
  26825. weight: math.unit(50, "kg"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/kiki/front.svg",
  26829. extra: 4682 / 3610,
  26830. bottom: 115 / 4777
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Normal",
  26837. height: math.unit(1.6, "meters"),
  26838. default: true
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26844. {
  26845. front: {
  26846. height: math.unit(50, "m"),
  26847. weight: math.unit(500, "tonnes"),
  26848. name: "Front",
  26849. image: {
  26850. source: "./media/characters/ryoko/front.svg",
  26851. extra: 4632 / 3926,
  26852. bottom: 193 / 4823
  26853. }
  26854. },
  26855. },
  26856. [
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(50, "meters"),
  26860. default: true
  26861. },
  26862. ]
  26863. ))
  26864. characterMakers.push(() => makeCharacter(
  26865. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26866. {
  26867. front: {
  26868. height: math.unit(30, "m"),
  26869. weight: math.unit(22, "tonnes"),
  26870. name: "Front",
  26871. image: {
  26872. source: "./media/characters/elio/front.svg",
  26873. extra: 4582 / 3720,
  26874. bottom: 236 / 4828
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(30, "meters"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(6 + 3 / 12, "feet"),
  26891. weight: math.unit(120, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/azura/front.svg",
  26895. extra: 1149 / 1135,
  26896. bottom: 45 / 1194
  26897. }
  26898. },
  26899. frontClothed: {
  26900. height: math.unit(6 + 3 / 12, "feet"),
  26901. weight: math.unit(120, "lb"),
  26902. name: "Front (Clothed)",
  26903. image: {
  26904. source: "./media/characters/azura/front-clothed.svg",
  26905. extra: 1149 / 1135,
  26906. bottom: 45 / 1194
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(6 + 3 / 12, "feet"),
  26914. default: true
  26915. },
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(20 + 6 / 12, "feet")
  26919. },
  26920. {
  26921. name: "Megamacro",
  26922. height: math.unit(12, "miles")
  26923. },
  26924. {
  26925. name: "Gigamacro",
  26926. height: math.unit(10000, "miles")
  26927. },
  26928. {
  26929. name: "Teramacro",
  26930. height: math.unit(900000, "miles")
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26936. {
  26937. front: {
  26938. height: math.unit(12, "feet"),
  26939. weight: math.unit(1, "ton"),
  26940. capacity: math.unit(660000, "gallons"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/zeus/front.svg",
  26944. extra: 5005 / 4717,
  26945. bottom: 363 / 5388
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(12, "feet")
  26953. },
  26954. {
  26955. name: "Preferred Size",
  26956. height: math.unit(0.5, "miles"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Giga Horse",
  26961. height: math.unit(300, "miles")
  26962. },
  26963. {
  26964. name: "Riding Planets",
  26965. height: math.unit(30, "megameters")
  26966. },
  26967. {
  26968. name: "Cosmic Giant",
  26969. height: math.unit(3, "zettameters")
  26970. },
  26971. {
  26972. name: "Breeding God",
  26973. height: math.unit(9.92e22, "yottameters")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26979. {
  26980. side: {
  26981. height: math.unit(9, "feet"),
  26982. weight: math.unit(1500, "kg"),
  26983. name: "Side",
  26984. image: {
  26985. source: "./media/characters/fang/side.svg",
  26986. extra: 924 / 866,
  26987. bottom: 47.5 / 972.3
  26988. }
  26989. },
  26990. },
  26991. [
  26992. {
  26993. name: "Normal",
  26994. height: math.unit(9, "feet"),
  26995. default: true
  26996. },
  26997. {
  26998. name: "Macro",
  26999. height: math.unit(75 + 6 / 12, "feet")
  27000. },
  27001. {
  27002. name: "Teramacro",
  27003. height: math.unit(50000, "miles")
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27009. {
  27010. front: {
  27011. height: math.unit(10, "feet"),
  27012. weight: math.unit(2, "tons"),
  27013. name: "Front",
  27014. image: {
  27015. source: "./media/characters/rekhit/front.svg",
  27016. extra: 2796 / 2590,
  27017. bottom: 225 / 3022
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(10, "feet"),
  27025. default: true
  27026. },
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(500, "feet")
  27030. },
  27031. ]
  27032. ))
  27033. characterMakers.push(() => makeCharacter(
  27034. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27035. {
  27036. front: {
  27037. height: math.unit(7 + 6.451 / 12, "feet"),
  27038. weight: math.unit(310, "lb"),
  27039. name: "Front",
  27040. image: {
  27041. source: "./media/characters/dahlia-verrick/front.svg",
  27042. extra: 1488 / 1365,
  27043. bottom: 6.2 / 1495
  27044. }
  27045. },
  27046. back: {
  27047. height: math.unit(7 + 6.451 / 12, "feet"),
  27048. weight: math.unit(310, "lb"),
  27049. name: "Back",
  27050. image: {
  27051. source: "./media/characters/dahlia-verrick/back.svg",
  27052. extra: 1472 / 1351,
  27053. bottom: 5.28 / 1477
  27054. }
  27055. },
  27056. frontBusiness: {
  27057. height: math.unit(7 + 6.451 / 12, "feet"),
  27058. weight: math.unit(200, "lb"),
  27059. name: "Front (Business)",
  27060. image: {
  27061. source: "./media/characters/dahlia-verrick/front-business.svg",
  27062. extra: 1478 / 1381,
  27063. bottom: 5.5 / 1484
  27064. }
  27065. },
  27066. frontCasual: {
  27067. height: math.unit(7 + 6.451 / 12, "feet"),
  27068. weight: math.unit(200, "lb"),
  27069. name: "Front (Casual)",
  27070. image: {
  27071. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27072. extra: 1478 / 1381,
  27073. bottom: 5.5 / 1484
  27074. }
  27075. },
  27076. },
  27077. [
  27078. {
  27079. name: "Travel-Sized",
  27080. height: math.unit(7.45, "inches")
  27081. },
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(7 + 6.451 / 12, "feet"),
  27085. default: true
  27086. },
  27087. {
  27088. name: "Hitting the Town",
  27089. height: math.unit(37 + 8 / 12, "feet")
  27090. },
  27091. {
  27092. name: "Stomp in the Suburbs",
  27093. height: math.unit(964 + 9.728 / 12, "feet")
  27094. },
  27095. {
  27096. name: "Sit on the City",
  27097. height: math.unit(61747 + 10.592 / 12, "feet")
  27098. },
  27099. {
  27100. name: "Glomp the Globe",
  27101. height: math.unit(252919327 + 4.832 / 12, "feet")
  27102. },
  27103. ]
  27104. ))
  27105. characterMakers.push(() => makeCharacter(
  27106. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27107. {
  27108. front: {
  27109. height: math.unit(6 + 4 / 12, "feet"),
  27110. weight: math.unit(320, "lb"),
  27111. name: "Front",
  27112. image: {
  27113. source: "./media/characters/balina-mahigan/front.svg",
  27114. extra: 447 / 428,
  27115. bottom: 18 / 466
  27116. }
  27117. },
  27118. back: {
  27119. height: math.unit(6 + 4 / 12, "feet"),
  27120. weight: math.unit(320, "lb"),
  27121. name: "Back",
  27122. image: {
  27123. source: "./media/characters/balina-mahigan/back.svg",
  27124. extra: 445 / 428,
  27125. bottom: 4.07 / 448
  27126. }
  27127. },
  27128. arm: {
  27129. height: math.unit(1.88, "feet"),
  27130. name: "Arm",
  27131. image: {
  27132. source: "./media/characters/balina-mahigan/arm.svg"
  27133. }
  27134. },
  27135. backPort: {
  27136. height: math.unit(0.685, "feet"),
  27137. name: "Back Port",
  27138. image: {
  27139. source: "./media/characters/balina-mahigan/back-port.svg"
  27140. }
  27141. },
  27142. hoofpaw: {
  27143. height: math.unit(1.41, "feet"),
  27144. name: "Hoofpaw",
  27145. image: {
  27146. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27147. }
  27148. },
  27149. leftHandBack: {
  27150. height: math.unit(0.938, "feet"),
  27151. name: "Left Hand (Back)",
  27152. image: {
  27153. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27154. }
  27155. },
  27156. leftHandFront: {
  27157. height: math.unit(0.938, "feet"),
  27158. name: "Left Hand (Front)",
  27159. image: {
  27160. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27161. }
  27162. },
  27163. rightHandBack: {
  27164. height: math.unit(0.95, "feet"),
  27165. name: "Right Hand (Back)",
  27166. image: {
  27167. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27168. }
  27169. },
  27170. rightHandFront: {
  27171. height: math.unit(0.95, "feet"),
  27172. name: "Right Hand (Front)",
  27173. image: {
  27174. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(6 + 4 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(6, "feet"),
  27191. weight: math.unit(320, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/balina-mejeri/front.svg",
  27195. extra: 517 / 488,
  27196. bottom: 44.2 / 561
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(6 + 4 / 12, "feet")
  27204. },
  27205. {
  27206. name: "Business",
  27207. height: math.unit(155, "feet"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27214. {
  27215. kneeling: {
  27216. height: math.unit(6 + 4 / 12, "feet"),
  27217. weight: math.unit(300 * 20, "lb"),
  27218. name: "Kneeling",
  27219. image: {
  27220. source: "./media/characters/balbarian/kneeling.svg",
  27221. extra: 922 / 862,
  27222. bottom: 42.4 / 965
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Normal",
  27229. height: math.unit(6 + 4 / 12, "feet")
  27230. },
  27231. {
  27232. name: "Treasured",
  27233. height: math.unit(18 + 9 / 12, "feet"),
  27234. default: true
  27235. },
  27236. {
  27237. name: "Macro",
  27238. height: math.unit(900, "feet")
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(6 + 4 / 12, "feet"),
  27247. weight: math.unit(325, "lb"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/balina-amarini/front.svg",
  27251. extra: 415 / 403,
  27252. bottom: 19 / 433.4
  27253. }
  27254. },
  27255. back: {
  27256. height: math.unit(6 + 4 / 12, "feet"),
  27257. weight: math.unit(325, "lb"),
  27258. name: "Back",
  27259. image: {
  27260. source: "./media/characters/balina-amarini/back.svg",
  27261. extra: 415 / 403,
  27262. bottom: 13.5 / 432
  27263. }
  27264. },
  27265. overdrive: {
  27266. height: math.unit(6 + 4 / 12, "feet"),
  27267. weight: math.unit(400, "lb"),
  27268. name: "Overdrive",
  27269. image: {
  27270. source: "./media/characters/balina-amarini/overdrive.svg",
  27271. extra: 269 / 259,
  27272. bottom: 12 / 282
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Boom",
  27279. height: math.unit(9 + 10 / 12, "feet"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Macro",
  27284. height: math.unit(280, "feet")
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27290. {
  27291. goddess: {
  27292. height: math.unit(600, "feet"),
  27293. weight: math.unit(2000000, "tons"),
  27294. name: "Goddess",
  27295. image: {
  27296. source: "./media/characters/lady-kubwa/goddess.svg",
  27297. extra: 1240.5 / 1223,
  27298. bottom: 22 / 1263
  27299. }
  27300. },
  27301. goddesser: {
  27302. height: math.unit(900, "feet"),
  27303. weight: math.unit(20000000, "lb"),
  27304. name: "Goddess-er",
  27305. image: {
  27306. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27307. extra: 899 / 888,
  27308. bottom: 12.6 / 912
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Macro",
  27315. height: math.unit(600, "feet"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Megamacro",
  27320. height: math.unit(250, "miles")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(7 + 7 / 12, "feet"),
  27329. weight: math.unit(250, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/tala-grovehorn/front.svg",
  27333. extra: 2636 / 2525,
  27334. bottom: 147 / 2781
  27335. }
  27336. },
  27337. back: {
  27338. height: math.unit(7 + 7 / 12, "feet"),
  27339. weight: math.unit(250, "lb"),
  27340. name: "Back",
  27341. image: {
  27342. source: "./media/characters/tala-grovehorn/back.svg",
  27343. extra: 2635 / 2539,
  27344. bottom: 100 / 2732.8
  27345. }
  27346. },
  27347. mouth: {
  27348. height: math.unit(1.15, "feet"),
  27349. name: "Mouth",
  27350. image: {
  27351. source: "./media/characters/tala-grovehorn/mouth.svg"
  27352. }
  27353. },
  27354. dick: {
  27355. height: math.unit(2.36, "feet"),
  27356. name: "Dick",
  27357. image: {
  27358. source: "./media/characters/tala-grovehorn/dick.svg"
  27359. }
  27360. },
  27361. slit: {
  27362. height: math.unit(0.61, "feet"),
  27363. name: "Slit",
  27364. image: {
  27365. source: "./media/characters/tala-grovehorn/slit.svg"
  27366. }
  27367. },
  27368. },
  27369. [
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(7 + 7 / 12, "feet"),
  27377. weight: math.unit(225, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/epona/front.svg",
  27381. extra: 2445 / 2290,
  27382. bottom: 251 / 2696
  27383. }
  27384. },
  27385. back: {
  27386. height: math.unit(7 + 7 / 12, "feet"),
  27387. weight: math.unit(225, "lb"),
  27388. name: "Back",
  27389. image: {
  27390. source: "./media/characters/epona/back.svg",
  27391. extra: 2546 / 2408,
  27392. bottom: 44 / 2589
  27393. }
  27394. },
  27395. genitals: {
  27396. height: math.unit(1.5, "feet"),
  27397. name: "Genitals",
  27398. image: {
  27399. source: "./media/characters/epona/genitals.svg"
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "Normal",
  27406. height: math.unit(7 + 7 / 12, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(7, "feet"),
  27416. weight: math.unit(518, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/avia-bloodbourn/front.svg",
  27420. extra: 1466 / 1350,
  27421. bottom: 65 / 1527
  27422. }
  27423. },
  27424. },
  27425. [
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(9.35, "feet"),
  27433. weight: math.unit(600, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/amera/front.svg",
  27437. extra: 891 / 818,
  27438. bottom: 30 / 922.7
  27439. }
  27440. },
  27441. back: {
  27442. height: math.unit(9.35, "feet"),
  27443. weight: math.unit(600, "lb"),
  27444. name: "Back",
  27445. image: {
  27446. source: "./media/characters/amera/back.svg",
  27447. extra: 876 / 824,
  27448. bottom: 6.8 / 884
  27449. }
  27450. },
  27451. dick: {
  27452. height: math.unit(2.14, "feet"),
  27453. name: "Dick",
  27454. image: {
  27455. source: "./media/characters/amera/dick.svg"
  27456. }
  27457. },
  27458. },
  27459. [
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(9.35, "feet"),
  27463. default: true
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27469. {
  27470. kneeling: {
  27471. height: math.unit(3 + 4 / 12, "feet"),
  27472. weight: math.unit(90, "lb"),
  27473. name: "Kneeling",
  27474. image: {
  27475. source: "./media/characters/rosewen/kneeling.svg",
  27476. extra: 1835 / 1571,
  27477. bottom: 27.7 / 1862
  27478. }
  27479. },
  27480. },
  27481. [
  27482. {
  27483. name: "Normal",
  27484. height: math.unit(3 + 4 / 12, "feet"),
  27485. default: true
  27486. },
  27487. ]
  27488. ))
  27489. characterMakers.push(() => makeCharacter(
  27490. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27491. {
  27492. front: {
  27493. height: math.unit(5 + 10 / 12, "feet"),
  27494. weight: math.unit(200, "lb"),
  27495. name: "Front",
  27496. image: {
  27497. source: "./media/characters/sabah/front.svg",
  27498. extra: 849 / 763,
  27499. bottom: 33.9 / 881
  27500. }
  27501. },
  27502. },
  27503. [
  27504. {
  27505. name: "Normal",
  27506. height: math.unit(5 + 10 / 12, "feet"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27513. {
  27514. front: {
  27515. height: math.unit(3 + 5 / 12, "feet"),
  27516. weight: math.unit(40, "kg"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/purple-flame/front.svg",
  27520. extra: 1577 / 1412,
  27521. bottom: 97 / 1694
  27522. }
  27523. },
  27524. frontDressed: {
  27525. height: math.unit(3 + 5 / 12, "feet"),
  27526. weight: math.unit(40, "kg"),
  27527. name: "Front (Dressed)",
  27528. image: {
  27529. source: "./media/characters/purple-flame/front-dressed.svg",
  27530. extra: 1577 / 1412,
  27531. bottom: 97 / 1694
  27532. }
  27533. },
  27534. headphones: {
  27535. height: math.unit(0.85, "feet"),
  27536. name: "Headphones",
  27537. image: {
  27538. source: "./media/characters/purple-flame/headphones.svg"
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Really Small",
  27545. height: math.unit(5, "cm")
  27546. },
  27547. {
  27548. name: "Micro",
  27549. height: math.unit(1 + 5 / 12, "feet")
  27550. },
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(3 + 5 / 12, "feet"),
  27554. default: true
  27555. },
  27556. {
  27557. name: "Minimacro",
  27558. height: math.unit(125, "feet")
  27559. },
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(0.5, "miles")
  27563. },
  27564. {
  27565. name: "Megamacro",
  27566. height: math.unit(50, "miles")
  27567. },
  27568. {
  27569. name: "Gigantic",
  27570. height: math.unit(750, "miles")
  27571. },
  27572. {
  27573. name: "Planetary",
  27574. height: math.unit(15000, "miles")
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(14, "feet"),
  27583. weight: math.unit(959, "lb"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/arsenal/front.svg",
  27587. extra: 2357 / 2157,
  27588. bottom: 93 / 2458
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(14, "feet"),
  27596. default: true
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(6, "feet"),
  27605. weight: math.unit(150, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/adira/front.svg",
  27609. extra: 1078 / 1029,
  27610. bottom: 87 / 1166
  27611. }
  27612. },
  27613. },
  27614. [
  27615. {
  27616. name: "Micro",
  27617. height: math.unit(4, "inches"),
  27618. default: true
  27619. },
  27620. {
  27621. name: "Macro",
  27622. height: math.unit(50, "feet")
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(16, "feet"),
  27631. weight: math.unit(1000, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/grim/front.svg",
  27635. extra: 622 / 614,
  27636. bottom: 18.1 / 642
  27637. }
  27638. },
  27639. back: {
  27640. height: math.unit(16, "feet"),
  27641. weight: math.unit(1000, "lb"),
  27642. name: "Back",
  27643. image: {
  27644. source: "./media/characters/grim/back.svg",
  27645. extra: 610.6 / 602,
  27646. bottom: 40.8 / 652
  27647. }
  27648. },
  27649. hunched: {
  27650. height: math.unit(9.75, "feet"),
  27651. weight: math.unit(1000, "lb"),
  27652. name: "Hunched",
  27653. image: {
  27654. source: "./media/characters/grim/hunched.svg",
  27655. extra: 304 / 297,
  27656. bottom: 35.4 / 394
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(16, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(2.3, "meters"),
  27673. weight: math.unit(300, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/sinja/front-sfw.svg",
  27677. extra: 1393 / 1294,
  27678. bottom: 70 / 1463
  27679. }
  27680. },
  27681. frontNsfw: {
  27682. height: math.unit(2.3, "meters"),
  27683. weight: math.unit(300, "lb"),
  27684. name: "Front (NSFW)",
  27685. image: {
  27686. source: "./media/characters/sinja/front-nsfw.svg",
  27687. extra: 1393 / 1294,
  27688. bottom: 70 / 1463
  27689. }
  27690. },
  27691. back: {
  27692. height: math.unit(2.3, "meters"),
  27693. weight: math.unit(300, "lb"),
  27694. name: "Back",
  27695. image: {
  27696. source: "./media/characters/sinja/back.svg",
  27697. extra: 1393 / 1294,
  27698. bottom: 70 / 1463
  27699. }
  27700. },
  27701. head: {
  27702. height: math.unit(1.771, "feet"),
  27703. name: "Head",
  27704. image: {
  27705. source: "./media/characters/sinja/head.svg"
  27706. }
  27707. },
  27708. slit: {
  27709. height: math.unit(0.8, "feet"),
  27710. name: "Slit",
  27711. image: {
  27712. source: "./media/characters/sinja/slit.svg"
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(2.3, "meters")
  27720. },
  27721. {
  27722. name: "Macro",
  27723. height: math.unit(91, "meters"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Megamacro",
  27728. height: math.unit(91440, "meters")
  27729. },
  27730. {
  27731. name: "Gigamacro",
  27732. height: math.unit(60960000, "meters")
  27733. },
  27734. {
  27735. name: "Teramacro",
  27736. height: math.unit(9144000000, "meters")
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(1.7, "meters"),
  27745. weight: math.unit(130, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/kyu/front.svg",
  27749. extra: 415 / 395,
  27750. bottom: 5 / 420
  27751. }
  27752. },
  27753. head: {
  27754. height: math.unit(1.75, "feet"),
  27755. name: "Head",
  27756. image: {
  27757. source: "./media/characters/kyu/head.svg"
  27758. }
  27759. },
  27760. foot: {
  27761. height: math.unit(0.81, "feet"),
  27762. name: "Foot",
  27763. image: {
  27764. source: "./media/characters/kyu/foot.svg"
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Normal",
  27771. height: math.unit(1.7, "meters")
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(131, "feet"),
  27776. default: true
  27777. },
  27778. {
  27779. name: "Megamacro",
  27780. height: math.unit(91440, "meters")
  27781. },
  27782. {
  27783. name: "Gigamacro",
  27784. height: math.unit(60960000, "meters")
  27785. },
  27786. {
  27787. name: "Teramacro",
  27788. height: math.unit(9144000000, "meters")
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27794. {
  27795. front: {
  27796. height: math.unit(7 + 1 / 12, "feet"),
  27797. weight: math.unit(250, "lb"),
  27798. name: "Front",
  27799. image: {
  27800. source: "./media/characters/joey/front.svg",
  27801. extra: 1791 / 1537,
  27802. bottom: 28 / 1816
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Micro",
  27809. height: math.unit(3, "inches")
  27810. },
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(7 + 1 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(165, "cm"),
  27823. weight: math.unit(140, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/sam-evans/front.svg",
  27827. extra: 3417 / 3230,
  27828. bottom: 41.3 / 3417
  27829. }
  27830. },
  27831. frontSixTails: {
  27832. height: math.unit(165, "cm"),
  27833. weight: math.unit(140, "lb"),
  27834. name: "Front-six-tails",
  27835. image: {
  27836. source: "./media/characters/sam-evans/front-six-tails.svg",
  27837. extra: 3417 / 3230,
  27838. bottom: 41.3 / 3417
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(165, "cm"),
  27843. weight: math.unit(140, "lb"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/sam-evans/back.svg",
  27847. extra: 3227 / 3032,
  27848. bottom: 6.8 / 3234
  27849. }
  27850. },
  27851. face: {
  27852. height: math.unit(0.68, "feet"),
  27853. name: "Face",
  27854. image: {
  27855. source: "./media/characters/sam-evans/face.svg"
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(165, "cm"),
  27863. default: true
  27864. },
  27865. {
  27866. name: "Macro",
  27867. height: math.unit(100, "meters")
  27868. },
  27869. {
  27870. name: "Macro+",
  27871. height: math.unit(800, "meters")
  27872. },
  27873. {
  27874. name: "Macro++",
  27875. height: math.unit(3, "km")
  27876. },
  27877. {
  27878. name: "Macro+++",
  27879. height: math.unit(30, "km")
  27880. },
  27881. ]
  27882. ))
  27883. characterMakers.push(() => makeCharacter(
  27884. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27885. {
  27886. front: {
  27887. height: math.unit(10, "feet"),
  27888. weight: math.unit(750, "lb"),
  27889. name: "Front",
  27890. image: {
  27891. source: "./media/characters/juliet-a/front.svg",
  27892. extra: 1766 / 1720,
  27893. bottom: 43 / 1809
  27894. }
  27895. },
  27896. back: {
  27897. height: math.unit(10, "feet"),
  27898. weight: math.unit(750, "lb"),
  27899. name: "Back",
  27900. image: {
  27901. source: "./media/characters/juliet-a/back.svg",
  27902. extra: 1781 / 1734,
  27903. bottom: 35 / 1810,
  27904. }
  27905. },
  27906. },
  27907. [
  27908. {
  27909. name: "Normal",
  27910. height: math.unit(10, "feet"),
  27911. default: true
  27912. },
  27913. {
  27914. name: "Dragon Form",
  27915. height: math.unit(250, "feet")
  27916. },
  27917. {
  27918. name: "Macro",
  27919. height: math.unit(1000, "feet")
  27920. },
  27921. {
  27922. name: "Megamacro",
  27923. height: math.unit(10000, "feet")
  27924. }
  27925. ]
  27926. ))
  27927. characterMakers.push(() => makeCharacter(
  27928. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27929. {
  27930. regular: {
  27931. height: math.unit(7 + 3 / 12, "feet"),
  27932. weight: math.unit(260, "lb"),
  27933. name: "Regular",
  27934. image: {
  27935. source: "./media/characters/wild/regular.svg",
  27936. extra: 97.45 / 92,
  27937. bottom: 6.8 / 104.3
  27938. }
  27939. },
  27940. biggums: {
  27941. height: math.unit(8 + 6 / 12, "feet"),
  27942. weight: math.unit(425, "lb"),
  27943. name: "Biggums",
  27944. image: {
  27945. source: "./media/characters/wild/biggums.svg",
  27946. extra: 97.45 / 92,
  27947. bottom: 7.5 / 132.34
  27948. }
  27949. },
  27950. mawRegular: {
  27951. height: math.unit(1.24, "feet"),
  27952. name: "Maw (Regular)",
  27953. image: {
  27954. source: "./media/characters/wild/maw.svg"
  27955. }
  27956. },
  27957. mawBiggums: {
  27958. height: math.unit(1.47, "feet"),
  27959. name: "Maw (Biggums)",
  27960. image: {
  27961. source: "./media/characters/wild/maw.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(7 + 3 / 12, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27975. {
  27976. front: {
  27977. height: math.unit(2.5, "meters"),
  27978. weight: math.unit(200, "kg"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/vidar/front.svg",
  27982. extra: 2994 / 2795,
  27983. bottom: 56 / 3061
  27984. }
  27985. },
  27986. back: {
  27987. height: math.unit(2.5, "meters"),
  27988. weight: math.unit(200, "kg"),
  27989. name: "Back",
  27990. image: {
  27991. source: "./media/characters/vidar/back.svg",
  27992. extra: 3131 / 2928,
  27993. bottom: 13.5 / 3141.5
  27994. }
  27995. },
  27996. feral: {
  27997. height: math.unit(2.5, "meters"),
  27998. weight: math.unit(2000, "kg"),
  27999. name: "Feral",
  28000. image: {
  28001. source: "./media/characters/vidar/feral.svg",
  28002. extra: 2790 / 1765,
  28003. bottom: 6 / 2796
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(2.5, "meters"),
  28011. default: true
  28012. },
  28013. {
  28014. name: "Macro",
  28015. height: math.unit(100, "meters")
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(5 + 9 / 12, "feet"),
  28024. weight: math.unit(120, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/ash/front.svg",
  28028. extra: 2189 / 1961,
  28029. bottom: 5.2 / 2194
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(5 + 9 / 12, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(9, "feet"),
  28046. weight: math.unit(10000, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/gygabite/front.svg",
  28050. bottom: 31.7 / 537.8,
  28051. extra: 505 / 370
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(9, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28065. {
  28066. front: {
  28067. height: math.unit(12, "feet"),
  28068. weight: math.unit(35000, "lb"),
  28069. name: "Front",
  28070. image: {
  28071. source: "./media/characters/p0tat0/front.svg",
  28072. extra: 1065 / 921,
  28073. bottom: 55.7 / 1121.25
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(12, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28087. {
  28088. side: {
  28089. height: math.unit(6.5, "feet"),
  28090. weight: math.unit(800, "lb"),
  28091. name: "Side",
  28092. image: {
  28093. source: "./media/characters/dusk/side.svg",
  28094. extra: 615 / 373,
  28095. bottom: 53 / 664
  28096. }
  28097. },
  28098. sitting: {
  28099. height: math.unit(7, "feet"),
  28100. weight: math.unit(800, "lb"),
  28101. name: "Sitting",
  28102. image: {
  28103. source: "./media/characters/dusk/sitting.svg",
  28104. extra: 753 / 425,
  28105. bottom: 33 / 774
  28106. }
  28107. },
  28108. head: {
  28109. height: math.unit(6.1, "feet"),
  28110. name: "Head",
  28111. image: {
  28112. source: "./media/characters/dusk/head.svg"
  28113. }
  28114. },
  28115. },
  28116. [
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(7, "feet"),
  28120. default: true
  28121. },
  28122. ]
  28123. ))
  28124. characterMakers.push(() => makeCharacter(
  28125. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28126. {
  28127. front: {
  28128. height: math.unit(15, "feet"),
  28129. weight: math.unit(7000, "lb"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/jay-direwolf/front.svg",
  28133. extra: 1810 / 1732,
  28134. bottom: 66 / 1892
  28135. }
  28136. },
  28137. },
  28138. [
  28139. {
  28140. name: "Normal",
  28141. height: math.unit(15, "feet"),
  28142. default: true
  28143. },
  28144. ]
  28145. ))
  28146. characterMakers.push(() => makeCharacter(
  28147. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28148. {
  28149. front: {
  28150. height: math.unit(4 + 9 / 12, "feet"),
  28151. weight: math.unit(130, "lb"),
  28152. name: "Front",
  28153. image: {
  28154. source: "./media/characters/anchovie/front.svg",
  28155. extra: 382 / 350,
  28156. bottom: 25 / 409
  28157. }
  28158. },
  28159. back: {
  28160. height: math.unit(4 + 9 / 12, "feet"),
  28161. weight: math.unit(130, "lb"),
  28162. name: "Back",
  28163. image: {
  28164. source: "./media/characters/anchovie/back.svg",
  28165. extra: 385 / 352,
  28166. bottom: 16.6 / 402
  28167. }
  28168. },
  28169. frontDressed: {
  28170. height: math.unit(4 + 9 / 12, "feet"),
  28171. weight: math.unit(130, "lb"),
  28172. name: "Front (Dressed)",
  28173. image: {
  28174. source: "./media/characters/anchovie/front-dressed.svg",
  28175. extra: 382 / 350,
  28176. bottom: 25 / 409
  28177. }
  28178. },
  28179. backDressed: {
  28180. height: math.unit(4 + 9 / 12, "feet"),
  28181. weight: math.unit(130, "lb"),
  28182. name: "Back (Dressed)",
  28183. image: {
  28184. source: "./media/characters/anchovie/back-dressed.svg",
  28185. extra: 385 / 352,
  28186. bottom: 16.6 / 402
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Micro",
  28193. height: math.unit(6.4, "inches")
  28194. },
  28195. {
  28196. name: "Normal",
  28197. height: math.unit(4 + 9 / 12, "feet"),
  28198. default: true
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28204. {
  28205. front: {
  28206. height: math.unit(2, "meters"),
  28207. weight: math.unit(180, "lb"),
  28208. name: "Front",
  28209. image: {
  28210. source: "./media/characters/acidrenamon/front.svg",
  28211. extra: 987 / 890,
  28212. bottom: 22.8 / 1009
  28213. }
  28214. },
  28215. back: {
  28216. height: math.unit(2, "meters"),
  28217. weight: math.unit(180, "lb"),
  28218. name: "Back",
  28219. image: {
  28220. source: "./media/characters/acidrenamon/back.svg",
  28221. extra: 983 / 891,
  28222. bottom: 8.4 / 992
  28223. }
  28224. },
  28225. head: {
  28226. height: math.unit(1.92, "feet"),
  28227. name: "Head",
  28228. image: {
  28229. source: "./media/characters/acidrenamon/head.svg"
  28230. }
  28231. },
  28232. rump: {
  28233. height: math.unit(1.72, "feet"),
  28234. name: "Rump",
  28235. image: {
  28236. source: "./media/characters/acidrenamon/rump.svg"
  28237. }
  28238. },
  28239. tail: {
  28240. height: math.unit(4.2, "feet"),
  28241. name: "Tail",
  28242. image: {
  28243. source: "./media/characters/acidrenamon/tail.svg"
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(2, "meters"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Minimacro",
  28255. height: math.unit(7, "meters")
  28256. },
  28257. {
  28258. name: "Macro",
  28259. height: math.unit(200, "meters")
  28260. },
  28261. {
  28262. name: "Gigamacro",
  28263. height: math.unit(0.2, "earths")
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(152, "feet"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/kenzie-lee/front.svg",
  28275. extra: 1869/1774,
  28276. bottom: 128/1997
  28277. }
  28278. },
  28279. side: {
  28280. height: math.unit(86, "feet"),
  28281. name: "Side",
  28282. image: {
  28283. source: "./media/characters/kenzie-lee/side.svg",
  28284. extra: 930/815,
  28285. bottom: 177/1107
  28286. }
  28287. },
  28288. paw: {
  28289. height: math.unit(15, "feet"),
  28290. name: "Paw",
  28291. image: {
  28292. source: "./media/characters/kenzie-lee/paw.svg"
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Micro",
  28299. height: math.unit(1.5, "inches")
  28300. },
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(152, "feet"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Megamacro",
  28308. height: math.unit(7, "miles")
  28309. },
  28310. {
  28311. name: "Gigamacro",
  28312. height: math.unit(8000, "miles")
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28318. {
  28319. side: {
  28320. height: math.unit(6, "feet"),
  28321. weight: math.unit(150, "lb"),
  28322. name: "Side",
  28323. image: {
  28324. source: "./media/characters/withers/side.svg",
  28325. extra: 1830 / 1728,
  28326. bottom: 96 / 1927
  28327. }
  28328. },
  28329. front: {
  28330. height: math.unit(6, "feet"),
  28331. weight: math.unit(150, "lb"),
  28332. name: "Front",
  28333. image: {
  28334. source: "./media/characters/withers/front.svg",
  28335. extra: 1514 / 1438,
  28336. bottom: 118 / 1632
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Macro",
  28343. height: math.unit(168, "feet"),
  28344. default: true
  28345. },
  28346. {
  28347. name: "Megamacro",
  28348. height: math.unit(15, "miles")
  28349. }
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(6 + 7 / 12, "feet"),
  28357. weight: math.unit(250, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/nemoskii/front.svg",
  28361. extra: 2270 / 1734,
  28362. bottom: 86 / 2354
  28363. }
  28364. },
  28365. back: {
  28366. height: math.unit(6 + 7 / 12, "feet"),
  28367. weight: math.unit(250, "lb"),
  28368. name: "Back",
  28369. image: {
  28370. source: "./media/characters/nemoskii/back.svg",
  28371. extra: 1845 / 1788,
  28372. bottom: 10.5 / 1852
  28373. }
  28374. },
  28375. head: {
  28376. height: math.unit(1.31, "feet"),
  28377. name: "Head",
  28378. image: {
  28379. source: "./media/characters/nemoskii/head.svg"
  28380. }
  28381. },
  28382. },
  28383. [
  28384. {
  28385. name: "Micro",
  28386. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28387. },
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(6 + 7 / 12, "feet"),
  28391. default: true
  28392. },
  28393. {
  28394. name: "Macro",
  28395. height: math.unit((6 + 7 / 12) * 150, "feet")
  28396. },
  28397. {
  28398. name: "Macro+",
  28399. height: math.unit((6 + 7 / 12) * 500, "feet")
  28400. },
  28401. {
  28402. name: "Megamacro",
  28403. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28409. {
  28410. front: {
  28411. height: math.unit(1, "mile"),
  28412. weight: math.unit(265261.9, "lb"),
  28413. name: "Front",
  28414. image: {
  28415. source: "./media/characters/shui/front.svg",
  28416. extra: 1633 / 1564,
  28417. bottom: 91.5 / 1726
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Macro",
  28424. height: math.unit(1, "mile"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(12 + 6 / 12, "feet"),
  28434. weight: math.unit(1342, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/arokh-takakura/front.svg",
  28438. extra: 1089 / 1043,
  28439. bottom: 77.4 / 1176.7
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(12 + 6 / 12, "feet"),
  28444. weight: math.unit(1342, "lb"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/arokh-takakura/back.svg",
  28448. extra: 1046 / 1019,
  28449. bottom: 102 / 1150
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Big",
  28456. height: math.unit(12 + 6 / 12, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(5 + 6 / 12, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/theo/front.svg",
  28470. extra: 1184 / 1131,
  28471. bottom: 7.4 / 1191
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Micro",
  28478. height: math.unit(5, "inches")
  28479. },
  28480. {
  28481. name: "Normal",
  28482. height: math.unit(5 + 6 / 12, "feet"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(5 + 9 / 12, "feet"),
  28492. weight: math.unit(130, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/cecelia-swift/front.svg",
  28496. extra: 502 / 484,
  28497. bottom: 23 / 523
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(5 + 9 / 12, "feet"),
  28502. weight: math.unit(130, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/cecelia-swift/back.svg",
  28506. extra: 499 / 485,
  28507. bottom: 12 / 511
  28508. }
  28509. },
  28510. head: {
  28511. height: math.unit(0.90, "feet"),
  28512. name: "Head",
  28513. image: {
  28514. source: "./media/characters/cecelia-swift/head.svg"
  28515. }
  28516. },
  28517. rump: {
  28518. height: math.unit(1.75, "feet"),
  28519. name: "Rump",
  28520. image: {
  28521. source: "./media/characters/cecelia-swift/rump.svg"
  28522. }
  28523. },
  28524. },
  28525. [
  28526. {
  28527. name: "Normal",
  28528. height: math.unit(5 + 9 / 12, "feet"),
  28529. default: true
  28530. },
  28531. {
  28532. name: "Big",
  28533. height: math.unit(50, "feet")
  28534. },
  28535. {
  28536. name: "Macro",
  28537. height: math.unit(100, "feet")
  28538. },
  28539. {
  28540. name: "Macro+",
  28541. height: math.unit(500, "feet")
  28542. },
  28543. {
  28544. name: "Macro++",
  28545. height: math.unit(1000, "feet")
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(6, "feet"),
  28554. weight: math.unit(150, "lb"),
  28555. name: "Front",
  28556. image: {
  28557. source: "./media/characters/kaunan/front.svg",
  28558. extra: 2890 / 2523,
  28559. bottom: 49 / 2939
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Macro",
  28566. height: math.unit(150, "feet"),
  28567. default: true
  28568. },
  28569. ]
  28570. ))
  28571. characterMakers.push(() => makeCharacter(
  28572. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28573. {
  28574. front: {
  28575. height: math.unit(175, "cm"),
  28576. weight: math.unit(60, "kg"),
  28577. name: "Front",
  28578. image: {
  28579. source: "./media/characters/fei/front.svg",
  28580. extra: 1873/1723,
  28581. bottom: 53/1926
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Mortal",
  28588. height: math.unit(175, "cm")
  28589. },
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(3500, "m"),
  28593. default: true
  28594. },
  28595. {
  28596. name: "Stroll",
  28597. height: math.unit(17.5, "km")
  28598. },
  28599. {
  28600. name: "Showoff",
  28601. height: math.unit(175, "km")
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(7, "feet"),
  28610. weight: math.unit(1000, "kg"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/edrax/front.svg",
  28614. extra: 2838 / 2550,
  28615. bottom: 130 / 2968
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Small",
  28622. height: math.unit(7, "feet")
  28623. },
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(1500, "meters")
  28627. },
  28628. {
  28629. name: "Mega",
  28630. height: math.unit(12000000, "km"),
  28631. default: true
  28632. },
  28633. {
  28634. name: "Megamacro",
  28635. height: math.unit(10600000, "lightyears")
  28636. },
  28637. {
  28638. name: "Hypermacro",
  28639. height: math.unit(256, "yottameters")
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(10, "feet"),
  28648. weight: math.unit(750, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/clove/front.svg",
  28652. extra: 1918/1751,
  28653. bottom: 52/1970
  28654. }
  28655. },
  28656. back: {
  28657. height: math.unit(10, "feet"),
  28658. weight: math.unit(750, "lb"),
  28659. name: "Back",
  28660. image: {
  28661. source: "./media/characters/clove/back.svg",
  28662. extra: 1912/1747,
  28663. bottom: 50/1962
  28664. }
  28665. },
  28666. },
  28667. [
  28668. {
  28669. name: "Normal",
  28670. height: math.unit(10, "feet"),
  28671. default: true
  28672. },
  28673. ]
  28674. ))
  28675. characterMakers.push(() => makeCharacter(
  28676. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28677. {
  28678. front: {
  28679. height: math.unit(4, "feet"),
  28680. weight: math.unit(50, "lb"),
  28681. name: "Front",
  28682. image: {
  28683. source: "./media/characters/alex-rabbit/front.svg",
  28684. extra: 507 / 458,
  28685. bottom: 18.5 / 527
  28686. }
  28687. },
  28688. back: {
  28689. height: math.unit(4, "feet"),
  28690. weight: math.unit(50, "lb"),
  28691. name: "Back",
  28692. image: {
  28693. source: "./media/characters/alex-rabbit/back.svg",
  28694. extra: 502 / 460,
  28695. bottom: 18.9 / 521
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(4, "feet"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(1 + 3 / 12, "feet"),
  28712. weight: math.unit(80, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/zander-rose/front.svg",
  28716. extra: 916 / 797,
  28717. bottom: 17 / 933
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(1 + 3 / 12, "feet"),
  28722. weight: math.unit(80, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/zander-rose/back.svg",
  28726. extra: 903 / 779,
  28727. bottom: 31 / 934
  28728. }
  28729. },
  28730. },
  28731. [
  28732. {
  28733. name: "Normal",
  28734. height: math.unit(1 + 3 / 12, "feet"),
  28735. default: true
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28741. {
  28742. anthro: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Anthro",
  28746. image: {
  28747. source: "./media/characters/razz/anthro.svg",
  28748. extra: 1437 / 1343,
  28749. bottom: 48 / 1485
  28750. }
  28751. },
  28752. feral: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Feral",
  28756. image: {
  28757. source: "./media/characters/razz/feral.svg",
  28758. extra: 2569 / 1385,
  28759. bottom: 95 / 2664
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Normal",
  28766. height: math.unit(6, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(9 + 4 / 12, "feet"),
  28776. weight: math.unit(500, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/morrigan/front.svg",
  28780. extra: 2707 / 2579,
  28781. bottom: 156 / 2863
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(9 + 4 / 12, "feet"),
  28789. default: true
  28790. },
  28791. ]
  28792. ))
  28793. characterMakers.push(() => makeCharacter(
  28794. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28795. {
  28796. front: {
  28797. height: math.unit(5, "stories"),
  28798. weight: math.unit(4000, "lb"),
  28799. name: "Front",
  28800. image: {
  28801. source: "./media/characters/jenene/front.svg",
  28802. extra: 1780 / 1710,
  28803. bottom: 57 / 1837
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(5, "stories"),
  28811. default: true
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28817. {
  28818. taurSfw: {
  28819. height: math.unit(10, "meters"),
  28820. weight: math.unit(17500, "kg"),
  28821. name: "Taur",
  28822. image: {
  28823. source: "./media/characters/faey/taur-sfw.svg",
  28824. extra: 1200 / 968,
  28825. bottom: 41 / 1241
  28826. }
  28827. },
  28828. chestmaw: {
  28829. height: math.unit(2.01, "meters"),
  28830. name: "Chestmaw",
  28831. image: {
  28832. source: "./media/characters/faey/chestmaw.svg"
  28833. }
  28834. },
  28835. foot: {
  28836. height: math.unit(2.43, "meters"),
  28837. name: "Foot",
  28838. image: {
  28839. source: "./media/characters/faey/foot.svg"
  28840. }
  28841. },
  28842. jaws: {
  28843. height: math.unit(1.66, "meters"),
  28844. name: "Jaws",
  28845. image: {
  28846. source: "./media/characters/faey/jaws.svg"
  28847. }
  28848. },
  28849. tongues: {
  28850. height: math.unit(2.01, "meters"),
  28851. name: "Tongues",
  28852. image: {
  28853. source: "./media/characters/faey/tongues.svg"
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Small",
  28860. height: math.unit(10, "meters"),
  28861. default: true
  28862. },
  28863. {
  28864. name: "Big",
  28865. height: math.unit(500000, "km")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(7, "feet"),
  28874. weight: math.unit(275, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/roku/front.svg",
  28878. extra: 903 / 878,
  28879. bottom: 37 / 940
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(7, "feet"),
  28887. default: true
  28888. },
  28889. {
  28890. name: "Macro",
  28891. height: math.unit(500, "feet")
  28892. },
  28893. {
  28894. name: "Megamacro",
  28895. height: math.unit(200, "miles")
  28896. },
  28897. ]
  28898. ))
  28899. characterMakers.push(() => makeCharacter(
  28900. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28901. {
  28902. front: {
  28903. height: math.unit(6 + 2 / 12, "feet"),
  28904. weight: math.unit(150, "lb"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/lira/front.svg",
  28908. extra: 1727 / 1605,
  28909. bottom: 26 / 1753
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(6 + 2 / 12, "feet"),
  28914. weight: math.unit(150, "lb"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/lira/back.svg",
  28918. extra: 1713/1621,
  28919. bottom: 20/1733
  28920. }
  28921. },
  28922. hand: {
  28923. height: math.unit(0.75, "feet"),
  28924. name: "Hand",
  28925. image: {
  28926. source: "./media/characters/lira/hand.svg"
  28927. }
  28928. },
  28929. maw: {
  28930. height: math.unit(0.65, "feet"),
  28931. name: "Maw",
  28932. image: {
  28933. source: "./media/characters/lira/maw.svg"
  28934. }
  28935. },
  28936. pawDigi: {
  28937. height: math.unit(1.6, "feet"),
  28938. name: "Paw Digi",
  28939. image: {
  28940. source: "./media/characters/lira/paw-digi.svg"
  28941. }
  28942. },
  28943. pawPlanti: {
  28944. height: math.unit(1.4, "feet"),
  28945. name: "Paw Planti",
  28946. image: {
  28947. source: "./media/characters/lira/paw-planti.svg"
  28948. }
  28949. },
  28950. },
  28951. [
  28952. {
  28953. name: "Normal",
  28954. height: math.unit(6 + 2 / 12, "feet"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(100, "feet")
  28960. },
  28961. {
  28962. name: "Macro²",
  28963. height: math.unit(1600, "feet")
  28964. },
  28965. {
  28966. name: "Planetary",
  28967. height: math.unit(20, "earths")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(6, "feet"),
  28976. weight: math.unit(150, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/hadjet/front.svg",
  28980. extra: 1480 / 1346,
  28981. bottom: 26 / 1506
  28982. }
  28983. },
  28984. frontNsfw: {
  28985. height: math.unit(6, "feet"),
  28986. weight: math.unit(150, "lb"),
  28987. name: "Front (NSFW)",
  28988. image: {
  28989. source: "./media/characters/hadjet/front-nsfw.svg",
  28990. extra: 1440 / 1358,
  28991. bottom: 52 / 1492
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Macro",
  28998. height: math.unit(10, "stories"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Megamacro",
  29003. height: math.unit(1.5, "miles")
  29004. },
  29005. {
  29006. name: "Megamacro+",
  29007. height: math.unit(5, "miles")
  29008. },
  29009. ]
  29010. ))
  29011. characterMakers.push(() => makeCharacter(
  29012. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29013. {
  29014. side: {
  29015. height: math.unit(106, "feet"),
  29016. weight: math.unit(500, "tonnes"),
  29017. name: "Side",
  29018. image: {
  29019. source: "./media/characters/kodran/side.svg",
  29020. extra: 553 / 480,
  29021. bottom: 33 / 586
  29022. }
  29023. },
  29024. front: {
  29025. height: math.unit(132, "feet"),
  29026. weight: math.unit(500, "tonnes"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/kodran/front.svg",
  29030. extra: 667 / 643,
  29031. bottom: 42 / 709
  29032. }
  29033. },
  29034. flying: {
  29035. height: math.unit(350, "feet"),
  29036. weight: math.unit(500, "tonnes"),
  29037. name: "Flying",
  29038. image: {
  29039. source: "./media/characters/kodran/flying.svg"
  29040. }
  29041. },
  29042. foot: {
  29043. height: math.unit(33, "feet"),
  29044. name: "Foot",
  29045. image: {
  29046. source: "./media/characters/kodran/foot.svg"
  29047. }
  29048. },
  29049. footFront: {
  29050. height: math.unit(19, "feet"),
  29051. name: "Foot (Front)",
  29052. image: {
  29053. source: "./media/characters/kodran/foot-front.svg",
  29054. extra: 261 / 261,
  29055. bottom: 91 / 352
  29056. }
  29057. },
  29058. headFront: {
  29059. height: math.unit(53, "feet"),
  29060. name: "Head (Front)",
  29061. image: {
  29062. source: "./media/characters/kodran/head-front.svg"
  29063. }
  29064. },
  29065. headSide: {
  29066. height: math.unit(65, "feet"),
  29067. name: "Head (Side)",
  29068. image: {
  29069. source: "./media/characters/kodran/head-side.svg"
  29070. }
  29071. },
  29072. throat: {
  29073. height: math.unit(79, "feet"),
  29074. name: "Throat",
  29075. image: {
  29076. source: "./media/characters/kodran/throat.svg"
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Large",
  29083. height: math.unit(106, "feet"),
  29084. default: true
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29090. {
  29091. side: {
  29092. height: math.unit(11, "feet"),
  29093. weight: math.unit(150, "lb"),
  29094. name: "Side",
  29095. image: {
  29096. source: "./media/characters/pyxaron/side.svg",
  29097. extra: 305 / 195,
  29098. bottom: 17 / 322
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(11, "feet"),
  29106. default: true
  29107. },
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(6, "feet"),
  29115. weight: math.unit(150, "lb"),
  29116. name: "Front",
  29117. image: {
  29118. source: "./media/characters/meep/front.svg",
  29119. extra: 88 / 80,
  29120. bottom: 6 / 94
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Fun Sized",
  29127. height: math.unit(2, "inches"),
  29128. default: true
  29129. },
  29130. {
  29131. name: "Friend Sized",
  29132. height: math.unit(8, "inches")
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(15, "feet"),
  29141. weight: math.unit(2500, "lb"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/holly-rabbit/front.svg",
  29145. extra: 1433 / 1233,
  29146. bottom: 125 / 1558
  29147. }
  29148. },
  29149. dick: {
  29150. height: math.unit(4.6, "feet"),
  29151. name: "Dick",
  29152. image: {
  29153. source: "./media/characters/holly-rabbit/dick.svg"
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(15, "feet"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "Macro",
  29165. height: math.unit(250, "feet")
  29166. },
  29167. {
  29168. name: "Macro+",
  29169. height: math.unit(2500, "feet")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(3.02, "meters"),
  29178. weight: math.unit(500, "kg"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/drena/front.svg",
  29182. extra: 282 / 243,
  29183. bottom: 8 / 290
  29184. }
  29185. },
  29186. side: {
  29187. height: math.unit(3.02, "meters"),
  29188. weight: math.unit(500, "kg"),
  29189. name: "Side",
  29190. image: {
  29191. source: "./media/characters/drena/side.svg",
  29192. extra: 280 / 245,
  29193. bottom: 10 / 290
  29194. }
  29195. },
  29196. back: {
  29197. height: math.unit(3.02, "meters"),
  29198. weight: math.unit(500, "kg"),
  29199. name: "Back",
  29200. image: {
  29201. source: "./media/characters/drena/back.svg",
  29202. extra: 278 / 243,
  29203. bottom: 2 / 280
  29204. }
  29205. },
  29206. foot: {
  29207. height: math.unit(0.75, "meters"),
  29208. name: "Foot",
  29209. image: {
  29210. source: "./media/characters/drena/foot.svg"
  29211. }
  29212. },
  29213. maw: {
  29214. height: math.unit(0.82, "meters"),
  29215. name: "Maw",
  29216. image: {
  29217. source: "./media/characters/drena/maw.svg"
  29218. }
  29219. },
  29220. eating: {
  29221. height: math.unit(0.75, "meters"),
  29222. name: "Eating",
  29223. image: {
  29224. source: "./media/characters/drena/eating.svg"
  29225. }
  29226. },
  29227. rump: {
  29228. height: math.unit(0.93, "meters"),
  29229. name: "Rump",
  29230. image: {
  29231. source: "./media/characters/drena/rump.svg"
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(3.02, "meters"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(6 + 4 / 12, "feet"),
  29248. weight: math.unit(250, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/remmyzilla/front.svg",
  29252. extra: 4033 / 3588,
  29253. bottom: 123 / 4156
  29254. }
  29255. },
  29256. back: {
  29257. height: math.unit(6 + 4 / 12, "feet"),
  29258. weight: math.unit(250, "lb"),
  29259. name: "Back",
  29260. image: {
  29261. source: "./media/characters/remmyzilla/back.svg",
  29262. extra: 2687 / 2555,
  29263. bottom: 48 / 2735
  29264. }
  29265. },
  29266. paw: {
  29267. height: math.unit(1.73, "feet"),
  29268. name: "Paw",
  29269. image: {
  29270. source: "./media/characters/remmyzilla/paw.svg"
  29271. }
  29272. },
  29273. maw: {
  29274. height: math.unit(1.73, "feet"),
  29275. name: "Maw",
  29276. image: {
  29277. source: "./media/characters/remmyzilla/maw.svg"
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(6 + 4 / 12, "feet")
  29285. },
  29286. {
  29287. name: "Minimacro",
  29288. height: math.unit(12 + 8 / 12, "feet")
  29289. },
  29290. {
  29291. name: "Normal",
  29292. height: math.unit(640, "feet"),
  29293. default: true
  29294. },
  29295. {
  29296. name: "Megamacro",
  29297. height: math.unit(6400, "feet")
  29298. },
  29299. {
  29300. name: "Gigamacro",
  29301. height: math.unit(64000, "miles")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(2.5, "meters"),
  29310. weight: math.unit(300, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/lawrence/front.svg",
  29314. extra: 357 / 335,
  29315. bottom: 30 / 387
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(2.5, "meters"),
  29320. weight: math.unit(300, "lb"),
  29321. name: "Back",
  29322. image: {
  29323. source: "./media/characters/lawrence/back.svg",
  29324. extra: 357 / 338,
  29325. bottom: 16 / 373
  29326. }
  29327. },
  29328. head: {
  29329. height: math.unit(0.9, "meter"),
  29330. name: "Head",
  29331. image: {
  29332. source: "./media/characters/lawrence/head.svg"
  29333. }
  29334. },
  29335. maw: {
  29336. height: math.unit(0.7, "meter"),
  29337. name: "Maw",
  29338. image: {
  29339. source: "./media/characters/lawrence/maw.svg"
  29340. }
  29341. },
  29342. footBottom: {
  29343. height: math.unit(0.5, "meter"),
  29344. name: "Foot (Bottom)",
  29345. image: {
  29346. source: "./media/characters/lawrence/foot-bottom.svg"
  29347. }
  29348. },
  29349. footTop: {
  29350. height: math.unit(0.5, "meter"),
  29351. name: "Foot (Top)",
  29352. image: {
  29353. source: "./media/characters/lawrence/foot-top.svg"
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(2.5, "meters"),
  29361. default: true
  29362. },
  29363. {
  29364. name: "Macro",
  29365. height: math.unit(95, "meters")
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(150, "km")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29375. {
  29376. front: {
  29377. height: math.unit(4.2, "meters"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/sydney/front.svg",
  29381. extra: 1323 / 1277,
  29382. bottom: 111 / 1434
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(4.2, "meters"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29396. {
  29397. back: {
  29398. height: math.unit(201, "feet"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/jessica/back.svg",
  29402. extra: 273 / 259,
  29403. bottom: 7 / 280
  29404. }
  29405. },
  29406. },
  29407. [
  29408. {
  29409. name: "Normal",
  29410. height: math.unit(201, "feet"),
  29411. default: true
  29412. },
  29413. {
  29414. name: "Megamacro",
  29415. height: math.unit(8, "miles")
  29416. },
  29417. ]
  29418. ))
  29419. characterMakers.push(() => makeCharacter(
  29420. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29421. {
  29422. side: {
  29423. height: math.unit(5.6, "m"),
  29424. weight: math.unit(8000, "kg"),
  29425. name: "Side",
  29426. image: {
  29427. source: "./media/characters/victoria/side.svg",
  29428. extra: 1542/1229,
  29429. bottom: 124/1666
  29430. }
  29431. },
  29432. maw: {
  29433. height: math.unit(7.14, "feet"),
  29434. name: "Maw",
  29435. image: {
  29436. source: "./media/characters/victoria/maw.svg"
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Normal",
  29443. height: math.unit(5.6, "m"),
  29444. default: true
  29445. },
  29446. ]
  29447. ))
  29448. characterMakers.push(() => makeCharacter(
  29449. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29450. {
  29451. front: {
  29452. height: math.unit(5 + 6 / 12, "feet"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/cat/front.svg",
  29456. extra: 1449/1295,
  29457. bottom: 34/1483
  29458. },
  29459. form: "cat",
  29460. default: true
  29461. },
  29462. back: {
  29463. height: math.unit(5 + 6 / 12, "feet"),
  29464. name: "Back",
  29465. image: {
  29466. source: "./media/characters/cat/back.svg",
  29467. extra: 1466/1301,
  29468. bottom: 19/1485
  29469. },
  29470. form: "cat"
  29471. },
  29472. taur: {
  29473. height: math.unit(7, "feet"),
  29474. name: "Taur",
  29475. image: {
  29476. source: "./media/characters/cat/taur.svg",
  29477. extra: 1389/1233,
  29478. bottom: 83/1472
  29479. },
  29480. form: "taur",
  29481. default: true
  29482. },
  29483. lucarioFront: {
  29484. height: math.unit(4, "feet"),
  29485. name: "Lucario (Front)",
  29486. image: {
  29487. source: "./media/characters/cat/lucario-front.svg",
  29488. extra: 1149/1019,
  29489. bottom: 84/1233
  29490. },
  29491. form: "lucario",
  29492. default: true
  29493. },
  29494. lucarioBack: {
  29495. height: math.unit(4, "feet"),
  29496. name: "Lucario (Back)",
  29497. image: {
  29498. source: "./media/characters/cat/lucario-back.svg",
  29499. extra: 1190/1059,
  29500. bottom: 33/1223
  29501. },
  29502. form: "lucario"
  29503. },
  29504. megaLucario: {
  29505. height: math.unit(4, "feet"),
  29506. name: "Mega Lucario",
  29507. image: {
  29508. source: "./media/characters/cat/mega-lucario.svg",
  29509. extra: 1515 / 1319,
  29510. bottom: 63 / 1578
  29511. },
  29512. form: "lucario"
  29513. },
  29514. nickit: {
  29515. height: math.unit(2, "feet"),
  29516. name: "Nickit",
  29517. image: {
  29518. source: "./media/characters/cat/nickit.svg",
  29519. extra: 1980 / 1585,
  29520. bottom: 102 / 2082
  29521. },
  29522. form: "nickit",
  29523. default: true
  29524. },
  29525. lopunnyFront: {
  29526. height: math.unit(5, "feet"),
  29527. name: "Lopunny (Front)",
  29528. image: {
  29529. source: "./media/characters/cat/lopunny-front.svg",
  29530. extra: 1782 / 1469,
  29531. bottom: 38 / 1820
  29532. },
  29533. form: "lopunny",
  29534. default: true
  29535. },
  29536. lopunnyBack: {
  29537. height: math.unit(5, "feet"),
  29538. name: "Lopunny (Back)",
  29539. image: {
  29540. source: "./media/characters/cat/lopunny-back.svg",
  29541. extra: 1660 / 1490,
  29542. bottom: 25 / 1685
  29543. },
  29544. form: "lopunny"
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Really small",
  29550. height: math.unit(1, "nm")
  29551. },
  29552. {
  29553. name: "Micro",
  29554. height: math.unit(5, "inches")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(5 + 6 / 12, "feet"),
  29559. default: true
  29560. },
  29561. {
  29562. name: "Macro",
  29563. height: math.unit(50, "feet")
  29564. },
  29565. {
  29566. name: "Macro+",
  29567. height: math.unit(150, "feet")
  29568. },
  29569. {
  29570. name: "Megamacro",
  29571. height: math.unit(100, "miles")
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(63.4, "meters"),
  29580. weight: math.unit(3.28349e+6, "kilograms"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/kirina-violet/front.svg",
  29584. extra: 2812 / 2725,
  29585. bottom: 0 / 2812
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(63.4, "meters"),
  29590. weight: math.unit(3.28349e+6, "kilograms"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/kirina-violet/back.svg",
  29594. extra: 2812 / 2725,
  29595. bottom: 0 / 2812
  29596. }
  29597. },
  29598. mouth: {
  29599. height: math.unit(4.35, "meters"),
  29600. name: "Mouth",
  29601. image: {
  29602. source: "./media/characters/kirina-violet/mouth.svg"
  29603. }
  29604. },
  29605. paw: {
  29606. height: math.unit(5.6, "meters"),
  29607. name: "Paw",
  29608. image: {
  29609. source: "./media/characters/kirina-violet/paw.svg"
  29610. }
  29611. },
  29612. tail: {
  29613. height: math.unit(18, "meters"),
  29614. name: "Tail",
  29615. image: {
  29616. source: "./media/characters/kirina-violet/tail.svg"
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Macro",
  29623. height: math.unit(63.4, "meters"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(75, "feet"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/cat-gigachu/front.svg",
  29636. extra: 1239/1027,
  29637. bottom: 32/1271
  29638. }
  29639. },
  29640. back: {
  29641. height: math.unit(75, "feet"),
  29642. name: "Back",
  29643. image: {
  29644. source: "./media/characters/cat-gigachu/back.svg",
  29645. extra: 1229/1030,
  29646. bottom: 9/1238
  29647. }
  29648. },
  29649. },
  29650. [
  29651. {
  29652. name: "Dynamax",
  29653. height: math.unit(75, "feet"),
  29654. default: true
  29655. },
  29656. ]
  29657. ))
  29658. characterMakers.push(() => makeCharacter(
  29659. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29660. {
  29661. front: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(150, "lb"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/sfaiyan/front.svg",
  29667. extra: 999 / 978,
  29668. bottom: 5 / 1004
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(1.82, "meters")
  29676. },
  29677. {
  29678. name: "Giant",
  29679. height: math.unit(2.27, "km"),
  29680. default: true
  29681. },
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29686. {
  29687. front: {
  29688. height: math.unit(179, "cm"),
  29689. weight: math.unit(100, "kg"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/raunehkeli/front.svg",
  29693. extra: 1934 / 1926,
  29694. bottom: 0 / 1934
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(179, "cm")
  29702. },
  29703. {
  29704. name: "Maximum",
  29705. height: math.unit(575, "meters"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29712. {
  29713. front: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Front",
  29717. image: {
  29718. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29719. extra: 2625 / 2518,
  29720. bottom: 60 / 2685
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(6 + 2 / 12, "feet")
  29728. },
  29729. {
  29730. name: "Macro",
  29731. height: math.unit(1180, "feet"),
  29732. default: true
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 6 / 12, "feet"),
  29741. weight: math.unit(108, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/lilith-zott/front.svg",
  29745. extra: 2510 / 2238,
  29746. bottom: 100 / 2610
  29747. }
  29748. },
  29749. frontDressed: {
  29750. height: math.unit(5 + 6 / 12, "feet"),
  29751. weight: math.unit(108, "lb"),
  29752. name: "Front (Dressed)",
  29753. image: {
  29754. source: "./media/characters/lilith-zott/front-dressed.svg",
  29755. extra: 2510 / 2238,
  29756. bottom: 100 / 2610
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(5 + 6 / 12, "feet")
  29764. },
  29765. {
  29766. name: "Macro",
  29767. height: math.unit(1030, "feet"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(6, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29781. extra: 2567 / 2435,
  29782. bottom: 39 / 2606
  29783. }
  29784. },
  29785. frontSuper: {
  29786. height: math.unit(6, "feet"),
  29787. name: "Front (Super)",
  29788. image: {
  29789. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29790. extra: 2567 / 2435,
  29791. bottom: 39 / 2606
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(5 + 10 / 12, "feet")
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(1100, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(100, "miles"),
  29812. name: "Front",
  29813. image: {
  29814. source: "./media/characters/sona/front.svg",
  29815. extra: 2433 / 2201,
  29816. bottom: 53 / 2486
  29817. }
  29818. },
  29819. foot: {
  29820. height: math.unit(16.1, "miles"),
  29821. name: "Foot",
  29822. image: {
  29823. source: "./media/characters/sona/foot.svg"
  29824. }
  29825. },
  29826. },
  29827. [
  29828. {
  29829. name: "Macro",
  29830. height: math.unit(100, "miles"),
  29831. default: true
  29832. },
  29833. ]
  29834. ))
  29835. characterMakers.push(() => makeCharacter(
  29836. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29837. {
  29838. front: {
  29839. height: math.unit(6, "feet"),
  29840. weight: math.unit(150, "lb"),
  29841. name: "Front",
  29842. image: {
  29843. source: "./media/characters/bailey/front.svg",
  29844. extra: 1778 / 1724,
  29845. bottom: 30 / 1808
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Micro",
  29852. height: math.unit(4, "inches")
  29853. },
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(5 + 5 / 12, "feet"),
  29857. default: true
  29858. },
  29859. {
  29860. name: "Macro",
  29861. height: math.unit(250, "feet")
  29862. },
  29863. {
  29864. name: "Megamacro",
  29865. height: math.unit(100, "miles")
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(5 + 2 / 12, "feet"),
  29874. weight: math.unit(120, "lb"),
  29875. name: "Front",
  29876. image: {
  29877. source: "./media/characters/snaps/front.svg",
  29878. extra: 2370 / 2177,
  29879. bottom: 48 / 2418
  29880. }
  29881. },
  29882. back: {
  29883. height: math.unit(5 + 2 / 12, "feet"),
  29884. weight: math.unit(120, "lb"),
  29885. name: "Back",
  29886. image: {
  29887. source: "./media/characters/snaps/back.svg",
  29888. extra: 2408 / 2258,
  29889. bottom: 15 / 2423
  29890. }
  29891. },
  29892. },
  29893. [
  29894. {
  29895. name: "Micro",
  29896. height: math.unit(9, "inches")
  29897. },
  29898. {
  29899. name: "Normal",
  29900. height: math.unit(5 + 2 / 12, "feet"),
  29901. default: true
  29902. },
  29903. {
  29904. name: "Mini Macro",
  29905. height: math.unit(10, "feet")
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29911. {
  29912. front: {
  29913. height: math.unit(1.8, "meters"),
  29914. weight: math.unit(85, "kg"),
  29915. name: "Front",
  29916. image: {
  29917. source: "./media/characters/azteck/front.svg",
  29918. extra: 2815 / 2625,
  29919. bottom: 89 / 2904
  29920. }
  29921. },
  29922. back: {
  29923. height: math.unit(1.8, "meters"),
  29924. weight: math.unit(85, "kg"),
  29925. name: "Back",
  29926. image: {
  29927. source: "./media/characters/azteck/back.svg",
  29928. extra: 2856 / 2648,
  29929. bottom: 85 / 2941
  29930. }
  29931. },
  29932. frontDressed: {
  29933. height: math.unit(1.8, "meters"),
  29934. weight: math.unit(85, "kg"),
  29935. name: "Front (Dressed)",
  29936. image: {
  29937. source: "./media/characters/azteck/front-dressed.svg",
  29938. extra: 2147 / 2003,
  29939. bottom: 68 / 2215
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(0.47, "meters"),
  29944. weight: math.unit(85, "kg"),
  29945. name: "Head",
  29946. image: {
  29947. source: "./media/characters/azteck/head.svg"
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Bite sized",
  29954. height: math.unit(16, "cm")
  29955. },
  29956. {
  29957. name: "Normal",
  29958. height: math.unit(1.8, "meters"),
  29959. default: true
  29960. },
  29961. ]
  29962. ))
  29963. characterMakers.push(() => makeCharacter(
  29964. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29965. {
  29966. front: {
  29967. height: math.unit(6, "feet"),
  29968. weight: math.unit(150, "lb"),
  29969. name: "Front",
  29970. image: {
  29971. source: "./media/characters/pidge/front.svg",
  29972. extra: 620 / 588,
  29973. bottom: 9 / 629
  29974. }
  29975. },
  29976. back: {
  29977. height: math.unit(6, "feet"),
  29978. weight: math.unit(150, "lb"),
  29979. name: "Back",
  29980. image: {
  29981. source: "./media/characters/pidge/back.svg",
  29982. extra: 620 / 588,
  29983. bottom: 9 / 629
  29984. }
  29985. },
  29986. },
  29987. [
  29988. {
  29989. name: "Macro",
  29990. height: math.unit(1, "mile"),
  29991. default: true
  29992. },
  29993. ]
  29994. ))
  29995. characterMakers.push(() => makeCharacter(
  29996. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29997. {
  29998. front: {
  29999. height: math.unit(6, "feet"),
  30000. weight: math.unit(150, "lb"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/en/front.svg",
  30004. extra: 1697 / 1563,
  30005. bottom: 103 / 1800
  30006. }
  30007. },
  30008. back: {
  30009. height: math.unit(6, "feet"),
  30010. weight: math.unit(150, "lb"),
  30011. name: "Back",
  30012. image: {
  30013. source: "./media/characters/en/back.svg",
  30014. extra: 1700 / 1570,
  30015. bottom: 51 / 1751
  30016. }
  30017. },
  30018. frontDressed: {
  30019. height: math.unit(6, "feet"),
  30020. weight: math.unit(150, "lb"),
  30021. name: "Front (Dressed)",
  30022. image: {
  30023. source: "./media/characters/en/front-dressed.svg",
  30024. extra: 1697 / 1563,
  30025. bottom: 103 / 1800
  30026. }
  30027. },
  30028. backDressed: {
  30029. height: math.unit(6, "feet"),
  30030. weight: math.unit(150, "lb"),
  30031. name: "Back (Dressed)",
  30032. image: {
  30033. source: "./media/characters/en/back-dressed.svg",
  30034. extra: 1700 / 1570,
  30035. bottom: 51 / 1751
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(210, "feet"),
  30043. default: true
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(6, "feet"),
  30052. weight: math.unit(150, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/haze-orris/front.svg",
  30056. extra: 3975 / 3525,
  30057. bottom: 137 / 4112
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Micro",
  30064. height: math.unit(150, "mm"),
  30065. default: true
  30066. },
  30067. ]
  30068. ))
  30069. characterMakers.push(() => makeCharacter(
  30070. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30071. {
  30072. front: {
  30073. height: math.unit(6, "feet"),
  30074. weight: math.unit(150, "lb"),
  30075. name: "Front",
  30076. image: {
  30077. source: "./media/characters/casselene-yaro/front.svg",
  30078. extra: 4721 / 4541,
  30079. bottom: 82 / 4803
  30080. }
  30081. },
  30082. back: {
  30083. height: math.unit(6, "feet"),
  30084. weight: math.unit(150, "lb"),
  30085. name: "Back",
  30086. image: {
  30087. source: "./media/characters/casselene-yaro/back.svg",
  30088. extra: 4569 / 4377,
  30089. bottom: 69 / 4638
  30090. }
  30091. },
  30092. frontDressed: {
  30093. height: math.unit(6, "feet"),
  30094. weight: math.unit(150, "lb"),
  30095. name: "Front-dressed",
  30096. image: {
  30097. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30098. extra: 4721 / 4541,
  30099. bottom: 82 / 4803
  30100. }
  30101. },
  30102. },
  30103. [
  30104. {
  30105. name: "Macro",
  30106. height: math.unit(190, "feet"),
  30107. default: true
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(6, "feet"),
  30116. weight: math.unit(150, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/myra-rue-delore/front.svg",
  30120. extra: 1340 / 1308,
  30121. bottom: 67 / 1407
  30122. }
  30123. },
  30124. back: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/myra-rue-delore/back.svg",
  30130. extra: 1341 / 1310,
  30131. bottom: 40 / 1381
  30132. }
  30133. },
  30134. frontDressed: {
  30135. height: math.unit(6, "feet"),
  30136. weight: math.unit(150, "lb"),
  30137. name: "Front (Dressed)",
  30138. image: {
  30139. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30140. extra: 1340 / 1308,
  30141. bottom: 67 / 1407
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Macro",
  30148. height: math.unit(150, "feet"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(10, "feet"),
  30158. weight: math.unit(15015, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/fem!plat/front.svg",
  30162. extra: 2799 / 2604,
  30163. bottom: 149 / 2948
  30164. }
  30165. },
  30166. },
  30167. [
  30168. {
  30169. name: "Normal",
  30170. height: math.unit(10, "feet"),
  30171. default: true
  30172. },
  30173. {
  30174. name: "Macro",
  30175. height: math.unit(100, "feet")
  30176. },
  30177. {
  30178. name: "Megamacro",
  30179. height: math.unit(1000, "feet")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(15 + 5 / 12, "feet"),
  30188. weight: math.unit(4600, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/neapolitan-ananassa/front.svg",
  30192. extra: 2903 / 2736,
  30193. bottom: 0 / 2903
  30194. }
  30195. },
  30196. side: {
  30197. height: math.unit(15 + 5 / 12, "feet"),
  30198. weight: math.unit(4600, "lb"),
  30199. name: "Side",
  30200. image: {
  30201. source: "./media/characters/neapolitan-ananassa/side.svg",
  30202. extra: 2925 / 2719,
  30203. bottom: 0 / 2925
  30204. }
  30205. },
  30206. back: {
  30207. height: math.unit(15 + 5 / 12, "feet"),
  30208. weight: math.unit(4600, "lb"),
  30209. name: "Back",
  30210. image: {
  30211. source: "./media/characters/neapolitan-ananassa/back.svg",
  30212. extra: 2903 / 2736,
  30213. bottom: 0 / 2903
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Normal",
  30220. height: math.unit(15 + 5 / 12, "feet"),
  30221. default: true
  30222. },
  30223. {
  30224. name: "Post-Millenium",
  30225. height: math.unit(35 + 5 / 12, "feet")
  30226. },
  30227. {
  30228. name: "Post-Era",
  30229. height: math.unit(450 + 5 / 12, "feet")
  30230. },
  30231. ]
  30232. ))
  30233. characterMakers.push(() => makeCharacter(
  30234. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30235. {
  30236. front: {
  30237. height: math.unit(300, "meters"),
  30238. weight: math.unit(125000, "tonnes"),
  30239. name: "Front",
  30240. image: {
  30241. source: "./media/characters/pazuzu/front.svg",
  30242. extra: 877 / 794,
  30243. bottom: 47 / 924
  30244. }
  30245. },
  30246. },
  30247. [
  30248. {
  30249. name: "Macro",
  30250. height: math.unit(300, "meters"),
  30251. default: true
  30252. },
  30253. ]
  30254. ))
  30255. characterMakers.push(() => makeCharacter(
  30256. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30257. {
  30258. side: {
  30259. height: math.unit(10 + 7 / 12, "feet"),
  30260. weight: math.unit(2.5, "tons"),
  30261. name: "Side",
  30262. image: {
  30263. source: "./media/characters/aasha/side.svg",
  30264. extra: 1345 / 1245,
  30265. bottom: 111 / 1456
  30266. }
  30267. },
  30268. back: {
  30269. height: math.unit(10 + 7 / 12, "feet"),
  30270. weight: math.unit(2.5, "tons"),
  30271. name: "Back",
  30272. image: {
  30273. source: "./media/characters/aasha/back.svg",
  30274. extra: 1133 / 1057,
  30275. bottom: 257 / 1390
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(10 + 7 / 12, "feet"),
  30283. default: true
  30284. },
  30285. ]
  30286. ))
  30287. characterMakers.push(() => makeCharacter(
  30288. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30289. {
  30290. front: {
  30291. height: math.unit(6 + 3 / 12, "feet"),
  30292. name: "Front",
  30293. image: {
  30294. source: "./media/characters/nevan/front.svg",
  30295. extra: 704 / 704,
  30296. bottom: 28 / 732
  30297. }
  30298. },
  30299. back: {
  30300. height: math.unit(6 + 3 / 12, "feet"),
  30301. name: "Back",
  30302. image: {
  30303. source: "./media/characters/nevan/back.svg",
  30304. extra: 714 / 714,
  30305. bottom: 21 / 735
  30306. }
  30307. },
  30308. frontFlaccid: {
  30309. height: math.unit(6 + 3 / 12, "feet"),
  30310. name: "Front (Flaccid)",
  30311. image: {
  30312. source: "./media/characters/nevan/front-flaccid.svg",
  30313. extra: 704 / 704,
  30314. bottom: 28 / 732
  30315. }
  30316. },
  30317. frontErect: {
  30318. height: math.unit(6 + 3 / 12, "feet"),
  30319. name: "Front (Erect)",
  30320. image: {
  30321. source: "./media/characters/nevan/front-erect.svg",
  30322. extra: 704 / 704,
  30323. bottom: 28 / 732
  30324. }
  30325. },
  30326. backFlaccid: {
  30327. height: math.unit(6 + 3 / 12, "feet"),
  30328. name: "Back (Flaccid)",
  30329. image: {
  30330. source: "./media/characters/nevan/back-flaccid.svg",
  30331. extra: 714 / 714,
  30332. bottom: 21 / 735
  30333. }
  30334. },
  30335. },
  30336. [
  30337. {
  30338. name: "Normal",
  30339. height: math.unit(6 + 3 / 12, "feet"),
  30340. default: true
  30341. },
  30342. ]
  30343. ))
  30344. characterMakers.push(() => makeCharacter(
  30345. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30346. {
  30347. front: {
  30348. height: math.unit(4, "feet"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/arhan/front.svg",
  30352. extra: 3368 / 3133,
  30353. bottom: 0 / 3368
  30354. }
  30355. },
  30356. side: {
  30357. height: math.unit(4, "feet"),
  30358. name: "Side",
  30359. image: {
  30360. source: "./media/characters/arhan/side.svg",
  30361. extra: 3347 / 3105,
  30362. bottom: 0 / 3347
  30363. }
  30364. },
  30365. tongue: {
  30366. height: math.unit(1.42, "feet"),
  30367. name: "Tongue",
  30368. image: {
  30369. source: "./media/characters/arhan/tongue.svg"
  30370. }
  30371. },
  30372. head: {
  30373. height: math.unit(0.85, "feet"),
  30374. name: "Head",
  30375. image: {
  30376. source: "./media/characters/arhan/head.svg"
  30377. }
  30378. },
  30379. },
  30380. [
  30381. {
  30382. name: "Normal",
  30383. height: math.unit(4, "feet"),
  30384. default: true
  30385. },
  30386. ]
  30387. ))
  30388. characterMakers.push(() => makeCharacter(
  30389. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30390. {
  30391. front: {
  30392. height: math.unit(5 + 7.5 / 12, "feet"),
  30393. weight: math.unit(120, "lb"),
  30394. name: "Front",
  30395. image: {
  30396. source: "./media/characters/digi-duncan/front.svg",
  30397. extra: 330 / 326,
  30398. bottom: 16 / 346
  30399. }
  30400. },
  30401. side: {
  30402. height: math.unit(5 + 7.5 / 12, "feet"),
  30403. weight: math.unit(120, "lb"),
  30404. name: "Side",
  30405. image: {
  30406. source: "./media/characters/digi-duncan/side.svg",
  30407. extra: 341 / 337,
  30408. bottom: 1 / 342
  30409. }
  30410. },
  30411. back: {
  30412. height: math.unit(5 + 7.5 / 12, "feet"),
  30413. weight: math.unit(120, "lb"),
  30414. name: "Back",
  30415. image: {
  30416. source: "./media/characters/digi-duncan/back.svg",
  30417. extra: 330 / 326,
  30418. bottom: 12 / 342
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Speck",
  30425. height: math.unit(0.25, "mm")
  30426. },
  30427. {
  30428. name: "Micro",
  30429. height: math.unit(5, "mm")
  30430. },
  30431. {
  30432. name: "Tiny",
  30433. height: math.unit(0.5, "inches"),
  30434. default: true
  30435. },
  30436. {
  30437. name: "Human",
  30438. height: math.unit(5 + 7.5 / 12, "feet")
  30439. },
  30440. {
  30441. name: "Minigiant",
  30442. height: math.unit(8 + 5.25, "feet")
  30443. },
  30444. {
  30445. name: "Giant",
  30446. height: math.unit(2000, "feet")
  30447. },
  30448. {
  30449. name: "Mega",
  30450. height: math.unit(371.1, "miles")
  30451. },
  30452. ]
  30453. ))
  30454. characterMakers.push(() => makeCharacter(
  30455. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30456. {
  30457. front: {
  30458. height: math.unit(2, "meters"),
  30459. weight: math.unit(350, "kg"),
  30460. name: "Front",
  30461. image: {
  30462. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30463. extra: 898 / 838,
  30464. bottom: 9 / 907
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Micro",
  30471. height: math.unit(8, "meters")
  30472. },
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(50, "meters"),
  30476. default: true
  30477. },
  30478. {
  30479. name: "Macro",
  30480. height: math.unit(500, "meters")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6 + 6 / 12, "feet"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/khardesh/front.svg",
  30492. extra: 1788/1596,
  30493. bottom: 66/1854
  30494. }
  30495. },
  30496. back: {
  30497. height: math.unit(6 + 6 / 12, "feet"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/khardesh/back.svg",
  30501. extra: 1781/1584,
  30502. bottom: 68/1849
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(6 + 6 / 12, "feet"),
  30510. default: true
  30511. },
  30512. {
  30513. name: "Normal+",
  30514. height: math.unit(4, "meters")
  30515. },
  30516. {
  30517. name: "Macro",
  30518. height: math.unit(50, "meters")
  30519. },
  30520. {
  30521. name: "Macro+",
  30522. height: math.unit(100, "meters")
  30523. },
  30524. {
  30525. name: "Megamacro",
  30526. height: math.unit(20, "km")
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(150, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/kosho/front.svg",
  30539. extra: 1847 / 1847,
  30540. bottom: 86 / 1933
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Second-stage micro",
  30547. height: math.unit(0.5, "inches")
  30548. },
  30549. {
  30550. name: "First-stage micro",
  30551. height: math.unit(6, "inches")
  30552. },
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(6, "feet"),
  30556. default: true
  30557. },
  30558. {
  30559. name: "First-stage macro",
  30560. height: math.unit(72, "feet")
  30561. },
  30562. {
  30563. name: "Second-stage macro",
  30564. height: math.unit(864, "feet")
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30570. {
  30571. normal: {
  30572. height: math.unit(4 + 6 / 12, "feet"),
  30573. name: "Normal",
  30574. image: {
  30575. source: "./media/characters/hydra/normal.svg",
  30576. extra: 2833 / 2634,
  30577. bottom: 68 / 2901
  30578. }
  30579. },
  30580. smol: {
  30581. height: math.unit(0.705, "inches"),
  30582. name: "Smol",
  30583. image: {
  30584. source: "./media/characters/hydra/smol.svg",
  30585. extra: 2715 / 2540,
  30586. bottom: 0 / 2715
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Normal",
  30593. height: math.unit(4 + 6 / 12, "feet"),
  30594. default: true
  30595. }
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(0.6, "cm"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/daz/front.svg",
  30606. extra: 1682 / 1164,
  30607. bottom: 42 / 1724
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Normal",
  30614. height: math.unit(0.6, "cm"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(6, "feet"),
  30624. weight: math.unit(235, "lb"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/theo-pangolin/front.svg",
  30628. extra: 1996 / 1969,
  30629. bottom: 115 / 2111
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(6, "feet"),
  30634. weight: math.unit(235, "lb"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/theo-pangolin/back.svg",
  30638. extra: 1979 / 1979,
  30639. bottom: 40 / 2019
  30640. }
  30641. },
  30642. feral: {
  30643. height: math.unit(2, "feet"),
  30644. weight: math.unit(30, "lb"),
  30645. name: "Feral",
  30646. image: {
  30647. source: "./media/characters/theo-pangolin/feral.svg",
  30648. extra: 803 / 791,
  30649. bottom: 181 / 984
  30650. }
  30651. },
  30652. footFive: {
  30653. height: math.unit(1.43, "feet"),
  30654. name: "Foot (Five Toes)",
  30655. image: {
  30656. source: "./media/characters/theo-pangolin/foot-five.svg"
  30657. }
  30658. },
  30659. footFour: {
  30660. height: math.unit(1.43, "feet"),
  30661. name: "Foot (Four Toes)",
  30662. image: {
  30663. source: "./media/characters/theo-pangolin/foot-four.svg"
  30664. }
  30665. },
  30666. handFour: {
  30667. height: math.unit(0.81, "feet"),
  30668. name: "Hand (Four Fingers)",
  30669. image: {
  30670. source: "./media/characters/theo-pangolin/hand-four.svg"
  30671. }
  30672. },
  30673. handThree: {
  30674. height: math.unit(0.81, "feet"),
  30675. name: "Hand (Three Fingers)",
  30676. image: {
  30677. source: "./media/characters/theo-pangolin/hand-three.svg"
  30678. }
  30679. },
  30680. headFront: {
  30681. height: math.unit(1.37, "feet"),
  30682. name: "Head (Front)",
  30683. image: {
  30684. source: "./media/characters/theo-pangolin/head-front.svg"
  30685. }
  30686. },
  30687. headSide: {
  30688. height: math.unit(1.43, "feet"),
  30689. name: "Head (Side)",
  30690. image: {
  30691. source: "./media/characters/theo-pangolin/head-side.svg"
  30692. }
  30693. },
  30694. tongue: {
  30695. height: math.unit(2.29, "feet"),
  30696. name: "Tongue",
  30697. image: {
  30698. source: "./media/characters/theo-pangolin/tongue.svg"
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(6, "feet")
  30706. },
  30707. {
  30708. name: "Macro",
  30709. height: math.unit(400, "feet"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(6, "inches"),
  30719. weight: math.unit(0.036, "kg"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/renée/front.svg",
  30723. extra: 900 / 886,
  30724. bottom: 8 / 908
  30725. }
  30726. },
  30727. },
  30728. [
  30729. {
  30730. name: "Nano",
  30731. height: math.unit(1, "nm")
  30732. },
  30733. {
  30734. name: "Micro",
  30735. height: math.unit(1, "mm")
  30736. },
  30737. {
  30738. name: "Normal",
  30739. height: math.unit(6, "inches")
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(2000, "feet"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Megamacro",
  30748. height: math.unit(2, "km")
  30749. },
  30750. {
  30751. name: "Gigamacro",
  30752. height: math.unit(2000, "km")
  30753. },
  30754. {
  30755. name: "Teramacro",
  30756. height: math.unit(250000, "km")
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30762. {
  30763. front: {
  30764. height: math.unit(4, "meters"),
  30765. weight: math.unit(150, "kg"),
  30766. name: "Front",
  30767. image: {
  30768. source: "./media/characters/caledvwlch/front.svg",
  30769. extra: 1760 / 1551,
  30770. bottom: 28 / 1788
  30771. }
  30772. },
  30773. side: {
  30774. height: math.unit(4, "meters"),
  30775. weight: math.unit(150, "kg"),
  30776. name: "Side",
  30777. image: {
  30778. source: "./media/characters/caledvwlch/side.svg",
  30779. extra: 1605 / 1536,
  30780. bottom: 31 / 1636
  30781. }
  30782. },
  30783. back: {
  30784. height: math.unit(4, "meters"),
  30785. weight: math.unit(150, "kg"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/caledvwlch/back.svg",
  30789. extra: 1635 / 1565,
  30790. bottom: 27 / 1662
  30791. }
  30792. },
  30793. },
  30794. [
  30795. {
  30796. name: "\"Incognito\"",
  30797. height: math.unit(4, "meters")
  30798. },
  30799. {
  30800. name: "Small rampage",
  30801. height: math.unit(600, "meters")
  30802. },
  30803. {
  30804. name: "Mega",
  30805. height: math.unit(30, "km")
  30806. },
  30807. {
  30808. name: "Home-size",
  30809. height: math.unit(50, "km"),
  30810. default: true
  30811. },
  30812. {
  30813. name: "Giga",
  30814. height: math.unit(300, "km")
  30815. },
  30816. {
  30817. name: "Lounging",
  30818. height: math.unit(11000, "km")
  30819. },
  30820. {
  30821. name: "Planet snacking",
  30822. height: math.unit(2000000, "km")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(6, "feet"),
  30831. weight: math.unit(215, "lb"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/sapphire-svell/front.svg",
  30835. extra: 495 / 455,
  30836. bottom: 20 / 515
  30837. }
  30838. },
  30839. back: {
  30840. height: math.unit(6, "feet"),
  30841. weight: math.unit(216, "lb"),
  30842. name: "Back",
  30843. image: {
  30844. source: "./media/characters/sapphire-svell/back.svg",
  30845. extra: 497 / 477,
  30846. bottom: 7 / 504
  30847. }
  30848. },
  30849. maw: {
  30850. height: math.unit(1.57, "feet"),
  30851. name: "Maw",
  30852. image: {
  30853. source: "./media/characters/sapphire-svell/maw.svg"
  30854. }
  30855. },
  30856. foot: {
  30857. height: math.unit(1.07, "feet"),
  30858. name: "Foot",
  30859. image: {
  30860. source: "./media/characters/sapphire-svell/foot.svg"
  30861. }
  30862. },
  30863. toering: {
  30864. height: math.unit(1.7, "inch"),
  30865. name: "Toering",
  30866. image: {
  30867. source: "./media/characters/sapphire-svell/toering.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Normal",
  30874. height: math.unit(300, "feet"),
  30875. default: true
  30876. },
  30877. {
  30878. name: "Augmented",
  30879. height: math.unit(1250, "feet")
  30880. },
  30881. {
  30882. name: "Unleashed",
  30883. height: math.unit(3000, "feet")
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30889. {
  30890. side: {
  30891. height: math.unit(2 + 3 / 12, "feet"),
  30892. weight: math.unit(110, "lb"),
  30893. name: "Side",
  30894. image: {
  30895. source: "./media/characters/glitch-flux/side.svg",
  30896. extra: 997 / 805,
  30897. bottom: 20 / 1017
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(2 + 3 / 12, "feet"),
  30905. default: true
  30906. },
  30907. ]
  30908. ))
  30909. characterMakers.push(() => makeCharacter(
  30910. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30911. {
  30912. front: {
  30913. height: math.unit(4, "meters"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/mid/front.svg",
  30917. extra: 507 / 476,
  30918. bottom: 17 / 524
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(4, "meters"),
  30923. name: "Back",
  30924. image: {
  30925. source: "./media/characters/mid/back.svg",
  30926. extra: 519 / 487,
  30927. bottom: 7 / 526
  30928. }
  30929. },
  30930. stuck: {
  30931. height: math.unit(2.2, "meters"),
  30932. name: "Stuck",
  30933. image: {
  30934. source: "./media/characters/mid/stuck.svg",
  30935. extra: 1951 / 1869,
  30936. bottom: 88 / 2039
  30937. }
  30938. }
  30939. },
  30940. [
  30941. {
  30942. name: "Normal",
  30943. height: math.unit(4, "meters"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Big",
  30948. height: math.unit(10, "meters")
  30949. },
  30950. {
  30951. name: "Macro",
  30952. height: math.unit(800, "meters")
  30953. },
  30954. {
  30955. name: "Megamacro",
  30956. height: math.unit(100, "km")
  30957. },
  30958. {
  30959. name: "Overgrown",
  30960. height: math.unit(1, "parsec")
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(2.5, "meters"),
  30969. weight: math.unit(225, "kg"),
  30970. name: "Front",
  30971. image: {
  30972. source: "./media/characters/iris/front.svg",
  30973. extra: 3348 / 3251,
  30974. bottom: 205 / 3553
  30975. }
  30976. },
  30977. maw: {
  30978. height: math.unit(0.56, "meter"),
  30979. name: "Maw",
  30980. image: {
  30981. source: "./media/characters/iris/maw.svg"
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Mewter cat",
  30988. height: math.unit(1.2, "meters")
  30989. },
  30990. {
  30991. name: "Minimacro",
  30992. height: math.unit(2.5, "meters"),
  30993. default: true
  30994. },
  30995. {
  30996. name: "Macro",
  30997. height: math.unit(180, "meters")
  30998. },
  30999. {
  31000. name: "Megamacro",
  31001. height: math.unit(2746, "meters")
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6, "feet"),
  31010. weight: math.unit(135, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/axel/front.svg",
  31014. extra: 908 / 908,
  31015. bottom: 58 / 966
  31016. }
  31017. },
  31018. side: {
  31019. height: math.unit(6, "feet"),
  31020. weight: math.unit(135, "lb"),
  31021. name: "Side",
  31022. image: {
  31023. source: "./media/characters/axel/side.svg",
  31024. extra: 958 / 958,
  31025. bottom: 11 / 969
  31026. }
  31027. },
  31028. back: {
  31029. height: math.unit(6, "feet"),
  31030. weight: math.unit(135, "lb"),
  31031. name: "Back",
  31032. image: {
  31033. source: "./media/characters/axel/back.svg",
  31034. extra: 887 / 887,
  31035. bottom: 34 / 921
  31036. }
  31037. },
  31038. head: {
  31039. height: math.unit(1.07, "feet"),
  31040. name: "Head",
  31041. image: {
  31042. source: "./media/characters/axel/head.svg"
  31043. }
  31044. },
  31045. beak: {
  31046. height: math.unit(1.4, "feet"),
  31047. name: "Beak",
  31048. image: {
  31049. source: "./media/characters/axel/beak.svg"
  31050. }
  31051. },
  31052. beakSide: {
  31053. height: math.unit(1.4, "feet"),
  31054. name: "Beak Side",
  31055. image: {
  31056. source: "./media/characters/axel/beak-side.svg"
  31057. }
  31058. },
  31059. sheath: {
  31060. height: math.unit(0.5, "feet"),
  31061. name: "Sheath",
  31062. image: {
  31063. source: "./media/characters/axel/sheath.svg"
  31064. }
  31065. },
  31066. dick: {
  31067. height: math.unit(0.98, "feet"),
  31068. name: "Dick",
  31069. image: {
  31070. source: "./media/characters/axel/dick.svg"
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Macro",
  31077. height: math.unit(68, "meters"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31084. {
  31085. front: {
  31086. height: math.unit(3.5, "meters"),
  31087. weight: math.unit(1200, "kg"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/joanna/front.svg",
  31091. extra: 1596 / 1488,
  31092. bottom: 29 / 1625
  31093. }
  31094. },
  31095. back: {
  31096. height: math.unit(3.5, "meters"),
  31097. weight: math.unit(1200, "kg"),
  31098. name: "Back",
  31099. image: {
  31100. source: "./media/characters/joanna/back.svg",
  31101. extra: 1594 / 1495,
  31102. bottom: 26 / 1620
  31103. }
  31104. },
  31105. frontShorts: {
  31106. height: math.unit(3.5, "meters"),
  31107. weight: math.unit(1200, "kg"),
  31108. name: "Front (Shorts)",
  31109. image: {
  31110. source: "./media/characters/joanna/front-shorts.svg",
  31111. extra: 1596 / 1488,
  31112. bottom: 29 / 1625
  31113. }
  31114. },
  31115. frontBiker: {
  31116. height: math.unit(3.5, "meters"),
  31117. weight: math.unit(1200, "kg"),
  31118. name: "Front (Biker)",
  31119. image: {
  31120. source: "./media/characters/joanna/front-biker.svg",
  31121. extra: 1596 / 1488,
  31122. bottom: 29 / 1625
  31123. }
  31124. },
  31125. backBiker: {
  31126. height: math.unit(3.5, "meters"),
  31127. weight: math.unit(1200, "kg"),
  31128. name: "Back (Biker)",
  31129. image: {
  31130. source: "./media/characters/joanna/back-biker.svg",
  31131. extra: 1594 / 1495,
  31132. bottom: 88 / 1682
  31133. }
  31134. },
  31135. bikeLeft: {
  31136. height: math.unit(2.4, "meters"),
  31137. weight: math.unit(1600, "kg"),
  31138. name: "Bike (Left)",
  31139. image: {
  31140. source: "./media/characters/joanna/bike-left.svg",
  31141. extra: 720 / 720,
  31142. bottom: 8 / 728
  31143. }
  31144. },
  31145. bikeRight: {
  31146. height: math.unit(2.4, "meters"),
  31147. weight: math.unit(1600, "kg"),
  31148. name: "Bike (Right)",
  31149. image: {
  31150. source: "./media/characters/joanna/bike-right.svg",
  31151. extra: 720 / 720,
  31152. bottom: 8 / 728
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Incognito",
  31159. height: math.unit(3.5, "meters")
  31160. },
  31161. {
  31162. name: "Casual Big",
  31163. height: math.unit(200, "meters")
  31164. },
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(600, "meters")
  31168. },
  31169. {
  31170. name: "Original",
  31171. height: math.unit(20, "km"),
  31172. default: true
  31173. },
  31174. {
  31175. name: "Giga",
  31176. height: math.unit(400, "km")
  31177. },
  31178. {
  31179. name: "Lounging",
  31180. height: math.unit(1500, "km")
  31181. },
  31182. {
  31183. name: "Planetary",
  31184. height: math.unit(200000, "km")
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(6, "feet"),
  31193. weight: math.unit(150, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/hugo-sigil/front.svg",
  31197. extra: 522 / 500,
  31198. bottom: 2 / 524
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(6, "feet"),
  31203. weight: math.unit(150, "lb"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/hugo-sigil/back.svg",
  31207. extra: 519 / 495,
  31208. bottom: 5 / 524
  31209. }
  31210. },
  31211. maw: {
  31212. height: math.unit(1.4, "feet"),
  31213. weight: math.unit(150, "lb"),
  31214. name: "Maw",
  31215. image: {
  31216. source: "./media/characters/hugo-sigil/maw.svg"
  31217. }
  31218. },
  31219. feet: {
  31220. height: math.unit(1.56, "feet"),
  31221. weight: math.unit(150, "lb"),
  31222. name: "Feet",
  31223. image: {
  31224. source: "./media/characters/hugo-sigil/feet.svg",
  31225. extra: 177 / 177,
  31226. bottom: 12 / 189
  31227. }
  31228. },
  31229. },
  31230. [
  31231. {
  31232. name: "Normal",
  31233. height: math.unit(6, "feet")
  31234. },
  31235. {
  31236. name: "Macro",
  31237. height: math.unit(200, "feet"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31244. {
  31245. front: {
  31246. height: math.unit(6, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/peri/front.svg",
  31251. extra: 2354 / 2233,
  31252. bottom: 49 / 2403
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Really Small",
  31259. height: math.unit(1, "nm")
  31260. },
  31261. {
  31262. name: "Micro",
  31263. height: math.unit(4, "inches")
  31264. },
  31265. {
  31266. name: "Normal",
  31267. height: math.unit(7, "inches"),
  31268. default: true
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(400, "feet")
  31273. },
  31274. {
  31275. name: "Megamacro",
  31276. height: math.unit(100, "miles")
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31282. {
  31283. frontSlim: {
  31284. height: math.unit(7, "feet"),
  31285. name: "Front (Slim)",
  31286. image: {
  31287. source: "./media/characters/issilora/front-slim.svg",
  31288. extra: 529 / 449,
  31289. bottom: 53 / 582
  31290. }
  31291. },
  31292. sideSlim: {
  31293. height: math.unit(7, "feet"),
  31294. name: "Side (Slim)",
  31295. image: {
  31296. source: "./media/characters/issilora/side-slim.svg",
  31297. extra: 570 / 480,
  31298. bottom: 30 / 600
  31299. }
  31300. },
  31301. backSlim: {
  31302. height: math.unit(7, "feet"),
  31303. name: "Back (Slim)",
  31304. image: {
  31305. source: "./media/characters/issilora/back-slim.svg",
  31306. extra: 537 / 455,
  31307. bottom: 46 / 583
  31308. }
  31309. },
  31310. frontBuff: {
  31311. height: math.unit(7, "feet"),
  31312. name: "Front (Buff)",
  31313. image: {
  31314. source: "./media/characters/issilora/front-buff.svg",
  31315. extra: 2310 / 2035,
  31316. bottom: 335 / 2645
  31317. }
  31318. },
  31319. head: {
  31320. height: math.unit(1.94, "feet"),
  31321. name: "Head",
  31322. image: {
  31323. source: "./media/characters/issilora/head.svg"
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Minimum",
  31330. height: math.unit(7, "feet")
  31331. },
  31332. {
  31333. name: "Comfortable",
  31334. height: math.unit(17, "feet")
  31335. },
  31336. {
  31337. name: "Fun Size",
  31338. height: math.unit(47, "feet")
  31339. },
  31340. {
  31341. name: "Natural Macro",
  31342. height: math.unit(137, "feet"),
  31343. default: true
  31344. },
  31345. {
  31346. name: "Maximum Kaiju",
  31347. height: math.unit(397, "feet")
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31353. {
  31354. front: {
  31355. height: math.unit(50 + 9/12, "feet"),
  31356. weight: math.unit(32.8, "tons"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/irb'iiritaahn/front.svg",
  31360. extra: 1878/1826,
  31361. bottom: 326/2204
  31362. }
  31363. },
  31364. back: {
  31365. height: math.unit(50 + 9/12, "feet"),
  31366. weight: math.unit(32.8, "tons"),
  31367. name: "Back",
  31368. image: {
  31369. source: "./media/characters/irb'iiritaahn/back.svg",
  31370. extra: 2052/2018,
  31371. bottom: 152/2204
  31372. }
  31373. },
  31374. head: {
  31375. height: math.unit(12.86, "feet"),
  31376. name: "Head",
  31377. image: {
  31378. source: "./media/characters/irb'iiritaahn/head.svg"
  31379. }
  31380. },
  31381. maw: {
  31382. height: math.unit(9.66, "feet"),
  31383. name: "Maw",
  31384. image: {
  31385. source: "./media/characters/irb'iiritaahn/maw.svg"
  31386. }
  31387. },
  31388. frontDick: {
  31389. height: math.unit(8.78461, "feet"),
  31390. name: "Front Dick",
  31391. image: {
  31392. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31393. }
  31394. },
  31395. rearDick: {
  31396. height: math.unit(8.78461, "feet"),
  31397. name: "Rear Dick",
  31398. image: {
  31399. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31400. }
  31401. },
  31402. rearDickUnfolded: {
  31403. height: math.unit(8.78, "feet"),
  31404. name: "Rear Dick (Unfolded)",
  31405. image: {
  31406. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31407. }
  31408. },
  31409. wings: {
  31410. height: math.unit(43, "feet"),
  31411. name: "Wings",
  31412. image: {
  31413. source: "./media/characters/irb'iiritaahn/wings.svg"
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Macro",
  31420. height: math.unit(50 + 9/12, "feet"),
  31421. default: true
  31422. },
  31423. ]
  31424. ))
  31425. characterMakers.push(() => makeCharacter(
  31426. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31427. {
  31428. front: {
  31429. height: math.unit(205, "cm"),
  31430. weight: math.unit(102, "kg"),
  31431. name: "Front",
  31432. image: {
  31433. source: "./media/characters/irbisgreif/front.svg",
  31434. extra: 785/706,
  31435. bottom: 13/798
  31436. }
  31437. },
  31438. back: {
  31439. height: math.unit(205, "cm"),
  31440. weight: math.unit(102, "kg"),
  31441. name: "Back",
  31442. image: {
  31443. source: "./media/characters/irbisgreif/back.svg",
  31444. extra: 713/701,
  31445. bottom: 26/739
  31446. }
  31447. },
  31448. frontDressed: {
  31449. height: math.unit(216, "cm"),
  31450. weight: math.unit(102, "kg"),
  31451. name: "Front-dressed",
  31452. image: {
  31453. source: "./media/characters/irbisgreif/front-dressed.svg",
  31454. extra: 902/776,
  31455. bottom: 14/916
  31456. }
  31457. },
  31458. sideDressed: {
  31459. height: math.unit(195, "cm"),
  31460. weight: math.unit(102, "kg"),
  31461. name: "Side-dressed",
  31462. image: {
  31463. source: "./media/characters/irbisgreif/side-dressed.svg",
  31464. extra: 788/688,
  31465. bottom: 21/809
  31466. }
  31467. },
  31468. backDressed: {
  31469. height: math.unit(216, "cm"),
  31470. weight: math.unit(102, "kg"),
  31471. name: "Back-dressed",
  31472. image: {
  31473. source: "./media/characters/irbisgreif/back-dressed.svg",
  31474. extra: 901/783,
  31475. bottom: 10/911
  31476. }
  31477. },
  31478. dick: {
  31479. height: math.unit(0.49, "feet"),
  31480. name: "Dick",
  31481. image: {
  31482. source: "./media/characters/irbisgreif/dick.svg"
  31483. }
  31484. },
  31485. wingTop: {
  31486. height: math.unit(1.93 , "feet"),
  31487. name: "Wing-top",
  31488. image: {
  31489. source: "./media/characters/irbisgreif/wing-top.svg"
  31490. }
  31491. },
  31492. wingBottom: {
  31493. height: math.unit(1.93 , "feet"),
  31494. name: "Wing-bottom",
  31495. image: {
  31496. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(216, "cm"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(6, "feet"),
  31513. weight: math.unit(150, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/pride/front.svg",
  31517. extra: 1299/1230,
  31518. bottom: 18/1317
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(7, "feet")
  31526. },
  31527. {
  31528. name: "Mini-macro",
  31529. height: math.unit(11, "feet")
  31530. },
  31531. {
  31532. name: "Macro",
  31533. height: math.unit(15, "meters"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Macro+",
  31538. height: math.unit(40, "meters")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31544. {
  31545. front: {
  31546. height: math.unit(4 + 2 / 12, "feet"),
  31547. weight: math.unit(95, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/vaelophis-nyx/front.svg",
  31551. extra: 2532/2330,
  31552. bottom: 0/2532
  31553. }
  31554. },
  31555. back: {
  31556. height: math.unit(4 + 2 / 12, "feet"),
  31557. weight: math.unit(95, "lb"),
  31558. name: "Back",
  31559. image: {
  31560. source: "./media/characters/vaelophis-nyx/back.svg",
  31561. extra: 2484/2361,
  31562. bottom: 0/2484
  31563. }
  31564. },
  31565. feralSide: {
  31566. height: math.unit(2 + 1/12, "feet"),
  31567. weight: math.unit(20, "lb"),
  31568. name: "Feral (Side)",
  31569. image: {
  31570. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31571. extra: 1721/1581,
  31572. bottom: 70/1791
  31573. }
  31574. },
  31575. feralLazing: {
  31576. height: math.unit(1.08, "feet"),
  31577. weight: math.unit(20, "lb"),
  31578. name: "Feral (Lazing)",
  31579. image: {
  31580. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31581. extra: 822/822,
  31582. bottom: 248/1070
  31583. }
  31584. },
  31585. ear: {
  31586. height: math.unit(0.416, "feet"),
  31587. name: "Ear",
  31588. image: {
  31589. source: "./media/characters/vaelophis-nyx/ear.svg"
  31590. }
  31591. },
  31592. eye: {
  31593. height: math.unit(0.0748, "feet"),
  31594. name: "Eye",
  31595. image: {
  31596. source: "./media/characters/vaelophis-nyx/eye.svg"
  31597. }
  31598. },
  31599. mouth: {
  31600. height: math.unit(0.378, "feet"),
  31601. name: "Mouth",
  31602. image: {
  31603. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31604. }
  31605. },
  31606. spade: {
  31607. height: math.unit(0.55, "feet"),
  31608. name: "Spade",
  31609. image: {
  31610. source: "./media/characters/vaelophis-nyx/spade.svg"
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(4 + 2/12, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31624. {
  31625. front: {
  31626. height: math.unit(7, "feet"),
  31627. weight: math.unit(231, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/flux/front.svg",
  31631. extra: 919/871,
  31632. bottom: 0/919
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(7, "feet"),
  31637. weight: math.unit(231, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/flux/back.svg",
  31641. extra: 1040/992,
  31642. bottom: 0/1040
  31643. }
  31644. },
  31645. frontDressed: {
  31646. height: math.unit(7, "feet"),
  31647. weight: math.unit(231, "lb"),
  31648. name: "Front (Dressed)",
  31649. image: {
  31650. source: "./media/characters/flux/front-dressed.svg",
  31651. extra: 919/871,
  31652. bottom: 0/919
  31653. }
  31654. },
  31655. feralSide: {
  31656. height: math.unit(5, "feet"),
  31657. weight: math.unit(150, "lb"),
  31658. name: "Feral (Side)",
  31659. image: {
  31660. source: "./media/characters/flux/feral-side.svg",
  31661. extra: 598/528,
  31662. bottom: 28/626
  31663. }
  31664. },
  31665. head: {
  31666. height: math.unit(1.585, "feet"),
  31667. name: "Head",
  31668. image: {
  31669. source: "./media/characters/flux/head.svg"
  31670. }
  31671. },
  31672. headSide: {
  31673. height: math.unit(1.74, "feet"),
  31674. name: "Head (Side)",
  31675. image: {
  31676. source: "./media/characters/flux/head-side.svg"
  31677. }
  31678. },
  31679. headSideFire: {
  31680. height: math.unit(1.76, "feet"),
  31681. name: "Head (Side, Fire)",
  31682. image: {
  31683. source: "./media/characters/flux/head-side-fire.svg"
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(7, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(9, "feet"),
  31700. weight: math.unit(1012, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/ulfra-lupae/front.svg",
  31704. extra: 1083/1011,
  31705. bottom: 67/1150
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Micro",
  31712. height: math.unit(6, "inches")
  31713. },
  31714. {
  31715. name: "Socializing",
  31716. height: math.unit(6 + 5/12, "feet")
  31717. },
  31718. {
  31719. name: "Normal",
  31720. height: math.unit(9, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Macro",
  31725. height: math.unit(150, "feet")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31731. {
  31732. front: {
  31733. height: math.unit(5 + 2/12, "feet"),
  31734. weight: math.unit(120, "lb"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/timber/front.svg",
  31738. extra: 2814/2705,
  31739. bottom: 181/2995
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(5 + 2/12, "feet"),
  31747. default: true
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(5 + 7/12, "feet"),
  31756. weight: math.unit(220, "lb"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/nicki/front.svg",
  31760. extra: 453/419,
  31761. bottom: 7/460
  31762. }
  31763. },
  31764. frontAlt: {
  31765. height: math.unit(5 + 7/12, "feet"),
  31766. weight: math.unit(220, "lb"),
  31767. name: "Front-alt",
  31768. image: {
  31769. source: "./media/characters/nicki/front-alt.svg",
  31770. extra: 435/411,
  31771. bottom: 12/447
  31772. }
  31773. },
  31774. back: {
  31775. height: math.unit(5 + 7/12, "feet"),
  31776. weight: math.unit(220, "lb"),
  31777. name: "Back",
  31778. image: {
  31779. source: "./media/characters/nicki/back.svg",
  31780. extra: 440/413,
  31781. bottom: 19/459
  31782. }
  31783. },
  31784. taur: {
  31785. height: math.unit(7 + 6/12, "feet"),
  31786. weight: math.unit(700, "lb"),
  31787. name: "Taur",
  31788. image: {
  31789. source: "./media/characters/nicki/taur.svg",
  31790. extra: 975/773,
  31791. bottom: 0/975
  31792. }
  31793. },
  31794. frontNsfw: {
  31795. height: math.unit(5 + 7/12, "feet"),
  31796. weight: math.unit(220, "lb"),
  31797. name: "Front (NSFW)",
  31798. image: {
  31799. source: "./media/characters/nicki/front-nsfw.svg",
  31800. extra: 453/419,
  31801. bottom: 7/460
  31802. }
  31803. },
  31804. frontNsfwAlt: {
  31805. height: math.unit(5 + 7/12, "feet"),
  31806. weight: math.unit(220, "lb"),
  31807. name: "Front (Alt, NSFW)",
  31808. image: {
  31809. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31810. extra: 435/411,
  31811. bottom: 12/447
  31812. }
  31813. },
  31814. backNsfw: {
  31815. height: math.unit(5 + 7/12, "feet"),
  31816. weight: math.unit(220, "lb"),
  31817. name: "Back (NSFW)",
  31818. image: {
  31819. source: "./media/characters/nicki/back-nsfw.svg",
  31820. extra: 440/413,
  31821. bottom: 19/459
  31822. }
  31823. },
  31824. head: {
  31825. height: math.unit(2.1, "feet"),
  31826. name: "Head",
  31827. image: {
  31828. source: "./media/characters/nicki/head.svg"
  31829. }
  31830. },
  31831. paw: {
  31832. height: math.unit(1.88, "feet"),
  31833. name: "Paw",
  31834. image: {
  31835. source: "./media/characters/nicki/paw.svg"
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Normal",
  31842. height: math.unit(5 + 7/12, "feet"),
  31843. default: true
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31849. {
  31850. front: {
  31851. height: math.unit(7 + 10/12, "feet"),
  31852. weight: math.unit(3.5, "tons"),
  31853. name: "Front",
  31854. image: {
  31855. source: "./media/characters/lee/front.svg",
  31856. extra: 1773/1615,
  31857. bottom: 86/1859
  31858. }
  31859. },
  31860. hand: {
  31861. height: math.unit(1.78, "feet"),
  31862. name: "Hand",
  31863. image: {
  31864. source: "./media/characters/lee/hand.svg"
  31865. }
  31866. },
  31867. maw: {
  31868. height: math.unit(1.18, "feet"),
  31869. name: "Maw",
  31870. image: {
  31871. source: "./media/characters/lee/maw.svg"
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(7 + 10/12, "feet"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31885. {
  31886. front: {
  31887. height: math.unit(9, "feet"),
  31888. name: "Front",
  31889. image: {
  31890. source: "./media/characters/guti/front.svg",
  31891. extra: 4551/4355,
  31892. bottom: 123/4674
  31893. }
  31894. },
  31895. tongue: {
  31896. height: math.unit(1, "feet"),
  31897. name: "Tongue",
  31898. image: {
  31899. source: "./media/characters/guti/tongue.svg"
  31900. }
  31901. },
  31902. paw: {
  31903. height: math.unit(1.18, "feet"),
  31904. name: "Paw",
  31905. image: {
  31906. source: "./media/characters/guti/paw.svg"
  31907. }
  31908. },
  31909. },
  31910. [
  31911. {
  31912. name: "Normal",
  31913. height: math.unit(9, "feet"),
  31914. default: true
  31915. },
  31916. ]
  31917. ))
  31918. characterMakers.push(() => makeCharacter(
  31919. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31920. {
  31921. side: {
  31922. height: math.unit(5, "meters"),
  31923. name: "Side",
  31924. image: {
  31925. source: "./media/characters/vesper/side.svg",
  31926. extra: 1605/1518,
  31927. bottom: 0/1605
  31928. }
  31929. },
  31930. },
  31931. [
  31932. {
  31933. name: "Small",
  31934. height: math.unit(5, "meters")
  31935. },
  31936. {
  31937. name: "Sage",
  31938. height: math.unit(100, "meters"),
  31939. default: true
  31940. },
  31941. {
  31942. name: "Fun Size",
  31943. height: math.unit(600, "meters")
  31944. },
  31945. {
  31946. name: "Goddess",
  31947. height: math.unit(20000, "km")
  31948. },
  31949. {
  31950. name: "Maximum",
  31951. height: math.unit(5, "galaxies")
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(6 + 3/12, "feet"),
  31960. weight: math.unit(190, "lb"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/gawain/front.svg",
  31964. extra: 2222/2139,
  31965. bottom: 90/2312
  31966. }
  31967. },
  31968. back: {
  31969. height: math.unit(6 + 3/12, "feet"),
  31970. weight: math.unit(190, "lb"),
  31971. name: "Back",
  31972. image: {
  31973. source: "./media/characters/gawain/back.svg",
  31974. extra: 2199/2111,
  31975. bottom: 73/2272
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(6 + 3/12, "feet"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31989. {
  31990. side: {
  31991. height: math.unit(3.5, "meters"),
  31992. weight: math.unit(16000, "lb"),
  31993. name: "Side",
  31994. image: {
  31995. source: "./media/characters/dascalti/side.svg",
  31996. extra: 392/273,
  31997. bottom: 47/439
  31998. }
  31999. },
  32000. breath: {
  32001. height: math.unit(7.4, "feet"),
  32002. name: "Breath",
  32003. image: {
  32004. source: "./media/characters/dascalti/breath.svg"
  32005. }
  32006. },
  32007. fed: {
  32008. height: math.unit(3.6, "meters"),
  32009. weight: math.unit(16000, "lb"),
  32010. name: "Fed",
  32011. image: {
  32012. source: "./media/characters/dascalti/fed.svg",
  32013. extra: 1419/820,
  32014. bottom: 95/1514
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(3.5, "meters"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(3 + 5/12, "feet"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/mauve/front.svg",
  32034. extra: 1126/1033,
  32035. bottom: 65/1191
  32036. }
  32037. },
  32038. side: {
  32039. height: math.unit(3 + 5/12, "feet"),
  32040. name: "Side",
  32041. image: {
  32042. source: "./media/characters/mauve/side.svg",
  32043. extra: 1089/1001,
  32044. bottom: 29/1118
  32045. }
  32046. },
  32047. back: {
  32048. height: math.unit(3 + 5/12, "feet"),
  32049. name: "Back",
  32050. image: {
  32051. source: "./media/characters/mauve/back.svg",
  32052. extra: 1173/1053,
  32053. bottom: 109/1282
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(3 + 5/12, "feet"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32067. {
  32068. front: {
  32069. height: math.unit(6 + 3/12, "feet"),
  32070. weight: math.unit(430, "lb"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/carlos/front.svg",
  32074. extra: 1964/1913,
  32075. bottom: 70/2034
  32076. }
  32077. },
  32078. },
  32079. [
  32080. {
  32081. name: "Normal",
  32082. height: math.unit(6 + 3/12, "feet"),
  32083. default: true
  32084. },
  32085. ]
  32086. ))
  32087. characterMakers.push(() => makeCharacter(
  32088. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32089. {
  32090. back: {
  32091. height: math.unit(5 + 10/12, "feet"),
  32092. weight: math.unit(200, "lb"),
  32093. name: "Back",
  32094. image: {
  32095. source: "./media/characters/jax/back.svg",
  32096. extra: 764/739,
  32097. bottom: 25/789
  32098. }
  32099. },
  32100. },
  32101. [
  32102. {
  32103. name: "Normal",
  32104. height: math.unit(5 + 10/12, "feet"),
  32105. default: true
  32106. },
  32107. ]
  32108. ))
  32109. characterMakers.push(() => makeCharacter(
  32110. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32111. {
  32112. front: {
  32113. height: math.unit(8, "feet"),
  32114. weight: math.unit(250, "lb"),
  32115. name: "Front",
  32116. image: {
  32117. source: "./media/characters/eikthynir/front.svg",
  32118. extra: 1332/1166,
  32119. bottom: 82/1414
  32120. }
  32121. },
  32122. back: {
  32123. height: math.unit(8, "feet"),
  32124. weight: math.unit(250, "lb"),
  32125. name: "Back",
  32126. image: {
  32127. source: "./media/characters/eikthynir/back.svg",
  32128. extra: 1342/1190,
  32129. bottom: 19/1361
  32130. }
  32131. },
  32132. dick: {
  32133. height: math.unit(2.35, "feet"),
  32134. name: "Dick",
  32135. image: {
  32136. source: "./media/characters/eikthynir/dick.svg"
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Normal",
  32143. height: math.unit(8, "feet"),
  32144. default: true
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(99, "meters"),
  32153. weight: math.unit(13000, "tons"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/zlmos/front.svg",
  32157. extra: 2202/1992,
  32158. bottom: 315/2517
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Macro",
  32165. height: math.unit(99, "meters"),
  32166. default: true
  32167. },
  32168. ]
  32169. ))
  32170. characterMakers.push(() => makeCharacter(
  32171. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32172. {
  32173. front: {
  32174. height: math.unit(6 + 5/12, "feet"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/purri/front.svg",
  32178. extra: 1698/1610,
  32179. bottom: 32/1730
  32180. }
  32181. },
  32182. frontAlt: {
  32183. height: math.unit(6 + 5/12, "feet"),
  32184. name: "Front (Alt)",
  32185. image: {
  32186. source: "./media/characters/purri/front-alt.svg",
  32187. extra: 450/420,
  32188. bottom: 26/476
  32189. }
  32190. },
  32191. boots: {
  32192. height: math.unit(5.5, "feet"),
  32193. name: "Boots",
  32194. image: {
  32195. source: "./media/characters/purri/boots.svg",
  32196. extra: 905/853,
  32197. bottom: 18/923
  32198. }
  32199. },
  32200. lying: {
  32201. height: math.unit(2, "feet"),
  32202. name: "Lying",
  32203. image: {
  32204. source: "./media/characters/purri/lying.svg",
  32205. extra: 940/843,
  32206. bottom: 146/1086
  32207. }
  32208. },
  32209. devious: {
  32210. height: math.unit(1.77, "feet"),
  32211. name: "Devious",
  32212. image: {
  32213. source: "./media/characters/purri/devious.svg",
  32214. extra: 1440/1155,
  32215. bottom: 147/1587
  32216. }
  32217. },
  32218. bean: {
  32219. height: math.unit(1.94, "feet"),
  32220. name: "Bean",
  32221. image: {
  32222. source: "./media/characters/purri/bean.svg"
  32223. }
  32224. },
  32225. },
  32226. [
  32227. {
  32228. name: "Micro",
  32229. height: math.unit(1, "mm")
  32230. },
  32231. {
  32232. name: "Normal",
  32233. height: math.unit(6 + 5/12, "feet"),
  32234. default: true
  32235. },
  32236. {
  32237. name: "Macro :3c",
  32238. height: math.unit(2, "miles")
  32239. },
  32240. ]
  32241. ))
  32242. characterMakers.push(() => makeCharacter(
  32243. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32244. {
  32245. front: {
  32246. height: math.unit(6 + 2/12, "feet"),
  32247. weight: math.unit(250, "lb"),
  32248. name: "Front",
  32249. image: {
  32250. source: "./media/characters/moonlight/front.svg",
  32251. extra: 1044/908,
  32252. bottom: 56/1100
  32253. }
  32254. },
  32255. feral: {
  32256. height: math.unit(3 + 1/12, "feet"),
  32257. weight: math.unit(50, "kg"),
  32258. name: "Feral",
  32259. image: {
  32260. source: "./media/characters/moonlight/feral.svg",
  32261. extra: 3705/2791,
  32262. bottom: 145/3850
  32263. }
  32264. },
  32265. paw: {
  32266. height: math.unit(1, "feet"),
  32267. name: "Paw",
  32268. image: {
  32269. source: "./media/characters/moonlight/paw.svg"
  32270. }
  32271. },
  32272. paws: {
  32273. height: math.unit(0.98, "feet"),
  32274. name: "Paws",
  32275. image: {
  32276. source: "./media/characters/moonlight/paws.svg",
  32277. extra: 939/939,
  32278. bottom: 50/989
  32279. }
  32280. },
  32281. mouth: {
  32282. height: math.unit(0.48, "feet"),
  32283. name: "Mouth",
  32284. image: {
  32285. source: "./media/characters/moonlight/mouth.svg"
  32286. }
  32287. },
  32288. dick: {
  32289. height: math.unit(1.46, "feet"),
  32290. name: "Dick",
  32291. image: {
  32292. source: "./media/characters/moonlight/dick.svg"
  32293. }
  32294. },
  32295. },
  32296. [
  32297. {
  32298. name: "Normal",
  32299. height: math.unit(6 + 2/12, "feet"),
  32300. default: true
  32301. },
  32302. {
  32303. name: "Macro",
  32304. height: math.unit(300, "feet")
  32305. },
  32306. {
  32307. name: "Macro+",
  32308. height: math.unit(1, "mile")
  32309. },
  32310. {
  32311. name: "Mt. Moon",
  32312. height: math.unit(5, "miles")
  32313. },
  32314. {
  32315. name: "Megamacro",
  32316. height: math.unit(15, "miles")
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32322. {
  32323. back: {
  32324. height: math.unit(6, "feet"),
  32325. weight: math.unit(150, "lb"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/sylen/back.svg",
  32329. extra: 1335/1273,
  32330. bottom: 107/1442
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(5 + 5/12, "feet")
  32338. },
  32339. {
  32340. name: "Megamacro",
  32341. height: math.unit(3, "miles"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(6, "feet"),
  32351. weight: math.unit(190, "lb"),
  32352. name: "Front",
  32353. image: {
  32354. source: "./media/characters/huttser/front.svg",
  32355. extra: 1152/1058,
  32356. bottom: 23/1175
  32357. }
  32358. },
  32359. side: {
  32360. height: math.unit(6, "feet"),
  32361. weight: math.unit(190, "lb"),
  32362. name: "Side",
  32363. image: {
  32364. source: "./media/characters/huttser/side.svg",
  32365. extra: 1174/1065,
  32366. bottom: 18/1192
  32367. }
  32368. },
  32369. back: {
  32370. height: math.unit(6, "feet"),
  32371. weight: math.unit(190, "lb"),
  32372. name: "Back",
  32373. image: {
  32374. source: "./media/characters/huttser/back.svg",
  32375. extra: 1158/1056,
  32376. bottom: 12/1170
  32377. }
  32378. },
  32379. },
  32380. [
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32385. {
  32386. side: {
  32387. height: math.unit(12 + 9/12, "feet"),
  32388. weight: math.unit(15000, "lb"),
  32389. name: "Side",
  32390. image: {
  32391. source: "./media/characters/faan/side.svg",
  32392. extra: 2747/2697,
  32393. bottom: 0/2747
  32394. }
  32395. },
  32396. front: {
  32397. height: math.unit(12 + 9/12, "feet"),
  32398. weight: math.unit(15000, "lb"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/faan/front.svg",
  32402. extra: 607/571,
  32403. bottom: 24/631
  32404. }
  32405. },
  32406. head: {
  32407. height: math.unit(2.85, "feet"),
  32408. name: "Head",
  32409. image: {
  32410. source: "./media/characters/faan/head.svg"
  32411. }
  32412. },
  32413. headAlt: {
  32414. height: math.unit(3.13, "feet"),
  32415. name: "Head-alt",
  32416. image: {
  32417. source: "./media/characters/faan/head-alt.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(12 + 9/12, "feet"),
  32425. default: true
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(6, "feet"),
  32434. weight: math.unit(300, "lb"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/tanio/front.svg",
  32438. extra: 711/673,
  32439. bottom: 25/736
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(6, "feet"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(3, "inches"),
  32456. name: "Front",
  32457. image: {
  32458. source: "./media/characters/noboru/front.svg",
  32459. extra: 1039/932,
  32460. bottom: 18/1057
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Micro",
  32467. height: math.unit(3, "inches"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(1.85, "meters"),
  32477. weight: math.unit(80, "kg"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/daniel-barrett/front.svg",
  32481. extra: 355/337,
  32482. bottom: 9/364
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Pico",
  32489. height: math.unit(0.0433, "mm")
  32490. },
  32491. {
  32492. name: "Nano",
  32493. height: math.unit(1.5, "mm")
  32494. },
  32495. {
  32496. name: "Micro",
  32497. height: math.unit(5.3, "cm"),
  32498. default: true
  32499. },
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(1.85, "meters")
  32503. },
  32504. {
  32505. name: "Macro",
  32506. height: math.unit(64.7, "meters")
  32507. },
  32508. {
  32509. name: "Megamacro",
  32510. height: math.unit(2.26, "km")
  32511. },
  32512. {
  32513. name: "Gigamacro",
  32514. height: math.unit(79, "km")
  32515. },
  32516. {
  32517. name: "Teramacro",
  32518. height: math.unit(2765, "km")
  32519. },
  32520. {
  32521. name: "Petamacro",
  32522. height: math.unit(96678, "km")
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(30, "meters"),
  32531. weight: math.unit(400, "tons"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/zeel/front.svg",
  32535. extra: 2599/2599,
  32536. bottom: 226/2825
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Macro",
  32543. height: math.unit(30, "meters"),
  32544. default: true
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(6 + 7/12, "feet"),
  32553. weight: math.unit(210, "lb"),
  32554. name: "Front",
  32555. image: {
  32556. source: "./media/characters/tarn/front.svg",
  32557. extra: 3517/3220,
  32558. bottom: 91/3608
  32559. }
  32560. },
  32561. back: {
  32562. height: math.unit(6 + 7/12, "feet"),
  32563. weight: math.unit(210, "lb"),
  32564. name: "Back",
  32565. image: {
  32566. source: "./media/characters/tarn/back.svg",
  32567. extra: 3566/3241,
  32568. bottom: 34/3600
  32569. }
  32570. },
  32571. dick: {
  32572. height: math.unit(1.65, "feet"),
  32573. name: "Dick",
  32574. image: {
  32575. source: "./media/characters/tarn/dick.svg"
  32576. }
  32577. },
  32578. paw: {
  32579. height: math.unit(1.80, "feet"),
  32580. name: "Paw",
  32581. image: {
  32582. source: "./media/characters/tarn/paw.svg"
  32583. }
  32584. },
  32585. tongue: {
  32586. height: math.unit(0.97, "feet"),
  32587. name: "Tongue",
  32588. image: {
  32589. source: "./media/characters/tarn/tongue.svg"
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Micro",
  32596. height: math.unit(4, "inches")
  32597. },
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(6 + 7/12, "feet"),
  32601. default: true
  32602. },
  32603. {
  32604. name: "Macro",
  32605. height: math.unit(300, "feet")
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(5 + 7/12, "feet"),
  32614. weight: math.unit(80, "kg"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32618. extra: 3023/2865,
  32619. bottom: 33/3056
  32620. }
  32621. },
  32622. back: {
  32623. height: math.unit(5 + 7/12, "feet"),
  32624. weight: math.unit(80, "kg"),
  32625. name: "Back",
  32626. image: {
  32627. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32628. extra: 3020/2886,
  32629. bottom: 30/3050
  32630. }
  32631. },
  32632. dick: {
  32633. height: math.unit(0.98, "feet"),
  32634. name: "Dick",
  32635. image: {
  32636. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32637. }
  32638. },
  32639. anatomy: {
  32640. height: math.unit(2.86, "feet"),
  32641. name: "Anatomy",
  32642. image: {
  32643. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Really Small",
  32650. height: math.unit(2, "inches")
  32651. },
  32652. {
  32653. name: "Micro",
  32654. height: math.unit(5.583, "inches")
  32655. },
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(5 + 7/12, "feet"),
  32659. default: true
  32660. },
  32661. {
  32662. name: "Macro",
  32663. height: math.unit(67, "feet")
  32664. },
  32665. {
  32666. name: "Megamacro",
  32667. height: math.unit(134, "feet")
  32668. },
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32673. {
  32674. front: {
  32675. height: math.unit(9, "feet"),
  32676. weight: math.unit(120, "lb"),
  32677. name: "Front",
  32678. image: {
  32679. source: "./media/characters/sally/front.svg",
  32680. extra: 1506/1349,
  32681. bottom: 66/1572
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Normal",
  32688. height: math.unit(9, "feet"),
  32689. default: true
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32695. {
  32696. front: {
  32697. height: math.unit(8, "feet"),
  32698. weight: math.unit(900, "lb"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/owen/front.svg",
  32702. extra: 1761/1657,
  32703. bottom: 74/1835
  32704. }
  32705. },
  32706. side: {
  32707. height: math.unit(8, "feet"),
  32708. weight: math.unit(900, "lb"),
  32709. name: "Side",
  32710. image: {
  32711. source: "./media/characters/owen/side.svg",
  32712. extra: 1797/1734,
  32713. bottom: 30/1827
  32714. }
  32715. },
  32716. back: {
  32717. height: math.unit(8, "feet"),
  32718. weight: math.unit(900, "lb"),
  32719. name: "Back",
  32720. image: {
  32721. source: "./media/characters/owen/back.svg",
  32722. extra: 1796/1706,
  32723. bottom: 59/1855
  32724. }
  32725. },
  32726. maw: {
  32727. height: math.unit(1.76, "feet"),
  32728. name: "Maw",
  32729. image: {
  32730. source: "./media/characters/owen/maw.svg"
  32731. }
  32732. },
  32733. },
  32734. [
  32735. {
  32736. name: "Normal",
  32737. height: math.unit(8, "feet"),
  32738. default: true
  32739. },
  32740. ]
  32741. ))
  32742. characterMakers.push(() => makeCharacter(
  32743. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32744. {
  32745. front: {
  32746. height: math.unit(4, "feet"),
  32747. weight: math.unit(400, "lb"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/ryth/front.svg",
  32751. extra: 1920/1748,
  32752. bottom: 42/1962
  32753. }
  32754. },
  32755. back: {
  32756. height: math.unit(4, "feet"),
  32757. weight: math.unit(400, "lb"),
  32758. name: "Back",
  32759. image: {
  32760. source: "./media/characters/ryth/back.svg",
  32761. extra: 1897/1690,
  32762. bottom: 89/1986
  32763. }
  32764. },
  32765. mouth: {
  32766. height: math.unit(1.39, "feet"),
  32767. name: "Mouth",
  32768. image: {
  32769. source: "./media/characters/ryth/mouth.svg"
  32770. }
  32771. },
  32772. tailmaw: {
  32773. height: math.unit(1.23, "feet"),
  32774. name: "Tailmaw",
  32775. image: {
  32776. source: "./media/characters/ryth/tailmaw.svg"
  32777. }
  32778. },
  32779. goia: {
  32780. height: math.unit(4, "meters"),
  32781. weight: math.unit(10800, "lb"),
  32782. name: "Goia",
  32783. image: {
  32784. source: "./media/characters/ryth/goia.svg",
  32785. extra: 745/640,
  32786. bottom: 107/852
  32787. }
  32788. },
  32789. goiaFront: {
  32790. height: math.unit(4, "meters"),
  32791. weight: math.unit(10800, "lb"),
  32792. name: "Goia (Front)",
  32793. image: {
  32794. source: "./media/characters/ryth/goia-front.svg",
  32795. extra: 750/586,
  32796. bottom: 114/864
  32797. }
  32798. },
  32799. goiaMaw: {
  32800. height: math.unit(5.55, "feet"),
  32801. name: "Goia Maw",
  32802. image: {
  32803. source: "./media/characters/ryth/goia-maw.svg"
  32804. }
  32805. },
  32806. goiaForepaw: {
  32807. height: math.unit(3.5, "feet"),
  32808. name: "Goia Forepaw",
  32809. image: {
  32810. source: "./media/characters/ryth/goia-forepaw.svg"
  32811. }
  32812. },
  32813. goiaHindpaw: {
  32814. height: math.unit(5.55, "feet"),
  32815. name: "Goia Hindpaw",
  32816. image: {
  32817. source: "./media/characters/ryth/goia-hindpaw.svg"
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(4, "feet"),
  32825. default: true
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32831. {
  32832. front: {
  32833. height: math.unit(7, "feet"),
  32834. weight: math.unit(180, "lb"),
  32835. name: "Front",
  32836. image: {
  32837. source: "./media/characters/necrolance/front.svg",
  32838. extra: 1062/947,
  32839. bottom: 41/1103
  32840. }
  32841. },
  32842. back: {
  32843. height: math.unit(7, "feet"),
  32844. weight: math.unit(180, "lb"),
  32845. name: "Back",
  32846. image: {
  32847. source: "./media/characters/necrolance/back.svg",
  32848. extra: 1045/984,
  32849. bottom: 14/1059
  32850. }
  32851. },
  32852. wing: {
  32853. height: math.unit(2.67, "feet"),
  32854. name: "Wing",
  32855. image: {
  32856. source: "./media/characters/necrolance/wing.svg"
  32857. }
  32858. },
  32859. },
  32860. [
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(7, "feet"),
  32864. default: true
  32865. },
  32866. ]
  32867. ))
  32868. characterMakers.push(() => makeCharacter(
  32869. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32870. {
  32871. front: {
  32872. height: math.unit(76, "meters"),
  32873. weight: math.unit(30000, "tons"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/tyler/front.svg",
  32877. extra: 1640/1640,
  32878. bottom: 114/1754
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Macro",
  32885. height: math.unit(76, "meters"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32892. {
  32893. front: {
  32894. height: math.unit(4 + 11/12, "feet"),
  32895. weight: math.unit(132, "lb"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/icey/front.svg",
  32899. extra: 2750/2550,
  32900. bottom: 33/2783
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(4 + 11/12, "feet"),
  32905. weight: math.unit(132, "lb"),
  32906. name: "Back",
  32907. image: {
  32908. source: "./media/characters/icey/back.svg",
  32909. extra: 2624/2481,
  32910. bottom: 35/2659
  32911. }
  32912. },
  32913. },
  32914. [
  32915. {
  32916. name: "Normal",
  32917. height: math.unit(4 + 11/12, "feet"),
  32918. default: true
  32919. },
  32920. ]
  32921. ))
  32922. characterMakers.push(() => makeCharacter(
  32923. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32924. {
  32925. front: {
  32926. height: math.unit(100, "feet"),
  32927. weight: math.unit(0, "lb"),
  32928. name: "Front",
  32929. image: {
  32930. source: "./media/characters/smile/front.svg",
  32931. extra: 2983/2912,
  32932. bottom: 162/3145
  32933. }
  32934. },
  32935. back: {
  32936. height: math.unit(100, "feet"),
  32937. weight: math.unit(0, "lb"),
  32938. name: "Back",
  32939. image: {
  32940. source: "./media/characters/smile/back.svg",
  32941. extra: 3143/3031,
  32942. bottom: 91/3234
  32943. }
  32944. },
  32945. head: {
  32946. height: math.unit(26.3, "feet"),
  32947. weight: math.unit(0, "lb"),
  32948. name: "Head",
  32949. image: {
  32950. source: "./media/characters/smile/head.svg"
  32951. }
  32952. },
  32953. collar: {
  32954. height: math.unit(5.3, "feet"),
  32955. weight: math.unit(0, "lb"),
  32956. name: "Collar",
  32957. image: {
  32958. source: "./media/characters/smile/collar.svg"
  32959. }
  32960. },
  32961. },
  32962. [
  32963. {
  32964. name: "Macro",
  32965. height: math.unit(100, "feet"),
  32966. default: true
  32967. },
  32968. ]
  32969. ))
  32970. characterMakers.push(() => makeCharacter(
  32971. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32972. {
  32973. dragon: {
  32974. height: math.unit(26, "feet"),
  32975. weight: math.unit(36, "tons"),
  32976. name: "Dragon",
  32977. image: {
  32978. source: "./media/characters/arimphae/dragon.svg",
  32979. extra: 1574/983,
  32980. bottom: 357/1931
  32981. }
  32982. },
  32983. drake: {
  32984. height: math.unit(9, "feet"),
  32985. weight: math.unit(1.5, "tons"),
  32986. name: "Drake",
  32987. image: {
  32988. source: "./media/characters/arimphae/drake.svg",
  32989. extra: 1120/925,
  32990. bottom: 435/1555
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Small",
  32997. height: math.unit(26*5/9, "feet")
  32998. },
  32999. {
  33000. name: "Normal",
  33001. height: math.unit(26, "feet"),
  33002. default: true
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33008. {
  33009. front: {
  33010. height: math.unit(8 + 9/12, "feet"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/xander/front.svg",
  33014. extra: 1237/974,
  33015. bottom: 94/1331
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Normal",
  33022. height: math.unit(8 + 9/12, "feet"),
  33023. default: true
  33024. },
  33025. {
  33026. name: "Gaze Grabber",
  33027. height: math.unit(13 + 8/12, "feet")
  33028. },
  33029. {
  33030. name: "Jaw Dropper",
  33031. height: math.unit(27, "feet")
  33032. },
  33033. {
  33034. name: "Show Stopper",
  33035. height: math.unit(136, "feet")
  33036. },
  33037. {
  33038. name: "Superstar",
  33039. height: math.unit(1.9e6, "miles")
  33040. },
  33041. ]
  33042. ))
  33043. characterMakers.push(() => makeCharacter(
  33044. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33045. {
  33046. side: {
  33047. height: math.unit(2100, "feet"),
  33048. name: "Side",
  33049. image: {
  33050. source: "./media/characters/osiris/side.svg",
  33051. extra: 1105/939,
  33052. bottom: 167/1272
  33053. }
  33054. },
  33055. },
  33056. [
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(2100, "feet"),
  33060. default: true
  33061. },
  33062. ]
  33063. ))
  33064. characterMakers.push(() => makeCharacter(
  33065. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33066. {
  33067. front: {
  33068. height: math.unit(6 + 8/12, "feet"),
  33069. weight: math.unit(225, "lb"),
  33070. name: "Front",
  33071. image: {
  33072. source: "./media/characters/rhys-londe/front.svg",
  33073. extra: 2258/2141,
  33074. bottom: 188/2446
  33075. }
  33076. },
  33077. back: {
  33078. height: math.unit(6 + 8/12, "feet"),
  33079. weight: math.unit(225, "lb"),
  33080. name: "Back",
  33081. image: {
  33082. source: "./media/characters/rhys-londe/back.svg",
  33083. extra: 2237/2137,
  33084. bottom: 63/2300
  33085. }
  33086. },
  33087. frontNsfw: {
  33088. height: math.unit(6 + 8/12, "feet"),
  33089. weight: math.unit(225, "lb"),
  33090. name: "Front (NSFW)",
  33091. image: {
  33092. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33093. extra: 2258/2141,
  33094. bottom: 188/2446
  33095. }
  33096. },
  33097. backNsfw: {
  33098. height: math.unit(6 + 8/12, "feet"),
  33099. weight: math.unit(225, "lb"),
  33100. name: "Back (NSFW)",
  33101. image: {
  33102. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33103. extra: 2237/2137,
  33104. bottom: 63/2300
  33105. }
  33106. },
  33107. dick: {
  33108. height: math.unit(30, "inches"),
  33109. name: "Dick",
  33110. image: {
  33111. source: "./media/characters/rhys-londe/dick.svg"
  33112. }
  33113. },
  33114. maw: {
  33115. height: math.unit(1.6, "feet"),
  33116. name: "Maw",
  33117. image: {
  33118. source: "./media/characters/rhys-londe/maw.svg"
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Normal",
  33125. height: math.unit(6 + 8/12, "feet"),
  33126. default: true
  33127. },
  33128. ]
  33129. ))
  33130. characterMakers.push(() => makeCharacter(
  33131. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33132. {
  33133. front: {
  33134. height: math.unit(3 + 10/12, "feet"),
  33135. weight: math.unit(90, "lb"),
  33136. name: "Front",
  33137. image: {
  33138. source: "./media/characters/taivas-ensim/front.svg",
  33139. extra: 1327/1216,
  33140. bottom: 96/1423
  33141. }
  33142. },
  33143. back: {
  33144. height: math.unit(3 + 10/12, "feet"),
  33145. weight: math.unit(90, "lb"),
  33146. name: "Back",
  33147. image: {
  33148. source: "./media/characters/taivas-ensim/back.svg",
  33149. extra: 1355/1247,
  33150. bottom: 11/1366
  33151. }
  33152. },
  33153. frontNsfw: {
  33154. height: math.unit(3 + 10/12, "feet"),
  33155. weight: math.unit(90, "lb"),
  33156. name: "Front (NSFW)",
  33157. image: {
  33158. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33159. extra: 1327/1216,
  33160. bottom: 96/1423
  33161. }
  33162. },
  33163. backNsfw: {
  33164. height: math.unit(3 + 10/12, "feet"),
  33165. weight: math.unit(90, "lb"),
  33166. name: "Back (NSFW)",
  33167. image: {
  33168. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33169. extra: 1355/1247,
  33170. bottom: 11/1366
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Normal",
  33177. height: math.unit(3 + 10/12, "feet"),
  33178. default: true
  33179. },
  33180. ]
  33181. ))
  33182. characterMakers.push(() => makeCharacter(
  33183. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33184. {
  33185. front: {
  33186. height: math.unit(9 + 6/12, "feet"),
  33187. weight: math.unit(940, "lb"),
  33188. name: "Front",
  33189. image: {
  33190. source: "./media/characters/byliss/front.svg",
  33191. extra: 1327/1290,
  33192. bottom: 82/1409
  33193. }
  33194. },
  33195. back: {
  33196. height: math.unit(9 + 6/12, "feet"),
  33197. weight: math.unit(940, "lb"),
  33198. name: "Back",
  33199. image: {
  33200. source: "./media/characters/byliss/back.svg",
  33201. extra: 1376/1349,
  33202. bottom: 9/1385
  33203. }
  33204. },
  33205. frontNsfw: {
  33206. height: math.unit(9 + 6/12, "feet"),
  33207. weight: math.unit(940, "lb"),
  33208. name: "Front (NSFW)",
  33209. image: {
  33210. source: "./media/characters/byliss/front-nsfw.svg",
  33211. extra: 1327/1290,
  33212. bottom: 82/1409
  33213. }
  33214. },
  33215. backNsfw: {
  33216. height: math.unit(9 + 6/12, "feet"),
  33217. weight: math.unit(940, "lb"),
  33218. name: "Back (NSFW)",
  33219. image: {
  33220. source: "./media/characters/byliss/back-nsfw.svg",
  33221. extra: 1376/1349,
  33222. bottom: 9/1385
  33223. }
  33224. },
  33225. },
  33226. [
  33227. {
  33228. name: "Normal",
  33229. height: math.unit(9 + 6/12, "feet"),
  33230. default: true
  33231. },
  33232. ]
  33233. ))
  33234. characterMakers.push(() => makeCharacter(
  33235. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33236. {
  33237. front: {
  33238. height: math.unit(5 + 2/12, "feet"),
  33239. weight: math.unit(200, "lb"),
  33240. name: "Front",
  33241. image: {
  33242. source: "./media/characters/noraly/front.svg",
  33243. extra: 4985/4773,
  33244. bottom: 150/5135
  33245. }
  33246. },
  33247. full: {
  33248. height: math.unit(5 + 2/12, "feet"),
  33249. weight: math.unit(164, "lb"),
  33250. name: "Full",
  33251. image: {
  33252. source: "./media/characters/noraly/full.svg",
  33253. extra: 1114/1059,
  33254. bottom: 35/1149
  33255. }
  33256. },
  33257. fuller: {
  33258. height: math.unit(5 + 2/12, "feet"),
  33259. weight: math.unit(230, "lb"),
  33260. name: "Fuller",
  33261. image: {
  33262. source: "./media/characters/noraly/fuller.svg",
  33263. extra: 1114/1059,
  33264. bottom: 35/1149
  33265. }
  33266. },
  33267. fullest: {
  33268. height: math.unit(5 + 2/12, "feet"),
  33269. weight: math.unit(300, "lb"),
  33270. name: "Fullest",
  33271. image: {
  33272. source: "./media/characters/noraly/fullest.svg",
  33273. extra: 1114/1059,
  33274. bottom: 35/1149
  33275. }
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(5 + 2/12, "feet"),
  33282. default: true
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33288. {
  33289. front: {
  33290. height: math.unit(5 + 2/12, "feet"),
  33291. weight: math.unit(210, "lb"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/pera/front.svg",
  33295. extra: 1560/1531,
  33296. bottom: 165/1725
  33297. }
  33298. },
  33299. back: {
  33300. height: math.unit(5 + 2/12, "feet"),
  33301. weight: math.unit(210, "lb"),
  33302. name: "Back",
  33303. image: {
  33304. source: "./media/characters/pera/back.svg",
  33305. extra: 1523/1493,
  33306. bottom: 152/1675
  33307. }
  33308. },
  33309. dick: {
  33310. height: math.unit(2.4, "feet"),
  33311. name: "Dick",
  33312. image: {
  33313. source: "./media/characters/pera/dick.svg"
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(5 + 2/12, "feet"),
  33321. default: true
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(12, "feet"),
  33330. weight: math.unit(3200, "lb"),
  33331. name: "Front",
  33332. image: {
  33333. source: "./media/characters/julian/front.svg",
  33334. extra: 2962/2701,
  33335. bottom: 184/3146
  33336. }
  33337. },
  33338. maw: {
  33339. height: math.unit(5.35, "feet"),
  33340. name: "Maw",
  33341. image: {
  33342. source: "./media/characters/julian/maw.svg"
  33343. }
  33344. },
  33345. paw: {
  33346. height: math.unit(3.07, "feet"),
  33347. name: "Paw",
  33348. image: {
  33349. source: "./media/characters/julian/paw.svg"
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Default",
  33356. height: math.unit(12, "feet"),
  33357. default: true
  33358. },
  33359. {
  33360. name: "Big",
  33361. height: math.unit(50, "feet")
  33362. },
  33363. {
  33364. name: "Really Big",
  33365. height: math.unit(1, "mile")
  33366. },
  33367. {
  33368. name: "Extremely Big",
  33369. height: math.unit(100, "miles")
  33370. },
  33371. {
  33372. name: "Planet Hugger",
  33373. height: math.unit(200, "megameters")
  33374. },
  33375. {
  33376. name: "Unreasonably Big",
  33377. height: math.unit(1e300, "meters")
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33383. {
  33384. solgooleo: {
  33385. height: math.unit(4, "meters"),
  33386. weight: math.unit(6000*1.5, "kg"),
  33387. volume: math.unit(6000, "liters"),
  33388. name: "Solgooleo",
  33389. image: {
  33390. source: "./media/characters/pi/solgooleo.svg",
  33391. extra: 388/331,
  33392. bottom: 29/417
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(4, "meters"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(8, "feet"),
  33409. weight: math.unit(4, "tons"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/shaun/front.svg",
  33413. extra: 503/495,
  33414. bottom: 20/523
  33415. }
  33416. },
  33417. back: {
  33418. height: math.unit(8, "feet"),
  33419. weight: math.unit(4, "tons"),
  33420. name: "Back",
  33421. image: {
  33422. source: "./media/characters/shaun/back.svg",
  33423. extra: 487/480,
  33424. bottom: 20/507
  33425. }
  33426. },
  33427. },
  33428. [
  33429. {
  33430. name: "Lorg",
  33431. height: math.unit(8, "feet"),
  33432. default: true
  33433. },
  33434. ]
  33435. ))
  33436. characterMakers.push(() => makeCharacter(
  33437. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33438. {
  33439. frontAnthro: {
  33440. height: math.unit(7, "feet"),
  33441. name: "Front",
  33442. image: {
  33443. source: "./media/characters/sini/front-anthro.svg",
  33444. extra: 726/678,
  33445. bottom: 35/761
  33446. },
  33447. form: "anthro",
  33448. default: true
  33449. },
  33450. backAnthro: {
  33451. height: math.unit(7, "feet"),
  33452. name: "Back",
  33453. image: {
  33454. source: "./media/characters/sini/back-anthro.svg",
  33455. extra: 743/701,
  33456. bottom: 12/755
  33457. },
  33458. form: "anthro",
  33459. },
  33460. frontAnthroNsfw: {
  33461. height: math.unit(7, "feet"),
  33462. name: "Front (NSFW)",
  33463. image: {
  33464. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33465. extra: 726/678,
  33466. bottom: 35/761
  33467. },
  33468. form: "anthro"
  33469. },
  33470. backAnthroNsfw: {
  33471. height: math.unit(7, "feet"),
  33472. name: "Back (NSFW)",
  33473. image: {
  33474. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33475. extra: 743/701,
  33476. bottom: 12/755
  33477. },
  33478. form: "anthro",
  33479. },
  33480. mawAnthro: {
  33481. height: math.unit(2.14, "feet"),
  33482. name: "Maw",
  33483. image: {
  33484. source: "./media/characters/sini/maw-anthro.svg"
  33485. },
  33486. form: "anthro"
  33487. },
  33488. dick: {
  33489. height: math.unit(1.45, "feet"),
  33490. name: "Dick",
  33491. image: {
  33492. source: "./media/characters/sini/dick-anthro.svg"
  33493. },
  33494. form: "anthro"
  33495. },
  33496. feral: {
  33497. height: math.unit(16, "feet"),
  33498. name: "Feral",
  33499. image: {
  33500. source: "./media/characters/sini/feral.svg",
  33501. extra: 814/605,
  33502. bottom: 11/825
  33503. },
  33504. form: "feral",
  33505. default: true
  33506. },
  33507. feralNsfw: {
  33508. height: math.unit(16, "feet"),
  33509. name: "Feral (NSFW)",
  33510. image: {
  33511. source: "./media/characters/sini/feral-nsfw.svg",
  33512. extra: 814/605,
  33513. bottom: 11/825
  33514. },
  33515. form: "feral"
  33516. },
  33517. mawFeral: {
  33518. height: math.unit(5.66, "feet"),
  33519. name: "Maw",
  33520. image: {
  33521. source: "./media/characters/sini/maw-feral.svg"
  33522. },
  33523. form: "feral",
  33524. },
  33525. pawFeral: {
  33526. height: math.unit(5.17, "feet"),
  33527. name: "Paw",
  33528. image: {
  33529. source: "./media/characters/sini/paw-feral.svg"
  33530. },
  33531. form: "feral",
  33532. },
  33533. rumpFeral: {
  33534. height: math.unit(13.11, "feet"),
  33535. name: "Rump",
  33536. image: {
  33537. source: "./media/characters/sini/rump-feral.svg"
  33538. },
  33539. form: "feral",
  33540. },
  33541. dickFeral: {
  33542. height: math.unit(1, "feet"),
  33543. name: "Dick",
  33544. image: {
  33545. source: "./media/characters/sini/dick-feral.svg"
  33546. },
  33547. form: "feral",
  33548. },
  33549. eyeFeral: {
  33550. height: math.unit(1.23, "feet"),
  33551. name: "Eye",
  33552. image: {
  33553. source: "./media/characters/sini/eye-feral.svg"
  33554. },
  33555. form: "feral",
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(7, "feet"),
  33562. default: true,
  33563. form: "anthro"
  33564. },
  33565. {
  33566. name: "Normal",
  33567. height: math.unit(16, "feet"),
  33568. default: true,
  33569. form: "feral"
  33570. },
  33571. ],
  33572. {
  33573. "anthro": {
  33574. name: "Anthro",
  33575. default: true
  33576. },
  33577. "feral": {
  33578. name: "Feral",
  33579. }
  33580. }
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33584. {
  33585. side: {
  33586. height: math.unit(13, "meters"),
  33587. weight: math.unit(9072, "kg"),
  33588. name: "Side",
  33589. image: {
  33590. source: "./media/characters/raylldo/side.svg",
  33591. extra: 403/344,
  33592. bottom: 42/445
  33593. }
  33594. },
  33595. leaping: {
  33596. height: math.unit(12.3, "meters"),
  33597. weight: math.unit(9072, "kg"),
  33598. name: "Leaping",
  33599. image: {
  33600. source: "./media/characters/raylldo/leaping.svg",
  33601. extra: 470/249,
  33602. bottom: 13/483
  33603. }
  33604. },
  33605. flying: {
  33606. height: math.unit(18, "meters"),
  33607. weight: math.unit(9072, "kg"),
  33608. name: "Flying",
  33609. image: {
  33610. source: "./media/characters/raylldo/flying.svg"
  33611. }
  33612. },
  33613. head: {
  33614. height: math.unit(5.85, "meters"),
  33615. name: "Head",
  33616. image: {
  33617. source: "./media/characters/raylldo/head.svg"
  33618. }
  33619. },
  33620. maw: {
  33621. height: math.unit(5.32, "meters"),
  33622. name: "Maw",
  33623. image: {
  33624. source: "./media/characters/raylldo/maw.svg"
  33625. }
  33626. },
  33627. eye: {
  33628. height: math.unit(0.54, "meters"),
  33629. name: "Eye",
  33630. image: {
  33631. source: "./media/characters/raylldo/eye.svg"
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(13, "meters"),
  33639. default: true
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33645. {
  33646. anthroFront: {
  33647. height: math.unit(9, "feet"),
  33648. weight: math.unit(600, "lb"),
  33649. name: "Anthro (Front)",
  33650. image: {
  33651. source: "./media/characters/glint/anthro-front.svg",
  33652. extra: 1097/1018,
  33653. bottom: 28/1125
  33654. }
  33655. },
  33656. anthroBack: {
  33657. height: math.unit(9, "feet"),
  33658. weight: math.unit(600, "lb"),
  33659. name: "Anthro (Back)",
  33660. image: {
  33661. source: "./media/characters/glint/anthro-back.svg",
  33662. extra: 1154/997,
  33663. bottom: 36/1190
  33664. }
  33665. },
  33666. feral: {
  33667. height: math.unit(11, "feet"),
  33668. weight: math.unit(50000, "lb"),
  33669. name: "Feral",
  33670. image: {
  33671. source: "./media/characters/glint/feral.svg",
  33672. extra: 3035/1585,
  33673. bottom: 1169/4204
  33674. }
  33675. },
  33676. dickAnthro: {
  33677. height: math.unit(0.7, "meters"),
  33678. name: "Dick (Anthro)",
  33679. image: {
  33680. source: "./media/characters/glint/dick-anthro.svg"
  33681. }
  33682. },
  33683. dickFeral: {
  33684. height: math.unit(2.65, "meters"),
  33685. name: "Dick (Feral)",
  33686. image: {
  33687. source: "./media/characters/glint/dick-feral.svg"
  33688. }
  33689. },
  33690. slitHidden: {
  33691. height: math.unit(5.85, "meters"),
  33692. name: "Slit (Hidden)",
  33693. image: {
  33694. source: "./media/characters/glint/slit-hidden.svg"
  33695. }
  33696. },
  33697. slitErect: {
  33698. height: math.unit(5.85, "meters"),
  33699. name: "Slit (Erect)",
  33700. image: {
  33701. source: "./media/characters/glint/slit-erect.svg"
  33702. }
  33703. },
  33704. mawAnthro: {
  33705. height: math.unit(0.63, "meters"),
  33706. name: "Maw (Anthro)",
  33707. image: {
  33708. source: "./media/characters/glint/maw.svg"
  33709. }
  33710. },
  33711. mawFeral: {
  33712. height: math.unit(2.89, "meters"),
  33713. name: "Maw (Feral)",
  33714. image: {
  33715. source: "./media/characters/glint/maw.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal",
  33722. height: math.unit(9, "feet"),
  33723. default: true
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33729. {
  33730. side: {
  33731. height: math.unit(15, "feet"),
  33732. weight: math.unit(5000, "kg"),
  33733. name: "Side",
  33734. image: {
  33735. source: "./media/characters/kairne/side.svg",
  33736. extra: 979/811,
  33737. bottom: 13/992
  33738. }
  33739. },
  33740. front: {
  33741. height: math.unit(15, "feet"),
  33742. weight: math.unit(5000, "kg"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/kairne/front.svg",
  33746. extra: 908/814,
  33747. bottom: 26/934
  33748. }
  33749. },
  33750. sideNsfw: {
  33751. height: math.unit(15, "feet"),
  33752. weight: math.unit(5000, "kg"),
  33753. name: "Side (NSFW)",
  33754. image: {
  33755. source: "./media/characters/kairne/side-nsfw.svg",
  33756. extra: 979/811,
  33757. bottom: 13/992
  33758. }
  33759. },
  33760. frontNsfw: {
  33761. height: math.unit(15, "feet"),
  33762. weight: math.unit(5000, "kg"),
  33763. name: "Front (NSFW)",
  33764. image: {
  33765. source: "./media/characters/kairne/front-nsfw.svg",
  33766. extra: 908/814,
  33767. bottom: 26/934
  33768. }
  33769. },
  33770. dickCaged: {
  33771. height: math.unit(0.65, "meters"),
  33772. name: "Dick-caged",
  33773. image: {
  33774. source: "./media/characters/kairne/dick-caged.svg"
  33775. }
  33776. },
  33777. dick: {
  33778. height: math.unit(0.79, "meters"),
  33779. name: "Dick",
  33780. image: {
  33781. source: "./media/characters/kairne/dick.svg"
  33782. }
  33783. },
  33784. genitals: {
  33785. height: math.unit(1.29, "meters"),
  33786. name: "Genitals",
  33787. image: {
  33788. source: "./media/characters/kairne/genitals.svg"
  33789. }
  33790. },
  33791. maw: {
  33792. height: math.unit(1.73, "meters"),
  33793. name: "Maw",
  33794. image: {
  33795. source: "./media/characters/kairne/maw.svg"
  33796. }
  33797. },
  33798. },
  33799. [
  33800. {
  33801. name: "Normal",
  33802. height: math.unit(15, "feet"),
  33803. default: true
  33804. },
  33805. ]
  33806. ))
  33807. characterMakers.push(() => makeCharacter(
  33808. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33809. {
  33810. front: {
  33811. height: math.unit(5 + 8/12, "feet"),
  33812. weight: math.unit(139, "lb"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/biscuit-jackal/front.svg",
  33816. extra: 2106/1961,
  33817. bottom: 58/2164
  33818. }
  33819. },
  33820. back: {
  33821. height: math.unit(5 + 8/12, "feet"),
  33822. weight: math.unit(139, "lb"),
  33823. name: "Back",
  33824. image: {
  33825. source: "./media/characters/biscuit-jackal/back.svg",
  33826. extra: 2132/1976,
  33827. bottom: 57/2189
  33828. }
  33829. },
  33830. werejackal: {
  33831. height: math.unit(6 + 3/12, "feet"),
  33832. weight: math.unit(188, "lb"),
  33833. name: "Werejackal",
  33834. image: {
  33835. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33836. extra: 2373/2178,
  33837. bottom: 53/2426
  33838. }
  33839. },
  33840. },
  33841. [
  33842. {
  33843. name: "Normal",
  33844. height: math.unit(5 + 8/12, "feet"),
  33845. default: true
  33846. },
  33847. ]
  33848. ))
  33849. characterMakers.push(() => makeCharacter(
  33850. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33851. {
  33852. front: {
  33853. height: math.unit(140, "cm"),
  33854. weight: math.unit(45, "kg"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/tayra-white/front.svg",
  33858. extra: 2229/2192,
  33859. bottom: 75/2304
  33860. }
  33861. },
  33862. },
  33863. [
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(140, "cm"),
  33867. default: true
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(4 + 5/12, "feet"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/scoop/front.svg",
  33879. extra: 1257/1136,
  33880. bottom: 69/1326
  33881. }
  33882. },
  33883. back: {
  33884. height: math.unit(4 + 5/12, "feet"),
  33885. name: "Back",
  33886. image: {
  33887. source: "./media/characters/scoop/back.svg",
  33888. extra: 1321/1152,
  33889. bottom: 32/1353
  33890. }
  33891. },
  33892. maw: {
  33893. height: math.unit(0.68, "feet"),
  33894. name: "Maw",
  33895. image: {
  33896. source: "./media/characters/scoop/maw.svg"
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Really Small",
  33903. height: math.unit(1, "mm")
  33904. },
  33905. {
  33906. name: "Micro",
  33907. height: math.unit(1, "inch")
  33908. },
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(4 + 5/12, "feet"),
  33912. default: true
  33913. },
  33914. {
  33915. name: "Macro",
  33916. height: math.unit(200, "feet")
  33917. },
  33918. {
  33919. name: "Megamacro",
  33920. height: math.unit(3240, "feet")
  33921. },
  33922. {
  33923. name: "Teramacro",
  33924. height: math.unit(2500, "miles")
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(15 + 7/12, "feet"),
  33933. weight: math.unit(1150, "tons"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/saphinara/front.svg",
  33937. extra: 1837/1643,
  33938. bottom: 84/1921
  33939. },
  33940. form: "normal",
  33941. default: true
  33942. },
  33943. side: {
  33944. height: math.unit(15 + 7/12, "feet"),
  33945. weight: math.unit(1150, "tons"),
  33946. name: "Side",
  33947. image: {
  33948. source: "./media/characters/saphinara/side.svg",
  33949. extra: 605/547,
  33950. bottom: 6/611
  33951. },
  33952. form: "normal"
  33953. },
  33954. back: {
  33955. height: math.unit(15 + 7/12, "feet"),
  33956. weight: math.unit(1150, "tons"),
  33957. name: "Back",
  33958. image: {
  33959. source: "./media/characters/saphinara/back.svg",
  33960. extra: 591/531,
  33961. bottom: 13/604
  33962. },
  33963. form: "normal"
  33964. },
  33965. frontTail: {
  33966. height: math.unit(15 + 7/12, "feet"),
  33967. weight: math.unit(1150, "tons"),
  33968. name: "Front (Full Tail)",
  33969. image: {
  33970. source: "./media/characters/saphinara/front-tail.svg",
  33971. extra: 2256/1630,
  33972. bottom: 261/2517
  33973. },
  33974. form: "normal"
  33975. },
  33976. insides: {
  33977. height: math.unit(11.92, "feet"),
  33978. name: "Insides",
  33979. image: {
  33980. source: "./media/characters/saphinara/insides.svg"
  33981. },
  33982. form: "normal"
  33983. },
  33984. head: {
  33985. height: math.unit(4.17, "feet"),
  33986. name: "Head",
  33987. image: {
  33988. source: "./media/characters/saphinara/head.svg"
  33989. },
  33990. form: "normal"
  33991. },
  33992. tongue: {
  33993. height: math.unit(4.60, "feet"),
  33994. name: "Tongue",
  33995. image: {
  33996. source: "./media/characters/saphinara/tongue.svg"
  33997. },
  33998. form: "normal"
  33999. },
  34000. headEnraged: {
  34001. height: math.unit(5.55, "feet"),
  34002. name: "Head (Enraged)",
  34003. image: {
  34004. source: "./media/characters/saphinara/head-enraged.svg"
  34005. },
  34006. form: "normal"
  34007. },
  34008. wings: {
  34009. height: math.unit(11.95, "feet"),
  34010. name: "Wings",
  34011. image: {
  34012. source: "./media/characters/saphinara/wings.svg"
  34013. },
  34014. form: "normal"
  34015. },
  34016. feathers: {
  34017. height: math.unit(8.92, "feet"),
  34018. name: "Feathers",
  34019. image: {
  34020. source: "./media/characters/saphinara/feathers.svg"
  34021. },
  34022. form: "normal"
  34023. },
  34024. shackles: {
  34025. height: math.unit(2, "feet"),
  34026. name: "Shackles",
  34027. image: {
  34028. source: "./media/characters/saphinara/shackles.svg"
  34029. },
  34030. form: "normal"
  34031. },
  34032. eyes: {
  34033. height: math.unit(1.331, "feet"),
  34034. name: "Eyes",
  34035. image: {
  34036. source: "./media/characters/saphinara/eyes.svg"
  34037. },
  34038. form: "normal"
  34039. },
  34040. eyesEnraged: {
  34041. height: math.unit(1.331, "feet"),
  34042. name: "Eyes (Enraged)",
  34043. image: {
  34044. source: "./media/characters/saphinara/eyes-enraged.svg"
  34045. },
  34046. form: "normal"
  34047. },
  34048. trueFormSide: {
  34049. height: math.unit(200, "feet"),
  34050. weight: math.unit(1e7, "tons"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/saphinara/true-form-side.svg",
  34054. extra: 1399/770,
  34055. bottom: 97/1496
  34056. },
  34057. form: "true-form",
  34058. default: true
  34059. },
  34060. trueFormMaw: {
  34061. height: math.unit(71.5, "feet"),
  34062. name: "Maw",
  34063. image: {
  34064. source: "./media/characters/saphinara/true-form-maw.svg",
  34065. extra: 2302/1453,
  34066. bottom: 0/2302
  34067. },
  34068. form: "true-form"
  34069. },
  34070. },
  34071. [
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(15 + 7/12, "feet"),
  34075. default: true,
  34076. form: "normal"
  34077. },
  34078. {
  34079. name: "Angry",
  34080. height: math.unit(30 + 6/12, "feet"),
  34081. form: "normal"
  34082. },
  34083. {
  34084. name: "Enraged",
  34085. height: math.unit(102 + 1/12, "feet"),
  34086. form: "normal"
  34087. },
  34088. {
  34089. name: "True",
  34090. height: math.unit(200, "feet"),
  34091. default: true,
  34092. form: "true-form"
  34093. }
  34094. ],
  34095. {
  34096. "normal": {
  34097. name: "Normal",
  34098. default: true
  34099. },
  34100. "true-form": {
  34101. name: "True Form"
  34102. }
  34103. }
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(6 + 8/12, "feet"),
  34110. weight: math.unit(300, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/jrain/front.svg",
  34114. extra: 3039/2865,
  34115. bottom: 399/3438
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(6 + 8/12, "feet"),
  34120. weight: math.unit(300, "lb"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/jrain/back.svg",
  34124. extra: 3089/2938,
  34125. bottom: 172/3261
  34126. }
  34127. },
  34128. head: {
  34129. height: math.unit(2.14, "feet"),
  34130. name: "Head",
  34131. image: {
  34132. source: "./media/characters/jrain/head.svg"
  34133. }
  34134. },
  34135. maw: {
  34136. height: math.unit(1.77, "feet"),
  34137. name: "Maw",
  34138. image: {
  34139. source: "./media/characters/jrain/maw.svg"
  34140. }
  34141. },
  34142. leftHand: {
  34143. height: math.unit(1.1, "feet"),
  34144. name: "Left Hand",
  34145. image: {
  34146. source: "./media/characters/jrain/left-hand.svg"
  34147. }
  34148. },
  34149. rightHand: {
  34150. height: math.unit(1.1, "feet"),
  34151. name: "Right Hand",
  34152. image: {
  34153. source: "./media/characters/jrain/right-hand.svg"
  34154. }
  34155. },
  34156. eye: {
  34157. height: math.unit(0.35, "feet"),
  34158. name: "Eye",
  34159. image: {
  34160. source: "./media/characters/jrain/eye.svg"
  34161. }
  34162. },
  34163. },
  34164. [
  34165. {
  34166. name: "Normal",
  34167. height: math.unit(6 + 8/12, "feet"),
  34168. default: true
  34169. },
  34170. {
  34171. name: "Casually Large",
  34172. height: math.unit(25, "feet")
  34173. },
  34174. {
  34175. name: "Giant",
  34176. height: math.unit(100, "feet")
  34177. },
  34178. {
  34179. name: "Kaiju",
  34180. height: math.unit(300, "feet")
  34181. },
  34182. ]
  34183. ))
  34184. characterMakers.push(() => makeCharacter(
  34185. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34186. {
  34187. dragon: {
  34188. height: math.unit(5, "meters"),
  34189. name: "Dragon",
  34190. image: {
  34191. source: "./media/characters/sabrina/dragon.svg",
  34192. extra: 3670 / 2365,
  34193. bottom: 333 / 4003
  34194. }
  34195. },
  34196. gryphon: {
  34197. height: math.unit(3, "meters"),
  34198. name: "Gryphon",
  34199. image: {
  34200. source: "./media/characters/sabrina/gryphon.svg",
  34201. extra: 1576 / 945,
  34202. bottom: 71 / 1647
  34203. }
  34204. },
  34205. snake: {
  34206. height: math.unit(12, "meters"),
  34207. name: "Snake",
  34208. image: {
  34209. source: "./media/characters/sabrina/snake.svg",
  34210. extra: 1758 / 1320,
  34211. bottom: 186 / 1944
  34212. }
  34213. },
  34214. collar: {
  34215. height: math.unit(1.86, "meters"),
  34216. name: "Collar",
  34217. image: {
  34218. source: "./media/characters/sabrina/collar.svg"
  34219. }
  34220. },
  34221. eye: {
  34222. height: math.unit(0.53, "meters"),
  34223. name: "Eye",
  34224. image: {
  34225. source: "./media/characters/sabrina/eye.svg"
  34226. }
  34227. },
  34228. foot: {
  34229. height: math.unit(1.86, "meters"),
  34230. name: "Foot",
  34231. image: {
  34232. source: "./media/characters/sabrina/foot.svg"
  34233. }
  34234. },
  34235. hand: {
  34236. height: math.unit(1.32, "meters"),
  34237. name: "Hand",
  34238. image: {
  34239. source: "./media/characters/sabrina/hand.svg"
  34240. }
  34241. },
  34242. head: {
  34243. height: math.unit(2.44, "meters"),
  34244. name: "Head",
  34245. image: {
  34246. source: "./media/characters/sabrina/head.svg"
  34247. }
  34248. },
  34249. headAngry: {
  34250. height: math.unit(2.44, "meters"),
  34251. name: "Head (Angry))",
  34252. image: {
  34253. source: "./media/characters/sabrina/head-angry.svg"
  34254. }
  34255. },
  34256. maw: {
  34257. height: math.unit(1.65, "meters"),
  34258. name: "Maw",
  34259. image: {
  34260. source: "./media/characters/sabrina/maw.svg"
  34261. }
  34262. },
  34263. spikes: {
  34264. height: math.unit(1.69, "meters"),
  34265. name: "Spikes",
  34266. image: {
  34267. source: "./media/characters/sabrina/spikes.svg"
  34268. }
  34269. },
  34270. stomach: {
  34271. height: math.unit(1.15, "meters"),
  34272. name: "Stomach",
  34273. image: {
  34274. source: "./media/characters/sabrina/stomach.svg"
  34275. }
  34276. },
  34277. tongue: {
  34278. height: math.unit(1.27, "meters"),
  34279. name: "Tongue",
  34280. image: {
  34281. source: "./media/characters/sabrina/tongue.svg"
  34282. }
  34283. },
  34284. wingDorsal: {
  34285. height: math.unit(4.85, "meters"),
  34286. name: "Wing (Dorsal)",
  34287. image: {
  34288. source: "./media/characters/sabrina/wing-dorsal.svg"
  34289. }
  34290. },
  34291. wingVentral: {
  34292. height: math.unit(4.85, "meters"),
  34293. name: "Wing (Ventral)",
  34294. image: {
  34295. source: "./media/characters/sabrina/wing-ventral.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(5, "meters"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34309. {
  34310. frontMaid: {
  34311. height: math.unit(5 + 5/12, "feet"),
  34312. weight: math.unit(130, "lb"),
  34313. name: "Front (Maid)",
  34314. image: {
  34315. source: "./media/characters/midnight-tales/front-maid.svg",
  34316. extra: 489/454,
  34317. bottom: 61/550
  34318. }
  34319. },
  34320. frontFormal: {
  34321. height: math.unit(5 + 5/12, "feet"),
  34322. weight: math.unit(130, "lb"),
  34323. name: "Front (Formal)",
  34324. image: {
  34325. source: "./media/characters/midnight-tales/front-formal.svg",
  34326. extra: 489/454,
  34327. bottom: 61/550
  34328. }
  34329. },
  34330. back: {
  34331. height: math.unit(5 + 5/12, "feet"),
  34332. weight: math.unit(130, "lb"),
  34333. name: "Back",
  34334. image: {
  34335. source: "./media/characters/midnight-tales/back.svg",
  34336. extra: 498/456,
  34337. bottom: 33/531
  34338. }
  34339. },
  34340. frontBeast: {
  34341. height: math.unit(40, "feet"),
  34342. weight: math.unit(64000, "lb"),
  34343. name: "Front (Beast)",
  34344. image: {
  34345. source: "./media/characters/midnight-tales/front-beast.svg",
  34346. extra: 927/860,
  34347. bottom: 53/980
  34348. }
  34349. },
  34350. backBeast: {
  34351. height: math.unit(40, "feet"),
  34352. weight: math.unit(64000, "lb"),
  34353. name: "Back (Beast)",
  34354. image: {
  34355. source: "./media/characters/midnight-tales/back-beast.svg",
  34356. extra: 929/855,
  34357. bottom: 16/945
  34358. }
  34359. },
  34360. footBeast: {
  34361. height: math.unit(6.7, "feet"),
  34362. name: "Foot (Beast)",
  34363. image: {
  34364. source: "./media/characters/midnight-tales/foot-beast.svg"
  34365. }
  34366. },
  34367. headBeast: {
  34368. height: math.unit(8, "feet"),
  34369. name: "Head (Beast)",
  34370. image: {
  34371. source: "./media/characters/midnight-tales/head-beast.svg"
  34372. }
  34373. },
  34374. },
  34375. [
  34376. {
  34377. name: "Normal",
  34378. height: math.unit(5 + 5 / 12, "feet"),
  34379. default: true
  34380. },
  34381. {
  34382. name: "Macro",
  34383. height: math.unit(25, "feet")
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34389. {
  34390. front: {
  34391. height: math.unit(5 + 10/12, "feet"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/argon/front.svg",
  34395. extra: 2009/1935,
  34396. bottom: 118/2127
  34397. }
  34398. },
  34399. back: {
  34400. height: math.unit(5 + 10/12, "feet"),
  34401. name: "Back",
  34402. image: {
  34403. source: "./media/characters/argon/back.svg",
  34404. extra: 2047/1992,
  34405. bottom: 20/2067
  34406. }
  34407. },
  34408. frontDressed: {
  34409. height: math.unit(5 + 10/12, "feet"),
  34410. name: "Front (Dressed)",
  34411. image: {
  34412. source: "./media/characters/argon/front-dressed.svg",
  34413. extra: 2009/1935,
  34414. bottom: 118/2127
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(5 + 10/12, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(8 + 6/12, "feet"),
  34431. weight: math.unit(1150, "lb"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/kichi/front.svg",
  34435. extra: 1267/1164,
  34436. bottom: 61/1328
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(8 + 6/12, "feet"),
  34441. weight: math.unit(1150, "lb"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/kichi/back.svg",
  34445. extra: 1273/1166,
  34446. bottom: 33/1306
  34447. }
  34448. },
  34449. },
  34450. [
  34451. {
  34452. name: "Normal",
  34453. height: math.unit(8 + 6/12, "feet"),
  34454. default: true
  34455. },
  34456. ]
  34457. ))
  34458. characterMakers.push(() => makeCharacter(
  34459. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34460. {
  34461. front: {
  34462. height: math.unit(6, "feet"),
  34463. weight: math.unit(210, "lb"),
  34464. name: "Front",
  34465. image: {
  34466. source: "./media/characters/manetel-greyscale/front.svg",
  34467. extra: 350/312,
  34468. bottom: 8/358
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Micro",
  34475. height: math.unit(2, "inches")
  34476. },
  34477. {
  34478. name: "Normal",
  34479. height: math.unit(6, "feet"),
  34480. default: true
  34481. },
  34482. {
  34483. name: "Minimacro",
  34484. height: math.unit(17, "feet")
  34485. },
  34486. {
  34487. name: "Macro",
  34488. height: math.unit(117, "feet")
  34489. },
  34490. ]
  34491. ))
  34492. characterMakers.push(() => makeCharacter(
  34493. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34494. {
  34495. side: {
  34496. height: math.unit(5 + 1/12, "feet"),
  34497. weight: math.unit(418, "lb"),
  34498. name: "Side",
  34499. image: {
  34500. source: "./media/characters/softpurr/side.svg",
  34501. extra: 1993/1945,
  34502. bottom: 134/2127
  34503. }
  34504. },
  34505. front: {
  34506. height: math.unit(5 + 1/12, "feet"),
  34507. weight: math.unit(418, "lb"),
  34508. name: "Front",
  34509. image: {
  34510. source: "./media/characters/softpurr/front.svg",
  34511. extra: 1950/1856,
  34512. bottom: 174/2124
  34513. }
  34514. },
  34515. paw: {
  34516. height: math.unit(1, "feet"),
  34517. name: "Paw",
  34518. image: {
  34519. source: "./media/characters/softpurr/paw.svg"
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(5 + 1/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(260, "meters"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/anahita/front.svg",
  34539. extra: 665/635,
  34540. bottom: 89/754
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Macro",
  34547. height: math.unit(260, "meters"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(4 + 10/12, "feet"),
  34557. weight: math.unit(160, "lb"),
  34558. name: "Front",
  34559. image: {
  34560. source: "./media/characters/chip-mouse/front.svg",
  34561. extra: 3528/3408,
  34562. bottom: 0/3528
  34563. }
  34564. },
  34565. frontNsfw: {
  34566. height: math.unit(4 + 10/12, "feet"),
  34567. weight: math.unit(160, "lb"),
  34568. name: "Front (NSFW)",
  34569. image: {
  34570. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34571. extra: 3528/3408,
  34572. bottom: 0/3528
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(4 + 10/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34586. {
  34587. side: {
  34588. height: math.unit(10, "feet"),
  34589. weight: math.unit(14000, "lb"),
  34590. name: "Side",
  34591. image: {
  34592. source: "./media/characters/kremm/side.svg",
  34593. extra: 1390/1053,
  34594. bottom: 90/1480
  34595. }
  34596. },
  34597. gut: {
  34598. height: math.unit(5.8, "feet"),
  34599. name: "Gut",
  34600. image: {
  34601. source: "./media/characters/kremm/gut.svg"
  34602. }
  34603. },
  34604. ass: {
  34605. height: math.unit(6.1, "feet"),
  34606. name: "Ass",
  34607. image: {
  34608. source: "./media/characters/kremm/ass.svg"
  34609. }
  34610. },
  34611. jaws: {
  34612. height: math.unit(2.2, "feet"),
  34613. name: "Jaws",
  34614. image: {
  34615. source: "./media/characters/kremm/jaws.svg"
  34616. }
  34617. },
  34618. dick: {
  34619. height: math.unit(4.26, "feet"),
  34620. name: "Dick",
  34621. image: {
  34622. source: "./media/characters/kremm/dick.svg"
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(10, "feet"),
  34630. default: true
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(30, "stories"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/kai/front.svg",
  34642. extra: 1892/1718,
  34643. bottom: 162/2054
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Macro",
  34650. height: math.unit(30, "stories"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(6 + 4/12, "feet"),
  34660. weight: math.unit(145, "lb"),
  34661. name: "Front",
  34662. image: {
  34663. source: "./media/characters/sykes/front.svg",
  34664. extra: 1321 / 1187,
  34665. bottom: 66 / 1387
  34666. }
  34667. },
  34668. back: {
  34669. height: math.unit(6 + 4/12, "feet"),
  34670. weight: math.unit(145, "lb"),
  34671. name: "Back",
  34672. image: {
  34673. source: "./media/characters/sykes/back.svg",
  34674. extra: 1326/1181,
  34675. bottom: 31/1357
  34676. }
  34677. },
  34678. traditionalOutfit: {
  34679. height: math.unit(6 + 4/12, "feet"),
  34680. weight: math.unit(145, "lb"),
  34681. name: "Traditional Outfit",
  34682. image: {
  34683. source: "./media/characters/sykes/traditional-outfit.svg",
  34684. extra: 1321 / 1187,
  34685. bottom: 66 / 1387
  34686. }
  34687. },
  34688. adventureOutfit: {
  34689. height: math.unit(6 + 4/12, "feet"),
  34690. weight: math.unit(145, "lb"),
  34691. name: "Adventure Outfit",
  34692. image: {
  34693. source: "./media/characters/sykes/adventure-outfit.svg",
  34694. extra: 1321 / 1187,
  34695. bottom: 66 / 1387
  34696. }
  34697. },
  34698. handLeft: {
  34699. height: math.unit(0.9, "feet"),
  34700. name: "Hand (Left)",
  34701. image: {
  34702. source: "./media/characters/sykes/hand-left.svg"
  34703. }
  34704. },
  34705. handRight: {
  34706. height: math.unit(0.839, "feet"),
  34707. name: "Hand (Right)",
  34708. image: {
  34709. source: "./media/characters/sykes/hand-right.svg"
  34710. }
  34711. },
  34712. leftFoot: {
  34713. height: math.unit(1.2, "feet"),
  34714. name: "Foot (Left)",
  34715. image: {
  34716. source: "./media/characters/sykes/foot-left.svg"
  34717. }
  34718. },
  34719. rightFoot: {
  34720. height: math.unit(1.2, "feet"),
  34721. name: "Foot (Right)",
  34722. image: {
  34723. source: "./media/characters/sykes/foot-right.svg"
  34724. }
  34725. },
  34726. maw: {
  34727. height: math.unit(1.93, "feet"),
  34728. name: "Maw",
  34729. image: {
  34730. source: "./media/characters/sykes/maw.svg"
  34731. }
  34732. },
  34733. teeth: {
  34734. height: math.unit(0.51, "feet"),
  34735. name: "Teeth",
  34736. image: {
  34737. source: "./media/characters/sykes/teeth.svg"
  34738. }
  34739. },
  34740. tongue: {
  34741. height: math.unit(2.13, "feet"),
  34742. name: "Tongue",
  34743. image: {
  34744. source: "./media/characters/sykes/tongue.svg"
  34745. }
  34746. },
  34747. uvula: {
  34748. height: math.unit(0.16, "feet"),
  34749. name: "Uvula",
  34750. image: {
  34751. source: "./media/characters/sykes/uvula.svg"
  34752. }
  34753. },
  34754. collar: {
  34755. height: math.unit(0.287, "feet"),
  34756. name: "Collar",
  34757. image: {
  34758. source: "./media/characters/sykes/collar.svg"
  34759. }
  34760. },
  34761. tail: {
  34762. height: math.unit(3.8, "feet"),
  34763. name: "Tail",
  34764. image: {
  34765. source: "./media/characters/sykes/tail.svg"
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Shrunken",
  34772. height: math.unit(5, "inches")
  34773. },
  34774. {
  34775. name: "Normal",
  34776. height: math.unit(6 + 4 / 12, "feet"),
  34777. default: true
  34778. },
  34779. {
  34780. name: "Big",
  34781. height: math.unit(15, "feet")
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(5 + 8/12, "feet"),
  34790. weight: math.unit(190, "lb"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/oven-otter/front.svg",
  34794. extra: 1809/1740,
  34795. bottom: 181/1990
  34796. }
  34797. },
  34798. back: {
  34799. height: math.unit(5 + 8/12, "feet"),
  34800. weight: math.unit(190, "lb"),
  34801. name: "Back",
  34802. image: {
  34803. source: "./media/characters/oven-otter/back.svg",
  34804. extra: 1709/1635,
  34805. bottom: 118/1827
  34806. }
  34807. },
  34808. hand: {
  34809. height: math.unit(1.07, "feet"),
  34810. name: "Hand",
  34811. image: {
  34812. source: "./media/characters/oven-otter/hand.svg"
  34813. }
  34814. },
  34815. beans: {
  34816. height: math.unit(1.74, "feet"),
  34817. name: "Beans",
  34818. image: {
  34819. source: "./media/characters/oven-otter/beans.svg"
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Micro",
  34826. height: math.unit(0.5, "inches")
  34827. },
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(5 + 8/12, "feet"),
  34831. default: true
  34832. },
  34833. {
  34834. name: "Macro",
  34835. height: math.unit(250, "feet")
  34836. },
  34837. {
  34838. name: "Really High",
  34839. height: math.unit(420, "feet")
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(5, "meters"),
  34848. weight: math.unit(292000000000000, "kg"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/devourer/front.svg",
  34852. extra: 1800/1733,
  34853. bottom: 211/2011
  34854. }
  34855. },
  34856. maw: {
  34857. height: math.unit(1.1, "meter"),
  34858. name: "Maw",
  34859. image: {
  34860. source: "./media/characters/devourer/maw.svg"
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Small",
  34867. height: math.unit(3, "meters")
  34868. },
  34869. {
  34870. name: "Large",
  34871. height: math.unit(5, "meters"),
  34872. default: true
  34873. },
  34874. ]
  34875. ))
  34876. characterMakers.push(() => makeCharacter(
  34877. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34878. {
  34879. front: {
  34880. height: math.unit(6, "feet"),
  34881. weight: math.unit(400, "lb"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/ellarby/front.svg",
  34885. extra: 1909/1763,
  34886. bottom: 80/1989
  34887. }
  34888. },
  34889. back: {
  34890. height: math.unit(6, "feet"),
  34891. weight: math.unit(400, "lb"),
  34892. name: "Back",
  34893. image: {
  34894. source: "./media/characters/ellarby/back.svg",
  34895. extra: 1914/1784,
  34896. bottom: 172/2086
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Mischief",
  34903. height: math.unit(18, "inches")
  34904. },
  34905. {
  34906. name: "Trouble",
  34907. height: math.unit(12, "feet")
  34908. },
  34909. {
  34910. name: "Havoc",
  34911. height: math.unit(200, "feet"),
  34912. default: true
  34913. },
  34914. {
  34915. name: "Pandemonium",
  34916. height: math.unit(1, "mile")
  34917. },
  34918. {
  34919. name: "Catastrophe",
  34920. height: math.unit(100, "miles")
  34921. },
  34922. ]
  34923. ))
  34924. characterMakers.push(() => makeCharacter(
  34925. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34926. {
  34927. front: {
  34928. height: math.unit(4.7, "meters"),
  34929. weight: math.unit(6500, "kg"),
  34930. name: "Front",
  34931. image: {
  34932. source: "./media/characters/vex/front.svg",
  34933. extra: 1288/1140,
  34934. bottom: 100/1388
  34935. }
  34936. },
  34937. },
  34938. [
  34939. {
  34940. name: "Normal",
  34941. height: math.unit(4.7, "meters"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34948. {
  34949. normal: {
  34950. height: math.unit(6, "feet"),
  34951. weight: math.unit(350, "lb"),
  34952. name: "Normal",
  34953. image: {
  34954. source: "./media/characters/teshy/normal.svg",
  34955. extra: 1795/1735,
  34956. bottom: 16/1811
  34957. }
  34958. },
  34959. monsterFront: {
  34960. height: math.unit(12, "feet"),
  34961. weight: math.unit(4700, "lb"),
  34962. name: "Monster (Front)",
  34963. image: {
  34964. source: "./media/characters/teshy/monster-front.svg",
  34965. extra: 2042/2034,
  34966. bottom: 128/2170
  34967. }
  34968. },
  34969. monsterSide: {
  34970. height: math.unit(12, "feet"),
  34971. weight: math.unit(4700, "lb"),
  34972. name: "Monster (Side)",
  34973. image: {
  34974. source: "./media/characters/teshy/monster-side.svg",
  34975. extra: 2067/2056,
  34976. bottom: 70/2137
  34977. }
  34978. },
  34979. monsterBack: {
  34980. height: math.unit(12, "feet"),
  34981. weight: math.unit(4700, "lb"),
  34982. name: "Monster (Back)",
  34983. image: {
  34984. source: "./media/characters/teshy/monster-back.svg",
  34985. extra: 1921/1914,
  34986. bottom: 171/2092
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(6, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(6, "feet"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/ramey/front.svg",
  35006. extra: 790/787,
  35007. bottom: 27/817
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(6, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(5 + 5/12, "feet"),
  35024. weight: math.unit(120, "lb"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/phirae/front.svg",
  35028. extra: 2491/2436,
  35029. bottom: 38/2529
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Normal",
  35036. height: math.unit(5 + 5/12, "feet"),
  35037. default: true
  35038. },
  35039. ]
  35040. ))
  35041. characterMakers.push(() => makeCharacter(
  35042. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35043. {
  35044. front: {
  35045. height: math.unit(5 + 3/12, "feet"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/stagglas/front.svg",
  35049. extra: 962/882,
  35050. bottom: 53/1015
  35051. }
  35052. },
  35053. feral: {
  35054. height: math.unit(335, "cm"),
  35055. name: "Feral",
  35056. image: {
  35057. source: "./media/characters/stagglas/feral.svg",
  35058. extra: 1732/1090,
  35059. bottom: 48/1780
  35060. }
  35061. },
  35062. },
  35063. [
  35064. {
  35065. name: "Normal",
  35066. height: math.unit(5 + 3/12, "feet"),
  35067. default: true
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(5 + 4/12, "feet"),
  35076. weight: math.unit(145, "lb"),
  35077. name: "Front",
  35078. image: {
  35079. source: "./media/characters/starra/front.svg",
  35080. extra: 1790/1691,
  35081. bottom: 91/1881
  35082. }
  35083. },
  35084. },
  35085. [
  35086. {
  35087. name: "Normal",
  35088. height: math.unit(5 + 4/12, "feet"),
  35089. default: true
  35090. },
  35091. ]
  35092. ))
  35093. characterMakers.push(() => makeCharacter(
  35094. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35095. {
  35096. front: {
  35097. height: math.unit(2.2, "meters"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35101. extra: 1194/1005,
  35102. bottom: 25/1219
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(2.2, "meters"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35116. {
  35117. side: {
  35118. height: math.unit(8 + 2/12, "feet"),
  35119. weight: math.unit(1240, "lb"),
  35120. name: "Side",
  35121. image: {
  35122. source: "./media/characters/mika-valentine/side.svg",
  35123. extra: 2670/2501,
  35124. bottom: 250/2920
  35125. }
  35126. },
  35127. },
  35128. [
  35129. {
  35130. name: "Normal",
  35131. height: math.unit(8 + 2/12, "feet"),
  35132. default: true
  35133. },
  35134. ]
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(7 + 2/12, "feet"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/xoltol/front.svg",
  35144. extra: 2212/2124,
  35145. bottom: 84/2296
  35146. }
  35147. },
  35148. side: {
  35149. height: math.unit(7 + 2/12, "feet"),
  35150. name: "Side",
  35151. image: {
  35152. source: "./media/characters/xoltol/side.svg",
  35153. extra: 2273/2197,
  35154. bottom: 26/2299
  35155. }
  35156. },
  35157. hand: {
  35158. height: math.unit(2.5, "feet"),
  35159. name: "Hand",
  35160. image: {
  35161. source: "./media/characters/xoltol/hand.svg"
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Small-ish",
  35168. height: math.unit(5 + 11/12, "feet")
  35169. },
  35170. {
  35171. name: "Normal",
  35172. height: math.unit(7 + 2/12, "feet")
  35173. },
  35174. {
  35175. name: "\"Macro\"",
  35176. height: math.unit(14 + 9/12, "feet"),
  35177. default: true
  35178. },
  35179. {
  35180. name: "Alternate Height",
  35181. height: math.unit(20, "feet")
  35182. },
  35183. {
  35184. name: "Actually Macro",
  35185. height: math.unit(100, "feet")
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35191. {
  35192. front: {
  35193. height: math.unit(5 + 2/12, "feet"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/kotetsu-redwood/front.svg",
  35197. extra: 1053/942,
  35198. bottom: 60/1113
  35199. }
  35200. },
  35201. },
  35202. [
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(5 + 2/12, "feet"),
  35206. default: true
  35207. },
  35208. ]
  35209. ))
  35210. characterMakers.push(() => makeCharacter(
  35211. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35212. {
  35213. front: {
  35214. height: math.unit(2.4, "meters"),
  35215. weight: math.unit(125, "kg"),
  35216. name: "Front",
  35217. image: {
  35218. source: "./media/characters/lilith/front.svg",
  35219. extra: 1590/1513,
  35220. bottom: 203/1793
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Humanoid",
  35227. height: math.unit(2.4, "meters")
  35228. },
  35229. {
  35230. name: "Normal",
  35231. height: math.unit(6, "meters"),
  35232. default: true
  35233. },
  35234. {
  35235. name: "Largest",
  35236. height: math.unit(55, "meters")
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(8 + 4/12, "feet"),
  35245. weight: math.unit(535, "lb"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/beh'kah-bolger/front.svg",
  35249. extra: 1660/1603,
  35250. bottom: 37/1697
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(8 + 4/12, "feet"),
  35258. default: true
  35259. },
  35260. {
  35261. name: "Kaiju",
  35262. height: math.unit(250, "feet")
  35263. },
  35264. {
  35265. name: "Still Growing",
  35266. height: math.unit(10, "miles")
  35267. },
  35268. {
  35269. name: "Continental",
  35270. height: math.unit(5000, "miles")
  35271. },
  35272. {
  35273. name: "Final Form",
  35274. height: math.unit(2500000, "miles")
  35275. },
  35276. ]
  35277. ))
  35278. characterMakers.push(() => makeCharacter(
  35279. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35280. {
  35281. front: {
  35282. height: math.unit(7 + 2/12, "feet"),
  35283. weight: math.unit(230, "kg"),
  35284. name: "Front",
  35285. image: {
  35286. source: "./media/characters/tatyana-milewska/front.svg",
  35287. extra: 1199/1150,
  35288. bottom: 86/1285
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Normal",
  35295. height: math.unit(7 + 2/12, "feet"),
  35296. default: true
  35297. },
  35298. {
  35299. name: "Big",
  35300. height: math.unit(12, "feet")
  35301. },
  35302. {
  35303. name: "Minimacro",
  35304. height: math.unit(20, "feet")
  35305. },
  35306. {
  35307. name: "Macro",
  35308. height: math.unit(120, "feet")
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35314. {
  35315. front: {
  35316. height: math.unit(7 + 8/12, "feet"),
  35317. weight: math.unit(152, "kg"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/helen-arri/front.svg",
  35321. extra: 440/423,
  35322. bottom: 14/454
  35323. }
  35324. },
  35325. back: {
  35326. height: math.unit(7 + 8/12, "feet"),
  35327. weight: math.unit(152, "kg"),
  35328. name: "Back",
  35329. image: {
  35330. source: "./media/characters/helen-arri/back.svg",
  35331. extra: 443/426,
  35332. bottom: 8/451
  35333. }
  35334. },
  35335. },
  35336. [
  35337. {
  35338. name: "Normal",
  35339. height: math.unit(7 + 8/12, "feet"),
  35340. default: true
  35341. },
  35342. {
  35343. name: "Big",
  35344. height: math.unit(14, "feet")
  35345. },
  35346. {
  35347. name: "Minimacro",
  35348. height: math.unit(24, "feet")
  35349. },
  35350. {
  35351. name: "Macro",
  35352. height: math.unit(140, "feet")
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(6, "meters"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/ehanu-rehu/front.svg",
  35364. extra: 1800/1800,
  35365. bottom: 59/1859
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(6, "meters"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(7 + 3/12, "feet"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/renholder/front.svg",
  35385. extra: 3096/2960,
  35386. bottom: 250/3346
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Normal Bat",
  35393. height: math.unit(7 + 3/12, "feet"),
  35394. default: true
  35395. },
  35396. {
  35397. name: "Slightly Tall Bat",
  35398. height: math.unit(100, "feet")
  35399. },
  35400. {
  35401. name: "Big Bat",
  35402. height: math.unit(1000, "feet")
  35403. },
  35404. {
  35405. name: "City-Sized Bat",
  35406. height: math.unit(200000, "feet")
  35407. },
  35408. {
  35409. name: "Bigger Bat",
  35410. height: math.unit(10000, "miles")
  35411. },
  35412. {
  35413. name: "Solar Sized Bat",
  35414. height: math.unit(100, "AU")
  35415. },
  35416. {
  35417. name: "Galactic Bat",
  35418. height: math.unit(200000, "lightyears")
  35419. },
  35420. {
  35421. name: "Universally Known Bat",
  35422. height: math.unit(1, "universe")
  35423. },
  35424. ]
  35425. ))
  35426. characterMakers.push(() => makeCharacter(
  35427. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35428. {
  35429. front: {
  35430. height: math.unit(6 + 11/12, "feet"),
  35431. weight: math.unit(250, "lb"),
  35432. name: "Front",
  35433. image: {
  35434. source: "./media/characters/cookiecat/front.svg",
  35435. extra: 893/827,
  35436. bottom: 14/907
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Micro",
  35443. height: math.unit(3, "inches")
  35444. },
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(6 + 11/12, "feet"),
  35448. default: true
  35449. },
  35450. {
  35451. name: "Macro",
  35452. height: math.unit(100, "feet")
  35453. },
  35454. {
  35455. name: "Macro+",
  35456. height: math.unit(404, "feet")
  35457. },
  35458. {
  35459. name: "Megamacro",
  35460. height: math.unit(165, "miles")
  35461. },
  35462. {
  35463. name: "Planetary",
  35464. height: math.unit(4600, "miles")
  35465. },
  35466. ]
  35467. ))
  35468. characterMakers.push(() => makeCharacter(
  35469. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35470. {
  35471. front: {
  35472. height: math.unit(10 + 3/12, "feet"),
  35473. weight: math.unit(1500, "lb"),
  35474. name: "Front",
  35475. image: {
  35476. source: "./media/characters/tux-kusanagi/front.svg",
  35477. extra: 944/840,
  35478. bottom: 39/983
  35479. }
  35480. },
  35481. back: {
  35482. height: math.unit(10 + 3/12, "feet"),
  35483. weight: math.unit(1500, "lb"),
  35484. name: "Back",
  35485. image: {
  35486. source: "./media/characters/tux-kusanagi/back.svg",
  35487. extra: 941/842,
  35488. bottom: 28/969
  35489. }
  35490. },
  35491. rump: {
  35492. height: math.unit(5.25, "feet"),
  35493. name: "Rump",
  35494. image: {
  35495. source: "./media/characters/tux-kusanagi/rump.svg"
  35496. }
  35497. },
  35498. beak: {
  35499. height: math.unit(1.54, "feet"),
  35500. name: "Beak",
  35501. image: {
  35502. source: "./media/characters/tux-kusanagi/beak.svg"
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(10 + 3/12, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(58, "feet"),
  35519. weight: math.unit(200, "tons"),
  35520. name: "Front",
  35521. image: {
  35522. source: "./media/characters/uzarmazari/front.svg",
  35523. extra: 1575/1455,
  35524. bottom: 152/1727
  35525. }
  35526. },
  35527. back: {
  35528. height: math.unit(58, "feet"),
  35529. weight: math.unit(200, "tons"),
  35530. name: "Back",
  35531. image: {
  35532. source: "./media/characters/uzarmazari/back.svg",
  35533. extra: 1585/1510,
  35534. bottom: 157/1742
  35535. }
  35536. },
  35537. head: {
  35538. height: math.unit(26, "feet"),
  35539. name: "Head",
  35540. image: {
  35541. source: "./media/characters/uzarmazari/head.svg"
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(58, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35555. {
  35556. side: {
  35557. height: math.unit(15, "feet"),
  35558. name: "Side",
  35559. image: {
  35560. source: "./media/characters/akitu/side.svg",
  35561. extra: 1421/1321,
  35562. bottom: 157/1578
  35563. }
  35564. },
  35565. front: {
  35566. height: math.unit(15, "feet"),
  35567. name: "Front",
  35568. image: {
  35569. source: "./media/characters/akitu/front.svg",
  35570. extra: 1435/1326,
  35571. bottom: 232/1667
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Normal",
  35578. height: math.unit(15, "feet"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(10 + 8/12, "feet"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/azalie-croixland/front.svg",
  35591. extra: 1972/1856,
  35592. bottom: 31/2003
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Original Height",
  35599. height: math.unit(5 + 4/12, "feet")
  35600. },
  35601. {
  35602. name: "Normal Height",
  35603. height: math.unit(10 + 8/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35610. {
  35611. side: {
  35612. height: math.unit(7 + 1/12, "feet"),
  35613. weight: math.unit(245, "lb"),
  35614. name: "Side",
  35615. image: {
  35616. source: "./media/characters/kavus-kazian/side.svg",
  35617. extra: 349/342,
  35618. bottom: 15/364
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(7 + 1/12, "feet"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35632. {
  35633. normalFront: {
  35634. height: math.unit(5 + 11/12, "feet"),
  35635. name: "Front",
  35636. image: {
  35637. source: "./media/characters/moonlight-rose/normal-front.svg",
  35638. extra: 1980/1825,
  35639. bottom: 18/1998
  35640. },
  35641. form: "normal",
  35642. default: true
  35643. },
  35644. normalBack: {
  35645. height: math.unit(5 + 11/12, "feet"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/moonlight-rose/normal-back.svg",
  35649. extra: 2010/1839,
  35650. bottom: 10/2020
  35651. },
  35652. form: "normal"
  35653. },
  35654. demonFront: {
  35655. height: math.unit(1.5, "earths"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/moonlight-rose/demon.svg",
  35659. extra: 1400/1294,
  35660. bottom: 45/1445
  35661. },
  35662. form: "demon",
  35663. default: true
  35664. },
  35665. terraFront: {
  35666. height: math.unit(1.5, "earths"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/moonlight-rose/terra.svg"
  35670. },
  35671. form: "terra",
  35672. default: true
  35673. },
  35674. jupiterFront: {
  35675. height: math.unit(69911*2, "km"),
  35676. name: "Front",
  35677. image: {
  35678. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35679. extra: 1367/1286,
  35680. bottom: 55/1422
  35681. },
  35682. form: "jupiter",
  35683. default: true
  35684. },
  35685. neptuneFront: {
  35686. height: math.unit(24622*2, "feet"),
  35687. name: "Front",
  35688. image: {
  35689. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35690. extra: 1851/1712,
  35691. bottom: 0/1851
  35692. },
  35693. form: "neptune",
  35694. default: true
  35695. },
  35696. },
  35697. [
  35698. {
  35699. name: "\"Natural\" Height",
  35700. height: math.unit(5 + 11/12, "feet"),
  35701. form: "normal"
  35702. },
  35703. {
  35704. name: "Smallest comfortable size",
  35705. height: math.unit(40, "meters"),
  35706. form: "normal"
  35707. },
  35708. {
  35709. name: "Common size",
  35710. height: math.unit(50, "km"),
  35711. form: "normal",
  35712. default: true
  35713. },
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(1.5, "earths"),
  35717. form: "demon",
  35718. default: true
  35719. },
  35720. {
  35721. name: "Universal",
  35722. height: math.unit(15, "universes"),
  35723. form: "demon"
  35724. },
  35725. {
  35726. name: "Earth",
  35727. height: math.unit(1.5, "earths"),
  35728. form: "terra",
  35729. default: true
  35730. },
  35731. {
  35732. name: "Super Earth",
  35733. height: math.unit(67.5, "earths"),
  35734. form: "terra"
  35735. },
  35736. {
  35737. name: "Doesn't fit in a solar system...",
  35738. height: math.unit(1, "galaxy"),
  35739. form: "terra"
  35740. },
  35741. {
  35742. name: "Saturn",
  35743. height: math.unit(58232*2, "km"),
  35744. form: "jupiter"
  35745. },
  35746. {
  35747. name: "Jupiter",
  35748. height: math.unit(69911*2, "km"),
  35749. form: "jupiter",
  35750. default: true
  35751. },
  35752. {
  35753. name: "HD 100546 b",
  35754. height: math.unit(482938, "km"),
  35755. form: "jupiter"
  35756. },
  35757. {
  35758. name: "Enceladus",
  35759. height: math.unit(513*2, "km"),
  35760. form: "neptune"
  35761. },
  35762. {
  35763. name: "Europe",
  35764. height: math.unit(1560*2, "km"),
  35765. form: "neptune"
  35766. },
  35767. {
  35768. name: "Neptune",
  35769. height: math.unit(24622*2, "km"),
  35770. form: "neptune",
  35771. default: true
  35772. },
  35773. {
  35774. name: "CoRoT-9b",
  35775. height: math.unit(75067*2, "km"),
  35776. form: "neptune"
  35777. },
  35778. ],
  35779. {
  35780. "normal": {
  35781. name: "Normal",
  35782. default: true
  35783. },
  35784. "demon": {
  35785. name: "Demon"
  35786. },
  35787. "terra": {
  35788. name: "Terra"
  35789. },
  35790. "jupiter": {
  35791. name: "Jupiter"
  35792. },
  35793. "neptune": {
  35794. name: "Neptune"
  35795. }
  35796. }
  35797. ))
  35798. characterMakers.push(() => makeCharacter(
  35799. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35800. {
  35801. front: {
  35802. height: math.unit(16, "feet"),
  35803. weight: math.unit(610, "kg"),
  35804. name: "Front",
  35805. image: {
  35806. source: "./media/characters/huckle/front.svg",
  35807. extra: 1731/1625,
  35808. bottom: 33/1764
  35809. }
  35810. },
  35811. back: {
  35812. height: math.unit(16, "feet"),
  35813. weight: math.unit(610, "kg"),
  35814. name: "Back",
  35815. image: {
  35816. source: "./media/characters/huckle/back.svg",
  35817. extra: 1738/1651,
  35818. bottom: 37/1775
  35819. }
  35820. },
  35821. laughing: {
  35822. height: math.unit(3.75, "feet"),
  35823. name: "Laughing",
  35824. image: {
  35825. source: "./media/characters/huckle/laughing.svg"
  35826. }
  35827. },
  35828. angry: {
  35829. height: math.unit(4.15, "feet"),
  35830. name: "Angry",
  35831. image: {
  35832. source: "./media/characters/huckle/angry.svg"
  35833. }
  35834. },
  35835. },
  35836. [
  35837. {
  35838. name: "Normal",
  35839. height: math.unit(16, "feet"),
  35840. default: true
  35841. },
  35842. {
  35843. name: "Mini Macro",
  35844. height: math.unit(463, "feet")
  35845. },
  35846. {
  35847. name: "Macro",
  35848. height: math.unit(1680, "meters")
  35849. },
  35850. {
  35851. name: "Mega Macro",
  35852. height: math.unit(175, "km")
  35853. },
  35854. {
  35855. name: "Terra Macro",
  35856. height: math.unit(32, "gigameters")
  35857. },
  35858. {
  35859. name: "Multiverse+",
  35860. height: math.unit(2.56e23, "yottameters")
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(6 + 9/12, "feet"),
  35869. weight: math.unit(280, "lb"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/candy/front.svg",
  35873. extra: 234/217,
  35874. bottom: 11/245
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Really Small",
  35881. height: math.unit(0.1, "nm")
  35882. },
  35883. {
  35884. name: "Micro",
  35885. height: math.unit(2, "inches")
  35886. },
  35887. {
  35888. name: "Normal",
  35889. height: math.unit(6 + 9/12, "feet"),
  35890. default: true
  35891. },
  35892. {
  35893. name: "Small Macro",
  35894. height: math.unit(69, "feet")
  35895. },
  35896. {
  35897. name: "Macro",
  35898. height: math.unit(160, "feet")
  35899. },
  35900. {
  35901. name: "Megamacro",
  35902. height: math.unit(22000, "miles")
  35903. },
  35904. {
  35905. name: "Gigamacro",
  35906. height: math.unit(50000, "miles")
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(4, "feet"),
  35915. weight: math.unit(90, "lb"),
  35916. name: "Front",
  35917. image: {
  35918. source: "./media/characters/joey-mcdonald/front.svg",
  35919. extra: 1059/852,
  35920. bottom: 33/1092
  35921. }
  35922. },
  35923. back: {
  35924. height: math.unit(4, "feet"),
  35925. weight: math.unit(90, "lb"),
  35926. name: "Back",
  35927. image: {
  35928. source: "./media/characters/joey-mcdonald/back.svg",
  35929. extra: 1077/879,
  35930. bottom: 5/1082
  35931. }
  35932. },
  35933. frontKobold: {
  35934. height: math.unit(4, "feet"),
  35935. weight: math.unit(100, "lb"),
  35936. name: "Front-kobold",
  35937. image: {
  35938. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35939. extra: 1480/1367,
  35940. bottom: 0/1480
  35941. }
  35942. },
  35943. backKobold: {
  35944. height: math.unit(4, "feet"),
  35945. weight: math.unit(100, "lb"),
  35946. name: "Back-kobold",
  35947. image: {
  35948. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35949. extra: 1449/1361,
  35950. bottom: 0/1449
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(4, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35964. {
  35965. front: {
  35966. height: math.unit(12 + 6/12, "feet"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/kass-lockheed/front.svg",
  35970. extra: 354/343,
  35971. bottom: 9/363
  35972. }
  35973. },
  35974. back: {
  35975. height: math.unit(12 + 6/12, "feet"),
  35976. name: "Back",
  35977. image: {
  35978. source: "./media/characters/kass-lockheed/back.svg",
  35979. extra: 364/352,
  35980. bottom: 3/367
  35981. }
  35982. },
  35983. dick: {
  35984. height: math.unit(3.12, "feet"),
  35985. name: "Dick",
  35986. image: {
  35987. source: "./media/characters/kass-lockheed/dick.svg"
  35988. }
  35989. },
  35990. head: {
  35991. height: math.unit(2.6, "feet"),
  35992. name: "Head",
  35993. image: {
  35994. source: "./media/characters/kass-lockheed/head.svg"
  35995. }
  35996. },
  35997. bleh: {
  35998. height: math.unit(2.85, "feet"),
  35999. name: "Bleh",
  36000. image: {
  36001. source: "./media/characters/kass-lockheed/bleh.svg"
  36002. }
  36003. },
  36004. smug: {
  36005. height: math.unit(2.85, "feet"),
  36006. name: "Smug",
  36007. image: {
  36008. source: "./media/characters/kass-lockheed/smug.svg"
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(12 + 6/12, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(6 + 2/12, "feet"),
  36025. name: "Front",
  36026. image: {
  36027. source: "./media/characters/taylor/front.svg",
  36028. extra: 639/495,
  36029. bottom: 12/651
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(6 + 2/12, "feet"),
  36037. default: true
  36038. },
  36039. {
  36040. name: "Big",
  36041. height: math.unit(15, "feet")
  36042. },
  36043. {
  36044. name: "Lorg",
  36045. height: math.unit(80, "feet")
  36046. },
  36047. {
  36048. name: "Too Lorg",
  36049. height: math.unit(120, "feet")
  36050. },
  36051. ]
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36055. {
  36056. front: {
  36057. height: math.unit(15, "feet"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/kaizer/front.svg",
  36061. extra: 1612/1436,
  36062. bottom: 43/1655
  36063. }
  36064. },
  36065. },
  36066. [
  36067. {
  36068. name: "Normal",
  36069. height: math.unit(15, "feet"),
  36070. default: true
  36071. },
  36072. ]
  36073. ))
  36074. characterMakers.push(() => makeCharacter(
  36075. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36076. {
  36077. front: {
  36078. height: math.unit(2, "feet"),
  36079. weight: math.unit(30, "lb"),
  36080. name: "Front",
  36081. image: {
  36082. source: "./media/characters/sandy/front.svg",
  36083. extra: 1439/1307,
  36084. bottom: 194/1633
  36085. }
  36086. },
  36087. },
  36088. [
  36089. {
  36090. name: "Normal",
  36091. height: math.unit(2, "feet"),
  36092. default: true
  36093. },
  36094. ]
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(3, "feet"),
  36101. name: "Front",
  36102. image: {
  36103. source: "./media/characters/mellvi/front.svg",
  36104. extra: 1831/1630,
  36105. bottom: 58/1889
  36106. }
  36107. },
  36108. },
  36109. [
  36110. {
  36111. name: "Normal",
  36112. height: math.unit(3, "feet"),
  36113. default: true
  36114. },
  36115. ]
  36116. ))
  36117. characterMakers.push(() => makeCharacter(
  36118. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36119. {
  36120. front: {
  36121. height: math.unit(5 + 11/12, "feet"),
  36122. weight: math.unit(200, "lb"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/shirou/front.svg",
  36126. extra: 2491/2383,
  36127. bottom: 189/2680
  36128. }
  36129. },
  36130. back: {
  36131. height: math.unit(5 + 11/12, "feet"),
  36132. weight: math.unit(200, "lb"),
  36133. name: "Back",
  36134. image: {
  36135. source: "./media/characters/shirou/back.svg",
  36136. extra: 2554/2450,
  36137. bottom: 76/2630
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(5 + 11/12, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(6 + 3/12, "feet"),
  36154. weight: math.unit(177, "lb"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/noryu/front.svg",
  36158. extra: 973/885,
  36159. bottom: 10/983
  36160. }
  36161. },
  36162. },
  36163. [
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(6 + 3/12, "feet"),
  36167. default: true
  36168. },
  36169. ]
  36170. ))
  36171. characterMakers.push(() => makeCharacter(
  36172. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36173. {
  36174. front: {
  36175. height: math.unit(5 + 6/12, "feet"),
  36176. weight: math.unit(170, "lb"),
  36177. name: "Front",
  36178. image: {
  36179. source: "./media/characters/mevolas-rubenido/front.svg",
  36180. extra: 2109/1901,
  36181. bottom: 96/2205
  36182. }
  36183. },
  36184. },
  36185. [
  36186. {
  36187. name: "Normal",
  36188. height: math.unit(5 + 6/12, "feet"),
  36189. default: true
  36190. },
  36191. ]
  36192. ))
  36193. characterMakers.push(() => makeCharacter(
  36194. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36195. {
  36196. front: {
  36197. height: math.unit(100, "feet"),
  36198. name: "Front",
  36199. image: {
  36200. source: "./media/characters/dee/front.svg",
  36201. extra: 2153/2036,
  36202. bottom: 59/2212
  36203. }
  36204. },
  36205. back: {
  36206. height: math.unit(100, "feet"),
  36207. name: "Back",
  36208. image: {
  36209. source: "./media/characters/dee/back.svg",
  36210. extra: 2183/2058,
  36211. bottom: 75/2258
  36212. }
  36213. },
  36214. foot: {
  36215. height: math.unit(19.43, "feet"),
  36216. name: "Foot",
  36217. image: {
  36218. source: "./media/characters/dee/foot.svg"
  36219. }
  36220. },
  36221. hoof: {
  36222. height: math.unit(20.6, "feet"),
  36223. name: "Hoof",
  36224. image: {
  36225. source: "./media/characters/dee/hoof.svg"
  36226. }
  36227. },
  36228. },
  36229. [
  36230. {
  36231. name: "Macro",
  36232. height: math.unit(100, "feet"),
  36233. default: true
  36234. },
  36235. ]
  36236. ))
  36237. characterMakers.push(() => makeCharacter(
  36238. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36239. {
  36240. front: {
  36241. height: math.unit(5 + 6/12, "feet"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/teh/front.svg",
  36245. extra: 1002/847,
  36246. bottom: 62/1064
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(5 + 6/12, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36260. {
  36261. side: {
  36262. height: math.unit(6 + 1/12, "feet"),
  36263. weight: math.unit(204, "lb"),
  36264. name: "Side",
  36265. image: {
  36266. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36267. extra: 974/775,
  36268. bottom: 169/1143
  36269. }
  36270. },
  36271. sitting: {
  36272. height: math.unit(6 + 2/12, "feet"),
  36273. weight: math.unit(204, "lb"),
  36274. name: "Sitting",
  36275. image: {
  36276. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36277. extra: 1175/964,
  36278. bottom: 378/1553
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(6 + 1/12, "feet"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(6, "inches"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/tululi/front.svg",
  36298. extra: 1997/1876,
  36299. bottom: 20/2017
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(6, "inches"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(4 + 1/12, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/star/front.svg",
  36319. extra: 1493/1189,
  36320. bottom: 48/1541
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(4 + 1/12, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(6 + 3/12, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/comet/front.svg",
  36340. extra: 1681/1462,
  36341. bottom: 26/1707
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(6 + 3/12, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(950, "feet"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/vortex/front.svg",
  36361. extra: 1497/1434,
  36362. bottom: 56/1553
  36363. }
  36364. },
  36365. maw: {
  36366. height: math.unit(285, "feet"),
  36367. name: "Maw",
  36368. image: {
  36369. source: "./media/characters/vortex/maw.svg"
  36370. }
  36371. },
  36372. },
  36373. [
  36374. {
  36375. name: "Macro",
  36376. height: math.unit(950, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(600, "feet"),
  36386. weight: math.unit(0.02, "grams"),
  36387. name: "Front",
  36388. image: {
  36389. source: "./media/characters/doodle/front.svg",
  36390. extra: 1578/1413,
  36391. bottom: 37/1615
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Macro",
  36398. height: math.unit(600, "feet"),
  36399. default: true
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(6 + 6/12, "feet"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/jai/front.svg",
  36411. extra: 1645/1534,
  36412. bottom: 115/1760
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Normal",
  36419. height: math.unit(6 + 6/12, "feet"),
  36420. default: true
  36421. },
  36422. ]
  36423. ))
  36424. characterMakers.push(() => makeCharacter(
  36425. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36426. {
  36427. front: {
  36428. height: math.unit(6 + 8/12, "feet"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/pixel/front.svg",
  36432. extra: 1900/1735,
  36433. bottom: 63/1963
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(6 + 8/12, "feet"),
  36441. default: true
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36447. {
  36448. back: {
  36449. height: math.unit(4 + 1/12, "feet"),
  36450. weight: math.unit(75, "lb"),
  36451. name: "Back",
  36452. image: {
  36453. source: "./media/characters/rhett/back.svg",
  36454. extra: 930/878,
  36455. bottom: 25/955
  36456. }
  36457. },
  36458. front: {
  36459. height: math.unit(4 + 1/12, "feet"),
  36460. weight: math.unit(75, "lb"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/rhett/front.svg",
  36464. extra: 1682/1586,
  36465. bottom: 92/1774
  36466. }
  36467. },
  36468. },
  36469. [
  36470. {
  36471. name: "Micro",
  36472. height: math.unit(8, "inches")
  36473. },
  36474. {
  36475. name: "Tiny",
  36476. height: math.unit(2, "feet")
  36477. },
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(4 + 1/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(3 + 3/12, "feet"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/penny/front.svg",
  36493. extra: 1406/1311,
  36494. bottom: 26/1432
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(3 + 3/12, "feet"),
  36502. default: true
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36508. {
  36509. front: {
  36510. height: math.unit(4 + 11/12, "feet"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/monty/front.svg",
  36514. extra: 1479/1209,
  36515. bottom: 0/1479
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Normal",
  36522. height: math.unit(4 + 11/12, "feet"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(8 + 4/12, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/sterling/front.svg",
  36535. extra: 1420/1236,
  36536. bottom: 27/1447
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(8 + 4/12, "feet"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(15, "feet"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/marble/front.svg",
  36556. extra: 973/937,
  36557. bottom: 32/1005
  36558. }
  36559. },
  36560. },
  36561. [
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(15, "feet"),
  36565. default: true
  36566. },
  36567. ]
  36568. ))
  36569. characterMakers.push(() => makeCharacter(
  36570. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36571. {
  36572. front: {
  36573. height: math.unit(3, "inches"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/powder/front.svg",
  36577. extra: 1504/1334,
  36578. bottom: 518/2022
  36579. }
  36580. },
  36581. },
  36582. [
  36583. {
  36584. name: "Normal",
  36585. height: math.unit(3, "inches"),
  36586. default: true
  36587. },
  36588. ]
  36589. ))
  36590. characterMakers.push(() => makeCharacter(
  36591. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36592. {
  36593. front: {
  36594. height: math.unit(4 + 5/12, "feet"),
  36595. name: "Front",
  36596. image: {
  36597. source: "./media/characters/joey-raccoon/front.svg",
  36598. extra: 1273/1197,
  36599. bottom: 0/1273
  36600. }
  36601. },
  36602. },
  36603. [
  36604. {
  36605. name: "Normal",
  36606. height: math.unit(4 + 5/12, "feet"),
  36607. default: true
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(8 + 4/12, "feet"),
  36616. name: "Front",
  36617. image: {
  36618. source: "./media/characters/vick/front.svg",
  36619. extra: 2187/2118,
  36620. bottom: 47/2234
  36621. }
  36622. },
  36623. },
  36624. [
  36625. {
  36626. name: "Normal",
  36627. height: math.unit(8 + 4/12, "feet"),
  36628. default: true
  36629. },
  36630. ]
  36631. ))
  36632. characterMakers.push(() => makeCharacter(
  36633. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36634. {
  36635. front: {
  36636. height: math.unit(5 + 5/12, "feet"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/mitsy/front.svg",
  36640. extra: 1842/1695,
  36641. bottom: 0/1842
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Normal",
  36648. height: math.unit(5 + 5/12, "feet"),
  36649. default: true
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36655. {
  36656. front: {
  36657. height: math.unit(6 + 3/12, "feet"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/silvy/front.svg",
  36661. extra: 1995/1836,
  36662. bottom: 225/2220
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(6 + 3/12, "feet"),
  36670. default: true
  36671. },
  36672. ]
  36673. ))
  36674. characterMakers.push(() => makeCharacter(
  36675. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36676. {
  36677. front: {
  36678. height: math.unit(3 + 8/12, "feet"),
  36679. name: "Front",
  36680. image: {
  36681. source: "./media/characters/rodney/front.svg",
  36682. extra: 1956/1747,
  36683. bottom: 31/1987
  36684. }
  36685. },
  36686. frontDressed: {
  36687. height: math.unit(2.9, "feet"),
  36688. name: "Front (Dressed)",
  36689. image: {
  36690. source: "./media/characters/rodney/front-dressed.svg",
  36691. extra: 1382/1241,
  36692. bottom: 385/1767
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(3 + 8/12, "feet"),
  36700. default: true
  36701. },
  36702. ]
  36703. ))
  36704. characterMakers.push(() => makeCharacter(
  36705. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36706. {
  36707. front: {
  36708. height: math.unit(5 + 9/12, "feet"),
  36709. weight: math.unit(194, "lbs"),
  36710. name: "Front",
  36711. image: {
  36712. source: "./media/characters/zakail-sudekai/front.svg",
  36713. extra: 2696/2533,
  36714. bottom: 248/2944
  36715. }
  36716. },
  36717. maw: {
  36718. height: math.unit(1.35, "feet"),
  36719. name: "Maw",
  36720. image: {
  36721. source: "./media/characters/zakail-sudekai/maw.svg"
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(5 + 9/12, "feet"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(8 + 4/12, "feet"),
  36738. weight: math.unit(1200, "lb"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/eleanor/front.svg",
  36742. extra: 1226/1192,
  36743. bottom: 52/1278
  36744. }
  36745. },
  36746. back: {
  36747. height: math.unit(8 + 4/12, "feet"),
  36748. weight: math.unit(1200, "lb"),
  36749. name: "Back",
  36750. image: {
  36751. source: "./media/characters/eleanor/back.svg",
  36752. extra: 1242/1184,
  36753. bottom: 60/1302
  36754. }
  36755. },
  36756. head: {
  36757. height: math.unit(2.62, "feet"),
  36758. name: "Head",
  36759. image: {
  36760. source: "./media/characters/eleanor/head.svg"
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(8 + 4/12, "feet"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(8 + 4/12, "feet"),
  36777. weight: math.unit(750, "lb"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/tanya/front.svg",
  36781. extra: 1749/1615,
  36782. bottom: 33/1782
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(8 + 4/12, "feet"),
  36790. default: true
  36791. },
  36792. ]
  36793. ))
  36794. characterMakers.push(() => makeCharacter(
  36795. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36796. {
  36797. front: {
  36798. height: math.unit(5, "feet"),
  36799. weight: math.unit(225, "lb"),
  36800. name: "Front",
  36801. image: {
  36802. source: "./media/characters/cindy/front.svg",
  36803. extra: 1320/1250,
  36804. bottom: 42/1362
  36805. }
  36806. },
  36807. frontDressed: {
  36808. height: math.unit(5, "feet"),
  36809. weight: math.unit(225, "lb"),
  36810. name: "Front (Dressed)",
  36811. image: {
  36812. source: "./media/characters/cindy/front-dressed.svg",
  36813. extra: 1320/1250,
  36814. bottom: 42/1362
  36815. }
  36816. },
  36817. back: {
  36818. height: math.unit(5, "feet"),
  36819. weight: math.unit(225, "lb"),
  36820. name: "Back",
  36821. image: {
  36822. source: "./media/characters/cindy/back.svg",
  36823. extra: 1384/1346,
  36824. bottom: 14/1398
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(5, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(6 + 9/12, "feet"),
  36841. weight: math.unit(440, "lb"),
  36842. name: "Front",
  36843. image: {
  36844. source: "./media/characters/wilbur-owen/front.svg",
  36845. extra: 1575/1448,
  36846. bottom: 72/1647
  36847. }
  36848. },
  36849. back: {
  36850. height: math.unit(6 + 9/12, "feet"),
  36851. weight: math.unit(440, "lb"),
  36852. name: "Back",
  36853. image: {
  36854. source: "./media/characters/wilbur-owen/back.svg",
  36855. extra: 1578/1445,
  36856. bottom: 36/1614
  36857. }
  36858. },
  36859. },
  36860. [
  36861. {
  36862. name: "Normal",
  36863. height: math.unit(6 + 9/12, "feet"),
  36864. default: true
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(6 + 5/12, "feet"),
  36873. weight: math.unit(650, "lb"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/keegan/front.svg",
  36877. extra: 2387/2198,
  36878. bottom: 33/2420
  36879. }
  36880. },
  36881. side: {
  36882. height: math.unit(6 + 5/12, "feet"),
  36883. weight: math.unit(650, "lb"),
  36884. name: "Side",
  36885. image: {
  36886. source: "./media/characters/keegan/side.svg",
  36887. extra: 2390/2202,
  36888. bottom: 47/2437
  36889. }
  36890. },
  36891. back: {
  36892. height: math.unit(6 + 5/12, "feet"),
  36893. weight: math.unit(650, "lb"),
  36894. name: "Back",
  36895. image: {
  36896. source: "./media/characters/keegan/back.svg",
  36897. extra: 2418/2268,
  36898. bottom: 15/2433
  36899. }
  36900. },
  36901. frontSfw: {
  36902. height: math.unit(6 + 5/12, "feet"),
  36903. weight: math.unit(650, "lb"),
  36904. name: "Front (SFW)",
  36905. image: {
  36906. source: "./media/characters/keegan/front-sfw.svg",
  36907. extra: 2387/2198,
  36908. bottom: 33/2420
  36909. }
  36910. },
  36911. beans: {
  36912. height: math.unit(1.85, "feet"),
  36913. name: "Beans",
  36914. image: {
  36915. source: "./media/characters/keegan/beans.svg"
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Normal",
  36922. height: math.unit(6 + 5/12, "feet"),
  36923. default: true
  36924. },
  36925. ]
  36926. ))
  36927. characterMakers.push(() => makeCharacter(
  36928. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36929. {
  36930. front: {
  36931. height: math.unit(9, "feet"),
  36932. name: "Front",
  36933. image: {
  36934. source: "./media/characters/colton/front.svg",
  36935. extra: 1589/1326,
  36936. bottom: 139/1728
  36937. }
  36938. },
  36939. },
  36940. [
  36941. {
  36942. name: "Normal",
  36943. height: math.unit(9, "feet"),
  36944. default: true
  36945. },
  36946. ]
  36947. ))
  36948. characterMakers.push(() => makeCharacter(
  36949. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36950. {
  36951. front: {
  36952. height: math.unit(2 + 9/12, "feet"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/bora/front.svg",
  36956. extra: 1265/1250,
  36957. bottom: 24/1289
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(2 + 9/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(8, "feet"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/myu-myu/front.svg",
  36977. extra: 1949/1857,
  36978. bottom: 90/2039
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(8, "feet"),
  36986. default: true
  36987. },
  36988. {
  36989. name: "Big",
  36990. height: math.unit(15, "feet")
  36991. },
  36992. {
  36993. name: "BIG",
  36994. height: math.unit(25, "feet")
  36995. },
  36996. ]
  36997. ))
  36998. characterMakers.push(() => makeCharacter(
  36999. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37000. {
  37001. side: {
  37002. height: math.unit(7 + 5/12, "feet"),
  37003. weight: math.unit(2800, "lb"),
  37004. name: "Side",
  37005. image: {
  37006. source: "./media/characters/haloren/side.svg",
  37007. extra: 1793/409,
  37008. bottom: 59/1852
  37009. }
  37010. },
  37011. frontPaw: {
  37012. height: math.unit(2.36, "feet"),
  37013. name: "Front paw",
  37014. image: {
  37015. source: "./media/characters/haloren/front-paw.svg"
  37016. }
  37017. },
  37018. hindPaw: {
  37019. height: math.unit(3.18, "feet"),
  37020. name: "Hind paw",
  37021. image: {
  37022. source: "./media/characters/haloren/hind-paw.svg"
  37023. }
  37024. },
  37025. maw: {
  37026. height: math.unit(5.05, "feet"),
  37027. name: "Maw",
  37028. image: {
  37029. source: "./media/characters/haloren/maw.svg"
  37030. }
  37031. },
  37032. dick: {
  37033. height: math.unit(2.90, "feet"),
  37034. name: "Dick",
  37035. image: {
  37036. source: "./media/characters/haloren/dick.svg"
  37037. }
  37038. },
  37039. },
  37040. [
  37041. {
  37042. name: "Normal",
  37043. height: math.unit(7 + 5/12, "feet"),
  37044. default: true
  37045. },
  37046. {
  37047. name: "Enhanced",
  37048. height: math.unit(14 + 3/12, "feet")
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37054. {
  37055. front: {
  37056. height: math.unit(171, "cm"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/kimmy/front.svg",
  37060. extra: 1491/1435,
  37061. bottom: 53/1544
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Small",
  37068. height: math.unit(9, "cm")
  37069. },
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(171, "cm"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(8, "feet"),
  37082. weight: math.unit(300, "lb"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/galeboomer/front.svg",
  37086. extra: 4651/4415,
  37087. bottom: 162/4813
  37088. }
  37089. },
  37090. back: {
  37091. height: math.unit(8, "feet"),
  37092. weight: math.unit(300, "lb"),
  37093. name: "Back",
  37094. image: {
  37095. source: "./media/characters/galeboomer/back.svg",
  37096. extra: 4544/4314,
  37097. bottom: 16/4560
  37098. }
  37099. },
  37100. frontAlt: {
  37101. height: math.unit(8, "feet"),
  37102. weight: math.unit(300, "lb"),
  37103. name: "Front (Alt)",
  37104. image: {
  37105. source: "./media/characters/galeboomer/front-alt.svg",
  37106. extra: 4458/4228,
  37107. bottom: 68/4526
  37108. }
  37109. },
  37110. maw: {
  37111. height: math.unit(1.2, "feet"),
  37112. name: "Maw",
  37113. image: {
  37114. source: "./media/characters/galeboomer/maw.svg"
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Normal",
  37121. height: math.unit(8, "feet"),
  37122. default: true
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37128. {
  37129. front: {
  37130. height: math.unit(5 + 9/12, "feet"),
  37131. weight: math.unit(120, "lb"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/chyr/front.svg",
  37135. extra: 1323/1254,
  37136. bottom: 63/1386
  37137. }
  37138. },
  37139. back: {
  37140. height: math.unit(5 + 9/12, "feet"),
  37141. weight: math.unit(120, "lb"),
  37142. name: "Back",
  37143. image: {
  37144. source: "./media/characters/chyr/back.svg",
  37145. extra: 1323/1252,
  37146. bottom: 48/1371
  37147. }
  37148. },
  37149. },
  37150. [
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(5 + 9/12, "feet"),
  37154. default: true
  37155. },
  37156. ]
  37157. ))
  37158. characterMakers.push(() => makeCharacter(
  37159. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37160. {
  37161. front: {
  37162. height: math.unit(7, "feet"),
  37163. weight: math.unit(310, "lb"),
  37164. name: "Front",
  37165. image: {
  37166. source: "./media/characters/solarus/front.svg",
  37167. extra: 2415/2021,
  37168. bottom: 103/2518
  37169. }
  37170. },
  37171. back: {
  37172. height: math.unit(7, "feet"),
  37173. weight: math.unit(310, "lb"),
  37174. name: "Back",
  37175. image: {
  37176. source: "./media/characters/solarus/back.svg",
  37177. extra: 2463/2089,
  37178. bottom: 79/2542
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(7, "feet"),
  37186. default: true
  37187. },
  37188. ]
  37189. ))
  37190. characterMakers.push(() => makeCharacter(
  37191. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37192. {
  37193. front: {
  37194. height: math.unit(16, "feet"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37198. extra: 1844/1780,
  37199. bottom: 58/1902
  37200. }
  37201. },
  37202. winterCoat: {
  37203. height: math.unit(16, "feet"),
  37204. name: "Winter Coat",
  37205. image: {
  37206. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37207. extra: 1807/1775,
  37208. bottom: 69/1876
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(16, "feet"),
  37216. default: true
  37217. },
  37218. {
  37219. name: "Chicago Size",
  37220. height: math.unit(560, "feet")
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(11 + 6/12, "feet"),
  37229. weight: math.unit(1366, "lb"),
  37230. name: "Front",
  37231. image: {
  37232. source: "./media/characters/lexor/front.svg",
  37233. extra: 1560/1481,
  37234. bottom: 211/1771
  37235. }
  37236. },
  37237. back: {
  37238. height: math.unit(11 + 6/12, "feet"),
  37239. weight: math.unit(1366, "lb"),
  37240. name: "Back",
  37241. image: {
  37242. source: "./media/characters/lexor/back.svg",
  37243. extra: 1614/1533,
  37244. bottom: 76/1690
  37245. }
  37246. },
  37247. maw: {
  37248. height: math.unit(3, "feet"),
  37249. name: "Maw",
  37250. image: {
  37251. source: "./media/characters/lexor/maw.svg"
  37252. }
  37253. },
  37254. dick: {
  37255. height: math.unit(2.59, "feet"),
  37256. name: "Dick",
  37257. image: {
  37258. source: "./media/characters/lexor/dick.svg"
  37259. }
  37260. },
  37261. },
  37262. [
  37263. {
  37264. name: "Normal",
  37265. height: math.unit(11 + 6/12, "feet"),
  37266. default: true
  37267. },
  37268. ]
  37269. ))
  37270. characterMakers.push(() => makeCharacter(
  37271. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37272. {
  37273. front: {
  37274. height: math.unit(5 + 8/12, "feet"),
  37275. name: "Front",
  37276. image: {
  37277. source: "./media/characters/magnum/front.svg",
  37278. extra: 942/855,
  37279. bottom: 26/968
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(5 + 8/12, "feet"),
  37287. default: true
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(18 + 4/12, "feet"),
  37296. weight: math.unit(1500, "kg"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/solas-sharpsman/front.svg",
  37300. extra: 1698/1589,
  37301. bottom: 0/1698
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(18 + 4/12, "feet"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(5 + 5/12, "feet"),
  37318. weight: math.unit(180, "lb"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/october/front.svg",
  37322. extra: 1800/1650,
  37323. bottom: 0/1800
  37324. }
  37325. },
  37326. frontNsfw: {
  37327. height: math.unit(5 + 5/12, "feet"),
  37328. weight: math.unit(180, "lb"),
  37329. name: "Front (NSFW)",
  37330. image: {
  37331. source: "./media/characters/october/front-nsfw.svg",
  37332. extra: 1392/1307,
  37333. bottom: 42/1434
  37334. }
  37335. },
  37336. },
  37337. [
  37338. {
  37339. name: "Normal",
  37340. height: math.unit(5 + 5/12, "feet"),
  37341. default: true
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(8 + 6/12, "feet"),
  37350. name: "Front",
  37351. image: {
  37352. source: "./media/characters/essynkardi/front.svg",
  37353. extra: 1914/1846,
  37354. bottom: 22/1936
  37355. }
  37356. },
  37357. },
  37358. [
  37359. {
  37360. name: "Normal",
  37361. height: math.unit(8 + 6/12, "feet"),
  37362. default: true
  37363. },
  37364. ]
  37365. ))
  37366. characterMakers.push(() => makeCharacter(
  37367. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37368. {
  37369. front: {
  37370. height: math.unit(6 + 6/12, "feet"),
  37371. weight: math.unit(7, "lb"),
  37372. name: "Front",
  37373. image: {
  37374. source: "./media/characters/icky/front.svg",
  37375. extra: 813/782,
  37376. bottom: 66/879
  37377. }
  37378. },
  37379. back: {
  37380. height: math.unit(6 + 6/12, "feet"),
  37381. weight: math.unit(7, "lb"),
  37382. name: "Back",
  37383. image: {
  37384. source: "./media/characters/icky/back.svg",
  37385. extra: 754/735,
  37386. bottom: 56/810
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(6 + 6/12, "feet"),
  37394. default: true
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37400. {
  37401. front: {
  37402. height: math.unit(15, "feet"),
  37403. name: "Front",
  37404. image: {
  37405. source: "./media/characters/rojas/front.svg",
  37406. extra: 1462/1408,
  37407. bottom: 95/1557
  37408. }
  37409. },
  37410. back: {
  37411. height: math.unit(15, "feet"),
  37412. name: "Back",
  37413. image: {
  37414. source: "./media/characters/rojas/back.svg",
  37415. extra: 1023/954,
  37416. bottom: 28/1051
  37417. }
  37418. },
  37419. },
  37420. [
  37421. {
  37422. name: "Normal",
  37423. height: math.unit(15, "feet"),
  37424. default: true
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37430. {
  37431. frontHuman: {
  37432. height: math.unit(5 + 7/12, "feet"),
  37433. name: "Front (Human)",
  37434. image: {
  37435. source: "./media/characters/alek-dryagan/front-human.svg",
  37436. extra: 1687/1667,
  37437. bottom: 69/1756
  37438. }
  37439. },
  37440. backHuman: {
  37441. height: math.unit(5 + 7/12, "feet"),
  37442. name: "Back (Human)",
  37443. image: {
  37444. source: "./media/characters/alek-dryagan/back-human.svg",
  37445. extra: 1670/1649,
  37446. bottom: 65/1735
  37447. }
  37448. },
  37449. frontDemi: {
  37450. height: math.unit(65, "feet"),
  37451. name: "Front (Demi)",
  37452. image: {
  37453. source: "./media/characters/alek-dryagan/front-demi.svg",
  37454. extra: 1669/1642,
  37455. bottom: 49/1718
  37456. }
  37457. },
  37458. backDemi: {
  37459. height: math.unit(65, "feet"),
  37460. name: "Back (Demi)",
  37461. image: {
  37462. source: "./media/characters/alek-dryagan/back-demi.svg",
  37463. extra: 1658/1637,
  37464. bottom: 40/1698
  37465. }
  37466. },
  37467. mawHuman: {
  37468. height: math.unit(0.3, "feet"),
  37469. name: "Maw (Human)",
  37470. image: {
  37471. source: "./media/characters/alek-dryagan/maw-human.svg"
  37472. }
  37473. },
  37474. mawDemi: {
  37475. height: math.unit(3.8, "feet"),
  37476. name: "Maw (Demi)",
  37477. image: {
  37478. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(5 + 7/12, "feet"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37492. {
  37493. frontHuman: {
  37494. height: math.unit(5 + 2/12, "feet"),
  37495. name: "Front (Human)",
  37496. image: {
  37497. source: "./media/characters/gen/front-human.svg",
  37498. extra: 1627/1538,
  37499. bottom: 71/1698
  37500. }
  37501. },
  37502. backHuman: {
  37503. height: math.unit(5 + 2/12, "feet"),
  37504. name: "Back (Human)",
  37505. image: {
  37506. source: "./media/characters/gen/back-human.svg",
  37507. extra: 1638/1548,
  37508. bottom: 69/1707
  37509. }
  37510. },
  37511. frontDemi: {
  37512. height: math.unit(5 + 2/12, "feet"),
  37513. name: "Front (Demi)",
  37514. image: {
  37515. source: "./media/characters/gen/front-demi.svg",
  37516. extra: 1627/1538,
  37517. bottom: 71/1698
  37518. }
  37519. },
  37520. backDemi: {
  37521. height: math.unit(5 + 2/12, "feet"),
  37522. name: "Back (Demi)",
  37523. image: {
  37524. source: "./media/characters/gen/back-demi.svg",
  37525. extra: 1638/1548,
  37526. bottom: 69/1707
  37527. }
  37528. },
  37529. },
  37530. [
  37531. {
  37532. name: "Normal",
  37533. height: math.unit(5 + 2/12, "feet"),
  37534. default: true
  37535. },
  37536. ]
  37537. ))
  37538. characterMakers.push(() => makeCharacter(
  37539. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37540. {
  37541. frontImp: {
  37542. height: math.unit(1 + 11/12, "feet"),
  37543. name: "Front (Imp)",
  37544. image: {
  37545. source: "./media/characters/max-kobold/front-imp.svg",
  37546. extra: 1238/1134,
  37547. bottom: 81/1319
  37548. }
  37549. },
  37550. backImp: {
  37551. height: math.unit(1 + 11/12, "feet"),
  37552. name: "Back (Imp)",
  37553. image: {
  37554. source: "./media/characters/max-kobold/back-imp.svg",
  37555. extra: 1334/1175,
  37556. bottom: 34/1368
  37557. }
  37558. },
  37559. frontDemi: {
  37560. height: math.unit(5 + 9/12, "feet"),
  37561. name: "Front (Demi)",
  37562. image: {
  37563. source: "./media/characters/max-kobold/front-demi.svg",
  37564. extra: 1715/1685,
  37565. bottom: 54/1769
  37566. }
  37567. },
  37568. backDemi: {
  37569. height: math.unit(5 + 9/12, "feet"),
  37570. name: "Back (Demi)",
  37571. image: {
  37572. source: "./media/characters/max-kobold/back-demi.svg",
  37573. extra: 1752/1729,
  37574. bottom: 41/1793
  37575. }
  37576. },
  37577. handImp: {
  37578. height: math.unit(0.45, "feet"),
  37579. name: "Hand (Imp)",
  37580. image: {
  37581. source: "./media/characters/max-kobold/hand.svg"
  37582. }
  37583. },
  37584. pawImp: {
  37585. height: math.unit(0.46, "feet"),
  37586. name: "Paw (Imp)",
  37587. image: {
  37588. source: "./media/characters/max-kobold/paw.svg"
  37589. }
  37590. },
  37591. handDemi: {
  37592. height: math.unit(0.80, "feet"),
  37593. name: "Hand (Demi)",
  37594. image: {
  37595. source: "./media/characters/max-kobold/hand.svg"
  37596. }
  37597. },
  37598. pawDemi: {
  37599. height: math.unit(1.1, "feet"),
  37600. name: "Paw (Demi)",
  37601. image: {
  37602. source: "./media/characters/max-kobold/paw.svg"
  37603. }
  37604. },
  37605. headImp: {
  37606. height: math.unit(1.33, "feet"),
  37607. name: "Head (Imp)",
  37608. image: {
  37609. source: "./media/characters/max-kobold/head-imp.svg"
  37610. }
  37611. },
  37612. mawImp: {
  37613. height: math.unit(0.75, "feet"),
  37614. name: "Maw (Imp)",
  37615. image: {
  37616. source: "./media/characters/max-kobold/maw-imp.svg"
  37617. }
  37618. },
  37619. mawDemi: {
  37620. height: math.unit(0.42, "feet"),
  37621. name: "Maw (Demi)",
  37622. image: {
  37623. source: "./media/characters/max-kobold/maw-demi.svg"
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(1 + 11/12, "feet"),
  37631. default: true
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(7 + 5/12, "feet"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/carbon/front.svg",
  37643. extra: 1754/1689,
  37644. bottom: 65/1819
  37645. }
  37646. },
  37647. back: {
  37648. height: math.unit(7 + 5/12, "feet"),
  37649. name: "Back",
  37650. image: {
  37651. source: "./media/characters/carbon/back.svg",
  37652. extra: 1762/1695,
  37653. bottom: 24/1786
  37654. }
  37655. },
  37656. frontGigantamax: {
  37657. height: math.unit(150, "feet"),
  37658. name: "Front (Gigantamax)",
  37659. image: {
  37660. source: "./media/characters/carbon/front-gigantamax.svg",
  37661. extra: 1826/1669,
  37662. bottom: 59/1885
  37663. }
  37664. },
  37665. backGigantamax: {
  37666. height: math.unit(150, "feet"),
  37667. name: "Back (Gigantamax)",
  37668. image: {
  37669. source: "./media/characters/carbon/back-gigantamax.svg",
  37670. extra: 1796/1653,
  37671. bottom: 53/1849
  37672. }
  37673. },
  37674. maw: {
  37675. height: math.unit(0.48, "feet"),
  37676. name: "Maw",
  37677. image: {
  37678. source: "./media/characters/carbon/maw.svg"
  37679. }
  37680. },
  37681. mawGigantamax: {
  37682. height: math.unit(7.5, "feet"),
  37683. name: "Maw (Gigantamax)",
  37684. image: {
  37685. source: "./media/characters/carbon/maw-gigantamax.svg"
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(7 + 5/12, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(6, "feet"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/maverick/front.svg",
  37705. extra: 1672/1661,
  37706. bottom: 85/1757
  37707. }
  37708. },
  37709. back: {
  37710. height: math.unit(6, "feet"),
  37711. name: "Back",
  37712. image: {
  37713. source: "./media/characters/maverick/back.svg",
  37714. extra: 1642/1631,
  37715. bottom: 38/1680
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(6, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(15, "feet"),
  37732. weight: math.unit(615, "lb"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/grockle/front.svg",
  37736. extra: 1535/1427,
  37737. bottom: 56/1591
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(15, "feet"),
  37745. default: true
  37746. },
  37747. {
  37748. name: "Large",
  37749. height: math.unit(150, "feet")
  37750. },
  37751. {
  37752. name: "Macro",
  37753. height: math.unit(1876, "feet")
  37754. },
  37755. {
  37756. name: "Mega Macro",
  37757. height: math.unit(121940, "feet")
  37758. },
  37759. {
  37760. name: "Giga Macro",
  37761. height: math.unit(750, "km")
  37762. },
  37763. {
  37764. name: "Tera Macro",
  37765. height: math.unit(750000, "km")
  37766. },
  37767. {
  37768. name: "Galactic",
  37769. height: math.unit(1.4e5, "km")
  37770. },
  37771. {
  37772. name: "Godlike",
  37773. height: math.unit(9.8e280, "galaxies")
  37774. },
  37775. ]
  37776. ))
  37777. characterMakers.push(() => makeCharacter(
  37778. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37779. {
  37780. front: {
  37781. height: math.unit(11, "meters"),
  37782. weight: math.unit(20, "tonnes"),
  37783. name: "Front",
  37784. image: {
  37785. source: "./media/characters/alistair/front.svg",
  37786. extra: 1265/1009,
  37787. bottom: 93/1358
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Normal",
  37794. height: math.unit(11, "meters"),
  37795. default: true
  37796. },
  37797. ]
  37798. ))
  37799. characterMakers.push(() => makeCharacter(
  37800. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37801. {
  37802. front: {
  37803. height: math.unit(5 + 8/12, "feet"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/haruka/front.svg",
  37807. extra: 2012/1952,
  37808. bottom: 0/2012
  37809. }
  37810. },
  37811. },
  37812. [
  37813. {
  37814. name: "Normal",
  37815. height: math.unit(5 + 8/12, "feet"),
  37816. default: true
  37817. },
  37818. ]
  37819. ))
  37820. characterMakers.push(() => makeCharacter(
  37821. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37822. {
  37823. back: {
  37824. height: math.unit(9, "feet"),
  37825. name: "Back",
  37826. image: {
  37827. source: "./media/characters/vivian-sylveon/back.svg",
  37828. extra: 1853/1714,
  37829. bottom: 0/1853
  37830. }
  37831. },
  37832. },
  37833. [
  37834. {
  37835. name: "Normal",
  37836. height: math.unit(9, "feet"),
  37837. default: true
  37838. },
  37839. {
  37840. name: "Macro",
  37841. height: math.unit(500, "feet")
  37842. },
  37843. {
  37844. name: "Megamacro",
  37845. height: math.unit(600, "miles")
  37846. },
  37847. {
  37848. name: "Gigamacro",
  37849. height: math.unit(30000, "miles")
  37850. },
  37851. ]
  37852. ))
  37853. characterMakers.push(() => makeCharacter(
  37854. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37855. {
  37856. anthro: {
  37857. height: math.unit(5 + 10/12, "feet"),
  37858. weight: math.unit(100, "lb"),
  37859. name: "Anthro",
  37860. image: {
  37861. source: "./media/characters/daiki/anthro.svg",
  37862. extra: 1115/1027,
  37863. bottom: 69/1184
  37864. }
  37865. },
  37866. feral: {
  37867. height: math.unit(200, "feet"),
  37868. name: "Feral",
  37869. image: {
  37870. source: "./media/characters/daiki/feral.svg",
  37871. extra: 1256/313,
  37872. bottom: 39/1295
  37873. }
  37874. },
  37875. feralHead: {
  37876. height: math.unit(171, "feet"),
  37877. name: "Feral Head",
  37878. image: {
  37879. source: "./media/characters/daiki/feral-head.svg"
  37880. }
  37881. },
  37882. manaDragon: {
  37883. height: math.unit(170, "meters"),
  37884. name: "Mana-dragon",
  37885. image: {
  37886. source: "./media/characters/daiki/mana-dragon.svg",
  37887. extra: 763/420,
  37888. bottom: 97/860
  37889. }
  37890. },
  37891. },
  37892. [
  37893. {
  37894. name: "Normal",
  37895. height: math.unit(5 + 10/12, "feet"),
  37896. default: true
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37902. {
  37903. fullyEquippedFront: {
  37904. height: math.unit(3 + 1/12, "feet"),
  37905. weight: math.unit(24, "lb"),
  37906. name: "Fully Equipped (Front)",
  37907. image: {
  37908. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37909. extra: 687/605,
  37910. bottom: 18/705
  37911. }
  37912. },
  37913. fullyEquippedBack: {
  37914. height: math.unit(3 + 1/12, "feet"),
  37915. weight: math.unit(24, "lb"),
  37916. name: "Fully Equipped (Back)",
  37917. image: {
  37918. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37919. extra: 689/590,
  37920. bottom: 18/707
  37921. }
  37922. },
  37923. dailyWear: {
  37924. height: math.unit(3 + 1/12, "feet"),
  37925. weight: math.unit(24, "lb"),
  37926. name: "Daily Wear",
  37927. image: {
  37928. source: "./media/characters/tea-spot/daily-wear.svg",
  37929. extra: 701/620,
  37930. bottom: 21/722
  37931. }
  37932. },
  37933. maidWork: {
  37934. height: math.unit(3 + 1/12, "feet"),
  37935. weight: math.unit(24, "lb"),
  37936. name: "Maid Work",
  37937. image: {
  37938. source: "./media/characters/tea-spot/maid-work.svg",
  37939. extra: 693/609,
  37940. bottom: 15/708
  37941. }
  37942. },
  37943. },
  37944. [
  37945. {
  37946. name: "Normal",
  37947. height: math.unit(3 + 1/12, "feet"),
  37948. default: true
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(175, "cm"),
  37957. weight: math.unit(75, "kg"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/chee/front.svg",
  37961. extra: 1796/1740,
  37962. bottom: 40/1836
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Micro-Micro",
  37969. height: math.unit(1, "nm")
  37970. },
  37971. {
  37972. name: "Micro-erst",
  37973. height: math.unit(1, "micrometer")
  37974. },
  37975. {
  37976. name: "Micro-er",
  37977. height: math.unit(1, "cm")
  37978. },
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(175, "cm"),
  37982. default: true
  37983. },
  37984. {
  37985. name: "Macro",
  37986. height: math.unit(100, "m")
  37987. },
  37988. {
  37989. name: "Macro-er",
  37990. height: math.unit(1, "km")
  37991. },
  37992. {
  37993. name: "Macro-erst",
  37994. height: math.unit(10, "km")
  37995. },
  37996. {
  37997. name: "Macro-Macro",
  37998. height: math.unit(100, "km")
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(11 + 9/12, "feet"),
  38007. weight: math.unit(935, "lb"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/kingsley/front.svg",
  38011. extra: 1803/1674,
  38012. bottom: 127/1930
  38013. }
  38014. },
  38015. frontNude: {
  38016. height: math.unit(11 + 9/12, "feet"),
  38017. weight: math.unit(935, "lb"),
  38018. name: "Front (Nude)",
  38019. image: {
  38020. source: "./media/characters/kingsley/front-nude.svg",
  38021. extra: 1803/1674,
  38022. bottom: 127/1930
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(11 + 9/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38036. {
  38037. side: {
  38038. height: math.unit(9, "feet"),
  38039. name: "Side",
  38040. image: {
  38041. source: "./media/characters/rymel/side.svg",
  38042. extra: 792/469,
  38043. bottom: 121/913
  38044. }
  38045. },
  38046. maw: {
  38047. height: math.unit(2.4, "meters"),
  38048. name: "Maw",
  38049. image: {
  38050. source: "./media/characters/rymel/maw.svg"
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "House Drake",
  38057. height: math.unit(2, "feet")
  38058. },
  38059. {
  38060. name: "Reduced",
  38061. height: math.unit(4.5, "feet")
  38062. },
  38063. {
  38064. name: "Normal",
  38065. height: math.unit(9, "feet"),
  38066. default: true
  38067. },
  38068. ]
  38069. ))
  38070. characterMakers.push(() => makeCharacter(
  38071. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38072. {
  38073. front: {
  38074. height: math.unit(1.74, "meters"),
  38075. weight: math.unit(55, "kg"),
  38076. name: "Front",
  38077. image: {
  38078. source: "./media/characters/rubus/front.svg",
  38079. extra: 1894/1742,
  38080. bottom: 44/1938
  38081. }
  38082. },
  38083. },
  38084. [
  38085. {
  38086. name: "Normal",
  38087. height: math.unit(1.74, "meters"),
  38088. default: true
  38089. },
  38090. ]
  38091. ))
  38092. characterMakers.push(() => makeCharacter(
  38093. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38094. {
  38095. front: {
  38096. height: math.unit(5 + 2/12, "feet"),
  38097. weight: math.unit(112, "lb"),
  38098. name: "Front",
  38099. image: {
  38100. source: "./media/characters/cassie-kingston/front.svg",
  38101. extra: 1438/1390,
  38102. bottom: 47/1485
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(5 + 2/12, "feet"),
  38110. default: true
  38111. },
  38112. {
  38113. name: "Macro",
  38114. height: math.unit(128, "feet")
  38115. },
  38116. {
  38117. name: "Megamacro",
  38118. height: math.unit(2.56, "miles")
  38119. },
  38120. ]
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(7, "feet"),
  38127. name: "Front",
  38128. image: {
  38129. source: "./media/characters/fox/front.svg",
  38130. extra: 1798/1703,
  38131. bottom: 55/1853
  38132. }
  38133. },
  38134. back: {
  38135. height: math.unit(7, "feet"),
  38136. name: "Back",
  38137. image: {
  38138. source: "./media/characters/fox/back.svg",
  38139. extra: 1748/1649,
  38140. bottom: 32/1780
  38141. }
  38142. },
  38143. head: {
  38144. height: math.unit(1.95, "feet"),
  38145. name: "Head",
  38146. image: {
  38147. source: "./media/characters/fox/head.svg"
  38148. }
  38149. },
  38150. dick: {
  38151. height: math.unit(1.33, "feet"),
  38152. name: "Dick",
  38153. image: {
  38154. source: "./media/characters/fox/dick.svg"
  38155. }
  38156. },
  38157. foot: {
  38158. height: math.unit(1, "feet"),
  38159. name: "Foot",
  38160. image: {
  38161. source: "./media/characters/fox/foot.svg"
  38162. }
  38163. },
  38164. paw: {
  38165. height: math.unit(0.92, "feet"),
  38166. name: "Paw",
  38167. image: {
  38168. source: "./media/characters/fox/paw.svg"
  38169. }
  38170. },
  38171. },
  38172. [
  38173. {
  38174. name: "Small",
  38175. height: math.unit(3, "inches")
  38176. },
  38177. {
  38178. name: "\"Realistic\"",
  38179. height: math.unit(7, "feet")
  38180. },
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(150, "feet"),
  38184. default: true
  38185. },
  38186. {
  38187. name: "BIG",
  38188. height: math.unit(1200, "feet")
  38189. },
  38190. {
  38191. name: "👀",
  38192. height: math.unit(5, "miles")
  38193. },
  38194. {
  38195. name: "👀👀👀",
  38196. height: math.unit(64, "miles")
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(625, "feet"),
  38205. name: "Front",
  38206. image: {
  38207. source: "./media/characters/asonja-rossa/front.svg",
  38208. extra: 1833/1686,
  38209. bottom: 24/1857
  38210. }
  38211. },
  38212. back: {
  38213. height: math.unit(625, "feet"),
  38214. name: "Back",
  38215. image: {
  38216. source: "./media/characters/asonja-rossa/back.svg",
  38217. extra: 1852/1753,
  38218. bottom: 26/1878
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Macro",
  38225. height: math.unit(625, "feet"),
  38226. default: true
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38232. {
  38233. side: {
  38234. height: math.unit(8, "feet"),
  38235. name: "Side",
  38236. image: {
  38237. source: "./media/characters/rezukii/side.svg",
  38238. extra: 979/542,
  38239. bottom: 87/1066
  38240. }
  38241. },
  38242. sitting: {
  38243. height: math.unit(14.6, "feet"),
  38244. name: "Sitting",
  38245. image: {
  38246. source: "./media/characters/rezukii/sitting.svg",
  38247. extra: 1023/813,
  38248. bottom: 45/1068
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Tiny",
  38255. height: math.unit(2, "feet")
  38256. },
  38257. {
  38258. name: "Smol",
  38259. height: math.unit(4, "feet")
  38260. },
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(8, "feet"),
  38264. default: true
  38265. },
  38266. {
  38267. name: "Big",
  38268. height: math.unit(12, "feet")
  38269. },
  38270. {
  38271. name: "Macro",
  38272. height: math.unit(30, "feet")
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(14, "feet"),
  38281. weight: math.unit(9.5, "tonnes"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/dawnheart/front.svg",
  38285. extra: 2792/2675,
  38286. bottom: 64/2856
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(14, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38300. {
  38301. front: {
  38302. height: math.unit(1.7, "m"),
  38303. name: "Front",
  38304. image: {
  38305. source: "./media/characters/gladi/front.svg",
  38306. extra: 1460/1362,
  38307. bottom: 19/1479
  38308. }
  38309. },
  38310. back: {
  38311. height: math.unit(1.7, "m"),
  38312. name: "Back",
  38313. image: {
  38314. source: "./media/characters/gladi/back.svg",
  38315. extra: 1459/1357,
  38316. bottom: 12/1471
  38317. }
  38318. },
  38319. feral: {
  38320. height: math.unit(2.05, "m"),
  38321. name: "Feral",
  38322. image: {
  38323. source: "./media/characters/gladi/feral.svg",
  38324. extra: 821/557,
  38325. bottom: 91/912
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Shortest",
  38332. height: math.unit(70, "cm")
  38333. },
  38334. {
  38335. name: "Normal",
  38336. height: math.unit(1.7, "m")
  38337. },
  38338. {
  38339. name: "Macro",
  38340. height: math.unit(10, "m"),
  38341. default: true
  38342. },
  38343. {
  38344. name: "Tallest",
  38345. height: math.unit(200, "m")
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(5 + 7/12, "feet"),
  38354. weight: math.unit(2, "tons"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/erdno/front.svg",
  38358. extra: 1234/1129,
  38359. bottom: 35/1269
  38360. }
  38361. },
  38362. angled: {
  38363. height: math.unit(5 + 7/12, "feet"),
  38364. weight: math.unit(2, "tons"),
  38365. name: "Angled",
  38366. image: {
  38367. source: "./media/characters/erdno/angled.svg",
  38368. extra: 1185/1139,
  38369. bottom: 36/1221
  38370. }
  38371. },
  38372. side: {
  38373. height: math.unit(5 + 7/12, "feet"),
  38374. weight: math.unit(2, "tons"),
  38375. name: "Side",
  38376. image: {
  38377. source: "./media/characters/erdno/side.svg",
  38378. extra: 1191/1144,
  38379. bottom: 40/1231
  38380. }
  38381. },
  38382. back: {
  38383. height: math.unit(5 + 7/12, "feet"),
  38384. weight: math.unit(2, "tons"),
  38385. name: "Back",
  38386. image: {
  38387. source: "./media/characters/erdno/back.svg",
  38388. extra: 1202/1146,
  38389. bottom: 17/1219
  38390. }
  38391. },
  38392. frontNsfw: {
  38393. height: math.unit(5 + 7/12, "feet"),
  38394. weight: math.unit(2, "tons"),
  38395. name: "Front (NSFW)",
  38396. image: {
  38397. source: "./media/characters/erdno/front-nsfw.svg",
  38398. extra: 1234/1129,
  38399. bottom: 35/1269
  38400. }
  38401. },
  38402. angledNsfw: {
  38403. height: math.unit(5 + 7/12, "feet"),
  38404. weight: math.unit(2, "tons"),
  38405. name: "Angled (NSFW)",
  38406. image: {
  38407. source: "./media/characters/erdno/angled-nsfw.svg",
  38408. extra: 1185/1139,
  38409. bottom: 36/1221
  38410. }
  38411. },
  38412. sideNsfw: {
  38413. height: math.unit(5 + 7/12, "feet"),
  38414. weight: math.unit(2, "tons"),
  38415. name: "Side (NSFW)",
  38416. image: {
  38417. source: "./media/characters/erdno/side-nsfw.svg",
  38418. extra: 1191/1144,
  38419. bottom: 40/1231
  38420. }
  38421. },
  38422. backNsfw: {
  38423. height: math.unit(5 + 7/12, "feet"),
  38424. weight: math.unit(2, "tons"),
  38425. name: "Back (NSFW)",
  38426. image: {
  38427. source: "./media/characters/erdno/back-nsfw.svg",
  38428. extra: 1202/1146,
  38429. bottom: 17/1219
  38430. }
  38431. },
  38432. frontHyper: {
  38433. height: math.unit(5 + 7/12, "feet"),
  38434. weight: math.unit(2, "tons"),
  38435. name: "Front (Hyper)",
  38436. image: {
  38437. source: "./media/characters/erdno/front-hyper.svg",
  38438. extra: 1298/1136,
  38439. bottom: 35/1333
  38440. }
  38441. },
  38442. },
  38443. [
  38444. {
  38445. name: "Normal",
  38446. height: math.unit(5 + 7/12, "feet"),
  38447. default: true
  38448. },
  38449. {
  38450. name: "Big",
  38451. height: math.unit(5.7, "meters")
  38452. },
  38453. {
  38454. name: "Macro",
  38455. height: math.unit(5.7, "kilometers")
  38456. },
  38457. {
  38458. name: "Megamacro",
  38459. height: math.unit(5.7, "earths")
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(5 + 10/12, "feet"),
  38468. weight: math.unit(150, "lb"),
  38469. name: "Front",
  38470. image: {
  38471. source: "./media/characters/jamie/front.svg",
  38472. extra: 1908/1768,
  38473. bottom: 19/1927
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Minimum",
  38480. height: math.unit(2, "cm")
  38481. },
  38482. {
  38483. name: "Micro",
  38484. height: math.unit(3, "inches")
  38485. },
  38486. {
  38487. name: "Normal",
  38488. height: math.unit(5 + 10/12, "feet"),
  38489. default: true
  38490. },
  38491. {
  38492. name: "Macro",
  38493. height: math.unit(150, "feet")
  38494. },
  38495. {
  38496. name: "Megamacro",
  38497. height: math.unit(10000, "m")
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38503. {
  38504. front: {
  38505. height: math.unit(2, "meters"),
  38506. weight: math.unit(100, "kg"),
  38507. name: "Front",
  38508. image: {
  38509. source: "./media/characters/shiron/front.svg",
  38510. extra: 2103/1985,
  38511. bottom: 98/2201
  38512. }
  38513. },
  38514. back: {
  38515. height: math.unit(2, "meters"),
  38516. weight: math.unit(100, "kg"),
  38517. name: "Back",
  38518. image: {
  38519. source: "./media/characters/shiron/back.svg",
  38520. extra: 2110/2015,
  38521. bottom: 89/2199
  38522. }
  38523. },
  38524. hand: {
  38525. height: math.unit(0.96, "feet"),
  38526. name: "Hand",
  38527. image: {
  38528. source: "./media/characters/shiron/hand.svg"
  38529. }
  38530. },
  38531. foot: {
  38532. height: math.unit(1.464, "feet"),
  38533. name: "Foot",
  38534. image: {
  38535. source: "./media/characters/shiron/foot.svg"
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(2, "meters")
  38543. },
  38544. {
  38545. name: "Macro",
  38546. height: math.unit(500, "meters"),
  38547. default: true
  38548. },
  38549. {
  38550. name: "Megamacro",
  38551. height: math.unit(20, "km")
  38552. },
  38553. ]
  38554. ))
  38555. characterMakers.push(() => makeCharacter(
  38556. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38557. {
  38558. front: {
  38559. height: math.unit(6, "feet"),
  38560. name: "Front",
  38561. image: {
  38562. source: "./media/characters/sam/front.svg",
  38563. extra: 849/826,
  38564. bottom: 19/868
  38565. }
  38566. },
  38567. },
  38568. [
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(6, "feet"),
  38572. default: true
  38573. },
  38574. ]
  38575. ))
  38576. characterMakers.push(() => makeCharacter(
  38577. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38578. {
  38579. front: {
  38580. height: math.unit(8 + 4/12, "feet"),
  38581. weight: math.unit(122, "kg"),
  38582. name: "Front",
  38583. image: {
  38584. source: "./media/characters/namori-kurogawa/front.svg",
  38585. extra: 1894/1576,
  38586. bottom: 34/1928
  38587. }
  38588. },
  38589. },
  38590. [
  38591. {
  38592. name: "Normal",
  38593. height: math.unit(8 + 4/12, "feet"),
  38594. default: true
  38595. },
  38596. ]
  38597. ))
  38598. characterMakers.push(() => makeCharacter(
  38599. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38600. {
  38601. front: {
  38602. height: math.unit(9, "feet"),
  38603. weight: math.unit(621, "lb"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/unmru/front.svg",
  38607. extra: 1853/1747,
  38608. bottom: 73/1926
  38609. }
  38610. },
  38611. side: {
  38612. height: math.unit(9, "feet"),
  38613. weight: math.unit(621, "lb"),
  38614. name: "Side",
  38615. image: {
  38616. source: "./media/characters/unmru/side.svg",
  38617. extra: 1781/1671,
  38618. bottom: 127/1908
  38619. }
  38620. },
  38621. back: {
  38622. height: math.unit(9, "feet"),
  38623. weight: math.unit(621, "lb"),
  38624. name: "Back",
  38625. image: {
  38626. source: "./media/characters/unmru/back.svg",
  38627. extra: 1894/1765,
  38628. bottom: 75/1969
  38629. }
  38630. },
  38631. dick: {
  38632. height: math.unit(3, "feet"),
  38633. weight: math.unit(35, "lb"),
  38634. name: "Dick",
  38635. image: {
  38636. source: "./media/characters/unmru/dick.svg"
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(9, "feet")
  38644. },
  38645. {
  38646. name: "Natural",
  38647. height: math.unit(27, "feet"),
  38648. default: true
  38649. },
  38650. {
  38651. name: "Giant",
  38652. height: math.unit(90, "feet")
  38653. },
  38654. {
  38655. name: "Kaiju",
  38656. height: math.unit(270, "feet")
  38657. },
  38658. {
  38659. name: "Macro",
  38660. height: math.unit(900, "feet")
  38661. },
  38662. {
  38663. name: "Macro+",
  38664. height: math.unit(2700, "feet")
  38665. },
  38666. {
  38667. name: "Megamacro",
  38668. height: math.unit(9000, "feet")
  38669. },
  38670. {
  38671. name: "City-Crushing",
  38672. height: math.unit(27000, "feet")
  38673. },
  38674. {
  38675. name: "Mountain-Mashing",
  38676. height: math.unit(90000, "feet")
  38677. },
  38678. {
  38679. name: "Earth-Eclipsing",
  38680. height: math.unit(2.7e8, "feet")
  38681. },
  38682. {
  38683. name: "Sol-Swallowing",
  38684. height: math.unit(9e10, "feet")
  38685. },
  38686. {
  38687. name: "Majoris-Munching",
  38688. height: math.unit(2.7e13, "feet")
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38694. {
  38695. front: {
  38696. height: math.unit(1, "inch"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/squeaks-mouse/front.svg",
  38700. extra: 352/308,
  38701. bottom: 25/377
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Micro",
  38708. height: math.unit(1, "inch"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38715. {
  38716. side: {
  38717. height: math.unit(35, "feet"),
  38718. name: "Side",
  38719. image: {
  38720. source: "./media/characters/sayko/side.svg",
  38721. extra: 1697/1021,
  38722. bottom: 82/1779
  38723. }
  38724. },
  38725. head: {
  38726. height: math.unit(16, "feet"),
  38727. name: "Head",
  38728. image: {
  38729. source: "./media/characters/sayko/head.svg"
  38730. }
  38731. },
  38732. forepaw: {
  38733. height: math.unit(7.85, "feet"),
  38734. name: "Forepaw",
  38735. image: {
  38736. source: "./media/characters/sayko/forepaw.svg"
  38737. }
  38738. },
  38739. hindpaw: {
  38740. height: math.unit(8.8, "feet"),
  38741. name: "Hindpaw",
  38742. image: {
  38743. source: "./media/characters/sayko/hindpaw.svg"
  38744. }
  38745. },
  38746. },
  38747. [
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(35, "feet"),
  38751. default: true
  38752. },
  38753. {
  38754. name: "Colossus",
  38755. height: math.unit(100, "meters")
  38756. },
  38757. {
  38758. name: "\"Small\" Deity",
  38759. height: math.unit(1, "km")
  38760. },
  38761. {
  38762. name: "\"Large\" Deity",
  38763. height: math.unit(15, "km")
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(6, "feet"),
  38772. weight: math.unit(250, "lb"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/mukiro/front.svg",
  38776. extra: 1368/1310,
  38777. bottom: 34/1402
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(6, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(12 + 4/12, "feet"),
  38794. name: "Front",
  38795. image: {
  38796. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38797. extra: 1346/1311,
  38798. bottom: 65/1411
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Base",
  38805. height: math.unit(12 + 4/12, "feet"),
  38806. default: true
  38807. },
  38808. {
  38809. name: "Macro",
  38810. height: math.unit(150, "feet")
  38811. },
  38812. {
  38813. name: "Mega",
  38814. height: math.unit(2, "miles")
  38815. },
  38816. {
  38817. name: "Demi God",
  38818. height: math.unit(4, "AU")
  38819. },
  38820. {
  38821. name: "God Size",
  38822. height: math.unit(1, "universe")
  38823. },
  38824. ]
  38825. ))
  38826. characterMakers.push(() => makeCharacter(
  38827. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38828. {
  38829. front: {
  38830. height: math.unit(3 + 3/12, "feet"),
  38831. weight: math.unit(88, "lb"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/trey/front.svg",
  38835. extra: 1815/1509,
  38836. bottom: 60/1875
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(3 + 3/12, "feet"),
  38844. default: true
  38845. },
  38846. ]
  38847. ))
  38848. characterMakers.push(() => makeCharacter(
  38849. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38850. {
  38851. front: {
  38852. height: math.unit(4, "meters"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/adelonda/front.svg",
  38856. extra: 1077/982,
  38857. bottom: 39/1116
  38858. }
  38859. },
  38860. back: {
  38861. height: math.unit(4, "meters"),
  38862. name: "Back",
  38863. image: {
  38864. source: "./media/characters/adelonda/back.svg",
  38865. extra: 1105/1003,
  38866. bottom: 25/1130
  38867. }
  38868. },
  38869. feral: {
  38870. height: math.unit(40/1.5, "meters"),
  38871. name: "Feral",
  38872. image: {
  38873. source: "./media/characters/adelonda/feral.svg",
  38874. extra: 597/271,
  38875. bottom: 387/984
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(4, "meters"),
  38883. default: true
  38884. },
  38885. ]
  38886. ))
  38887. characterMakers.push(() => makeCharacter(
  38888. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38889. {
  38890. front: {
  38891. height: math.unit(8 + 4/12, "feet"),
  38892. weight: math.unit(670, "lb"),
  38893. name: "Front",
  38894. image: {
  38895. source: "./media/characters/acadiel/front.svg",
  38896. extra: 1901/1595,
  38897. bottom: 142/2043
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(8 + 4/12, "feet"),
  38905. default: true
  38906. },
  38907. {
  38908. name: "Macro",
  38909. height: math.unit(200, "feet")
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(6 + 2/12, "feet"),
  38918. weight: math.unit(185, "lb"),
  38919. name: "Front",
  38920. image: {
  38921. source: "./media/characters/kayne-ein/front.svg",
  38922. extra: 1780/1560,
  38923. bottom: 81/1861
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(6 + 2/12, "feet"),
  38931. default: true
  38932. },
  38933. {
  38934. name: "Transformation Stage",
  38935. height: math.unit(15, "feet")
  38936. },
  38937. {
  38938. name: "Macro",
  38939. height: math.unit(150, "feet")
  38940. },
  38941. {
  38942. name: "Earth's Shadow",
  38943. height: math.unit(6200, "miles")
  38944. },
  38945. {
  38946. name: "Universal Demon",
  38947. height: math.unit(28e9, "parsecs")
  38948. },
  38949. {
  38950. name: "Multiverse God",
  38951. height: math.unit(3, "multiverses")
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38957. {
  38958. front: {
  38959. height: math.unit(5 + 5/12, "feet"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/fawn/front.svg",
  38963. extra: 1873/1731,
  38964. bottom: 95/1968
  38965. }
  38966. },
  38967. back: {
  38968. height: math.unit(5 + 5/12, "feet"),
  38969. name: "Back",
  38970. image: {
  38971. source: "./media/characters/fawn/back.svg",
  38972. extra: 1813/1700,
  38973. bottom: 14/1827
  38974. }
  38975. },
  38976. hoof: {
  38977. height: math.unit(1.45, "feet"),
  38978. name: "Hoof",
  38979. image: {
  38980. source: "./media/characters/fawn/hoof.svg"
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(5 + 5/12, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(2 + 5/12, "feet"),
  38997. name: "Front",
  38998. image: {
  38999. source: "./media/characters/orion/front.svg",
  39000. extra: 1366/1304,
  39001. bottom: 43/1409
  39002. }
  39003. },
  39004. paw: {
  39005. height: math.unit(0.52, "feet"),
  39006. name: "Paw",
  39007. image: {
  39008. source: "./media/characters/orion/paw.svg"
  39009. }
  39010. },
  39011. },
  39012. [
  39013. {
  39014. name: "Normal",
  39015. height: math.unit(2 + 5/12, "feet"),
  39016. default: true
  39017. },
  39018. ]
  39019. ))
  39020. characterMakers.push(() => makeCharacter(
  39021. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39022. {
  39023. front: {
  39024. height: math.unit(5 + 10/12, "feet"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/vera/front.svg",
  39028. extra: 1680/1575,
  39029. bottom: 49/1729
  39030. }
  39031. },
  39032. back: {
  39033. height: math.unit(5 + 10/12, "feet"),
  39034. name: "Back",
  39035. image: {
  39036. source: "./media/characters/vera/back.svg",
  39037. extra: 1700/1588,
  39038. bottom: 18/1718
  39039. }
  39040. },
  39041. arcanine: {
  39042. height: math.unit(6 + 8/12, "feet"),
  39043. name: "Arcanine",
  39044. image: {
  39045. source: "./media/characters/vera/arcanine.svg",
  39046. extra: 1590/1511,
  39047. bottom: 71/1661
  39048. }
  39049. },
  39050. maw: {
  39051. height: math.unit(0.82, "feet"),
  39052. name: "Maw",
  39053. image: {
  39054. source: "./media/characters/vera/maw.svg"
  39055. }
  39056. },
  39057. mawArcanine: {
  39058. height: math.unit(0.97, "feet"),
  39059. name: "Maw (Arcanine)",
  39060. image: {
  39061. source: "./media/characters/vera/maw-arcanine.svg"
  39062. }
  39063. },
  39064. paw: {
  39065. height: math.unit(0.75, "feet"),
  39066. name: "Paw",
  39067. image: {
  39068. source: "./media/characters/vera/paw.svg"
  39069. }
  39070. },
  39071. pawprint: {
  39072. height: math.unit(0.52, "feet"),
  39073. name: "Pawprint",
  39074. image: {
  39075. source: "./media/characters/vera/pawprint.svg"
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(5 + 10/12, "feet"),
  39083. default: true
  39084. },
  39085. {
  39086. name: "Macro",
  39087. height: math.unit(75, "feet")
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39093. {
  39094. front: {
  39095. height: math.unit(4, "feet"),
  39096. weight: math.unit(40, "lb"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/orvan-rabbit/front.svg",
  39100. extra: 1896/1642,
  39101. bottom: 29/1925
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(4, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39115. {
  39116. front: {
  39117. height: math.unit(6, "feet"),
  39118. weight: math.unit(168, "lb"),
  39119. name: "Front",
  39120. image: {
  39121. source: "./media/characters/lisa/front.svg",
  39122. extra: 2065/1867,
  39123. bottom: 46/2111
  39124. }
  39125. },
  39126. back: {
  39127. height: math.unit(6, "feet"),
  39128. weight: math.unit(168, "lb"),
  39129. name: "Back",
  39130. image: {
  39131. source: "./media/characters/lisa/back.svg",
  39132. extra: 1982/1838,
  39133. bottom: 29/2011
  39134. }
  39135. },
  39136. maw: {
  39137. height: math.unit(0.81, "feet"),
  39138. name: "Maw",
  39139. image: {
  39140. source: "./media/characters/lisa/maw.svg"
  39141. }
  39142. },
  39143. paw: {
  39144. height: math.unit(0.9, "feet"),
  39145. name: "Paw",
  39146. image: {
  39147. source: "./media/characters/lisa/paw.svg"
  39148. }
  39149. },
  39150. caribousune: {
  39151. height: math.unit(7 + 2/12, "feet"),
  39152. weight: math.unit(268, "lb"),
  39153. name: "Caribousune",
  39154. image: {
  39155. source: "./media/characters/lisa/caribousune.svg",
  39156. extra: 1843/1633,
  39157. bottom: 29/1872
  39158. }
  39159. },
  39160. frontCaribousune: {
  39161. height: math.unit(7 + 2/12, "feet"),
  39162. weight: math.unit(268, "lb"),
  39163. name: "Front (Caribousune)",
  39164. image: {
  39165. source: "./media/characters/lisa/front-caribousune.svg",
  39166. extra: 1818/1638,
  39167. bottom: 52/1870
  39168. }
  39169. },
  39170. sideCaribousune: {
  39171. height: math.unit(7 + 2/12, "feet"),
  39172. weight: math.unit(268, "lb"),
  39173. name: "Side (Caribousune)",
  39174. image: {
  39175. source: "./media/characters/lisa/side-caribousune.svg",
  39176. extra: 1851/1635,
  39177. bottom: 16/1867
  39178. }
  39179. },
  39180. backCaribousune: {
  39181. height: math.unit(7 + 2/12, "feet"),
  39182. weight: math.unit(268, "lb"),
  39183. name: "Back (Caribousune)",
  39184. image: {
  39185. source: "./media/characters/lisa/back-caribousune.svg",
  39186. extra: 1801/1604,
  39187. bottom: 44/1845
  39188. }
  39189. },
  39190. caribou: {
  39191. height: math.unit(7 + 2/12, "feet"),
  39192. weight: math.unit(268, "lb"),
  39193. name: "Caribou",
  39194. image: {
  39195. source: "./media/characters/lisa/caribou.svg",
  39196. extra: 1843/1633,
  39197. bottom: 29/1872
  39198. }
  39199. },
  39200. frontCaribou: {
  39201. height: math.unit(7 + 2/12, "feet"),
  39202. weight: math.unit(268, "lb"),
  39203. name: "Front (Caribou)",
  39204. image: {
  39205. source: "./media/characters/lisa/front-caribou.svg",
  39206. extra: 1818/1638,
  39207. bottom: 52/1870
  39208. }
  39209. },
  39210. sideCaribou: {
  39211. height: math.unit(7 + 2/12, "feet"),
  39212. weight: math.unit(268, "lb"),
  39213. name: "Side (Caribou)",
  39214. image: {
  39215. source: "./media/characters/lisa/side-caribou.svg",
  39216. extra: 1851/1635,
  39217. bottom: 16/1867
  39218. }
  39219. },
  39220. backCaribou: {
  39221. height: math.unit(7 + 2/12, "feet"),
  39222. weight: math.unit(268, "lb"),
  39223. name: "Back (Caribou)",
  39224. image: {
  39225. source: "./media/characters/lisa/back-caribou.svg",
  39226. extra: 1801/1604,
  39227. bottom: 44/1845
  39228. }
  39229. },
  39230. mawCaribou: {
  39231. height: math.unit(1.45, "feet"),
  39232. name: "Maw (Caribou)",
  39233. image: {
  39234. source: "./media/characters/lisa/maw-caribou.svg"
  39235. }
  39236. },
  39237. mawCaribousune: {
  39238. height: math.unit(1.45, "feet"),
  39239. name: "Maw (Caribousune)",
  39240. image: {
  39241. source: "./media/characters/lisa/maw-caribousune.svg"
  39242. }
  39243. },
  39244. pawCaribousune: {
  39245. height: math.unit(1.61, "feet"),
  39246. name: "Paw (Caribou)",
  39247. image: {
  39248. source: "./media/characters/lisa/paw-caribousune.svg"
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(6, "feet")
  39256. },
  39257. {
  39258. name: "God Size",
  39259. height: math.unit(72, "feet"),
  39260. default: true
  39261. },
  39262. {
  39263. name: "Towering",
  39264. height: math.unit(288, "feet")
  39265. },
  39266. {
  39267. name: "City Size",
  39268. height: math.unit(48384, "feet")
  39269. },
  39270. {
  39271. name: "Continental",
  39272. height: math.unit(4200, "miles")
  39273. },
  39274. {
  39275. name: "Planet Eater",
  39276. height: math.unit(42, "earths")
  39277. },
  39278. {
  39279. name: "Star Swallower",
  39280. height: math.unit(42, "solarradii")
  39281. },
  39282. {
  39283. name: "System Swallower",
  39284. height: math.unit(84000, "AU")
  39285. },
  39286. {
  39287. name: "Galaxy Gobbler",
  39288. height: math.unit(42, "galaxies")
  39289. },
  39290. {
  39291. name: "Universe Devourer",
  39292. height: math.unit(42, "universes")
  39293. },
  39294. {
  39295. name: "Multiverse Muncher",
  39296. height: math.unit(42, "multiverses")
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(36, "feet"),
  39305. name: "Front",
  39306. image: {
  39307. source: "./media/characters/shadow-rat/front.svg",
  39308. extra: 1845/1758,
  39309. bottom: 83/1928
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Macro",
  39316. height: math.unit(36, "feet"),
  39317. default: true
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39323. {
  39324. side: {
  39325. height: math.unit(8, "feet"),
  39326. weight: math.unit(2630, "lb"),
  39327. name: "Side",
  39328. image: {
  39329. source: "./media/characters/torallia/side.svg",
  39330. extra: 2164/2021,
  39331. bottom: 371/2535
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Mortal Interaction",
  39338. height: math.unit(8, "feet")
  39339. },
  39340. {
  39341. name: "Natural",
  39342. height: math.unit(24, "feet"),
  39343. default: true
  39344. },
  39345. {
  39346. name: "Giant",
  39347. height: math.unit(80, "feet")
  39348. },
  39349. {
  39350. name: "Kaiju",
  39351. height: math.unit(240, "feet")
  39352. },
  39353. {
  39354. name: "Macro",
  39355. height: math.unit(800, "feet")
  39356. },
  39357. {
  39358. name: "Macro+",
  39359. height: math.unit(2400, "feet")
  39360. },
  39361. {
  39362. name: "Macro++",
  39363. height: math.unit(8000, "feet")
  39364. },
  39365. {
  39366. name: "City-Crushing",
  39367. height: math.unit(24000, "feet")
  39368. },
  39369. {
  39370. name: "Mountain-Mashing",
  39371. height: math.unit(80000, "feet")
  39372. },
  39373. {
  39374. name: "District Demolisher",
  39375. height: math.unit(240000, "feet")
  39376. },
  39377. {
  39378. name: "Tri-County Terror",
  39379. height: math.unit(800000, "feet")
  39380. },
  39381. {
  39382. name: "State Smasher",
  39383. height: math.unit(2.4e6, "feet")
  39384. },
  39385. {
  39386. name: "Nation Nemesis",
  39387. height: math.unit(8e6, "feet")
  39388. },
  39389. {
  39390. name: "Continent Cracker",
  39391. height: math.unit(2.4e7, "feet")
  39392. },
  39393. {
  39394. name: "Planet-Pillaging",
  39395. height: math.unit(8e7, "feet")
  39396. },
  39397. {
  39398. name: "Earth-Eclipsing",
  39399. height: math.unit(2.4e8, "feet")
  39400. },
  39401. {
  39402. name: "Jovian-Jostling",
  39403. height: math.unit(8e8, "feet")
  39404. },
  39405. {
  39406. name: "Gas Giant Gulper",
  39407. height: math.unit(2.4e9, "feet")
  39408. },
  39409. {
  39410. name: "Astral Annihilator",
  39411. height: math.unit(8e9, "feet")
  39412. },
  39413. {
  39414. name: "Celestial Conqueror",
  39415. height: math.unit(2.4e10, "feet")
  39416. },
  39417. {
  39418. name: "Sol-Swallowing",
  39419. height: math.unit(8e10, "feet")
  39420. },
  39421. {
  39422. name: "Hunter of the Heavens",
  39423. height: math.unit(2.4e13, "feet")
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(6 + 8/12, "feet"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/rebecca-pawlson/front.svg",
  39435. extra: 1737/1596,
  39436. bottom: 107/1844
  39437. }
  39438. },
  39439. back: {
  39440. height: math.unit(6 + 8/12, "feet"),
  39441. name: "Back",
  39442. image: {
  39443. source: "./media/characters/rebecca-pawlson/back.svg",
  39444. extra: 1702/1523,
  39445. bottom: 86/1788
  39446. }
  39447. },
  39448. },
  39449. [
  39450. {
  39451. name: "Normal",
  39452. height: math.unit(6 + 8/12, "feet")
  39453. },
  39454. {
  39455. name: "Mini Macro",
  39456. height: math.unit(10, "feet"),
  39457. default: true
  39458. },
  39459. {
  39460. name: "Macro",
  39461. height: math.unit(100, "feet")
  39462. },
  39463. {
  39464. name: "Mega Macro",
  39465. height: math.unit(2500, "feet")
  39466. },
  39467. {
  39468. name: "Giga Macro",
  39469. height: math.unit(50, "miles")
  39470. },
  39471. ]
  39472. ))
  39473. characterMakers.push(() => makeCharacter(
  39474. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39475. {
  39476. front: {
  39477. height: math.unit(7 + 6/12, "feet"),
  39478. weight: math.unit(600, "lb"),
  39479. name: "Front",
  39480. image: {
  39481. source: "./media/characters/moxie-nova/front.svg",
  39482. extra: 1734/1652,
  39483. bottom: 41/1775
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Normal",
  39490. height: math.unit(7 + 6/12, "feet"),
  39491. default: true
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39497. {
  39498. goat: {
  39499. height: math.unit(4, "feet"),
  39500. weight: math.unit(180, "lb"),
  39501. name: "Goat",
  39502. image: {
  39503. source: "./media/characters/tiffany/goat.svg",
  39504. extra: 1845/1595,
  39505. bottom: 106/1951
  39506. }
  39507. },
  39508. front: {
  39509. height: math.unit(5, "feet"),
  39510. weight: math.unit(150, "lb"),
  39511. name: "Foxcoon",
  39512. image: {
  39513. source: "./media/characters/tiffany/foxcoon.svg",
  39514. extra: 1941/1845,
  39515. bottom: 58/1999
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(5, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(8, "feet"),
  39532. weight: math.unit(300, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/raxinath/front.svg",
  39536. extra: 1407/1309,
  39537. bottom: 39/1446
  39538. }
  39539. },
  39540. back: {
  39541. height: math.unit(8, "feet"),
  39542. weight: math.unit(300, "lb"),
  39543. name: "Back",
  39544. image: {
  39545. source: "./media/characters/raxinath/back.svg",
  39546. extra: 1405/1315,
  39547. bottom: 9/1414
  39548. }
  39549. },
  39550. },
  39551. [
  39552. {
  39553. name: "Speck",
  39554. height: math.unit(0.5, "nm")
  39555. },
  39556. {
  39557. name: "Micro",
  39558. height: math.unit(3, "inches")
  39559. },
  39560. {
  39561. name: "Kobold",
  39562. height: math.unit(3, "feet")
  39563. },
  39564. {
  39565. name: "Normal",
  39566. height: math.unit(8, "feet"),
  39567. default: true
  39568. },
  39569. {
  39570. name: "Giant",
  39571. height: math.unit(50, "feet")
  39572. },
  39573. {
  39574. name: "Macro",
  39575. height: math.unit(1000, "feet")
  39576. },
  39577. {
  39578. name: "Megamacro",
  39579. height: math.unit(1, "mile")
  39580. },
  39581. ]
  39582. ))
  39583. characterMakers.push(() => makeCharacter(
  39584. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39585. {
  39586. front: {
  39587. height: math.unit(10, "feet"),
  39588. weight: math.unit(1442, "lb"),
  39589. name: "Front",
  39590. image: {
  39591. source: "./media/characters/mal-dragon/front.svg",
  39592. extra: 1515/1444,
  39593. bottom: 113/1628
  39594. }
  39595. },
  39596. back: {
  39597. height: math.unit(10, "feet"),
  39598. weight: math.unit(1442, "lb"),
  39599. name: "Back",
  39600. image: {
  39601. source: "./media/characters/mal-dragon/back.svg",
  39602. extra: 1527/1434,
  39603. bottom: 25/1552
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Mortal Interaction",
  39610. height: math.unit(10, "feet"),
  39611. default: true
  39612. },
  39613. {
  39614. name: "Large",
  39615. height: math.unit(30, "feet")
  39616. },
  39617. {
  39618. name: "Kaiju",
  39619. height: math.unit(300, "feet")
  39620. },
  39621. {
  39622. name: "Megamacro",
  39623. height: math.unit(10000, "feet")
  39624. },
  39625. {
  39626. name: "Continent Cracker",
  39627. height: math.unit(30000000, "feet")
  39628. },
  39629. {
  39630. name: "Sol-Swallowing",
  39631. height: math.unit(1e11, "feet")
  39632. },
  39633. {
  39634. name: "Light Universal",
  39635. height: math.unit(5, "universes")
  39636. },
  39637. {
  39638. name: "Universe Atoms",
  39639. height: math.unit(1.829e9, "universes")
  39640. },
  39641. {
  39642. name: "Light Multiversal",
  39643. height: math.unit(5, "multiverses")
  39644. },
  39645. {
  39646. name: "Multiverse Atoms",
  39647. height: math.unit(1.829e9, "multiverses")
  39648. },
  39649. {
  39650. name: "Fabric of Time",
  39651. height: math.unit(1e262, "multiverses")
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(9, "feet"),
  39660. weight: math.unit(1050, "lb"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/tabitha/front.svg",
  39664. extra: 2083/1994,
  39665. bottom: 68/2151
  39666. }
  39667. },
  39668. },
  39669. [
  39670. {
  39671. name: "Baseline",
  39672. height: math.unit(9, "feet"),
  39673. default: true
  39674. },
  39675. {
  39676. name: "Giant",
  39677. height: math.unit(90, "feet")
  39678. },
  39679. {
  39680. name: "Macro",
  39681. height: math.unit(900, "feet")
  39682. },
  39683. {
  39684. name: "Megamacro",
  39685. height: math.unit(9000, "feet")
  39686. },
  39687. {
  39688. name: "City-Crushing",
  39689. height: math.unit(27000, "feet")
  39690. },
  39691. {
  39692. name: "Mountain-Mashing",
  39693. height: math.unit(90000, "feet")
  39694. },
  39695. {
  39696. name: "Nation Nemesis",
  39697. height: math.unit(9e6, "feet")
  39698. },
  39699. {
  39700. name: "Continent Cracker",
  39701. height: math.unit(27e6, "feet")
  39702. },
  39703. {
  39704. name: "Earth-Eclipsing",
  39705. height: math.unit(2.7e8, "feet")
  39706. },
  39707. {
  39708. name: "Gas Giant Gulper",
  39709. height: math.unit(2.7e9, "feet")
  39710. },
  39711. {
  39712. name: "Sol-Swallowing",
  39713. height: math.unit(9e10, "feet")
  39714. },
  39715. {
  39716. name: "Galaxy Gulper",
  39717. height: math.unit(9, "galaxies")
  39718. },
  39719. {
  39720. name: "Cosmos Churner",
  39721. height: math.unit(9, "universes")
  39722. },
  39723. ]
  39724. ))
  39725. characterMakers.push(() => makeCharacter(
  39726. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39727. {
  39728. front: {
  39729. height: math.unit(160, "cm"),
  39730. weight: math.unit(55, "kg"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/tow/front.svg",
  39734. extra: 1751/1722,
  39735. bottom: 74/1825
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Norm",
  39742. height: math.unit(160, "cm")
  39743. },
  39744. {
  39745. name: "Casual",
  39746. height: math.unit(3200, "m"),
  39747. default: true
  39748. },
  39749. {
  39750. name: "Show-Off",
  39751. height: math.unit(160, "km")
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39757. {
  39758. front: {
  39759. height: math.unit(7 + 11/12, "feet"),
  39760. weight: math.unit(342.8, "lb"),
  39761. name: "Front",
  39762. image: {
  39763. source: "./media/characters/vivian-orca-dragon/front.svg",
  39764. extra: 1890/1865,
  39765. bottom: 28/1918
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Micro",
  39772. height: math.unit(5, "inches")
  39773. },
  39774. {
  39775. name: "Normal",
  39776. height: math.unit(7 + 11/12, "feet"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Macro",
  39781. height: math.unit(395 + 7/12, "feet")
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39787. {
  39788. side: {
  39789. height: math.unit(10, "feet"),
  39790. weight: math.unit(1442, "lb"),
  39791. name: "Side",
  39792. image: {
  39793. source: "./media/characters/lotherakon/side.svg",
  39794. extra: 1604/1497,
  39795. bottom: 89/1693
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Mortal Interaction",
  39802. height: math.unit(10, "feet")
  39803. },
  39804. {
  39805. name: "Large",
  39806. height: math.unit(30, "feet"),
  39807. default: true
  39808. },
  39809. {
  39810. name: "Giant",
  39811. height: math.unit(100, "feet")
  39812. },
  39813. {
  39814. name: "Kaiju",
  39815. height: math.unit(300, "feet")
  39816. },
  39817. {
  39818. name: "Macro",
  39819. height: math.unit(1000, "feet")
  39820. },
  39821. {
  39822. name: "Macro+",
  39823. height: math.unit(3000, "feet")
  39824. },
  39825. {
  39826. name: "Megamacro",
  39827. height: math.unit(10000, "feet")
  39828. },
  39829. {
  39830. name: "City-Crushing",
  39831. height: math.unit(30000, "feet")
  39832. },
  39833. {
  39834. name: "Continent Cracker",
  39835. height: math.unit(30e6, "feet")
  39836. },
  39837. {
  39838. name: "Earth Eclipsing",
  39839. height: math.unit(3e8, "feet")
  39840. },
  39841. {
  39842. name: "Gas Giant Gulper",
  39843. height: math.unit(3e9, "feet")
  39844. },
  39845. {
  39846. name: "Sol-Swallowing",
  39847. height: math.unit(1e11, "feet")
  39848. },
  39849. {
  39850. name: "System Swallower",
  39851. height: math.unit(3e14, "feet")
  39852. },
  39853. {
  39854. name: "Galaxy Gulper",
  39855. height: math.unit(10, "galaxies")
  39856. },
  39857. {
  39858. name: "Light Universal",
  39859. height: math.unit(5, "universes")
  39860. },
  39861. {
  39862. name: "Universe Palm",
  39863. height: math.unit(20, "universes")
  39864. },
  39865. {
  39866. name: "Light Multiversal",
  39867. height: math.unit(5, "multiverses")
  39868. },
  39869. {
  39870. name: "Multiverse Palm",
  39871. height: math.unit(20, "multiverses")
  39872. },
  39873. {
  39874. name: "Inferno Incarnate",
  39875. height: math.unit(1e7, "multiverses")
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(8, "feet"),
  39884. weight: math.unit(1200, "lb"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/malithee/front.svg",
  39888. extra: 1675/1640,
  39889. bottom: 162/1837
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Mortal Interaction",
  39896. height: math.unit(8, "feet"),
  39897. default: true
  39898. },
  39899. {
  39900. name: "Large",
  39901. height: math.unit(24, "feet")
  39902. },
  39903. {
  39904. name: "Kaiju",
  39905. height: math.unit(240, "feet")
  39906. },
  39907. {
  39908. name: "Megamacro",
  39909. height: math.unit(8000, "feet")
  39910. },
  39911. {
  39912. name: "Continent Cracker",
  39913. height: math.unit(24e6, "feet")
  39914. },
  39915. {
  39916. name: "Earth-Eclipsing",
  39917. height: math.unit(2.4e8, "feet")
  39918. },
  39919. {
  39920. name: "Sol-Swallowing",
  39921. height: math.unit(8e10, "feet")
  39922. },
  39923. {
  39924. name: "Galaxy Gulper",
  39925. height: math.unit(8, "galaxies")
  39926. },
  39927. {
  39928. name: "Light Universal",
  39929. height: math.unit(4, "universes")
  39930. },
  39931. {
  39932. name: "Universe Atoms",
  39933. height: math.unit(1.829e9, "universes")
  39934. },
  39935. {
  39936. name: "Light Multiversal",
  39937. height: math.unit(4, "multiverses")
  39938. },
  39939. {
  39940. name: "Multiverse Atoms",
  39941. height: math.unit(1.829e9, "multiverses")
  39942. },
  39943. {
  39944. name: "Nigh-Omnipresence",
  39945. height: math.unit(8e261, "multiverses")
  39946. },
  39947. ]
  39948. ))
  39949. characterMakers.push(() => makeCharacter(
  39950. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39951. {
  39952. front: {
  39953. height: math.unit(10, "feet"),
  39954. weight: math.unit(1500, "lb"),
  39955. name: "Front",
  39956. image: {
  39957. source: "./media/characters/miles-thestia/front.svg",
  39958. extra: 1812/1727,
  39959. bottom: 86/1898
  39960. }
  39961. },
  39962. back: {
  39963. height: math.unit(10, "feet"),
  39964. weight: math.unit(1500, "lb"),
  39965. name: "Back",
  39966. image: {
  39967. source: "./media/characters/miles-thestia/back.svg",
  39968. extra: 1799/1690,
  39969. bottom: 47/1846
  39970. }
  39971. },
  39972. frontNsfw: {
  39973. height: math.unit(10, "feet"),
  39974. weight: math.unit(1500, "lb"),
  39975. name: "Front (NSFW)",
  39976. image: {
  39977. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39978. extra: 1812/1727,
  39979. bottom: 86/1898
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Mini-Macro",
  39986. height: math.unit(10, "feet"),
  39987. default: true
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(25, "feet"),
  39996. name: "Front",
  39997. image: {
  39998. source: "./media/characters/titan-s-wulf/front.svg",
  39999. extra: 1560/1484,
  40000. bottom: 76/1636
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Smallest",
  40007. height: math.unit(25, "feet"),
  40008. default: true
  40009. },
  40010. {
  40011. name: "Normal",
  40012. height: math.unit(200, "feet")
  40013. },
  40014. {
  40015. name: "Macro",
  40016. height: math.unit(200000, "feet")
  40017. },
  40018. {
  40019. name: "Multiversal Original",
  40020. height: math.unit(10000, "multiverses")
  40021. },
  40022. ]
  40023. ))
  40024. characterMakers.push(() => makeCharacter(
  40025. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40026. {
  40027. front: {
  40028. height: math.unit(8, "feet"),
  40029. weight: math.unit(553, "lb"),
  40030. name: "Front",
  40031. image: {
  40032. source: "./media/characters/tawendeh/front.svg",
  40033. extra: 2365/2268,
  40034. bottom: 83/2448
  40035. }
  40036. },
  40037. frontClothed: {
  40038. height: math.unit(8, "feet"),
  40039. weight: math.unit(553, "lb"),
  40040. name: "Front (Clothed)",
  40041. image: {
  40042. source: "./media/characters/tawendeh/front-clothed.svg",
  40043. extra: 2365/2268,
  40044. bottom: 83/2448
  40045. }
  40046. },
  40047. back: {
  40048. height: math.unit(8, "feet"),
  40049. weight: math.unit(553, "lb"),
  40050. name: "Back",
  40051. image: {
  40052. source: "./media/characters/tawendeh/back.svg",
  40053. extra: 2397/2294,
  40054. bottom: 42/2439
  40055. }
  40056. },
  40057. },
  40058. [
  40059. {
  40060. name: "Mortal Interaction",
  40061. height: math.unit(8, "feet"),
  40062. default: true
  40063. },
  40064. {
  40065. name: "Giant",
  40066. height: math.unit(80, "feet")
  40067. },
  40068. {
  40069. name: "Macro",
  40070. height: math.unit(800, "feet")
  40071. },
  40072. {
  40073. name: "Megamacro",
  40074. height: math.unit(8000, "feet")
  40075. },
  40076. {
  40077. name: "City-Crushing",
  40078. height: math.unit(24000, "feet")
  40079. },
  40080. {
  40081. name: "Mountain-Mashing",
  40082. height: math.unit(80000, "feet")
  40083. },
  40084. {
  40085. name: "Nation Nemesis",
  40086. height: math.unit(8e6, "feet")
  40087. },
  40088. {
  40089. name: "Continent Cracker",
  40090. height: math.unit(24e6, "feet")
  40091. },
  40092. {
  40093. name: "Earth-Eclipsing",
  40094. height: math.unit(2.4e8, "feet")
  40095. },
  40096. {
  40097. name: "Gas Giant Gulper",
  40098. height: math.unit(2.4e9, "feet")
  40099. },
  40100. {
  40101. name: "Sol-Swallowing",
  40102. height: math.unit(8e10, "feet")
  40103. },
  40104. {
  40105. name: "Galaxy Gulper",
  40106. height: math.unit(8, "galaxies")
  40107. },
  40108. {
  40109. name: "Cosmos Churner",
  40110. height: math.unit(8, "universes")
  40111. },
  40112. {
  40113. name: "Omnipotent Otter",
  40114. height: math.unit(80, "universes")
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(2.6, "meters"),
  40123. weight: math.unit(900, "kg"),
  40124. name: "Front",
  40125. image: {
  40126. source: "./media/characters/neesha/front.svg",
  40127. extra: 1803/1653,
  40128. bottom: 128/1931
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Normal",
  40135. height: math.unit(2.6, "meters"),
  40136. default: true
  40137. },
  40138. {
  40139. name: "Macro",
  40140. height: math.unit(50, "meters")
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(5, "feet"),
  40149. weight: math.unit(185, "lb"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/kyera/front.svg",
  40153. extra: 1875/1790,
  40154. bottom: 96/1971
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Normal",
  40161. height: math.unit(5, "feet"),
  40162. default: true
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40168. {
  40169. front: {
  40170. height: math.unit(7 + 6/12, "feet"),
  40171. weight: math.unit(540, "lb"),
  40172. name: "Front",
  40173. image: {
  40174. source: "./media/characters/yuko/front.svg",
  40175. extra: 1282/1222,
  40176. bottom: 101/1383
  40177. }
  40178. },
  40179. frontClothed: {
  40180. height: math.unit(7 + 6/12, "feet"),
  40181. weight: math.unit(540, "lb"),
  40182. name: "Front (Clothed)",
  40183. image: {
  40184. source: "./media/characters/yuko/front-clothed.svg",
  40185. extra: 1282/1222,
  40186. bottom: 101/1383
  40187. }
  40188. },
  40189. },
  40190. [
  40191. {
  40192. name: "Normal",
  40193. height: math.unit(7 + 6/12, "feet"),
  40194. default: true
  40195. },
  40196. {
  40197. name: "Macro",
  40198. height: math.unit(26 + 9/12, "feet")
  40199. },
  40200. {
  40201. name: "Megamacro",
  40202. height: math.unit(300, "feet")
  40203. },
  40204. {
  40205. name: "Gigamacro",
  40206. height: math.unit(5000, "feet")
  40207. },
  40208. {
  40209. name: "Planetary",
  40210. height: math.unit(10000, "miles")
  40211. },
  40212. ]
  40213. ))
  40214. characterMakers.push(() => makeCharacter(
  40215. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40216. {
  40217. front: {
  40218. height: math.unit(8 + 2/12, "feet"),
  40219. weight: math.unit(600, "lb"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/deam-nitrel/front.svg",
  40223. extra: 1308/1234,
  40224. bottom: 125/1433
  40225. }
  40226. },
  40227. },
  40228. [
  40229. {
  40230. name: "Normal",
  40231. height: math.unit(8 + 2/12, "feet"),
  40232. default: true
  40233. },
  40234. ]
  40235. ))
  40236. characterMakers.push(() => makeCharacter(
  40237. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40238. {
  40239. front: {
  40240. height: math.unit(6.1, "feet"),
  40241. weight: math.unit(180, "lb"),
  40242. name: "Front",
  40243. image: {
  40244. source: "./media/characters/skyress/front.svg",
  40245. extra: 1045/915,
  40246. bottom: 28/1073
  40247. }
  40248. },
  40249. maw: {
  40250. height: math.unit(1, "feet"),
  40251. name: "Maw",
  40252. image: {
  40253. source: "./media/characters/skyress/maw.svg"
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(6.1, "feet"),
  40261. default: true
  40262. },
  40263. {
  40264. name: "Macro",
  40265. height: math.unit(200, "feet")
  40266. },
  40267. ]
  40268. ))
  40269. characterMakers.push(() => makeCharacter(
  40270. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40271. {
  40272. front: {
  40273. height: math.unit(4 + 2/12, "feet"),
  40274. weight: math.unit(40, "kg"),
  40275. name: "Front",
  40276. image: {
  40277. source: "./media/characters/amethyst-jones/front.svg",
  40278. extra: 1220/1150,
  40279. bottom: 101/1321
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(4 + 2/12, "feet"),
  40287. default: true
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(1.7, "m"),
  40296. weight: math.unit(135, "lb"),
  40297. name: "Front",
  40298. image: {
  40299. source: "./media/characters/jade/front.svg",
  40300. extra: 1818/1767,
  40301. bottom: 32/1850
  40302. }
  40303. },
  40304. back: {
  40305. height: math.unit(1.7, "m"),
  40306. weight: math.unit(135, "lb"),
  40307. name: "Back",
  40308. image: {
  40309. source: "./media/characters/jade/back.svg",
  40310. extra: 1869/1809,
  40311. bottom: 35/1904
  40312. }
  40313. },
  40314. hand: {
  40315. height: math.unit(0.24, "m"),
  40316. name: "Hand",
  40317. image: {
  40318. source: "./media/characters/jade/hand.svg"
  40319. }
  40320. },
  40321. foot: {
  40322. height: math.unit(0.263, "m"),
  40323. name: "Foot",
  40324. image: {
  40325. source: "./media/characters/jade/foot.svg"
  40326. }
  40327. },
  40328. dick: {
  40329. height: math.unit(0.47, "m"),
  40330. name: "Dick",
  40331. image: {
  40332. source: "./media/characters/jade/dick.svg"
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Micro",
  40339. height: math.unit(22, "cm")
  40340. },
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(1.7, "m"),
  40344. default: true
  40345. },
  40346. {
  40347. name: "Macro",
  40348. height: math.unit(152, "m")
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40354. {
  40355. front: {
  40356. height: math.unit(100, "miles"),
  40357. weight: math.unit(20000, "tons"),
  40358. name: "Front",
  40359. image: {
  40360. source: "./media/characters/cookie/front.svg",
  40361. extra: 1125/1070,
  40362. bottom: 30/1155
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Big",
  40369. height: math.unit(50, "feet")
  40370. },
  40371. {
  40372. name: "Macro",
  40373. height: math.unit(100, "miles"),
  40374. default: true
  40375. },
  40376. {
  40377. name: "Megamacro",
  40378. height: math.unit(90000, "miles")
  40379. },
  40380. ]
  40381. ))
  40382. characterMakers.push(() => makeCharacter(
  40383. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40384. {
  40385. front: {
  40386. height: math.unit(6, "feet"),
  40387. weight: math.unit(145, "lb"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/farzian/front.svg",
  40391. extra: 1902/1693,
  40392. bottom: 108/2010
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Macro",
  40399. height: math.unit(500, "feet"),
  40400. default: true
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(3 + 6/12, "feet"),
  40409. weight: math.unit(50, "lb"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/kimberly-tilson/front.svg",
  40413. extra: 1400/1322,
  40414. bottom: 36/1436
  40415. }
  40416. },
  40417. back: {
  40418. height: math.unit(3 + 6/12, "feet"),
  40419. weight: math.unit(50, "lb"),
  40420. name: "Back",
  40421. image: {
  40422. source: "./media/characters/kimberly-tilson/back.svg",
  40423. extra: 1370/1307,
  40424. bottom: 20/1390
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(3 + 6/12, "feet"),
  40432. default: true
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40438. {
  40439. front: {
  40440. height: math.unit(1148, "feet"),
  40441. weight: math.unit(34057, "lb"),
  40442. name: "Front",
  40443. image: {
  40444. source: "./media/characters/harthos/front.svg",
  40445. extra: 1391/1339,
  40446. bottom: 13/1404
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Macro",
  40453. height: math.unit(1148, "feet"),
  40454. default: true
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(15, "feet"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/hypatia/front.svg",
  40466. extra: 1653/1591,
  40467. bottom: 79/1732
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Normal",
  40474. height: math.unit(15, "feet")
  40475. },
  40476. {
  40477. name: "Small",
  40478. height: math.unit(300, "feet")
  40479. },
  40480. {
  40481. name: "Macro",
  40482. height: math.unit(2500, "feet"),
  40483. default: true
  40484. },
  40485. {
  40486. name: "Mega Macro",
  40487. height: math.unit(1500, "miles")
  40488. },
  40489. {
  40490. name: "Giga Macro",
  40491. height: math.unit(1.5e6, "miles")
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40497. {
  40498. front: {
  40499. height: math.unit(6, "feet"),
  40500. weight: math.unit(200, "lb"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/wulver/front.svg",
  40504. extra: 1724/1632,
  40505. bottom: 130/1854
  40506. }
  40507. },
  40508. frontNsfw: {
  40509. height: math.unit(6, "feet"),
  40510. weight: math.unit(200, "lb"),
  40511. name: "Front (NSFW)",
  40512. image: {
  40513. source: "./media/characters/wulver/front-nsfw.svg",
  40514. extra: 1724/1632,
  40515. bottom: 130/1854
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Human-Sized",
  40522. height: math.unit(6, "feet")
  40523. },
  40524. {
  40525. name: "Normal",
  40526. height: math.unit(4, "meters"),
  40527. default: true
  40528. },
  40529. {
  40530. name: "Large",
  40531. height: math.unit(6, "m")
  40532. },
  40533. ]
  40534. ))
  40535. characterMakers.push(() => makeCharacter(
  40536. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40537. {
  40538. front: {
  40539. height: math.unit(7, "feet"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/maru/front.svg",
  40543. extra: 1595/1570,
  40544. bottom: 0/1595
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Normal",
  40551. height: math.unit(7, "feet"),
  40552. default: true
  40553. },
  40554. {
  40555. name: "Macro",
  40556. height: math.unit(700, "feet")
  40557. },
  40558. {
  40559. name: "Mega Macro",
  40560. height: math.unit(25, "miles")
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(6, "feet"),
  40569. weight: math.unit(170, "lb"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/xenon/front.svg",
  40573. extra: 1376/1305,
  40574. bottom: 56/1432
  40575. }
  40576. },
  40577. back: {
  40578. height: math.unit(6, "feet"),
  40579. weight: math.unit(170, "lb"),
  40580. name: "Back",
  40581. image: {
  40582. source: "./media/characters/xenon/back.svg",
  40583. extra: 1328/1259,
  40584. bottom: 95/1423
  40585. }
  40586. },
  40587. maw: {
  40588. height: math.unit(0.52, "feet"),
  40589. name: "Maw",
  40590. image: {
  40591. source: "./media/characters/xenon/maw.svg"
  40592. }
  40593. },
  40594. hand: {
  40595. height: math.unit(0.82, "feet"),
  40596. name: "Hand",
  40597. image: {
  40598. source: "./media/characters/xenon/hand.svg"
  40599. }
  40600. },
  40601. foot: {
  40602. height: math.unit(1.13, "feet"),
  40603. name: "Foot",
  40604. image: {
  40605. source: "./media/characters/xenon/foot.svg"
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Micro",
  40612. height: math.unit(0.8, "inches")
  40613. },
  40614. {
  40615. name: "Normal",
  40616. height: math.unit(6, "feet")
  40617. },
  40618. {
  40619. name: "Macro",
  40620. height: math.unit(50, "feet"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Macro+",
  40625. height: math.unit(250, "feet")
  40626. },
  40627. {
  40628. name: "Megamacro",
  40629. height: math.unit(1500, "feet")
  40630. },
  40631. ]
  40632. ))
  40633. characterMakers.push(() => makeCharacter(
  40634. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40635. {
  40636. front: {
  40637. height: math.unit(7 + 5/12, "feet"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/zane/front.svg",
  40641. extra: 1260/1203,
  40642. bottom: 94/1354
  40643. }
  40644. },
  40645. back: {
  40646. height: math.unit(5.05, "feet"),
  40647. name: "Back",
  40648. image: {
  40649. source: "./media/characters/zane/back.svg",
  40650. extra: 893/829,
  40651. bottom: 30/923
  40652. }
  40653. },
  40654. werewolf: {
  40655. height: math.unit(11, "feet"),
  40656. name: "Werewolf",
  40657. image: {
  40658. source: "./media/characters/zane/werewolf.svg",
  40659. extra: 1383/1323,
  40660. bottom: 89/1472
  40661. }
  40662. },
  40663. foot: {
  40664. height: math.unit(1.46, "feet"),
  40665. name: "Foot",
  40666. image: {
  40667. source: "./media/characters/zane/foot.svg"
  40668. }
  40669. },
  40670. footFront: {
  40671. height: math.unit(0.784, "feet"),
  40672. name: "Foot (Front)",
  40673. image: {
  40674. source: "./media/characters/zane/foot-front.svg"
  40675. }
  40676. },
  40677. dick: {
  40678. height: math.unit(1.95, "feet"),
  40679. name: "Dick",
  40680. image: {
  40681. source: "./media/characters/zane/dick.svg"
  40682. }
  40683. },
  40684. dickWerewolf: {
  40685. height: math.unit(3.77, "feet"),
  40686. name: "Dick (Werewolf)",
  40687. image: {
  40688. source: "./media/characters/zane/dick.svg"
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Normal",
  40695. height: math.unit(7 + 5/12, "feet"),
  40696. default: true
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(6 + 2/12, "feet"),
  40705. weight: math.unit(284, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/benni-desparque/front.svg",
  40709. extra: 1353/1126,
  40710. bottom: 69/1422
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Civilian",
  40717. height: math.unit(6 + 2/12, "feet")
  40718. },
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(98, "feet"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Kaiju Fighter",
  40726. height: math.unit(268, "feet")
  40727. },
  40728. ]
  40729. ))
  40730. characterMakers.push(() => makeCharacter(
  40731. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40732. {
  40733. front: {
  40734. height: math.unit(5, "feet"),
  40735. weight: math.unit(105, "lb"),
  40736. name: "Front",
  40737. image: {
  40738. source: "./media/characters/maxine/front.svg",
  40739. extra: 1386/1250,
  40740. bottom: 71/1457
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(5, "feet"),
  40748. default: true
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(11 + 7/12, "feet"),
  40757. weight: math.unit(9576, "lb"),
  40758. name: "Front",
  40759. image: {
  40760. source: "./media/characters/scaly/front.svg",
  40761. extra: 888/867,
  40762. bottom: 36/924
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Normal",
  40769. height: math.unit(11 + 7/12, "feet"),
  40770. default: true
  40771. },
  40772. ]
  40773. ))
  40774. characterMakers.push(() => makeCharacter(
  40775. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40776. {
  40777. front: {
  40778. height: math.unit(6 + 3/12, "feet"),
  40779. name: "Front",
  40780. image: {
  40781. source: "./media/characters/saelria/front.svg",
  40782. extra: 1243/1138,
  40783. bottom: 46/1289
  40784. }
  40785. },
  40786. },
  40787. [
  40788. {
  40789. name: "Micro",
  40790. height: math.unit(6, "inches"),
  40791. },
  40792. {
  40793. name: "Normal",
  40794. height: math.unit(6 + 3/12, "feet"),
  40795. default: true
  40796. },
  40797. {
  40798. name: "Macro",
  40799. height: math.unit(25, "feet")
  40800. },
  40801. ]
  40802. ))
  40803. characterMakers.push(() => makeCharacter(
  40804. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40805. {
  40806. front: {
  40807. height: math.unit(80, "meters"),
  40808. weight: math.unit(7000, "tonnes"),
  40809. name: "Front",
  40810. image: {
  40811. source: "./media/characters/tef/front.svg",
  40812. extra: 2036/1991,
  40813. bottom: 54/2090
  40814. }
  40815. },
  40816. back: {
  40817. height: math.unit(80, "meters"),
  40818. weight: math.unit(7000, "tonnes"),
  40819. name: "Back",
  40820. image: {
  40821. source: "./media/characters/tef/back.svg",
  40822. extra: 2036/1991,
  40823. bottom: 54/2090
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Macro",
  40830. height: math.unit(80, "meters"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(13, "feet"),
  40840. weight: math.unit(6, "tons"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/rover/front.svg",
  40844. extra: 1233/1156,
  40845. bottom: 50/1283
  40846. }
  40847. },
  40848. back: {
  40849. height: math.unit(13, "feet"),
  40850. weight: math.unit(6, "tons"),
  40851. name: "Back",
  40852. image: {
  40853. source: "./media/characters/rover/back.svg",
  40854. extra: 1327/1258,
  40855. bottom: 39/1366
  40856. }
  40857. },
  40858. },
  40859. [
  40860. {
  40861. name: "Normal",
  40862. height: math.unit(13, "feet"),
  40863. default: true
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(1300, "feet")
  40868. },
  40869. {
  40870. name: "Megamacro",
  40871. height: math.unit(1300, "miles")
  40872. },
  40873. {
  40874. name: "Gigamacro",
  40875. height: math.unit(1300000, "miles")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(6, "feet"),
  40884. weight: math.unit(150, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/ariz/front.svg",
  40888. extra: 1401/1346,
  40889. bottom: 5/1406
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(10, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(6, "feet"),
  40906. weight: math.unit(140, "lb"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/sigrun/front.svg",
  40910. extra: 1418/1359,
  40911. bottom: 27/1445
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(35, "feet"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(6, "feet"),
  40928. weight: math.unit(150, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/numin/front.svg",
  40932. extra: 1433/1388,
  40933. bottom: 12/1445
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Macro",
  40940. height: math.unit(21.5, "km"),
  40941. default: true
  40942. },
  40943. ]
  40944. ))
  40945. characterMakers.push(() => makeCharacter(
  40946. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40947. {
  40948. front: {
  40949. height: math.unit(6, "feet"),
  40950. weight: math.unit(463, "lb"),
  40951. name: "Front",
  40952. image: {
  40953. source: "./media/characters/melwa/front.svg",
  40954. extra: 1307/1248,
  40955. bottom: 93/1400
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Macro",
  40962. height: math.unit(50, "meters"),
  40963. default: true
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(325, "feet"),
  40972. name: "Front",
  40973. image: {
  40974. source: "./media/characters/zorkaiju/front.svg",
  40975. extra: 1955/1814,
  40976. bottom: 40/1995
  40977. }
  40978. },
  40979. frontExtended: {
  40980. height: math.unit(325, "feet"),
  40981. name: "Front (Extended)",
  40982. image: {
  40983. source: "./media/characters/zorkaiju/front-extended.svg",
  40984. extra: 1955/1814,
  40985. bottom: 40/1995
  40986. }
  40987. },
  40988. side: {
  40989. height: math.unit(325, "feet"),
  40990. name: "Side",
  40991. image: {
  40992. source: "./media/characters/zorkaiju/side.svg",
  40993. extra: 1495/1396,
  40994. bottom: 17/1512
  40995. }
  40996. },
  40997. sideExtended: {
  40998. height: math.unit(325, "feet"),
  40999. name: "Side (Extended)",
  41000. image: {
  41001. source: "./media/characters/zorkaiju/side-extended.svg",
  41002. extra: 1495/1396,
  41003. bottom: 17/1512
  41004. }
  41005. },
  41006. back: {
  41007. height: math.unit(325, "feet"),
  41008. name: "Back",
  41009. image: {
  41010. source: "./media/characters/zorkaiju/back.svg",
  41011. extra: 1959/1821,
  41012. bottom: 31/1990
  41013. }
  41014. },
  41015. backExtended: {
  41016. height: math.unit(325, "feet"),
  41017. name: "Back (Extended)",
  41018. image: {
  41019. source: "./media/characters/zorkaiju/back-extended.svg",
  41020. extra: 1959/1821,
  41021. bottom: 31/1990
  41022. }
  41023. },
  41024. hand: {
  41025. height: math.unit(58.4, "feet"),
  41026. name: "Hand",
  41027. image: {
  41028. source: "./media/characters/zorkaiju/hand.svg"
  41029. }
  41030. },
  41031. handExtended: {
  41032. height: math.unit(61.4, "feet"),
  41033. name: "Hand (Extended)",
  41034. image: {
  41035. source: "./media/characters/zorkaiju/hand-extended.svg"
  41036. }
  41037. },
  41038. foot: {
  41039. height: math.unit(95, "feet"),
  41040. name: "Foot",
  41041. image: {
  41042. source: "./media/characters/zorkaiju/foot.svg"
  41043. }
  41044. },
  41045. leftArm: {
  41046. height: math.unit(59, "feet"),
  41047. name: "Left Arm",
  41048. image: {
  41049. source: "./media/characters/zorkaiju/left-arm.svg"
  41050. }
  41051. },
  41052. rightArm: {
  41053. height: math.unit(59, "feet"),
  41054. name: "Right Arm",
  41055. image: {
  41056. source: "./media/characters/zorkaiju/right-arm.svg"
  41057. }
  41058. },
  41059. tail: {
  41060. height: math.unit(104, "feet"),
  41061. name: "Tail",
  41062. image: {
  41063. source: "./media/characters/zorkaiju/tail.svg"
  41064. }
  41065. },
  41066. tailExtended: {
  41067. height: math.unit(104, "feet"),
  41068. name: "Tail (Extended)",
  41069. image: {
  41070. source: "./media/characters/zorkaiju/tail-extended.svg"
  41071. }
  41072. },
  41073. tailBottom: {
  41074. height: math.unit(104, "feet"),
  41075. name: "Tail Bottom",
  41076. image: {
  41077. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41078. }
  41079. },
  41080. crystal: {
  41081. height: math.unit(27.54, "feet"),
  41082. name: "Crystal",
  41083. image: {
  41084. source: "./media/characters/zorkaiju/crystal.svg"
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Kaiju",
  41091. height: math.unit(325, "feet"),
  41092. default: true
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(6 + 1/12, "feet"),
  41101. weight: math.unit(115, "lb"),
  41102. name: "Front",
  41103. image: {
  41104. source: "./media/characters/bailey-belfry/front.svg",
  41105. extra: 1240/1121,
  41106. bottom: 101/1341
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(6 + 1/12, "feet"),
  41114. default: true
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41120. {
  41121. side: {
  41122. height: math.unit(4, "meters"),
  41123. weight: math.unit(250, "kg"),
  41124. name: "Side",
  41125. image: {
  41126. source: "./media/characters/blacky/side.svg",
  41127. extra: 1027/919,
  41128. bottom: 43/1070
  41129. }
  41130. },
  41131. maw: {
  41132. height: math.unit(1, "meters"),
  41133. name: "Maw",
  41134. image: {
  41135. source: "./media/characters/blacky/maw.svg"
  41136. }
  41137. },
  41138. paw: {
  41139. height: math.unit(1, "meters"),
  41140. name: "Paw",
  41141. image: {
  41142. source: "./media/characters/blacky/paw.svg"
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(4, "meters"),
  41150. default: true
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(170, "cm"),
  41159. weight: math.unit(66, "kg"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/thux-ei/front.svg",
  41163. extra: 1109/1011,
  41164. bottom: 8/1117
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Normal",
  41171. height: math.unit(170, "cm"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41178. {
  41179. front: {
  41180. height: math.unit(5, "feet"),
  41181. weight: math.unit(120, "lb"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/roxanne-voltaire/front.svg",
  41185. extra: 1901/1779,
  41186. bottom: 53/1954
  41187. }
  41188. },
  41189. },
  41190. [
  41191. {
  41192. name: "Normal",
  41193. height: math.unit(5, "feet"),
  41194. default: true
  41195. },
  41196. {
  41197. name: "Giant",
  41198. height: math.unit(50, "feet")
  41199. },
  41200. {
  41201. name: "Titan",
  41202. height: math.unit(500, "feet")
  41203. },
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(5000, "feet")
  41207. },
  41208. {
  41209. name: "Megamacro",
  41210. height: math.unit(50000, "feet")
  41211. },
  41212. {
  41213. name: "Gigamacro",
  41214. height: math.unit(500000, "feet")
  41215. },
  41216. {
  41217. name: "Teramacro",
  41218. height: math.unit(5e6, "feet")
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(6 + 2/12, "feet"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/squeaks/front.svg",
  41230. extra: 1823/1768,
  41231. bottom: 138/1961
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Micro",
  41238. height: math.unit(0.5, "inches")
  41239. },
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(6 + 2/12, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Macro",
  41247. height: math.unit(600, "feet")
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41253. {
  41254. front: {
  41255. height: math.unit(1.72, "meters"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/archinger/front.svg",
  41259. extra: 1861/1675,
  41260. bottom: 125/1986
  41261. }
  41262. },
  41263. back: {
  41264. height: math.unit(1.72, "meters"),
  41265. name: "Back",
  41266. image: {
  41267. source: "./media/characters/archinger/back.svg",
  41268. extra: 1844/1701,
  41269. bottom: 104/1948
  41270. }
  41271. },
  41272. cock: {
  41273. height: math.unit(0.59, "feet"),
  41274. name: "Cock",
  41275. image: {
  41276. source: "./media/characters/archinger/cock.svg"
  41277. }
  41278. },
  41279. },
  41280. [
  41281. {
  41282. name: "Normal",
  41283. height: math.unit(1.72, "meters"),
  41284. default: true
  41285. },
  41286. {
  41287. name: "Macro",
  41288. height: math.unit(84, "meters")
  41289. },
  41290. {
  41291. name: "Macro+",
  41292. height: math.unit(112, "meters")
  41293. },
  41294. {
  41295. name: "Macro++",
  41296. height: math.unit(960, "meters")
  41297. },
  41298. {
  41299. name: "Macro+++",
  41300. height: math.unit(4, "km")
  41301. },
  41302. {
  41303. name: "Macro++++",
  41304. height: math.unit(48, "km")
  41305. },
  41306. {
  41307. name: "Macro+++++",
  41308. height: math.unit(4500, "km")
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41314. {
  41315. front: {
  41316. height: math.unit(5 + 5/12, "feet"),
  41317. name: "Front",
  41318. image: {
  41319. source: "./media/characters/alsnapz/front.svg",
  41320. extra: 1157/1065,
  41321. bottom: 42/1199
  41322. }
  41323. },
  41324. },
  41325. [
  41326. {
  41327. name: "Normal",
  41328. height: math.unit(5 + 5/12, "feet"),
  41329. default: true
  41330. },
  41331. ]
  41332. ))
  41333. characterMakers.push(() => makeCharacter(
  41334. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41335. {
  41336. side: {
  41337. height: math.unit(3.2, "earths"),
  41338. name: "Side",
  41339. image: {
  41340. source: "./media/characters/mag/side.svg",
  41341. extra: 1331/1008,
  41342. bottom: 52/1383
  41343. }
  41344. },
  41345. wing: {
  41346. height: math.unit(1.94, "earths"),
  41347. name: "Wing",
  41348. image: {
  41349. source: "./media/characters/mag/wing.svg"
  41350. }
  41351. },
  41352. dick: {
  41353. height: math.unit(1.8, "earths"),
  41354. name: "Dick",
  41355. image: {
  41356. source: "./media/characters/mag/dick.svg"
  41357. }
  41358. },
  41359. ass: {
  41360. height: math.unit(1.33, "earths"),
  41361. name: "Ass",
  41362. image: {
  41363. source: "./media/characters/mag/ass.svg"
  41364. }
  41365. },
  41366. head: {
  41367. height: math.unit(1.1, "earths"),
  41368. name: "Head",
  41369. image: {
  41370. source: "./media/characters/mag/head.svg"
  41371. }
  41372. },
  41373. maw: {
  41374. height: math.unit(1.62, "earths"),
  41375. name: "Maw",
  41376. image: {
  41377. source: "./media/characters/mag/maw.svg"
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Small",
  41384. height: math.unit(162, "feet")
  41385. },
  41386. {
  41387. name: "Normal",
  41388. height: math.unit(3.2, "earths"),
  41389. default: true
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(512, "feet"),
  41398. weight: math.unit(63509, "tonnes"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/vorrel-harroc/front.svg",
  41402. extra: 1075/1063,
  41403. bottom: 62/1137
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Normal",
  41410. height: math.unit(10, "feet")
  41411. },
  41412. {
  41413. name: "Macro",
  41414. height: math.unit(512, "feet"),
  41415. default: true
  41416. },
  41417. {
  41418. name: "Megamacro",
  41419. height: math.unit(256, "miles")
  41420. },
  41421. {
  41422. name: "Gigamacro",
  41423. height: math.unit(4096, "miles")
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41429. {
  41430. side: {
  41431. height: math.unit(50, "feet"),
  41432. name: "Side",
  41433. image: {
  41434. source: "./media/characters/froimar/side.svg",
  41435. extra: 855/638,
  41436. bottom: 99/954
  41437. }
  41438. },
  41439. },
  41440. [
  41441. {
  41442. name: "Macro",
  41443. height: math.unit(50, "feet"),
  41444. default: true
  41445. },
  41446. ]
  41447. ))
  41448. characterMakers.push(() => makeCharacter(
  41449. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41450. {
  41451. front: {
  41452. height: math.unit(210, "miles"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/timothy/front.svg",
  41456. extra: 1007/943,
  41457. bottom: 62/1069
  41458. }
  41459. },
  41460. frontSkirt: {
  41461. height: math.unit(210, "miles"),
  41462. name: "Front (Skirt)",
  41463. image: {
  41464. source: "./media/characters/timothy/front-skirt.svg",
  41465. extra: 1007/943,
  41466. bottom: 62/1069
  41467. }
  41468. },
  41469. frontCoat: {
  41470. height: math.unit(210, "miles"),
  41471. name: "Front (Coat)",
  41472. image: {
  41473. source: "./media/characters/timothy/front-coat.svg",
  41474. extra: 1007/943,
  41475. bottom: 62/1069
  41476. }
  41477. },
  41478. },
  41479. [
  41480. {
  41481. name: "Macro",
  41482. height: math.unit(210, "miles"),
  41483. default: true
  41484. },
  41485. {
  41486. name: "Megamacro",
  41487. height: math.unit(210000, "miles")
  41488. },
  41489. ]
  41490. ))
  41491. characterMakers.push(() => makeCharacter(
  41492. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41493. {
  41494. front: {
  41495. height: math.unit(188, "feet"),
  41496. name: "Front",
  41497. image: {
  41498. source: "./media/characters/pyotr/front.svg",
  41499. extra: 1912/1826,
  41500. bottom: 18/1930
  41501. }
  41502. },
  41503. },
  41504. [
  41505. {
  41506. name: "Macro",
  41507. height: math.unit(188, "feet"),
  41508. default: true
  41509. },
  41510. {
  41511. name: "Megamacro",
  41512. height: math.unit(8, "miles")
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41518. {
  41519. side: {
  41520. height: math.unit(10, "feet"),
  41521. weight: math.unit(4500, "lb"),
  41522. name: "Side",
  41523. image: {
  41524. source: "./media/characters/ackart/side.svg",
  41525. extra: 1776/1668,
  41526. bottom: 116/1892
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(10, "feet"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41540. {
  41541. side: {
  41542. height: math.unit(21, "feet"),
  41543. name: "Side",
  41544. image: {
  41545. source: "./media/characters/nolow/side.svg",
  41546. extra: 1484/1434,
  41547. bottom: 85/1569
  41548. }
  41549. },
  41550. sideErect: {
  41551. height: math.unit(21, "feet"),
  41552. name: "Side-erect",
  41553. image: {
  41554. source: "./media/characters/nolow/side-erect.svg",
  41555. extra: 1484/1434,
  41556. bottom: 85/1569
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Regular",
  41563. height: math.unit(12, "feet")
  41564. },
  41565. {
  41566. name: "Big Chee",
  41567. height: math.unit(21, "feet"),
  41568. default: true
  41569. },
  41570. ]
  41571. ))
  41572. characterMakers.push(() => makeCharacter(
  41573. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41574. {
  41575. front: {
  41576. height: math.unit(7, "feet"),
  41577. weight: math.unit(250, "lb"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/nines/front.svg",
  41581. extra: 1741/1607,
  41582. bottom: 41/1782
  41583. }
  41584. },
  41585. side: {
  41586. height: math.unit(7, "feet"),
  41587. weight: math.unit(250, "lb"),
  41588. name: "Side",
  41589. image: {
  41590. source: "./media/characters/nines/side.svg",
  41591. extra: 1854/1735,
  41592. bottom: 93/1947
  41593. }
  41594. },
  41595. back: {
  41596. height: math.unit(7, "feet"),
  41597. weight: math.unit(250, "lb"),
  41598. name: "Back",
  41599. image: {
  41600. source: "./media/characters/nines/back.svg",
  41601. extra: 1748/1615,
  41602. bottom: 20/1768
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Megamacro",
  41609. height: math.unit(99, "km"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(5 + 10/12, "feet"),
  41619. weight: math.unit(210, "lb"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/zenith/front.svg",
  41623. extra: 1531/1452,
  41624. bottom: 198/1729
  41625. }
  41626. },
  41627. back: {
  41628. height: math.unit(5 + 10/12, "feet"),
  41629. weight: math.unit(210, "lb"),
  41630. name: "Back",
  41631. image: {
  41632. source: "./media/characters/zenith/back.svg",
  41633. extra: 1571/1487,
  41634. bottom: 75/1646
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(5 + 10/12, "feet"),
  41642. default: true
  41643. }
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(4, "feet"),
  41651. weight: math.unit(60, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/jasper/front.svg",
  41655. extra: 1450/1379,
  41656. bottom: 19/1469
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(4, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41670. {
  41671. front: {
  41672. height: math.unit(6 + 5/12, "feet"),
  41673. weight: math.unit(290, "lb"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/tiberius-thyben/front.svg",
  41677. extra: 757/739,
  41678. bottom: 39/796
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Micro",
  41685. height: math.unit(1.5, "inches")
  41686. },
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(6 + 5/12, "feet"),
  41690. default: true
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(300, "feet")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(5 + 6/12, "feet"),
  41703. weight: math.unit(60, "kg"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/sabre/front.svg",
  41707. extra: 738/671,
  41708. bottom: 27/765
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Teeny",
  41715. height: math.unit(2, "inches")
  41716. },
  41717. {
  41718. name: "Smol",
  41719. height: math.unit(8, "inches")
  41720. },
  41721. {
  41722. name: "Normal",
  41723. height: math.unit(5 + 6/12, "feet"),
  41724. default: true
  41725. },
  41726. {
  41727. name: "Mini-Macro",
  41728. height: math.unit(15, "feet")
  41729. },
  41730. {
  41731. name: "Macro",
  41732. height: math.unit(50, "feet")
  41733. },
  41734. ]
  41735. ))
  41736. characterMakers.push(() => makeCharacter(
  41737. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41738. {
  41739. front: {
  41740. height: math.unit(6 + 4/12, "feet"),
  41741. weight: math.unit(170, "lb"),
  41742. name: "Front",
  41743. image: {
  41744. source: "./media/characters/charlie/front.svg",
  41745. extra: 1348/1228,
  41746. bottom: 15/1363
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "Macro",
  41753. height: math.unit(1700, "meters"),
  41754. default: true
  41755. },
  41756. {
  41757. name: "MegaMacro",
  41758. height: math.unit(20400, "meters")
  41759. },
  41760. ]
  41761. ))
  41762. characterMakers.push(() => makeCharacter(
  41763. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41764. {
  41765. front: {
  41766. height: math.unit(6 + 3/12, "feet"),
  41767. weight: math.unit(185, "lb"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/susan-grant/front.svg",
  41771. extra: 1351/1327,
  41772. bottom: 26/1377
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Normal",
  41779. height: math.unit(6 + 3/12, "feet"),
  41780. default: true
  41781. },
  41782. {
  41783. name: "Macro",
  41784. height: math.unit(225, "feet")
  41785. },
  41786. {
  41787. name: "Macro+",
  41788. height: math.unit(900, "feet")
  41789. },
  41790. {
  41791. name: "MegaMacro",
  41792. height: math.unit(14400, "feet")
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(5 + 4/12, "feet"),
  41801. weight: math.unit(110, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/axel-isanov/front.svg",
  41805. extra: 1096/1065,
  41806. bottom: 13/1109
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(5 + 4/12, "feet"),
  41814. default: true
  41815. },
  41816. ]
  41817. ))
  41818. characterMakers.push(() => makeCharacter(
  41819. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41820. {
  41821. front: {
  41822. height: math.unit(9, "feet"),
  41823. weight: math.unit(467, "lb"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/necahual/front.svg",
  41827. extra: 920/873,
  41828. bottom: 26/946
  41829. }
  41830. },
  41831. back: {
  41832. height: math.unit(9, "feet"),
  41833. weight: math.unit(467, "lb"),
  41834. name: "Back",
  41835. image: {
  41836. source: "./media/characters/necahual/back.svg",
  41837. extra: 930/884,
  41838. bottom: 16/946
  41839. }
  41840. },
  41841. frontUnderwear: {
  41842. height: math.unit(9, "feet"),
  41843. weight: math.unit(467, "lb"),
  41844. name: "Front (Underwear)",
  41845. image: {
  41846. source: "./media/characters/necahual/front-underwear.svg",
  41847. extra: 920/873,
  41848. bottom: 26/946
  41849. }
  41850. },
  41851. frontDressed: {
  41852. height: math.unit(9, "feet"),
  41853. weight: math.unit(467, "lb"),
  41854. name: "Front (Dressed)",
  41855. image: {
  41856. source: "./media/characters/necahual/front-dressed.svg",
  41857. extra: 920/873,
  41858. bottom: 26/946
  41859. }
  41860. },
  41861. },
  41862. [
  41863. {
  41864. name: "Comprsesed",
  41865. height: math.unit(9, "feet")
  41866. },
  41867. {
  41868. name: "Natural",
  41869. height: math.unit(15, "feet"),
  41870. default: true
  41871. },
  41872. {
  41873. name: "Boosted",
  41874. height: math.unit(50, "feet")
  41875. },
  41876. {
  41877. name: "Boosted+",
  41878. height: math.unit(150, "feet")
  41879. },
  41880. {
  41881. name: "Max",
  41882. height: math.unit(500, "feet")
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41888. {
  41889. front: {
  41890. height: math.unit(22 + 1/12, "feet"),
  41891. weight: math.unit(3200, "lb"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/theo-acacia/front.svg",
  41895. extra: 1796/1741,
  41896. bottom: 83/1879
  41897. }
  41898. },
  41899. frontUnderwear: {
  41900. height: math.unit(22 + 1/12, "feet"),
  41901. weight: math.unit(3200, "lb"),
  41902. name: "Front (Underwear)",
  41903. image: {
  41904. source: "./media/characters/theo-acacia/front-underwear.svg",
  41905. extra: 1796/1741,
  41906. bottom: 83/1879
  41907. }
  41908. },
  41909. frontNude: {
  41910. height: math.unit(22 + 1/12, "feet"),
  41911. weight: math.unit(3200, "lb"),
  41912. name: "Front (Nude)",
  41913. image: {
  41914. source: "./media/characters/theo-acacia/front-nude.svg",
  41915. extra: 1796/1741,
  41916. bottom: 83/1879
  41917. }
  41918. },
  41919. },
  41920. [
  41921. {
  41922. name: "Normal",
  41923. height: math.unit(22 + 1/12, "feet"),
  41924. default: true
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(20, "feet"),
  41933. name: "Front",
  41934. image: {
  41935. source: "./media/characters/astra/front.svg",
  41936. extra: 1850/1714,
  41937. bottom: 106/1956
  41938. }
  41939. },
  41940. frontUndressed: {
  41941. height: math.unit(20, "feet"),
  41942. name: "Front (Undressed)",
  41943. image: {
  41944. source: "./media/characters/astra/front-undressed.svg",
  41945. extra: 1926/1749,
  41946. bottom: 0/1926
  41947. }
  41948. },
  41949. hand: {
  41950. height: math.unit(1.53, "feet"),
  41951. name: "Hand",
  41952. image: {
  41953. source: "./media/characters/astra/hand.svg"
  41954. }
  41955. },
  41956. paw: {
  41957. height: math.unit(1.53, "feet"),
  41958. name: "Paw",
  41959. image: {
  41960. source: "./media/characters/astra/paw.svg"
  41961. }
  41962. },
  41963. },
  41964. [
  41965. {
  41966. name: "Smallest",
  41967. height: math.unit(20, "feet")
  41968. },
  41969. {
  41970. name: "Normal",
  41971. height: math.unit(1e9, "miles"),
  41972. default: true
  41973. },
  41974. {
  41975. name: "Larger",
  41976. height: math.unit(5, "multiverses")
  41977. },
  41978. {
  41979. name: "Largest",
  41980. height: math.unit(1e9, "multiverses")
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41986. {
  41987. front: {
  41988. height: math.unit(8, "feet"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/breanna/front.svg",
  41992. extra: 1912/1632,
  41993. bottom: 33/1945
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Smallest",
  42000. height: math.unit(8, "feet")
  42001. },
  42002. {
  42003. name: "Normal",
  42004. height: math.unit(1, "mile"),
  42005. default: true
  42006. },
  42007. {
  42008. name: "Maximum",
  42009. height: math.unit(1500000000000, "lightyears")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(5 + 11/12, "feet"),
  42018. weight: math.unit(155, "lb"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/cai/front.svg",
  42022. extra: 1823/1702,
  42023. bottom: 32/1855
  42024. }
  42025. },
  42026. back: {
  42027. height: math.unit(5 + 11/12, "feet"),
  42028. weight: math.unit(155, "lb"),
  42029. name: "Back",
  42030. image: {
  42031. source: "./media/characters/cai/back.svg",
  42032. extra: 1809/1708,
  42033. bottom: 31/1840
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(5 + 11/12, "feet"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Big",
  42045. height: math.unit(15, "feet")
  42046. },
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(200, "feet")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(5 + 6/12, "feet"),
  42058. weight: math.unit(160, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42062. extra: 1227/1174,
  42063. bottom: 37/1264
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Macro",
  42070. height: math.unit(444, "meters"),
  42071. default: true
  42072. },
  42073. ]
  42074. ))
  42075. characterMakers.push(() => makeCharacter(
  42076. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42077. {
  42078. front: {
  42079. height: math.unit(18 + 7/12, "feet"),
  42080. name: "Front",
  42081. image: {
  42082. source: "./media/characters/rex/front.svg",
  42083. extra: 1941/1807,
  42084. bottom: 66/2007
  42085. }
  42086. },
  42087. back: {
  42088. height: math.unit(18 + 7/12, "feet"),
  42089. name: "Back",
  42090. image: {
  42091. source: "./media/characters/rex/back.svg",
  42092. extra: 1937/1822,
  42093. bottom: 42/1979
  42094. }
  42095. },
  42096. boot: {
  42097. height: math.unit(3.45, "feet"),
  42098. name: "Boot",
  42099. image: {
  42100. source: "./media/characters/rex/boot.svg"
  42101. }
  42102. },
  42103. paw: {
  42104. height: math.unit(4.17, "feet"),
  42105. name: "Paw",
  42106. image: {
  42107. source: "./media/characters/rex/paw.svg"
  42108. }
  42109. },
  42110. head: {
  42111. height: math.unit(6.728, "feet"),
  42112. name: "Head",
  42113. image: {
  42114. source: "./media/characters/rex/head.svg"
  42115. }
  42116. },
  42117. },
  42118. [
  42119. {
  42120. name: "Nano",
  42121. height: math.unit(18 + 7/12, "feet")
  42122. },
  42123. {
  42124. name: "Micro",
  42125. height: math.unit(1.5, "megameters")
  42126. },
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(440, "megameters"),
  42130. default: true
  42131. },
  42132. {
  42133. name: "Macro",
  42134. height: math.unit(2.5, "gigameters")
  42135. },
  42136. {
  42137. name: "Gigamacro",
  42138. height: math.unit(2, "galaxies")
  42139. },
  42140. ]
  42141. ))
  42142. characterMakers.push(() => makeCharacter(
  42143. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42144. {
  42145. side: {
  42146. height: math.unit(32, "feet"),
  42147. weight: math.unit(250000, "lb"),
  42148. name: "Side",
  42149. image: {
  42150. source: "./media/characters/silverwing/side.svg",
  42151. extra: 1100/1019,
  42152. bottom: 204/1304
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Normal",
  42159. height: math.unit(32, "feet"),
  42160. default: true
  42161. },
  42162. ]
  42163. ))
  42164. characterMakers.push(() => makeCharacter(
  42165. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42166. {
  42167. front: {
  42168. height: math.unit(6 + 6/12, "feet"),
  42169. weight: math.unit(350, "lb"),
  42170. name: "Front",
  42171. image: {
  42172. source: "./media/characters/tristan-hawthorne/front.svg",
  42173. extra: 1159/1124,
  42174. bottom: 37/1196
  42175. },
  42176. form: "labrador",
  42177. default: true
  42178. },
  42179. skunkFront: {
  42180. height: math.unit(4 + 6/12, "feet"),
  42181. weight: math.unit(120, "lb"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42185. extra: 1609/1551,
  42186. bottom: 169/1778
  42187. },
  42188. form: "skunk",
  42189. default: true
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Normal",
  42195. height: math.unit(6 + 6/12, "feet"),
  42196. form: "labrador",
  42197. default: true
  42198. },
  42199. {
  42200. name: "Normal",
  42201. height: math.unit(4 + 6/12, "feet"),
  42202. form: "skunk",
  42203. default: true
  42204. },
  42205. ],
  42206. {
  42207. "labrador": {
  42208. name: "Labrador",
  42209. default: true
  42210. },
  42211. "skunk": {
  42212. name: "Skunk"
  42213. }
  42214. }
  42215. ))
  42216. characterMakers.push(() => makeCharacter(
  42217. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42218. {
  42219. front: {
  42220. height: math.unit(5 + 11/12, "feet"),
  42221. weight: math.unit(190, "lb"),
  42222. name: "Front",
  42223. image: {
  42224. source: "./media/characters/mizu/front.svg",
  42225. extra: 1988/1788,
  42226. bottom: 14/2002
  42227. }
  42228. },
  42229. },
  42230. [
  42231. {
  42232. name: "Normal",
  42233. height: math.unit(5 + 11/12, "feet"),
  42234. default: true
  42235. },
  42236. ]
  42237. ))
  42238. characterMakers.push(() => makeCharacter(
  42239. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42240. {
  42241. front: {
  42242. height: math.unit(1.7, "feet"),
  42243. weight: math.unit(50, "lb"),
  42244. name: "Front",
  42245. image: {
  42246. source: "./media/characters/dechroma/front.svg",
  42247. extra: 1095/859,
  42248. bottom: 64/1159
  42249. }
  42250. },
  42251. },
  42252. [
  42253. {
  42254. name: "Normal",
  42255. height: math.unit(1.7, "feet"),
  42256. default: true
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42262. {
  42263. side: {
  42264. height: math.unit(30, "feet"),
  42265. name: "Side",
  42266. image: {
  42267. source: "./media/characters/veluren-thanazel/side.svg",
  42268. extra: 1611/633,
  42269. bottom: 118/1729
  42270. }
  42271. },
  42272. front: {
  42273. height: math.unit(30, "feet"),
  42274. name: "Front",
  42275. image: {
  42276. source: "./media/characters/veluren-thanazel/front.svg",
  42277. extra: 1486/636,
  42278. bottom: 238/1724
  42279. }
  42280. },
  42281. head: {
  42282. height: math.unit(21.4, "feet"),
  42283. name: "Head",
  42284. image: {
  42285. source: "./media/characters/veluren-thanazel/head.svg"
  42286. }
  42287. },
  42288. genitals: {
  42289. height: math.unit(19.4, "feet"),
  42290. name: "Genitals",
  42291. image: {
  42292. source: "./media/characters/veluren-thanazel/genitals.svg"
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Social",
  42299. height: math.unit(6, "feet")
  42300. },
  42301. {
  42302. name: "Play",
  42303. height: math.unit(12, "feet")
  42304. },
  42305. {
  42306. name: "True",
  42307. height: math.unit(30, "feet"),
  42308. default: true
  42309. },
  42310. ]
  42311. ))
  42312. characterMakers.push(() => makeCharacter(
  42313. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42314. {
  42315. front: {
  42316. height: math.unit(7 + 6/12, "feet"),
  42317. weight: math.unit(500, "kg"),
  42318. name: "Front",
  42319. image: {
  42320. source: "./media/characters/arcturas/front.svg",
  42321. extra: 1700/1500,
  42322. bottom: 145/1845
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Normal",
  42329. height: math.unit(7 + 6/12, "feet"),
  42330. default: true
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42336. {
  42337. side: {
  42338. height: math.unit(6, "feet"),
  42339. weight: math.unit(2, "tons"),
  42340. name: "Side",
  42341. image: {
  42342. source: "./media/characters/vitaen/side.svg",
  42343. extra: 1157/617,
  42344. bottom: 122/1279
  42345. }
  42346. },
  42347. },
  42348. [
  42349. {
  42350. name: "Normal",
  42351. height: math.unit(6, "feet"),
  42352. default: true
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42358. {
  42359. front: {
  42360. height: math.unit(19, "feet"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/fia-dreamweaver/front.svg",
  42364. extra: 1630/1504,
  42365. bottom: 25/1655
  42366. }
  42367. },
  42368. },
  42369. [
  42370. {
  42371. name: "Normal",
  42372. height: math.unit(19, "feet"),
  42373. default: true
  42374. },
  42375. ]
  42376. ))
  42377. characterMakers.push(() => makeCharacter(
  42378. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42379. {
  42380. front: {
  42381. height: math.unit(5 + 4/12, "feet"),
  42382. name: "Front",
  42383. image: {
  42384. source: "./media/characters/artan/front.svg",
  42385. extra: 1618/1535,
  42386. bottom: 46/1664
  42387. }
  42388. },
  42389. back: {
  42390. height: math.unit(5 + 4/12, "feet"),
  42391. name: "Back",
  42392. image: {
  42393. source: "./media/characters/artan/back.svg",
  42394. extra: 1618/1543,
  42395. bottom: 31/1649
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(5 + 4/12, "feet"),
  42403. default: true
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42409. {
  42410. side: {
  42411. height: math.unit(182, "cm"),
  42412. weight: math.unit(1000, "lb"),
  42413. name: "Side",
  42414. image: {
  42415. source: "./media/characters/silver-dragon/side.svg",
  42416. extra: 710/287,
  42417. bottom: 88/798
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(182, "cm"),
  42425. default: true
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42431. {
  42432. side: {
  42433. height: math.unit(6 + 6/12, "feet"),
  42434. weight: math.unit(1.5, "tons"),
  42435. name: "Side",
  42436. image: {
  42437. source: "./media/characters/zephyr/side.svg",
  42438. extra: 1433/586,
  42439. bottom: 109/1542
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(6 + 6/12, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42453. {
  42454. side: {
  42455. height: math.unit(1, "feet"),
  42456. name: "Side",
  42457. image: {
  42458. source: "./media/characters/vixye/side.svg",
  42459. extra: 632/541,
  42460. bottom: 0/632
  42461. }
  42462. },
  42463. },
  42464. [
  42465. {
  42466. name: "Normal",
  42467. height: math.unit(1, "feet"),
  42468. default: true
  42469. },
  42470. {
  42471. name: "True",
  42472. height: math.unit(1e15, "multiverses")
  42473. },
  42474. ]
  42475. ))
  42476. characterMakers.push(() => makeCharacter(
  42477. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42478. {
  42479. front: {
  42480. height: math.unit(8 + 2/12, "feet"),
  42481. weight: math.unit(650, "lb"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42485. extra: 1174/1137,
  42486. bottom: 82/1256
  42487. }
  42488. },
  42489. back: {
  42490. height: math.unit(8 + 2/12, "feet"),
  42491. weight: math.unit(650, "lb"),
  42492. name: "Back",
  42493. image: {
  42494. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42495. extra: 1204/1157,
  42496. bottom: 46/1250
  42497. }
  42498. },
  42499. },
  42500. [
  42501. {
  42502. name: "Wildform",
  42503. height: math.unit(8 + 2/12, "feet"),
  42504. default: true
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42510. {
  42511. front: {
  42512. height: math.unit(18, "feet"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/cyphin/front.svg",
  42516. extra: 970/886,
  42517. bottom: 42/1012
  42518. }
  42519. },
  42520. back: {
  42521. height: math.unit(18, "feet"),
  42522. name: "Back",
  42523. image: {
  42524. source: "./media/characters/cyphin/back.svg",
  42525. extra: 1009/894,
  42526. bottom: 24/1033
  42527. }
  42528. },
  42529. head: {
  42530. height: math.unit(5.05, "feet"),
  42531. name: "Head",
  42532. image: {
  42533. source: "./media/characters/cyphin/head.svg"
  42534. }
  42535. },
  42536. tailbud: {
  42537. height: math.unit(5, "feet"),
  42538. name: "Tailbud",
  42539. image: {
  42540. source: "./media/characters/cyphin/tailbud.svg"
  42541. }
  42542. },
  42543. },
  42544. [
  42545. ]
  42546. ))
  42547. characterMakers.push(() => makeCharacter(
  42548. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42549. {
  42550. side: {
  42551. height: math.unit(10, "feet"),
  42552. weight: math.unit(6, "tons"),
  42553. name: "Side",
  42554. image: {
  42555. source: "./media/characters/raijin/side.svg",
  42556. extra: 1529/613,
  42557. bottom: 337/1866
  42558. }
  42559. },
  42560. },
  42561. [
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(10, "feet"),
  42565. default: true
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42571. {
  42572. side: {
  42573. height: math.unit(9, "feet"),
  42574. name: "Side",
  42575. image: {
  42576. source: "./media/characters/nilghais/side.svg",
  42577. extra: 1047/744,
  42578. bottom: 91/1138
  42579. }
  42580. },
  42581. head: {
  42582. height: math.unit(3.14, "feet"),
  42583. name: "Head",
  42584. image: {
  42585. source: "./media/characters/nilghais/head.svg"
  42586. }
  42587. },
  42588. mouth: {
  42589. height: math.unit(4.6, "feet"),
  42590. name: "Mouth",
  42591. image: {
  42592. source: "./media/characters/nilghais/mouth.svg"
  42593. }
  42594. },
  42595. wings: {
  42596. height: math.unit(24, "feet"),
  42597. name: "Wings",
  42598. image: {
  42599. source: "./media/characters/nilghais/wings.svg"
  42600. }
  42601. },
  42602. ass: {
  42603. height: math.unit(6.12, "feet"),
  42604. name: "Ass",
  42605. image: {
  42606. source: "./media/characters/nilghais/ass.svg"
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(9, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42620. {
  42621. regular: {
  42622. height: math.unit(16 + 2/12, "feet"),
  42623. weight: math.unit(2300, "lb"),
  42624. name: "Regular",
  42625. image: {
  42626. source: "./media/characters/zolgar/regular.svg",
  42627. extra: 1246/1004,
  42628. bottom: 124/1370
  42629. }
  42630. },
  42631. boxers: {
  42632. height: math.unit(16 + 2/12, "feet"),
  42633. weight: math.unit(2300, "lb"),
  42634. name: "Boxers",
  42635. image: {
  42636. source: "./media/characters/zolgar/boxers.svg",
  42637. extra: 1246/1004,
  42638. bottom: 124/1370
  42639. }
  42640. },
  42641. armored: {
  42642. height: math.unit(16 + 2/12, "feet"),
  42643. weight: math.unit(2300, "lb"),
  42644. name: "Armored",
  42645. image: {
  42646. source: "./media/characters/zolgar/armored.svg",
  42647. extra: 1246/1004,
  42648. bottom: 124/1370
  42649. }
  42650. },
  42651. goth: {
  42652. height: math.unit(16 + 2/12, "feet"),
  42653. weight: math.unit(2300, "lb"),
  42654. name: "Goth",
  42655. image: {
  42656. source: "./media/characters/zolgar/goth.svg",
  42657. extra: 1246/1004,
  42658. bottom: 124/1370
  42659. }
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Shrunken Down",
  42665. height: math.unit(9 + 2/12, "feet")
  42666. },
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(16 + 2/12, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(6, "feet"),
  42679. weight: math.unit(168, "lb"),
  42680. name: "Front",
  42681. image: {
  42682. source: "./media/characters/luca/front.svg",
  42683. extra: 841/667,
  42684. bottom: 102/943
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(6, "feet"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42698. {
  42699. side: {
  42700. height: math.unit(7 + 3/12, "feet"),
  42701. weight: math.unit(312, "lb"),
  42702. name: "Side",
  42703. image: {
  42704. source: "./media/characters/zezo/side.svg",
  42705. extra: 1192/1067,
  42706. bottom: 63/1255
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(7 + 3/12, "feet"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(5 + 5/12, "feet"),
  42723. weight: math.unit(170, "lb"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/mayso/front.svg",
  42727. extra: 1215/1108,
  42728. bottom: 16/1231
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Normal",
  42735. height: math.unit(5 + 5/12, "feet"),
  42736. default: true
  42737. },
  42738. ]
  42739. ))
  42740. characterMakers.push(() => makeCharacter(
  42741. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42742. {
  42743. front: {
  42744. height: math.unit(4 + 3/12, "feet"),
  42745. weight: math.unit(80, "lb"),
  42746. name: "Front",
  42747. image: {
  42748. source: "./media/characters/hess/front.svg",
  42749. extra: 1200/1123,
  42750. bottom: 16/1216
  42751. }
  42752. },
  42753. },
  42754. [
  42755. {
  42756. name: "Normal",
  42757. height: math.unit(4 + 3/12, "feet"),
  42758. default: true
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42764. {
  42765. front: {
  42766. height: math.unit(1.9, "meters"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/ashgar/front.svg",
  42770. extra: 1177/1146,
  42771. bottom: 99/1276
  42772. }
  42773. },
  42774. back: {
  42775. height: math.unit(1.9, "meters"),
  42776. name: "Back",
  42777. image: {
  42778. source: "./media/characters/ashgar/back.svg",
  42779. extra: 1201/1183,
  42780. bottom: 53/1254
  42781. }
  42782. },
  42783. feral: {
  42784. height: math.unit(1.4, "meters"),
  42785. name: "Feral",
  42786. image: {
  42787. source: "./media/characters/ashgar/feral.svg",
  42788. extra: 370/345,
  42789. bottom: 45/415
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(1.9, "meters"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42803. {
  42804. regular: {
  42805. height: math.unit(6, "feet"),
  42806. weight: math.unit(220, "lb"),
  42807. name: "Regular",
  42808. image: {
  42809. source: "./media/characters/phillip/regular.svg",
  42810. extra: 1373/1277,
  42811. bottom: 75/1448
  42812. }
  42813. },
  42814. dressed: {
  42815. height: math.unit(6, "feet"),
  42816. weight: math.unit(220, "lb"),
  42817. name: "Dressed",
  42818. image: {
  42819. source: "./media/characters/phillip/dressed.svg",
  42820. extra: 1373/1277,
  42821. bottom: 75/1448
  42822. }
  42823. },
  42824. paw: {
  42825. height: math.unit(1.44, "feet"),
  42826. name: "Paw",
  42827. image: {
  42828. source: "./media/characters/phillip/paw.svg"
  42829. }
  42830. },
  42831. },
  42832. [
  42833. {
  42834. name: "Normal",
  42835. height: math.unit(6, "feet"),
  42836. default: true
  42837. },
  42838. ]
  42839. ))
  42840. characterMakers.push(() => makeCharacter(
  42841. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42842. {
  42843. side: {
  42844. height: math.unit(42, "feet"),
  42845. name: "Side",
  42846. image: {
  42847. source: "./media/characters/uvula/side.svg",
  42848. extra: 683/586,
  42849. bottom: 60/743
  42850. }
  42851. },
  42852. front: {
  42853. height: math.unit(42, "feet"),
  42854. name: "Front",
  42855. image: {
  42856. source: "./media/characters/uvula/front.svg",
  42857. extra: 705/613,
  42858. bottom: 54/759
  42859. }
  42860. },
  42861. maw: {
  42862. height: math.unit(23.5, "feet"),
  42863. name: "Maw",
  42864. image: {
  42865. source: "./media/characters/uvula/maw.svg"
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Original Size",
  42872. height: math.unit(14, "inches")
  42873. },
  42874. {
  42875. name: "Human Size",
  42876. height: math.unit(6, "feet")
  42877. },
  42878. {
  42879. name: "Big",
  42880. height: math.unit(42, "feet"),
  42881. default: true
  42882. },
  42883. {
  42884. name: "Bigger",
  42885. height: math.unit(100, "feet")
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42891. {
  42892. front: {
  42893. height: math.unit(5 + 11/12, "feet"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/lannah/front.svg",
  42897. extra: 1208/1113,
  42898. bottom: 97/1305
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(5 + 11/12, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42912. {
  42913. front: {
  42914. height: math.unit(6 + 3/12, "feet"),
  42915. weight: math.unit(3.5, "tons"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/emberflame/front.svg",
  42919. extra: 1198/672,
  42920. bottom: 82/1280
  42921. }
  42922. },
  42923. side: {
  42924. height: math.unit(6 + 3/12, "feet"),
  42925. weight: math.unit(3.5, "tons"),
  42926. name: "Side",
  42927. image: {
  42928. source: "./media/characters/emberflame/side.svg",
  42929. extra: 938/527,
  42930. bottom: 56/994
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(6 + 3/12, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42944. {
  42945. side: {
  42946. height: math.unit(17.5, "feet"),
  42947. weight: math.unit(35, "tons"),
  42948. name: "Side",
  42949. image: {
  42950. source: "./media/characters/sophie-ambrose/side.svg",
  42951. extra: 1573/1242,
  42952. bottom: 71/1644
  42953. }
  42954. },
  42955. maw: {
  42956. height: math.unit(7.4, "feet"),
  42957. name: "Maw",
  42958. image: {
  42959. source: "./media/characters/sophie-ambrose/maw.svg"
  42960. }
  42961. },
  42962. },
  42963. [
  42964. {
  42965. name: "Normal",
  42966. height: math.unit(17.5, "feet"),
  42967. default: true
  42968. },
  42969. ]
  42970. ))
  42971. characterMakers.push(() => makeCharacter(
  42972. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42973. {
  42974. front: {
  42975. height: math.unit(280, "feet"),
  42976. weight: math.unit(550, "tons"),
  42977. name: "Front",
  42978. image: {
  42979. source: "./media/characters/king-mugi/front.svg",
  42980. extra: 1102/947,
  42981. bottom: 104/1206
  42982. }
  42983. },
  42984. },
  42985. [
  42986. {
  42987. name: "King Mugi",
  42988. height: math.unit(280, "feet"),
  42989. default: true
  42990. },
  42991. ]
  42992. ))
  42993. characterMakers.push(() => makeCharacter(
  42994. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42995. {
  42996. front: {
  42997. height: math.unit(64, "meters"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/nova-fox/front.svg",
  43001. extra: 1310/1246,
  43002. bottom: 65/1375
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Macro",
  43009. height: math.unit(64, "meters"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43016. {
  43017. front: {
  43018. height: math.unit(6 + 3/12, "feet"),
  43019. weight: math.unit(170, "lb"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/sam-bat/front.svg",
  43023. extra: 1601/1411,
  43024. bottom: 125/1726
  43025. }
  43026. },
  43027. back: {
  43028. height: math.unit(6 + 3/12, "feet"),
  43029. weight: math.unit(170, "lb"),
  43030. name: "Back",
  43031. image: {
  43032. source: "./media/characters/sam-bat/back.svg",
  43033. extra: 1577/1405,
  43034. bottom: 58/1635
  43035. }
  43036. },
  43037. },
  43038. [
  43039. {
  43040. name: "Normal",
  43041. height: math.unit(6 + 3/12, "feet"),
  43042. default: true
  43043. },
  43044. ]
  43045. ))
  43046. characterMakers.push(() => makeCharacter(
  43047. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43048. {
  43049. front: {
  43050. height: math.unit(59, "feet"),
  43051. weight: math.unit(40000, "lb"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/inari/front.svg",
  43055. extra: 1884/1350,
  43056. bottom: 95/1979
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Gigantamax",
  43063. height: math.unit(59, "feet"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(5 + 8/12, "feet"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/elizabeth/front.svg",
  43076. extra: 1395/1298,
  43077. bottom: 54/1449
  43078. }
  43079. },
  43080. mouth: {
  43081. height: math.unit(1.97, "feet"),
  43082. name: "Mouth",
  43083. image: {
  43084. source: "./media/characters/elizabeth/mouth.svg"
  43085. }
  43086. },
  43087. foot: {
  43088. height: math.unit(1.17, "feet"),
  43089. name: "Foot",
  43090. image: {
  43091. source: "./media/characters/elizabeth/foot.svg"
  43092. }
  43093. },
  43094. },
  43095. [
  43096. {
  43097. name: "Normal",
  43098. height: math.unit(5 + 8/12, "feet"),
  43099. default: true
  43100. },
  43101. {
  43102. name: "Minimacro",
  43103. height: math.unit(18, "feet")
  43104. },
  43105. {
  43106. name: "Macro",
  43107. height: math.unit(180, "feet")
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(5 + 2/12, "feet"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/october-gossamer/front.svg",
  43119. extra: 505/454,
  43120. bottom: 7/512
  43121. }
  43122. },
  43123. back: {
  43124. height: math.unit(5 + 2/12, "feet"),
  43125. name: "Back",
  43126. image: {
  43127. source: "./media/characters/october-gossamer/back.svg",
  43128. extra: 501/454,
  43129. bottom: 11/512
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Normal",
  43136. height: math.unit(5 + 2/12, "feet"),
  43137. default: true
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43143. {
  43144. front: {
  43145. height: math.unit(5, "feet"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/epiglottis/front.svg",
  43149. extra: 923/849,
  43150. bottom: 17/940
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Original Size",
  43157. height: math.unit(10, "inches")
  43158. },
  43159. {
  43160. name: "Human Size",
  43161. height: math.unit(5, "feet"),
  43162. default: true
  43163. },
  43164. {
  43165. name: "Big",
  43166. height: math.unit(25, "feet")
  43167. },
  43168. {
  43169. name: "Bigger",
  43170. height: math.unit(50, "feet")
  43171. },
  43172. {
  43173. name: "oh lawd",
  43174. height: math.unit(75, "feet")
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43180. {
  43181. front: {
  43182. height: math.unit(2 + 4/12, "feet"),
  43183. weight: math.unit(60, "lb"),
  43184. name: "Front",
  43185. image: {
  43186. source: "./media/characters/lerm/front.svg",
  43187. extra: 796/790,
  43188. bottom: 79/875
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Normal",
  43195. height: math.unit(2 + 4/12, "feet"),
  43196. default: true
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43202. {
  43203. front: {
  43204. height: math.unit(5.5, "feet"),
  43205. weight: math.unit(130, "lb"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/xena-nebadon/front.svg",
  43209. extra: 1828/1730,
  43210. bottom: 79/1907
  43211. }
  43212. },
  43213. },
  43214. [
  43215. {
  43216. name: "Tiny Puppy",
  43217. height: math.unit(3, "inches")
  43218. },
  43219. {
  43220. name: "Normal",
  43221. height: math.unit(5.5, "feet"),
  43222. default: true
  43223. },
  43224. {
  43225. name: "Lotta Lady",
  43226. height: math.unit(12, "feet")
  43227. },
  43228. {
  43229. name: "Pretty Big",
  43230. height: math.unit(100, "feet")
  43231. },
  43232. {
  43233. name: "Big",
  43234. height: math.unit(500, "feet")
  43235. },
  43236. {
  43237. name: "Skyscraper Toys",
  43238. height: math.unit(2500, "feet")
  43239. },
  43240. {
  43241. name: "Plane Catcher",
  43242. height: math.unit(8, "miles")
  43243. },
  43244. {
  43245. name: "Planet Toys",
  43246. height: math.unit(15, "earths")
  43247. },
  43248. {
  43249. name: "Stardust",
  43250. height: math.unit(0.25, "galaxies")
  43251. },
  43252. {
  43253. name: "Snacks",
  43254. height: math.unit(70, "universes")
  43255. },
  43256. ]
  43257. ))
  43258. characterMakers.push(() => makeCharacter(
  43259. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43260. {
  43261. front: {
  43262. height: math.unit(1.6, "meters"),
  43263. weight: math.unit(60, "kg"),
  43264. name: "Front",
  43265. image: {
  43266. source: "./media/characters/bounty/front.svg",
  43267. extra: 1426/1308,
  43268. bottom: 15/1441
  43269. }
  43270. },
  43271. back: {
  43272. height: math.unit(1.6, "meters"),
  43273. weight: math.unit(60, "kg"),
  43274. name: "Back",
  43275. image: {
  43276. source: "./media/characters/bounty/back.svg",
  43277. extra: 1417/1307,
  43278. bottom: 8/1425
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Normal",
  43285. height: math.unit(1.6, "meters"),
  43286. default: true
  43287. },
  43288. {
  43289. name: "Macro",
  43290. height: math.unit(300, "meters")
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43296. {
  43297. front: {
  43298. height: math.unit(2 + 8/12, "feet"),
  43299. weight: math.unit(15, "lb"),
  43300. name: "Front",
  43301. image: {
  43302. source: "./media/characters/mochi/front.svg",
  43303. extra: 1022/852,
  43304. bottom: 435/1457
  43305. }
  43306. },
  43307. back: {
  43308. height: math.unit(2 + 8/12, "feet"),
  43309. weight: math.unit(15, "lb"),
  43310. name: "Back",
  43311. image: {
  43312. source: "./media/characters/mochi/back.svg",
  43313. extra: 1335/1119,
  43314. bottom: 39/1374
  43315. }
  43316. },
  43317. bird: {
  43318. height: math.unit(2 + 8/12, "feet"),
  43319. weight: math.unit(15, "lb"),
  43320. name: "Bird",
  43321. image: {
  43322. source: "./media/characters/mochi/bird.svg",
  43323. extra: 1251/1113,
  43324. bottom: 178/1429
  43325. }
  43326. },
  43327. kaiju: {
  43328. height: math.unit(154, "feet"),
  43329. weight: math.unit(1e7, "lb"),
  43330. name: "Kaiju",
  43331. image: {
  43332. source: "./media/characters/mochi/kaiju.svg",
  43333. extra: 460/324,
  43334. bottom: 40/500
  43335. }
  43336. },
  43337. head: {
  43338. height: math.unit(1.21, "feet"),
  43339. name: "Head",
  43340. image: {
  43341. source: "./media/characters/mochi/head.svg"
  43342. }
  43343. },
  43344. alternateTail: {
  43345. height: math.unit(2 + 8/12, "feet"),
  43346. weight: math.unit(45, "lb"),
  43347. name: "Alternate Tail",
  43348. image: {
  43349. source: "./media/characters/mochi/alternate-tail.svg",
  43350. extra: 139/76,
  43351. bottom: 45/184
  43352. }
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Micro",
  43358. height: math.unit(2, "inches")
  43359. },
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(2 + 8/12, "feet"),
  43363. default: true
  43364. },
  43365. {
  43366. name: "Macro",
  43367. height: math.unit(106, "feet")
  43368. },
  43369. ]
  43370. ))
  43371. characterMakers.push(() => makeCharacter(
  43372. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43373. {
  43374. front: {
  43375. height: math.unit(5.67, "feet"),
  43376. weight: math.unit(135, "lb"),
  43377. name: "Front",
  43378. image: {
  43379. source: "./media/characters/sarel/front.svg",
  43380. extra: 865/788,
  43381. bottom: 97/962
  43382. }
  43383. },
  43384. back: {
  43385. height: math.unit(5.67, "feet"),
  43386. weight: math.unit(135, "lb"),
  43387. name: "Back",
  43388. image: {
  43389. source: "./media/characters/sarel/back.svg",
  43390. extra: 857/777,
  43391. bottom: 32/889
  43392. }
  43393. },
  43394. chozoan: {
  43395. height: math.unit(5.67, "feet"),
  43396. weight: math.unit(135, "lb"),
  43397. name: "Chozoan",
  43398. image: {
  43399. source: "./media/characters/sarel/chozoan.svg",
  43400. extra: 865/788,
  43401. bottom: 97/962
  43402. }
  43403. },
  43404. current: {
  43405. height: math.unit(5.67, "feet"),
  43406. weight: math.unit(135, "lb"),
  43407. name: "Current",
  43408. image: {
  43409. source: "./media/characters/sarel/current.svg",
  43410. extra: 865/788,
  43411. bottom: 97/962
  43412. }
  43413. },
  43414. head: {
  43415. height: math.unit(1.77, "feet"),
  43416. name: "Head",
  43417. image: {
  43418. source: "./media/characters/sarel/head.svg"
  43419. }
  43420. },
  43421. claws: {
  43422. height: math.unit(1.8, "feet"),
  43423. name: "Claws",
  43424. image: {
  43425. source: "./media/characters/sarel/claws.svg"
  43426. }
  43427. },
  43428. clawsAlt: {
  43429. height: math.unit(1.8, "feet"),
  43430. name: "Claws-alt",
  43431. image: {
  43432. source: "./media/characters/sarel/claws-alt.svg"
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Normal",
  43439. height: math.unit(5.67, "feet"),
  43440. default: true
  43441. },
  43442. ]
  43443. ))
  43444. characterMakers.push(() => makeCharacter(
  43445. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43446. {
  43447. front: {
  43448. height: math.unit(5500, "feet"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/alyonia/front.svg",
  43452. extra: 1200/1135,
  43453. bottom: 29/1229
  43454. }
  43455. },
  43456. back: {
  43457. height: math.unit(5500, "feet"),
  43458. name: "Back",
  43459. image: {
  43460. source: "./media/characters/alyonia/back.svg",
  43461. extra: 1205/1138,
  43462. bottom: 10/1215
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Small",
  43469. height: math.unit(10, "feet")
  43470. },
  43471. {
  43472. name: "Macro",
  43473. height: math.unit(500, "feet")
  43474. },
  43475. {
  43476. name: "Mega Macro",
  43477. height: math.unit(5500, "feet"),
  43478. default: true
  43479. },
  43480. {
  43481. name: "Mega Macro+",
  43482. height: math.unit(500000, "feet")
  43483. },
  43484. {
  43485. name: "Giga Macro",
  43486. height: math.unit(3000, "miles")
  43487. },
  43488. {
  43489. name: "Tera Macro",
  43490. height: math.unit(2.8e6, "miles")
  43491. },
  43492. {
  43493. name: "Galactic",
  43494. height: math.unit(120000, "lightyears")
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43500. {
  43501. werewolf: {
  43502. height: math.unit(8, "feet"),
  43503. weight: math.unit(425, "lb"),
  43504. name: "Werewolf",
  43505. image: {
  43506. source: "./media/characters/autumn/werewolf.svg",
  43507. extra: 2154/2031,
  43508. bottom: 160/2314
  43509. }
  43510. },
  43511. human: {
  43512. height: math.unit(5 + 8/12, "feet"),
  43513. weight: math.unit(150, "lb"),
  43514. name: "Human",
  43515. image: {
  43516. source: "./media/characters/autumn/human.svg",
  43517. extra: 1200/1149,
  43518. bottom: 30/1230
  43519. }
  43520. },
  43521. },
  43522. [
  43523. {
  43524. name: "Normal",
  43525. height: math.unit(8, "feet"),
  43526. default: true
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43532. {
  43533. front: {
  43534. height: math.unit(8 + 5/12, "feet"),
  43535. weight: math.unit(825, "lb"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/cobalt-charizard/front.svg",
  43539. extra: 1268/1155,
  43540. bottom: 122/1390
  43541. }
  43542. },
  43543. side: {
  43544. height: math.unit(8 + 5/12, "feet"),
  43545. weight: math.unit(825, "lb"),
  43546. name: "Side",
  43547. image: {
  43548. source: "./media/characters/cobalt-charizard/side.svg",
  43549. extra: 1348/1257,
  43550. bottom: 58/1406
  43551. }
  43552. },
  43553. gMax: {
  43554. height: math.unit(134 + 11/12, "feet"),
  43555. name: "G-Max",
  43556. image: {
  43557. source: "./media/characters/cobalt-charizard/g-max.svg",
  43558. extra: 1835/1541,
  43559. bottom: 151/1986
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(8 + 5/12, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(6 + 3/12, "feet"),
  43576. weight: math.unit(210, "lb"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/stella/front.svg",
  43580. extra: 3549/3335,
  43581. bottom: 51/3600
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Normal",
  43588. height: math.unit(6 + 3/12, "feet"),
  43589. default: true
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(5, "feet"),
  43598. weight: math.unit(90, "lb"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/riley-bishop/front.svg",
  43602. extra: 1450/1428,
  43603. bottom: 152/1602
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(5, "feet"),
  43611. default: true
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43617. {
  43618. side: {
  43619. height: math.unit(8 + 2/12, "feet"),
  43620. weight: math.unit(500, "kg"),
  43621. name: "Side",
  43622. image: {
  43623. source: "./media/characters/theo-arcanine/side.svg",
  43624. extra: 1342/1074,
  43625. bottom: 111/1453
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Normal",
  43632. height: math.unit(8 + 2/12, "feet"),
  43633. default: true
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43639. {
  43640. front: {
  43641. height: math.unit(4, "feet"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/kali/front.svg",
  43645. extra: 1921/1357,
  43646. bottom: 70/1991
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Normal",
  43653. height: math.unit(4, "feet"),
  43654. default: true
  43655. },
  43656. {
  43657. name: "Macro",
  43658. height: math.unit(32, "meters")
  43659. },
  43660. {
  43661. name: "Macro+",
  43662. height: math.unit(150, "meters")
  43663. },
  43664. {
  43665. name: "Megamacro",
  43666. height: math.unit(7500, "meters")
  43667. },
  43668. {
  43669. name: "Megamacro+",
  43670. height: math.unit(80, "kilometers")
  43671. },
  43672. ]
  43673. ))
  43674. characterMakers.push(() => makeCharacter(
  43675. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43676. {
  43677. side: {
  43678. height: math.unit(5 + 11/12, "feet"),
  43679. weight: math.unit(236, "lb"),
  43680. name: "Side",
  43681. image: {
  43682. source: "./media/characters/gapp/side.svg",
  43683. extra: 775/340,
  43684. bottom: 58/833
  43685. }
  43686. },
  43687. mouth: {
  43688. height: math.unit(2.98, "feet"),
  43689. name: "Mouth",
  43690. image: {
  43691. source: "./media/characters/gapp/mouth.svg"
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Normal",
  43698. height: math.unit(5 + 1/12, "feet"),
  43699. default: true
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(6, "feet"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/persephone/front.svg",
  43711. extra: 1895/1717,
  43712. bottom: 96/1991
  43713. }
  43714. },
  43715. back: {
  43716. height: math.unit(6, "feet"),
  43717. name: "Back",
  43718. image: {
  43719. source: "./media/characters/persephone/back.svg",
  43720. extra: 1868/1679,
  43721. bottom: 26/1894
  43722. }
  43723. },
  43724. casual: {
  43725. height: math.unit(6, "feet"),
  43726. name: "Casual",
  43727. image: {
  43728. source: "./media/characters/persephone/casual.svg",
  43729. extra: 1713/1541,
  43730. bottom: 76/1789
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Human Size",
  43737. height: math.unit(6, "feet")
  43738. },
  43739. {
  43740. name: "Big Steppy",
  43741. height: math.unit(600, "meters"),
  43742. default: true
  43743. },
  43744. {
  43745. name: "Galaxy Brain",
  43746. height: math.unit(1, "zettameter")
  43747. },
  43748. ]
  43749. ))
  43750. characterMakers.push(() => makeCharacter(
  43751. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43752. {
  43753. front: {
  43754. height: math.unit(1.85, "meters"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/riley-foxthing/front.svg",
  43758. extra: 1495/1354,
  43759. bottom: 122/1617
  43760. }
  43761. },
  43762. frontAlt: {
  43763. height: math.unit(1.85, "meters"),
  43764. name: "Front (Alt)",
  43765. image: {
  43766. source: "./media/characters/riley-foxthing/front-alt.svg",
  43767. extra: 1572/1389,
  43768. bottom: 116/1688
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Normal Sized",
  43775. height: math.unit(1.85, "meters"),
  43776. default: true
  43777. },
  43778. {
  43779. name: "Quite Sizable",
  43780. height: math.unit(5, "meters")
  43781. },
  43782. {
  43783. name: "Rather Large",
  43784. height: math.unit(20, "meters")
  43785. },
  43786. {
  43787. name: "Macro",
  43788. height: math.unit(450, "meters")
  43789. },
  43790. {
  43791. name: "Giga",
  43792. height: math.unit(5, "km")
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(6, "feet"),
  43801. weight: math.unit(200, "lb"),
  43802. name: "Front",
  43803. image: {
  43804. source: "./media/characters/blizzard/front.svg",
  43805. extra: 1136/990,
  43806. bottom: 136/1272
  43807. }
  43808. },
  43809. back: {
  43810. height: math.unit(6, "feet"),
  43811. weight: math.unit(200, "lb"),
  43812. name: "Back",
  43813. image: {
  43814. source: "./media/characters/blizzard/back.svg",
  43815. extra: 1175/1034,
  43816. bottom: 97/1272
  43817. }
  43818. },
  43819. sitting: {
  43820. height: math.unit(3.725, "feet"),
  43821. weight: math.unit(200, "lb"),
  43822. name: "Sitting",
  43823. image: {
  43824. source: "./media/characters/blizzard/sitting.svg",
  43825. extra: 581/485,
  43826. bottom: 90/671
  43827. }
  43828. },
  43829. frontWizard: {
  43830. height: math.unit(7.9, "feet"),
  43831. weight: math.unit(200, "lb"),
  43832. name: "Front (Wizard)",
  43833. image: {
  43834. source: "./media/characters/blizzard/front-wizard.svg"
  43835. }
  43836. },
  43837. backWizard: {
  43838. height: math.unit(7.9, "feet"),
  43839. weight: math.unit(200, "lb"),
  43840. name: "Back (Wizard)",
  43841. image: {
  43842. source: "./media/characters/blizzard/back-wizard.svg"
  43843. }
  43844. },
  43845. frontNsfw: {
  43846. height: math.unit(6, "feet"),
  43847. weight: math.unit(200, "lb"),
  43848. name: "Front (NSFW)",
  43849. image: {
  43850. source: "./media/characters/blizzard/front-nsfw.svg",
  43851. extra: 1136/990,
  43852. bottom: 136/1272
  43853. }
  43854. },
  43855. backNsfw: {
  43856. height: math.unit(6, "feet"),
  43857. weight: math.unit(200, "lb"),
  43858. name: "Back (NSFW)",
  43859. image: {
  43860. source: "./media/characters/blizzard/back-nsfw.svg",
  43861. extra: 1175/1034,
  43862. bottom: 97/1272
  43863. }
  43864. },
  43865. sittingNsfw: {
  43866. height: math.unit(3.725, "feet"),
  43867. weight: math.unit(200, "lb"),
  43868. name: "Sitting (NSFW)",
  43869. image: {
  43870. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43871. extra: 581/485,
  43872. bottom: 90/671
  43873. }
  43874. },
  43875. wizardFrontNsfw: {
  43876. height: math.unit(7.9, "feet"),
  43877. weight: math.unit(200, "lb"),
  43878. name: "Wizard (Front, NSFW)",
  43879. image: {
  43880. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Normal",
  43887. height: math.unit(6, "feet"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(5 + 2/12, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/lumi/front.svg",
  43900. extra: 1328/1268,
  43901. bottom: 103/1431
  43902. }
  43903. },
  43904. back: {
  43905. height: math.unit(5 + 2/12, "feet"),
  43906. name: "Back",
  43907. image: {
  43908. source: "./media/characters/lumi/back.svg",
  43909. extra: 1381/1327,
  43910. bottom: 43/1424
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Normal",
  43917. height: math.unit(5 + 2/12, "feet"),
  43918. default: true
  43919. },
  43920. ]
  43921. ))
  43922. characterMakers.push(() => makeCharacter(
  43923. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43924. {
  43925. front: {
  43926. height: math.unit(5 + 9/12, "feet"),
  43927. name: "Front",
  43928. image: {
  43929. source: "./media/characters/aliya-cotton/front.svg",
  43930. extra: 577/564,
  43931. bottom: 29/606
  43932. }
  43933. },
  43934. },
  43935. [
  43936. {
  43937. name: "Normal",
  43938. height: math.unit(5 + 9/12, "feet"),
  43939. default: true
  43940. },
  43941. ]
  43942. ))
  43943. characterMakers.push(() => makeCharacter(
  43944. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43945. {
  43946. front: {
  43947. height: math.unit(2.7, "meters"),
  43948. weight: math.unit(25000, "lb"),
  43949. name: "Front",
  43950. image: {
  43951. source: "./media/characters/noah-luxray/front.svg",
  43952. extra: 1644/825,
  43953. bottom: 339/1983
  43954. }
  43955. },
  43956. side: {
  43957. height: math.unit(2.97, "meters"),
  43958. weight: math.unit(25000, "lb"),
  43959. name: "Side",
  43960. image: {
  43961. source: "./media/characters/noah-luxray/side.svg",
  43962. extra: 1319/650,
  43963. bottom: 163/1482
  43964. }
  43965. },
  43966. dick: {
  43967. height: math.unit(7.4, "feet"),
  43968. weight: math.unit(2500, "lb"),
  43969. name: "Dick",
  43970. image: {
  43971. source: "./media/characters/noah-luxray/dick.svg"
  43972. }
  43973. },
  43974. dickAlt: {
  43975. height: math.unit(10.83, "feet"),
  43976. weight: math.unit(2500, "lb"),
  43977. name: "Dick-alt",
  43978. image: {
  43979. source: "./media/characters/noah-luxray/dick-alt.svg"
  43980. }
  43981. },
  43982. },
  43983. [
  43984. {
  43985. name: "BIG",
  43986. height: math.unit(2.7, "meters"),
  43987. default: true
  43988. },
  43989. ]
  43990. ))
  43991. characterMakers.push(() => makeCharacter(
  43992. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43993. {
  43994. standing: {
  43995. height: math.unit(183, "cm"),
  43996. weight: math.unit(68, "kg"),
  43997. name: "Standing",
  43998. image: {
  43999. source: "./media/characters/arion/standing.svg",
  44000. extra: 1869/1807,
  44001. bottom: 93/1962
  44002. }
  44003. },
  44004. reclining: {
  44005. height: math.unit(70.5, "cm"),
  44006. weight: math.unit(68, "lb"),
  44007. name: "Reclining",
  44008. image: {
  44009. source: "./media/characters/arion/reclining.svg",
  44010. extra: 937/870,
  44011. bottom: 63/1000
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Colossus Size, Low",
  44018. height: math.unit(33, "meters"),
  44019. default: true
  44020. },
  44021. {
  44022. name: "Colossus Size, Mid",
  44023. height: math.unit(52, "meters")
  44024. },
  44025. {
  44026. name: "Colossus Size, High",
  44027. height: math.unit(60, "meters")
  44028. },
  44029. {
  44030. name: "Titan Size, Low",
  44031. height: math.unit(91, "meters"),
  44032. },
  44033. {
  44034. name: "Titan Size, Mid",
  44035. height: math.unit(122, "meters")
  44036. },
  44037. {
  44038. name: "Titan Size, High",
  44039. height: math.unit(162, "meters")
  44040. },
  44041. ]
  44042. ))
  44043. characterMakers.push(() => makeCharacter(
  44044. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44045. {
  44046. front: {
  44047. height: math.unit(53, "meters"),
  44048. name: "Front",
  44049. image: {
  44050. source: "./media/characters/stellar-marbey/front.svg",
  44051. extra: 1913/1805,
  44052. bottom: 92/2005
  44053. }
  44054. },
  44055. back: {
  44056. height: math.unit(53, "meters"),
  44057. name: "Back",
  44058. image: {
  44059. source: "./media/characters/stellar-marbey/back.svg",
  44060. extra: 1960/1851,
  44061. bottom: 28/1988
  44062. }
  44063. },
  44064. mouth: {
  44065. height: math.unit(3.5, "meters"),
  44066. name: "Mouth",
  44067. image: {
  44068. source: "./media/characters/stellar-marbey/mouth.svg"
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Macro",
  44075. height: math.unit(53, "meters"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(8 + 1/12, "feet"),
  44085. weight: math.unit(233, "lb"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/matsu/front.svg",
  44089. extra: 832/772,
  44090. bottom: 40/872
  44091. }
  44092. },
  44093. back: {
  44094. height: math.unit(8 + 1/12, "feet"),
  44095. weight: math.unit(233, "lb"),
  44096. name: "Back",
  44097. image: {
  44098. source: "./media/characters/matsu/back.svg",
  44099. extra: 839/780,
  44100. bottom: 47/886
  44101. }
  44102. },
  44103. },
  44104. [
  44105. {
  44106. name: "Normal",
  44107. height: math.unit(8 + 1/12, "feet"),
  44108. default: true
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44114. {
  44115. front: {
  44116. height: math.unit(4, "feet"),
  44117. weight: math.unit(148, "lb"),
  44118. name: "Front",
  44119. image: {
  44120. source: "./media/characters/thiz/front.svg",
  44121. extra: 1913/1748,
  44122. bottom: 62/1975
  44123. }
  44124. },
  44125. },
  44126. [
  44127. {
  44128. name: "Normal",
  44129. height: math.unit(4, "feet"),
  44130. default: true
  44131. },
  44132. ]
  44133. ))
  44134. characterMakers.push(() => makeCharacter(
  44135. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44136. {
  44137. front: {
  44138. height: math.unit(7 + 6/12, "feet"),
  44139. weight: math.unit(267, "lb"),
  44140. name: "Front",
  44141. image: {
  44142. source: "./media/characters/marcel/front.svg",
  44143. extra: 1221/1096,
  44144. bottom: 76/1297
  44145. }
  44146. },
  44147. },
  44148. [
  44149. {
  44150. name: "Normal",
  44151. height: math.unit(7 + 6/12, "feet"),
  44152. default: true
  44153. },
  44154. ]
  44155. ))
  44156. characterMakers.push(() => makeCharacter(
  44157. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44158. {
  44159. side: {
  44160. height: math.unit(42, "meters"),
  44161. name: "Side",
  44162. image: {
  44163. source: "./media/characters/flake/side.svg",
  44164. extra: 1525/1306,
  44165. bottom: 209/1734
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Normal",
  44172. height: math.unit(42, "meters"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. characterMakers.push(() => makeCharacter(
  44178. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44179. {
  44180. dressed: {
  44181. height: math.unit(6 + 4/12, "feet"),
  44182. weight: math.unit(520, "lb"),
  44183. name: "Dressed",
  44184. image: {
  44185. source: "./media/characters/someonne/dressed.svg",
  44186. extra: 1020/1010,
  44187. bottom: 178/1198
  44188. }
  44189. },
  44190. undressed: {
  44191. height: math.unit(6 + 4/12, "feet"),
  44192. weight: math.unit(520, "lb"),
  44193. name: "Undressed",
  44194. image: {
  44195. source: "./media/characters/someonne/undressed.svg",
  44196. extra: 1019/1014,
  44197. bottom: 169/1188
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(6 + 4/12, "feet"),
  44205. default: true
  44206. },
  44207. ]
  44208. ))
  44209. characterMakers.push(() => makeCharacter(
  44210. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44211. {
  44212. front: {
  44213. height: math.unit(3, "feet"),
  44214. weight: math.unit(30, "lb"),
  44215. name: "Front",
  44216. image: {
  44217. source: "./media/characters/till/front.svg",
  44218. extra: 892/823,
  44219. bottom: 55/947
  44220. }
  44221. },
  44222. },
  44223. [
  44224. {
  44225. name: "Normal",
  44226. height: math.unit(3, "feet"),
  44227. default: true
  44228. },
  44229. ]
  44230. ))
  44231. characterMakers.push(() => makeCharacter(
  44232. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44233. {
  44234. front: {
  44235. height: math.unit(9 + 8/12, "feet"),
  44236. weight: math.unit(800, "lb"),
  44237. name: "Front",
  44238. image: {
  44239. source: "./media/characters/sydney-heki/front.svg",
  44240. extra: 1360/1300,
  44241. bottom: 22/1382
  44242. }
  44243. },
  44244. back: {
  44245. height: math.unit(9 + 8/12, "feet"),
  44246. weight: math.unit(800, "lb"),
  44247. name: "Back",
  44248. image: {
  44249. source: "./media/characters/sydney-heki/back.svg",
  44250. extra: 1356/1293,
  44251. bottom: 12/1368
  44252. }
  44253. },
  44254. frontDressed: {
  44255. height: math.unit(9 + 8/12, "feet"),
  44256. weight: math.unit(800, "lb"),
  44257. name: "Front-dressed",
  44258. image: {
  44259. source: "./media/characters/sydney-heki/front-dressed.svg",
  44260. extra: 1360/1300,
  44261. bottom: 22/1382
  44262. }
  44263. },
  44264. },
  44265. [
  44266. {
  44267. name: "Normal",
  44268. height: math.unit(9 + 8/12, "feet"),
  44269. default: true
  44270. },
  44271. {
  44272. name: "Macro",
  44273. height: math.unit(500, "feet")
  44274. },
  44275. {
  44276. name: "Megamacro",
  44277. height: math.unit(3.6, "miles")
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(200, "cm"),
  44286. weight: math.unit(250, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/fowler-karlsson/front.svg",
  44290. extra: 897/845,
  44291. bottom: 123/1020
  44292. }
  44293. },
  44294. back: {
  44295. height: math.unit(200, "cm"),
  44296. weight: math.unit(250, "lb"),
  44297. name: "Back",
  44298. image: {
  44299. source: "./media/characters/fowler-karlsson/back.svg",
  44300. extra: 999/944,
  44301. bottom: 26/1025
  44302. }
  44303. },
  44304. dick: {
  44305. height: math.unit(1.92, "feet"),
  44306. weight: math.unit(150, "lb"),
  44307. name: "Dick",
  44308. image: {
  44309. source: "./media/characters/fowler-karlsson/dick.svg"
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(200, "cm"),
  44317. default: true
  44318. },
  44319. {
  44320. name: "Smaller Macro",
  44321. height: math.unit(90, "m")
  44322. },
  44323. {
  44324. name: "Macro",
  44325. height: math.unit(150, "m")
  44326. },
  44327. {
  44328. name: "Bigger Macro",
  44329. height: math.unit(300, "m")
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44335. {
  44336. side: {
  44337. height: math.unit(8 + 2/12, "feet"),
  44338. weight: math.unit(1, "tonne"),
  44339. name: "Side",
  44340. image: {
  44341. source: "./media/characters/rylide/side.svg",
  44342. extra: 1318/1034,
  44343. bottom: 106/1424
  44344. }
  44345. },
  44346. sitting: {
  44347. height: math.unit(303, "cm"),
  44348. weight: math.unit(1, "tonne"),
  44349. name: "Sitting",
  44350. image: {
  44351. source: "./media/characters/rylide/sitting.svg",
  44352. extra: 1303/1103,
  44353. bottom: 36/1339
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(8 + 2/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(5 + 10/12, "feet"),
  44370. weight: math.unit(160, "lb"),
  44371. name: "Front",
  44372. image: {
  44373. source: "./media/characters/pudask/front.svg",
  44374. extra: 1616/1590,
  44375. bottom: 161/1777
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Ferret Height",
  44382. height: math.unit(2 + 5/12, "feet")
  44383. },
  44384. {
  44385. name: "Canon Height",
  44386. height: math.unit(5 + 10/12, "feet"),
  44387. default: true
  44388. },
  44389. ]
  44390. ))
  44391. characterMakers.push(() => makeCharacter(
  44392. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44393. {
  44394. front: {
  44395. height: math.unit(3 + 6/12, "feet"),
  44396. weight: math.unit(60, "lb"),
  44397. name: "Front",
  44398. image: {
  44399. source: "./media/characters/ramita/front.svg",
  44400. extra: 1402/1232,
  44401. bottom: 62/1464
  44402. }
  44403. },
  44404. dressed: {
  44405. height: math.unit(3 + 6/12, "feet"),
  44406. weight: math.unit(60, "lb"),
  44407. name: "Dressed",
  44408. image: {
  44409. source: "./media/characters/ramita/dressed.svg",
  44410. extra: 1534/1249,
  44411. bottom: 50/1584
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Normal",
  44418. height: math.unit(3 + 6/12, "feet"),
  44419. default: true
  44420. },
  44421. ]
  44422. ))
  44423. characterMakers.push(() => makeCharacter(
  44424. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44425. {
  44426. front: {
  44427. height: math.unit(8, "feet"),
  44428. name: "Front",
  44429. image: {
  44430. source: "./media/characters/ark/front.svg",
  44431. extra: 772/693,
  44432. bottom: 45/817
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(8, "feet"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(6, "feet"),
  44449. weight: math.unit(250, "lb"),
  44450. volume: math.unit(5/8, "gallons"),
  44451. name: "Front",
  44452. image: {
  44453. source: "./media/characters/ludwig-horn/front.svg",
  44454. extra: 1782/1635,
  44455. bottom: 96/1878
  44456. }
  44457. },
  44458. back: {
  44459. height: math.unit(6, "feet"),
  44460. weight: math.unit(250, "lb"),
  44461. volume: math.unit(5/8, "gallons"),
  44462. name: "Back",
  44463. image: {
  44464. source: "./media/characters/ludwig-horn/back.svg",
  44465. extra: 1874/1729,
  44466. bottom: 27/1901
  44467. }
  44468. },
  44469. dick: {
  44470. height: math.unit(1.05, "feet"),
  44471. weight: math.unit(15, "lb"),
  44472. volume: math.unit(5/8, "gallons"),
  44473. name: "Dick",
  44474. image: {
  44475. source: "./media/characters/ludwig-horn/dick.svg"
  44476. }
  44477. },
  44478. },
  44479. [
  44480. {
  44481. name: "Small",
  44482. height: math.unit(6, "feet")
  44483. },
  44484. {
  44485. name: "Typical",
  44486. height: math.unit(12, "feet"),
  44487. default: true
  44488. },
  44489. {
  44490. name: "Building",
  44491. height: math.unit(80, "feet")
  44492. },
  44493. {
  44494. name: "Town",
  44495. height: math.unit(800, "feet")
  44496. },
  44497. {
  44498. name: "Kingdom",
  44499. height: math.unit(80000, "feet")
  44500. },
  44501. {
  44502. name: "Planet",
  44503. height: math.unit(8000000, "feet")
  44504. },
  44505. {
  44506. name: "Universe",
  44507. height: math.unit(8000000000, "feet")
  44508. },
  44509. {
  44510. name: "Transcended",
  44511. height: math.unit(8e27, "feet")
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(5, "feet"),
  44520. weight: math.unit(50, "kg"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/biot-avery/front.svg",
  44524. extra: 1295/1232,
  44525. bottom: 86/1381
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(5, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(6, "feet"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/kitsune-kiro/front.svg",
  44545. extra: 1270/1158,
  44546. bottom: 42/1312
  44547. }
  44548. },
  44549. frontAlt: {
  44550. height: math.unit(6, "feet"),
  44551. name: "Front-alt",
  44552. image: {
  44553. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44554. extra: 1130/1081,
  44555. bottom: 36/1166
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Smol",
  44562. height: math.unit(3, "feet")
  44563. },
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(6, "feet"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(6, "feet"),
  44576. weight: math.unit(125, "lb"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/jack-thatcher/front.svg",
  44580. extra: 1474/1370,
  44581. bottom: 26/1500
  44582. }
  44583. },
  44584. back: {
  44585. height: math.unit(6, "feet"),
  44586. weight: math.unit(125, "lb"),
  44587. name: "Back",
  44588. image: {
  44589. source: "./media/characters/jack-thatcher/back.svg",
  44590. extra: 1489/1384,
  44591. bottom: 18/1507
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Normal",
  44598. height: math.unit(6, "feet"),
  44599. default: true
  44600. },
  44601. {
  44602. name: "Macro",
  44603. height: math.unit(75, "feet")
  44604. },
  44605. {
  44606. name: "Macro-er",
  44607. height: math.unit(250, "feet")
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(7, "feet"),
  44616. weight: math.unit(110, "kg"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/max-hyper/front.svg",
  44620. extra: 1969/1881,
  44621. bottom: 49/2018
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(7, "feet"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44635. {
  44636. front: {
  44637. height: math.unit(5 + 5/12, "feet"),
  44638. weight: math.unit(160, "lb"),
  44639. name: "Front",
  44640. image: {
  44641. source: "./media/characters/spook/front.svg",
  44642. extra: 794/791,
  44643. bottom: 54/848
  44644. }
  44645. },
  44646. back: {
  44647. height: math.unit(5 + 5/12, "feet"),
  44648. weight: math.unit(160, "lb"),
  44649. name: "Back",
  44650. image: {
  44651. source: "./media/characters/spook/back.svg",
  44652. extra: 812/798,
  44653. bottom: 32/844
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal",
  44660. height: math.unit(5 + 5/12, "feet"),
  44661. default: true
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44667. {
  44668. front: {
  44669. height: math.unit(18, "feet"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/xeaduulix/front.svg",
  44673. extra: 1380/1166,
  44674. bottom: 110/1490
  44675. }
  44676. },
  44677. back: {
  44678. height: math.unit(18, "feet"),
  44679. name: "Back",
  44680. image: {
  44681. source: "./media/characters/xeaduulix/back.svg",
  44682. extra: 1592/1170,
  44683. bottom: 128/1720
  44684. }
  44685. },
  44686. frontNsfw: {
  44687. height: math.unit(18, "feet"),
  44688. name: "Front (NSFW)",
  44689. image: {
  44690. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44691. extra: 1380/1166,
  44692. bottom: 110/1490
  44693. }
  44694. },
  44695. backNsfw: {
  44696. height: math.unit(18, "feet"),
  44697. name: "Back (NSFW)",
  44698. image: {
  44699. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44700. extra: 1592/1170,
  44701. bottom: 128/1720
  44702. }
  44703. },
  44704. },
  44705. [
  44706. {
  44707. name: "Normal",
  44708. height: math.unit(18, "feet"),
  44709. default: true
  44710. },
  44711. ]
  44712. ))
  44713. characterMakers.push(() => makeCharacter(
  44714. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44715. {
  44716. spreadWings: {
  44717. height: math.unit(20, "feet"),
  44718. name: "Spread Wings",
  44719. image: {
  44720. source: "./media/characters/fledge/spread-wings.svg",
  44721. extra: 693/635,
  44722. bottom: 26/719
  44723. }
  44724. },
  44725. front: {
  44726. height: math.unit(20, "feet"),
  44727. name: "Front",
  44728. image: {
  44729. source: "./media/characters/fledge/front.svg",
  44730. extra: 684/637,
  44731. bottom: 18/702
  44732. }
  44733. },
  44734. frontAlt: {
  44735. height: math.unit(20, "feet"),
  44736. name: "Front (Alt)",
  44737. image: {
  44738. source: "./media/characters/fledge/front-alt.svg",
  44739. extra: 708/664,
  44740. bottom: 13/721
  44741. }
  44742. },
  44743. back: {
  44744. height: math.unit(20, "feet"),
  44745. name: "Back",
  44746. image: {
  44747. source: "./media/characters/fledge/back.svg",
  44748. extra: 718/634,
  44749. bottom: 22/740
  44750. }
  44751. },
  44752. head: {
  44753. height: math.unit(5.55, "feet"),
  44754. name: "Head",
  44755. image: {
  44756. source: "./media/characters/fledge/head.svg"
  44757. }
  44758. },
  44759. headAlt: {
  44760. height: math.unit(5.1, "feet"),
  44761. name: "Head (Alt)",
  44762. image: {
  44763. source: "./media/characters/fledge/head-alt.svg"
  44764. }
  44765. },
  44766. },
  44767. [
  44768. {
  44769. name: "Small",
  44770. height: math.unit(6 + 2/12, "feet")
  44771. },
  44772. {
  44773. name: "Big",
  44774. height: math.unit(20, "feet"),
  44775. default: true
  44776. },
  44777. {
  44778. name: "Giant",
  44779. height: math.unit(100, "feet")
  44780. },
  44781. {
  44782. name: "Macro",
  44783. height: math.unit(200, "feet")
  44784. },
  44785. ]
  44786. ))
  44787. characterMakers.push(() => makeCharacter(
  44788. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44789. {
  44790. front: {
  44791. height: math.unit(1, "meter"),
  44792. name: "Front",
  44793. image: {
  44794. source: "./media/characters/atlas-morenai/front.svg",
  44795. extra: 1275/1043,
  44796. bottom: 19/1294
  44797. }
  44798. },
  44799. back: {
  44800. height: math.unit(1, "meter"),
  44801. name: "Back",
  44802. image: {
  44803. source: "./media/characters/atlas-morenai/back.svg",
  44804. extra: 1141/1001,
  44805. bottom: 25/1166
  44806. }
  44807. },
  44808. },
  44809. [
  44810. {
  44811. name: "Normal",
  44812. height: math.unit(1, "meter"),
  44813. default: true
  44814. },
  44815. {
  44816. name: "Magic-Infused",
  44817. height: math.unit(5, "meters")
  44818. },
  44819. ]
  44820. ))
  44821. characterMakers.push(() => makeCharacter(
  44822. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44823. {
  44824. front: {
  44825. height: math.unit(5, "meters"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/cintia/front.svg",
  44829. extra: 1312/1228,
  44830. bottom: 38/1350
  44831. }
  44832. },
  44833. back: {
  44834. height: math.unit(5, "meters"),
  44835. name: "Back",
  44836. image: {
  44837. source: "./media/characters/cintia/back.svg",
  44838. extra: 1260/1166,
  44839. bottom: 98/1358
  44840. }
  44841. },
  44842. frontDick: {
  44843. height: math.unit(5, "meters"),
  44844. name: "Front (Dick)",
  44845. image: {
  44846. source: "./media/characters/cintia/front-dick.svg",
  44847. extra: 1312/1228,
  44848. bottom: 38/1350
  44849. }
  44850. },
  44851. backDick: {
  44852. height: math.unit(5, "meters"),
  44853. name: "Back (Dick)",
  44854. image: {
  44855. source: "./media/characters/cintia/back-dick.svg",
  44856. extra: 1260/1166,
  44857. bottom: 98/1358
  44858. }
  44859. },
  44860. bust: {
  44861. height: math.unit(1.97, "meters"),
  44862. name: "Bust",
  44863. image: {
  44864. source: "./media/characters/cintia/bust.svg",
  44865. extra: 617/565,
  44866. bottom: 0/617
  44867. }
  44868. },
  44869. },
  44870. [
  44871. {
  44872. name: "Normal",
  44873. height: math.unit(5, "meters"),
  44874. default: true
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44880. {
  44881. side: {
  44882. height: math.unit(100, "feet"),
  44883. name: "Side",
  44884. image: {
  44885. source: "./media/characters/denora/side.svg",
  44886. extra: 875/803,
  44887. bottom: 9/884
  44888. }
  44889. },
  44890. },
  44891. [
  44892. {
  44893. name: "Standard",
  44894. height: math.unit(100, "feet"),
  44895. default: true
  44896. },
  44897. {
  44898. name: "Grand",
  44899. height: math.unit(1000, "feet")
  44900. },
  44901. {
  44902. name: "Conquering",
  44903. height: math.unit(10000, "feet")
  44904. },
  44905. ]
  44906. ))
  44907. characterMakers.push(() => makeCharacter(
  44908. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44909. {
  44910. dressed: {
  44911. height: math.unit(8 + 5/12, "feet"),
  44912. weight: math.unit(700, "lb"),
  44913. name: "Dressed",
  44914. image: {
  44915. source: "./media/characters/kiva/dressed.svg",
  44916. extra: 1102/1055,
  44917. bottom: 60/1162
  44918. }
  44919. },
  44920. nude: {
  44921. height: math.unit(8 + 5/12, "feet"),
  44922. weight: math.unit(700, "lb"),
  44923. name: "Nude",
  44924. image: {
  44925. source: "./media/characters/kiva/nude.svg",
  44926. extra: 1102/1055,
  44927. bottom: 60/1162
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Base Height",
  44934. height: math.unit(8 + 5/12, "feet"),
  44935. default: true
  44936. },
  44937. {
  44938. name: "Macro",
  44939. height: math.unit(100, "feet")
  44940. },
  44941. {
  44942. name: "Max",
  44943. height: math.unit(3280, "feet")
  44944. },
  44945. ]
  44946. ))
  44947. characterMakers.push(() => makeCharacter(
  44948. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44949. {
  44950. front: {
  44951. height: math.unit(6 + 8/12, "feet"),
  44952. weight: math.unit(250, "lb"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/ztragon/front.svg",
  44956. extra: 1825/1684,
  44957. bottom: 98/1923
  44958. }
  44959. },
  44960. },
  44961. [
  44962. {
  44963. name: "Normal",
  44964. height: math.unit(6 + 8/12, "feet"),
  44965. default: true
  44966. },
  44967. {
  44968. name: "Macro",
  44969. height: math.unit(80, "feet")
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44975. {
  44976. front: {
  44977. height: math.unit(10.4, "feet"),
  44978. weight: math.unit(2, "tons"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/yesenia/front.svg",
  44982. extra: 1479/1474,
  44983. bottom: 233/1712
  44984. }
  44985. },
  44986. },
  44987. [
  44988. {
  44989. name: "Normal",
  44990. height: math.unit(10.4, "feet"),
  44991. default: true
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44997. {
  44998. normal: {
  44999. height: math.unit(6 + 1/12, "feet"),
  45000. weight: math.unit(180, "lb"),
  45001. name: "Normal",
  45002. image: {
  45003. source: "./media/characters/leanne-lycheborne/normal.svg",
  45004. extra: 1748/1660,
  45005. bottom: 98/1846
  45006. }
  45007. },
  45008. were: {
  45009. height: math.unit(12, "feet"),
  45010. weight: math.unit(1600, "lb"),
  45011. name: "Were",
  45012. image: {
  45013. source: "./media/characters/leanne-lycheborne/were.svg",
  45014. extra: 1485/1432,
  45015. bottom: 66/1551
  45016. }
  45017. },
  45018. },
  45019. [
  45020. {
  45021. name: "Normal",
  45022. height: math.unit(6 + 1/12, "feet"),
  45023. default: true
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45029. {
  45030. side: {
  45031. height: math.unit(13, "feet"),
  45032. name: "Side",
  45033. image: {
  45034. source: "./media/characters/kira-tyler/side.svg",
  45035. extra: 693/393,
  45036. bottom: 58/751
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(13, "feet"),
  45044. default: true
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(10.3, "feet"),
  45053. weight: math.unit(150, "lb"),
  45054. name: "Front",
  45055. image: {
  45056. source: "./media/characters/blaze/front.svg",
  45057. extra: 1378/1286,
  45058. bottom: 172/1550
  45059. }
  45060. },
  45061. },
  45062. [
  45063. {
  45064. name: "Normal",
  45065. height: math.unit(10.3, "feet"),
  45066. default: true
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45072. {
  45073. side: {
  45074. height: math.unit(2, "meters"),
  45075. weight: math.unit(400, "kg"),
  45076. name: "Side",
  45077. image: {
  45078. source: "./media/characters/anu/side.svg",
  45079. extra: 506/394,
  45080. bottom: 18/524
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Humanoid",
  45087. height: math.unit(2, "meters")
  45088. },
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(5, "meters"),
  45092. default: true
  45093. },
  45094. ]
  45095. ))
  45096. characterMakers.push(() => makeCharacter(
  45097. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45098. {
  45099. front: {
  45100. height: math.unit(5 + 5/12, "feet"),
  45101. weight: math.unit(170, "lb"),
  45102. name: "Front",
  45103. image: {
  45104. source: "./media/characters/synx-the-lynx/front.svg",
  45105. extra: 1893/1745,
  45106. bottom: 17/1910
  45107. }
  45108. },
  45109. side: {
  45110. height: math.unit(5 + 5/12, "feet"),
  45111. weight: math.unit(170, "lb"),
  45112. name: "Side",
  45113. image: {
  45114. source: "./media/characters/synx-the-lynx/side.svg",
  45115. extra: 1884/1740,
  45116. bottom: 39/1923
  45117. }
  45118. },
  45119. back: {
  45120. height: math.unit(5 + 5/12, "feet"),
  45121. weight: math.unit(170, "lb"),
  45122. name: "Back",
  45123. image: {
  45124. source: "./media/characters/synx-the-lynx/back.svg",
  45125. extra: 1903/1755,
  45126. bottom: 14/1917
  45127. }
  45128. },
  45129. },
  45130. [
  45131. {
  45132. name: "Normal",
  45133. height: math.unit(5 + 5/12, "feet"),
  45134. default: true
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45140. {
  45141. back: {
  45142. height: math.unit(15, "feet"),
  45143. name: "Back",
  45144. image: {
  45145. source: "./media/characters/nadezda-fex/back.svg",
  45146. extra: 1695/1481,
  45147. bottom: 25/1720
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(15, "feet"),
  45155. default: true
  45156. },
  45157. {
  45158. name: "Macro",
  45159. height: math.unit(2.5, "miles")
  45160. },
  45161. {
  45162. name: "Goddess",
  45163. height: math.unit(2, "multiverses")
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45169. {
  45170. front: {
  45171. height: math.unit(216, "cm"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/lev/front.svg",
  45175. extra: 1728/1670,
  45176. bottom: 82/1810
  45177. }
  45178. },
  45179. back: {
  45180. height: math.unit(216, "cm"),
  45181. name: "Back",
  45182. image: {
  45183. source: "./media/characters/lev/back.svg",
  45184. extra: 1738/1675,
  45185. bottom: 24/1762
  45186. }
  45187. },
  45188. dressed: {
  45189. height: math.unit(216, "cm"),
  45190. name: "Dressed",
  45191. image: {
  45192. source: "./media/characters/lev/dressed.svg",
  45193. extra: 1397/1351,
  45194. bottom: 73/1470
  45195. }
  45196. },
  45197. head: {
  45198. height: math.unit(0.51, "meter"),
  45199. name: "Head",
  45200. image: {
  45201. source: "./media/characters/lev/head.svg"
  45202. }
  45203. },
  45204. },
  45205. [
  45206. {
  45207. name: "Normal",
  45208. height: math.unit(216, "cm"),
  45209. default: true
  45210. },
  45211. {
  45212. name: "Relatively Macro",
  45213. height: math.unit(80, "meters")
  45214. },
  45215. {
  45216. name: "Megamacro",
  45217. height: math.unit(21600, "meters")
  45218. },
  45219. {
  45220. name: "Megamacro+",
  45221. height: math.unit(64800, "meters")
  45222. },
  45223. ]
  45224. ))
  45225. characterMakers.push(() => makeCharacter(
  45226. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45227. {
  45228. front: {
  45229. height: math.unit(2, "meters"),
  45230. weight: math.unit(80, "kg"),
  45231. name: "Front",
  45232. image: {
  45233. source: "./media/characters/moka/front.svg",
  45234. extra: 1337/1255,
  45235. bottom: 58/1395
  45236. }
  45237. },
  45238. },
  45239. [
  45240. {
  45241. name: "Micro",
  45242. height: math.unit(15, "cm")
  45243. },
  45244. {
  45245. name: "Normal",
  45246. height: math.unit(2, "meters"),
  45247. default: true
  45248. },
  45249. {
  45250. name: "Macro",
  45251. height: math.unit(20, "meters"),
  45252. },
  45253. ]
  45254. ))
  45255. characterMakers.push(() => makeCharacter(
  45256. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45257. {
  45258. front: {
  45259. height: math.unit(9, "feet"),
  45260. weight: math.unit(240, "lb"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/kuzco/front.svg",
  45264. extra: 1593/1487,
  45265. bottom: 32/1625
  45266. }
  45267. },
  45268. side: {
  45269. height: math.unit(9, "feet"),
  45270. weight: math.unit(240, "lb"),
  45271. name: "Side",
  45272. image: {
  45273. source: "./media/characters/kuzco/side.svg",
  45274. extra: 1575/1485,
  45275. bottom: 30/1605
  45276. }
  45277. },
  45278. back: {
  45279. height: math.unit(9, "feet"),
  45280. weight: math.unit(240, "lb"),
  45281. name: "Back",
  45282. image: {
  45283. source: "./media/characters/kuzco/back.svg",
  45284. extra: 1603/1514,
  45285. bottom: 14/1617
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(9, "feet"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45299. {
  45300. side: {
  45301. height: math.unit(2, "meters"),
  45302. weight: math.unit(300, "kg"),
  45303. name: "Side",
  45304. image: {
  45305. source: "./media/characters/ceruleus/side.svg",
  45306. extra: 1068/974,
  45307. bottom: 126/1194
  45308. }
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Normal",
  45314. height: math.unit(16, "meters"),
  45315. default: true
  45316. },
  45317. ]
  45318. ))
  45319. characterMakers.push(() => makeCharacter(
  45320. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45321. {
  45322. front: {
  45323. height: math.unit(9, "feet"),
  45324. weight: math.unit(500, "kg"),
  45325. name: "Front",
  45326. image: {
  45327. source: "./media/characters/acouya/front.svg",
  45328. extra: 1660/1473,
  45329. bottom: 28/1688
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(9, "feet"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45343. {
  45344. front: {
  45345. height: math.unit(5 + 6/12, "feet"),
  45346. weight: math.unit(195, "lb"),
  45347. name: "Front",
  45348. image: {
  45349. source: "./media/characters/vant/front.svg",
  45350. extra: 1396/1320,
  45351. bottom: 20/1416
  45352. }
  45353. },
  45354. back: {
  45355. height: math.unit(5 + 6/12, "feet"),
  45356. weight: math.unit(195, "lb"),
  45357. name: "Back",
  45358. image: {
  45359. source: "./media/characters/vant/back.svg",
  45360. extra: 1396/1320,
  45361. bottom: 20/1416
  45362. }
  45363. },
  45364. maw: {
  45365. height: math.unit(0.75, "feet"),
  45366. name: "Maw",
  45367. image: {
  45368. source: "./media/characters/vant/maw.svg"
  45369. }
  45370. },
  45371. paw: {
  45372. height: math.unit(1.07, "feet"),
  45373. name: "Paw",
  45374. image: {
  45375. source: "./media/characters/vant/paw.svg"
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Micro",
  45382. height: math.unit(0.25, "inches")
  45383. },
  45384. {
  45385. name: "Normal",
  45386. height: math.unit(5 + 6/12, "feet"),
  45387. default: true
  45388. },
  45389. {
  45390. name: "Macro",
  45391. height: math.unit(75, "feet")
  45392. },
  45393. ]
  45394. ))
  45395. characterMakers.push(() => makeCharacter(
  45396. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45397. {
  45398. front: {
  45399. height: math.unit(30, "meters"),
  45400. weight: math.unit(363, "tons"),
  45401. name: "Front",
  45402. image: {
  45403. source: "./media/characters/ahra/front.svg",
  45404. extra: 1914/1814,
  45405. bottom: 46/1960
  45406. }
  45407. },
  45408. },
  45409. [
  45410. {
  45411. name: "Macro",
  45412. height: math.unit(30, "meters"),
  45413. default: true
  45414. },
  45415. ]
  45416. ))
  45417. characterMakers.push(() => makeCharacter(
  45418. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45419. {
  45420. undressed: {
  45421. height: math.unit(2, "m"),
  45422. weight: math.unit(250, "kg"),
  45423. name: "Undressed",
  45424. image: {
  45425. source: "./media/characters/coriander/undressed.svg",
  45426. extra: 1757/1606,
  45427. bottom: 107/1864
  45428. }
  45429. },
  45430. dressed: {
  45431. height: math.unit(2, "m"),
  45432. weight: math.unit(250, "kg"),
  45433. name: "Dressed",
  45434. image: {
  45435. source: "./media/characters/coriander/dressed.svg",
  45436. extra: 1757/1606,
  45437. bottom: 107/1864
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Normal",
  45444. height: math.unit(4, "meters"),
  45445. default: true
  45446. },
  45447. {
  45448. name: "XL",
  45449. height: math.unit(6, "meters")
  45450. },
  45451. {
  45452. name: "XXL",
  45453. height: math.unit(8, "meters")
  45454. },
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45459. {
  45460. front: {
  45461. height: math.unit(6, "feet"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/syrinx/front.svg",
  45465. extra: 1557/1259,
  45466. bottom: 171/1728
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(6 + 3/12, "feet"),
  45474. default: true
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45480. {
  45481. front: {
  45482. height: math.unit(11 + 6/12, "feet"),
  45483. weight: math.unit(1.5, "tons"),
  45484. name: "Front",
  45485. image: {
  45486. source: "./media/characters/bor/front.svg",
  45487. extra: 1189/1109,
  45488. bottom: 170/1359
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(11 + 6/12, "feet"),
  45496. default: true
  45497. },
  45498. {
  45499. name: "Macro",
  45500. height: math.unit(32 + 9/12, "feet")
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45506. {
  45507. anthro: {
  45508. height: math.unit(9, "feet"),
  45509. weight: math.unit(2076, "lb"),
  45510. name: "Anthro",
  45511. image: {
  45512. source: "./media/characters/abacus/anthro.svg",
  45513. extra: 1540/1494,
  45514. bottom: 233/1773
  45515. }
  45516. },
  45517. pigeon: {
  45518. height: math.unit(1, "feet"),
  45519. name: "Pigeon",
  45520. image: {
  45521. source: "./media/characters/abacus/pigeon.svg",
  45522. extra: 528/525,
  45523. bottom: 46/574
  45524. }
  45525. },
  45526. },
  45527. [
  45528. {
  45529. name: "Normal",
  45530. height: math.unit(9, "feet"),
  45531. default: true
  45532. },
  45533. ]
  45534. ))
  45535. characterMakers.push(() => makeCharacter(
  45536. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45537. {
  45538. side: {
  45539. height: math.unit(6, "feet"),
  45540. name: "Side",
  45541. image: {
  45542. source: "./media/characters/delkhan/side.svg",
  45543. extra: 1884/1786,
  45544. bottom: 308/2192
  45545. }
  45546. },
  45547. head: {
  45548. height: math.unit(3.38, "feet"),
  45549. name: "Head",
  45550. image: {
  45551. source: "./media/characters/delkhan/head.svg"
  45552. }
  45553. },
  45554. },
  45555. [
  45556. {
  45557. name: "Normal",
  45558. height: math.unit(72, "feet"),
  45559. default: true
  45560. },
  45561. {
  45562. name: "Giant",
  45563. height: math.unit(172, "feet")
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45569. {
  45570. standing: {
  45571. height: math.unit(6, "feet"),
  45572. name: "Standing",
  45573. image: {
  45574. source: "./media/characters/euchidat/standing.svg",
  45575. extra: 1612/1553,
  45576. bottom: 116/1728
  45577. }
  45578. },
  45579. leaning: {
  45580. height: math.unit(6, "feet"),
  45581. name: "Leaning",
  45582. image: {
  45583. source: "./media/characters/euchidat/leaning.svg",
  45584. extra: 1719/1674,
  45585. bottom: 27/1746
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(175, "feet"),
  45593. default: true
  45594. },
  45595. {
  45596. name: "Megamacro",
  45597. height: math.unit(190, "miles")
  45598. },
  45599. {
  45600. name: "Gigamacro",
  45601. height: math.unit(190000, "miles")
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(6, "feet"),
  45610. weight: math.unit(150, "lb"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/rebecca-stack/front.svg",
  45614. extra: 1256/1201,
  45615. bottom: 18/1274
  45616. }
  45617. },
  45618. },
  45619. [
  45620. {
  45621. name: "Normal",
  45622. height: math.unit(5 + 8/12, "feet"),
  45623. default: true
  45624. },
  45625. {
  45626. name: "Demolitionist",
  45627. height: math.unit(200, "feet")
  45628. },
  45629. {
  45630. name: "Out of Control",
  45631. height: math.unit(2, "miles")
  45632. },
  45633. {
  45634. name: "Giga",
  45635. height: math.unit(7200, "miles")
  45636. },
  45637. ]
  45638. ))
  45639. characterMakers.push(() => makeCharacter(
  45640. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45641. {
  45642. front: {
  45643. height: math.unit(6, "feet"),
  45644. weight: math.unit(150, "lb"),
  45645. name: "Front",
  45646. image: {
  45647. source: "./media/characters/jenny-cartwright/front.svg",
  45648. extra: 1384/1376,
  45649. bottom: 58/1442
  45650. }
  45651. },
  45652. },
  45653. [
  45654. {
  45655. name: "Normal",
  45656. height: math.unit(6 + 7/12, "feet"),
  45657. default: true
  45658. },
  45659. {
  45660. name: "Librarian",
  45661. height: math.unit(55, "feet")
  45662. },
  45663. {
  45664. name: "Sightseer",
  45665. height: math.unit(50, "miles")
  45666. },
  45667. {
  45668. name: "Giga",
  45669. height: math.unit(30000, "miles")
  45670. },
  45671. ]
  45672. ))
  45673. characterMakers.push(() => makeCharacter(
  45674. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45675. {
  45676. nude: {
  45677. height: math.unit(8, "feet"),
  45678. weight: math.unit(225, "lb"),
  45679. name: "Nude",
  45680. image: {
  45681. source: "./media/characters/marvy/nude.svg",
  45682. extra: 1900/1683,
  45683. bottom: 89/1989
  45684. }
  45685. },
  45686. dressed: {
  45687. height: math.unit(8, "feet"),
  45688. weight: math.unit(225, "lb"),
  45689. name: "Dressed",
  45690. image: {
  45691. source: "./media/characters/marvy/dressed.svg",
  45692. extra: 1900/1683,
  45693. bottom: 89/1989
  45694. }
  45695. },
  45696. head: {
  45697. height: math.unit(2.85, "feet"),
  45698. name: "Head",
  45699. image: {
  45700. source: "./media/characters/marvy/head.svg"
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(8, "feet"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45714. {
  45715. front: {
  45716. height: math.unit(8, "feet"),
  45717. weight: math.unit(250, "lb"),
  45718. name: "Front",
  45719. image: {
  45720. source: "./media/characters/leah/front.svg",
  45721. extra: 1257/1149,
  45722. bottom: 109/1366
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(8, "feet"),
  45730. default: true
  45731. },
  45732. {
  45733. name: "Minimacro",
  45734. height: math.unit(40, "feet")
  45735. },
  45736. {
  45737. name: "Macro",
  45738. height: math.unit(124, "feet")
  45739. },
  45740. {
  45741. name: "Megamacro",
  45742. height: math.unit(850, "feet")
  45743. },
  45744. ]
  45745. ))
  45746. characterMakers.push(() => makeCharacter(
  45747. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45748. {
  45749. side: {
  45750. height: math.unit(13 + 6/12, "feet"),
  45751. weight: math.unit(3200, "lb"),
  45752. name: "Side",
  45753. image: {
  45754. source: "./media/characters/alvir/side.svg",
  45755. extra: 896/589,
  45756. bottom: 26/922
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "Normal",
  45763. height: math.unit(13 + 6/12, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45770. {
  45771. front: {
  45772. height: math.unit(5 + 4/12, "feet"),
  45773. weight: math.unit(236, "lb"),
  45774. name: "Front",
  45775. image: {
  45776. source: "./media/characters/zaina-khalil/front.svg",
  45777. extra: 1533/1485,
  45778. bottom: 94/1627
  45779. }
  45780. },
  45781. side: {
  45782. height: math.unit(5 + 4/12, "feet"),
  45783. weight: math.unit(236, "lb"),
  45784. name: "Side",
  45785. image: {
  45786. source: "./media/characters/zaina-khalil/side.svg",
  45787. extra: 1537/1498,
  45788. bottom: 66/1603
  45789. }
  45790. },
  45791. back: {
  45792. height: math.unit(5 + 4/12, "feet"),
  45793. weight: math.unit(236, "lb"),
  45794. name: "Back",
  45795. image: {
  45796. source: "./media/characters/zaina-khalil/back.svg",
  45797. extra: 1546/1494,
  45798. bottom: 89/1635
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(5 + 4/12, "feet"),
  45806. default: true
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45812. {
  45813. side: {
  45814. height: math.unit(12, "feet"),
  45815. weight: math.unit(4000, "lb"),
  45816. name: "Side",
  45817. image: {
  45818. source: "./media/characters/terry/side.svg",
  45819. extra: 1518/1439,
  45820. bottom: 149/1667
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Normal",
  45827. height: math.unit(12, "feet"),
  45828. default: true
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45834. {
  45835. front: {
  45836. height: math.unit(12, "feet"),
  45837. weight: math.unit(1500, "lb"),
  45838. name: "Front",
  45839. image: {
  45840. source: "./media/characters/kahea/front.svg",
  45841. extra: 1722/1617,
  45842. bottom: 179/1901
  45843. }
  45844. },
  45845. },
  45846. [
  45847. {
  45848. name: "Normal",
  45849. height: math.unit(12, "feet"),
  45850. default: true
  45851. },
  45852. ]
  45853. ))
  45854. characterMakers.push(() => makeCharacter(
  45855. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45856. {
  45857. demonFront: {
  45858. height: math.unit(36, "feet"),
  45859. name: "Front",
  45860. image: {
  45861. source: "./media/characters/alex-xuria/demon-front.svg",
  45862. extra: 1705/1673,
  45863. bottom: 198/1903
  45864. },
  45865. form: "demon",
  45866. default: true
  45867. },
  45868. demonBack: {
  45869. height: math.unit(36, "feet"),
  45870. name: "Back",
  45871. image: {
  45872. source: "./media/characters/alex-xuria/demon-back.svg",
  45873. extra: 1725/1693,
  45874. bottom: 70/1795
  45875. },
  45876. form: "demon"
  45877. },
  45878. demonHead: {
  45879. height: math.unit(2.14, "meters"),
  45880. name: "Head",
  45881. image: {
  45882. source: "./media/characters/alex-xuria/demon-head.svg"
  45883. },
  45884. form: "demon"
  45885. },
  45886. demonHand: {
  45887. height: math.unit(1.61, "meters"),
  45888. name: "Hand",
  45889. image: {
  45890. source: "./media/characters/alex-xuria/demon-hand.svg"
  45891. },
  45892. form: "demon"
  45893. },
  45894. demonPaw: {
  45895. height: math.unit(1.35, "meters"),
  45896. name: "Paw",
  45897. image: {
  45898. source: "./media/characters/alex-xuria/demon-paw.svg"
  45899. },
  45900. form: "demon"
  45901. },
  45902. demonFoot: {
  45903. height: math.unit(2.2, "meters"),
  45904. name: "Foot",
  45905. image: {
  45906. source: "./media/characters/alex-xuria/demon-foot.svg"
  45907. },
  45908. form: "demon"
  45909. },
  45910. demonCock: {
  45911. height: math.unit(1.74, "meters"),
  45912. name: "Cock",
  45913. image: {
  45914. source: "./media/characters/alex-xuria/demon-cock.svg"
  45915. },
  45916. form: "demon"
  45917. },
  45918. demonTailClosed: {
  45919. height: math.unit(1.47, "meters"),
  45920. name: "Tail (Closed)",
  45921. image: {
  45922. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45923. },
  45924. form: "demon"
  45925. },
  45926. demonTailOpen: {
  45927. height: math.unit(2.85, "meters"),
  45928. name: "Tail (Open)",
  45929. image: {
  45930. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45931. },
  45932. form: "demon"
  45933. },
  45934. incubusFront: {
  45935. height: math.unit(12, "feet"),
  45936. name: "Front",
  45937. image: {
  45938. source: "./media/characters/alex-xuria/incubus-front.svg",
  45939. extra: 1754/1677,
  45940. bottom: 125/1879
  45941. },
  45942. form: "incubus",
  45943. default: true
  45944. },
  45945. incubusBack: {
  45946. height: math.unit(12, "feet"),
  45947. name: "Back",
  45948. image: {
  45949. source: "./media/characters/alex-xuria/incubus-back.svg",
  45950. extra: 1702/1647,
  45951. bottom: 30/1732
  45952. },
  45953. form: "incubus"
  45954. },
  45955. incubusHead: {
  45956. height: math.unit(3.45, "feet"),
  45957. name: "Head",
  45958. image: {
  45959. source: "./media/characters/alex-xuria/incubus-head.svg"
  45960. },
  45961. form: "incubus"
  45962. },
  45963. rabbitFront: {
  45964. height: math.unit(6, "feet"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45968. extra: 1369/1349,
  45969. bottom: 45/1414
  45970. },
  45971. form: "rabbit",
  45972. default: true
  45973. },
  45974. rabbitSide: {
  45975. height: math.unit(6, "feet"),
  45976. name: "Side",
  45977. image: {
  45978. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45979. extra: 1370/1356,
  45980. bottom: 37/1407
  45981. },
  45982. form: "rabbit"
  45983. },
  45984. rabbitBack: {
  45985. height: math.unit(6, "feet"),
  45986. name: "Back",
  45987. image: {
  45988. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45989. extra: 1375/1358,
  45990. bottom: 43/1418
  45991. },
  45992. form: "rabbit"
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Normal",
  45998. height: math.unit(6, "feet"),
  45999. default: true,
  46000. form: "rabbit"
  46001. },
  46002. {
  46003. name: "Incubus",
  46004. height: math.unit(12, "feet"),
  46005. default: true,
  46006. form: "incubus"
  46007. },
  46008. {
  46009. name: "Demon",
  46010. height: math.unit(36, "feet"),
  46011. default: true,
  46012. form: "demon"
  46013. }
  46014. ],
  46015. {
  46016. "demon": {
  46017. name: "Demon",
  46018. default: true
  46019. },
  46020. "incubus": {
  46021. name: "Incubus",
  46022. },
  46023. "rabbit": {
  46024. name: "Rabbit"
  46025. }
  46026. }
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46030. {
  46031. front: {
  46032. height: math.unit(7 + 5/12, "feet"),
  46033. weight: math.unit(510, "lb"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/syrup/front.svg",
  46037. extra: 932/916,
  46038. bottom: 26/958
  46039. }
  46040. },
  46041. },
  46042. [
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(7 + 5/12, "feet"),
  46046. default: true
  46047. },
  46048. {
  46049. name: "Big",
  46050. height: math.unit(50, "feet")
  46051. },
  46052. {
  46053. name: "Macro",
  46054. height: math.unit(300, "feet")
  46055. },
  46056. {
  46057. name: "Megamacro",
  46058. height: math.unit(1, "mile")
  46059. },
  46060. ]
  46061. ))
  46062. characterMakers.push(() => makeCharacter(
  46063. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46064. {
  46065. front: {
  46066. height: math.unit(6 + 9/12, "feet"),
  46067. name: "Front",
  46068. image: {
  46069. source: "./media/characters/zeimne/front.svg",
  46070. extra: 1969/1806,
  46071. bottom: 53/2022
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Normal",
  46078. height: math.unit(6 + 9/12, "feet"),
  46079. default: true
  46080. },
  46081. {
  46082. name: "Giant",
  46083. height: math.unit(550, "feet")
  46084. },
  46085. {
  46086. name: "Mega",
  46087. height: math.unit(3, "miles")
  46088. },
  46089. {
  46090. name: "Giga",
  46091. height: math.unit(250, "miles")
  46092. },
  46093. {
  46094. name: "Tera",
  46095. height: math.unit(1, "AU")
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46101. {
  46102. front: {
  46103. height: math.unit(5 + 2/12, "feet"),
  46104. name: "Front",
  46105. image: {
  46106. source: "./media/characters/grar/front.svg",
  46107. extra: 1331/1119,
  46108. bottom: 60/1391
  46109. }
  46110. },
  46111. back: {
  46112. height: math.unit(5 + 2/12, "feet"),
  46113. name: "Back",
  46114. image: {
  46115. source: "./media/characters/grar/back.svg",
  46116. extra: 1385/1169,
  46117. bottom: 23/1408
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(5 + 2/12, "feet"),
  46125. default: true
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(13 + 7/12, "feet"),
  46134. weight: math.unit(2200, "lb"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/endraya/front.svg",
  46138. extra: 1289/1215,
  46139. bottom: 50/1339
  46140. }
  46141. },
  46142. nude: {
  46143. height: math.unit(13 + 7/12, "feet"),
  46144. weight: math.unit(2200, "lb"),
  46145. name: "Nude",
  46146. image: {
  46147. source: "./media/characters/endraya/nude.svg",
  46148. extra: 1247/1171,
  46149. bottom: 40/1287
  46150. }
  46151. },
  46152. head: {
  46153. height: math.unit(2.6, "feet"),
  46154. name: "Head",
  46155. image: {
  46156. source: "./media/characters/endraya/head.svg"
  46157. }
  46158. },
  46159. slit: {
  46160. height: math.unit(3.4, "feet"),
  46161. name: "Slit",
  46162. image: {
  46163. source: "./media/characters/endraya/slit.svg"
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(13 + 7/12, "feet"),
  46171. default: true
  46172. },
  46173. {
  46174. name: "Macro",
  46175. height: math.unit(200, "feet")
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46181. {
  46182. front: {
  46183. height: math.unit(1.81, "meters"),
  46184. weight: math.unit(69, "kg"),
  46185. name: "Front",
  46186. image: {
  46187. source: "./media/characters/rodryana/front.svg",
  46188. extra: 2002/1921,
  46189. bottom: 53/2055
  46190. }
  46191. },
  46192. back: {
  46193. height: math.unit(1.81, "meters"),
  46194. weight: math.unit(69, "kg"),
  46195. name: "Back",
  46196. image: {
  46197. source: "./media/characters/rodryana/back.svg",
  46198. extra: 1993/1926,
  46199. bottom: 48/2041
  46200. }
  46201. },
  46202. maw: {
  46203. height: math.unit(0.19769417475, "meters"),
  46204. name: "Maw",
  46205. image: {
  46206. source: "./media/characters/rodryana/maw.svg"
  46207. }
  46208. },
  46209. slit: {
  46210. height: math.unit(0.31631067961, "meters"),
  46211. name: "Slit",
  46212. image: {
  46213. source: "./media/characters/rodryana/slit.svg"
  46214. }
  46215. },
  46216. },
  46217. [
  46218. {
  46219. name: "Normal",
  46220. height: math.unit(1.81, "meters")
  46221. },
  46222. {
  46223. name: "Mini Macro",
  46224. height: math.unit(181, "meters")
  46225. },
  46226. {
  46227. name: "Macro",
  46228. height: math.unit(452, "meters"),
  46229. default: true
  46230. },
  46231. {
  46232. name: "Mega Macro",
  46233. height: math.unit(1.375, "km")
  46234. },
  46235. {
  46236. name: "Giga Macro",
  46237. height: math.unit(13.575, "km")
  46238. },
  46239. ]
  46240. ))
  46241. characterMakers.push(() => makeCharacter(
  46242. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46243. {
  46244. front: {
  46245. height: math.unit(6, "feet"),
  46246. weight: math.unit(1000, "lb"),
  46247. name: "Front",
  46248. image: {
  46249. source: "./media/characters/asaya/front.svg",
  46250. extra: 1460/1200,
  46251. bottom: 71/1531
  46252. }
  46253. },
  46254. },
  46255. [
  46256. {
  46257. name: "Normal",
  46258. height: math.unit(8, "km"),
  46259. default: true
  46260. },
  46261. ]
  46262. ))
  46263. characterMakers.push(() => makeCharacter(
  46264. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46265. {
  46266. front: {
  46267. height: math.unit(3.5, "meters"),
  46268. name: "Front",
  46269. image: {
  46270. source: "./media/characters/sarzu-and-israz/front.svg",
  46271. extra: 1570/1558,
  46272. bottom: 150/1720
  46273. },
  46274. },
  46275. back: {
  46276. height: math.unit(3.5, "meters"),
  46277. name: "Back",
  46278. image: {
  46279. source: "./media/characters/sarzu-and-israz/back.svg",
  46280. extra: 1523/1509,
  46281. bottom: 132/1655
  46282. },
  46283. },
  46284. frontFemale: {
  46285. height: math.unit(3.5, "meters"),
  46286. name: "Front (Female)",
  46287. image: {
  46288. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46289. extra: 1570/1558,
  46290. bottom: 150/1720
  46291. },
  46292. },
  46293. frontHerm: {
  46294. height: math.unit(3.5, "meters"),
  46295. name: "Front (Herm)",
  46296. image: {
  46297. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46298. extra: 1570/1558,
  46299. bottom: 150/1720
  46300. },
  46301. },
  46302. },
  46303. [
  46304. {
  46305. name: "Normal",
  46306. height: math.unit(3.5, "meters"),
  46307. default: true,
  46308. },
  46309. {
  46310. name: "Macro",
  46311. height: math.unit(65.5, "meters"),
  46312. },
  46313. ],
  46314. ))
  46315. characterMakers.push(() => makeCharacter(
  46316. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46317. {
  46318. front: {
  46319. height: math.unit(6, "feet"),
  46320. weight: math.unit(250, "lb"),
  46321. name: "Front",
  46322. image: {
  46323. source: "./media/characters/zenimma/front.svg",
  46324. extra: 1346/1320,
  46325. bottom: 58/1404
  46326. }
  46327. },
  46328. back: {
  46329. height: math.unit(6, "feet"),
  46330. weight: math.unit(250, "lb"),
  46331. name: "Back",
  46332. image: {
  46333. source: "./media/characters/zenimma/back.svg",
  46334. extra: 1324/1308,
  46335. bottom: 44/1368
  46336. }
  46337. },
  46338. dick: {
  46339. height: math.unit(1.44, "feet"),
  46340. name: "Dick",
  46341. image: {
  46342. source: "./media/characters/zenimma/dick.svg"
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Canon Height",
  46349. height: math.unit(66, "miles"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46356. {
  46357. nude: {
  46358. height: math.unit(6, "feet"),
  46359. weight: math.unit(150, "lb"),
  46360. name: "Nude",
  46361. image: {
  46362. source: "./media/characters/shavon/nude.svg",
  46363. extra: 1242/1096,
  46364. bottom: 98/1340
  46365. }
  46366. },
  46367. dressed: {
  46368. height: math.unit(6, "feet"),
  46369. weight: math.unit(150, "lb"),
  46370. name: "Dressed",
  46371. image: {
  46372. source: "./media/characters/shavon/dressed.svg",
  46373. extra: 1242/1096,
  46374. bottom: 98/1340
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Macro",
  46381. height: math.unit(255, "feet"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(6, "feet"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/steph/front.svg",
  46394. extra: 1430/1330,
  46395. bottom: 54/1484
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Normal",
  46402. height: math.unit(6, "feet"),
  46403. default: true
  46404. },
  46405. ]
  46406. ))
  46407. characterMakers.push(() => makeCharacter(
  46408. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46409. {
  46410. front: {
  46411. height: math.unit(9, "feet"),
  46412. weight: math.unit(400, "lb"),
  46413. name: "Front",
  46414. image: {
  46415. source: "./media/characters/kil'aman/front.svg",
  46416. extra: 1210/1159,
  46417. bottom: 109/1319
  46418. }
  46419. },
  46420. head: {
  46421. height: math.unit(2.14, "feet"),
  46422. name: "Head",
  46423. image: {
  46424. source: "./media/characters/kil'aman/head.svg"
  46425. }
  46426. },
  46427. maw: {
  46428. height: math.unit(1.21, "feet"),
  46429. name: "Maw",
  46430. image: {
  46431. source: "./media/characters/kil'aman/maw.svg"
  46432. }
  46433. },
  46434. foot: {
  46435. height: math.unit(1.7, "feet"),
  46436. name: "Foot",
  46437. image: {
  46438. source: "./media/characters/kil'aman/foot.svg"
  46439. }
  46440. },
  46441. dick: {
  46442. height: math.unit(2.1, "feet"),
  46443. name: "Dick",
  46444. image: {
  46445. source: "./media/characters/kil'aman/dick.svg"
  46446. }
  46447. },
  46448. },
  46449. [
  46450. {
  46451. name: "Normal",
  46452. height: math.unit(9, "feet")
  46453. },
  46454. {
  46455. name: "Canon Height",
  46456. height: math.unit(10, "miles"),
  46457. default: true
  46458. },
  46459. {
  46460. name: "Maximum",
  46461. height: math.unit(6e9, "miles")
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46467. {
  46468. front: {
  46469. height: math.unit(90, "feet"),
  46470. weight: math.unit(675000, "lb"),
  46471. name: "Front",
  46472. image: {
  46473. source: "./media/characters/qadan/front.svg",
  46474. extra: 1012/1004,
  46475. bottom: 78/1090
  46476. }
  46477. },
  46478. back: {
  46479. height: math.unit(90, "feet"),
  46480. weight: math.unit(675000, "lb"),
  46481. name: "Back",
  46482. image: {
  46483. source: "./media/characters/qadan/back.svg",
  46484. extra: 1042/1031,
  46485. bottom: 55/1097
  46486. }
  46487. },
  46488. armored: {
  46489. height: math.unit(90, "feet"),
  46490. weight: math.unit(675000, "lb"),
  46491. name: "Armored",
  46492. image: {
  46493. source: "./media/characters/qadan/armored.svg",
  46494. extra: 1047/1037,
  46495. bottom: 48/1095
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(90, "feet"),
  46503. default: true
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46509. {
  46510. front: {
  46511. height: math.unit(6, "feet"),
  46512. weight: math.unit(225, "lb"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/brooke/front.svg",
  46516. extra: 1050/1010,
  46517. bottom: 66/1116
  46518. }
  46519. },
  46520. back: {
  46521. height: math.unit(6, "feet"),
  46522. weight: math.unit(225, "lb"),
  46523. name: "Back",
  46524. image: {
  46525. source: "./media/characters/brooke/back.svg",
  46526. extra: 1053/1013,
  46527. bottom: 41/1094
  46528. }
  46529. },
  46530. dressed: {
  46531. height: math.unit(6, "feet"),
  46532. weight: math.unit(225, "lb"),
  46533. name: "Dressed",
  46534. image: {
  46535. source: "./media/characters/brooke/dressed.svg",
  46536. extra: 1050/1010,
  46537. bottom: 66/1116
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Canon Height",
  46544. height: math.unit(500, "miles"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46551. {
  46552. front: {
  46553. height: math.unit(6 + 2/12, "feet"),
  46554. weight: math.unit(210, "lb"),
  46555. name: "Front",
  46556. image: {
  46557. source: "./media/characters/wubs/front.svg",
  46558. extra: 1345/1325,
  46559. bottom: 70/1415
  46560. }
  46561. },
  46562. back: {
  46563. height: math.unit(6 + 2/12, "feet"),
  46564. weight: math.unit(210, "lb"),
  46565. name: "Back",
  46566. image: {
  46567. source: "./media/characters/wubs/back.svg",
  46568. extra: 1296/1275,
  46569. bottom: 58/1354
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Normal",
  46576. height: math.unit(6 + 2/12, "feet"),
  46577. default: true
  46578. },
  46579. {
  46580. name: "Macro",
  46581. height: math.unit(1000, "feet")
  46582. },
  46583. {
  46584. name: "Megamacro",
  46585. height: math.unit(1, "mile")
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46591. {
  46592. front: {
  46593. height: math.unit(4, "feet"),
  46594. weight: math.unit(120, "lb"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/blue/front.svg",
  46598. extra: 1636/1525,
  46599. bottom: 43/1679
  46600. }
  46601. },
  46602. back: {
  46603. height: math.unit(4, "feet"),
  46604. weight: math.unit(120, "lb"),
  46605. name: "Back",
  46606. image: {
  46607. source: "./media/characters/blue/back.svg",
  46608. extra: 1660/1560,
  46609. bottom: 57/1717
  46610. }
  46611. },
  46612. paws: {
  46613. height: math.unit(0.826, "feet"),
  46614. name: "Paws",
  46615. image: {
  46616. source: "./media/characters/blue/paws.svg"
  46617. }
  46618. },
  46619. },
  46620. [
  46621. {
  46622. name: "Micro",
  46623. height: math.unit(3, "inches")
  46624. },
  46625. {
  46626. name: "Normal",
  46627. height: math.unit(4, "feet"),
  46628. default: true
  46629. },
  46630. {
  46631. name: "Femenine Form",
  46632. height: math.unit(14, "feet")
  46633. },
  46634. {
  46635. name: "Werebat Form",
  46636. height: math.unit(18, "feet")
  46637. },
  46638. ]
  46639. ))
  46640. characterMakers.push(() => makeCharacter(
  46641. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46642. {
  46643. female: {
  46644. height: math.unit(7 + 4/12, "feet"),
  46645. weight: math.unit(243, "lb"),
  46646. name: "Female",
  46647. image: {
  46648. source: "./media/characters/kaya/female.svg",
  46649. extra: 975/898,
  46650. bottom: 34/1009
  46651. }
  46652. },
  46653. herm: {
  46654. height: math.unit(7 + 4/12, "feet"),
  46655. weight: math.unit(243, "lb"),
  46656. name: "Herm",
  46657. image: {
  46658. source: "./media/characters/kaya/herm.svg",
  46659. extra: 975/898,
  46660. bottom: 34/1009
  46661. }
  46662. },
  46663. },
  46664. [
  46665. {
  46666. name: "Normal",
  46667. height: math.unit(7 + 4/12, "feet"),
  46668. default: true
  46669. },
  46670. ]
  46671. ))
  46672. characterMakers.push(() => makeCharacter(
  46673. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46674. {
  46675. female: {
  46676. height: math.unit(9 + 4/12, "feet"),
  46677. weight: math.unit(398, "lb"),
  46678. name: "Female",
  46679. image: {
  46680. source: "./media/characters/kassandra/female.svg",
  46681. extra: 908/839,
  46682. bottom: 61/969
  46683. }
  46684. },
  46685. intersex: {
  46686. height: math.unit(9 + 4/12, "feet"),
  46687. weight: math.unit(398, "lb"),
  46688. name: "Intersex",
  46689. image: {
  46690. source: "./media/characters/kassandra/intersex.svg",
  46691. extra: 908/839,
  46692. bottom: 61/969
  46693. }
  46694. },
  46695. },
  46696. [
  46697. {
  46698. name: "Normal",
  46699. height: math.unit(9 + 4/12, "feet"),
  46700. default: true
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46706. {
  46707. front: {
  46708. height: math.unit(3, "meters"),
  46709. name: "Front",
  46710. image: {
  46711. source: "./media/characters/amy/front.svg",
  46712. extra: 1380/1343,
  46713. bottom: 70/1450
  46714. }
  46715. },
  46716. back: {
  46717. height: math.unit(3, "meters"),
  46718. name: "Back",
  46719. image: {
  46720. source: "./media/characters/amy/back.svg",
  46721. extra: 1380/1347,
  46722. bottom: 66/1446
  46723. }
  46724. },
  46725. },
  46726. [
  46727. {
  46728. name: "Normal",
  46729. height: math.unit(3, "meters"),
  46730. default: true
  46731. },
  46732. ]
  46733. ))
  46734. characterMakers.push(() => makeCharacter(
  46735. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46736. {
  46737. side: {
  46738. height: math.unit(47, "cm"),
  46739. weight: math.unit(10.8, "kg"),
  46740. name: "Side",
  46741. image: {
  46742. source: "./media/characters/alphaschakal/side.svg",
  46743. extra: 1058/568,
  46744. bottom: 62/1120
  46745. }
  46746. },
  46747. back: {
  46748. height: math.unit(78, "cm"),
  46749. weight: math.unit(10.8, "kg"),
  46750. name: "Back",
  46751. image: {
  46752. source: "./media/characters/alphaschakal/back.svg",
  46753. extra: 1102/942,
  46754. bottom: 185/1287
  46755. }
  46756. },
  46757. head: {
  46758. height: math.unit(28, "cm"),
  46759. name: "Head",
  46760. image: {
  46761. source: "./media/characters/alphaschakal/head.svg",
  46762. extra: 696/508,
  46763. bottom: 0/696
  46764. }
  46765. },
  46766. paw: {
  46767. height: math.unit(16, "cm"),
  46768. name: "Paw",
  46769. image: {
  46770. source: "./media/characters/alphaschakal/paw.svg"
  46771. }
  46772. },
  46773. },
  46774. [
  46775. {
  46776. name: "Normal",
  46777. height: math.unit(47, "cm"),
  46778. default: true
  46779. },
  46780. {
  46781. name: "Macro",
  46782. height: math.unit(340, "cm")
  46783. },
  46784. ]
  46785. ))
  46786. characterMakers.push(() => makeCharacter(
  46787. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46788. {
  46789. front: {
  46790. height: math.unit(36, "earths"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/ecobyss/front.svg",
  46794. extra: 1282/1215,
  46795. bottom: 11/1293
  46796. }
  46797. },
  46798. back: {
  46799. height: math.unit(36, "earths"),
  46800. name: "Back",
  46801. image: {
  46802. source: "./media/characters/ecobyss/back.svg",
  46803. extra: 1291/1222,
  46804. bottom: 8/1299
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Normal",
  46811. height: math.unit(36, "earths"),
  46812. default: true
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46818. {
  46819. front: {
  46820. height: math.unit(12, "feet"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/vasuk/front.svg",
  46824. extra: 1326/1207,
  46825. bottom: 64/1390
  46826. }
  46827. },
  46828. },
  46829. [
  46830. {
  46831. name: "Normal",
  46832. height: math.unit(12, "feet"),
  46833. default: true
  46834. },
  46835. ]
  46836. ))
  46837. characterMakers.push(() => makeCharacter(
  46838. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46839. {
  46840. side: {
  46841. height: math.unit(100, "feet"),
  46842. name: "Side",
  46843. image: {
  46844. source: "./media/characters/linneaus/side.svg",
  46845. extra: 987/807,
  46846. bottom: 47/1034
  46847. }
  46848. },
  46849. },
  46850. [
  46851. {
  46852. name: "Macro",
  46853. height: math.unit(100, "feet"),
  46854. default: true
  46855. },
  46856. ]
  46857. ))
  46858. characterMakers.push(() => makeCharacter(
  46859. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46860. {
  46861. front: {
  46862. height: math.unit(8, "feet"),
  46863. weight: math.unit(1200, "lb"),
  46864. name: "Front",
  46865. image: {
  46866. source: "./media/characters/nyterious-daligdig/front.svg",
  46867. extra: 1284/1094,
  46868. bottom: 84/1368
  46869. }
  46870. },
  46871. back: {
  46872. height: math.unit(8, "feet"),
  46873. weight: math.unit(1200, "lb"),
  46874. name: "Back",
  46875. image: {
  46876. source: "./media/characters/nyterious-daligdig/back.svg",
  46877. extra: 1301/1121,
  46878. bottom: 129/1430
  46879. }
  46880. },
  46881. mouth: {
  46882. height: math.unit(1.464, "feet"),
  46883. name: "Mouth",
  46884. image: {
  46885. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46886. }
  46887. },
  46888. },
  46889. [
  46890. {
  46891. name: "Small",
  46892. height: math.unit(8, "feet"),
  46893. default: true
  46894. },
  46895. {
  46896. name: "Normal",
  46897. height: math.unit(15, "feet")
  46898. },
  46899. {
  46900. name: "Macro",
  46901. height: math.unit(90, "feet")
  46902. },
  46903. ]
  46904. ))
  46905. characterMakers.push(() => makeCharacter(
  46906. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46907. {
  46908. front: {
  46909. height: math.unit(7 + 4/12, "feet"),
  46910. weight: math.unit(252, "lb"),
  46911. name: "Front",
  46912. image: {
  46913. source: "./media/characters/bandel/front.svg",
  46914. extra: 1946/1775,
  46915. bottom: 26/1972
  46916. }
  46917. },
  46918. back: {
  46919. height: math.unit(7 + 4/12, "feet"),
  46920. weight: math.unit(252, "lb"),
  46921. name: "Back",
  46922. image: {
  46923. source: "./media/characters/bandel/back.svg",
  46924. extra: 1940/1770,
  46925. bottom: 25/1965
  46926. }
  46927. },
  46928. maw: {
  46929. height: math.unit(2.15, "feet"),
  46930. name: "Maw",
  46931. image: {
  46932. source: "./media/characters/bandel/maw.svg"
  46933. }
  46934. },
  46935. stomach: {
  46936. height: math.unit(1.95, "feet"),
  46937. name: "Stomach",
  46938. image: {
  46939. source: "./media/characters/bandel/stomach.svg"
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(7 + 4/12, "feet"),
  46947. default: true
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(10 + 5/12, "feet"),
  46956. weight: math.unit(773.5, "kg"),
  46957. name: "Front",
  46958. image: {
  46959. source: "./media/characters/zed/front.svg",
  46960. extra: 987/941,
  46961. bottom: 52/1039
  46962. }
  46963. },
  46964. },
  46965. [
  46966. {
  46967. name: "Short",
  46968. height: math.unit(5 + 4/12, "feet")
  46969. },
  46970. {
  46971. name: "Average",
  46972. height: math.unit(10 + 5/12, "feet"),
  46973. default: true
  46974. },
  46975. {
  46976. name: "Mini-Macro",
  46977. height: math.unit(24 + 9/12, "feet")
  46978. },
  46979. {
  46980. name: "Macro",
  46981. height: math.unit(249, "feet")
  46982. },
  46983. {
  46984. name: "Mega-Macro",
  46985. height: math.unit(12490, "feet")
  46986. },
  46987. {
  46988. name: "Giga-Macro",
  46989. height: math.unit(24.9, "miles")
  46990. },
  46991. {
  46992. name: "Tera-Macro",
  46993. height: math.unit(24900, "miles")
  46994. },
  46995. {
  46996. name: "Cosmic Scale",
  46997. height: math.unit(38.9, "lightyears")
  46998. },
  46999. {
  47000. name: "Universal Scale",
  47001. height: math.unit(138e12, "lightyears")
  47002. },
  47003. ]
  47004. ))
  47005. characterMakers.push(() => makeCharacter(
  47006. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47007. {
  47008. front: {
  47009. height: math.unit(1561, "inches"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/ivan/front.svg",
  47013. extra: 1126/1071,
  47014. bottom: 26/1152
  47015. }
  47016. },
  47017. back: {
  47018. height: math.unit(1561, "inches"),
  47019. name: "Back",
  47020. image: {
  47021. source: "./media/characters/ivan/back.svg",
  47022. extra: 1134/1079,
  47023. bottom: 30/1164
  47024. }
  47025. },
  47026. },
  47027. [
  47028. {
  47029. name: "Normal",
  47030. height: math.unit(1561, "inches"),
  47031. default: true
  47032. },
  47033. ]
  47034. ))
  47035. characterMakers.push(() => makeCharacter(
  47036. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47037. {
  47038. front: {
  47039. height: math.unit(5 + 7/12, "feet"),
  47040. weight: math.unit(150, "lb"),
  47041. name: "Front",
  47042. image: {
  47043. source: "./media/characters/robin-arctic-hare/front.svg",
  47044. extra: 1148/974,
  47045. bottom: 20/1168
  47046. }
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(5 + 7/12, "feet"),
  47053. default: true
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47059. {
  47060. side: {
  47061. height: math.unit(5, "feet"),
  47062. name: "Side",
  47063. image: {
  47064. source: "./media/characters/birch/side.svg",
  47065. extra: 985/796,
  47066. bottom: 111/1096
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(5, "feet"),
  47074. default: true
  47075. },
  47076. ]
  47077. ))
  47078. characterMakers.push(() => makeCharacter(
  47079. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47080. {
  47081. front: {
  47082. height: math.unit(4, "feet"),
  47083. name: "Front",
  47084. image: {
  47085. source: "./media/characters/rasp/front.svg",
  47086. extra: 561/478,
  47087. bottom: 74/635
  47088. }
  47089. },
  47090. },
  47091. [
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(4, "feet"),
  47095. default: true
  47096. },
  47097. ]
  47098. ))
  47099. characterMakers.push(() => makeCharacter(
  47100. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47101. {
  47102. front: {
  47103. height: math.unit(4 + 6/12, "feet"),
  47104. name: "Front",
  47105. image: {
  47106. source: "./media/characters/agatha/front.svg",
  47107. extra: 947/933,
  47108. bottom: 42/989
  47109. }
  47110. },
  47111. back: {
  47112. height: math.unit(4 + 6/12, "feet"),
  47113. name: "Back",
  47114. image: {
  47115. source: "./media/characters/agatha/back.svg",
  47116. extra: 935/922,
  47117. bottom: 48/983
  47118. }
  47119. },
  47120. },
  47121. [
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(4 + 6 /12, "feet"),
  47125. default: true
  47126. },
  47127. {
  47128. name: "Max Size",
  47129. height: math.unit(500, "feet")
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47135. {
  47136. side: {
  47137. height: math.unit(30, "feet"),
  47138. name: "Side",
  47139. image: {
  47140. source: "./media/characters/roggy/side.svg",
  47141. extra: 909/643,
  47142. bottom: 63/972
  47143. }
  47144. },
  47145. lounging: {
  47146. height: math.unit(20, "feet"),
  47147. name: "Lounging",
  47148. image: {
  47149. source: "./media/characters/roggy/lounging.svg",
  47150. extra: 643/479,
  47151. bottom: 145/788
  47152. }
  47153. },
  47154. handpaw: {
  47155. height: math.unit(13.1, "feet"),
  47156. name: "Handpaw",
  47157. image: {
  47158. source: "./media/characters/roggy/handpaw.svg"
  47159. }
  47160. },
  47161. footpaw: {
  47162. height: math.unit(15.8, "feet"),
  47163. name: "Footpaw",
  47164. image: {
  47165. source: "./media/characters/roggy/footpaw.svg"
  47166. }
  47167. },
  47168. },
  47169. [
  47170. {
  47171. name: "Menacing",
  47172. height: math.unit(30, "feet"),
  47173. default: true
  47174. },
  47175. ]
  47176. ))
  47177. characterMakers.push(() => makeCharacter(
  47178. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47179. {
  47180. front: {
  47181. height: math.unit(5 + 7/12, "feet"),
  47182. weight: math.unit(135, "lb"),
  47183. name: "Front",
  47184. image: {
  47185. source: "./media/characters/naomi/front.svg",
  47186. extra: 1209/1154,
  47187. bottom: 129/1338
  47188. }
  47189. },
  47190. back: {
  47191. height: math.unit(5 + 7/12, "feet"),
  47192. weight: math.unit(135, "lb"),
  47193. name: "Back",
  47194. image: {
  47195. source: "./media/characters/naomi/back.svg",
  47196. extra: 1252/1190,
  47197. bottom: 23/1275
  47198. }
  47199. },
  47200. },
  47201. [
  47202. {
  47203. name: "Normal",
  47204. height: math.unit(5 + 7 /12, "feet"),
  47205. default: true
  47206. },
  47207. ]
  47208. ))
  47209. characterMakers.push(() => makeCharacter(
  47210. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47211. {
  47212. side: {
  47213. height: math.unit(35, "meters"),
  47214. name: "Side",
  47215. image: {
  47216. source: "./media/characters/kimpi/side.svg",
  47217. extra: 419/382,
  47218. bottom: 63/482
  47219. }
  47220. },
  47221. hand: {
  47222. height: math.unit(8.96, "meters"),
  47223. name: "Hand",
  47224. image: {
  47225. source: "./media/characters/kimpi/hand.svg"
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(35, "meters"),
  47233. default: true
  47234. },
  47235. ]
  47236. ))
  47237. characterMakers.push(() => makeCharacter(
  47238. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47239. {
  47240. front: {
  47241. height: math.unit(4 + 4/12, "feet"),
  47242. name: "Front",
  47243. image: {
  47244. source: "./media/characters/pepper-purrloin/front.svg",
  47245. extra: 1141/1024,
  47246. bottom: 21/1162
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(4 + 4/12, "feet"),
  47254. default: true
  47255. },
  47256. ]
  47257. ))
  47258. characterMakers.push(() => makeCharacter(
  47259. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47260. {
  47261. front: {
  47262. height: math.unit(6 + 2/12, "feet"),
  47263. name: "Front",
  47264. image: {
  47265. source: "./media/characters/raphael/front.svg",
  47266. extra: 1101/962,
  47267. bottom: 59/1160
  47268. }
  47269. },
  47270. },
  47271. [
  47272. {
  47273. name: "Normal",
  47274. height: math.unit(6 + 2/12, "feet"),
  47275. default: true
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47281. {
  47282. front: {
  47283. height: math.unit(6, "feet"),
  47284. weight: math.unit(150, "lb"),
  47285. name: "Front",
  47286. image: {
  47287. source: "./media/characters/victor-williams/front.svg",
  47288. extra: 1894/1825,
  47289. bottom: 67/1961
  47290. }
  47291. },
  47292. },
  47293. [
  47294. {
  47295. name: "Normal",
  47296. height: math.unit(6, "feet"),
  47297. default: true
  47298. },
  47299. ]
  47300. ))
  47301. characterMakers.push(() => makeCharacter(
  47302. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47303. {
  47304. front: {
  47305. height: math.unit(5 + 8/12, "feet"),
  47306. weight: math.unit(150, "lb"),
  47307. name: "Front",
  47308. image: {
  47309. source: "./media/characters/rachel/front.svg",
  47310. extra: 1902/1787,
  47311. bottom: 46/1948
  47312. }
  47313. },
  47314. },
  47315. [
  47316. {
  47317. name: "Base Height",
  47318. height: math.unit(5 + 8/12, "feet"),
  47319. default: true
  47320. },
  47321. {
  47322. name: "Macro",
  47323. height: math.unit(200, "feet")
  47324. },
  47325. {
  47326. name: "Mega Macro",
  47327. height: math.unit(1, "mile")
  47328. },
  47329. {
  47330. name: "Giga Macro",
  47331. height: math.unit(1500, "miles")
  47332. },
  47333. {
  47334. name: "Tera Macro",
  47335. height: math.unit(8000, "miles")
  47336. },
  47337. {
  47338. name: "Tera Macro+",
  47339. height: math.unit(2e5, "miles")
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47345. {
  47346. front: {
  47347. height: math.unit(6.5, "feet"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47351. extra: 860/819,
  47352. bottom: 307/1167
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(6.5, "feet"),
  47357. name: "Back",
  47358. image: {
  47359. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47360. extra: 880/837,
  47361. bottom: 395/1275
  47362. }
  47363. },
  47364. sleeping: {
  47365. height: math.unit(2.79, "feet"),
  47366. name: "Sleeping",
  47367. image: {
  47368. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47369. extra: 465/383,
  47370. bottom: 263/728
  47371. }
  47372. },
  47373. maw: {
  47374. height: math.unit(2.52, "feet"),
  47375. name: "Maw",
  47376. image: {
  47377. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47378. }
  47379. },
  47380. },
  47381. [
  47382. {
  47383. name: "Normal",
  47384. height: math.unit(6.5, "feet"),
  47385. default: true
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47391. {
  47392. front: {
  47393. height: math.unit(5, "feet"),
  47394. name: "Front",
  47395. image: {
  47396. source: "./media/characters/nova-nerium/front.svg",
  47397. extra: 1548/1392,
  47398. bottom: 374/1922
  47399. }
  47400. },
  47401. back: {
  47402. height: math.unit(5, "feet"),
  47403. name: "Back",
  47404. image: {
  47405. source: "./media/characters/nova-nerium/back.svg",
  47406. extra: 1658/1468,
  47407. bottom: 257/1915
  47408. }
  47409. },
  47410. },
  47411. [
  47412. {
  47413. name: "Normal",
  47414. height: math.unit(5, "feet"),
  47415. default: true
  47416. },
  47417. ]
  47418. ))
  47419. characterMakers.push(() => makeCharacter(
  47420. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47421. {
  47422. front: {
  47423. height: math.unit(5 + 4/12, "feet"),
  47424. name: "Front",
  47425. image: {
  47426. source: "./media/characters/ashe-pyriph/front.svg",
  47427. extra: 1935/1747,
  47428. bottom: 60/1995
  47429. }
  47430. },
  47431. },
  47432. [
  47433. {
  47434. name: "Normal",
  47435. height: math.unit(5 + 4/12, "feet"),
  47436. default: true
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47442. {
  47443. front: {
  47444. height: math.unit(8.7, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/flicker-wisp/front.svg",
  47448. extra: 1835/1613,
  47449. bottom: 449/2284
  47450. }
  47451. },
  47452. side: {
  47453. height: math.unit(8.7, "feet"),
  47454. name: "Side",
  47455. image: {
  47456. source: "./media/characters/flicker-wisp/side.svg",
  47457. extra: 1841/1642,
  47458. bottom: 336/2177
  47459. },
  47460. default: true
  47461. },
  47462. maw: {
  47463. height: math.unit(3.35, "feet"),
  47464. name: "Maw",
  47465. image: {
  47466. source: "./media/characters/flicker-wisp/maw.svg",
  47467. extra: 2338/1506,
  47468. bottom: 0/2338
  47469. }
  47470. },
  47471. ovipositor: {
  47472. height: math.unit(4.95, "feet"),
  47473. name: "Ovipositor",
  47474. image: {
  47475. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47476. }
  47477. },
  47478. egg: {
  47479. height: math.unit(0.385, "feet"),
  47480. weight: math.unit(2, "lb"),
  47481. name: "Egg",
  47482. image: {
  47483. source: "./media/characters/flicker-wisp/egg.svg"
  47484. }
  47485. },
  47486. },
  47487. [
  47488. {
  47489. name: "Normal",
  47490. height: math.unit(8.7, "feet"),
  47491. default: true
  47492. },
  47493. ]
  47494. ))
  47495. characterMakers.push(() => makeCharacter(
  47496. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47497. {
  47498. side: {
  47499. height: math.unit(11, "feet"),
  47500. name: "Side",
  47501. image: {
  47502. source: "./media/characters/faefnul/side.svg",
  47503. extra: 1100/1007,
  47504. bottom: 0/1100
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(11, "feet"),
  47512. default: true
  47513. },
  47514. ]
  47515. ))
  47516. characterMakers.push(() => makeCharacter(
  47517. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47518. {
  47519. front: {
  47520. height: math.unit(6 + 2/12, "feet"),
  47521. name: "Front",
  47522. image: {
  47523. source: "./media/characters/shady/front.svg",
  47524. extra: 502/461,
  47525. bottom: 9/511
  47526. }
  47527. },
  47528. kneeling: {
  47529. height: math.unit(4.6, "feet"),
  47530. name: "Kneeling",
  47531. image: {
  47532. source: "./media/characters/shady/kneeling.svg",
  47533. extra: 1328/1219,
  47534. bottom: 117/1445
  47535. }
  47536. },
  47537. maw: {
  47538. height: math.unit(2, "feet"),
  47539. name: "Maw",
  47540. image: {
  47541. source: "./media/characters/shady/maw.svg"
  47542. }
  47543. },
  47544. },
  47545. [
  47546. {
  47547. name: "Nano",
  47548. height: math.unit(1, "mm")
  47549. },
  47550. {
  47551. name: "Micro",
  47552. height: math.unit(12, "mm")
  47553. },
  47554. {
  47555. name: "Tiny",
  47556. height: math.unit(3, "inches")
  47557. },
  47558. {
  47559. name: "Normal",
  47560. height: math.unit(6 + 2/12, "feet"),
  47561. default: true
  47562. },
  47563. {
  47564. name: "Big",
  47565. height: math.unit(15, "feet")
  47566. },
  47567. {
  47568. name: "Macro",
  47569. height: math.unit(150, "feet")
  47570. },
  47571. {
  47572. name: "Titanic",
  47573. height: math.unit(500, "feet")
  47574. },
  47575. ]
  47576. ))
  47577. characterMakers.push(() => makeCharacter(
  47578. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47579. {
  47580. front: {
  47581. height: math.unit(12, "feet"),
  47582. name: "Front",
  47583. image: {
  47584. source: "./media/characters/fenrir/front.svg",
  47585. extra: 968/875,
  47586. bottom: 22/990
  47587. }
  47588. },
  47589. },
  47590. [
  47591. {
  47592. name: "Big",
  47593. height: math.unit(12, "feet"),
  47594. default: true
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(5 + 4/12, "feet"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/makar/front.svg",
  47606. extra: 1181/1112,
  47607. bottom: 78/1259
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(5 + 4/12, "feet"),
  47615. default: true
  47616. },
  47617. ]
  47618. ))
  47619. characterMakers.push(() => makeCharacter(
  47620. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47621. {
  47622. front: {
  47623. height: math.unit(5 + 7/12, "feet"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/callow/front.svg",
  47627. extra: 1482/1304,
  47628. bottom: 23/1505
  47629. }
  47630. },
  47631. back: {
  47632. height: math.unit(5 + 7/12, "feet"),
  47633. name: "Back",
  47634. image: {
  47635. source: "./media/characters/callow/back.svg",
  47636. extra: 1484/1296,
  47637. bottom: 25/1509
  47638. }
  47639. },
  47640. },
  47641. [
  47642. {
  47643. name: "Micro",
  47644. height: math.unit(3, "inches"),
  47645. default: true
  47646. },
  47647. {
  47648. name: "Normal",
  47649. height: math.unit(5 + 7/12, "feet")
  47650. },
  47651. ]
  47652. ))
  47653. characterMakers.push(() => makeCharacter(
  47654. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47655. {
  47656. front: {
  47657. height: math.unit(6 + 2/12, "feet"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/natel/front.svg",
  47661. extra: 1833/1692,
  47662. bottom: 166/1999
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Normal",
  47669. height: math.unit(6 + 2/12, "feet"),
  47670. default: true
  47671. },
  47672. ]
  47673. ))
  47674. characterMakers.push(() => makeCharacter(
  47675. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47676. {
  47677. front: {
  47678. height: math.unit(1.75, "meters"),
  47679. name: "Front",
  47680. image: {
  47681. source: "./media/characters/misu/front.svg",
  47682. extra: 1690/1558,
  47683. bottom: 234/1924
  47684. }
  47685. },
  47686. back: {
  47687. height: math.unit(1.75, "meters"),
  47688. name: "Back",
  47689. image: {
  47690. source: "./media/characters/misu/back.svg",
  47691. extra: 1762/1618,
  47692. bottom: 146/1908
  47693. }
  47694. },
  47695. frontNude: {
  47696. height: math.unit(1.75, "meters"),
  47697. name: "Front (Nude)",
  47698. image: {
  47699. source: "./media/characters/misu/front-nude.svg",
  47700. extra: 1690/1558,
  47701. bottom: 234/1924
  47702. }
  47703. },
  47704. backNude: {
  47705. height: math.unit(1.75, "meters"),
  47706. name: "Back (Nude)",
  47707. image: {
  47708. source: "./media/characters/misu/back-nude.svg",
  47709. extra: 1762/1618,
  47710. bottom: 146/1908
  47711. }
  47712. },
  47713. frontErect: {
  47714. height: math.unit(1.75, "meters"),
  47715. name: "Front (Erect)",
  47716. image: {
  47717. source: "./media/characters/misu/front-erect.svg",
  47718. extra: 1690/1558,
  47719. bottom: 234/1924
  47720. }
  47721. },
  47722. maw: {
  47723. height: math.unit(0.47, "meters"),
  47724. name: "Maw",
  47725. image: {
  47726. source: "./media/characters/misu/maw.svg"
  47727. }
  47728. },
  47729. head: {
  47730. height: math.unit(0.35, "meters"),
  47731. name: "Head",
  47732. image: {
  47733. source: "./media/characters/misu/head.svg"
  47734. }
  47735. },
  47736. rear: {
  47737. height: math.unit(0.47, "meters"),
  47738. name: "Rear",
  47739. image: {
  47740. source: "./media/characters/misu/rear.svg"
  47741. }
  47742. },
  47743. },
  47744. [
  47745. {
  47746. name: "Normal",
  47747. height: math.unit(1.75, "meters")
  47748. },
  47749. {
  47750. name: "Not good for the people",
  47751. height: math.unit(42, "meters")
  47752. },
  47753. {
  47754. name: "Not good for the neighborhood",
  47755. height: math.unit(135, "meters")
  47756. },
  47757. {
  47758. name: "Bit bigger problem",
  47759. height: math.unit(380, "meters"),
  47760. default: true
  47761. },
  47762. {
  47763. name: "Not good for the city",
  47764. height: math.unit(1.5, "km")
  47765. },
  47766. {
  47767. name: "Not good for the county",
  47768. height: math.unit(5.5, "km")
  47769. },
  47770. {
  47771. name: "Not good for the state",
  47772. height: math.unit(25, "km")
  47773. },
  47774. {
  47775. name: "Not good for the country",
  47776. height: math.unit(125, "km")
  47777. },
  47778. {
  47779. name: "Not good for the continent",
  47780. height: math.unit(2100, "km")
  47781. },
  47782. {
  47783. name: "Not good for the planet",
  47784. height: math.unit(35000, "km")
  47785. },
  47786. {
  47787. name: "Just no",
  47788. height: math.unit(8.5e18, "km")
  47789. },
  47790. ]
  47791. ))
  47792. characterMakers.push(() => makeCharacter(
  47793. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47794. {
  47795. front: {
  47796. height: math.unit(6.5, "feet"),
  47797. name: "Front",
  47798. image: {
  47799. source: "./media/characters/poppy/front.svg",
  47800. extra: 1878/1812,
  47801. bottom: 43/1921
  47802. }
  47803. },
  47804. feet: {
  47805. height: math.unit(1.06, "feet"),
  47806. name: "Feet",
  47807. image: {
  47808. source: "./media/characters/poppy/feet.svg",
  47809. extra: 1083/1083,
  47810. bottom: 87/1170
  47811. }
  47812. },
  47813. },
  47814. [
  47815. {
  47816. name: "Human",
  47817. height: math.unit(6.5, "feet")
  47818. },
  47819. {
  47820. name: "Default",
  47821. height: math.unit(300, "feet"),
  47822. default: true
  47823. },
  47824. {
  47825. name: "Huge",
  47826. height: math.unit(850, "feet")
  47827. },
  47828. {
  47829. name: "Mega",
  47830. height: math.unit(8000, "feet")
  47831. },
  47832. {
  47833. name: "Giga",
  47834. height: math.unit(300, "miles")
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47840. {
  47841. bipedal: {
  47842. height: math.unit(7, "feet"),
  47843. name: "Bipedal",
  47844. image: {
  47845. source: "./media/characters/zener/bipedal.svg",
  47846. extra: 874/805,
  47847. bottom: 109/983
  47848. }
  47849. },
  47850. quadrupedal: {
  47851. height: math.unit(4.64, "feet"),
  47852. name: "Quadrupedal",
  47853. image: {
  47854. source: "./media/characters/zener/quadrupedal.svg",
  47855. extra: 638/507,
  47856. bottom: 190/828
  47857. }
  47858. },
  47859. cock: {
  47860. height: math.unit(18, "inches"),
  47861. name: "Cock",
  47862. image: {
  47863. source: "./media/characters/zener/cock.svg"
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(7, "feet"),
  47871. default: true
  47872. },
  47873. ]
  47874. ))
  47875. characterMakers.push(() => makeCharacter(
  47876. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  47877. {
  47878. nude: {
  47879. height: math.unit(5 + 6/12, "feet"),
  47880. name: "Nude",
  47881. image: {
  47882. source: "./media/characters/charlie-dog/nude.svg",
  47883. extra: 768/734,
  47884. bottom: 26/794
  47885. }
  47886. },
  47887. dressed: {
  47888. height: math.unit(5 + 6/12, "feet"),
  47889. name: "Dressed",
  47890. image: {
  47891. source: "./media/characters/charlie-dog/dressed.svg",
  47892. extra: 768/734,
  47893. bottom: 26/794
  47894. }
  47895. },
  47896. },
  47897. [
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(5 + 6/12, "feet"),
  47901. default: true
  47902. },
  47903. ]
  47904. ))
  47905. characterMakers.push(() => makeCharacter(
  47906. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  47907. {
  47908. front: {
  47909. height: math.unit(6 + 4/12, "feet"),
  47910. name: "Front",
  47911. image: {
  47912. source: "./media/characters/ir'istrasz/front.svg",
  47913. extra: 1014/977,
  47914. bottom: 65/1079
  47915. }
  47916. },
  47917. back: {
  47918. height: math.unit(6 + 4/12, "feet"),
  47919. name: "Back",
  47920. image: {
  47921. source: "./media/characters/ir'istrasz/back.svg",
  47922. extra: 1024/992,
  47923. bottom: 34/1058
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Normal",
  47930. height: math.unit(6 + 4/12, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  47937. {
  47938. front: {
  47939. height: math.unit(5 + 8/12, "feet"),
  47940. name: "Front",
  47941. image: {
  47942. source: "./media/characters/dee-ditto/front.svg",
  47943. extra: 1874/1785,
  47944. bottom: 68/1942
  47945. }
  47946. },
  47947. back: {
  47948. height: math.unit(5 + 8/12, "feet"),
  47949. name: "Back",
  47950. image: {
  47951. source: "./media/characters/dee-ditto/back.svg",
  47952. extra: 1870/1783,
  47953. bottom: 77/1947
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(5 + 8/12, "feet"),
  47961. default: true
  47962. },
  47963. ]
  47964. ))
  47965. characterMakers.push(() => makeCharacter(
  47966. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  47967. {
  47968. front: {
  47969. height: math.unit(7 + 6/12, "feet"),
  47970. name: "Front",
  47971. image: {
  47972. source: "./media/characters/fey/front.svg",
  47973. extra: 995/979,
  47974. bottom: 30/1025
  47975. }
  47976. },
  47977. back: {
  47978. height: math.unit(7 + 6/12, "feet"),
  47979. name: "Back",
  47980. image: {
  47981. source: "./media/characters/fey/back.svg",
  47982. extra: 1079/1008,
  47983. bottom: 5/1084
  47984. }
  47985. },
  47986. dressed: {
  47987. height: math.unit(7 + 6/12, "feet"),
  47988. name: "Dressed",
  47989. image: {
  47990. source: "./media/characters/fey/dressed.svg",
  47991. extra: 995/979,
  47992. bottom: 30/1025
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(7 + 6/12, "feet"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48006. {
  48007. standing: {
  48008. height: math.unit(17, "feet"),
  48009. name: "Standing",
  48010. image: {
  48011. source: "./media/characters/aster/standing.svg",
  48012. extra: 1798/1598,
  48013. bottom: 117/1915
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(17, "feet"),
  48021. default: true
  48022. },
  48023. {
  48024. name: "Homewrecker",
  48025. height: math.unit(95, "feet")
  48026. },
  48027. {
  48028. name: "Planet Devourer",
  48029. height: math.unit(1008000, "miles")
  48030. },
  48031. ]
  48032. ))
  48033. //characters
  48034. function makeCharacters() {
  48035. const results = [];
  48036. characterMakers.forEach(character => {
  48037. results.push(character());
  48038. });
  48039. return results;
  48040. }