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.
 
 
 

48440 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. }
  1900. //species
  1901. function getSpeciesInfo(speciesList) {
  1902. let result = new Set();
  1903. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1904. result.add(entry)
  1905. });
  1906. return Array.from(result);
  1907. };
  1908. function getSpeciesInfoHelper(species) {
  1909. if (!speciesData[species]) {
  1910. console.warn(species + " doesn't exist");
  1911. return [];
  1912. }
  1913. if (speciesData[species].parents) {
  1914. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1915. } else {
  1916. return [species];
  1917. }
  1918. }
  1919. characterMakers.push(() => makeCharacter(
  1920. {
  1921. name: "Fen",
  1922. species: ["crux"],
  1923. description: {
  1924. title: "Bio",
  1925. text: "Very furry. Sheds on everything."
  1926. },
  1927. tags: [
  1928. "anthro",
  1929. "goo"
  1930. ]
  1931. },
  1932. {
  1933. front: {
  1934. height: math.unit(12, "feet"),
  1935. weight: math.unit(2400, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/fen/front.svg",
  1939. extra: 1804/1562,
  1940. bottom: 205/2009
  1941. }
  1942. },
  1943. diving: {
  1944. height: math.unit(4.9, "meters"),
  1945. weight: math.unit(2400, "lb"),
  1946. name: "Diving",
  1947. image: {
  1948. source: "./media/characters/fen/diving.svg"
  1949. }
  1950. },
  1951. goo: {
  1952. height: math.unit(12, "feet"),
  1953. weight: math.unit(3000, "lb"),
  1954. capacity: math.unit(6, "people"),
  1955. name: "Goo",
  1956. image: {
  1957. source: "./media/characters/fen/goo.svg",
  1958. extra: 1307/1071,
  1959. bottom: 134/1441
  1960. }
  1961. },
  1962. maw: {
  1963. height: math.unit(5.03, "feet"),
  1964. name: "Maw",
  1965. image: {
  1966. source: "./media/characters/fen/maw.svg"
  1967. }
  1968. },
  1969. gooCeiling: {
  1970. height: math.unit(6.6, "feet"),
  1971. weight: math.unit(3000, "lb"),
  1972. capacity: math.unit(6, "people"),
  1973. name: "Goo (Ceiling)",
  1974. image: {
  1975. source: "./media/characters/fen/goo-ceiling.svg"
  1976. }
  1977. },
  1978. back: {
  1979. height: math.unit(12, "feet"),
  1980. weight: math.unit(2400, "lb"),
  1981. name: "Back",
  1982. image: {
  1983. source: "./media/characters/fen/back.svg",
  1984. },
  1985. info: {
  1986. description: {
  1987. mode: "append",
  1988. text: "\n\nHe is not currently looking at you."
  1989. }
  1990. }
  1991. },
  1992. full: {
  1993. height: math.unit(1.6, "meter"),
  1994. weight: math.unit(3200, "lb"),
  1995. name: "Full",
  1996. image: {
  1997. source: "./media/characters/fen/full.svg",
  1998. extra: 1133/859,
  1999. bottom: 145/1278
  2000. },
  2001. info: {
  2002. description: {
  2003. mode: "append",
  2004. text: "\n\nMunch."
  2005. }
  2006. }
  2007. },
  2008. gooLounging: {
  2009. height: math.unit(4.53, "feet"),
  2010. weight: math.unit(3000, "lb"),
  2011. capacity: math.unit(6, "people"),
  2012. name: "Goo (Lounging)",
  2013. image: {
  2014. source: "./media/characters/fen/goo.svg",
  2015. bottom: 116 / 613
  2016. }
  2017. },
  2018. lounging: {
  2019. height: math.unit(10.52, "feet"),
  2020. weight: math.unit(2400, "lb"),
  2021. name: "Lounging",
  2022. image: {
  2023. source: "./media/characters/fen/lounging.svg"
  2024. }
  2025. },
  2026. },
  2027. [
  2028. {
  2029. name: "Small",
  2030. height: math.unit(2.2428, "meter")
  2031. },
  2032. {
  2033. name: "Normal",
  2034. height: math.unit(12, "feet"),
  2035. default: true,
  2036. },
  2037. {
  2038. name: "Big",
  2039. height: math.unit(20, "feet")
  2040. },
  2041. {
  2042. name: "Minimacro",
  2043. height: math.unit(40, "feet"),
  2044. info: {
  2045. description: {
  2046. mode: "append",
  2047. text: "\n\nTOO DAMN BIG"
  2048. }
  2049. }
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(100, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Megamacro",
  2063. height: math.unit(2, "miles")
  2064. },
  2065. {
  2066. name: "Gigamacro",
  2067. height: math.unit(10, "earths")
  2068. },
  2069. ]
  2070. ))
  2071. characterMakers.push(() => makeCharacter(
  2072. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2073. {
  2074. front: {
  2075. height: math.unit(183, "cm"),
  2076. weight: math.unit(80, "kg"),
  2077. name: "Front",
  2078. image: {
  2079. source: "./media/characters/sofia-fluttertail/front.svg",
  2080. bottom: 0.01,
  2081. extra: 2154 / 2081
  2082. }
  2083. },
  2084. frontAlt: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front (alt)",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2090. }
  2091. },
  2092. back: {
  2093. height: math.unit(183, "cm"),
  2094. weight: math.unit(80, "kg"),
  2095. name: "Back",
  2096. image: {
  2097. source: "./media/characters/sofia-fluttertail/back.svg"
  2098. }
  2099. },
  2100. kneeling: {
  2101. height: math.unit(125, "cm"),
  2102. weight: math.unit(80, "kg"),
  2103. name: "Kneeling",
  2104. image: {
  2105. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2106. extra: 1033 / 977,
  2107. bottom: 23.7 / 1057
  2108. }
  2109. },
  2110. maw: {
  2111. height: math.unit(183 / 5, "cm"),
  2112. name: "Maw",
  2113. image: {
  2114. source: "./media/characters/sofia-fluttertail/maw.svg"
  2115. }
  2116. },
  2117. mawcloseup: {
  2118. height: math.unit(183 / 5 * 0.41, "cm"),
  2119. name: "Maw (Closeup)",
  2120. image: {
  2121. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2122. }
  2123. },
  2124. paws: {
  2125. height: math.unit(1.17, "feet"),
  2126. name: "Paws",
  2127. image: {
  2128. source: "./media/characters/sofia-fluttertail/paws.svg",
  2129. extra: 851 / 851,
  2130. bottom: 17 / 868
  2131. }
  2132. },
  2133. },
  2134. [
  2135. {
  2136. name: "Normal",
  2137. height: math.unit(1.83, "meter")
  2138. },
  2139. {
  2140. name: "Size Thief",
  2141. height: math.unit(18, "feet")
  2142. },
  2143. {
  2144. name: "50 Foot Collie",
  2145. height: math.unit(50, "feet")
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(96, "feet"),
  2150. default: true
  2151. },
  2152. {
  2153. name: "Megamerger",
  2154. height: math.unit(650, "feet")
  2155. },
  2156. ]
  2157. ))
  2158. characterMakers.push(() => makeCharacter(
  2159. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2160. {
  2161. front: {
  2162. height: math.unit(7, "feet"),
  2163. weight: math.unit(100, "kg"),
  2164. name: "Front",
  2165. image: {
  2166. source: "./media/characters/march/front.svg",
  2167. extra: 1992/1851,
  2168. bottom: 39/2031
  2169. }
  2170. },
  2171. foot: {
  2172. height: math.unit(0.9, "feet"),
  2173. name: "Foot",
  2174. image: {
  2175. source: "./media/characters/march/foot.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(7.9, "feet")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(220, "meters")
  2187. },
  2188. {
  2189. name: "Megamacro",
  2190. height: math.unit(2.98, "km"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Gigamacro",
  2195. height: math.unit(15963, "km")
  2196. },
  2197. {
  2198. name: "Teramacro",
  2199. height: math.unit(2980000000, "km")
  2200. },
  2201. {
  2202. name: "Examacro",
  2203. height: math.unit(250, "parsecs")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(6, "feet"),
  2212. weight: math.unit(60, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/noir/front.svg",
  2216. extra: 1,
  2217. bottom: 0.032
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6.6, "feet")
  2225. },
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(500, "feet")
  2229. },
  2230. {
  2231. name: "Megamacro",
  2232. height: math.unit(2.5, "km"),
  2233. default: true
  2234. },
  2235. {
  2236. name: "Gigamacro",
  2237. height: math.unit(22500, "km")
  2238. },
  2239. {
  2240. name: "Teramacro",
  2241. height: math.unit(2500000000, "km")
  2242. },
  2243. {
  2244. name: "Examacro",
  2245. height: math.unit(200, "parsecs")
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(100, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/okuri/front.svg",
  2258. extra: 1,
  2259. bottom: 0.037
  2260. }
  2261. },
  2262. back: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Back",
  2266. image: {
  2267. source: "./media/characters/okuri/back.svg",
  2268. extra: 1,
  2269. bottom: 0.007
  2270. }
  2271. },
  2272. },
  2273. [
  2274. {
  2275. name: "Megamacro",
  2276. height: math.unit(100, "miles"),
  2277. default: true
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(7, "feet"),
  2286. weight: math.unit(100, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/manny/front.svg",
  2290. extra: 1,
  2291. bottom: 0.06
  2292. }
  2293. },
  2294. back: {
  2295. height: math.unit(7, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Back",
  2298. image: {
  2299. source: "./media/characters/manny/back.svg",
  2300. extra: 1,
  2301. bottom: 0.014
  2302. }
  2303. },
  2304. },
  2305. [
  2306. {
  2307. name: "Normal",
  2308. height: math.unit(7, "feet"),
  2309. },
  2310. {
  2311. name: "Macro",
  2312. height: math.unit(78, "feet"),
  2313. default: true
  2314. },
  2315. {
  2316. name: "Macro+",
  2317. height: math.unit(300, "meters")
  2318. },
  2319. {
  2320. name: "Macro++",
  2321. height: math.unit(2400, "meters")
  2322. },
  2323. {
  2324. name: "Megamacro",
  2325. height: math.unit(5167, "meters")
  2326. },
  2327. {
  2328. name: "Gigamacro",
  2329. height: math.unit(41769, "miles")
  2330. },
  2331. ]
  2332. ))
  2333. characterMakers.push(() => makeCharacter(
  2334. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2335. {
  2336. front: {
  2337. height: math.unit(7, "feet"),
  2338. weight: math.unit(100, "kg"),
  2339. name: "Front",
  2340. image: {
  2341. source: "./media/characters/adake/front-1.svg"
  2342. }
  2343. },
  2344. frontAlt: {
  2345. height: math.unit(7, "feet"),
  2346. weight: math.unit(100, "kg"),
  2347. name: "Front (Alt)",
  2348. image: {
  2349. source: "./media/characters/adake/front-2.svg",
  2350. extra: 1,
  2351. bottom: 0.01
  2352. }
  2353. },
  2354. back: {
  2355. height: math.unit(7, "feet"),
  2356. weight: math.unit(100, "kg"),
  2357. name: "Back",
  2358. image: {
  2359. source: "./media/characters/adake/back.svg",
  2360. }
  2361. },
  2362. kneel: {
  2363. height: math.unit(5.385, "feet"),
  2364. weight: math.unit(100, "kg"),
  2365. name: "Kneeling",
  2366. image: {
  2367. source: "./media/characters/adake/kneel.svg",
  2368. bottom: 0.052
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Normal",
  2375. height: math.unit(7, "feet"),
  2376. },
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(78, "feet"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(300, "meters")
  2385. },
  2386. {
  2387. name: "Macro++",
  2388. height: math.unit(2400, "meters")
  2389. },
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(5167, "meters")
  2393. },
  2394. {
  2395. name: "Gigamacro",
  2396. height: math.unit(41769, "miles")
  2397. },
  2398. ]
  2399. ))
  2400. characterMakers.push(() => makeCharacter(
  2401. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2402. {
  2403. front: {
  2404. height: math.unit(1.65, "meters"),
  2405. weight: math.unit(50, "kg"),
  2406. name: "Front",
  2407. image: {
  2408. source: "./media/characters/elijah/front.svg",
  2409. extra: 858 / 830,
  2410. bottom: 95.5 / 953.8559
  2411. }
  2412. },
  2413. back: {
  2414. height: math.unit(1.65, "meters"),
  2415. weight: math.unit(50, "kg"),
  2416. name: "Back",
  2417. image: {
  2418. source: "./media/characters/elijah/back.svg",
  2419. extra: 895 / 850,
  2420. bottom: 5.3 / 897.956
  2421. }
  2422. },
  2423. frontNsfw: {
  2424. height: math.unit(1.65, "meters"),
  2425. weight: math.unit(50, "kg"),
  2426. name: "Front (NSFW)",
  2427. image: {
  2428. source: "./media/characters/elijah/front-nsfw.svg",
  2429. extra: 858 / 830,
  2430. bottom: 95.5 / 953.8559
  2431. }
  2432. },
  2433. backNsfw: {
  2434. height: math.unit(1.65, "meters"),
  2435. weight: math.unit(50, "kg"),
  2436. name: "Back (NSFW)",
  2437. image: {
  2438. source: "./media/characters/elijah/back-nsfw.svg",
  2439. extra: 895 / 850,
  2440. bottom: 5.3 / 897.956
  2441. }
  2442. },
  2443. dick: {
  2444. height: math.unit(1, "feet"),
  2445. name: "Dick",
  2446. image: {
  2447. source: "./media/characters/elijah/dick.svg"
  2448. }
  2449. },
  2450. beakOpen: {
  2451. height: math.unit(1.25, "feet"),
  2452. name: "Beak (Open)",
  2453. image: {
  2454. source: "./media/characters/elijah/beak-open.svg"
  2455. }
  2456. },
  2457. beakShut: {
  2458. height: math.unit(1.25, "feet"),
  2459. name: "Beak (Shut)",
  2460. image: {
  2461. source: "./media/characters/elijah/beak-shut.svg"
  2462. }
  2463. },
  2464. footFlexing: {
  2465. height: math.unit(1.61, "feet"),
  2466. name: "Foot (Flexing)",
  2467. image: {
  2468. source: "./media/characters/elijah/foot-flexing.svg"
  2469. }
  2470. },
  2471. footStepping: {
  2472. height: math.unit(1.44, "feet"),
  2473. name: "Foot (Stepping)",
  2474. image: {
  2475. source: "./media/characters/elijah/foot-stepping.svg"
  2476. }
  2477. },
  2478. plantigradeLeg: {
  2479. height: math.unit(2.34, "feet"),
  2480. name: "Plantigrade Leg",
  2481. image: {
  2482. source: "./media/characters/elijah/plantigrade-leg.svg"
  2483. }
  2484. },
  2485. plantigradeFootLeft: {
  2486. height: math.unit(0.9, "feet"),
  2487. name: "Plantigrade Foot (Left)",
  2488. image: {
  2489. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2490. }
  2491. },
  2492. plantigradeFootRight: {
  2493. height: math.unit(0.9, "feet"),
  2494. name: "Plantigrade Foot (Right)",
  2495. image: {
  2496. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2497. }
  2498. },
  2499. },
  2500. [
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(1.65, "meters")
  2504. },
  2505. {
  2506. name: "Macro",
  2507. height: math.unit(55, "meters"),
  2508. default: true
  2509. },
  2510. {
  2511. name: "Macro+",
  2512. height: math.unit(105, "meters")
  2513. },
  2514. ]
  2515. ))
  2516. characterMakers.push(() => makeCharacter(
  2517. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2518. {
  2519. front: {
  2520. height: math.unit(7 + 2/12, "feet"),
  2521. weight: math.unit(320, "kg"),
  2522. name: "Front",
  2523. image: {
  2524. source: "./media/characters/rai/front.svg",
  2525. extra: 1802/1696,
  2526. bottom: 68/1870
  2527. }
  2528. },
  2529. frontDressed: {
  2530. height: math.unit(7 + 2/12, "feet"),
  2531. weight: math.unit(320, "kg"),
  2532. name: "Front (Dressed)",
  2533. image: {
  2534. source: "./media/characters/rai/front-dressed.svg",
  2535. extra: 1802/1696,
  2536. bottom: 68/1870
  2537. }
  2538. },
  2539. side: {
  2540. height: math.unit(7 + 2/12, "feet"),
  2541. weight: math.unit(320, "kg"),
  2542. name: "Side",
  2543. image: {
  2544. source: "./media/characters/rai/side.svg",
  2545. extra: 1789/1710,
  2546. bottom: 115/1904
  2547. }
  2548. },
  2549. back: {
  2550. height: math.unit(7 + 2/12, "feet"),
  2551. weight: math.unit(320, "kg"),
  2552. name: "Back",
  2553. image: {
  2554. source: "./media/characters/rai/back.svg",
  2555. extra: 1770/1707,
  2556. bottom: 28/1798
  2557. }
  2558. },
  2559. feral: {
  2560. height: math.unit(9.5, "feet"),
  2561. weight: math.unit(640, "kg"),
  2562. name: "Feral",
  2563. image: {
  2564. source: "./media/characters/rai/feral.svg",
  2565. extra: 945/553,
  2566. bottom: 176/1121
  2567. }
  2568. },
  2569. dragon: {
  2570. height: math.unit(23, "feet"),
  2571. weight: math.unit(50000, "lb"),
  2572. name: "Dragon",
  2573. image: {
  2574. source: "./media/characters/rai/dragon.svg",
  2575. extra: 2498 / 2030,
  2576. bottom: 85.2 / 2584
  2577. }
  2578. },
  2579. maw: {
  2580. height: math.unit(1.69, "feet"),
  2581. name: "Maw",
  2582. image: {
  2583. source: "./media/characters/rai/maw.svg"
  2584. }
  2585. },
  2586. },
  2587. [
  2588. {
  2589. name: "Normal",
  2590. height: math.unit(7 + 2/12, "feet")
  2591. },
  2592. {
  2593. name: "Big",
  2594. height: math.unit(11, "feet")
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(302, "feet"),
  2599. default: true
  2600. },
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2605. {
  2606. frontDressed: {
  2607. height: math.unit(216, "feet"),
  2608. weight: math.unit(7000000, "lb"),
  2609. name: "Front (Dressed)",
  2610. image: {
  2611. source: "./media/characters/jazzy/front-dressed.svg",
  2612. extra: 2738 / 2651,
  2613. bottom: 41.8 / 2786
  2614. }
  2615. },
  2616. backDressed: {
  2617. height: math.unit(216, "feet"),
  2618. weight: math.unit(7000000, "lb"),
  2619. name: "Back (Dressed)",
  2620. image: {
  2621. source: "./media/characters/jazzy/back-dressed.svg",
  2622. extra: 2775 / 2673,
  2623. bottom: 36.8 / 2817
  2624. }
  2625. },
  2626. front: {
  2627. height: math.unit(216, "feet"),
  2628. weight: math.unit(7000000, "lb"),
  2629. name: "Front",
  2630. image: {
  2631. source: "./media/characters/jazzy/front.svg",
  2632. extra: 2738 / 2651,
  2633. bottom: 41.8 / 2786
  2634. }
  2635. },
  2636. back: {
  2637. height: math.unit(216, "feet"),
  2638. weight: math.unit(7000000, "lb"),
  2639. name: "Back",
  2640. image: {
  2641. source: "./media/characters/jazzy/back.svg",
  2642. extra: 2775 / 2673,
  2643. bottom: 36.8 / 2817
  2644. }
  2645. },
  2646. maw: {
  2647. height: math.unit(20, "feet"),
  2648. name: "Maw",
  2649. image: {
  2650. source: "./media/characters/jazzy/maw.svg"
  2651. }
  2652. },
  2653. paws: {
  2654. height: math.unit(27.5, "feet"),
  2655. name: "Paws",
  2656. image: {
  2657. source: "./media/characters/jazzy/paws.svg"
  2658. }
  2659. },
  2660. eye: {
  2661. height: math.unit(4.4, "feet"),
  2662. name: "Eye",
  2663. image: {
  2664. source: "./media/characters/jazzy/eye.svg"
  2665. }
  2666. },
  2667. droneOffense: {
  2668. height: math.unit(9.5, "inches"),
  2669. name: "Drone (Offense)",
  2670. image: {
  2671. source: "./media/characters/jazzy/drone-offense.svg"
  2672. }
  2673. },
  2674. droneRecon: {
  2675. height: math.unit(9.5, "inches"),
  2676. name: "Drone (Recon)",
  2677. image: {
  2678. source: "./media/characters/jazzy/drone-recon.svg"
  2679. }
  2680. },
  2681. droneDefense: {
  2682. height: math.unit(9.5, "inches"),
  2683. name: "Drone (Defense)",
  2684. image: {
  2685. source: "./media/characters/jazzy/drone-defense.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(216, "feet"),
  2693. default: true
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2699. {
  2700. front: {
  2701. height: math.unit(9 + 6/12, "feet"),
  2702. weight: math.unit(700, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/flamm/front.svg",
  2706. extra: 1751/1632,
  2707. bottom: 46/1797
  2708. }
  2709. },
  2710. buff: {
  2711. height: math.unit(9 + 6/12, "feet"),
  2712. weight: math.unit(950, "lb"),
  2713. name: "Buff",
  2714. image: {
  2715. source: "./media/characters/flamm/buff.svg",
  2716. extra: 3018/2874,
  2717. bottom: 221/3239
  2718. }
  2719. },
  2720. },
  2721. [
  2722. {
  2723. name: "Normal",
  2724. height: math.unit(9.5, "feet")
  2725. },
  2726. {
  2727. name: "Macro",
  2728. height: math.unit(200, "feet"),
  2729. default: true
  2730. },
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2735. {
  2736. front: {
  2737. height: math.unit(5 + 3/12, "feet"),
  2738. weight: math.unit(60, "kg"),
  2739. name: "Front",
  2740. image: {
  2741. source: "./media/characters/zephiro/front.svg",
  2742. extra: 2309 / 2162,
  2743. bottom: 0.069
  2744. }
  2745. },
  2746. side: {
  2747. height: math.unit(5 + 3/12, "feet"),
  2748. weight: math.unit(60, "kg"),
  2749. name: "Side",
  2750. image: {
  2751. source: "./media/characters/zephiro/side.svg",
  2752. extra: 2403 / 2279,
  2753. bottom: 0.015
  2754. }
  2755. },
  2756. back: {
  2757. height: math.unit(5 + 3/12, "feet"),
  2758. weight: math.unit(60, "kg"),
  2759. name: "Back",
  2760. image: {
  2761. source: "./media/characters/zephiro/back.svg",
  2762. extra: 2373 / 2244,
  2763. bottom: 0.013
  2764. }
  2765. },
  2766. hand: {
  2767. height: math.unit(0.68, "feet"),
  2768. name: "Hand",
  2769. image: {
  2770. source: "./media/characters/zephiro/hand.svg"
  2771. }
  2772. },
  2773. paw: {
  2774. height: math.unit(1, "feet"),
  2775. name: "Paw",
  2776. image: {
  2777. source: "./media/characters/zephiro/paw.svg"
  2778. }
  2779. },
  2780. beans: {
  2781. height: math.unit(0.93, "feet"),
  2782. name: "Beans",
  2783. image: {
  2784. source: "./media/characters/zephiro/beans.svg"
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Micro",
  2791. height: math.unit(3, "inches")
  2792. },
  2793. {
  2794. name: "Normal",
  2795. height: math.unit(5 + 3 / 12, "feet"),
  2796. default: true
  2797. },
  2798. {
  2799. name: "Macro",
  2800. height: math.unit(118, "feet")
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(5, "feet"),
  2809. weight: math.unit(90, "kg"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/fory/front.svg",
  2813. extra: 2862 / 2674,
  2814. bottom: 180 / 3043.8
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(5, "feet"),
  2819. weight: math.unit(90, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/fory/back.svg",
  2823. extra: 2962 / 2791,
  2824. bottom: 106 / 3071.8
  2825. }
  2826. },
  2827. foot: {
  2828. height: math.unit(2.14, "feet"),
  2829. name: "Foot",
  2830. image: {
  2831. source: "./media/characters/fory/foot.svg"
  2832. }
  2833. },
  2834. },
  2835. [
  2836. {
  2837. name: "Normal",
  2838. height: math.unit(5, "feet")
  2839. },
  2840. {
  2841. name: "Macro",
  2842. height: math.unit(50, "feet"),
  2843. default: true
  2844. },
  2845. {
  2846. name: "Megamacro",
  2847. height: math.unit(10, "miles")
  2848. },
  2849. {
  2850. name: "Gigamacro",
  2851. height: math.unit(5, "earths")
  2852. },
  2853. ]
  2854. ))
  2855. characterMakers.push(() => makeCharacter(
  2856. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2857. {
  2858. front: {
  2859. height: math.unit(7, "feet"),
  2860. weight: math.unit(90, "kg"),
  2861. name: "Front",
  2862. image: {
  2863. source: "./media/characters/kurrikage/front.svg",
  2864. extra: 1845/1733,
  2865. bottom: 119/1964
  2866. }
  2867. },
  2868. back: {
  2869. height: math.unit(7, "feet"),
  2870. weight: math.unit(90, "kg"),
  2871. name: "Back",
  2872. image: {
  2873. source: "./media/characters/kurrikage/back.svg",
  2874. extra: 1790/1677,
  2875. bottom: 61/1851
  2876. }
  2877. },
  2878. dressed: {
  2879. height: math.unit(7, "feet"),
  2880. weight: math.unit(90, "kg"),
  2881. name: "Dressed",
  2882. image: {
  2883. source: "./media/characters/kurrikage/dressed.svg",
  2884. extra: 1845/1733,
  2885. bottom: 119/1964
  2886. }
  2887. },
  2888. foot: {
  2889. height: math.unit(1.5, "feet"),
  2890. name: "Foot",
  2891. image: {
  2892. source: "./media/characters/kurrikage/foot.svg"
  2893. }
  2894. },
  2895. staff: {
  2896. height: math.unit(6.7, "feet"),
  2897. name: "Staff",
  2898. image: {
  2899. source: "./media/characters/kurrikage/staff.svg"
  2900. }
  2901. },
  2902. peek: {
  2903. height: math.unit(1.05, "feet"),
  2904. name: "Peeking",
  2905. image: {
  2906. source: "./media/characters/kurrikage/peek.svg",
  2907. bottom: 0.08
  2908. }
  2909. },
  2910. },
  2911. [
  2912. {
  2913. name: "Normal",
  2914. height: math.unit(12, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Big",
  2919. height: math.unit(20, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(500, "feet")
  2924. },
  2925. {
  2926. name: "Megamacro",
  2927. height: math.unit(20, "miles")
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(6, "feet"),
  2936. weight: math.unit(75, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/shingo/front.svg",
  2940. extra: 1900/1825,
  2941. bottom: 82/1982
  2942. }
  2943. },
  2944. side: {
  2945. height: math.unit(6, "feet"),
  2946. weight: math.unit(75, "kg"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/shingo/side.svg",
  2950. extra: 1930/1865,
  2951. bottom: 16/1946
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(6, "feet"),
  2956. weight: math.unit(75, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/shingo/back.svg",
  2960. extra: 1922/1852,
  2961. bottom: 16/1938
  2962. }
  2963. },
  2964. frontDressed: {
  2965. height: math.unit(6, "feet"),
  2966. weight: math.unit(150, "lb"),
  2967. name: "Front-dressed",
  2968. image: {
  2969. source: "./media/characters/shingo/front-dressed.svg",
  2970. extra: 1900/1825,
  2971. bottom: 82/1982
  2972. }
  2973. },
  2974. paw: {
  2975. height: math.unit(1.29, "feet"),
  2976. name: "Paw",
  2977. image: {
  2978. source: "./media/characters/shingo/paw.svg"
  2979. }
  2980. },
  2981. hand: {
  2982. height: math.unit(1.07, "feet"),
  2983. name: "Hand",
  2984. image: {
  2985. source: "./media/characters/shingo/hand.svg"
  2986. }
  2987. },
  2988. frontAlt: {
  2989. height: math.unit(6, "feet"),
  2990. weight: math.unit(75, "kg"),
  2991. name: "Front (Alt)",
  2992. image: {
  2993. source: "./media/characters/shingo/front-alt.svg",
  2994. extra: 3511 / 3338,
  2995. bottom: 0.005
  2996. }
  2997. },
  2998. frontAlt2: {
  2999. height: math.unit(6, "feet"),
  3000. weight: math.unit(75, "kg"),
  3001. name: "Front (Alt 2)",
  3002. image: {
  3003. source: "./media/characters/shingo/front-alt-2.svg",
  3004. extra: 706/681,
  3005. bottom: 11/717
  3006. }
  3007. },
  3008. pawAlt: {
  3009. height: math.unit(1, "feet"),
  3010. name: "Paw (Alt)",
  3011. image: {
  3012. source: "./media/characters/shingo/paw-alt.svg"
  3013. }
  3014. },
  3015. },
  3016. [
  3017. {
  3018. name: "Micro",
  3019. height: math.unit(4, "inches")
  3020. },
  3021. {
  3022. name: "Normal",
  3023. height: math.unit(6, "feet"),
  3024. default: true
  3025. },
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(108, "feet")
  3029. },
  3030. {
  3031. name: "Macro+",
  3032. height: math.unit(1500, "feet")
  3033. },
  3034. ]
  3035. ))
  3036. characterMakers.push(() => makeCharacter(
  3037. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3038. {
  3039. side: {
  3040. height: math.unit(6, "feet"),
  3041. weight: math.unit(75, "kg"),
  3042. name: "Side",
  3043. image: {
  3044. source: "./media/characters/aigey/side.svg"
  3045. }
  3046. },
  3047. },
  3048. [
  3049. {
  3050. name: "Macro",
  3051. height: math.unit(200, "feet"),
  3052. default: true
  3053. },
  3054. {
  3055. name: "Megamacro",
  3056. height: math.unit(100, "miles")
  3057. },
  3058. ]
  3059. )
  3060. )
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(5 + 5 / 12, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/natasha/front.svg",
  3070. extra: 859 / 824,
  3071. bottom: 23 / 879.6
  3072. }
  3073. },
  3074. frontNsfw: {
  3075. height: math.unit(5 + 5 / 12, "feet"),
  3076. weight: math.unit(75, "kg"),
  3077. name: "Front (NSFW)",
  3078. image: {
  3079. source: "./media/characters/natasha/front-nsfw.svg",
  3080. extra: 859 / 824,
  3081. bottom: 23 / 879.6
  3082. }
  3083. },
  3084. frontErect: {
  3085. height: math.unit(5 + 5 / 12, "feet"),
  3086. weight: math.unit(75, "kg"),
  3087. name: "Front (Erect)",
  3088. image: {
  3089. source: "./media/characters/natasha/front-erect.svg",
  3090. extra: 859 / 824,
  3091. bottom: 23 / 879.6
  3092. }
  3093. },
  3094. back: {
  3095. height: math.unit(5 + 5 / 12, "feet"),
  3096. weight: math.unit(75, "kg"),
  3097. name: "Back",
  3098. image: {
  3099. source: "./media/characters/natasha/back.svg",
  3100. extra: 887.9 / 852.6,
  3101. bottom: 9.7 / 896.4
  3102. }
  3103. },
  3104. backAlt: {
  3105. height: math.unit(5 + 5 / 12, "feet"),
  3106. weight: math.unit(75, "kg"),
  3107. name: "Back (Alt)",
  3108. image: {
  3109. source: "./media/characters/natasha/back-alt.svg",
  3110. extra: 1236.7 / 1192,
  3111. bottom: 22.3 / 1258.2
  3112. }
  3113. },
  3114. dick: {
  3115. height: math.unit(1.772, "feet"),
  3116. name: "Dick",
  3117. image: {
  3118. source: "./media/characters/natasha/dick.svg"
  3119. }
  3120. },
  3121. paw: {
  3122. height: math.unit(0.250, "meters"),
  3123. name: "Paw",
  3124. image: {
  3125. source: "./media/characters/natasha/paw.svg"
  3126. }
  3127. },
  3128. },
  3129. [
  3130. {
  3131. name: "Normal",
  3132. height: math.unit(5 + 5 / 12, "feet")
  3133. },
  3134. {
  3135. name: "Large",
  3136. height: math.unit(12, "feet")
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(100, "feet"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Macro+",
  3145. height: math.unit(260, "feet")
  3146. },
  3147. {
  3148. name: "Macro++",
  3149. height: math.unit(1, "mile")
  3150. },
  3151. ]
  3152. ))
  3153. characterMakers.push(() => makeCharacter(
  3154. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3155. {
  3156. front: {
  3157. height: math.unit(6, "feet"),
  3158. weight: math.unit(75, "kg"),
  3159. name: "Front",
  3160. image: {
  3161. source: "./media/characters/malik/front.svg"
  3162. }
  3163. },
  3164. side: {
  3165. height: math.unit(6, "feet"),
  3166. weight: math.unit(75, "kg"),
  3167. name: "Side",
  3168. image: {
  3169. source: "./media/characters/malik/side.svg",
  3170. extra: 1.1539
  3171. }
  3172. },
  3173. back: {
  3174. height: math.unit(6, "feet"),
  3175. weight: math.unit(75, "kg"),
  3176. name: "Back",
  3177. image: {
  3178. source: "./media/characters/malik/back.svg"
  3179. }
  3180. },
  3181. },
  3182. [
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(156, "feet"),
  3186. default: true
  3187. },
  3188. {
  3189. name: "Macro+",
  3190. height: math.unit(1188, "feet")
  3191. },
  3192. ]
  3193. ))
  3194. characterMakers.push(() => makeCharacter(
  3195. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3196. {
  3197. front: {
  3198. height: math.unit(6, "feet"),
  3199. weight: math.unit(75, "kg"),
  3200. name: "Front",
  3201. image: {
  3202. source: "./media/characters/sefer/front.svg",
  3203. extra: 848 / 659,
  3204. bottom: 28.3 / 876.442
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(6, "feet"),
  3209. weight: math.unit(75, "kg"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/sefer/back.svg",
  3213. extra: 864 / 695,
  3214. bottom: 10 / 871
  3215. }
  3216. },
  3217. frontDressed: {
  3218. height: math.unit(6, "feet"),
  3219. weight: math.unit(75, "kg"),
  3220. name: "Front (Dressed)",
  3221. image: {
  3222. source: "./media/characters/sefer/front-dressed.svg",
  3223. extra: 839 / 653,
  3224. bottom: 37.6 / 878
  3225. }
  3226. },
  3227. },
  3228. [
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(6, "feet"),
  3232. default: true
  3233. },
  3234. ]
  3235. ))
  3236. characterMakers.push(() => makeCharacter(
  3237. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3238. {
  3239. body: {
  3240. height: math.unit(2.2428, "meter"),
  3241. weight: math.unit(124.738, "kg"),
  3242. name: "Body",
  3243. image: {
  3244. extra: 1225 / 1050,
  3245. source: "./media/characters/north/front.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Micro",
  3252. height: math.unit(4, "inches")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(63, "meters")
  3257. },
  3258. {
  3259. name: "Megamacro",
  3260. height: math.unit(101, "miles"),
  3261. default: true
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3267. {
  3268. angled: {
  3269. height: math.unit(4, "meter"),
  3270. weight: math.unit(150, "kg"),
  3271. name: "Angled",
  3272. image: {
  3273. source: "./media/characters/talan/angled-sfw.svg",
  3274. bottom: 29 / 3734
  3275. }
  3276. },
  3277. angledNsfw: {
  3278. height: math.unit(4, "meter"),
  3279. weight: math.unit(150, "kg"),
  3280. name: "Angled (NSFW)",
  3281. image: {
  3282. source: "./media/characters/talan/angled-nsfw.svg",
  3283. bottom: 29 / 3734
  3284. }
  3285. },
  3286. frontNsfw: {
  3287. height: math.unit(4, "meter"),
  3288. weight: math.unit(150, "kg"),
  3289. name: "Front (NSFW)",
  3290. image: {
  3291. source: "./media/characters/talan/front-nsfw.svg",
  3292. bottom: 29 / 3734
  3293. }
  3294. },
  3295. sideNsfw: {
  3296. height: math.unit(4, "meter"),
  3297. weight: math.unit(150, "kg"),
  3298. name: "Side (NSFW)",
  3299. image: {
  3300. source: "./media/characters/talan/side-nsfw.svg",
  3301. bottom: 29 / 3734
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(4, "meter"),
  3306. weight: math.unit(150, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/talan/back.svg"
  3310. }
  3311. },
  3312. dickBottom: {
  3313. height: math.unit(0.621, "meter"),
  3314. name: "Dick (Bottom)",
  3315. image: {
  3316. source: "./media/characters/talan/dick-bottom.svg"
  3317. }
  3318. },
  3319. dickTop: {
  3320. height: math.unit(0.621, "meter"),
  3321. name: "Dick (Top)",
  3322. image: {
  3323. source: "./media/characters/talan/dick-top.svg"
  3324. }
  3325. },
  3326. dickSide: {
  3327. height: math.unit(0.305, "meter"),
  3328. name: "Dick (Side)",
  3329. image: {
  3330. source: "./media/characters/talan/dick-side.svg"
  3331. }
  3332. },
  3333. dickFront: {
  3334. height: math.unit(0.305, "meter"),
  3335. name: "Dick (Front)",
  3336. image: {
  3337. source: "./media/characters/talan/dick-front.svg"
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(4, "meters")
  3345. },
  3346. {
  3347. name: "Macro",
  3348. height: math.unit(100, "meters")
  3349. },
  3350. {
  3351. name: "Megamacro",
  3352. height: math.unit(2, "miles"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Gigamacro",
  3357. height: math.unit(5000, "miles")
  3358. },
  3359. {
  3360. name: "Teramacro",
  3361. height: math.unit(100, "parsecs")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(90, "kg"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/gael'rathus/front.svg"
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(90, "kg"),
  3379. name: "Front (alt)",
  3380. image: {
  3381. source: "./media/characters/gael'rathus/front-alt.svg"
  3382. }
  3383. },
  3384. frontAlt2: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(90, "kg"),
  3387. name: "Front (alt 2)",
  3388. image: {
  3389. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3390. }
  3391. }
  3392. },
  3393. [
  3394. {
  3395. name: "Normal",
  3396. height: math.unit(9, "feet"),
  3397. default: true
  3398. },
  3399. {
  3400. name: "Large",
  3401. height: math.unit(25, "feet")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(0.25, "miles")
  3406. },
  3407. {
  3408. name: "Megamacro",
  3409. height: math.unit(10, "miles")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3415. {
  3416. side: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(140, "kg"),
  3419. name: "Side",
  3420. image: {
  3421. source: "./media/characters/sosha/side.svg",
  3422. bottom: 0.042
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(12, "feet"),
  3430. default: true
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3436. {
  3437. side: {
  3438. height: math.unit(5 + 5 / 12, "feet"),
  3439. weight: math.unit(170, "kg"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/runnola/side.svg",
  3443. extra: 741 / 448,
  3444. bottom: 0.05
  3445. }
  3446. },
  3447. },
  3448. [
  3449. {
  3450. name: "Small",
  3451. height: math.unit(3, "feet")
  3452. },
  3453. {
  3454. name: "Normal",
  3455. height: math.unit(5 + 5 / 12, "feet"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Big",
  3460. height: math.unit(10, "feet")
  3461. },
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(2, "meter"),
  3469. weight: math.unit(50, "kg"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/kurribird/front.svg",
  3473. bottom: 0.015
  3474. }
  3475. },
  3476. frontAlt: {
  3477. height: math.unit(1.5, "meter"),
  3478. weight: math.unit(50, "kg"),
  3479. name: "Front (Alt)",
  3480. image: {
  3481. source: "./media/characters/kurribird/front-alt.svg",
  3482. extra: 1.45
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(7, "feet")
  3490. },
  3491. {
  3492. name: "Big",
  3493. height: math.unit(12, "feet"),
  3494. default: true
  3495. },
  3496. {
  3497. name: "Macro",
  3498. height: math.unit(1500, "feet")
  3499. },
  3500. {
  3501. name: "Megamacro",
  3502. height: math.unit(2, "miles")
  3503. }
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(2, "meter"),
  3511. weight: math.unit(80, "kg"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/elbial/front.svg",
  3515. extra: 1643 / 1556,
  3516. bottom: 60.2 / 1696
  3517. }
  3518. },
  3519. side: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(80, "kg"),
  3522. name: "Side",
  3523. image: {
  3524. source: "./media/characters/elbial/side.svg",
  3525. extra: 1601/1528,
  3526. bottom: 97/1698
  3527. }
  3528. },
  3529. back: {
  3530. height: math.unit(2, "meter"),
  3531. weight: math.unit(80, "kg"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/elbial/back.svg",
  3535. extra: 1653/1569,
  3536. bottom: 20/1673
  3537. }
  3538. },
  3539. frontDressed: {
  3540. height: math.unit(2, "meter"),
  3541. weight: math.unit(80, "kg"),
  3542. name: "Front (Dressed)",
  3543. image: {
  3544. source: "./media/characters/elbial/front-dressed.svg",
  3545. extra: 1638/1569,
  3546. bottom: 70/1708
  3547. }
  3548. },
  3549. genitals: {
  3550. height: math.unit(2 / 3.367, "meter"),
  3551. name: "Genitals",
  3552. image: {
  3553. source: "./media/characters/elbial/genitals.svg"
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Large",
  3560. height: math.unit(100, "feet")
  3561. },
  3562. {
  3563. name: "Macro",
  3564. height: math.unit(500, "feet"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Megamacro",
  3569. height: math.unit(10, "miles")
  3570. },
  3571. {
  3572. name: "Gigamacro",
  3573. height: math.unit(25000, "miles")
  3574. },
  3575. {
  3576. name: "Full-Size",
  3577. height: math.unit(8000000, "gigaparsecs")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3583. {
  3584. front: {
  3585. height: math.unit(2, "meter"),
  3586. weight: math.unit(60, "kg"),
  3587. name: "Front",
  3588. image: {
  3589. source: "./media/characters/noah/front.svg"
  3590. }
  3591. },
  3592. talons: {
  3593. height: math.unit(0.315, "meter"),
  3594. name: "Talons",
  3595. image: {
  3596. source: "./media/characters/noah/talons.svg"
  3597. }
  3598. }
  3599. },
  3600. [
  3601. {
  3602. name: "Large",
  3603. height: math.unit(50, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(750, "feet"),
  3608. default: true
  3609. },
  3610. {
  3611. name: "Megamacro",
  3612. height: math.unit(50, "miles")
  3613. },
  3614. {
  3615. name: "Gigamacro",
  3616. height: math.unit(100000, "miles")
  3617. },
  3618. {
  3619. name: "Full-Size",
  3620. height: math.unit(3000000000, "miles")
  3621. }
  3622. ]
  3623. ))
  3624. characterMakers.push(() => makeCharacter(
  3625. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3626. {
  3627. front: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(80, "kg"),
  3630. name: "Front",
  3631. image: {
  3632. source: "./media/characters/natalya/front.svg"
  3633. }
  3634. },
  3635. back: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(80, "kg"),
  3638. name: "Back",
  3639. image: {
  3640. source: "./media/characters/natalya/back.svg"
  3641. }
  3642. }
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(150, "feet"),
  3648. default: true
  3649. },
  3650. {
  3651. name: "Megamacro",
  3652. height: math.unit(5, "miles")
  3653. },
  3654. {
  3655. name: "Full-Size",
  3656. height: math.unit(600, "kiloparsecs")
  3657. }
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meter"),
  3665. weight: math.unit(50, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/erestrebah/front.svg",
  3669. extra: 1262/1162,
  3670. bottom: 96/1358
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(2, "meter"),
  3675. weight: math.unit(50, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/erestrebah/back.svg",
  3679. extra: 1257/1139,
  3680. bottom: 13/1270
  3681. }
  3682. },
  3683. wing: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(50, "kg"),
  3686. name: "Wing",
  3687. image: {
  3688. source: "./media/characters/erestrebah/wing.svg",
  3689. extra: 1262/1162,
  3690. bottom: 96/1358
  3691. }
  3692. },
  3693. mouth: {
  3694. height: math.unit(0.39, "feet"),
  3695. name: "Mouth",
  3696. image: {
  3697. source: "./media/characters/erestrebah/mouth.svg"
  3698. }
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Normal",
  3704. height: math.unit(10, "feet")
  3705. },
  3706. {
  3707. name: "Large",
  3708. height: math.unit(50, "feet"),
  3709. default: true
  3710. },
  3711. {
  3712. name: "Macro",
  3713. height: math.unit(300, "feet")
  3714. },
  3715. {
  3716. name: "Macro+",
  3717. height: math.unit(750, "feet")
  3718. },
  3719. {
  3720. name: "Megamacro",
  3721. height: math.unit(3, "miles")
  3722. }
  3723. ]
  3724. ))
  3725. characterMakers.push(() => makeCharacter(
  3726. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3727. {
  3728. front: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(80, "kg"),
  3731. name: "Front",
  3732. image: {
  3733. source: "./media/characters/jennifer/front.svg",
  3734. bottom: 0.11,
  3735. extra: 1.16
  3736. }
  3737. },
  3738. frontAlt: {
  3739. height: math.unit(2, "meter"),
  3740. weight: math.unit(80, "kg"),
  3741. name: "Front (Alt)",
  3742. image: {
  3743. source: "./media/characters/jennifer/front-alt.svg"
  3744. }
  3745. }
  3746. },
  3747. [
  3748. {
  3749. name: "Canon Height",
  3750. height: math.unit(120, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(300, "feet")
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(20000, "feet")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(50, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/kalista/front.svg",
  3772. extra: 1314/1145,
  3773. bottom: 101/1415
  3774. }
  3775. },
  3776. back: {
  3777. height: math.unit(2, "meter"),
  3778. weight: math.unit(50, "kg"),
  3779. name: "Back",
  3780. image: {
  3781. source: "./media/characters/kalista/back.svg",
  3782. extra: 1366 / 1156,
  3783. bottom: 33.9 / 1362.78
  3784. }
  3785. }
  3786. },
  3787. [
  3788. {
  3789. name: "Uncomfortably Small",
  3790. height: math.unit(10, "feet")
  3791. },
  3792. {
  3793. name: "Small",
  3794. height: math.unit(30, "feet")
  3795. },
  3796. {
  3797. name: "Macro",
  3798. height: math.unit(100, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro+",
  3803. height: math.unit(2000, "feet")
  3804. },
  3805. {
  3806. name: "True Form",
  3807. height: math.unit(8924, "miles")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(120, "kg"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/ggv/front.svg"
  3820. }
  3821. },
  3822. side: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(120, "kg"),
  3825. name: "Side",
  3826. image: {
  3827. source: "./media/characters/ggv/side.svg"
  3828. }
  3829. }
  3830. },
  3831. [
  3832. {
  3833. name: "Extremely Puny",
  3834. height: math.unit(9 + 5 / 12, "feet")
  3835. },
  3836. {
  3837. name: "Horribly Small",
  3838. height: math.unit(47.7, "miles"),
  3839. default: true
  3840. },
  3841. {
  3842. name: "Reasonably Sized",
  3843. height: math.unit(25000, "parsecs")
  3844. },
  3845. {
  3846. name: "Slightly Uncompressed",
  3847. height: math.unit(7.77e31, "parsecs")
  3848. },
  3849. {
  3850. name: "Omniversal",
  3851. height: math.unit(1e300, "meters")
  3852. },
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(75, "lb"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/napalm/front.svg"
  3864. }
  3865. },
  3866. back: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(75, "lb"),
  3869. name: "Back",
  3870. image: {
  3871. source: "./media/characters/napalm/back.svg"
  3872. }
  3873. }
  3874. },
  3875. [
  3876. {
  3877. name: "Standard",
  3878. height: math.unit(55, "feet"),
  3879. default: true
  3880. }
  3881. ]
  3882. ))
  3883. characterMakers.push(() => makeCharacter(
  3884. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3885. {
  3886. front: {
  3887. height: math.unit(7 + 5 / 6, "feet"),
  3888. weight: math.unit(325, "lb"),
  3889. name: "Front",
  3890. image: {
  3891. source: "./media/characters/asana/front.svg",
  3892. extra: 1133 / 1060,
  3893. bottom: 15.2 / 1148.6
  3894. }
  3895. },
  3896. back: {
  3897. height: math.unit(7 + 5 / 6, "feet"),
  3898. weight: math.unit(325, "lb"),
  3899. name: "Back",
  3900. image: {
  3901. source: "./media/characters/asana/back.svg",
  3902. extra: 1114 / 1043,
  3903. bottom: 5 / 1120
  3904. }
  3905. },
  3906. dressedDark: {
  3907. height: math.unit(7 + 5 / 6, "feet"),
  3908. weight: math.unit(325, "lb"),
  3909. name: "Dressed (Dark)",
  3910. image: {
  3911. source: "./media/characters/asana/dressed-dark.svg",
  3912. extra: 1133 / 1060,
  3913. bottom: 15.2 / 1148.6
  3914. }
  3915. },
  3916. dressedLight: {
  3917. height: math.unit(7 + 5 / 6, "feet"),
  3918. weight: math.unit(325, "lb"),
  3919. name: "Dressed (Light)",
  3920. image: {
  3921. source: "./media/characters/asana/dressed-light.svg",
  3922. extra: 1133 / 1060,
  3923. bottom: 15.2 / 1148.6
  3924. }
  3925. },
  3926. },
  3927. [
  3928. {
  3929. name: "Standard",
  3930. height: math.unit(7 + 5 / 6, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Large",
  3935. height: math.unit(10, "meters")
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(2500, "meters")
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(5e6, "meters")
  3944. },
  3945. {
  3946. name: "Examacro",
  3947. height: math.unit(5e12, "lightyears")
  3948. },
  3949. {
  3950. name: "Max Size",
  3951. height: math.unit(1e31, "lightyears")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3957. {
  3958. front: {
  3959. height: math.unit(2, "meter"),
  3960. weight: math.unit(60, "kg"),
  3961. name: "Front",
  3962. image: {
  3963. source: "./media/characters/ebony/front.svg",
  3964. bottom: 0.03,
  3965. extra: 1045 / 810 + 0.03
  3966. }
  3967. },
  3968. side: {
  3969. height: math.unit(2, "meter"),
  3970. weight: math.unit(60, "kg"),
  3971. name: "Side",
  3972. image: {
  3973. source: "./media/characters/ebony/side.svg",
  3974. bottom: 0.03,
  3975. extra: 1045 / 810 + 0.03
  3976. }
  3977. },
  3978. back: {
  3979. height: math.unit(2, "meter"),
  3980. weight: math.unit(60, "kg"),
  3981. name: "Back",
  3982. image: {
  3983. source: "./media/characters/ebony/back.svg",
  3984. bottom: 0.01,
  3985. extra: 1045 / 810 + 0.01
  3986. }
  3987. },
  3988. },
  3989. [
  3990. // TODO check why I did this lol
  3991. {
  3992. name: "Standard",
  3993. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Macro",
  3998. height: math.unit(200, "feet")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(13000, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(175, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/mountain/front.svg",
  4015. extra: 972 / 955,
  4016. bottom: 64 / 1036.6
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(175, "lb"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/mountain/back.svg",
  4025. extra: 970 / 950,
  4026. bottom: 28.25 / 999
  4027. }
  4028. },
  4029. },
  4030. [
  4031. {
  4032. name: "Large",
  4033. height: math.unit(20, "meters")
  4034. },
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(300, "meters")
  4038. },
  4039. {
  4040. name: "Gigamacro",
  4041. height: math.unit(10000, "km"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Examacro",
  4046. height: math.unit(10e9, "lightyears")
  4047. }
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4052. {
  4053. front: {
  4054. height: math.unit(8, "feet"),
  4055. weight: math.unit(500, "lb"),
  4056. name: "Front",
  4057. image: {
  4058. source: "./media/characters/rick/front.svg"
  4059. }
  4060. }
  4061. },
  4062. [
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(8, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(5, "km")
  4071. }
  4072. ]
  4073. ))
  4074. characterMakers.push(() => makeCharacter(
  4075. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4076. {
  4077. front: {
  4078. height: math.unit(8, "feet"),
  4079. weight: math.unit(120, "lb"),
  4080. name: "Front",
  4081. image: {
  4082. source: "./media/characters/ona/front.svg"
  4083. }
  4084. },
  4085. frontAlt: {
  4086. height: math.unit(8, "feet"),
  4087. weight: math.unit(120, "lb"),
  4088. name: "Front (Alt)",
  4089. image: {
  4090. source: "./media/characters/ona/front-alt.svg"
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(8, "feet"),
  4095. weight: math.unit(120, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/ona/back.svg"
  4099. }
  4100. },
  4101. foot: {
  4102. height: math.unit(1.1, "feet"),
  4103. name: "Foot",
  4104. image: {
  4105. source: "./media/characters/ona/foot.svg"
  4106. }
  4107. }
  4108. },
  4109. [
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(70, "km"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Gigamacro",
  4117. height: math.unit(681818, "miles")
  4118. },
  4119. {
  4120. name: "Examacro",
  4121. height: math.unit(3800000, "lightyears")
  4122. },
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4127. {
  4128. front: {
  4129. height: math.unit(12, "feet"),
  4130. weight: math.unit(3000, "lb"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/mech/front.svg",
  4134. extra: 2900 / 2770,
  4135. bottom: 110 / 3010
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(12, "feet"),
  4140. weight: math.unit(3000, "lb"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/mech/back.svg",
  4144. extra: 3011 / 2890,
  4145. bottom: 94 / 3105
  4146. }
  4147. },
  4148. maw: {
  4149. height: math.unit(3.07, "feet"),
  4150. name: "Maw",
  4151. image: {
  4152. source: "./media/characters/mech/maw.svg"
  4153. }
  4154. },
  4155. head: {
  4156. height: math.unit(2.82, "feet"),
  4157. name: "Head",
  4158. image: {
  4159. source: "./media/characters/mech/head.svg"
  4160. }
  4161. },
  4162. dick: {
  4163. height: math.unit(1.43, "feet"),
  4164. name: "Dick",
  4165. image: {
  4166. source: "./media/characters/mech/dick.svg"
  4167. }
  4168. },
  4169. },
  4170. [
  4171. {
  4172. name: "Normal",
  4173. height: math.unit(12, "feet")
  4174. },
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(300, "feet"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro+",
  4182. height: math.unit(1500, "feet")
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(1.3, "meter"),
  4191. weight: math.unit(30, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/gregory/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(1.3, "meter"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Macro",
  4206. height: math.unit(20, "meter")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(2.8, "meter"),
  4215. weight: math.unit(200, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/elory/front.svg",
  4219. }
  4220. }
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(2.8, "meter"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Macro",
  4230. height: math.unit(38, "meter")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(470, "feet"),
  4239. weight: math.unit(924, "tons"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/angelpatamon/front.svg",
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Normal",
  4249. height: math.unit(470, "feet"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Deity Size I",
  4254. height: math.unit(28651.2, "km")
  4255. },
  4256. {
  4257. name: "Deity Size II",
  4258. height: math.unit(171907.2, "km")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4264. {
  4265. side: {
  4266. height: math.unit(7.2, "meter"),
  4267. weight: math.unit(8.2, "tons"),
  4268. name: "Side",
  4269. image: {
  4270. source: "./media/characters/cryae/side.svg",
  4271. extra: 3500 / 1500
  4272. }
  4273. }
  4274. },
  4275. [
  4276. {
  4277. name: "Normal",
  4278. height: math.unit(7.2, "meter"),
  4279. default: true
  4280. }
  4281. ]
  4282. ))
  4283. characterMakers.push(() => makeCharacter(
  4284. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4285. {
  4286. front: {
  4287. height: math.unit(6, "feet"),
  4288. weight: math.unit(175, "lb"),
  4289. name: "Front",
  4290. image: {
  4291. source: "./media/characters/xera/front.svg",
  4292. extra: 2377 / 1972,
  4293. bottom: 75.5 / 2452
  4294. }
  4295. },
  4296. side: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(175, "lb"),
  4299. name: "Side",
  4300. image: {
  4301. source: "./media/characters/xera/side.svg",
  4302. extra: 2345 / 2019,
  4303. bottom: 39.7 / 2384
  4304. }
  4305. },
  4306. back: {
  4307. height: math.unit(6, "feet"),
  4308. weight: math.unit(175, "lb"),
  4309. name: "Back",
  4310. image: {
  4311. source: "./media/characters/xera/back.svg",
  4312. extra: 2095 / 1984,
  4313. bottom: 67 / 2166
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Small",
  4320. height: math.unit(10, "feet")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(500, "meters"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro+",
  4329. height: math.unit(10, "km")
  4330. },
  4331. {
  4332. name: "Gigamacro",
  4333. height: math.unit(25000, "km")
  4334. },
  4335. {
  4336. name: "Teramacro",
  4337. height: math.unit(3e6, "km")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(6, "feet"),
  4346. weight: math.unit(175, "lb"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/nebula/front.svg",
  4350. extra: 2566 / 2362,
  4351. bottom: 81 / 2644
  4352. }
  4353. }
  4354. },
  4355. [
  4356. {
  4357. name: "Small",
  4358. height: math.unit(4.5, "meters")
  4359. },
  4360. {
  4361. name: "Macro",
  4362. height: math.unit(1500, "meters"),
  4363. default: true
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(150, "km")
  4368. },
  4369. {
  4370. name: "Gigamacro",
  4371. height: math.unit(27000, "km")
  4372. }
  4373. ]
  4374. ))
  4375. characterMakers.push(() => makeCharacter(
  4376. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4377. {
  4378. front: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(225, "lb"),
  4381. name: "Front",
  4382. image: {
  4383. source: "./media/characters/abysgar/front.svg"
  4384. }
  4385. }
  4386. },
  4387. [
  4388. {
  4389. name: "Small",
  4390. height: math.unit(4.5, "meters")
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(1250, "meters"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(125, "km")
  4400. },
  4401. {
  4402. name: "Gigamacro",
  4403. height: math.unit(26000, "km")
  4404. }
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(6, "feet"),
  4412. weight: math.unit(180, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/yakuz/front.svg"
  4416. }
  4417. }
  4418. },
  4419. [
  4420. {
  4421. name: "Small",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(1500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(200, "km")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(100000, "km")
  4436. }
  4437. ]
  4438. ))
  4439. characterMakers.push(() => makeCharacter(
  4440. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4441. {
  4442. front: {
  4443. height: math.unit(6, "feet"),
  4444. weight: math.unit(175, "lb"),
  4445. name: "Front",
  4446. image: {
  4447. source: "./media/characters/mirova/front.svg",
  4448. extra: 3334 / 3071,
  4449. bottom: 42 / 3375.6
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Small",
  4456. height: math.unit(5, "meters")
  4457. },
  4458. {
  4459. name: "Macro",
  4460. height: math.unit(900, "meters"),
  4461. default: true
  4462. },
  4463. {
  4464. name: "Megamacro",
  4465. height: math.unit(135, "km")
  4466. },
  4467. {
  4468. name: "Gigamacro",
  4469. height: math.unit(20000, "km")
  4470. }
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4475. {
  4476. side: {
  4477. height: math.unit(28.35, "feet"),
  4478. weight: math.unit(99.75, "tons"),
  4479. name: "Side",
  4480. image: {
  4481. source: "./media/characters/asana-mech/side.svg",
  4482. extra: 923 / 699,
  4483. bottom: 50 / 975
  4484. }
  4485. },
  4486. chaingun: {
  4487. height: math.unit(7, "feet"),
  4488. weight: math.unit(2400, "lb"),
  4489. name: "Chaingun",
  4490. image: {
  4491. source: "./media/characters/asana-mech/chaingun.svg"
  4492. }
  4493. },
  4494. laser: {
  4495. height: math.unit(7.12, "feet"),
  4496. weight: math.unit(2000, "lb"),
  4497. name: "Laser",
  4498. image: {
  4499. source: "./media/characters/asana-mech/laser.svg"
  4500. }
  4501. },
  4502. },
  4503. [
  4504. {
  4505. name: "Normal",
  4506. height: math.unit(28.35, "feet"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(2500, "feet")
  4512. },
  4513. {
  4514. name: "Megamacro",
  4515. height: math.unit(25, "miles")
  4516. },
  4517. {
  4518. name: "Examacro",
  4519. height: math.unit(6e8, "lightyears")
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4525. {
  4526. front: {
  4527. height: math.unit(5, "meters"),
  4528. weight: math.unit(1000, "kg"),
  4529. name: "Front",
  4530. image: {
  4531. source: "./media/characters/asche/front.svg",
  4532. extra: 1258 / 1190,
  4533. bottom: 47 / 1305
  4534. }
  4535. },
  4536. frontUnderwear: {
  4537. height: math.unit(5, "meters"),
  4538. weight: math.unit(1000, "kg"),
  4539. name: "Front (Underwear)",
  4540. image: {
  4541. source: "./media/characters/asche/front-underwear.svg",
  4542. extra: 1258 / 1190,
  4543. bottom: 47 / 1305
  4544. }
  4545. },
  4546. frontDressed: {
  4547. height: math.unit(5, "meters"),
  4548. weight: math.unit(1000, "kg"),
  4549. name: "Front (Dressed)",
  4550. image: {
  4551. source: "./media/characters/asche/front-dressed.svg",
  4552. extra: 1258 / 1190,
  4553. bottom: 47 / 1305
  4554. }
  4555. },
  4556. frontArmor: {
  4557. height: math.unit(5, "meters"),
  4558. weight: math.unit(1000, "kg"),
  4559. name: "Front (Armored)",
  4560. image: {
  4561. source: "./media/characters/asche/front-armored.svg",
  4562. extra: 1374 / 1308,
  4563. bottom: 23 / 1397
  4564. }
  4565. },
  4566. mp724: {
  4567. height: math.unit(0.96, "meters"),
  4568. weight: math.unit(38, "kg"),
  4569. name: "H&K MP724",
  4570. image: {
  4571. source: "./media/characters/asche/h&k-mp724.svg"
  4572. }
  4573. },
  4574. side: {
  4575. height: math.unit(5, "meters"),
  4576. weight: math.unit(1000, "kg"),
  4577. name: "Side",
  4578. image: {
  4579. source: "./media/characters/asche/side.svg",
  4580. extra: 1717 / 1609,
  4581. bottom: 0.005
  4582. }
  4583. },
  4584. back: {
  4585. height: math.unit(5, "meters"),
  4586. weight: math.unit(1000, "kg"),
  4587. name: "Back",
  4588. image: {
  4589. source: "./media/characters/asche/back.svg",
  4590. extra: 1570 / 1501
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "DEFCON 5",
  4597. height: math.unit(5, "meters")
  4598. },
  4599. {
  4600. name: "DEFCON 4",
  4601. height: math.unit(500, "meters"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "DEFCON 3",
  4606. height: math.unit(5, "km")
  4607. },
  4608. {
  4609. name: "DEFCON 2",
  4610. height: math.unit(500, "km")
  4611. },
  4612. {
  4613. name: "DEFCON 1",
  4614. height: math.unit(500000, "km")
  4615. },
  4616. {
  4617. name: "DEFCON 0",
  4618. height: math.unit(3, "gigaparsecs")
  4619. },
  4620. ]
  4621. ))
  4622. characterMakers.push(() => makeCharacter(
  4623. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4624. {
  4625. front: {
  4626. height: math.unit(2, "meters"),
  4627. weight: math.unit(76, "kg"),
  4628. name: "Front",
  4629. image: {
  4630. source: "./media/characters/gale/front.svg"
  4631. }
  4632. },
  4633. frontAlt1: {
  4634. height: math.unit(2, "meters"),
  4635. weight: math.unit(76, "kg"),
  4636. name: "Front (Alt 1)",
  4637. image: {
  4638. source: "./media/characters/gale/front-alt-1.svg"
  4639. }
  4640. },
  4641. frontAlt2: {
  4642. height: math.unit(2, "meters"),
  4643. weight: math.unit(76, "kg"),
  4644. name: "Front (Alt 2)",
  4645. image: {
  4646. source: "./media/characters/gale/front-alt-2.svg"
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(7, "feet")
  4654. },
  4655. {
  4656. name: "Macro",
  4657. height: math.unit(150, "feet"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "Macro+",
  4662. height: math.unit(300, "feet")
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4668. {
  4669. front: {
  4670. height: math.unit(5 + 10/12, "feet"),
  4671. weight: math.unit(67, "kg"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/draylen/front.svg",
  4675. extra: 832/777,
  4676. bottom: 85/917
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(5 + 10/12, "feet")
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(150, "feet"),
  4688. default: true
  4689. }
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4694. {
  4695. front: {
  4696. height: math.unit(7 + 9 / 12, "feet"),
  4697. weight: math.unit(379, "lbs"),
  4698. name: "Front",
  4699. image: {
  4700. source: "./media/characters/chez/front.svg"
  4701. }
  4702. },
  4703. side: {
  4704. height: math.unit(7 + 9 / 12, "feet"),
  4705. weight: math.unit(379, "lbs"),
  4706. name: "Side",
  4707. image: {
  4708. source: "./media/characters/chez/side.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(7 + 9 / 12, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "God King",
  4720. height: math.unit(9750000, "meters")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(275, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/kaylum/front.svg",
  4733. bottom: 0.01,
  4734. extra: 1166 / 1031
  4735. }
  4736. },
  4737. frontWingless: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(275, "lbs"),
  4740. name: "Front (Wingless)",
  4741. image: {
  4742. source: "./media/characters/kaylum/front-wingless.svg",
  4743. bottom: 0.01,
  4744. extra: 1117 / 1031
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(3.05, "meters")
  4752. },
  4753. {
  4754. name: "Master",
  4755. height: math.unit(5.5, "meters")
  4756. },
  4757. {
  4758. name: "Rampage",
  4759. height: math.unit(19, "meters")
  4760. },
  4761. {
  4762. name: "Macro Lite",
  4763. height: math.unit(37, "meters")
  4764. },
  4765. {
  4766. name: "Hyper Predator",
  4767. height: math.unit(61, "meters")
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(138, "meters"),
  4772. default: true
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(150, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/geta/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Micro",
  4791. height: math.unit(3, "inches"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5 + 5 / 12, "feet")
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(300, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/tyrnn/front.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Main Height",
  4815. height: math.unit(355, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Fave. Height",
  4820. height: math.unit(2400, "feet")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(300, "lbs"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/appledectomy/front.svg"
  4833. }
  4834. }
  4835. },
  4836. [
  4837. {
  4838. name: "Macro",
  4839. height: math.unit(2500, "feet")
  4840. },
  4841. {
  4842. name: "Megamacro",
  4843. height: math.unit(50, "miles"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Gigamacro",
  4848. height: math.unit(5000, "miles")
  4849. },
  4850. {
  4851. name: "Teramacro",
  4852. height: math.unit(250000, "miles")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(200, "lbs"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/vulpes/front.svg",
  4865. extra: 573 / 543,
  4866. bottom: 0.033
  4867. }
  4868. },
  4869. side: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(200, "lbs"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/vulpes/side.svg",
  4875. extra: 577 / 549,
  4876. bottom: 11 / 588
  4877. }
  4878. },
  4879. back: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(200, "lbs"),
  4882. name: "Back",
  4883. image: {
  4884. source: "./media/characters/vulpes/back.svg",
  4885. extra: 573 / 549,
  4886. bottom: 20 / 593
  4887. }
  4888. },
  4889. feet: {
  4890. height: math.unit(1.276, "feet"),
  4891. name: "Feet",
  4892. image: {
  4893. source: "./media/characters/vulpes/feet.svg"
  4894. }
  4895. },
  4896. maw: {
  4897. height: math.unit(1.18, "feet"),
  4898. name: "Maw",
  4899. image: {
  4900. source: "./media/characters/vulpes/maw.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Micro",
  4907. height: math.unit(2, "inches")
  4908. },
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(6.3, "feet")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(850, "feet")
  4916. },
  4917. {
  4918. name: "Megamacro",
  4919. height: math.unit(7500, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(570000, "miles")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4930. {
  4931. front: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(210, "lbs"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/rain-fallen/front.svg"
  4937. }
  4938. },
  4939. side: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(210, "lbs"),
  4942. name: "Side",
  4943. image: {
  4944. source: "./media/characters/rain-fallen/side.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(210, "lbs"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/rain-fallen/back.svg"
  4953. }
  4954. },
  4955. feral: {
  4956. height: math.unit(9, "feet"),
  4957. weight: math.unit(700, "lbs"),
  4958. name: "Feral",
  4959. image: {
  4960. source: "./media/characters/rain-fallen/feral.svg"
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Meddling with Mortals",
  4967. height: math.unit(8 + 8/12, "feet")
  4968. },
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(5, "meter")
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(150, "meter"),
  4976. default: true
  4977. },
  4978. {
  4979. name: "Megamacro",
  4980. height: math.unit(278e6, "meter")
  4981. },
  4982. {
  4983. name: "Gigamacro",
  4984. height: math.unit(2e9, "meter")
  4985. },
  4986. {
  4987. name: "Teramacro",
  4988. height: math.unit(8e12, "meter")
  4989. },
  4990. {
  4991. name: "Devourer",
  4992. height: math.unit(14, "zettameters")
  4993. },
  4994. {
  4995. name: "Scarlet King",
  4996. height: math.unit(18, "yottameters")
  4997. },
  4998. {
  4999. name: "Void",
  5000. height: math.unit(1e88, "yottameters")
  5001. }
  5002. ]
  5003. ))
  5004. characterMakers.push(() => makeCharacter(
  5005. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5006. {
  5007. standing: {
  5008. height: math.unit(6, "feet"),
  5009. weight: math.unit(180, "lbs"),
  5010. name: "Standing",
  5011. image: {
  5012. source: "./media/characters/zaakira/standing.svg",
  5013. extra: 1599/1504,
  5014. bottom: 39/1638
  5015. }
  5016. },
  5017. laying: {
  5018. height: math.unit(3, "feet"),
  5019. weight: math.unit(180, "lbs"),
  5020. name: "Laying",
  5021. image: {
  5022. source: "./media/characters/zaakira/laying.svg"
  5023. }
  5024. },
  5025. },
  5026. [
  5027. {
  5028. name: "Normal",
  5029. height: math.unit(12, "feet")
  5030. },
  5031. {
  5032. name: "Macro",
  5033. height: math.unit(279, "feet"),
  5034. default: true
  5035. }
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5040. {
  5041. femSfw: {
  5042. height: math.unit(8, "feet"),
  5043. weight: math.unit(350, "lb"),
  5044. name: "Fem",
  5045. image: {
  5046. source: "./media/characters/sigvald/fem-sfw.svg",
  5047. extra: 182 / 164,
  5048. bottom: 8.7 / 190.5
  5049. }
  5050. },
  5051. femNsfw: {
  5052. height: math.unit(8, "feet"),
  5053. weight: math.unit(350, "lb"),
  5054. name: "Fem (NSFW)",
  5055. image: {
  5056. source: "./media/characters/sigvald/fem-nsfw.svg",
  5057. extra: 182 / 164,
  5058. bottom: 8.7 / 190.5
  5059. }
  5060. },
  5061. maleNsfw: {
  5062. height: math.unit(8, "feet"),
  5063. weight: math.unit(350, "lb"),
  5064. name: "Male (NSFW)",
  5065. image: {
  5066. source: "./media/characters/sigvald/male-nsfw.svg",
  5067. extra: 182 / 164,
  5068. bottom: 8.7 / 190.5
  5069. }
  5070. },
  5071. hermNsfw: {
  5072. height: math.unit(8, "feet"),
  5073. weight: math.unit(350, "lb"),
  5074. name: "Herm (NSFW)",
  5075. image: {
  5076. source: "./media/characters/sigvald/herm-nsfw.svg",
  5077. extra: 182 / 164,
  5078. bottom: 8.7 / 190.5
  5079. }
  5080. },
  5081. dick: {
  5082. height: math.unit(2.36, "feet"),
  5083. name: "Dick",
  5084. image: {
  5085. source: "./media/characters/sigvald/dick.svg"
  5086. }
  5087. },
  5088. eye: {
  5089. height: math.unit(0.31, "feet"),
  5090. name: "Eye",
  5091. image: {
  5092. source: "./media/characters/sigvald/eye.svg"
  5093. }
  5094. },
  5095. mouth: {
  5096. height: math.unit(0.92, "feet"),
  5097. name: "Mouth",
  5098. image: {
  5099. source: "./media/characters/sigvald/mouth.svg"
  5100. }
  5101. },
  5102. paws: {
  5103. height: math.unit(2.2, "feet"),
  5104. name: "Paws",
  5105. image: {
  5106. source: "./media/characters/sigvald/paws.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8, "feet")
  5114. },
  5115. {
  5116. name: "Large",
  5117. height: math.unit(12, "feet")
  5118. },
  5119. {
  5120. name: "Larger",
  5121. height: math.unit(20, "feet")
  5122. },
  5123. {
  5124. name: "Macro",
  5125. height: math.unit(150, "feet")
  5126. },
  5127. {
  5128. name: "Macro+",
  5129. height: math.unit(200, "feet"),
  5130. default: true
  5131. },
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5136. {
  5137. side: {
  5138. height: math.unit(12, "feet"),
  5139. weight: math.unit(2000, "kg"),
  5140. name: "Side",
  5141. image: {
  5142. source: "./media/characters/scott/side.svg",
  5143. extra: 754 / 724,
  5144. bottom: 0.069
  5145. }
  5146. },
  5147. upright: {
  5148. height: math.unit(12, "feet"),
  5149. weight: math.unit(2000, "kg"),
  5150. name: "Upright",
  5151. image: {
  5152. source: "./media/characters/scott/upright.svg",
  5153. extra: 3881 / 3722,
  5154. bottom: 0.05
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Normal",
  5161. height: math.unit(12, "feet"),
  5162. default: true
  5163. },
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5168. {
  5169. side: {
  5170. height: math.unit(8, "meters"),
  5171. weight: math.unit(84755, "lbs"),
  5172. name: "Side",
  5173. image: {
  5174. source: "./media/characters/tobias/side.svg",
  5175. extra: 1474 / 1096,
  5176. bottom: 38.9 / 1513.1235
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(8, "meters"),
  5184. default: true
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5190. {
  5191. front: {
  5192. height: math.unit(5.5, "feet"),
  5193. weight: math.unit(400, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/kieran/front.svg",
  5197. extra: 2694 / 2364,
  5198. bottom: 217 / 2908
  5199. }
  5200. },
  5201. side: {
  5202. height: math.unit(5.5, "feet"),
  5203. weight: math.unit(400, "lbs"),
  5204. name: "Side",
  5205. image: {
  5206. source: "./media/characters/kieran/side.svg",
  5207. extra: 875 / 777,
  5208. bottom: 84.6 / 959
  5209. }
  5210. },
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(5.5, "feet"),
  5216. default: true
  5217. },
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5222. {
  5223. side: {
  5224. height: math.unit(2, "meters"),
  5225. weight: math.unit(70, "kg"),
  5226. name: "Side",
  5227. image: {
  5228. source: "./media/characters/sanya/side.svg",
  5229. bottom: 0.02,
  5230. extra: 1.02
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Small",
  5237. height: math.unit(2, "meters")
  5238. },
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(3, "meters")
  5242. },
  5243. {
  5244. name: "Macro",
  5245. height: math.unit(16, "meters"),
  5246. default: true
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(2, "meters"),
  5255. weight: math.unit(120, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/miranda/front.svg",
  5259. extra: 195 / 185,
  5260. bottom: 10.9 / 206.5
  5261. }
  5262. },
  5263. back: {
  5264. height: math.unit(2, "meters"),
  5265. weight: math.unit(120, "kg"),
  5266. name: "Back",
  5267. image: {
  5268. source: "./media/characters/miranda/back.svg",
  5269. extra: 201 / 193,
  5270. bottom: 2.3 / 203.7
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(10, "feet"),
  5278. default: true
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "James", species: ["deer"], tags: ["anthro"] },
  5284. {
  5285. side: {
  5286. height: math.unit(2, "meters"),
  5287. weight: math.unit(100, "kg"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/james/front.svg",
  5291. extra: 10 / 8.5
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(8.5, "feet"),
  5299. default: true
  5300. }
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5305. {
  5306. side: {
  5307. height: math.unit(9.5, "feet"),
  5308. weight: math.unit(2500, "lbs"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/heather/side.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(9.5, "feet"),
  5319. default: true
  5320. }
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5325. {
  5326. side: {
  5327. height: math.unit(6.5, "feet"),
  5328. weight: math.unit(400, "lbs"),
  5329. name: "Side",
  5330. image: {
  5331. source: "./media/characters/lukas/side.svg",
  5332. extra: 7.25 / 6.5
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Normal",
  5339. height: math.unit(6.5, "feet"),
  5340. default: true
  5341. }
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5346. {
  5347. side: {
  5348. height: math.unit(5, "feet"),
  5349. weight: math.unit(3000, "lbs"),
  5350. name: "Side",
  5351. image: {
  5352. source: "./media/characters/louise/side.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(5, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5366. {
  5367. side: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(150, "lbs"),
  5370. name: "Side",
  5371. image: {
  5372. source: "./media/characters/ramona/side.svg",
  5373. extra: 871/854,
  5374. bottom: 41/912
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(5.3, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Macro",
  5386. height: math.unit(20, "stories")
  5387. },
  5388. {
  5389. name: "Macro+",
  5390. height: math.unit(50, "stories")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5396. {
  5397. standing: {
  5398. height: math.unit(5.75, "feet"),
  5399. weight: math.unit(160, "lbs"),
  5400. name: "Standing",
  5401. image: {
  5402. source: "./media/characters/deerpuff/standing.svg",
  5403. extra: 682 / 624
  5404. }
  5405. },
  5406. sitting: {
  5407. height: math.unit(5.75 / 1.79, "feet"),
  5408. weight: math.unit(160, "lbs"),
  5409. name: "Sitting",
  5410. image: {
  5411. source: "./media/characters/deerpuff/sitting.svg",
  5412. bottom: 44 / 400,
  5413. extra: 1
  5414. }
  5415. },
  5416. taurLaying: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(400, "lbs"),
  5419. name: "Taur (Laying)",
  5420. image: {
  5421. source: "./media/characters/deerpuff/taur-laying.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Puffball",
  5428. height: math.unit(6, "inches")
  5429. },
  5430. {
  5431. name: "Normalpuff",
  5432. height: math.unit(5.75, "feet")
  5433. },
  5434. {
  5435. name: "Macropuff",
  5436. height: math.unit(1500, "feet"),
  5437. default: true
  5438. },
  5439. {
  5440. name: "Megapuff",
  5441. height: math.unit(500, "miles")
  5442. },
  5443. {
  5444. name: "Gigapuff",
  5445. height: math.unit(250000, "miles")
  5446. },
  5447. {
  5448. name: "Omegapuff",
  5449. height: math.unit(1000, "lightyears")
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5455. {
  5456. stomping: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(170, "lbs"),
  5459. name: "Stomping",
  5460. image: {
  5461. source: "./media/characters/vivian/stomping.svg"
  5462. }
  5463. },
  5464. sitting: {
  5465. height: math.unit(6 / 1.75, "feet"),
  5466. weight: math.unit(170, "lbs"),
  5467. name: "Sitting",
  5468. image: {
  5469. source: "./media/characters/vivian/sitting.svg",
  5470. bottom: 1 / 6.4,
  5471. extra: 1,
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(7, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(10, "stories")
  5484. },
  5485. {
  5486. name: "Macro+",
  5487. height: math.unit(30, "stories")
  5488. },
  5489. {
  5490. name: "Megamacro",
  5491. height: math.unit(10, "miles")
  5492. },
  5493. {
  5494. name: "Megamacro+",
  5495. height: math.unit(2750000, "meters")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(160, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/prince/front.svg",
  5508. extra: 3400 / 3000
  5509. }
  5510. },
  5511. jumping: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(160, "lbs"),
  5514. name: "Jumping",
  5515. image: {
  5516. source: "./media/characters/prince/jump.svg",
  5517. extra: 2555 / 2134
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(7.75, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Not cute",
  5529. height: math.unit(17, "feet")
  5530. },
  5531. {
  5532. name: "I said NOT",
  5533. height: math.unit(91, "feet")
  5534. },
  5535. {
  5536. name: "Please stop",
  5537. height: math.unit(560, "feet")
  5538. },
  5539. {
  5540. name: "What have you done",
  5541. height: math.unit(2200, "feet")
  5542. },
  5543. {
  5544. name: "Deer God",
  5545. height: math.unit(3.6, "miles")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5551. {
  5552. standing: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(300, "lbs"),
  5555. name: "Standing",
  5556. image: {
  5557. source: "./media/characters/psymon/standing.svg",
  5558. extra: 1888 / 1810,
  5559. bottom: 0.05
  5560. }
  5561. },
  5562. slithering: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(300, "lbs"),
  5565. name: "Slithering",
  5566. image: {
  5567. source: "./media/characters/psymon/slithering.svg",
  5568. extra: 1330 / 1224
  5569. }
  5570. },
  5571. slitheringAlt: {
  5572. height: math.unit(6, "feet"),
  5573. weight: math.unit(300, "lbs"),
  5574. name: "Slithering (Alt)",
  5575. image: {
  5576. source: "./media/characters/psymon/slithering-alt.svg",
  5577. extra: 1330 / 1224
  5578. }
  5579. },
  5580. },
  5581. [
  5582. {
  5583. name: "Normal",
  5584. height: math.unit(11.25, "feet"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Large",
  5589. height: math.unit(27, "feet")
  5590. },
  5591. {
  5592. name: "Giant",
  5593. height: math.unit(87, "feet")
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(365, "feet")
  5598. },
  5599. {
  5600. name: "Megamacro",
  5601. height: math.unit(3, "miles")
  5602. },
  5603. {
  5604. name: "World Serpent",
  5605. height: math.unit(8000, "miles")
  5606. },
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(6, "feet"),
  5614. weight: math.unit(180, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/daimos/front.svg",
  5618. extra: 4160 / 3897,
  5619. bottom: 0.021
  5620. }
  5621. }
  5622. },
  5623. [
  5624. {
  5625. name: "Normal",
  5626. height: math.unit(8, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Big Dog",
  5631. height: math.unit(22, "feet")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(127, "feet")
  5636. },
  5637. {
  5638. name: "Megamacro",
  5639. height: math.unit(3600, "feet")
  5640. },
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5645. {
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/blake/side.svg",
  5652. extra: 1212 / 1120,
  5653. bottom: 0.05
  5654. }
  5655. },
  5656. crouched: {
  5657. height: math.unit(6 * 0.57, "feet"),
  5658. weight: math.unit(180, "lbs"),
  5659. name: "Crouched",
  5660. image: {
  5661. source: "./media/characters/blake/crouched.svg",
  5662. extra: 840 / 587,
  5663. bottom: 0.04
  5664. }
  5665. },
  5666. bent: {
  5667. height: math.unit(6 * 0.75, "feet"),
  5668. weight: math.unit(180, "lbs"),
  5669. name: "Bent",
  5670. image: {
  5671. source: "./media/characters/blake/bent.svg",
  5672. extra: 592 / 544,
  5673. bottom: 0.035
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(8 + 1 / 6, "feet"),
  5681. default: true
  5682. },
  5683. {
  5684. name: "Big Backside",
  5685. height: math.unit(37, "feet")
  5686. },
  5687. {
  5688. name: "Subway Shredder",
  5689. height: math.unit(72, "feet")
  5690. },
  5691. {
  5692. name: "City Carver",
  5693. height: math.unit(1675, "feet")
  5694. },
  5695. {
  5696. name: "Tectonic Tweaker",
  5697. height: math.unit(2300, "miles")
  5698. },
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5703. {
  5704. front: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(180, "lbs"),
  5707. name: "Front",
  5708. image: {
  5709. source: "./media/characters/guisetto/front.svg",
  5710. extra: 856 / 817,
  5711. bottom: 0.06
  5712. }
  5713. },
  5714. airborne: {
  5715. height: math.unit(6, "feet"),
  5716. weight: math.unit(180, "lbs"),
  5717. name: "Airborne",
  5718. image: {
  5719. source: "./media/characters/guisetto/airborne.svg",
  5720. extra: 584 / 525
  5721. }
  5722. },
  5723. },
  5724. [
  5725. {
  5726. name: "Normal",
  5727. height: math.unit(10 + 11 / 12, "feet"),
  5728. default: true
  5729. },
  5730. {
  5731. name: "Large",
  5732. height: math.unit(35, "feet")
  5733. },
  5734. {
  5735. name: "Macro",
  5736. height: math.unit(475, "feet")
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(6, "feet"),
  5745. weight: math.unit(180, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/luxor/front.svg",
  5749. extra: 2940 / 2152
  5750. }
  5751. },
  5752. back: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(180, "lbs"),
  5755. name: "Back",
  5756. image: {
  5757. source: "./media/characters/luxor/back.svg",
  5758. extra: 1083 / 960
  5759. }
  5760. },
  5761. },
  5762. [
  5763. {
  5764. name: "Normal",
  5765. height: math.unit(5 + 5 / 6, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Lamp",
  5770. height: math.unit(50, "feet")
  5771. },
  5772. {
  5773. name: "Lämp",
  5774. height: math.unit(300, "feet")
  5775. },
  5776. {
  5777. name: "The sun is a lamp",
  5778. height: math.unit(250000, "miles")
  5779. },
  5780. ]
  5781. ))
  5782. characterMakers.push(() => makeCharacter(
  5783. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5784. {
  5785. front: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(50, "lbs"),
  5788. name: "Front",
  5789. image: {
  5790. source: "./media/characters/huoyan/front.svg"
  5791. }
  5792. },
  5793. side: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(180, "lbs"),
  5796. name: "Side",
  5797. image: {
  5798. source: "./media/characters/huoyan/side.svg"
  5799. }
  5800. },
  5801. },
  5802. [
  5803. {
  5804. name: "Chef",
  5805. height: math.unit(9, "feet")
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(65, "feet"),
  5810. default: true
  5811. },
  5812. {
  5813. name: "Macro",
  5814. height: math.unit(780, "feet")
  5815. },
  5816. {
  5817. name: "Flaming Mountain",
  5818. height: math.unit(4.8, "miles")
  5819. },
  5820. {
  5821. name: "Celestial",
  5822. height: math.unit(765000, "miles")
  5823. },
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(5 + 3 / 4, "feet"),
  5831. weight: math.unit(120, "lbs"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/tails/front.svg"
  5835. }
  5836. }
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(5 + 3 / 4, "feet"),
  5842. default: true
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5848. {
  5849. front: {
  5850. height: math.unit(4, "feet"),
  5851. weight: math.unit(50, "lbs"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/rainy/front.svg"
  5855. }
  5856. }
  5857. },
  5858. [
  5859. {
  5860. name: "Macro",
  5861. height: math.unit(800, "feet"),
  5862. default: true
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5868. {
  5869. front: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(150, "lbs"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/rainier/front.svg"
  5875. }
  5876. }
  5877. },
  5878. [
  5879. {
  5880. name: "Micro",
  5881. height: math.unit(2, "mm"),
  5882. default: true
  5883. }
  5884. ]
  5885. ))
  5886. characterMakers.push(() => makeCharacter(
  5887. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5888. {
  5889. front: {
  5890. height: math.unit(8 + 4/12, "feet"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/andy-renard/front.svg",
  5894. extra: 1839/1726,
  5895. bottom: 134/1973
  5896. }
  5897. },
  5898. back: {
  5899. height: math.unit(8 + 4/12, "feet"),
  5900. name: "Back",
  5901. image: {
  5902. source: "./media/characters/andy-renard/back.svg",
  5903. extra: 1838/1710,
  5904. bottom: 105/1943
  5905. }
  5906. },
  5907. },
  5908. [
  5909. {
  5910. name: "Tall",
  5911. height: math.unit(8 + 4/12, "feet")
  5912. },
  5913. {
  5914. name: "Mini Macro",
  5915. height: math.unit(15, "feet"),
  5916. default: true
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(100, "feet")
  5921. },
  5922. {
  5923. name: "Mega Macro",
  5924. height: math.unit(1000, "feet")
  5925. },
  5926. {
  5927. name: "Giga Macro",
  5928. height: math.unit(10, "miles")
  5929. },
  5930. {
  5931. name: "God Macro",
  5932. height: math.unit(1, "multiverse")
  5933. },
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5938. {
  5939. front: {
  5940. height: math.unit(6, "feet"),
  5941. weight: math.unit(210, "lbs"),
  5942. name: "Front",
  5943. image: {
  5944. source: "./media/characters/cimmaron/front-sfw.svg",
  5945. extra: 701 / 676,
  5946. bottom: 0.046
  5947. }
  5948. },
  5949. back: {
  5950. height: math.unit(6, "feet"),
  5951. weight: math.unit(210, "lbs"),
  5952. name: "Back",
  5953. image: {
  5954. source: "./media/characters/cimmaron/back-sfw.svg",
  5955. extra: 701 / 676,
  5956. bottom: 0.046
  5957. }
  5958. },
  5959. frontNsfw: {
  5960. height: math.unit(6, "feet"),
  5961. weight: math.unit(210, "lbs"),
  5962. name: "Front (NSFW)",
  5963. image: {
  5964. source: "./media/characters/cimmaron/front-nsfw.svg",
  5965. extra: 701 / 676,
  5966. bottom: 0.046
  5967. }
  5968. },
  5969. backNsfw: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(210, "lbs"),
  5972. name: "Back (NSFW)",
  5973. image: {
  5974. source: "./media/characters/cimmaron/back-nsfw.svg",
  5975. extra: 701 / 676,
  5976. bottom: 0.046
  5977. }
  5978. },
  5979. dick: {
  5980. height: math.unit(1.714, "feet"),
  5981. name: "Dick",
  5982. image: {
  5983. source: "./media/characters/cimmaron/dick.svg"
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(6, "feet"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Macro Mayor",
  5995. height: math.unit(350, "meters")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(200, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/akari/front.svg",
  6008. extra: 962 / 901,
  6009. bottom: 0.04
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Micro",
  6016. height: math.unit(5, "inches"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(7, "feet")
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(140, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/cynosura/front.svg",
  6034. extra: 896 / 847
  6035. }
  6036. },
  6037. back: {
  6038. height: math.unit(6, "feet"),
  6039. weight: math.unit(140, "lbs"),
  6040. name: "Back",
  6041. image: {
  6042. source: "./media/characters/cynosura/back.svg",
  6043. extra: 1365 / 1250
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Micro",
  6050. height: math.unit(4, "inches")
  6051. },
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(5.75, "feet"),
  6055. default: true
  6056. },
  6057. {
  6058. name: "Tall",
  6059. height: math.unit(10, "feet")
  6060. },
  6061. {
  6062. name: "Big",
  6063. height: math.unit(20, "feet")
  6064. },
  6065. {
  6066. name: "Macro",
  6067. height: math.unit(50, "feet")
  6068. },
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(13 + 2/12, "feet"),
  6076. weight: math.unit(800, "kg"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/gin/front.svg",
  6080. extra: 1312/1191,
  6081. bottom: 45/1357
  6082. }
  6083. },
  6084. mouth: {
  6085. height: math.unit(2.39 * 1.8, "feet"),
  6086. name: "Mouth",
  6087. image: {
  6088. source: "./media/characters/gin/mouth.svg"
  6089. }
  6090. },
  6091. hand: {
  6092. height: math.unit(1.57 * 2.19, "feet"),
  6093. name: "Hand",
  6094. image: {
  6095. source: "./media/characters/gin/hand.svg"
  6096. }
  6097. },
  6098. foot: {
  6099. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6100. name: "Foot",
  6101. image: {
  6102. source: "./media/characters/gin/foot.svg"
  6103. }
  6104. },
  6105. sole: {
  6106. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6107. name: "Sole",
  6108. image: {
  6109. source: "./media/characters/gin/sole.svg"
  6110. }
  6111. },
  6112. },
  6113. [
  6114. {
  6115. name: "Very Small",
  6116. height: math.unit(13 + 2 / 12, "feet")
  6117. },
  6118. {
  6119. name: "Micro",
  6120. height: math.unit(600, "miles")
  6121. },
  6122. {
  6123. name: "Regular",
  6124. height: math.unit(20, "earths"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Macro",
  6129. height: math.unit(2.2, "solarradii")
  6130. },
  6131. {
  6132. name: "Teramacro",
  6133. height: math.unit(1.2, "galaxies")
  6134. },
  6135. {
  6136. name: "Omegamacro",
  6137. height: math.unit(200, "universes")
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6143. {
  6144. front: {
  6145. height: math.unit(6 + 1 / 6, "feet"),
  6146. weight: math.unit(178, "lbs"),
  6147. name: "Front",
  6148. image: {
  6149. source: "./media/characters/guy/front.svg"
  6150. }
  6151. }
  6152. },
  6153. [
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(6 + 1 / 6, "feet"),
  6157. default: true
  6158. },
  6159. {
  6160. name: "Large",
  6161. height: math.unit(25 + 7 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Macro",
  6165. height: math.unit(60 + 9 / 12, "feet")
  6166. },
  6167. {
  6168. name: "Macro+",
  6169. height: math.unit(246, "feet")
  6170. },
  6171. {
  6172. name: "Macro++",
  6173. height: math.unit(878, "feet")
  6174. }
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6179. {
  6180. front: {
  6181. height: math.unit(9, "feet"),
  6182. weight: math.unit(800, "lbs"),
  6183. name: "Front",
  6184. image: {
  6185. source: "./media/characters/tiberius/front.svg",
  6186. extra: 2295 / 2071
  6187. }
  6188. },
  6189. back: {
  6190. height: math.unit(9, "feet"),
  6191. weight: math.unit(800, "lbs"),
  6192. name: "Back",
  6193. image: {
  6194. source: "./media/characters/tiberius/back.svg",
  6195. extra: 2373 / 2160
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(9, "feet"),
  6203. default: true
  6204. }
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6209. {
  6210. front: {
  6211. height: math.unit(6, "feet"),
  6212. weight: math.unit(600, "lbs"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/surgo/front.svg",
  6216. extra: 3591 / 2227
  6217. }
  6218. },
  6219. back: {
  6220. height: math.unit(6, "feet"),
  6221. weight: math.unit(600, "lbs"),
  6222. name: "Back",
  6223. image: {
  6224. source: "./media/characters/surgo/back.svg",
  6225. extra: 3557 / 2228
  6226. }
  6227. },
  6228. laying: {
  6229. height: math.unit(6 * 0.85, "feet"),
  6230. weight: math.unit(600, "lbs"),
  6231. name: "Laying",
  6232. image: {
  6233. source: "./media/characters/surgo/laying.svg"
  6234. }
  6235. },
  6236. },
  6237. [
  6238. {
  6239. name: "Normal",
  6240. height: math.unit(6, "feet"),
  6241. default: true
  6242. }
  6243. ]
  6244. ))
  6245. characterMakers.push(() => makeCharacter(
  6246. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6247. {
  6248. side: {
  6249. height: math.unit(6, "feet"),
  6250. weight: math.unit(150, "lbs"),
  6251. name: "Side",
  6252. image: {
  6253. source: "./media/characters/cibus/side.svg",
  6254. extra: 800 / 400
  6255. }
  6256. },
  6257. },
  6258. [
  6259. {
  6260. name: "Normal",
  6261. height: math.unit(6, "feet"),
  6262. default: true
  6263. }
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(6, "feet"),
  6271. weight: math.unit(240, "lbs"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/nibbles/front.svg"
  6275. }
  6276. },
  6277. side: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(240, "lbs"),
  6280. name: "Side",
  6281. image: {
  6282. source: "./media/characters/nibbles/side.svg"
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(9, "feet"),
  6290. default: true
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6296. {
  6297. side: {
  6298. height: math.unit(5 + 1 / 6, "feet"),
  6299. weight: math.unit(130, "lbs"),
  6300. name: "Side",
  6301. image: {
  6302. source: "./media/characters/rikky/side.svg",
  6303. extra: 851 / 801
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(5 + 1 / 6, "feet")
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(152, "feet"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(7, "miles")
  6320. }
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6325. {
  6326. side: {
  6327. height: math.unit(370, "cm"),
  6328. weight: math.unit(350, "lbs"),
  6329. name: "Side",
  6330. image: {
  6331. source: "./media/characters/malfressa/side.svg"
  6332. }
  6333. },
  6334. walking: {
  6335. height: math.unit(370, "cm"),
  6336. weight: math.unit(350, "lbs"),
  6337. name: "Walking",
  6338. image: {
  6339. source: "./media/characters/malfressa/walking.svg"
  6340. }
  6341. },
  6342. feral: {
  6343. height: math.unit(2500, "cm"),
  6344. weight: math.unit(100000, "lbs"),
  6345. name: "Feral",
  6346. image: {
  6347. source: "./media/characters/malfressa/feral.svg",
  6348. extra: 2108 / 837,
  6349. bottom: 0.02
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(370, "cm")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(300, "meters"),
  6361. default: true
  6362. }
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(60, "kg"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/jaro/front.svg",
  6374. extra: 845/817,
  6375. bottom: 45/890
  6376. }
  6377. },
  6378. back: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(60, "kg"),
  6381. name: "Back",
  6382. image: {
  6383. source: "./media/characters/jaro/back.svg",
  6384. extra: 847/817,
  6385. bottom: 34/881
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Micro",
  6392. height: math.unit(7, "inches")
  6393. },
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(5.5, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Minimacro",
  6401. height: math.unit(20, "feet")
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(200, "meters")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(195, "lb"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/rogue/front.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(90, "feet"),
  6425. default: true
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(5 + 8 / 12, "feet"),
  6434. weight: math.unit(140, "lb"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/piper/front.svg",
  6438. extra: 3948/3655,
  6439. bottom: 0/3948
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Micro",
  6446. height: math.unit(2, "inches")
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(5 + 8 / 12, "feet")
  6451. },
  6452. {
  6453. name: "Macro",
  6454. height: math.unit(250, "feet"),
  6455. default: true
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(7, "miles")
  6460. },
  6461. ]
  6462. ))
  6463. characterMakers.push(() => makeCharacter(
  6464. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6465. {
  6466. front: {
  6467. height: math.unit(6, "feet"),
  6468. weight: math.unit(220, "lb"),
  6469. name: "Front",
  6470. image: {
  6471. source: "./media/characters/gemini/front.svg"
  6472. }
  6473. },
  6474. back: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(220, "lb"),
  6477. name: "Back",
  6478. image: {
  6479. source: "./media/characters/gemini/back.svg"
  6480. }
  6481. },
  6482. kneeling: {
  6483. height: math.unit(6 / 1.5, "feet"),
  6484. weight: math.unit(220, "lb"),
  6485. name: "Kneeling",
  6486. image: {
  6487. source: "./media/characters/gemini/kneeling.svg",
  6488. bottom: 0.02
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Macro",
  6495. height: math.unit(300, "meters"),
  6496. default: true
  6497. },
  6498. {
  6499. name: "Megamacro",
  6500. height: math.unit(6900, "meters")
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6506. {
  6507. anthro: {
  6508. height: math.unit(2.35, "meters"),
  6509. weight: math.unit(73, "kg"),
  6510. name: "Anthro",
  6511. image: {
  6512. source: "./media/characters/alicia/anthro.svg",
  6513. extra: 2571 / 2385,
  6514. bottom: 75 / 2648
  6515. }
  6516. },
  6517. paw: {
  6518. height: math.unit(1.32, "feet"),
  6519. name: "Paw",
  6520. image: {
  6521. source: "./media/characters/alicia/paw.svg"
  6522. }
  6523. },
  6524. feral: {
  6525. height: math.unit(1.69, "meters"),
  6526. weight: math.unit(73, "kg"),
  6527. name: "Feral",
  6528. image: {
  6529. source: "./media/characters/alicia/feral.svg",
  6530. extra: 2123 / 1715,
  6531. bottom: 222 / 2349
  6532. }
  6533. },
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(2.35, "meters")
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(60, "meters"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Megamacro",
  6547. height: math.unit(10000, "kilometers")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(7, "feet"),
  6556. weight: math.unit(250, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/archy/front.svg"
  6560. }
  6561. }
  6562. },
  6563. [
  6564. {
  6565. name: "Micro",
  6566. height: math.unit(1, "inch")
  6567. },
  6568. {
  6569. name: "Shorty",
  6570. height: math.unit(5, "feet")
  6571. },
  6572. {
  6573. name: "Normal",
  6574. height: math.unit(7, "feet")
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(600, "meters"),
  6579. default: true
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(1, "mile")
  6584. },
  6585. ]
  6586. ))
  6587. characterMakers.push(() => makeCharacter(
  6588. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6589. {
  6590. front: {
  6591. height: math.unit(1.65, "meters"),
  6592. weight: math.unit(74, "kg"),
  6593. name: "Front",
  6594. image: {
  6595. source: "./media/characters/berri/front.svg",
  6596. extra: 857 / 837,
  6597. bottom: 18 / 877
  6598. }
  6599. },
  6600. bum: {
  6601. height: math.unit(1.46, "feet"),
  6602. name: "Bum",
  6603. image: {
  6604. source: "./media/characters/berri/bum.svg"
  6605. }
  6606. },
  6607. mouth: {
  6608. height: math.unit(0.44, "feet"),
  6609. name: "Mouth",
  6610. image: {
  6611. source: "./media/characters/berri/mouth.svg"
  6612. }
  6613. },
  6614. paw: {
  6615. height: math.unit(0.826, "feet"),
  6616. name: "Paw",
  6617. image: {
  6618. source: "./media/characters/berri/paw.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.65, "meters")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(60, "m"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Megamacro",
  6634. height: math.unit(9.213, "km")
  6635. },
  6636. {
  6637. name: "Planet Eater",
  6638. height: math.unit(489, "megameters")
  6639. },
  6640. {
  6641. name: "Teramacro",
  6642. height: math.unit(2471635000000, "meters")
  6643. },
  6644. {
  6645. name: "Examacro",
  6646. height: math.unit(8.0624e+26, "meters")
  6647. }
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(1.72, "meters"),
  6655. weight: math.unit(68, "kg"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/lexi/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Very Smol",
  6665. height: math.unit(10, "mm")
  6666. },
  6667. {
  6668. name: "Micro",
  6669. height: math.unit(6.8, "cm"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(1.72, "m")
  6675. }
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(1.69, "meters"),
  6683. weight: math.unit(68, "kg"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/martin/front.svg",
  6687. extra: 596 / 581
  6688. }
  6689. }
  6690. },
  6691. [
  6692. {
  6693. name: "Micro",
  6694. height: math.unit(6.85, "cm"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Normal",
  6699. height: math.unit(1.69, "m")
  6700. }
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(1.69, "meters"),
  6708. weight: math.unit(68, "kg"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/juno/front.svg"
  6712. }
  6713. }
  6714. },
  6715. [
  6716. {
  6717. name: "Micro",
  6718. height: math.unit(7, "cm")
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(1.89, "m")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(353, "meters"),
  6727. default: true
  6728. }
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(1.93, "meters"),
  6736. weight: math.unit(83, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/samantha/front.svg"
  6740. }
  6741. },
  6742. frontClothed: {
  6743. height: math.unit(1.93, "meters"),
  6744. weight: math.unit(83, "kg"),
  6745. name: "Front (Clothed)",
  6746. image: {
  6747. source: "./media/characters/samantha/front-clothed.svg"
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(1.93, "meters"),
  6752. weight: math.unit(83, "kg"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/samantha/back.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(1.93, "m")
  6763. },
  6764. {
  6765. name: "Macro",
  6766. height: math.unit(74, "meters"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro+",
  6771. height: math.unit(223, "meters"),
  6772. },
  6773. {
  6774. name: "Megamacro",
  6775. height: math.unit(8381, "meters"),
  6776. },
  6777. {
  6778. name: "Megamacro+",
  6779. height: math.unit(12000, "kilometers")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(1.92, "meters"),
  6788. weight: math.unit(80, "kg"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/dr-clay/front.svg"
  6792. }
  6793. },
  6794. frontClothed: {
  6795. height: math.unit(1.92, "meters"),
  6796. weight: math.unit(80, "kg"),
  6797. name: "Front (Clothed)",
  6798. image: {
  6799. source: "./media/characters/dr-clay/front-clothed.svg"
  6800. }
  6801. }
  6802. },
  6803. [
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(1.92, "m")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(214, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(12.237, "meters"),
  6816. },
  6817. {
  6818. name: "Megamacro",
  6819. height: math.unit(557, "megameters"),
  6820. },
  6821. {
  6822. name: "Unimaginable",
  6823. height: math.unit(120e9, "lightyears")
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(2, "meters"),
  6832. weight: math.unit(80, "kg"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Teramacro",
  6842. height: math.unit(500000, "lightyears"),
  6843. default: true
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6849. {
  6850. crux: {
  6851. height: math.unit(2, "meters"),
  6852. weight: math.unit(150, "kg"),
  6853. name: "Crux",
  6854. image: {
  6855. source: "./media/characters/vemus/crux.svg",
  6856. extra: 1074/936,
  6857. bottom: 23/1097
  6858. }
  6859. },
  6860. skunkTanuki: {
  6861. height: math.unit(2, "meters"),
  6862. weight: math.unit(150, "kg"),
  6863. name: "Skunk-Tanuki",
  6864. image: {
  6865. source: "./media/characters/vemus/skunk-tanuki.svg",
  6866. extra: 926/893,
  6867. bottom: 20/946
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(3.75, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Big",
  6879. height: math.unit(8, "meters")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(100, "meters")
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(1500, "meters")
  6888. },
  6889. {
  6890. name: "Stellar",
  6891. height: math.unit(14e8, "meters")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(2, "meters"),
  6900. weight: math.unit(70, "kg"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/beherit/front.svg",
  6904. extra: 1234/1109,
  6905. bottom: 55/1289
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(6, "feet")
  6913. },
  6914. {
  6915. name: "Lorg",
  6916. height: math.unit(25, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Lorger",
  6921. height: math.unit(75, "feet")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(200, "meters")
  6926. },
  6927. ]
  6928. ))
  6929. characterMakers.push(() => makeCharacter(
  6930. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6931. {
  6932. front: {
  6933. height: math.unit(2, "meters"),
  6934. weight: math.unit(150, "kg"),
  6935. name: "Front",
  6936. image: {
  6937. source: "./media/characters/everett/front.svg",
  6938. extra: 1017/866,
  6939. bottom: 86/1103
  6940. }
  6941. },
  6942. paw: {
  6943. height: math.unit(2 / 3.6, "meters"),
  6944. name: "Paw",
  6945. image: {
  6946. source: "./media/characters/everett/paw.svg"
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(15, "feet"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Lorg",
  6958. height: math.unit(70, "feet"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Lorger",
  6963. height: math.unit(250, "feet")
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(500, "meters")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(2, "meters"),
  6976. weight: math.unit(86, "kg"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/rose/front.svg",
  6980. extra: 1785/1636,
  6981. bottom: 30/1815
  6982. }
  6983. },
  6984. frontSporty: {
  6985. height: math.unit(2, "meters"),
  6986. weight: math.unit(86, "kg"),
  6987. name: "Front (Sporty)",
  6988. image: {
  6989. source: "./media/characters/rose/front-sporty.svg",
  6990. extra: 350/335,
  6991. bottom: 10/360
  6992. }
  6993. },
  6994. frontAlt: {
  6995. height: math.unit(1.6, "meters"),
  6996. weight: math.unit(86, "kg"),
  6997. name: "Front (Alt)",
  6998. image: {
  6999. source: "./media/characters/rose/front-alt.svg",
  7000. extra: 299/283,
  7001. bottom: 3/302
  7002. }
  7003. },
  7004. plush: {
  7005. height: math.unit(2, "meters"),
  7006. weight: math.unit(86/3, "kg"),
  7007. name: "Plush",
  7008. image: {
  7009. source: "./media/characters/rose/plush.svg",
  7010. extra: 361/337,
  7011. bottom: 11/372
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "True Micro",
  7018. height: math.unit(9, "cm")
  7019. },
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(16, "cm")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(1.85, "meters"),
  7027. default: true
  7028. },
  7029. {
  7030. name: "Mini-Macro",
  7031. height: math.unit(5, "meters")
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(15, "meters")
  7036. },
  7037. {
  7038. name: "True Macro",
  7039. height: math.unit(40, "meters")
  7040. },
  7041. {
  7042. name: "City Scale",
  7043. height: math.unit(1, "km")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(2, "meters"),
  7052. weight: math.unit(350, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/regal/front.svg"
  7056. }
  7057. },
  7058. back: {
  7059. height: math.unit(2, "meters"),
  7060. weight: math.unit(350, "lbs"),
  7061. name: "Back",
  7062. image: {
  7063. source: "./media/characters/regal/back.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Macro",
  7070. height: math.unit(350, "feet"),
  7071. default: true
  7072. }
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7077. {
  7078. front: {
  7079. height: math.unit(4 + 11 / 12, "feet"),
  7080. weight: math.unit(100, "lbs"),
  7081. name: "Front",
  7082. image: {
  7083. source: "./media/characters/opal/front.svg"
  7084. }
  7085. },
  7086. frontAlt: {
  7087. height: math.unit(4 + 11 / 12, "feet"),
  7088. weight: math.unit(100, "lbs"),
  7089. name: "Front (Alt)",
  7090. image: {
  7091. source: "./media/characters/opal/front-alt.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Small",
  7098. height: math.unit(4 + 11 / 12, "feet")
  7099. },
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(20, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(120, "feet")
  7108. },
  7109. {
  7110. name: "Megamacro",
  7111. height: math.unit(80, "miles")
  7112. },
  7113. {
  7114. name: "True Size",
  7115. height: math.unit(100000, "lightyears")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(200, "lbs"),
  7125. name: "Front",
  7126. image: {
  7127. source: "./media/characters/vector-wuff/front.svg"
  7128. }
  7129. }
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(2.8, "meters")
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(450, "meters"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Megamacro",
  7143. height: math.unit(15, "kilometers")
  7144. }
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(256, "lbs"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/dannik/front.svg"
  7156. }
  7157. }
  7158. },
  7159. [
  7160. {
  7161. name: "Macro",
  7162. height: math.unit(69.57, "meters"),
  7163. default: true
  7164. },
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7169. {
  7170. front: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(120, "lbs"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/azura-saharah/front.svg"
  7176. }
  7177. },
  7178. back: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(120, "lbs"),
  7181. name: "Back",
  7182. image: {
  7183. source: "./media/characters/azura-saharah/back.svg"
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Macro",
  7190. height: math.unit(100, "feet"),
  7191. default: true
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7197. {
  7198. side: {
  7199. height: math.unit(5 + 4 / 12, "feet"),
  7200. weight: math.unit(163, "lbs"),
  7201. name: "Side",
  7202. image: {
  7203. source: "./media/characters/kennedy/side.svg"
  7204. }
  7205. }
  7206. },
  7207. [
  7208. {
  7209. name: "Standard Doggo",
  7210. height: math.unit(5 + 4 / 12, "feet")
  7211. },
  7212. {
  7213. name: "Big Doggo",
  7214. height: math.unit(25 + 3 / 12, "feet"),
  7215. default: true
  7216. },
  7217. ]
  7218. ))
  7219. characterMakers.push(() => makeCharacter(
  7220. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7221. {
  7222. front: {
  7223. height: math.unit(5 + 5/12, "feet"),
  7224. weight: math.unit(100, "lbs"),
  7225. name: "Front",
  7226. image: {
  7227. source: "./media/characters/odios-de-lunar/front.svg",
  7228. extra: 1468/1323,
  7229. bottom: 22/1490
  7230. }
  7231. }
  7232. },
  7233. [
  7234. {
  7235. name: "Micro",
  7236. height: math.unit(3, "inches")
  7237. },
  7238. {
  7239. name: "Normal",
  7240. height: math.unit(5.5, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(100, "feet")
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7251. {
  7252. back: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(220, "lbs"),
  7255. name: "Back",
  7256. image: {
  7257. source: "./media/characters/mandake/back.svg"
  7258. }
  7259. }
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(7, "feet"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Macro",
  7269. height: math.unit(78, "feet")
  7270. },
  7271. {
  7272. name: "Macro+",
  7273. height: math.unit(300, "meters")
  7274. },
  7275. {
  7276. name: "Macro++",
  7277. height: math.unit(2400, "feet")
  7278. },
  7279. {
  7280. name: "Megamacro",
  7281. height: math.unit(5167, "meters")
  7282. },
  7283. {
  7284. name: "Gigamacro",
  7285. height: math.unit(41769, "miles")
  7286. },
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/yozey/front.svg"
  7298. }
  7299. },
  7300. frontAlt: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(120, "lbs"),
  7303. name: "Front (Alt)",
  7304. image: {
  7305. source: "./media/characters/yozey/front-alt.svg"
  7306. }
  7307. },
  7308. side: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(120, "lbs"),
  7311. name: "Side",
  7312. image: {
  7313. source: "./media/characters/yozey/side.svg"
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Micro",
  7320. height: math.unit(3, "inches"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6, "feet")
  7326. }
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(103, "lbs"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/valeska-voss/front.svg"
  7338. }
  7339. }
  7340. },
  7341. [
  7342. {
  7343. name: "Mini-Sized Sub",
  7344. height: math.unit(3.1, "inches")
  7345. },
  7346. {
  7347. name: "Mid-Sized Sub",
  7348. height: math.unit(6.2, "inches")
  7349. },
  7350. {
  7351. name: "Full-Sized Sub",
  7352. height: math.unit(9.3, "inches")
  7353. },
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(5 + 2 / 12, "foot"),
  7357. default: true
  7358. },
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(6, "feet"),
  7366. weight: math.unit(160, "lbs"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/gene-zeta/front.svg",
  7370. extra: 3006 / 2826,
  7371. bottom: 182 / 3188
  7372. }
  7373. }
  7374. },
  7375. [
  7376. {
  7377. name: "Micro",
  7378. height: math.unit(6, "inches")
  7379. },
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(5 + 11 / 12, "foot"),
  7383. default: true
  7384. },
  7385. {
  7386. name: "Macro",
  7387. height: math.unit(140, "feet")
  7388. },
  7389. {
  7390. name: "Supercharged",
  7391. height: math.unit(2500, "feet")
  7392. },
  7393. ]
  7394. ))
  7395. characterMakers.push(() => makeCharacter(
  7396. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7397. {
  7398. front: {
  7399. height: math.unit(6, "feet"),
  7400. weight: math.unit(350, "lbs"),
  7401. name: "Front",
  7402. image: {
  7403. source: "./media/characters/razinox/front.svg",
  7404. extra: 1686 / 1548,
  7405. bottom: 28.2 / 1868
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/razinox/back.svg",
  7414. extra: 1660 / 1590,
  7415. bottom: 15 / 1665
  7416. }
  7417. },
  7418. },
  7419. [
  7420. {
  7421. name: "Normal",
  7422. height: math.unit(10 + 8 / 12, "foot")
  7423. },
  7424. {
  7425. name: "Minimacro",
  7426. height: math.unit(15, "foot")
  7427. },
  7428. {
  7429. name: "Macro",
  7430. height: math.unit(60, "foot"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Megamacro",
  7435. height: math.unit(5, "miles")
  7436. },
  7437. {
  7438. name: "Gigamacro",
  7439. height: math.unit(6000, "miles")
  7440. },
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(150, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/cobalt/front.svg"
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(8 + 1 / 12, "foot")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(111, "foot"),
  7463. default: true
  7464. },
  7465. {
  7466. name: "Supracosmic",
  7467. height: math.unit(1e42, "feet")
  7468. },
  7469. ]
  7470. ))
  7471. characterMakers.push(() => makeCharacter(
  7472. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7473. {
  7474. front: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(140, "lbs"),
  7477. name: "Front",
  7478. image: {
  7479. source: "./media/characters/amanda/front.svg"
  7480. }
  7481. }
  7482. },
  7483. [
  7484. {
  7485. name: "Micro",
  7486. height: math.unit(5, "inches"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(2.75, "meters"),
  7496. weight: math.unit(1200, "lb"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/teal/front.svg",
  7500. extra: 2463 / 2320,
  7501. bottom: 166 / 2629
  7502. }
  7503. },
  7504. back: {
  7505. height: math.unit(2.75, "meters"),
  7506. weight: math.unit(1200, "lb"),
  7507. name: "Back",
  7508. image: {
  7509. source: "./media/characters/teal/back.svg",
  7510. extra: 2580 / 2489,
  7511. bottom: 151 / 2731
  7512. }
  7513. },
  7514. sitting: {
  7515. height: math.unit(1.9, "meters"),
  7516. weight: math.unit(1200, "lb"),
  7517. name: "Sitting",
  7518. image: {
  7519. source: "./media/characters/teal/sitting.svg",
  7520. extra: 623 / 590,
  7521. bottom: 121 / 744
  7522. }
  7523. },
  7524. standing: {
  7525. height: math.unit(2.75, "meters"),
  7526. weight: math.unit(1200, "lb"),
  7527. name: "Standing",
  7528. image: {
  7529. source: "./media/characters/teal/standing.svg",
  7530. extra: 923 / 893,
  7531. bottom: 60 / 983
  7532. }
  7533. },
  7534. stretching: {
  7535. height: math.unit(3.65, "meters"),
  7536. weight: math.unit(1200, "lb"),
  7537. name: "Stretching",
  7538. image: {
  7539. source: "./media/characters/teal/stretching.svg",
  7540. extra: 1276 / 1244,
  7541. bottom: 0 / 1276
  7542. }
  7543. },
  7544. legged: {
  7545. height: math.unit(1.3, "meters"),
  7546. weight: math.unit(100, "lb"),
  7547. name: "Legged",
  7548. image: {
  7549. source: "./media/characters/teal/legged.svg",
  7550. extra: 462 / 437,
  7551. bottom: 24 / 486
  7552. }
  7553. },
  7554. naga: {
  7555. height: math.unit(5.4, "meters"),
  7556. weight: math.unit(4000, "lb"),
  7557. name: "Naga",
  7558. image: {
  7559. source: "./media/characters/teal/naga.svg",
  7560. extra: 1902 / 1858,
  7561. bottom: 0 / 1902
  7562. }
  7563. },
  7564. hand: {
  7565. height: math.unit(0.52, "meters"),
  7566. name: "Hand",
  7567. image: {
  7568. source: "./media/characters/teal/hand.svg"
  7569. }
  7570. },
  7571. maw: {
  7572. height: math.unit(0.43, "meters"),
  7573. name: "Maw",
  7574. image: {
  7575. source: "./media/characters/teal/maw.svg"
  7576. }
  7577. },
  7578. slit: {
  7579. height: math.unit(0.25, "meters"),
  7580. name: "Slit",
  7581. image: {
  7582. source: "./media/characters/teal/slit.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(2.75, "meters"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Macro",
  7594. height: math.unit(300, "feet")
  7595. },
  7596. {
  7597. name: "Macro+",
  7598. height: math.unit(2000, "feet")
  7599. },
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7604. {
  7605. frontCat: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(180, "lbs"),
  7608. name: "Front (Cat)",
  7609. image: {
  7610. source: "./media/characters/ravin-amulet/front-cat.svg"
  7611. }
  7612. },
  7613. frontCatAlt: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(180, "lbs"),
  7616. name: "Front (Alt, Cat)",
  7617. image: {
  7618. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7619. }
  7620. },
  7621. frontWerewolf: {
  7622. height: math.unit(6 * 1.2, "feet"),
  7623. weight: math.unit(225, "lbs"),
  7624. name: "Front (Werewolf)",
  7625. image: {
  7626. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7627. }
  7628. },
  7629. backWerewolf: {
  7630. height: math.unit(6 * 1.2, "feet"),
  7631. weight: math.unit(225, "lbs"),
  7632. name: "Back (Werewolf)",
  7633. image: {
  7634. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Nano",
  7641. height: math.unit(1, "micrometer")
  7642. },
  7643. {
  7644. name: "Micro",
  7645. height: math.unit(1, "inch")
  7646. },
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(6, "feet"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(60, "feet")
  7655. }
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7660. {
  7661. front: {
  7662. height: math.unit(6, "feet"),
  7663. weight: math.unit(165, "lbs"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/fluoresce/front.svg"
  7667. }
  7668. }
  7669. },
  7670. [
  7671. {
  7672. name: "Micro",
  7673. height: math.unit(6, "cm")
  7674. },
  7675. {
  7676. name: "Normal",
  7677. height: math.unit(5 + 7 / 12, "feet"),
  7678. default: true
  7679. },
  7680. {
  7681. name: "Macro",
  7682. height: math.unit(56, "feet")
  7683. },
  7684. {
  7685. name: "Megamacro",
  7686. height: math.unit(1.9, "miles")
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(9 + 6 / 12, "feet"),
  7695. weight: math.unit(523, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/aurora/side.svg"
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(9 + 6 / 12, "feet")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(96, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro+",
  7714. height: math.unit(243, "feet")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(194, "cm"),
  7723. weight: math.unit(90, "kg"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/ranek/front.svg"
  7727. }
  7728. },
  7729. side: {
  7730. height: math.unit(194, "cm"),
  7731. weight: math.unit(90, "kg"),
  7732. name: "Side",
  7733. image: {
  7734. source: "./media/characters/ranek/side.svg"
  7735. }
  7736. },
  7737. back: {
  7738. height: math.unit(194, "cm"),
  7739. weight: math.unit(90, "kg"),
  7740. name: "Back",
  7741. image: {
  7742. source: "./media/characters/ranek/back.svg"
  7743. }
  7744. },
  7745. feral: {
  7746. height: math.unit(30, "cm"),
  7747. weight: math.unit(1.6, "lbs"),
  7748. name: "Feral",
  7749. image: {
  7750. source: "./media/characters/ranek/feral.svg"
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(194, "cm"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(100, "meters")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(5 + 6 / 12, "feet"),
  7771. weight: math.unit(153, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/andrew-cooper/front.svg"
  7775. }
  7776. },
  7777. },
  7778. [
  7779. {
  7780. name: "Nano",
  7781. height: math.unit(1, "mm")
  7782. },
  7783. {
  7784. name: "Micro",
  7785. height: math.unit(2, "inches")
  7786. },
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(5 + 6 / 12, "feet"),
  7790. default: true
  7791. }
  7792. ]
  7793. ))
  7794. characterMakers.push(() => makeCharacter(
  7795. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7796. {
  7797. front: {
  7798. height: math.unit(6, "feet"),
  7799. weight: math.unit(180, "lbs"),
  7800. name: "Front",
  7801. image: {
  7802. source: "./media/characters/akane-sato/front.svg",
  7803. extra: 1219 / 1140
  7804. }
  7805. },
  7806. back: {
  7807. height: math.unit(6, "feet"),
  7808. weight: math.unit(180, "lbs"),
  7809. name: "Back",
  7810. image: {
  7811. source: "./media/characters/akane-sato/back.svg",
  7812. extra: 1219 / 1170
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(2.5, "meters")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(250, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(25, "km")
  7829. },
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(65, "kg"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/rook/front.svg",
  7841. extra: 960 / 950
  7842. }
  7843. }
  7844. },
  7845. [
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(8.8, "feet")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(88, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Megamacro",
  7857. height: math.unit(8, "miles")
  7858. },
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(12 + 2 / 12, "feet"),
  7866. weight: math.unit(808, "lbs"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/prodigy/front.svg"
  7870. }
  7871. }
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(12 + 2 / 12, "feet"),
  7877. default: true
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(143, "feet")
  7882. },
  7883. {
  7884. name: "Macro+",
  7885. height: math.unit(400, "feet")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(6, "feet"),
  7894. weight: math.unit(225, "lbs"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/daniel/front.svg"
  7898. }
  7899. },
  7900. leaning: {
  7901. height: math.unit(6, "feet"),
  7902. weight: math.unit(225, "lbs"),
  7903. name: "Leaning",
  7904. image: {
  7905. source: "./media/characters/daniel/leaning.svg"
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(1000, "feet"),
  7913. default: true
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(6, "feet"),
  7922. weight: math.unit(88, "lbs"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/chiros/front.svg",
  7926. extra: 306 / 226
  7927. }
  7928. },
  7929. side: {
  7930. height: math.unit(6, "feet"),
  7931. weight: math.unit(88, "lbs"),
  7932. name: "Side",
  7933. image: {
  7934. source: "./media/characters/chiros/side.svg",
  7935. extra: 306 / 226
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(6, "cm"),
  7943. default: true
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7949. {
  7950. front: {
  7951. height: math.unit(6, "feet"),
  7952. weight: math.unit(100, "lbs"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/selka/front.svg",
  7956. extra: 947 / 887
  7957. }
  7958. }
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(5, "cm"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(8 + 3 / 12, "feet"),
  7973. weight: math.unit(424, "lbs"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/verin/front.svg",
  7977. extra: 1845 / 1550
  7978. }
  7979. },
  7980. frontArmored: {
  7981. height: math.unit(8 + 3 / 12, "feet"),
  7982. weight: math.unit(424, "lbs"),
  7983. name: "Front (Armored)",
  7984. image: {
  7985. source: "./media/characters/verin/front-armor.svg",
  7986. extra: 1845 / 1550,
  7987. bottom: 0.01
  7988. }
  7989. },
  7990. back: {
  7991. height: math.unit(8 + 3 / 12, "feet"),
  7992. weight: math.unit(424, "lbs"),
  7993. name: "Back",
  7994. image: {
  7995. source: "./media/characters/verin/back.svg",
  7996. bottom: 0.1,
  7997. extra: 1
  7998. }
  7999. },
  8000. foot: {
  8001. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8002. name: "Foot",
  8003. image: {
  8004. source: "./media/characters/verin/foot.svg"
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(8 + 3 / 12, "feet")
  8012. },
  8013. {
  8014. name: "Minimacro",
  8015. height: math.unit(21, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(626, "feet")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(2.718, "meters"),
  8029. weight: math.unit(150, "lbs"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/sovrim-terraquian/front.svg",
  8033. extra: 1752/1689,
  8034. bottom: 36/1788
  8035. }
  8036. },
  8037. back: {
  8038. height: math.unit(2.718, "meters"),
  8039. weight: math.unit(150, "lbs"),
  8040. name: "Back",
  8041. image: {
  8042. source: "./media/characters/sovrim-terraquian/back.svg",
  8043. extra: 1698/1657,
  8044. bottom: 58/1756
  8045. }
  8046. },
  8047. tongue: {
  8048. height: math.unit(2.865, "feet"),
  8049. name: "Tongue",
  8050. image: {
  8051. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8052. }
  8053. },
  8054. hand: {
  8055. height: math.unit(1.61, "feet"),
  8056. name: "Hand",
  8057. image: {
  8058. source: "./media/characters/sovrim-terraquian/hand.svg"
  8059. }
  8060. },
  8061. foot: {
  8062. height: math.unit(1.05, "feet"),
  8063. name: "Foot",
  8064. image: {
  8065. source: "./media/characters/sovrim-terraquian/foot.svg"
  8066. }
  8067. },
  8068. footAlt: {
  8069. height: math.unit(0.88, "feet"),
  8070. name: "Foot (Alt)",
  8071. image: {
  8072. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(2, "inches")
  8080. },
  8081. {
  8082. name: "Small",
  8083. height: math.unit(1, "meter")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(Math.E, "meters"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(20, "meters")
  8093. },
  8094. {
  8095. name: "Macro+",
  8096. height: math.unit(400, "meters")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(7, "feet"),
  8105. weight: math.unit(489, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/reece-silvermane/front.svg",
  8109. bottom: 0.02,
  8110. extra: 1
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(1.5, "miles"),
  8118. default: true
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(78, "kg"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/kane/front.svg",
  8131. extra: 978 / 899
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(2.1, "m"),
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(1, "km"),
  8143. default: true
  8144. },
  8145. ]
  8146. ))
  8147. characterMakers.push(() => makeCharacter(
  8148. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8149. {
  8150. front: {
  8151. height: math.unit(6, "feet"),
  8152. weight: math.unit(200, "kg"),
  8153. name: "Front",
  8154. image: {
  8155. source: "./media/characters/tegon/front.svg",
  8156. bottom: 0.01,
  8157. extra: 1
  8158. }
  8159. },
  8160. },
  8161. [
  8162. {
  8163. name: "Micro",
  8164. height: math.unit(1, "inch")
  8165. },
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(6 + 3 / 12, "feet"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Macro",
  8173. height: math.unit(300, "feet")
  8174. },
  8175. {
  8176. name: "Megamacro",
  8177. height: math.unit(69, "miles")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8183. {
  8184. side: {
  8185. height: math.unit(6, "feet"),
  8186. weight: math.unit(2304, "lbs"),
  8187. name: "Side",
  8188. image: {
  8189. source: "./media/characters/arcturax/side.svg",
  8190. extra: 790 / 376,
  8191. bottom: 0.01
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(2, "inch")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(6, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(39, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(7, "miles")
  8212. },
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(50, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/sentri/front.svg",
  8224. extra: 1750 / 1570,
  8225. bottom: 0.025
  8226. }
  8227. },
  8228. frontAlt: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(50, "lbs"),
  8231. name: "Front (Alt)",
  8232. image: {
  8233. source: "./media/characters/sentri/front-alt.svg",
  8234. extra: 1750 / 1570,
  8235. bottom: 0.025
  8236. }
  8237. },
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(15, "feet"),
  8243. default: true
  8244. },
  8245. {
  8246. name: "Macro",
  8247. height: math.unit(2500, "feet")
  8248. }
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(5 + 8 / 12, "feet"),
  8256. weight: math.unit(130, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/corvin/front.svg",
  8260. extra: 1803 / 1629
  8261. }
  8262. },
  8263. frontShirt: {
  8264. height: math.unit(5 + 8 / 12, "feet"),
  8265. weight: math.unit(130, "lbs"),
  8266. name: "Front (Shirt)",
  8267. image: {
  8268. source: "./media/characters/corvin/front-shirt.svg",
  8269. extra: 1803 / 1629
  8270. }
  8271. },
  8272. frontPoncho: {
  8273. height: math.unit(5 + 8 / 12, "feet"),
  8274. weight: math.unit(130, "lbs"),
  8275. name: "Front (Poncho)",
  8276. image: {
  8277. source: "./media/characters/corvin/front-poncho.svg",
  8278. extra: 1803 / 1629
  8279. }
  8280. },
  8281. side: {
  8282. height: math.unit(5 + 8 / 12, "feet"),
  8283. weight: math.unit(130, "lbs"),
  8284. name: "Side",
  8285. image: {
  8286. source: "./media/characters/corvin/side.svg",
  8287. extra: 1012 / 945
  8288. }
  8289. },
  8290. back: {
  8291. height: math.unit(5 + 8 / 12, "feet"),
  8292. weight: math.unit(130, "lbs"),
  8293. name: "Back",
  8294. image: {
  8295. source: "./media/characters/corvin/back.svg",
  8296. extra: 1803 / 1629
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Micro",
  8303. height: math.unit(3, "inches")
  8304. },
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(5 + 8 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(300, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Megamacro",
  8316. height: math.unit(500, "miles")
  8317. }
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(135, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/q/front.svg",
  8329. extra: 854 / 752,
  8330. bottom: 0.005
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(130, "lbs"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/q/back.svg",
  8339. extra: 854 / 752
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Macro",
  8346. height: math.unit(90, "feet"),
  8347. default: true
  8348. },
  8349. {
  8350. name: "Extra Macro",
  8351. height: math.unit(300, "feet"),
  8352. },
  8353. {
  8354. name: "BIG WALF",
  8355. height: math.unit(750, "feet"),
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(150, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/carley/front.svg",
  8368. extra: 3927 / 3540,
  8369. bottom: 29.2 / 735
  8370. }
  8371. }
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(6 + 3 / 12, "feet")
  8377. },
  8378. {
  8379. name: "Macro",
  8380. height: math.unit(185, "feet"),
  8381. default: true
  8382. },
  8383. {
  8384. name: "Megamacro",
  8385. height: math.unit(8, "miles"),
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8391. {
  8392. front: {
  8393. height: math.unit(3, "feet"),
  8394. weight: math.unit(28, "lbs"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/citrine/front.svg"
  8398. }
  8399. }
  8400. },
  8401. [
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(3, "feet"),
  8405. default: true
  8406. }
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8411. {
  8412. front: {
  8413. height: math.unit(14, "feet"),
  8414. weight: math.unit(1450, "kg"),
  8415. capacity: math.unit(15, "people"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/aura-starwind/front.svg",
  8419. extra: 1440/1327,
  8420. bottom: 11/1451
  8421. }
  8422. },
  8423. side: {
  8424. height: math.unit(14, "feet"),
  8425. weight: math.unit(1450, "kg"),
  8426. capacity: math.unit(15, "people"),
  8427. name: "Side",
  8428. image: {
  8429. source: "./media/characters/aura-starwind/side.svg",
  8430. extra: 1654 / 1497
  8431. }
  8432. },
  8433. taur: {
  8434. height: math.unit(18, "feet"),
  8435. weight: math.unit(5500, "kg"),
  8436. capacity: math.unit(50, "people"),
  8437. name: "Taur",
  8438. image: {
  8439. source: "./media/characters/aura-starwind/taur.svg",
  8440. extra: 1760 / 1650
  8441. }
  8442. },
  8443. feral: {
  8444. height: math.unit(46, "feet"),
  8445. weight: math.unit(25000, "kg"),
  8446. capacity: math.unit(120, "people"),
  8447. name: "Feral",
  8448. image: {
  8449. source: "./media/characters/aura-starwind/feral.svg"
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(14, "feet"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(50, "meters")
  8462. },
  8463. {
  8464. name: "Megamacro",
  8465. height: math.unit(5000, "meters")
  8466. },
  8467. {
  8468. name: "Gigamacro",
  8469. height: math.unit(100000, "kilometers")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(2 + 7 / 12, "feet"),
  8478. weight: math.unit(32, "lbs"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/rivet/front.svg",
  8482. extra: 1716 / 1658,
  8483. bottom: 0.03
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(0.551, "feet"),
  8488. name: "Rivet's Foot",
  8489. image: {
  8490. source: "./media/characters/rivet/foot.svg"
  8491. },
  8492. rename: true
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(1.5, "inches"),
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(2 + 7 / 12, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(85, "feet")
  8508. },
  8509. {
  8510. name: "Megamacro",
  8511. height: math.unit(2.2, "km")
  8512. }
  8513. ]
  8514. ))
  8515. characterMakers.push(() => makeCharacter(
  8516. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8517. {
  8518. front: {
  8519. height: math.unit(5 + 9 / 12, "feet"),
  8520. weight: math.unit(150, "lbs"),
  8521. name: "Front",
  8522. image: {
  8523. source: "./media/characters/coffee/front.svg",
  8524. extra: 3666 / 3032,
  8525. bottom: 0.04
  8526. }
  8527. },
  8528. foot: {
  8529. height: math.unit(1.29, "feet"),
  8530. name: "Foot",
  8531. image: {
  8532. source: "./media/characters/coffee/foot.svg"
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Micro",
  8539. height: math.unit(2, "inches"),
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(5 + 9 / 12, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(800, "feet")
  8549. },
  8550. {
  8551. name: "Megamacro",
  8552. height: math.unit(25, "miles")
  8553. }
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(6, "feet"),
  8561. weight: math.unit(200, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/chari-gal/front.svg",
  8565. extra: 1568 / 1385,
  8566. bottom: 0.047
  8567. }
  8568. },
  8569. gigantamax: {
  8570. height: math.unit(6 * 16, "feet"),
  8571. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8572. name: "Gigantamax",
  8573. image: {
  8574. source: "./media/characters/chari-gal/gigantamax.svg",
  8575. extra: 1124 / 888,
  8576. bottom: 0.03
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 7 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(200, "feet"),
  8588. default: true
  8589. }
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(150, "lbs"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/nova/front.svg",
  8601. extra: 5000 / 4722,
  8602. bottom: 0.02
  8603. }
  8604. }
  8605. },
  8606. [
  8607. {
  8608. name: "Micro-",
  8609. height: math.unit(0.8, "inches")
  8610. },
  8611. {
  8612. name: "Micro",
  8613. height: math.unit(2, "inches"),
  8614. default: true
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8620. {
  8621. front: {
  8622. height: math.unit(3 + 1 / 12, "feet"),
  8623. weight: math.unit(21.7, "lbs"),
  8624. name: "Front",
  8625. image: {
  8626. source: "./media/characters/argent/front.svg",
  8627. extra: 1471 / 1331,
  8628. bottom: 100.8 / 1575.5
  8629. }
  8630. }
  8631. },
  8632. [
  8633. {
  8634. name: "Micro",
  8635. height: math.unit(2, "inches")
  8636. },
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(3 + 1 / 12, "feet"),
  8640. default: true
  8641. },
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(120, "feet")
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8650. {
  8651. lamp: {
  8652. height: math.unit(7 * 1559 / 989, "feet"),
  8653. name: "Magic Lamp",
  8654. image: {
  8655. source: "./media/characters/mira-al-cul/lamp.svg",
  8656. extra: 1617 / 1559
  8657. }
  8658. },
  8659. front: {
  8660. height: math.unit(7, "feet"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/mira-al-cul/front.svg",
  8664. extra: 1044 / 990
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Heavily Restricted",
  8671. height: math.unit(7 * 1559 / 989, "feet")
  8672. },
  8673. {
  8674. name: "Freshly Freed",
  8675. height: math.unit(50 * 1559 / 989, "feet")
  8676. },
  8677. {
  8678. name: "World Encompassing",
  8679. height: math.unit(10000 * 1559 / 989, "miles")
  8680. },
  8681. {
  8682. name: "Galactic",
  8683. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8684. },
  8685. {
  8686. name: "Palmed Universe",
  8687. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8688. default: true
  8689. },
  8690. {
  8691. name: "Multiversal Matriarch",
  8692. height: math.unit(8.87e10, "yottameters")
  8693. },
  8694. {
  8695. name: "Void Mother",
  8696. height: math.unit(3.14e110, "yottaparsecs")
  8697. },
  8698. {
  8699. name: "Toying with Transcendence",
  8700. height: math.unit(1e307, "meters")
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8706. {
  8707. front: {
  8708. height: math.unit(17 + 1 / 12, "feet"),
  8709. weight: math.unit(476.2 * 5, "lbs"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/kuro-shi-uchū/front.svg",
  8713. extra: 2329 / 1835,
  8714. bottom: 0.02
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Micro",
  8721. height: math.unit(2, "inches")
  8722. },
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(12, "meters")
  8726. },
  8727. {
  8728. name: "Planetary",
  8729. height: math.unit(0.00929, "AU"),
  8730. default: true
  8731. },
  8732. {
  8733. name: "Universal",
  8734. height: math.unit(20, "gigaparsecs")
  8735. },
  8736. ]
  8737. ))
  8738. characterMakers.push(() => makeCharacter(
  8739. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8740. {
  8741. front: {
  8742. height: math.unit(5 + 2 / 12, "feet"),
  8743. weight: math.unit(120, "lbs"),
  8744. name: "Front",
  8745. image: {
  8746. source: "./media/characters/katherine/front.svg",
  8747. extra: 2075 / 1969
  8748. }
  8749. },
  8750. dress: {
  8751. height: math.unit(5 + 2 / 12, "feet"),
  8752. weight: math.unit(120, "lbs"),
  8753. name: "Dress",
  8754. image: {
  8755. source: "./media/characters/katherine/dress.svg",
  8756. extra: 2258 / 2064
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Micro",
  8763. height: math.unit(1, "inches"),
  8764. default: true
  8765. },
  8766. {
  8767. name: "Normal",
  8768. height: math.unit(5 + 2 / 12, "feet")
  8769. },
  8770. {
  8771. name: "Macro",
  8772. height: math.unit(100, "meters")
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(80, "miles")
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8782. {
  8783. front: {
  8784. height: math.unit(7 + 8 / 12, "feet"),
  8785. weight: math.unit(250, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/yevis/front.svg",
  8789. extra: 1938 / 1755
  8790. }
  8791. }
  8792. },
  8793. [
  8794. {
  8795. name: "Mortal",
  8796. height: math.unit(7 + 8 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Battle",
  8800. height: math.unit(25 + 11 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Wrath",
  8804. height: math.unit(1654 + 11 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Planet Destroyer",
  8808. height: math.unit(12000, "miles")
  8809. },
  8810. {
  8811. name: "Galaxy Conqueror",
  8812. height: math.unit(1.45, "zettameters"),
  8813. default: true
  8814. },
  8815. {
  8816. name: "Universal War",
  8817. height: math.unit(184, "gigaparsecs")
  8818. },
  8819. {
  8820. name: "Eternity War",
  8821. height: math.unit(1.98e55, "yottaparsecs")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(5 + 8 / 12, "feet"),
  8830. weight: math.unit(63, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/xavier/front.svg",
  8834. extra: 944 / 883
  8835. }
  8836. },
  8837. frontStretch: {
  8838. height: math.unit(5 + 8 / 12, "feet"),
  8839. weight: math.unit(63, "kg"),
  8840. name: "Stretching",
  8841. image: {
  8842. source: "./media/characters/xavier/front-stretch.svg",
  8843. extra: 962 / 820
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(5 + 8 / 12, "feet")
  8851. },
  8852. {
  8853. name: "Macro",
  8854. height: math.unit(100, "meters"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "McLargeHuge",
  8859. height: math.unit(10, "miles")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(5 + 5 / 12, "feet"),
  8868. weight: math.unit(150, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/joshii/front.svg",
  8872. extra: 765 / 653,
  8873. bottom: 51 / 816
  8874. }
  8875. },
  8876. foot: {
  8877. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8878. name: "Foot",
  8879. image: {
  8880. source: "./media/characters/joshii/foot.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(2, "inches"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(5 + 5 / 12, "feet")
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(785, "feet")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(24.5, "miles")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(150, "lb"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/goddess-elizabeth/front.svg",
  8913. extra: 1800 / 1525,
  8914. bottom: 0.005
  8915. }
  8916. },
  8917. foot: {
  8918. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8919. name: "Foot",
  8920. image: {
  8921. source: "./media/characters/goddess-elizabeth/foot.svg"
  8922. }
  8923. },
  8924. mouth: {
  8925. height: math.unit(6, "feet"),
  8926. name: "Mouth",
  8927. image: {
  8928. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Micro",
  8935. height: math.unit(12, "feet")
  8936. },
  8937. {
  8938. name: "Normal",
  8939. height: math.unit(80, "miles"),
  8940. default: true
  8941. },
  8942. {
  8943. name: "Macro",
  8944. height: math.unit(15000, "parsecs")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(5 + 9 / 12, "feet"),
  8953. weight: math.unit(144, "lb"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/kara/front.svg"
  8957. }
  8958. },
  8959. feet: {
  8960. height: math.unit(6 / 6.765, "feet"),
  8961. name: "Kara's Feet",
  8962. rename: true,
  8963. image: {
  8964. source: "./media/characters/kara/feet.svg"
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 9 / 12, "feet")
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(174, "feet"),
  8976. default: true
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(18, "feet"),
  8985. weight: math.unit(4050, "lb"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/tyrone/front.svg",
  8989. extra: 2405 / 2270,
  8990. bottom: 182 / 2587
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(18, "feet"),
  8998. default: true
  8999. },
  9000. {
  9001. name: "Macro",
  9002. height: math.unit(300, "feet")
  9003. },
  9004. {
  9005. name: "Megamacro",
  9006. height: math.unit(15, "km")
  9007. },
  9008. {
  9009. name: "Gigamacro",
  9010. height: math.unit(500, "km")
  9011. },
  9012. {
  9013. name: "Teramacro",
  9014. height: math.unit(0.5, "gigameters")
  9015. },
  9016. {
  9017. name: "Omnimacro",
  9018. height: math.unit(1e252, "yottauniverse")
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(7 + 8 / 12, "feet"),
  9027. weight: math.unit(120, "lb"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/danny/front.svg",
  9031. extra: 1490 / 1350
  9032. }
  9033. },
  9034. back: {
  9035. height: math.unit(7 + 8 / 12, "feet"),
  9036. weight: math.unit(120, "lb"),
  9037. name: "Back",
  9038. image: {
  9039. source: "./media/characters/danny/back.svg",
  9040. extra: 1490 / 1350
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(7 + 8 / 12, "feet"),
  9048. default: true
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(3.5, "inches"),
  9057. weight: math.unit(19, "grams"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/mallow/front.svg",
  9061. extra: 471 / 431
  9062. }
  9063. },
  9064. back: {
  9065. height: math.unit(3.5, "inches"),
  9066. weight: math.unit(19, "grams"),
  9067. name: "Back",
  9068. image: {
  9069. source: "./media/characters/mallow/back.svg",
  9070. extra: 471 / 431
  9071. }
  9072. },
  9073. },
  9074. [
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(3.5, "inches"),
  9078. default: true
  9079. },
  9080. ]
  9081. ))
  9082. characterMakers.push(() => makeCharacter(
  9083. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9084. {
  9085. front: {
  9086. height: math.unit(9, "feet"),
  9087. weight: math.unit(230, "kg"),
  9088. name: "Front",
  9089. image: {
  9090. source: "./media/characters/starry-aqua/front.svg"
  9091. }
  9092. },
  9093. back: {
  9094. height: math.unit(9, "feet"),
  9095. weight: math.unit(230, "kg"),
  9096. name: "Back",
  9097. image: {
  9098. source: "./media/characters/starry-aqua/back.svg"
  9099. }
  9100. },
  9101. hand: {
  9102. height: math.unit(9 * 0.1168, "feet"),
  9103. name: "Hand",
  9104. image: {
  9105. source: "./media/characters/starry-aqua/hand.svg"
  9106. }
  9107. },
  9108. foot: {
  9109. height: math.unit(9 * 0.18, "feet"),
  9110. name: "Foot",
  9111. image: {
  9112. source: "./media/characters/starry-aqua/foot.svg"
  9113. }
  9114. }
  9115. },
  9116. [
  9117. {
  9118. name: "Micro",
  9119. height: math.unit(3, "inches")
  9120. },
  9121. {
  9122. name: "Normal",
  9123. height: math.unit(9, "feet")
  9124. },
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(300, "feet"),
  9128. default: true
  9129. },
  9130. {
  9131. name: "Megamacro",
  9132. height: math.unit(3200, "feet")
  9133. }
  9134. ]
  9135. ))
  9136. characterMakers.push(() => makeCharacter(
  9137. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9138. {
  9139. front: {
  9140. height: math.unit(15, "feet"),
  9141. weight: math.unit(5026, "lb"),
  9142. name: "Front",
  9143. image: {
  9144. source: "./media/characters/luka-towers/front.svg",
  9145. extra: 1269/1133,
  9146. bottom: 51/1320
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(15, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Minimacro",
  9158. height: math.unit(25, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(320, "feet")
  9163. },
  9164. {
  9165. name: "Megamacro",
  9166. height: math.unit(35000, "feet")
  9167. },
  9168. {
  9169. name: "Gigamacro",
  9170. height: math.unit(4000, "miles")
  9171. },
  9172. {
  9173. name: "Teramacro",
  9174. height: math.unit(15000, "miles")
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(150, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/natalie-nightring/front.svg",
  9187. extra: 1,
  9188. bottom: 0.06
  9189. }
  9190. },
  9191. },
  9192. [
  9193. {
  9194. name: "Uh Oh",
  9195. height: math.unit(0.1, "mm")
  9196. },
  9197. {
  9198. name: "Small",
  9199. height: math.unit(3, "inches")
  9200. },
  9201. {
  9202. name: "Human Scale",
  9203. height: math.unit(6, "feet")
  9204. },
  9205. {
  9206. name: "Librarian",
  9207. height: math.unit(50, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Immense",
  9212. height: math.unit(200, "miles")
  9213. },
  9214. ]
  9215. ))
  9216. characterMakers.push(() => makeCharacter(
  9217. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9218. {
  9219. front: {
  9220. height: math.unit(6, "feet"),
  9221. weight: math.unit(180, "lbs"),
  9222. name: "Front",
  9223. image: {
  9224. source: "./media/characters/danni-rosie/front.svg",
  9225. extra: 1260 / 1128,
  9226. bottom: 0.022
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Micro",
  9233. height: math.unit(2, "inches"),
  9234. default: true
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(5 + 9 / 12, "feet"),
  9243. weight: math.unit(220, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/samantha-kruse/front.svg",
  9247. extra: (985 / 935),
  9248. bottom: 0.03
  9249. }
  9250. },
  9251. frontUndressed: {
  9252. height: math.unit(5 + 9 / 12, "feet"),
  9253. weight: math.unit(220, "lb"),
  9254. name: "Front (Undressed)",
  9255. image: {
  9256. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9257. extra: (973 / 923),
  9258. bottom: 0.025
  9259. }
  9260. },
  9261. fat: {
  9262. height: math.unit(5 + 9 / 12, "feet"),
  9263. weight: math.unit(900, "lb"),
  9264. name: "Front (Fat)",
  9265. image: {
  9266. source: "./media/characters/samantha-kruse/fat.svg",
  9267. extra: 2688 / 2561
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(5 + 9 / 12, "feet"),
  9275. default: true
  9276. }
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9281. {
  9282. back: {
  9283. height: math.unit(5 + 4 / 12, "feet"),
  9284. weight: math.unit(4963, "lb"),
  9285. name: "Back",
  9286. image: {
  9287. source: "./media/characters/amelia-rosie/back.svg",
  9288. extra: 1113 / 963,
  9289. bottom: 0.01
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Level 0",
  9296. height: math.unit(5 + 4 / 12, "feet")
  9297. },
  9298. {
  9299. name: "Level 1",
  9300. height: math.unit(164597, "feet"),
  9301. default: true
  9302. },
  9303. {
  9304. name: "Level 2",
  9305. height: math.unit(956243, "miles")
  9306. },
  9307. {
  9308. name: "Level 3",
  9309. height: math.unit(29421709423, "miles")
  9310. },
  9311. {
  9312. name: "Level 4",
  9313. height: math.unit(154, "lightyears")
  9314. },
  9315. {
  9316. name: "Level 5",
  9317. height: math.unit(4738272, "lightyears")
  9318. },
  9319. {
  9320. name: "Level 6",
  9321. height: math.unit(145787152896, "lightyears")
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(5 + 11 / 12, "feet"),
  9330. weight: math.unit(65, "kg"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/rook-kitara/front.svg",
  9334. extra: 1347 / 1274,
  9335. bottom: 0.005
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Totally Unfair",
  9342. height: math.unit(1.8, "mm")
  9343. },
  9344. {
  9345. name: "Lap Rookie",
  9346. height: math.unit(1.4, "feet")
  9347. },
  9348. {
  9349. name: "Normal",
  9350. height: math.unit(5 + 11 / 12, "feet"),
  9351. default: true
  9352. },
  9353. {
  9354. name: "How Did This Happen",
  9355. height: math.unit(80, "miles")
  9356. }
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(7, "feet"),
  9364. weight: math.unit(300, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/pisces/front.svg",
  9368. extra: 2255 / 2115,
  9369. bottom: 0.03
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(7, "feet"),
  9374. weight: math.unit(300, "lb"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/pisces/back.svg",
  9378. extra: 2146 / 2055,
  9379. bottom: 0.04
  9380. }
  9381. },
  9382. },
  9383. [
  9384. {
  9385. name: "Normal",
  9386. height: math.unit(7, "feet"),
  9387. default: true
  9388. },
  9389. {
  9390. name: "Swimming Pool",
  9391. height: math.unit(12.2, "meters")
  9392. },
  9393. {
  9394. name: "Olympic Swimming Pool",
  9395. height: math.unit(56.3, "meters")
  9396. },
  9397. {
  9398. name: "Lake Superior",
  9399. height: math.unit(93900, "meters")
  9400. },
  9401. {
  9402. name: "Mediterranean Sea",
  9403. height: math.unit(644457, "meters")
  9404. },
  9405. {
  9406. name: "World's Oceans",
  9407. height: math.unit(4567491, "meters")
  9408. },
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9413. {
  9414. front: {
  9415. height: math.unit(2.3, "meters"),
  9416. weight: math.unit(120, "kg"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/zelas/front.svg"
  9420. }
  9421. },
  9422. side: {
  9423. height: math.unit(2.3, "meters"),
  9424. weight: math.unit(120, "kg"),
  9425. name: "Side",
  9426. image: {
  9427. source: "./media/characters/zelas/side.svg"
  9428. }
  9429. },
  9430. back: {
  9431. height: math.unit(2.3, "meters"),
  9432. weight: math.unit(120, "kg"),
  9433. name: "Back",
  9434. image: {
  9435. source: "./media/characters/zelas/back.svg"
  9436. }
  9437. },
  9438. foot: {
  9439. height: math.unit(1.116, "feet"),
  9440. name: "Foot",
  9441. image: {
  9442. source: "./media/characters/zelas/foot.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2.3, "meters")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(30, "meters"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(1, "inch"),
  9463. weight: math.unit(0.21, "grams"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/talbot/front.svg",
  9467. extra: 594 / 544
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Micro",
  9474. height: math.unit(1, "inch"),
  9475. default: true
  9476. },
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9481. {
  9482. front: {
  9483. height: math.unit(3 + 3 / 12, "feet"),
  9484. weight: math.unit(51.8, "lb"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/fliss/front.svg",
  9488. extra: 840 / 640
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Teeny Tiny",
  9495. height: math.unit(1, "mm")
  9496. },
  9497. {
  9498. name: "Small",
  9499. height: math.unit(1, "inch"),
  9500. default: true
  9501. },
  9502. {
  9503. name: "Standard Sylveon",
  9504. height: math.unit(3 + 3 / 12, "feet")
  9505. },
  9506. {
  9507. name: "Large Nuisance",
  9508. height: math.unit(33, "feet")
  9509. },
  9510. {
  9511. name: "City Filler",
  9512. height: math.unit(3000, "feet")
  9513. },
  9514. {
  9515. name: "New Horizon",
  9516. height: math.unit(6000, "miles")
  9517. },
  9518. ]
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9522. {
  9523. front: {
  9524. height: math.unit(5, "cm"),
  9525. weight: math.unit(1.94, "g"),
  9526. name: "Front",
  9527. image: {
  9528. source: "./media/characters/fleta/front.svg",
  9529. extra: 835 / 803
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(5, "cm"),
  9534. weight: math.unit(1.94, "g"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/fleta/back.svg",
  9538. extra: 835 / 803
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(5, "cm"),
  9546. default: true
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(225, "lb"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/dominic/front.svg",
  9559. extra: 1770 / 1620,
  9560. bottom: 0.025
  9561. }
  9562. },
  9563. back: {
  9564. height: math.unit(6, "feet"),
  9565. weight: math.unit(225, "lb"),
  9566. name: "Back",
  9567. image: {
  9568. source: "./media/characters/dominic/back.svg",
  9569. extra: 1745 / 1620,
  9570. bottom: 0.065
  9571. }
  9572. },
  9573. },
  9574. [
  9575. {
  9576. name: "Nano",
  9577. height: math.unit(0.1, "mm")
  9578. },
  9579. {
  9580. name: "Micro-",
  9581. height: math.unit(1, "mm")
  9582. },
  9583. {
  9584. name: "Micro",
  9585. height: math.unit(4, "inches")
  9586. },
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(6 + 4 / 12, "feet"),
  9590. default: true
  9591. },
  9592. {
  9593. name: "Macro",
  9594. height: math.unit(115, "feet")
  9595. },
  9596. {
  9597. name: "Macro+",
  9598. height: math.unit(955, "feet")
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(8990, "feet")
  9603. },
  9604. {
  9605. name: "Gigmacro",
  9606. height: math.unit(9310, "miles")
  9607. },
  9608. {
  9609. name: "Teramacro",
  9610. height: math.unit(1567005010, "miles")
  9611. },
  9612. {
  9613. name: "Examacro",
  9614. height: math.unit(1425, "parsecs")
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(400, "feet"),
  9623. weight: math.unit(44444444, "lb"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/major-colonel/front.svg"
  9627. }
  9628. },
  9629. back: {
  9630. height: math.unit(400, "feet"),
  9631. weight: math.unit(44444444, "lb"),
  9632. name: "Back",
  9633. image: {
  9634. source: "./media/characters/major-colonel/back.svg"
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(400, "feet"),
  9642. default: true
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9648. {
  9649. catFront: {
  9650. height: math.unit(6, "feet"),
  9651. weight: math.unit(120, "lb"),
  9652. name: "Front (Cat Side)",
  9653. image: {
  9654. source: "./media/characters/axel-lycan/cat-front.svg",
  9655. extra: 430 / 402,
  9656. bottom: 43 / 472.35
  9657. }
  9658. },
  9659. catBack: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(120, "lb"),
  9662. name: "Back (Cat Side)",
  9663. image: {
  9664. source: "./media/characters/axel-lycan/cat-back.svg",
  9665. extra: 447 / 419,
  9666. bottom: 23.3 / 469
  9667. }
  9668. },
  9669. wolfFront: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(120, "lb"),
  9672. name: "Front (Wolf Side)",
  9673. image: {
  9674. source: "./media/characters/axel-lycan/wolf-front.svg",
  9675. extra: 485 / 456,
  9676. bottom: 19 / 504
  9677. }
  9678. },
  9679. wolfBack: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(120, "lb"),
  9682. name: "Back (Wolf Side)",
  9683. image: {
  9684. source: "./media/characters/axel-lycan/wolf-back.svg",
  9685. extra: 475 / 438,
  9686. bottom: 39.2 / 514
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Macro",
  9693. height: math.unit(1, "km"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(5 + 9 / 12, "feet"),
  9703. weight: math.unit(175, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/vanrel-hyena/front.svg",
  9707. extra: 1086 / 1010,
  9708. bottom: 0.04
  9709. }
  9710. },
  9711. },
  9712. [
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(5 + 9 / 12, "feet"),
  9716. default: true
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(6, "feet"),
  9725. weight: math.unit(103, "lb"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/abbott-absol/front.svg",
  9729. extra: 2010 / 1842
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Megamicro",
  9736. height: math.unit(0.1, "mm")
  9737. },
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(1, "inch")
  9741. },
  9742. {
  9743. name: "Normal",
  9744. height: math.unit(6, "feet"),
  9745. default: true
  9746. },
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(6, "feet"),
  9754. weight: math.unit(264, "lb"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/hector/front.svg",
  9758. extra: 2280 / 2130,
  9759. bottom: 0.07
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(12.25, "foot"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "Macro",
  9771. height: math.unit(160, "feet")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/sal/front.svg",
  9784. extra: 1846 / 1699,
  9785. bottom: 0.04
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(10, "miles"),
  9793. default: true
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9799. {
  9800. front: {
  9801. height: math.unit(3, "meters"),
  9802. weight: math.unit(450, "kg"),
  9803. name: "front",
  9804. image: {
  9805. source: "./media/characters/ranger/front.svg",
  9806. extra: 2401 / 2243,
  9807. bottom: 0.05
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(3, "meters"),
  9815. default: true
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(14, "feet"),
  9824. weight: math.unit(800, "kg"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/theresa/front.svg",
  9828. extra: 3575 / 3346,
  9829. bottom: 0.03
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(14, "feet"),
  9837. default: true
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(3, "kg"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/ine/front.svg",
  9850. extra: 678 / 539,
  9851. bottom: 0.023
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(2.265, "feet"),
  9859. default: true
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(5, "feet"),
  9868. weight: math.unit(30, "kg"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/vial/front.svg",
  9872. extra: 1365 / 1277,
  9873. bottom: 0.04
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Normal",
  9880. height: math.unit(5, "feet"),
  9881. default: true
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9887. {
  9888. side: {
  9889. height: math.unit(3.4, "meters"),
  9890. weight: math.unit(1000, "lb"),
  9891. name: "Side",
  9892. image: {
  9893. source: "./media/characters/rovoska/side.svg",
  9894. extra: 4403 / 1515
  9895. }
  9896. },
  9897. },
  9898. [
  9899. {
  9900. name: "Normal",
  9901. height: math.unit(3.4, "meters"),
  9902. default: true
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(8, "feet"),
  9911. weight: math.unit(315, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/gunner-rotthbauer/front.svg"
  9915. }
  9916. },
  9917. back: {
  9918. height: math.unit(8, "feet"),
  9919. weight: math.unit(315, "lb"),
  9920. name: "Back",
  9921. image: {
  9922. source: "./media/characters/gunner-rotthbauer/back.svg"
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(3.5, "inches")
  9930. },
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(8, "feet"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(250, "feet")
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(1, "AU")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9948. {
  9949. front: {
  9950. height: math.unit(5 + 5 / 12, "feet"),
  9951. weight: math.unit(140, "lb"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/allatia/front.svg",
  9955. extra: 1227 / 1180,
  9956. bottom: 0.027
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(5 + 5 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(250, "feet"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(8, "miles")
  9973. }
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(6, "feet"),
  9981. weight: math.unit(120, "lb"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/tene/front.svg",
  9985. extra: 1728 / 1578,
  9986. bottom: 0.022
  9987. }
  9988. },
  9989. stomping: {
  9990. height: math.unit(2.025, "meters"),
  9991. weight: math.unit(120, "lb"),
  9992. name: "Stomping",
  9993. image: {
  9994. source: "./media/characters/tene/stomping.svg",
  9995. extra: 938 / 873,
  9996. bottom: 0.01
  9997. }
  9998. },
  9999. sitting: {
  10000. height: math.unit(1, "meter"),
  10001. weight: math.unit(120, "lb"),
  10002. name: "Sitting",
  10003. image: {
  10004. source: "./media/characters/tene/sitting.svg",
  10005. extra: 437 / 415,
  10006. bottom: 0.1
  10007. }
  10008. },
  10009. feral: {
  10010. height: math.unit(3.9, "feet"),
  10011. weight: math.unit(250, "lb"),
  10012. name: "Feral",
  10013. image: {
  10014. source: "./media/characters/tene/feral.svg",
  10015. extra: 717 / 458,
  10016. bottom: 0.179
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(6, "feet")
  10024. },
  10025. {
  10026. name: "Macro",
  10027. height: math.unit(300, "feet"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Megamacro",
  10032. height: math.unit(5, "miles")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10038. {
  10039. side: {
  10040. height: math.unit(6, "feet"),
  10041. name: "Side",
  10042. image: {
  10043. source: "./media/characters/evander/side.svg",
  10044. extra: 877 / 477
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(0.83, "meters"),
  10052. default: true
  10053. },
  10054. ]
  10055. ))
  10056. characterMakers.push(() => makeCharacter(
  10057. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10058. {
  10059. front: {
  10060. height: math.unit(12, "feet"),
  10061. weight: math.unit(1000, "lb"),
  10062. name: "Front",
  10063. image: {
  10064. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10065. extra: 1762 / 1611
  10066. }
  10067. },
  10068. back: {
  10069. height: math.unit(12, "feet"),
  10070. weight: math.unit(1000, "lb"),
  10071. name: "Back",
  10072. image: {
  10073. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10074. extra: 1762 / 1611
  10075. }
  10076. },
  10077. },
  10078. [
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(12, "feet"),
  10082. default: true
  10083. },
  10084. {
  10085. name: "Kaiju",
  10086. height: math.unit(150, "feet")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/zero-alurus/front.svg"
  10099. }
  10100. },
  10101. back: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(150, "lb"),
  10104. name: "Back",
  10105. image: {
  10106. source: "./media/characters/zero-alurus/back.svg"
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(5 + 10 / 12, "feet")
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(60, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Macro+",
  10122. height: math.unit(450, "feet")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(200, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/mega-shi/front.svg",
  10135. extra: 1279 / 1250,
  10136. bottom: 0.02
  10137. }
  10138. },
  10139. back: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(200, "lb"),
  10142. name: "Back",
  10143. image: {
  10144. source: "./media/characters/mega-shi/back.svg",
  10145. extra: 1279 / 1250,
  10146. bottom: 0.02
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Micro",
  10153. height: math.unit(16 + 6 / 12, "feet")
  10154. },
  10155. {
  10156. name: "Third Dimension",
  10157. height: math.unit(40, "meters")
  10158. },
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(660, "feet"),
  10162. default: true
  10163. },
  10164. {
  10165. name: "Megamacro",
  10166. height: math.unit(10, "miles")
  10167. },
  10168. {
  10169. name: "Planetary Launch",
  10170. height: math.unit(500, "miles")
  10171. },
  10172. {
  10173. name: "Interstellar",
  10174. height: math.unit(1e9, "miles")
  10175. },
  10176. {
  10177. name: "Leaving the Universe",
  10178. height: math.unit(1, "gigaparsec")
  10179. },
  10180. {
  10181. name: "Travelling Universes",
  10182. height: math.unit(30e15, "parsecs")
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(5 + 4/12, "feet"),
  10191. weight: math.unit(120, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/odyssey/front.svg",
  10195. extra: 1747/1571,
  10196. bottom: 47/1794
  10197. }
  10198. },
  10199. side: {
  10200. height: math.unit(5.1, "feet"),
  10201. weight: math.unit(120, "lb"),
  10202. name: "Side",
  10203. image: {
  10204. source: "./media/characters/odyssey/side.svg",
  10205. extra: 1847/1619,
  10206. bottom: 47/1894
  10207. }
  10208. },
  10209. lounging: {
  10210. height: math.unit(1.464, "feet"),
  10211. weight: math.unit(120, "lb"),
  10212. name: "Lounging",
  10213. image: {
  10214. source: "./media/characters/odyssey/lounging.svg",
  10215. extra: 1235/837,
  10216. bottom: 551/1786
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(5 + 4 / 12, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(1, "km")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(3000, "km")
  10232. },
  10233. {
  10234. name: "Gigamacro",
  10235. height: math.unit(1, "AU"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Omniversal",
  10240. height: math.unit(100e14, "lightyears")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(300, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/mekuto/front.svg",
  10253. extra: 921 / 832,
  10254. bottom: 0.03
  10255. }
  10256. },
  10257. hand: {
  10258. height: math.unit(6 / 10.24, "feet"),
  10259. name: "Hand",
  10260. image: {
  10261. source: "./media/characters/mekuto/hand.svg"
  10262. }
  10263. },
  10264. foot: {
  10265. height: math.unit(6 / 5.05, "feet"),
  10266. name: "Foot",
  10267. image: {
  10268. source: "./media/characters/mekuto/foot.svg"
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Minimicro",
  10275. height: math.unit(0.2, "inches")
  10276. },
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1.5, "inches")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(5 + 11 / 12, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Minimacro",
  10288. height: math.unit(17 + 9 / 12, "feet")
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(177.5, "feet")
  10293. },
  10294. {
  10295. name: "Megamacro",
  10296. height: math.unit(152, "miles")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(6.5, "inches"),
  10305. weight: math.unit(13, "oz"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/dafydd-tomos/front.svg",
  10309. extra: 2990 / 2603,
  10310. bottom: 0.03
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(6.5, "inches"),
  10318. default: true
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(150, "lb"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/splinter/front.svg",
  10331. extra: 2990 / 2882,
  10332. bottom: 0.04
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/splinter/back.svg",
  10341. extra: 2990 / 2882,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(6, "feet")
  10350. },
  10351. {
  10352. name: "Macro",
  10353. height: math.unit(230, "meters"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(4 + 10 / 12, "feet"),
  10363. weight: math.unit(480, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/snow-gabumon/front.svg",
  10367. extra: 1140 / 963,
  10368. bottom: 0.058
  10369. }
  10370. },
  10371. back: {
  10372. height: math.unit(4 + 10 / 12, "feet"),
  10373. weight: math.unit(480, "lb"),
  10374. name: "Back",
  10375. image: {
  10376. source: "./media/characters/snow-gabumon/back.svg",
  10377. extra: 1115 / 962,
  10378. bottom: 0.041
  10379. }
  10380. },
  10381. frontUndresed: {
  10382. height: math.unit(4 + 10 / 12, "feet"),
  10383. weight: math.unit(480, "lb"),
  10384. name: "Front (Undressed)",
  10385. image: {
  10386. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10387. extra: 1061 / 960,
  10388. bottom: 0.045
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Micro",
  10395. height: math.unit(1, "inch")
  10396. },
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(4 + 10 / 12, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(200, "feet")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(120, "miles")
  10409. },
  10410. {
  10411. name: "Gigamacro",
  10412. height: math.unit(9800, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(1.7, "meters"),
  10421. weight: math.unit(140, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/moody/front.svg",
  10425. extra: 3226 / 3007,
  10426. bottom: 0.087
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Micro",
  10433. height: math.unit(1, "mm")
  10434. },
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(1.7, "meters"),
  10438. default: true
  10439. },
  10440. {
  10441. name: "Macro",
  10442. height: math.unit(80, "meters")
  10443. },
  10444. {
  10445. name: "Macro+",
  10446. height: math.unit(500, "meters")
  10447. },
  10448. ]
  10449. ))
  10450. characterMakers.push(() => makeCharacter(
  10451. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10452. {
  10453. front: {
  10454. height: math.unit(6, "feet"),
  10455. weight: math.unit(150, "lb"),
  10456. name: "Front",
  10457. image: {
  10458. source: "./media/characters/zyas/front.svg",
  10459. extra: 1180 / 1120,
  10460. bottom: 0.045
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(10, "feet"),
  10468. default: true
  10469. },
  10470. {
  10471. name: "Macro",
  10472. height: math.unit(500, "feet")
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(5, "miles")
  10477. },
  10478. {
  10479. name: "Teramacro",
  10480. height: math.unit(150000, "miles")
  10481. },
  10482. ]
  10483. ))
  10484. characterMakers.push(() => makeCharacter(
  10485. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10486. {
  10487. front: {
  10488. height: math.unit(6, "feet"),
  10489. weight: math.unit(150, "lb"),
  10490. name: "Front",
  10491. image: {
  10492. source: "./media/characters/cuon/front.svg",
  10493. extra: 1390 / 1320,
  10494. bottom: 0.008
  10495. }
  10496. },
  10497. },
  10498. [
  10499. {
  10500. name: "Micro",
  10501. height: math.unit(3, "inches")
  10502. },
  10503. {
  10504. name: "Normal",
  10505. height: math.unit(18 + 9 / 12, "feet"),
  10506. default: true
  10507. },
  10508. {
  10509. name: "Macro",
  10510. height: math.unit(360, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(360, "miles")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(2.4, "meters"),
  10523. weight: math.unit(70, "kg"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/nyanuxk/front.svg",
  10527. extra: 1172 / 1084,
  10528. bottom: 0.065
  10529. }
  10530. },
  10531. side: {
  10532. height: math.unit(2.4, "meters"),
  10533. weight: math.unit(70, "kg"),
  10534. name: "Side",
  10535. image: {
  10536. source: "./media/characters/nyanuxk/side.svg",
  10537. extra: 1190 / 1132,
  10538. bottom: 0.007
  10539. }
  10540. },
  10541. back: {
  10542. height: math.unit(2.4, "meters"),
  10543. weight: math.unit(70, "kg"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/nyanuxk/back.svg",
  10547. extra: 1200 / 1141,
  10548. bottom: 0.015
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(0.52, "meters"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/nyanuxk/foot.svg"
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(2, "cm")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(2.4, "meters"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Smaller Macro",
  10571. height: math.unit(120, "meters")
  10572. },
  10573. {
  10574. name: "Bigger Macro",
  10575. height: math.unit(1.2, "km")
  10576. },
  10577. {
  10578. name: "Megamacro",
  10579. height: math.unit(15, "kilometers")
  10580. },
  10581. {
  10582. name: "Gigamacro",
  10583. height: math.unit(2000, "km")
  10584. },
  10585. {
  10586. name: "Teramacro",
  10587. height: math.unit(500000, "km")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10593. {
  10594. side: {
  10595. height: math.unit(6, "feet"),
  10596. name: "Side",
  10597. image: {
  10598. source: "./media/characters/ailbhe/side.svg",
  10599. extra: 757 / 464,
  10600. bottom: 0.041
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(1.07, "meters"),
  10608. default: true
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(120, "kg"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/zevulfius/front.svg",
  10621. extra: 965 / 903
  10622. }
  10623. },
  10624. side: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(120, "kg"),
  10627. name: "Side",
  10628. image: {
  10629. source: "./media/characters/zevulfius/side.svg",
  10630. extra: 939 / 900
  10631. }
  10632. },
  10633. back: {
  10634. height: math.unit(6, "feet"),
  10635. weight: math.unit(120, "kg"),
  10636. name: "Back",
  10637. image: {
  10638. source: "./media/characters/zevulfius/back.svg",
  10639. extra: 918 / 854,
  10640. bottom: 0.005
  10641. }
  10642. },
  10643. foot: {
  10644. height: math.unit(6 / 3.72, "feet"),
  10645. name: "Foot",
  10646. image: {
  10647. source: "./media/characters/zevulfius/foot.svg"
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(750, "meters")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(20, "km"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Gigamacro",
  10663. height: math.unit(2000, "km")
  10664. },
  10665. {
  10666. name: "Teramacro",
  10667. height: math.unit(250000, "km")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(100, "feet"),
  10676. weight: math.unit(350, "kg"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/rikes/front.svg",
  10680. extra: 1565 / 1483,
  10681. bottom: 0.017
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(100, "feet"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(8, "feet"),
  10698. weight: math.unit(356, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/adam-silver-mane/front.svg",
  10702. extra: 1036/937,
  10703. bottom: 63/1099
  10704. }
  10705. },
  10706. side: {
  10707. height: math.unit(8, "feet"),
  10708. weight: math.unit(356, "lb"),
  10709. name: "Side",
  10710. image: {
  10711. source: "./media/characters/adam-silver-mane/side.svg",
  10712. extra: 997/901,
  10713. bottom: 59/1056
  10714. }
  10715. },
  10716. frontNsfw: {
  10717. height: math.unit(8, "feet"),
  10718. weight: math.unit(356, "lb"),
  10719. name: "Front (NSFW)",
  10720. image: {
  10721. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10722. extra: 1036/937,
  10723. bottom: 63/1099
  10724. }
  10725. },
  10726. sideNsfw: {
  10727. height: math.unit(8, "feet"),
  10728. weight: math.unit(356, "lb"),
  10729. name: "Side (NSFW)",
  10730. image: {
  10731. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10732. extra: 997/901,
  10733. bottom: 59/1056
  10734. }
  10735. },
  10736. dick: {
  10737. height: math.unit(2.1, "feet"),
  10738. name: "Dick",
  10739. image: {
  10740. source: "./media/characters/adam-silver-mane/dick.svg"
  10741. }
  10742. },
  10743. taur: {
  10744. height: math.unit(16, "feet"),
  10745. weight: math.unit(1500, "kg"),
  10746. name: "Taur",
  10747. image: {
  10748. source: "./media/characters/adam-silver-mane/taur.svg",
  10749. extra: 1713 / 1571,
  10750. bottom: 0.01
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(8, "feet")
  10758. },
  10759. {
  10760. name: "Minimacro",
  10761. height: math.unit(80, "feet")
  10762. },
  10763. {
  10764. name: "MDA",
  10765. height: math.unit(80, "meters")
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(800, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(8000, "feet")
  10775. },
  10776. {
  10777. name: "Gigamacro",
  10778. height: math.unit(800, "miles")
  10779. },
  10780. {
  10781. name: "Teramacro",
  10782. height: math.unit(80000, "miles")
  10783. },
  10784. {
  10785. name: "Celestial",
  10786. height: math.unit(8e6, "miles")
  10787. },
  10788. {
  10789. name: "Star Dragon",
  10790. height: math.unit(800000, "parsecs")
  10791. },
  10792. {
  10793. name: "Godly",
  10794. height: math.unit(800, "teraparsecs")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(150, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/ky'owin/front.svg",
  10807. extra: 3888 / 3068,
  10808. bottom: 0.015
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(6 + 8 / 12, "feet")
  10816. },
  10817. {
  10818. name: "Large",
  10819. height: math.unit(68, "feet")
  10820. },
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(132, "feet")
  10824. },
  10825. {
  10826. name: "Macro+",
  10827. height: math.unit(340, "feet")
  10828. },
  10829. {
  10830. name: "Macro++",
  10831. height: math.unit(680, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Megamacro",
  10836. height: math.unit(1, "mile")
  10837. },
  10838. {
  10839. name: "Megamacro+",
  10840. height: math.unit(10, "miles")
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(4, "feet"),
  10849. weight: math.unit(50, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/mal/front.svg",
  10853. extra: 785 / 724,
  10854. bottom: 0.07
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Micro",
  10861. height: math.unit(4, "inches")
  10862. },
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(4, "feet"),
  10866. default: true
  10867. },
  10868. {
  10869. name: "Macro",
  10870. height: math.unit(200, "feet")
  10871. },
  10872. ]
  10873. ))
  10874. characterMakers.push(() => makeCharacter(
  10875. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10876. {
  10877. front: {
  10878. height: math.unit(6, "feet"),
  10879. weight: math.unit(150, "lb"),
  10880. name: "Front",
  10881. image: {
  10882. source: "./media/characters/jordan-deware/front.svg",
  10883. extra: 1191 / 1012
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Nano",
  10890. height: math.unit(0.01, "mm")
  10891. },
  10892. {
  10893. name: "Minimicro",
  10894. height: math.unit(1, "mm")
  10895. },
  10896. {
  10897. name: "Micro",
  10898. height: math.unit(0.5, "inches")
  10899. },
  10900. {
  10901. name: "Normal",
  10902. height: math.unit(4, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Minimacro",
  10907. height: math.unit(40, "meters")
  10908. },
  10909. {
  10910. name: "Small Macro",
  10911. height: math.unit(400, "meters")
  10912. },
  10913. {
  10914. name: "Macro",
  10915. height: math.unit(4, "miles")
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(40, "miles")
  10920. },
  10921. {
  10922. name: "Megamacro+",
  10923. height: math.unit(400, "miles")
  10924. },
  10925. {
  10926. name: "Gigamacro",
  10927. height: math.unit(400000, "miles")
  10928. },
  10929. ]
  10930. ))
  10931. characterMakers.push(() => makeCharacter(
  10932. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10933. {
  10934. side: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(150, "lb"),
  10937. name: "Side",
  10938. image: {
  10939. source: "./media/characters/kimiko/side.svg",
  10940. extra: 600 / 358
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(15, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Macro",
  10952. height: math.unit(220, "feet")
  10953. },
  10954. {
  10955. name: "Macro+",
  10956. height: math.unit(1450, "feet")
  10957. },
  10958. {
  10959. name: "Megamacro",
  10960. height: math.unit(11500, "feet")
  10961. },
  10962. {
  10963. name: "Gigamacro",
  10964. height: math.unit(9500, "miles")
  10965. },
  10966. {
  10967. name: "Teramacro",
  10968. height: math.unit(2208005005, "miles")
  10969. },
  10970. {
  10971. name: "Examacro",
  10972. height: math.unit(2750, "parsecs")
  10973. },
  10974. {
  10975. name: "Zettamacro",
  10976. height: math.unit(101500, "parsecs")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10982. {
  10983. front: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(70, "kg"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/andrew-sleepy/front.svg"
  10989. }
  10990. },
  10991. side: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(70, "kg"),
  10994. name: "Side",
  10995. image: {
  10996. source: "./media/characters/andrew-sleepy/side.svg"
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Micro",
  11003. height: math.unit(1, "mm"),
  11004. default: true
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(6, "feet"),
  11013. weight: math.unit(150, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/judio/front.svg",
  11017. extra: 1258 / 1110
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(5 + 6 / 12, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(1000, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(10, "miles")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(68, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/nomaxice/front.svg",
  11046. extra: 1498 / 1073,
  11047. bottom: 0.075
  11048. }
  11049. },
  11050. foot: {
  11051. height: math.unit(1.1, "feet"),
  11052. name: "Foot",
  11053. image: {
  11054. source: "./media/characters/nomaxice/foot.svg"
  11055. }
  11056. },
  11057. },
  11058. [
  11059. {
  11060. name: "Micro",
  11061. height: math.unit(8, "cm")
  11062. },
  11063. {
  11064. name: "Norm",
  11065. height: math.unit(1.82, "m")
  11066. },
  11067. {
  11068. name: "Norm+",
  11069. height: math.unit(8.8, "feet")
  11070. },
  11071. {
  11072. name: "Big",
  11073. height: math.unit(8, "meters"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Macro",
  11078. height: math.unit(18, "meters")
  11079. },
  11080. {
  11081. name: "Macro+",
  11082. height: math.unit(88, "meters")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11088. {
  11089. front: {
  11090. height: math.unit(12, "feet"),
  11091. weight: math.unit(1.5, "tons"),
  11092. name: "Front",
  11093. image: {
  11094. source: "./media/characters/dydros/front.svg",
  11095. extra: 863 / 800,
  11096. bottom: 0.015
  11097. }
  11098. },
  11099. back: {
  11100. height: math.unit(12, "feet"),
  11101. weight: math.unit(1.5, "tons"),
  11102. name: "Back",
  11103. image: {
  11104. source: "./media/characters/dydros/back.svg",
  11105. extra: 900 / 843,
  11106. bottom: 0.005
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(12, "feet"),
  11114. default: true
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(100, "kg"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/riggi/front.svg",
  11127. extra: 5787 / 5303
  11128. }
  11129. },
  11130. hyper: {
  11131. height: math.unit(6 * 5 / 3, "feet"),
  11132. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11133. name: "Hyper",
  11134. image: {
  11135. source: "./media/characters/riggi/hyper.svg",
  11136. extra: 3595 / 3485
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Small Macro",
  11143. height: math.unit(50, "feet")
  11144. },
  11145. {
  11146. name: "Default",
  11147. height: math.unit(200, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Loom",
  11152. height: math.unit(10000, "feet")
  11153. },
  11154. {
  11155. name: "Cruising Altitude",
  11156. height: math.unit(30000, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(100, "miles")
  11161. },
  11162. {
  11163. name: "Continent Sized",
  11164. height: math.unit(2800, "miles")
  11165. },
  11166. {
  11167. name: "Earth Sized",
  11168. height: math.unit(8000, "miles")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(250, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/alexi/front.svg",
  11181. extra: 3483 / 3291,
  11182. bottom: 0.04
  11183. }
  11184. },
  11185. back: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(250, "lb"),
  11188. name: "Back",
  11189. image: {
  11190. source: "./media/characters/alexi/back.svg",
  11191. extra: 3533 / 3356,
  11192. bottom: 0.021
  11193. }
  11194. },
  11195. frontTransforming: {
  11196. height: math.unit(8.58, "feet"),
  11197. weight: math.unit(1300, "lb"),
  11198. name: "Transforming",
  11199. image: {
  11200. source: "./media/characters/alexi/front-transforming.svg",
  11201. extra: 437 / 409,
  11202. bottom: 19 / 458.66
  11203. }
  11204. },
  11205. frontTransformed: {
  11206. height: math.unit(12.5, "feet"),
  11207. weight: math.unit(4000, "lb"),
  11208. name: "Transformed",
  11209. image: {
  11210. source: "./media/characters/alexi/front-transformed.svg",
  11211. extra: 639 / 614,
  11212. bottom: 30.55 / 671
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(14, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Minimacro",
  11224. height: math.unit(30, "meters")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(500, "meters")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(9000, "km")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(384000, "km")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(150, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/kayroo/front.svg",
  11249. extra: 1153 / 1038,
  11250. bottom: 0.06
  11251. }
  11252. },
  11253. foot: {
  11254. height: math.unit(6, "feet"),
  11255. weight: math.unit(150, "lb"),
  11256. name: "Foot",
  11257. image: {
  11258. source: "./media/characters/kayroo/foot.svg"
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(8, "feet"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Minimacro",
  11270. height: math.unit(250, "feet")
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(2800, "feet")
  11275. },
  11276. {
  11277. name: "Megamacro",
  11278. height: math.unit(5200, "feet")
  11279. },
  11280. {
  11281. name: "Gigamacro",
  11282. height: math.unit(27000, "feet")
  11283. },
  11284. {
  11285. name: "Omega",
  11286. height: math.unit(45000, "feet")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(18, "feet"),
  11295. weight: math.unit(5800, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/rhys/front.svg",
  11299. extra: 3386 / 3090,
  11300. bottom: 0.07
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(18, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Working Size",
  11312. height: math.unit(200, "feet")
  11313. },
  11314. {
  11315. name: "Demolition Size",
  11316. height: math.unit(2000, "feet")
  11317. },
  11318. {
  11319. name: "Maximum Licensed Size",
  11320. height: math.unit(5, "miles")
  11321. },
  11322. {
  11323. name: "Maximum Observed Size",
  11324. height: math.unit(10, "yottameters")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(250, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/toto/front.svg",
  11337. extra: 527 / 479,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Micro",
  11345. height: math.unit(3, "feet")
  11346. },
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(10, "feet")
  11350. },
  11351. {
  11352. name: "Macro",
  11353. height: math.unit(150, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(1200, "feet")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "King", species: ["lion"], tags: ["anthro"] },
  11364. {
  11365. back: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Back",
  11369. image: {
  11370. source: "./media/characters/king/back.svg"
  11371. }
  11372. },
  11373. },
  11374. [
  11375. {
  11376. name: "Micro",
  11377. height: math.unit(2, "inches")
  11378. },
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(8, "feet")
  11382. },
  11383. {
  11384. name: "Macro",
  11385. height: math.unit(200, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(50, "miles")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(11, "feet"),
  11399. weight: math.unit(1400, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/cordite/front.svg",
  11403. extra: 1919/1827,
  11404. bottom: 40/1959
  11405. }
  11406. },
  11407. side: {
  11408. height: math.unit(11, "feet"),
  11409. weight: math.unit(1400, "lb"),
  11410. name: "Side",
  11411. image: {
  11412. source: "./media/characters/cordite/side.svg",
  11413. extra: 1908/1793,
  11414. bottom: 38/1946
  11415. }
  11416. },
  11417. back: {
  11418. height: math.unit(11, "feet"),
  11419. weight: math.unit(1400, "lb"),
  11420. name: "Back",
  11421. image: {
  11422. source: "./media/characters/cordite/back.svg",
  11423. extra: 1938/1837,
  11424. bottom: 10/1948
  11425. }
  11426. },
  11427. feral: {
  11428. height: math.unit(2, "feet"),
  11429. weight: math.unit(90, "lb"),
  11430. name: "Feral",
  11431. image: {
  11432. source: "./media/characters/cordite/feral.svg",
  11433. extra: 1260 / 755,
  11434. bottom: 0.05
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(11, "feet"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(6, "feet"),
  11451. weight: math.unit(150, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/pianostrong/front.svg",
  11455. extra: 6577 / 6254,
  11456. bottom: 0.02
  11457. }
  11458. },
  11459. side: {
  11460. height: math.unit(6, "feet"),
  11461. weight: math.unit(150, "lb"),
  11462. name: "Side",
  11463. image: {
  11464. source: "./media/characters/pianostrong/side.svg",
  11465. extra: 6106 / 5730
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/pianostrong/back.svg",
  11474. extra: 6085 / 5733,
  11475. bottom: 0.01
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(100, "feet")
  11483. },
  11484. {
  11485. name: "Macro+",
  11486. height: math.unit(300, "feet"),
  11487. default: true
  11488. },
  11489. {
  11490. name: "Macro++",
  11491. height: math.unit(1000, "feet")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(150, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/kona/front.svg",
  11504. extra: 2960 / 2629,
  11505. bottom: 0.005
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Normal",
  11512. height: math.unit(11 + 8 / 12, "feet")
  11513. },
  11514. {
  11515. name: "Macro",
  11516. height: math.unit(850, "feet"),
  11517. default: true
  11518. },
  11519. {
  11520. name: "Macro+",
  11521. height: math.unit(1.5, "km"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Megamacro",
  11526. height: math.unit(80, "miles")
  11527. },
  11528. {
  11529. name: "Gigamacro",
  11530. height: math.unit(3500, "miles")
  11531. },
  11532. ]
  11533. ))
  11534. characterMakers.push(() => makeCharacter(
  11535. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11536. {
  11537. side: {
  11538. height: math.unit(1.9, "meters"),
  11539. weight: math.unit(326, "kg"),
  11540. name: "Side",
  11541. image: {
  11542. source: "./media/characters/levi/side.svg",
  11543. extra: 1704 / 1334,
  11544. bottom: 0.02
  11545. }
  11546. },
  11547. },
  11548. [
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(1.9, "meters"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Macro",
  11556. height: math.unit(20, "meters")
  11557. },
  11558. {
  11559. name: "Macro+",
  11560. height: math.unit(200, "meters")
  11561. },
  11562. {
  11563. name: "Megamacro",
  11564. height: math.unit(2, "km")
  11565. },
  11566. {
  11567. name: "Megamacro+",
  11568. height: math.unit(20, "km")
  11569. },
  11570. {
  11571. name: "Gigamacro",
  11572. height: math.unit(2500, "km")
  11573. },
  11574. {
  11575. name: "Gigamacro+",
  11576. height: math.unit(120000, "km")
  11577. },
  11578. {
  11579. name: "Teramacro",
  11580. height: math.unit(7.77e6, "km")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(6 + 4/12, "feet"),
  11589. weight: math.unit(190, "lb"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/bmc/front.svg",
  11593. extra: 1626/1472,
  11594. bottom: 79/1705
  11595. }
  11596. },
  11597. back: {
  11598. height: math.unit(6 + 4/12, "feet"),
  11599. weight: math.unit(190, "lb"),
  11600. name: "Back",
  11601. image: {
  11602. source: "./media/characters/bmc/back.svg",
  11603. extra: 1640/1479,
  11604. bottom: 45/1685
  11605. }
  11606. },
  11607. frontArmor: {
  11608. height: math.unit(6 + 4/12, "feet"),
  11609. weight: math.unit(190, "lb"),
  11610. name: "Front-armor",
  11611. image: {
  11612. source: "./media/characters/bmc/front-armor.svg",
  11613. extra: 1538/1468,
  11614. bottom: 79/1617
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Human-sized",
  11621. height: math.unit(6 + 4 / 12, "feet")
  11622. },
  11623. {
  11624. name: "Interactive Size",
  11625. height: math.unit(25, "feet")
  11626. },
  11627. {
  11628. name: "Small",
  11629. height: math.unit(250, "feet")
  11630. },
  11631. {
  11632. name: "Normal",
  11633. height: math.unit(1250, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Good Day",
  11638. height: math.unit(88, "miles")
  11639. },
  11640. {
  11641. name: "Largest Measured Size",
  11642. height: math.unit(105.960, "galaxies")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(20, "feet"),
  11651. weight: math.unit(2016, "kg"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/sven-the-kaiju/front.svg",
  11655. extra: 1277/1250,
  11656. bottom: 35/1312
  11657. }
  11658. },
  11659. mouth: {
  11660. height: math.unit(1.85, "feet"),
  11661. name: "Mouth",
  11662. image: {
  11663. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11664. }
  11665. },
  11666. },
  11667. [
  11668. {
  11669. name: "Fairy",
  11670. height: math.unit(6, "inches")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(20, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Rampage",
  11679. height: math.unit(200, "feet")
  11680. },
  11681. {
  11682. name: "Archfey Forest Guardian",
  11683. height: math.unit(1, "mile")
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11689. {
  11690. front: {
  11691. height: math.unit(4, "meters"),
  11692. weight: math.unit(2, "tons"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/marik/front.svg",
  11696. extra: 1057 / 1003,
  11697. bottom: 0.08
  11698. }
  11699. },
  11700. },
  11701. [
  11702. {
  11703. name: "Normal",
  11704. height: math.unit(4, "meters"),
  11705. default: true
  11706. },
  11707. {
  11708. name: "Macro",
  11709. height: math.unit(20, "meters")
  11710. },
  11711. {
  11712. name: "Megamacro",
  11713. height: math.unit(50, "km")
  11714. },
  11715. {
  11716. name: "Gigamacro",
  11717. height: math.unit(100, "km")
  11718. },
  11719. {
  11720. name: "Alpha Macro",
  11721. height: math.unit(7.88e7, "yottameters")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(110, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/mel/front.svg",
  11734. extra: 736 / 617,
  11735. bottom: 0.017
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Pico",
  11742. height: math.unit(3, "pm")
  11743. },
  11744. {
  11745. name: "Nano",
  11746. height: math.unit(3, "nm")
  11747. },
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(0.3, "mm"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Micro+",
  11755. height: math.unit(3, "mm")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(5 + 10.5 / 12, "feet")
  11760. },
  11761. ]
  11762. ))
  11763. characterMakers.push(() => makeCharacter(
  11764. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11765. {
  11766. kaiju: {
  11767. height: math.unit(1.75, "meters"),
  11768. weight: math.unit(55, "kg"),
  11769. name: "Kaiju",
  11770. image: {
  11771. source: "./media/characters/lykonous/kaiju.svg",
  11772. extra: 1055 / 946,
  11773. bottom: 0.135
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(2.5, "meters"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Kaiju Dragon",
  11785. height: math.unit(60, "meters")
  11786. },
  11787. {
  11788. name: "Mega Kaiju",
  11789. height: math.unit(120, "km")
  11790. },
  11791. {
  11792. name: "Giga Kaiju",
  11793. height: math.unit(200, "megameters")
  11794. },
  11795. {
  11796. name: "Terra Kaiju",
  11797. height: math.unit(400, "gigameters")
  11798. },
  11799. {
  11800. name: "Kaiju Dragon God",
  11801. height: math.unit(13000, "exaparsecs")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/blü/front.svg",
  11814. extra: 1883 / 1564,
  11815. bottom: 0.031
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Normal",
  11822. height: math.unit(13, "feet"),
  11823. default: true
  11824. },
  11825. {
  11826. name: "Big Boi",
  11827. height: math.unit(150, "meters")
  11828. },
  11829. {
  11830. name: "Mini Stomper",
  11831. height: math.unit(300, "meters")
  11832. },
  11833. {
  11834. name: "Macro",
  11835. height: math.unit(1000, "meters")
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(11000, "meters")
  11840. },
  11841. {
  11842. name: "Gigamacro",
  11843. height: math.unit(11000, "km")
  11844. },
  11845. {
  11846. name: "Teramacro",
  11847. height: math.unit(420000, "km")
  11848. },
  11849. {
  11850. name: "Examacro",
  11851. height: math.unit(120, "parsecs")
  11852. },
  11853. {
  11854. name: "God Tho",
  11855. height: math.unit(98000000000, "parsecs")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11861. {
  11862. taurFront: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(200, "lb"),
  11865. name: "Taur (Front)",
  11866. image: {
  11867. source: "./media/characters/scales/taur-front.svg",
  11868. extra: 1,
  11869. bottom: 0.05
  11870. }
  11871. },
  11872. taurBack: {
  11873. height: math.unit(6, "feet"),
  11874. weight: math.unit(200, "lb"),
  11875. name: "Taur (Back)",
  11876. image: {
  11877. source: "./media/characters/scales/taur-back.svg",
  11878. extra: 1,
  11879. bottom: 0.08
  11880. }
  11881. },
  11882. anthro: {
  11883. height: math.unit(6 * 7 / 12, "feet"),
  11884. weight: math.unit(100, "lb"),
  11885. name: "Anthro",
  11886. image: {
  11887. source: "./media/characters/scales/anthro.svg",
  11888. extra: 1,
  11889. bottom: 0.06
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(12, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(150, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/koragos/front.svg",
  11910. extra: 841 / 794,
  11911. bottom: 0.035
  11912. }
  11913. },
  11914. back: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(150, "lb"),
  11917. name: "Back",
  11918. image: {
  11919. source: "./media/characters/koragos/back.svg",
  11920. extra: 841 / 810,
  11921. bottom: 0.022
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(6 + 11 / 12, "feet"),
  11929. default: true
  11930. },
  11931. {
  11932. name: "Macro",
  11933. height: math.unit(490, "feet")
  11934. },
  11935. {
  11936. name: "Megamacro",
  11937. height: math.unit(10, "miles")
  11938. },
  11939. {
  11940. name: "Gigamacro",
  11941. height: math.unit(50, "miles")
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(250, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/xylrem/front.svg",
  11954. extra: 3323 / 3050,
  11955. bottom: 0.065
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Micro",
  11962. height: math.unit(4, "feet")
  11963. },
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(16, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(2720, "feet")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(25000, "miles")
  11976. },
  11977. ]
  11978. ))
  11979. characterMakers.push(() => makeCharacter(
  11980. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11981. {
  11982. front: {
  11983. height: math.unit(8, "feet"),
  11984. weight: math.unit(250, "kg"),
  11985. name: "Front",
  11986. image: {
  11987. source: "./media/characters/ikideru/front.svg",
  11988. extra: 930 / 870,
  11989. bottom: 0.087
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(8, "feet"),
  11994. weight: math.unit(250, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/ikideru/back.svg",
  11998. extra: 919 / 852,
  11999. bottom: 0.055
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Rare",
  12006. height: math.unit(8, "feet"),
  12007. default: true
  12008. },
  12009. {
  12010. name: "Playful Loom",
  12011. height: math.unit(80, "feet")
  12012. },
  12013. {
  12014. name: "City Leaner",
  12015. height: math.unit(230, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(2500, "feet")
  12020. },
  12021. {
  12022. name: "Gigamacro",
  12023. height: math.unit(26400, "feet")
  12024. },
  12025. {
  12026. name: "Tectonic Shifter",
  12027. height: math.unit(1.7, "megameters")
  12028. },
  12029. {
  12030. name: "Planet Carer",
  12031. height: math.unit(21, "megameters")
  12032. },
  12033. {
  12034. name: "God",
  12035. height: math.unit(11157.22, "parsecs")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(6, "feet"),
  12044. weight: math.unit(120, "lb"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/neo/front.svg"
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(2, "inches"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Human Size",
  12059. height: math.unit(5 + 8 / 12, "feet")
  12060. },
  12061. ]
  12062. ))
  12063. characterMakers.push(() => makeCharacter(
  12064. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12065. {
  12066. front: {
  12067. height: math.unit(13 + 10 / 12, "feet"),
  12068. weight: math.unit(5320, "lb"),
  12069. name: "Front",
  12070. image: {
  12071. source: "./media/characters/chauncey-chantz/front.svg",
  12072. extra: 1587 / 1435,
  12073. bottom: 0.02
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(13 + 10 / 12, "feet"),
  12081. default: true
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(45, "feet")
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(250, "miles")
  12090. },
  12091. {
  12092. name: "Planetary",
  12093. height: math.unit(10000, "miles")
  12094. },
  12095. {
  12096. name: "Galactic",
  12097. height: math.unit(40000, "parsecs")
  12098. },
  12099. {
  12100. name: "Universal",
  12101. height: math.unit(1, "yottameter")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/epifox/front.svg",
  12114. extra: 1,
  12115. bottom: 0.075
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Micro",
  12122. height: math.unit(6, "inches")
  12123. },
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(12, "feet"),
  12127. default: true
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(3810, "feet")
  12132. },
  12133. {
  12134. name: "Megamacro",
  12135. height: math.unit(500, "miles")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(1.8796, "m"),
  12144. weight: math.unit(230, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/colin-t/front.svg",
  12148. extra: 1272 / 1193,
  12149. bottom: 0.07
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Micro",
  12156. height: math.unit(0.571, "meters")
  12157. },
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(1.8796, "meters"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Tall",
  12165. height: math.unit(4, "meters")
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(67.241, "meters")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(371.856, "meters")
  12174. },
  12175. {
  12176. name: "Planetary",
  12177. height: math.unit(12631.5689, "km")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(1.85, "meters"),
  12186. weight: math.unit(80, "kg"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/matvei/front.svg",
  12190. extra: 614 / 594,
  12191. bottom: 0.01
  12192. }
  12193. },
  12194. },
  12195. [
  12196. {
  12197. name: "Normal",
  12198. height: math.unit(1.85, "meters"),
  12199. default: true
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(5 + 9 / 12, "feet"),
  12208. weight: math.unit(70, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/quincy/front.svg",
  12212. extra: 3041 / 2751
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(5 + 9 / 12, "feet"),
  12217. weight: math.unit(70, "lb"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/quincy/back.svg",
  12221. extra: 3041 / 2751
  12222. }
  12223. },
  12224. flying: {
  12225. height: math.unit(5 + 4 / 12, "feet"),
  12226. weight: math.unit(70, "lb"),
  12227. name: "Flying",
  12228. image: {
  12229. source: "./media/characters/quincy/flying.svg",
  12230. extra: 1044 / 930
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(3, "cm")
  12238. },
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(5 + 9 / 12, "feet")
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(200, "meters"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Megamacro",
  12250. height: math.unit(1000, "meters")
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(3 + 11/12, "feet"),
  12259. weight: math.unit(50, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/vanrel/front.svg",
  12263. extra: 1104/949,
  12264. bottom: 52/1156
  12265. }
  12266. },
  12267. back: {
  12268. height: math.unit(3 + 11/12, "feet"),
  12269. weight: math.unit(50, "lb"),
  12270. name: "Back",
  12271. image: {
  12272. source: "./media/characters/vanrel/back.svg",
  12273. extra: 1119/976,
  12274. bottom: 37/1156
  12275. }
  12276. },
  12277. tome: {
  12278. height: math.unit(1.35, "feet"),
  12279. weight: math.unit(10, "lb"),
  12280. name: "Vanrel's Tome",
  12281. rename: true,
  12282. image: {
  12283. source: "./media/characters/vanrel/tome.svg"
  12284. }
  12285. },
  12286. beans: {
  12287. height: math.unit(0.89, "feet"),
  12288. name: "Beans",
  12289. image: {
  12290. source: "./media/characters/vanrel/beans.svg"
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(3 + 11/12, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(7 + 5 / 12, "feet"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/kuiper-vanrel/front.svg",
  12310. extra: 1219/1169,
  12311. bottom: 69/1288
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(7 + 5 / 12, "feet"),
  12316. name: "Back",
  12317. image: {
  12318. source: "./media/characters/kuiper-vanrel/back.svg",
  12319. extra: 1236/1193,
  12320. bottom: 27/1263
  12321. }
  12322. },
  12323. foot: {
  12324. height: math.unit(0.55, "meters"),
  12325. name: "Foot",
  12326. image: {
  12327. source: "./media/characters/kuiper-vanrel/foot.svg",
  12328. }
  12329. },
  12330. battle: {
  12331. height: math.unit(6.824, "feet"),
  12332. name: "Battle",
  12333. image: {
  12334. source: "./media/characters/kuiper-vanrel/battle.svg",
  12335. extra: 1466 / 1327,
  12336. bottom: 29 / 1492.5
  12337. }
  12338. },
  12339. meerkui: {
  12340. height: math.unit(18, "inches"),
  12341. name: "Meerkui",
  12342. image: {
  12343. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12344. extra: 1354/1289,
  12345. bottom: 69/1423
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(7 + 5 / 12, "feet"),
  12353. default: true
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(8 + 5 / 12, "feet"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/keset-vanrel/front.svg",
  12365. extra: 1231/1148,
  12366. bottom: 82/1313
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(8 + 5 / 12, "feet"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/keset-vanrel/back.svg",
  12374. extra: 1240/1174,
  12375. bottom: 33/1273
  12376. }
  12377. },
  12378. hand: {
  12379. height: math.unit(0.6, "meters"),
  12380. name: "Hand",
  12381. image: {
  12382. source: "./media/characters/keset-vanrel/hand.svg"
  12383. }
  12384. },
  12385. foot: {
  12386. height: math.unit(0.94978, "meters"),
  12387. name: "Foot",
  12388. image: {
  12389. source: "./media/characters/keset-vanrel/foot.svg"
  12390. }
  12391. },
  12392. battle: {
  12393. height: math.unit(7.408, "feet"),
  12394. name: "Battle",
  12395. image: {
  12396. source: "./media/characters/keset-vanrel/battle.svg",
  12397. extra: 1890 / 1386,
  12398. bottom: 73.28 / 1970
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(8 + 5 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12412. {
  12413. front: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(150, "lb"),
  12416. name: "Front",
  12417. image: {
  12418. source: "./media/characters/neos/front.svg",
  12419. extra: 1696 / 992,
  12420. bottom: 0.14
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(54, "cm"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(100, "m")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(10, "km")
  12437. },
  12438. {
  12439. name: "Megamacro+",
  12440. height: math.unit(100, "km")
  12441. },
  12442. {
  12443. name: "Gigamacro",
  12444. height: math.unit(100, "Mm")
  12445. },
  12446. {
  12447. name: "Teramacro",
  12448. height: math.unit(100, "Gm")
  12449. },
  12450. {
  12451. name: "Examacro",
  12452. height: math.unit(100, "Em")
  12453. },
  12454. {
  12455. name: "Godly",
  12456. height: math.unit(10000, "Ym")
  12457. },
  12458. {
  12459. name: "Beyond Godly",
  12460. height: math.unit(25, "multiverses")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12466. {
  12467. feminine: {
  12468. height: math.unit(5, "feet"),
  12469. weight: math.unit(100, "lb"),
  12470. name: "Feminine",
  12471. image: {
  12472. source: "./media/characters/sammy-mouse/feminine.svg",
  12473. extra: 2526 / 2425,
  12474. bottom: 0.123
  12475. }
  12476. },
  12477. masculine: {
  12478. height: math.unit(5, "feet"),
  12479. weight: math.unit(100, "lb"),
  12480. name: "Masculine",
  12481. image: {
  12482. source: "./media/characters/sammy-mouse/masculine.svg",
  12483. extra: 2526 / 2425,
  12484. bottom: 0.123
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Micro",
  12491. height: math.unit(5, "inches")
  12492. },
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(5, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Macro",
  12500. height: math.unit(60, "feet")
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(4, "feet"),
  12509. weight: math.unit(50, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/kole/front.svg",
  12513. extra: 1423 / 1303,
  12514. bottom: 0.025
  12515. }
  12516. },
  12517. back: {
  12518. height: math.unit(4, "feet"),
  12519. weight: math.unit(50, "lb"),
  12520. name: "Back",
  12521. image: {
  12522. source: "./media/characters/kole/back.svg",
  12523. extra: 1426 / 1280,
  12524. bottom: 0.02
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(4, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(2.5, "feet"),
  12541. weight: math.unit(32, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/rufran/front.svg",
  12545. extra: 1313/885,
  12546. bottom: 94/1407
  12547. }
  12548. },
  12549. side: {
  12550. height: math.unit(2.5, "feet"),
  12551. weight: math.unit(32, "lb"),
  12552. name: "Side",
  12553. image: {
  12554. source: "./media/characters/rufran/side.svg",
  12555. extra: 1109/852,
  12556. bottom: 118/1227
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(2.5, "feet"),
  12561. weight: math.unit(32, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/rufran/back.svg",
  12565. extra: 1280/878,
  12566. bottom: 131/1411
  12567. }
  12568. },
  12569. mouth: {
  12570. height: math.unit(1.13, "feet"),
  12571. name: "Mouth",
  12572. image: {
  12573. source: "./media/characters/rufran/mouth.svg"
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(1.33, "feet"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/rufran/foot.svg"
  12581. }
  12582. },
  12583. koboldFront: {
  12584. height: math.unit(2 + 6 / 12, "feet"),
  12585. weight: math.unit(20, "lb"),
  12586. name: "Front (Kobold)",
  12587. image: {
  12588. source: "./media/characters/rufran/kobold-front.svg",
  12589. extra: 2041 / 1839,
  12590. bottom: 0.055
  12591. }
  12592. },
  12593. koboldBack: {
  12594. height: math.unit(2 + 6 / 12, "feet"),
  12595. weight: math.unit(20, "lb"),
  12596. name: "Back (Kobold)",
  12597. image: {
  12598. source: "./media/characters/rufran/kobold-back.svg",
  12599. extra: 2054 / 1839,
  12600. bottom: 0.01
  12601. }
  12602. },
  12603. koboldHand: {
  12604. height: math.unit(0.2166, "meters"),
  12605. name: "Hand (Kobold)",
  12606. image: {
  12607. source: "./media/characters/rufran/kobold-hand.svg"
  12608. }
  12609. },
  12610. koboldFoot: {
  12611. height: math.unit(0.185, "meters"),
  12612. name: "Foot (Kobold)",
  12613. image: {
  12614. source: "./media/characters/rufran/kobold-foot.svg"
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Micro",
  12621. height: math.unit(1, "inch")
  12622. },
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(2 + 6 / 12, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Big",
  12630. height: math.unit(60, "feet")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(325, "feet")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(0.3, "meters"),
  12643. weight: math.unit(3.5, "kg"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/chip/front.svg",
  12647. extra: 748 / 674
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Micro",
  12654. height: math.unit(1, "inch"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12661. {
  12662. side: {
  12663. height: math.unit(2.3, "meters"),
  12664. weight: math.unit(3500, "lb"),
  12665. name: "Side",
  12666. image: {
  12667. source: "./media/characters/torvid/side.svg",
  12668. extra: 1972 / 722,
  12669. bottom: 0.035
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(2.3, "meters"),
  12677. default: true
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(2, "meters"),
  12686. weight: math.unit(150.5, "kg"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/susan/front.svg",
  12690. extra: 693 / 635,
  12691. bottom: 0.05
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(505, "miles"),
  12699. default: true
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(6, "feet"),
  12708. weight: math.unit(150, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/raindrops/front.svg",
  12712. extra: 2655 / 2461,
  12713. bottom: 49 / 2705
  12714. }
  12715. },
  12716. back: {
  12717. height: math.unit(6, "feet"),
  12718. weight: math.unit(150, "lb"),
  12719. name: "Back",
  12720. image: {
  12721. source: "./media/characters/raindrops/back.svg",
  12722. extra: 2574 / 2400,
  12723. bottom: 65 / 2634
  12724. }
  12725. },
  12726. },
  12727. [
  12728. {
  12729. name: "Micro",
  12730. height: math.unit(6, "inches")
  12731. },
  12732. {
  12733. name: "Normal",
  12734. height: math.unit(6 + 2 / 12, "feet")
  12735. },
  12736. {
  12737. name: "Macro",
  12738. height: math.unit(131, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(15, "miles")
  12744. },
  12745. {
  12746. name: "Gigamacro",
  12747. height: math.unit(4000, "miles")
  12748. },
  12749. {
  12750. name: "Teramacro",
  12751. height: math.unit(315000, "miles")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(2.794, "meters"),
  12760. weight: math.unit(325, "kg"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/tezwa/front.svg",
  12764. extra: 2083 / 1906,
  12765. bottom: 0.031
  12766. }
  12767. },
  12768. foot: {
  12769. height: math.unit(0.687, "meters"),
  12770. name: "Foot",
  12771. image: {
  12772. source: "./media/characters/tezwa/foot.svg"
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(9 + 2 / 12, "feet"),
  12780. default: true
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(58, "feet"),
  12789. weight: math.unit(89000, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/typhus/front.svg",
  12793. extra: 816 / 800,
  12794. bottom: 0.065
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(58, "feet"),
  12802. default: true
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12808. {
  12809. front: {
  12810. height: math.unit(12, "feet"),
  12811. weight: math.unit(6, "tonnes"),
  12812. name: "Front",
  12813. image: {
  12814. source: "./media/characters/lyra-von-wulf/front.svg",
  12815. extra: 1,
  12816. bottom: 0.10
  12817. }
  12818. },
  12819. frontMecha: {
  12820. height: math.unit(12, "feet"),
  12821. weight: math.unit(12, "tonnes"),
  12822. name: "Front (Mecha)",
  12823. image: {
  12824. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12825. extra: 1,
  12826. bottom: 0.042
  12827. }
  12828. },
  12829. maw: {
  12830. height: math.unit(2.2, "feet"),
  12831. name: "Maw",
  12832. image: {
  12833. source: "./media/characters/lyra-von-wulf/maw.svg"
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(12, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Classic",
  12845. height: math.unit(50, "feet")
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(500, "feet")
  12850. },
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(1, "mile")
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(400, "miles")
  12858. },
  12859. {
  12860. name: "Teramacro",
  12861. height: math.unit(22000, "miles")
  12862. },
  12863. {
  12864. name: "Solarmacro",
  12865. height: math.unit(8600000, "miles")
  12866. },
  12867. {
  12868. name: "Galactic",
  12869. height: math.unit(1057000, "lightyears")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 10 / 12, "feet"),
  12878. weight: math.unit(150, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/dixon/front.svg",
  12882. extra: 3361 / 3209,
  12883. bottom: 0.01
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(6 + 10 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Big",
  12895. height: math.unit(12, "meters")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(500, "meters")
  12900. },
  12901. {
  12902. name: "Megamacro",
  12903. height: math.unit(2, "km")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(185, "cm"),
  12912. weight: math.unit(68, "kg"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/kauko/front.svg",
  12916. extra: 1455 / 1421,
  12917. bottom: 0.03
  12918. }
  12919. },
  12920. back: {
  12921. height: math.unit(185, "cm"),
  12922. weight: math.unit(68, "kg"),
  12923. name: "Back",
  12924. image: {
  12925. source: "./media/characters/kauko/back.svg",
  12926. extra: 1455 / 1421,
  12927. bottom: 0.004
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(185, "cm"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "kg"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/varg/front.svg",
  12948. extra: 1108 / 1018,
  12949. bottom: 0.0375
  12950. }
  12951. },
  12952. },
  12953. [
  12954. {
  12955. name: "Normal",
  12956. height: math.unit(5, "meters")
  12957. },
  12958. {
  12959. name: "Macro",
  12960. height: math.unit(200, "meters")
  12961. },
  12962. {
  12963. name: "Megamacro",
  12964. height: math.unit(20, "kilometers")
  12965. },
  12966. {
  12967. name: "True Size",
  12968. height: math.unit(211, "km"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Gigamacro",
  12973. height: math.unit(1000, "km")
  12974. },
  12975. {
  12976. name: "Gigamacro+",
  12977. height: math.unit(8000, "km")
  12978. },
  12979. {
  12980. name: "Teramacro",
  12981. height: math.unit(1000000, "km")
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(7 + 7 / 12, "feet"),
  12990. weight: math.unit(267, "lb"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/dayza/front.svg",
  12994. extra: 1262 / 1200,
  12995. bottom: 0.035
  12996. }
  12997. },
  12998. side: {
  12999. height: math.unit(7 + 7 / 12, "feet"),
  13000. weight: math.unit(267, "lb"),
  13001. name: "Side",
  13002. image: {
  13003. source: "./media/characters/dayza/side.svg",
  13004. extra: 1295 / 1245,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(7 + 7 / 12, "feet"),
  13010. weight: math.unit(267, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/dayza/back.svg",
  13014. extra: 1241 / 1170
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(7 + 7 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(155, "feet")
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6 + 5 / 12, "feet"),
  13035. weight: math.unit(160, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/xanthos/front.svg",
  13039. extra: 1,
  13040. bottom: 0.04
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(6 + 5 / 12, "feet"),
  13045. weight: math.unit(160, "lb"),
  13046. name: "Back",
  13047. image: {
  13048. source: "./media/characters/xanthos/back.svg",
  13049. extra: 1,
  13050. bottom: 0.03
  13051. }
  13052. },
  13053. hand: {
  13054. height: math.unit(0.928, "feet"),
  13055. name: "Hand",
  13056. image: {
  13057. source: "./media/characters/xanthos/hand.svg"
  13058. }
  13059. },
  13060. foot: {
  13061. height: math.unit(1.286, "feet"),
  13062. name: "Foot",
  13063. image: {
  13064. source: "./media/characters/xanthos/foot.svg"
  13065. }
  13066. },
  13067. },
  13068. [
  13069. {
  13070. name: "Normal",
  13071. height: math.unit(6 + 5 / 12, "feet"),
  13072. default: true
  13073. },
  13074. {
  13075. name: "Normal+",
  13076. height: math.unit(6, "meters")
  13077. },
  13078. {
  13079. name: "Macro",
  13080. height: math.unit(40, "feet")
  13081. },
  13082. {
  13083. name: "Macro+",
  13084. height: math.unit(200, "meters")
  13085. },
  13086. {
  13087. name: "Megamacro",
  13088. height: math.unit(20, "km")
  13089. },
  13090. {
  13091. name: "Megamacro+",
  13092. height: math.unit(100, "km")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(200, "megameters")
  13097. },
  13098. {
  13099. name: "Gigamacro+",
  13100. height: math.unit(1.5, "gigameters")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6 + 3 / 12, "feet"),
  13109. weight: math.unit(215, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/grynn/front.svg",
  13113. extra: 4627 / 4209,
  13114. bottom: 0.047
  13115. }
  13116. },
  13117. },
  13118. [
  13119. {
  13120. name: "Micro",
  13121. height: math.unit(6, "inches")
  13122. },
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(6 + 3 / 12, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Big",
  13130. height: math.unit(104, "feet")
  13131. },
  13132. {
  13133. name: "Macro",
  13134. height: math.unit(944, "feet")
  13135. },
  13136. {
  13137. name: "Macro+",
  13138. height: math.unit(9480, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(78752, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro+",
  13146. height: math.unit(630128, "feet")
  13147. },
  13148. {
  13149. name: "Megamacro++",
  13150. height: math.unit(3150695, "feet")
  13151. },
  13152. ]
  13153. ))
  13154. characterMakers.push(() => makeCharacter(
  13155. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13156. {
  13157. front: {
  13158. height: math.unit(7 + 5 / 12, "feet"),
  13159. weight: math.unit(450, "lb"),
  13160. name: "Front",
  13161. image: {
  13162. source: "./media/characters/mocha-aura/front.svg",
  13163. extra: 1907 / 1817,
  13164. bottom: 0.04
  13165. }
  13166. },
  13167. back: {
  13168. height: math.unit(7 + 5 / 12, "feet"),
  13169. weight: math.unit(450, "lb"),
  13170. name: "Back",
  13171. image: {
  13172. source: "./media/characters/mocha-aura/back.svg",
  13173. extra: 1900 / 1825,
  13174. bottom: 0.045
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Nano",
  13181. height: math.unit(1, "nm")
  13182. },
  13183. {
  13184. name: "Megamicro",
  13185. height: math.unit(1, "mm")
  13186. },
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(3, "inches")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(7 + 5 / 12, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(30, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(3500, "feet")
  13203. },
  13204. {
  13205. name: "Teramacro",
  13206. height: math.unit(500000, "miles")
  13207. },
  13208. {
  13209. name: "Petamacro",
  13210. height: math.unit(50000000000000000, "parsecs")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/ilisha-devya/front.svg",
  13223. extra: 1053/1049,
  13224. bottom: 270/1323
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(150, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/ilisha-devya/back.svg",
  13233. extra: 1131/1128,
  13234. bottom: 39/1170
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(500, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Megamacro",
  13246. height: math.unit(10, "miles")
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(100000, "miles")
  13251. },
  13252. {
  13253. name: "Examacro",
  13254. height: math.unit(1e9, "lightyears")
  13255. },
  13256. {
  13257. name: "Omniversal",
  13258. height: math.unit(1e33, "lightyears")
  13259. },
  13260. {
  13261. name: "Beyond Infinite",
  13262. height: math.unit(1e100, "lightyears")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13268. {
  13269. Side: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Side",
  13273. image: {
  13274. source: "./media/characters/mira/side.svg",
  13275. extra: 900 / 799,
  13276. bottom: 0.02
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Human Size",
  13283. height: math.unit(6, "feet")
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(100, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(10, "miles")
  13293. },
  13294. {
  13295. name: "Gigamacro",
  13296. height: math.unit(25000, "miles")
  13297. },
  13298. {
  13299. name: "Teramacro",
  13300. height: math.unit(300, "AU")
  13301. },
  13302. {
  13303. name: "Full Size",
  13304. height: math.unit(4.5e10, "lightyears")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/holly/front.svg",
  13317. extra: 639 / 606
  13318. }
  13319. },
  13320. back: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Back",
  13324. image: {
  13325. source: "./media/characters/holly/back.svg",
  13326. extra: 623 / 598
  13327. }
  13328. },
  13329. frontWorking: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(150, "lb"),
  13332. name: "Front (Working)",
  13333. image: {
  13334. source: "./media/characters/holly/front-working.svg",
  13335. extra: 607 / 577,
  13336. bottom: 0.048
  13337. }
  13338. },
  13339. },
  13340. [
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(12 + 3 / 12, "feet"),
  13344. default: true
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/porter/front.svg",
  13357. extra: 1,
  13358. bottom: 0.01
  13359. }
  13360. },
  13361. frontRobes: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front (Robes)",
  13365. image: {
  13366. source: "./media/characters/porter/front-robes.svg",
  13367. extra: 1.01,
  13368. bottom: 0.01
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Normal",
  13375. height: math.unit(11 + 9 / 12, "feet"),
  13376. default: true
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13382. {
  13383. legendary: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(150, "lb"),
  13386. name: "Legendary",
  13387. image: {
  13388. source: "./media/characters/lucy/legendary.svg",
  13389. extra: 1355 / 1100,
  13390. bottom: 0.045
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Legendary",
  13397. height: math.unit(86882 * 2, "miles"),
  13398. default: true
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/drusilla/front.svg",
  13411. extra: 678 / 635,
  13412. bottom: 0.03
  13413. }
  13414. },
  13415. back: {
  13416. height: math.unit(6, "feet"),
  13417. weight: math.unit(150, "lb"),
  13418. name: "Back",
  13419. image: {
  13420. source: "./media/characters/drusilla/back.svg",
  13421. extra: 678 / 635,
  13422. bottom: 0.005
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Macro",
  13429. height: math.unit(100, "feet")
  13430. },
  13431. {
  13432. name: "Canon Height",
  13433. height: math.unit(2000, "feet"),
  13434. default: true
  13435. },
  13436. ]
  13437. ))
  13438. characterMakers.push(() => makeCharacter(
  13439. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13440. {
  13441. front: {
  13442. height: math.unit(6, "feet"),
  13443. weight: math.unit(180, "lb"),
  13444. name: "Front",
  13445. image: {
  13446. source: "./media/characters/renard-thatch/front.svg",
  13447. extra: 2411 / 2275,
  13448. bottom: 0.01
  13449. }
  13450. },
  13451. frontPosing: {
  13452. height: math.unit(6, "feet"),
  13453. weight: math.unit(180, "lb"),
  13454. name: "Front (Posing)",
  13455. image: {
  13456. source: "./media/characters/renard-thatch/front-posing.svg",
  13457. extra: 2381 / 2261,
  13458. bottom: 0.01
  13459. }
  13460. },
  13461. back: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(180, "lb"),
  13464. name: "Back",
  13465. image: {
  13466. source: "./media/characters/renard-thatch/back.svg",
  13467. extra: 2428 / 2288
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Micro",
  13474. height: math.unit(3, "inches")
  13475. },
  13476. {
  13477. name: "Default",
  13478. height: math.unit(6, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(75, "feet")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13489. {
  13490. front: {
  13491. height: math.unit(1450, "feet"),
  13492. weight: math.unit(1.21e6, "tons"),
  13493. name: "Front",
  13494. image: {
  13495. source: "./media/characters/sekvra/front.svg",
  13496. extra: 1193/1190,
  13497. bottom: 78/1271
  13498. }
  13499. },
  13500. side: {
  13501. height: math.unit(1450, "feet"),
  13502. weight: math.unit(1.21e6, "tons"),
  13503. name: "Side",
  13504. image: {
  13505. source: "./media/characters/sekvra/side.svg",
  13506. extra: 1193/1190,
  13507. bottom: 52/1245
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(1450, "feet"),
  13512. weight: math.unit(1.21e6, "tons"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/sekvra/back.svg",
  13516. extra: 1219/1216,
  13517. bottom: 21/1240
  13518. }
  13519. },
  13520. frontClothed: {
  13521. height: math.unit(1450, "feet"),
  13522. weight: math.unit(1.21e6, "tons"),
  13523. name: "Front (Clothed)",
  13524. image: {
  13525. source: "./media/characters/sekvra/front-clothed.svg",
  13526. extra: 1192/1189,
  13527. bottom: 79/1271
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(1450, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Megamacro",
  13539. height: math.unit(15000, "feet")
  13540. },
  13541. ]
  13542. ))
  13543. characterMakers.push(() => makeCharacter(
  13544. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13545. {
  13546. front: {
  13547. height: math.unit(6, "feet"),
  13548. weight: math.unit(150, "lb"),
  13549. name: "Front",
  13550. image: {
  13551. source: "./media/characters/carmine/front.svg",
  13552. extra: 1,
  13553. bottom: 0.035
  13554. }
  13555. },
  13556. frontArmor: {
  13557. height: math.unit(6, "feet"),
  13558. weight: math.unit(150, "lb"),
  13559. name: "Front (Armor)",
  13560. image: {
  13561. source: "./media/characters/carmine/front-armor.svg",
  13562. extra: 1,
  13563. bottom: 0.035
  13564. }
  13565. },
  13566. },
  13567. [
  13568. {
  13569. name: "Large",
  13570. height: math.unit(1, "mile")
  13571. },
  13572. {
  13573. name: "Huge",
  13574. height: math.unit(40, "miles"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Colossal",
  13579. height: math.unit(2500, "miles")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(6, "feet"),
  13588. weight: math.unit(150, "lb"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/elyssia/front.svg",
  13592. extra: 2201 / 2035,
  13593. bottom: 0.05
  13594. }
  13595. },
  13596. frontClothed: {
  13597. height: math.unit(6, "feet"),
  13598. weight: math.unit(150, "lb"),
  13599. name: "Front (Clothed)",
  13600. image: {
  13601. source: "./media/characters/elyssia/front-clothed.svg",
  13602. extra: 2201 / 2035,
  13603. bottom: 0.05
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(150, "lb"),
  13609. name: "Back",
  13610. image: {
  13611. source: "./media/characters/elyssia/back.svg",
  13612. extra: 2201 / 2035,
  13613. bottom: 0.013
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Smaller",
  13620. height: math.unit(150, "feet")
  13621. },
  13622. {
  13623. name: "Standard",
  13624. height: math.unit(1400, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Distracted",
  13629. height: math.unit(15000, "feet")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(7 + 4/12, "feet"),
  13638. weight: math.unit(690, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/geno-maxwell/front.svg",
  13642. extra: 984/856,
  13643. bottom: 87/1071
  13644. }
  13645. },
  13646. back: {
  13647. height: math.unit(7 + 4/12, "feet"),
  13648. weight: math.unit(690, "lb"),
  13649. name: "Back",
  13650. image: {
  13651. source: "./media/characters/geno-maxwell/back.svg",
  13652. extra: 981/854,
  13653. bottom: 57/1038
  13654. }
  13655. },
  13656. frontCostume: {
  13657. height: math.unit(7 + 4/12, "feet"),
  13658. weight: math.unit(690, "lb"),
  13659. name: "Front (Costume)",
  13660. image: {
  13661. source: "./media/characters/geno-maxwell/front-costume.svg",
  13662. extra: 984/856,
  13663. bottom: 87/1071
  13664. }
  13665. },
  13666. backcostume: {
  13667. height: math.unit(7 + 4/12, "feet"),
  13668. weight: math.unit(690, "lb"),
  13669. name: "Back (Costume)",
  13670. image: {
  13671. source: "./media/characters/geno-maxwell/back-costume.svg",
  13672. extra: 981/854,
  13673. bottom: 57/1038
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Micro",
  13680. height: math.unit(3, "inches")
  13681. },
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(7 + 4 / 12, "feet"),
  13685. default: true
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(220, "feet")
  13690. },
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(11, "miles")
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(7 + 4/12, "feet"),
  13702. weight: math.unit(750, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/regena-maxwell/front.svg",
  13706. extra: 984/856,
  13707. bottom: 87/1071
  13708. }
  13709. },
  13710. back: {
  13711. height: math.unit(7 + 4/12, "feet"),
  13712. weight: math.unit(750, "lb"),
  13713. name: "Back",
  13714. image: {
  13715. source: "./media/characters/regena-maxwell/back.svg",
  13716. extra: 981/854,
  13717. bottom: 57/1038
  13718. }
  13719. },
  13720. frontCostume: {
  13721. height: math.unit(7 + 4/12, "feet"),
  13722. weight: math.unit(750, "lb"),
  13723. name: "Front (Costume)",
  13724. image: {
  13725. source: "./media/characters/regena-maxwell/front-costume.svg",
  13726. extra: 984/856,
  13727. bottom: 87/1071
  13728. }
  13729. },
  13730. backcostume: {
  13731. height: math.unit(7 + 4/12, "feet"),
  13732. weight: math.unit(750, "lb"),
  13733. name: "Back (Costume)",
  13734. image: {
  13735. source: "./media/characters/regena-maxwell/back-costume.svg",
  13736. extra: 981/854,
  13737. bottom: 57/1038
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(7 + 4 / 12, "feet"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(220, "feet")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(11, "miles")
  13754. },
  13755. ]
  13756. ))
  13757. characterMakers.push(() => makeCharacter(
  13758. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13759. {
  13760. front: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(150, "lb"),
  13763. name: "Front",
  13764. image: {
  13765. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13766. extra: 860 / 690,
  13767. bottom: 0.03
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(1.7, "meters"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(6, "feet"),
  13784. weight: math.unit(150, "lb"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/quilly/front.svg",
  13788. extra: 890 / 776
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Gigamacro",
  13795. height: math.unit(404090, "miles"),
  13796. default: true
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(7 + 8 / 12, "feet"),
  13805. weight: math.unit(350, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/tempest/front.svg",
  13809. extra: 1175 / 1086,
  13810. bottom: 0.02
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Normal",
  13817. height: math.unit(7 + 8 / 12, "feet"),
  13818. default: true
  13819. },
  13820. ]
  13821. ))
  13822. characterMakers.push(() => makeCharacter(
  13823. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13824. {
  13825. side: {
  13826. height: math.unit(4 + 5 / 12, "feet"),
  13827. weight: math.unit(80, "lb"),
  13828. name: "Side",
  13829. image: {
  13830. source: "./media/characters/rodger/side.svg",
  13831. extra: 1235 / 1118
  13832. }
  13833. },
  13834. },
  13835. [
  13836. {
  13837. name: "Micro",
  13838. height: math.unit(1, "inch")
  13839. },
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(4 + 5 / 12, "feet"),
  13843. default: true
  13844. },
  13845. {
  13846. name: "Macro",
  13847. height: math.unit(120, "feet")
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13853. {
  13854. front: {
  13855. height: math.unit(6, "feet"),
  13856. weight: math.unit(150, "lb"),
  13857. name: "Front",
  13858. image: {
  13859. source: "./media/characters/danyel/front.svg",
  13860. extra: 1185 / 1123,
  13861. bottom: 0.05
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Shrunken",
  13868. height: math.unit(0.5, "mm")
  13869. },
  13870. {
  13871. name: "Micro",
  13872. height: math.unit(1, "mm"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Upsized",
  13877. height: math.unit(5 + 5 / 12, "feet")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(5 + 6 / 12, "feet"),
  13886. weight: math.unit(200, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/vivian-bijoux/front.svg",
  13890. extra: 1217/1209,
  13891. bottom: 76/1293
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(5 + 6 / 12, "feet"),
  13896. weight: math.unit(200, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/vivian-bijoux/back.svg",
  13900. extra: 1214/1208,
  13901. bottom: 51/1265
  13902. }
  13903. },
  13904. dressed: {
  13905. height: math.unit(5 + 6 / 12, "feet"),
  13906. weight: math.unit(200, "lb"),
  13907. name: "Dressed",
  13908. image: {
  13909. source: "./media/characters/vivian-bijoux/dressed.svg",
  13910. extra: 1217/1209,
  13911. bottom: 76/1293
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Normal",
  13918. height: math.unit(5 + 6 / 12, "feet"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Bad Dream",
  13923. height: math.unit(500, "feet")
  13924. },
  13925. {
  13926. name: "Nightmare",
  13927. height: math.unit(500, "miles")
  13928. },
  13929. ]
  13930. ))
  13931. characterMakers.push(() => makeCharacter(
  13932. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13933. {
  13934. front: {
  13935. height: math.unit(6 + 1 / 12, "feet"),
  13936. weight: math.unit(260, "lb"),
  13937. name: "Front",
  13938. image: {
  13939. source: "./media/characters/zeta/front.svg",
  13940. extra: 1968 / 1889,
  13941. bottom: 0.06
  13942. }
  13943. },
  13944. back: {
  13945. height: math.unit(6 + 1 / 12, "feet"),
  13946. weight: math.unit(260, "lb"),
  13947. name: "Back",
  13948. image: {
  13949. source: "./media/characters/zeta/back.svg",
  13950. extra: 1944 / 1858,
  13951. bottom: 0.03
  13952. }
  13953. },
  13954. hand: {
  13955. height: math.unit(1.112, "feet"),
  13956. name: "Hand",
  13957. image: {
  13958. source: "./media/characters/zeta/hand.svg"
  13959. }
  13960. },
  13961. foot: {
  13962. height: math.unit(1.48, "feet"),
  13963. name: "Foot",
  13964. image: {
  13965. source: "./media/characters/zeta/foot.svg"
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Micro",
  13972. height: math.unit(6, "inches")
  13973. },
  13974. {
  13975. name: "Normal",
  13976. height: math.unit(6 + 1 / 12, "feet"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Macro",
  13981. height: math.unit(20, "feet")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(6, "feet"),
  13990. weight: math.unit(150, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/jamie-larsen/front.svg",
  13994. extra: 962 / 933,
  13995. bottom: 0.02
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/jamie-larsen/back.svg",
  14004. extra: 997 / 946
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(28 + 7 / 12, "feet"),
  14012. default: true
  14013. },
  14014. {
  14015. name: "Macro+",
  14016. height: math.unit(180, "feet")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(10, "miles")
  14021. },
  14022. {
  14023. name: "Gigamacro",
  14024. height: math.unit(200000, "miles")
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(6, "feet"),
  14033. weight: math.unit(120, "lb"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/vance/front.svg",
  14037. extra: 1980 / 1890,
  14038. bottom: 0.09
  14039. }
  14040. },
  14041. back: {
  14042. height: math.unit(6, "feet"),
  14043. weight: math.unit(120, "lb"),
  14044. name: "Back",
  14045. image: {
  14046. source: "./media/characters/vance/back.svg",
  14047. extra: 2081 / 1994,
  14048. bottom: 0.014
  14049. }
  14050. },
  14051. hand: {
  14052. height: math.unit(0.88, "feet"),
  14053. name: "Hand",
  14054. image: {
  14055. source: "./media/characters/vance/hand.svg"
  14056. }
  14057. },
  14058. foot: {
  14059. height: math.unit(0.64, "feet"),
  14060. name: "Foot",
  14061. image: {
  14062. source: "./media/characters/vance/foot.svg"
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Small",
  14069. height: math.unit(90, "feet"),
  14070. default: true
  14071. },
  14072. {
  14073. name: "Macro",
  14074. height: math.unit(100, "meters")
  14075. },
  14076. {
  14077. name: "Megamacro",
  14078. height: math.unit(15, "miles")
  14079. },
  14080. ]
  14081. ))
  14082. characterMakers.push(() => makeCharacter(
  14083. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14084. {
  14085. front: {
  14086. height: math.unit(6, "feet"),
  14087. weight: math.unit(180, "lb"),
  14088. name: "Front",
  14089. image: {
  14090. source: "./media/characters/xochitl/front.svg",
  14091. extra: 2297 / 2261,
  14092. bottom: 0.065
  14093. }
  14094. },
  14095. back: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(180, "lb"),
  14098. name: "Back",
  14099. image: {
  14100. source: "./media/characters/xochitl/back.svg",
  14101. extra: 2386 / 2354,
  14102. bottom: 0.01
  14103. }
  14104. },
  14105. foot: {
  14106. height: math.unit(6 / 5 * 1.15, "feet"),
  14107. weight: math.unit(150, "lb"),
  14108. name: "Foot",
  14109. image: {
  14110. source: "./media/characters/xochitl/foot.svg"
  14111. }
  14112. },
  14113. },
  14114. [
  14115. {
  14116. name: "Macro",
  14117. height: math.unit(80, "feet")
  14118. },
  14119. {
  14120. name: "Macro+",
  14121. height: math.unit(400, "feet"),
  14122. default: true
  14123. },
  14124. {
  14125. name: "Gigamacro",
  14126. height: math.unit(80000, "miles")
  14127. },
  14128. {
  14129. name: "Gigamacro+",
  14130. height: math.unit(400000, "miles")
  14131. },
  14132. {
  14133. name: "Teramacro",
  14134. height: math.unit(300, "AU")
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(150, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/vincent/front.svg",
  14147. extra: 1130 / 1080,
  14148. bottom: 0.055
  14149. }
  14150. },
  14151. beak: {
  14152. height: math.unit(6 * 0.1, "feet"),
  14153. name: "Beak",
  14154. image: {
  14155. source: "./media/characters/vincent/beak.svg"
  14156. }
  14157. },
  14158. hand: {
  14159. height: math.unit(6 * 0.85, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Hand",
  14162. image: {
  14163. source: "./media/characters/vincent/hand.svg"
  14164. }
  14165. },
  14166. foot: {
  14167. height: math.unit(6 * 0.19, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Foot",
  14170. image: {
  14171. source: "./media/characters/vincent/foot.svg"
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Base",
  14178. height: math.unit(6 + 5 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(300, "feet")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(2, "miles")
  14188. },
  14189. {
  14190. name: "Gigamacro",
  14191. height: math.unit(1000, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(2, "meters"),
  14200. weight: math.unit(500, "kg"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/coatl/front.svg",
  14204. extra: 3948 / 3500,
  14205. bottom: 0.082
  14206. }
  14207. },
  14208. },
  14209. [
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(4, "meters")
  14213. },
  14214. {
  14215. name: "Macro",
  14216. height: math.unit(100, "meters"),
  14217. default: true
  14218. },
  14219. {
  14220. name: "Macro+",
  14221. height: math.unit(300, "meters")
  14222. },
  14223. {
  14224. name: "Megamacro",
  14225. height: math.unit(3, "gigameters")
  14226. },
  14227. {
  14228. name: "Megamacro+",
  14229. height: math.unit(300, "terameters")
  14230. },
  14231. {
  14232. name: "Megamacro++",
  14233. height: math.unit(3, "lightyears")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(50, "kg"),
  14243. name: "front",
  14244. image: {
  14245. source: "./media/characters/shiroryu/front.svg",
  14246. extra: 1990 / 1935
  14247. }
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Mortal Mingling",
  14253. height: math.unit(3, "meters")
  14254. },
  14255. {
  14256. name: "Kaiju-ish",
  14257. height: math.unit(250, "meters")
  14258. },
  14259. {
  14260. name: "Somewhat Godly",
  14261. height: math.unit(400, "km"),
  14262. default: true
  14263. },
  14264. {
  14265. name: "Planetary",
  14266. height: math.unit(300, "megameters")
  14267. },
  14268. {
  14269. name: "Galaxy-dwarfing",
  14270. height: math.unit(450, "kiloparsecs")
  14271. },
  14272. {
  14273. name: "Universe Eater",
  14274. height: math.unit(150, "gigaparsecs")
  14275. },
  14276. {
  14277. name: "Almost Immeasurable",
  14278. height: math.unit(1.3e266, "yottaparsecs")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(150, "lb"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/umeko/front.svg",
  14291. extra: 1,
  14292. bottom: 0.019
  14293. }
  14294. },
  14295. frontArmored: {
  14296. height: math.unit(6, "feet"),
  14297. weight: math.unit(150, "lb"),
  14298. name: "Front (Armored)",
  14299. image: {
  14300. source: "./media/characters/umeko/front-armored.svg",
  14301. extra: 1,
  14302. bottom: 0.021
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(220, "feet"),
  14310. default: true
  14311. },
  14312. {
  14313. name: "Guardian Dragon",
  14314. height: math.unit(50, "miles")
  14315. },
  14316. {
  14317. name: "Cosmic",
  14318. height: math.unit(800000, "miles")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/cassidy/front.svg",
  14331. extra: 810/808,
  14332. bottom: 41/851
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Canon Height",
  14339. height: math.unit(120, "feet"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Macro+",
  14344. height: math.unit(400, "feet")
  14345. },
  14346. {
  14347. name: "Macro++",
  14348. height: math.unit(4000, "feet")
  14349. },
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(3, "miles")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(6, "feet"),
  14361. weight: math.unit(150, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/isaac/front.svg",
  14365. extra: 896 / 815,
  14366. bottom: 0.11
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Human Size",
  14373. height: math.unit(8, "feet"),
  14374. default: true
  14375. },
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(400, "feet")
  14379. },
  14380. {
  14381. name: "Megamacro",
  14382. height: math.unit(50, "miles")
  14383. },
  14384. {
  14385. name: "Canon Height",
  14386. height: math.unit(200, "AU")
  14387. },
  14388. ]
  14389. ))
  14390. characterMakers.push(() => makeCharacter(
  14391. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14392. {
  14393. front: {
  14394. height: math.unit(6, "feet"),
  14395. weight: math.unit(72, "kg"),
  14396. name: "Front",
  14397. image: {
  14398. source: "./media/characters/sleekit/front.svg",
  14399. extra: 4693 / 4487,
  14400. bottom: 0.012
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Minimum Height",
  14407. height: math.unit(10, "meters")
  14408. },
  14409. {
  14410. name: "Smaller",
  14411. height: math.unit(25, "meters")
  14412. },
  14413. {
  14414. name: "Larger",
  14415. height: math.unit(38, "meters"),
  14416. default: true
  14417. },
  14418. {
  14419. name: "Maximum height",
  14420. height: math.unit(100, "meters")
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/nillia/front.svg",
  14433. extra: 2195 / 2037,
  14434. bottom: 0.005
  14435. }
  14436. },
  14437. back: {
  14438. height: math.unit(6, "feet"),
  14439. weight: math.unit(150, "lb"),
  14440. name: "Back",
  14441. image: {
  14442. source: "./media/characters/nillia/back.svg",
  14443. extra: 2195 / 2037,
  14444. bottom: 0.005
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Canon Height",
  14451. height: math.unit(489, "feet"),
  14452. default: true
  14453. }
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(6, "feet"),
  14461. weight: math.unit(150, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/mesmyriza/front.svg",
  14465. extra: 2067 / 1784,
  14466. bottom: 0.035
  14467. }
  14468. },
  14469. foot: {
  14470. height: math.unit(6 / (250 / 35), "feet"),
  14471. name: "Foot",
  14472. image: {
  14473. source: "./media/characters/mesmyriza/foot.svg"
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(457, "meters"),
  14481. default: true
  14482. },
  14483. {
  14484. name: "Megamacro",
  14485. height: math.unit(8, "megameters")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(250, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/saudade/front.svg",
  14498. extra: 1172 / 1139,
  14499. bottom: 0.035
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Micro",
  14506. height: math.unit(3, "inches")
  14507. },
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(6, "feet"),
  14511. default: true
  14512. },
  14513. {
  14514. name: "Macro",
  14515. height: math.unit(50, "feet")
  14516. },
  14517. {
  14518. name: "Megamacro",
  14519. height: math.unit(2800, "feet")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(5 + 4 / 12, "feet"),
  14528. weight: math.unit(100, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/keireer/front.svg",
  14532. extra: 716 / 666,
  14533. bottom: 0.05
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Normal",
  14540. height: math.unit(5 + 4 / 12, "feet"),
  14541. default: true
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(6, "feet"),
  14550. weight: math.unit(90, "kg"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/mirja/front.svg",
  14554. extra: 1789 / 1683,
  14555. bottom: 0.05
  14556. }
  14557. },
  14558. frontDressed: {
  14559. height: math.unit(6, "feet"),
  14560. weight: math.unit(90, "lb"),
  14561. name: "Front (Dressed)",
  14562. image: {
  14563. source: "./media/characters/mirja/front-dressed.svg",
  14564. extra: 1789 / 1683,
  14565. bottom: 0.05
  14566. }
  14567. },
  14568. back: {
  14569. height: math.unit(6, "feet"),
  14570. weight: math.unit(90, "lb"),
  14571. name: "Back",
  14572. image: {
  14573. source: "./media/characters/mirja/back.svg",
  14574. extra: 953 / 917,
  14575. bottom: 0.017
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "\"Incognito\"",
  14582. height: math.unit(3, "meters")
  14583. },
  14584. {
  14585. name: "Strolling Size",
  14586. height: math.unit(15, "km")
  14587. },
  14588. {
  14589. name: "Larger Strolling Size",
  14590. height: math.unit(400, "km")
  14591. },
  14592. {
  14593. name: "Preferred Size",
  14594. height: math.unit(5000, "km")
  14595. },
  14596. {
  14597. name: "True Size",
  14598. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(15, "feet"),
  14608. weight: math.unit(880, "kg"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/nightraver/front.svg",
  14612. extra: 2444 / 2160,
  14613. bottom: 0.027
  14614. }
  14615. },
  14616. back: {
  14617. height: math.unit(15, "feet"),
  14618. weight: math.unit(880, "kg"),
  14619. name: "Back",
  14620. image: {
  14621. source: "./media/characters/nightraver/back.svg",
  14622. extra: 2309 / 2180,
  14623. bottom: 0.005
  14624. }
  14625. },
  14626. sole: {
  14627. height: math.unit(2.878, "feet"),
  14628. name: "Sole",
  14629. image: {
  14630. source: "./media/characters/nightraver/sole.svg"
  14631. }
  14632. },
  14633. foot: {
  14634. height: math.unit(2.285, "feet"),
  14635. name: "Foot",
  14636. image: {
  14637. source: "./media/characters/nightraver/foot.svg"
  14638. }
  14639. },
  14640. maw: {
  14641. height: math.unit(2.67, "feet"),
  14642. name: "Maw",
  14643. image: {
  14644. source: "./media/characters/nightraver/maw.svg"
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Micro",
  14651. height: math.unit(1, "cm")
  14652. },
  14653. {
  14654. name: "Normal",
  14655. height: math.unit(15, "feet"),
  14656. default: true
  14657. },
  14658. {
  14659. name: "Macro",
  14660. height: math.unit(300, "feet")
  14661. },
  14662. {
  14663. name: "Megamacro",
  14664. height: math.unit(300, "miles")
  14665. },
  14666. {
  14667. name: "Gigamacro",
  14668. height: math.unit(10000, "miles")
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14674. {
  14675. side: {
  14676. height: math.unit(2, "inches"),
  14677. weight: math.unit(5, "grams"),
  14678. name: "Side",
  14679. image: {
  14680. source: "./media/characters/arc/side.svg"
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Micro",
  14687. height: math.unit(2, "inches"),
  14688. default: true
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(1.1938, "meters"),
  14697. weight: math.unit(54, "kg"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/nebula-shahar/front.svg",
  14701. extra: 1642 / 1436,
  14702. bottom: 0.06
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Megamicro",
  14709. height: math.unit(0.3, "mm")
  14710. },
  14711. {
  14712. name: "Micro",
  14713. height: math.unit(3, "cm")
  14714. },
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(138, "cm"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Macro",
  14722. height: math.unit(30, "m")
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(5.24, "feet"),
  14731. weight: math.unit(150, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/shayla/front.svg",
  14735. extra: 1512 / 1414,
  14736. bottom: 0.01
  14737. }
  14738. },
  14739. back: {
  14740. height: math.unit(5.24, "feet"),
  14741. weight: math.unit(150, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/shayla/back.svg",
  14745. extra: 1512 / 1414
  14746. }
  14747. },
  14748. hand: {
  14749. height: math.unit(0.7781496062992126, "feet"),
  14750. name: "Hand",
  14751. image: {
  14752. source: "./media/characters/shayla/hand.svg"
  14753. }
  14754. },
  14755. foot: {
  14756. height: math.unit(1.4206036745406823, "feet"),
  14757. name: "Foot",
  14758. image: {
  14759. source: "./media/characters/shayla/foot.svg"
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Micro",
  14766. height: math.unit(0.32, "feet")
  14767. },
  14768. {
  14769. name: "Normal",
  14770. height: math.unit(5.24, "feet"),
  14771. default: true
  14772. },
  14773. {
  14774. name: "Macro",
  14775. height: math.unit(492.12, "feet")
  14776. },
  14777. {
  14778. name: "Megamacro",
  14779. height: math.unit(186.41, "miles")
  14780. },
  14781. ]
  14782. ))
  14783. characterMakers.push(() => makeCharacter(
  14784. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14785. {
  14786. front: {
  14787. height: math.unit(2.2, "m"),
  14788. weight: math.unit(120, "kg"),
  14789. name: "Front",
  14790. image: {
  14791. source: "./media/characters/pia-jr/front.svg",
  14792. extra: 1000 / 970,
  14793. bottom: 0.035
  14794. }
  14795. },
  14796. hand: {
  14797. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14798. name: "Hand",
  14799. image: {
  14800. source: "./media/characters/pia-jr/hand.svg"
  14801. }
  14802. },
  14803. paw: {
  14804. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14805. name: "Paw",
  14806. image: {
  14807. source: "./media/characters/pia-jr/paw.svg"
  14808. }
  14809. },
  14810. },
  14811. [
  14812. {
  14813. name: "Micro",
  14814. height: math.unit(1.2, "cm")
  14815. },
  14816. {
  14817. name: "Normal",
  14818. height: math.unit(2.2, "m"),
  14819. default: true
  14820. },
  14821. {
  14822. name: "Macro",
  14823. height: math.unit(180, "m")
  14824. },
  14825. {
  14826. name: "Megamacro",
  14827. height: math.unit(420, "km")
  14828. },
  14829. ]
  14830. ))
  14831. characterMakers.push(() => makeCharacter(
  14832. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14833. {
  14834. front: {
  14835. height: math.unit(2, "m"),
  14836. weight: math.unit(115, "kg"),
  14837. name: "Front",
  14838. image: {
  14839. source: "./media/characters/pia-sr/front.svg",
  14840. extra: 760 / 730,
  14841. bottom: 0.015
  14842. }
  14843. },
  14844. back: {
  14845. height: math.unit(2, "m"),
  14846. weight: math.unit(115, "kg"),
  14847. name: "Back",
  14848. image: {
  14849. source: "./media/characters/pia-sr/back.svg",
  14850. extra: 760 / 730,
  14851. bottom: 0.01
  14852. }
  14853. },
  14854. hand: {
  14855. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14856. name: "Hand",
  14857. image: {
  14858. source: "./media/characters/pia-sr/hand.svg"
  14859. }
  14860. },
  14861. foot: {
  14862. height: math.unit(1.83, "feet"),
  14863. name: "Foot",
  14864. image: {
  14865. source: "./media/characters/pia-sr/foot.svg"
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Micro",
  14872. height: math.unit(88, "mm")
  14873. },
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(2, "m"),
  14877. default: true
  14878. },
  14879. {
  14880. name: "Macro",
  14881. height: math.unit(200, "m")
  14882. },
  14883. {
  14884. name: "Megamacro",
  14885. height: math.unit(420, "km")
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(8 + 2 / 12, "feet"),
  14894. weight: math.unit(300, "lb"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/kibibyte/front.svg",
  14898. extra: 2221 / 2098,
  14899. bottom: 0.04
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(8 + 2 / 12, "feet"),
  14907. default: true
  14908. },
  14909. {
  14910. name: "Socialable Macro",
  14911. height: math.unit(50, "feet")
  14912. },
  14913. {
  14914. name: "Macro",
  14915. height: math.unit(300, "feet")
  14916. },
  14917. {
  14918. name: "Megamacro",
  14919. height: math.unit(500, "miles")
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(6, "feet"),
  14928. weight: math.unit(150, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/felix/front.svg",
  14932. extra: 762 / 722,
  14933. bottom: 0.02
  14934. }
  14935. },
  14936. frontClothed: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front (Clothed)",
  14940. image: {
  14941. source: "./media/characters/felix/front-clothed.svg",
  14942. extra: 762 / 722,
  14943. bottom: 0.02
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(6 + 8 / 12, "feet"),
  14951. default: true
  14952. },
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(2600, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(450, "miles")
  14960. },
  14961. ]
  14962. ))
  14963. characterMakers.push(() => makeCharacter(
  14964. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14965. {
  14966. front: {
  14967. height: math.unit(6 + 1 / 12, "feet"),
  14968. weight: math.unit(250, "lb"),
  14969. name: "Front",
  14970. image: {
  14971. source: "./media/characters/tobo/front.svg",
  14972. extra: 608 / 586,
  14973. bottom: 0.023
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(6 + 1 / 12, "feet"),
  14978. weight: math.unit(250, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/tobo/back.svg",
  14982. extra: 608 / 586
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Nano",
  14989. height: math.unit(2, "nm")
  14990. },
  14991. {
  14992. name: "Megamicro",
  14993. height: math.unit(0.1, "mm")
  14994. },
  14995. {
  14996. name: "Micro",
  14997. height: math.unit(1, "inch"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Human-sized",
  15002. height: math.unit(6 + 1 / 12, "feet")
  15003. },
  15004. {
  15005. name: "Macro",
  15006. height: math.unit(250, "feet")
  15007. },
  15008. {
  15009. name: "Megamacro",
  15010. height: math.unit(75, "miles")
  15011. },
  15012. {
  15013. name: "Texas-sized",
  15014. height: math.unit(750, "miles")
  15015. },
  15016. {
  15017. name: "Teramacro",
  15018. height: math.unit(50000, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(269, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/danny-kapowsky/front.svg",
  15031. extra: 766 / 736,
  15032. bottom: 0.044
  15033. }
  15034. },
  15035. back: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(269, "lb"),
  15038. name: "Back",
  15039. image: {
  15040. source: "./media/characters/danny-kapowsky/back.svg",
  15041. extra: 797 / 760,
  15042. bottom: 0.025
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Macro",
  15049. height: math.unit(150, "feet"),
  15050. default: true
  15051. },
  15052. {
  15053. name: "Macro+",
  15054. height: math.unit(200, "feet")
  15055. },
  15056. {
  15057. name: "Macro++",
  15058. height: math.unit(300, "feet")
  15059. },
  15060. {
  15061. name: "Macro+++",
  15062. height: math.unit(400, "feet")
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15068. {
  15069. side: {
  15070. height: math.unit(6, "feet"),
  15071. weight: math.unit(170, "lb"),
  15072. name: "Side",
  15073. image: {
  15074. source: "./media/characters/finn/side.svg",
  15075. extra: 1953 / 1807,
  15076. bottom: 0.057
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Megamacro",
  15083. height: math.unit(14445, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15090. {
  15091. front: {
  15092. height: math.unit(5 + 6 / 12, "feet"),
  15093. weight: math.unit(125, "lb"),
  15094. name: "Front",
  15095. image: {
  15096. source: "./media/characters/roy/front.svg",
  15097. extra: 1,
  15098. bottom: 0.11
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Micro",
  15105. height: math.unit(3, "inches"),
  15106. default: true
  15107. },
  15108. {
  15109. name: "Normal",
  15110. height: math.unit(5 + 6 / 12, "feet")
  15111. },
  15112. {
  15113. name: "Lesser Macro",
  15114. height: math.unit(60, "feet")
  15115. },
  15116. {
  15117. name: "Greater Macro",
  15118. height: math.unit(120, "feet")
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(100, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/aevsivs/front.svg",
  15131. extra: 1,
  15132. bottom: 0.03
  15133. }
  15134. },
  15135. back: {
  15136. height: math.unit(6, "feet"),
  15137. weight: math.unit(100, "lb"),
  15138. name: "Back",
  15139. image: {
  15140. source: "./media/characters/aevsivs/back.svg"
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Micro",
  15147. height: math.unit(2, "inches"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(5, "feet")
  15153. },
  15154. ]
  15155. ))
  15156. characterMakers.push(() => makeCharacter(
  15157. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15158. {
  15159. front: {
  15160. height: math.unit(5 + 7 / 12, "feet"),
  15161. weight: math.unit(159, "lb"),
  15162. name: "Front",
  15163. image: {
  15164. source: "./media/characters/hildegard/front.svg",
  15165. extra: 289 / 269,
  15166. bottom: 7.63 / 297.8
  15167. }
  15168. },
  15169. back: {
  15170. height: math.unit(5 + 7 / 12, "feet"),
  15171. weight: math.unit(159, "lb"),
  15172. name: "Back",
  15173. image: {
  15174. source: "./media/characters/hildegard/back.svg",
  15175. extra: 280 / 260,
  15176. bottom: 2.3 / 282
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(5 + 7 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15190. {
  15191. bernard: {
  15192. height: math.unit(2 + 7 / 12, "feet"),
  15193. weight: math.unit(66, "lb"),
  15194. name: "Bernard",
  15195. rename: true,
  15196. image: {
  15197. source: "./media/characters/bernard-wilder/bernard.svg",
  15198. extra: 192 / 128,
  15199. bottom: 0.05
  15200. }
  15201. },
  15202. wilder: {
  15203. height: math.unit(5 + 8 / 12, "feet"),
  15204. weight: math.unit(143, "lb"),
  15205. name: "Wilder",
  15206. rename: true,
  15207. image: {
  15208. source: "./media/characters/bernard-wilder/wilder.svg",
  15209. extra: 361 / 312,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(2 + 7 / 12, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15224. {
  15225. anthro: {
  15226. height: math.unit(6 + 1 / 12, "feet"),
  15227. weight: math.unit(155, "lb"),
  15228. name: "Anthro",
  15229. image: {
  15230. source: "./media/characters/hearth/anthro.svg",
  15231. extra: 1178/1136,
  15232. bottom: 28/1206
  15233. }
  15234. },
  15235. feral: {
  15236. height: math.unit(3.78, "feet"),
  15237. weight: math.unit(35, "kg"),
  15238. name: "Feral",
  15239. image: {
  15240. source: "./media/characters/hearth/feral.svg",
  15241. extra: 153 / 135,
  15242. bottom: 0.03
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(6 + 1 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(6, "feet"),
  15259. weight: math.unit(182, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/ingrid/front.svg",
  15263. extra: 294 / 268,
  15264. bottom: 0.027
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(6, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15278. {
  15279. eevee: {
  15280. height: math.unit(2 + 10 / 12, "feet"),
  15281. weight: math.unit(86, "lb"),
  15282. name: "Malgam",
  15283. image: {
  15284. source: "./media/characters/malgam/eevee.svg",
  15285. extra: 952/784,
  15286. bottom: 38/990
  15287. }
  15288. },
  15289. sylveon: {
  15290. height: math.unit(4, "feet"),
  15291. weight: math.unit(101, "lb"),
  15292. name: "Future Malgam",
  15293. rename: true,
  15294. image: {
  15295. source: "./media/characters/malgam/sylveon.svg",
  15296. extra: 371 / 325,
  15297. bottom: 0.015
  15298. }
  15299. },
  15300. gigantamax: {
  15301. height: math.unit(50, "feet"),
  15302. name: "Gigantamax Malgam",
  15303. rename: true,
  15304. image: {
  15305. source: "./media/characters/malgam/gigantamax.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(2 + 10 / 12, "feet"),
  15313. default: true
  15314. },
  15315. ]
  15316. ))
  15317. characterMakers.push(() => makeCharacter(
  15318. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15319. {
  15320. front: {
  15321. height: math.unit(5 + 11 / 12, "feet"),
  15322. weight: math.unit(188, "lb"),
  15323. name: "Front",
  15324. image: {
  15325. source: "./media/characters/fleur/front.svg",
  15326. extra: 309 / 283,
  15327. bottom: 0.007
  15328. }
  15329. },
  15330. },
  15331. [
  15332. {
  15333. name: "Normal",
  15334. height: math.unit(5 + 11 / 12, "feet"),
  15335. default: true
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(5 + 4 / 12, "feet"),
  15344. weight: math.unit(122, "lb"),
  15345. name: "Front",
  15346. image: {
  15347. source: "./media/characters/jude/front.svg",
  15348. extra: 288 / 273,
  15349. bottom: 0.03
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(5 + 4 / 12, "feet"),
  15357. default: true
  15358. },
  15359. ]
  15360. ))
  15361. characterMakers.push(() => makeCharacter(
  15362. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15363. {
  15364. front: {
  15365. height: math.unit(5 + 11 / 12, "feet"),
  15366. weight: math.unit(190, "lb"),
  15367. name: "Front",
  15368. image: {
  15369. source: "./media/characters/seara/front.svg",
  15370. extra: 1,
  15371. bottom: 0.05
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Normal",
  15378. height: math.unit(5 + 11 / 12, "feet"),
  15379. default: true
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(16 + 5 / 12, "feet"),
  15388. weight: math.unit(524, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/caspian/front.svg",
  15392. extra: 1,
  15393. bottom: 0.04
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(16 + 5 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(5 + 7 / 12, "feet"),
  15410. weight: math.unit(170, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/mika/front.svg",
  15414. extra: 1,
  15415. bottom: 0.016
  15416. }
  15417. },
  15418. },
  15419. [
  15420. {
  15421. name: "Normal",
  15422. height: math.unit(5 + 7 / 12, "feet"),
  15423. default: true
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6 + 2 / 12, "feet"),
  15432. weight: math.unit(268, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/sol/front.svg",
  15436. extra: 247 / 231,
  15437. bottom: 0.05
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(6 + 2 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15451. {
  15452. buizel: {
  15453. height: math.unit(2 + 5 / 12, "feet"),
  15454. weight: math.unit(87, "lb"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/umiko/buizel.svg",
  15458. extra: 172 / 157,
  15459. bottom: 0.01
  15460. },
  15461. form: "buizel",
  15462. default: true
  15463. },
  15464. floatzel: {
  15465. height: math.unit(5 + 9 / 12, "feet"),
  15466. weight: math.unit(250, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/umiko/floatzel.svg",
  15470. extra: 1076/1006,
  15471. bottom: 15/1091
  15472. },
  15473. form: "floatzel",
  15474. default: true
  15475. },
  15476. },
  15477. [
  15478. {
  15479. name: "Normal",
  15480. height: math.unit(2 + 5 / 12, "feet"),
  15481. form: "buizel",
  15482. default: true
  15483. },
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(5 + 9 / 12, "feet"),
  15487. form: "floatzel",
  15488. default: true
  15489. },
  15490. ],
  15491. {
  15492. "buizel": {
  15493. name: "Buizel"
  15494. },
  15495. "floatzel": {
  15496. name: "Floatzel",
  15497. default: true
  15498. }
  15499. }
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(6 + 2 / 12, "feet"),
  15506. weight: math.unit(146, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/iliac/front.svg",
  15510. extra: 389 / 365,
  15511. bottom: 0.035
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Normal",
  15518. height: math.unit(6 + 2 / 12, "feet"),
  15519. default: true
  15520. },
  15521. ]
  15522. ))
  15523. characterMakers.push(() => makeCharacter(
  15524. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15525. {
  15526. front: {
  15527. height: math.unit(6, "feet"),
  15528. weight: math.unit(170, "lb"),
  15529. name: "Front",
  15530. image: {
  15531. source: "./media/characters/topaz/front.svg",
  15532. extra: 317 / 303,
  15533. bottom: 0.055
  15534. }
  15535. },
  15536. },
  15537. [
  15538. {
  15539. name: "Normal",
  15540. height: math.unit(6, "feet"),
  15541. default: true
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(5 + 11 / 12, "feet"),
  15550. weight: math.unit(144, "lb"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/gabriel/front.svg",
  15554. extra: 285 / 262,
  15555. bottom: 0.004
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(5 + 11 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15569. {
  15570. side: {
  15571. height: math.unit(6 + 5 / 12, "feet"),
  15572. weight: math.unit(300, "lb"),
  15573. name: "Side",
  15574. image: {
  15575. source: "./media/characters/tempest-suicune/side.svg",
  15576. extra: 195 / 154,
  15577. bottom: 0.04
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(6 + 5 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(7 + 2 / 12, "feet"),
  15594. weight: math.unit(322, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/vulcan/front.svg",
  15598. extra: 154 / 147,
  15599. bottom: 0.04
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(7 + 2 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5 + 10 / 12, "feet"),
  15616. weight: math.unit(264, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/gault/front.svg",
  15620. extra: 161 / 140,
  15621. bottom: 0.028
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 10 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15635. {
  15636. front: {
  15637. height: math.unit(6, "feet"),
  15638. weight: math.unit(150, "lb"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/shard/front.svg",
  15642. extra: 273 / 238,
  15643. bottom: 0.02
  15644. }
  15645. },
  15646. },
  15647. [
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(3 + 6 / 12, "feet"),
  15651. default: true
  15652. },
  15653. ]
  15654. ))
  15655. characterMakers.push(() => makeCharacter(
  15656. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15657. {
  15658. front: {
  15659. height: math.unit(5 + 11 / 12, "feet"),
  15660. weight: math.unit(146, "lb"),
  15661. name: "Front",
  15662. image: {
  15663. source: "./media/characters/ashe/front.svg",
  15664. extra: 400 / 373,
  15665. bottom: 0.01
  15666. }
  15667. },
  15668. },
  15669. [
  15670. {
  15671. name: "Normal",
  15672. height: math.unit(5 + 11 / 12, "feet"),
  15673. default: true
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(5 + 5 / 12, "feet"),
  15682. weight: math.unit(135, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/beatrix/front.svg",
  15686. extra: 392 / 379,
  15687. bottom: 0.01
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(6, "feet"),
  15695. default: true
  15696. },
  15697. ]
  15698. ))
  15699. characterMakers.push(() => makeCharacter(
  15700. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15701. {
  15702. front: {
  15703. height: math.unit(6 + 2/12, "feet"),
  15704. weight: math.unit(135, "lb"),
  15705. name: "Front",
  15706. image: {
  15707. source: "./media/characters/ignatius/front.svg",
  15708. extra: 1380/1259,
  15709. bottom: 27/1407
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Normal",
  15716. height: math.unit(6 + 2/12, "feet"),
  15717. default: true
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6 + 2 / 12, "feet"),
  15726. weight: math.unit(138, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/mei-li/front.svg",
  15730. extra: 237 / 229,
  15731. bottom: 0.03
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Normal",
  15738. height: math.unit(6 + 2 / 12, "feet"),
  15739. default: true
  15740. },
  15741. ]
  15742. ))
  15743. characterMakers.push(() => makeCharacter(
  15744. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15745. {
  15746. front: {
  15747. height: math.unit(2 + 4 / 12, "feet"),
  15748. weight: math.unit(62, "lb"),
  15749. name: "Front",
  15750. image: {
  15751. source: "./media/characters/puru/front.svg",
  15752. extra: 206 / 149,
  15753. bottom: 0.06
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(2 + 4 / 12, "feet"),
  15761. default: true
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15767. {
  15768. anthro: {
  15769. height: math.unit(5 + 8/12, "feet"),
  15770. weight: math.unit(200, "lb"),
  15771. energyNeed: math.unit(2000, "kcal"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/kee/anthro.svg",
  15775. extra: 3251/3184,
  15776. bottom: 250/3501
  15777. }
  15778. },
  15779. taur: {
  15780. height: math.unit(11, "feet"),
  15781. weight: math.unit(500, "lb"),
  15782. energyNeed: math.unit(5000, "kcal"),
  15783. name: "Taur",
  15784. image: {
  15785. source: "./media/characters/kee/taur.svg",
  15786. extra: 1362/1320,
  15787. bottom: 83/1445
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(5 + 8/12, "feet"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(35, "feet")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15805. {
  15806. anthro: {
  15807. height: math.unit(7, "feet"),
  15808. weight: math.unit(190, "lb"),
  15809. name: "Anthro",
  15810. image: {
  15811. source: "./media/characters/cobalt-dracha/anthro.svg",
  15812. extra: 231 / 225,
  15813. bottom: 0.04
  15814. }
  15815. },
  15816. feral: {
  15817. height: math.unit(9 + 7 / 12, "feet"),
  15818. weight: math.unit(294, "lb"),
  15819. name: "Feral",
  15820. image: {
  15821. source: "./media/characters/cobalt-dracha/feral.svg",
  15822. extra: 692 / 633,
  15823. bottom: 0.05
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(7, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15837. {
  15838. fallen: {
  15839. height: math.unit(11 + 8 / 12, "feet"),
  15840. weight: math.unit(485, "lb"),
  15841. name: "Java (Fallen)",
  15842. rename: true,
  15843. image: {
  15844. source: "./media/characters/java/fallen.svg",
  15845. extra: 226 / 208,
  15846. bottom: 0.005
  15847. }
  15848. },
  15849. godkin: {
  15850. height: math.unit(10 + 6 / 12, "feet"),
  15851. weight: math.unit(328, "lb"),
  15852. name: "Java (Godkin)",
  15853. rename: true,
  15854. image: {
  15855. source: "./media/characters/java/godkin.svg",
  15856. extra: 1104/1068,
  15857. bottom: 36/1140
  15858. }
  15859. },
  15860. },
  15861. [
  15862. {
  15863. name: "Normal",
  15864. height: math.unit(11 + 8 / 12, "feet"),
  15865. default: true
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(5 + 9 / 12, "feet"),
  15874. weight: math.unit(170, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/purna/front.svg",
  15878. extra: 239 / 229,
  15879. bottom: 0.01
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(5 + 9 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5 + 9 / 12, "feet"),
  15896. weight: math.unit(142, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/kuva/front.svg",
  15900. extra: 281 / 271,
  15901. bottom: 0.006
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(5 + 9 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15915. {
  15916. anthro: {
  15917. height: math.unit(9 + 2 / 12, "feet"),
  15918. weight: math.unit(270, "lb"),
  15919. name: "Anthro",
  15920. image: {
  15921. source: "./media/characters/embra/anthro.svg",
  15922. extra: 200 / 187,
  15923. bottom: 0.02
  15924. }
  15925. },
  15926. feral: {
  15927. height: math.unit(18 + 8 / 12, "feet"),
  15928. weight: math.unit(576, "lb"),
  15929. name: "Feral",
  15930. image: {
  15931. source: "./media/characters/embra/feral.svg",
  15932. extra: 152 / 137,
  15933. bottom: 0.037
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(9 + 2 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15947. {
  15948. anthro: {
  15949. height: math.unit(10 + 9 / 12, "feet"),
  15950. weight: math.unit(224, "lb"),
  15951. name: "Anthro",
  15952. image: {
  15953. source: "./media/characters/grottos/anthro.svg",
  15954. extra: 350 / 332,
  15955. bottom: 0.045
  15956. }
  15957. },
  15958. feral: {
  15959. height: math.unit(20 + 7 / 12, "feet"),
  15960. weight: math.unit(629, "lb"),
  15961. name: "Feral",
  15962. image: {
  15963. source: "./media/characters/grottos/feral.svg",
  15964. extra: 207 / 190,
  15965. bottom: 0.05
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Normal",
  15972. height: math.unit(10 + 9 / 12, "feet"),
  15973. default: true
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15979. {
  15980. anthro: {
  15981. height: math.unit(9 + 6 / 12, "feet"),
  15982. weight: math.unit(298, "lb"),
  15983. name: "Anthro",
  15984. image: {
  15985. source: "./media/characters/frifna/anthro.svg",
  15986. extra: 282 / 269,
  15987. bottom: 0.015
  15988. }
  15989. },
  15990. feral: {
  15991. height: math.unit(16 + 2 / 12, "feet"),
  15992. weight: math.unit(624, "lb"),
  15993. name: "Feral",
  15994. image: {
  15995. source: "./media/characters/frifna/feral.svg"
  15996. }
  15997. },
  15998. },
  15999. [
  16000. {
  16001. name: "Normal",
  16002. height: math.unit(9 + 6 / 12, "feet"),
  16003. default: true
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6 + 2 / 12, "feet"),
  16012. weight: math.unit(168, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/elise/front.svg",
  16016. extra: 276 / 271
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(6 + 2 / 12, "feet"),
  16024. default: true
  16025. },
  16026. ]
  16027. ))
  16028. characterMakers.push(() => makeCharacter(
  16029. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16030. {
  16031. front: {
  16032. height: math.unit(5 + 10 / 12, "feet"),
  16033. weight: math.unit(210, "lb"),
  16034. name: "Front",
  16035. image: {
  16036. source: "./media/characters/glade/front.svg",
  16037. extra: 258 / 247,
  16038. bottom: 0.008
  16039. }
  16040. },
  16041. },
  16042. [
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(5 + 10 / 12, "feet"),
  16046. default: true
  16047. },
  16048. ]
  16049. ))
  16050. characterMakers.push(() => makeCharacter(
  16051. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16052. {
  16053. front: {
  16054. height: math.unit(5 + 10 / 12, "feet"),
  16055. weight: math.unit(129, "lb"),
  16056. name: "Front",
  16057. image: {
  16058. source: "./media/characters/rina/front.svg",
  16059. extra: 266 / 255,
  16060. bottom: 0.005
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(5 + 10 / 12, "feet"),
  16068. default: true
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6 + 1 / 12, "feet"),
  16077. weight: math.unit(192, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/veronica/front.svg",
  16081. extra: 319 / 309,
  16082. bottom: 0.005
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Normal",
  16089. height: math.unit(6 + 1 / 12, "feet"),
  16090. default: true
  16091. },
  16092. ]
  16093. ))
  16094. characterMakers.push(() => makeCharacter(
  16095. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16096. {
  16097. front: {
  16098. height: math.unit(9 + 3 / 12, "feet"),
  16099. weight: math.unit(1100, "lb"),
  16100. name: "Front",
  16101. image: {
  16102. source: "./media/characters/braxton/front.svg",
  16103. extra: 1057 / 984,
  16104. bottom: 0.05
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Normal",
  16111. height: math.unit(9 + 3 / 12, "feet")
  16112. },
  16113. {
  16114. name: "Giant",
  16115. height: math.unit(300, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(700, "feet")
  16121. },
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(6000, "feet")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6 + 7 / 12, "feet"),
  16133. weight: math.unit(150, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/blue-feyonics/front.svg",
  16137. extra: 1403 / 1306,
  16138. bottom: 0.047
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(6 + 7 / 12, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(1.8, "meters"),
  16155. weight: math.unit(60, "kg"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/maxwell/front.svg",
  16159. extra: 2060 / 1873
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Micro",
  16166. height: math.unit(1, "mm")
  16167. },
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(1.8, "meter"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(30, "meters")
  16176. },
  16177. {
  16178. name: "Megamacro",
  16179. height: math.unit(10, "km")
  16180. },
  16181. ]
  16182. ))
  16183. characterMakers.push(() => makeCharacter(
  16184. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16185. {
  16186. front: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(150, "lb"),
  16189. name: "Front",
  16190. image: {
  16191. source: "./media/characters/jack/front.svg",
  16192. extra: 1754 / 1640,
  16193. bottom: 0.01
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(80000, "feet"),
  16201. default: true
  16202. },
  16203. {
  16204. name: "Max size",
  16205. height: math.unit(10, "lightyears")
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16211. {
  16212. urban: {
  16213. height: math.unit(5, "feet"),
  16214. weight: math.unit(240, "lb"),
  16215. name: "Urban",
  16216. image: {
  16217. source: "./media/characters/cafat/urban.svg",
  16218. extra: 1223/1126,
  16219. bottom: 205/1428
  16220. }
  16221. },
  16222. summer: {
  16223. height: math.unit(5, "feet"),
  16224. weight: math.unit(240, "lb"),
  16225. name: "Summer",
  16226. image: {
  16227. source: "./media/characters/cafat/summer.svg",
  16228. extra: 1223/1126,
  16229. bottom: 205/1428
  16230. }
  16231. },
  16232. winter: {
  16233. height: math.unit(5, "feet"),
  16234. weight: math.unit(240, "lb"),
  16235. name: "Winter",
  16236. image: {
  16237. source: "./media/characters/cafat/winter.svg",
  16238. extra: 1223/1126,
  16239. bottom: 205/1428
  16240. }
  16241. },
  16242. lingerie: {
  16243. height: math.unit(5, "feet"),
  16244. weight: math.unit(240, "lb"),
  16245. name: "Lingerie",
  16246. image: {
  16247. source: "./media/characters/cafat/lingerie.svg",
  16248. extra: 1223/1126,
  16249. bottom: 205/1428
  16250. }
  16251. },
  16252. upright: {
  16253. height: math.unit(6.3, "feet"),
  16254. weight: math.unit(240, "lb"),
  16255. name: "Upright",
  16256. image: {
  16257. source: "./media/characters/cafat/upright.svg",
  16258. bottom: 0.01
  16259. }
  16260. },
  16261. uprightFull: {
  16262. height: math.unit(6.3, "feet"),
  16263. weight: math.unit(240, "lb"),
  16264. name: "Upright (Full)",
  16265. image: {
  16266. source: "./media/characters/cafat/upright-full.svg",
  16267. bottom: 0.01
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Small",
  16274. height: math.unit(5, "feet"),
  16275. default: true
  16276. },
  16277. {
  16278. name: "Large",
  16279. height: math.unit(13, "feet")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16285. {
  16286. front: {
  16287. height: math.unit(6, "feet"),
  16288. weight: math.unit(150, "lb"),
  16289. name: "Front",
  16290. image: {
  16291. source: "./media/characters/verin-raharra/front.svg",
  16292. extra: 5019 / 4835,
  16293. bottom: 0.023
  16294. }
  16295. },
  16296. },
  16297. [
  16298. {
  16299. name: "Normal",
  16300. height: math.unit(7 + 5 / 12, "feet"),
  16301. default: true
  16302. },
  16303. {
  16304. name: "Upsized",
  16305. height: math.unit(20, "feet")
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(7, "feet"),
  16314. weight: math.unit(230, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/nakata/front.svg",
  16318. extra: 1.005,
  16319. bottom: 0.01
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(7, "feet"),
  16327. default: true
  16328. },
  16329. {
  16330. name: "Big",
  16331. height: math.unit(14, "feet")
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(400, "feet")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(4.91, "feet"),
  16344. weight: math.unit(100, "lb"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/lily/front.svg",
  16348. extra: 1585 / 1415,
  16349. bottom: 0.02
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Normal",
  16356. height: math.unit(4.91, "feet"),
  16357. default: true
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16363. {
  16364. laying: {
  16365. height: math.unit(4 + 4 / 12, "feet"),
  16366. weight: math.unit(600, "lb"),
  16367. name: "Laying",
  16368. image: {
  16369. source: "./media/characters/sheila/laying.svg",
  16370. extra: 1333 / 1265,
  16371. bottom: 0.16
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(4 + 4 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(6, "feet"),
  16388. weight: math.unit(190, "lb"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/sax/front.svg",
  16392. extra: 1187 / 973,
  16393. bottom: 0.042
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Micro",
  16400. height: math.unit(4, "inches"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6, "feet"),
  16410. weight: math.unit(150, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/pandora/front.svg",
  16414. extra: 2720 / 2556,
  16415. bottom: 0.015
  16416. }
  16417. },
  16418. back: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(150, "lb"),
  16421. name: "Back",
  16422. image: {
  16423. source: "./media/characters/pandora/back.svg",
  16424. extra: 2720 / 2556,
  16425. bottom: 0.01
  16426. }
  16427. },
  16428. beans: {
  16429. height: math.unit(6 / 8, "feet"),
  16430. name: "Beans",
  16431. image: {
  16432. source: "./media/characters/pandora/beans.svg"
  16433. }
  16434. },
  16435. collar: {
  16436. height: math.unit(0.31, "feet"),
  16437. name: "Collar",
  16438. image: {
  16439. source: "./media/characters/pandora/collar.svg"
  16440. }
  16441. },
  16442. skirt: {
  16443. height: math.unit(6, "feet"),
  16444. weight: math.unit(150, "lb"),
  16445. name: "Skirt",
  16446. image: {
  16447. source: "./media/characters/pandora/skirt.svg",
  16448. extra: 1622 / 1525,
  16449. bottom: 0.015
  16450. }
  16451. },
  16452. hoodie: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Hoodie",
  16456. image: {
  16457. source: "./media/characters/pandora/hoodie.svg",
  16458. extra: 1622 / 1525,
  16459. bottom: 0.015
  16460. }
  16461. },
  16462. casual: {
  16463. height: math.unit(6, "feet"),
  16464. weight: math.unit(150, "lb"),
  16465. name: "Casual",
  16466. image: {
  16467. source: "./media/characters/pandora/casual.svg",
  16468. extra: 1622 / 1525,
  16469. bottom: 0.015
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(6, "feet")
  16477. },
  16478. {
  16479. name: "Big Steppy",
  16480. height: math.unit(1, "km"),
  16481. default: true
  16482. },
  16483. {
  16484. name: "Galactic Steppy",
  16485. height: math.unit(2, "gigameters")
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16491. {
  16492. side: {
  16493. height: math.unit(10, "feet"),
  16494. weight: math.unit(800, "kg"),
  16495. name: "Side",
  16496. image: {
  16497. source: "./media/characters/venio-darcony/side.svg",
  16498. extra: 1373 / 1003,
  16499. bottom: 0.037
  16500. }
  16501. },
  16502. front: {
  16503. height: math.unit(19, "feet"),
  16504. weight: math.unit(800, "kg"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/venio-darcony/front.svg"
  16508. }
  16509. },
  16510. back: {
  16511. height: math.unit(19, "feet"),
  16512. weight: math.unit(800, "kg"),
  16513. name: "Back",
  16514. image: {
  16515. source: "./media/characters/venio-darcony/back.svg"
  16516. }
  16517. },
  16518. sideNsfw: {
  16519. height: math.unit(10, "feet"),
  16520. weight: math.unit(800, "kg"),
  16521. name: "Side (NSFW)",
  16522. image: {
  16523. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16524. extra: 1373 / 1003,
  16525. bottom: 0.037
  16526. }
  16527. },
  16528. frontNsfw: {
  16529. height: math.unit(19, "feet"),
  16530. weight: math.unit(800, "kg"),
  16531. name: "Front (NSFW)",
  16532. image: {
  16533. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16534. }
  16535. },
  16536. backNsfw: {
  16537. height: math.unit(19, "feet"),
  16538. weight: math.unit(800, "kg"),
  16539. name: "Back (NSFW)",
  16540. image: {
  16541. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16542. }
  16543. },
  16544. sideArmored: {
  16545. height: math.unit(10, "feet"),
  16546. weight: math.unit(800, "kg"),
  16547. name: "Side (Armored)",
  16548. image: {
  16549. source: "./media/characters/venio-darcony/side-armored.svg",
  16550. extra: 1373 / 1003,
  16551. bottom: 0.037
  16552. }
  16553. },
  16554. frontArmored: {
  16555. height: math.unit(19, "feet"),
  16556. weight: math.unit(900, "kg"),
  16557. name: "Front (Armored)",
  16558. image: {
  16559. source: "./media/characters/venio-darcony/front-armored.svg"
  16560. }
  16561. },
  16562. backArmored: {
  16563. height: math.unit(19, "feet"),
  16564. weight: math.unit(900, "kg"),
  16565. name: "Back (Armored)",
  16566. image: {
  16567. source: "./media/characters/venio-darcony/back-armored.svg"
  16568. }
  16569. },
  16570. sword: {
  16571. height: math.unit(10, "feet"),
  16572. weight: math.unit(50, "lb"),
  16573. name: "Sword",
  16574. image: {
  16575. source: "./media/characters/venio-darcony/sword.svg"
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(10, "feet")
  16583. },
  16584. {
  16585. name: "Macro",
  16586. height: math.unit(130, "feet"),
  16587. default: true
  16588. },
  16589. {
  16590. name: "Macro+",
  16591. height: math.unit(240, "feet")
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16597. {
  16598. front: {
  16599. height: math.unit(6, "feet"),
  16600. weight: math.unit(150, "lb"),
  16601. name: "Front",
  16602. image: {
  16603. source: "./media/characters/veski/front.svg",
  16604. extra: 1299 / 1225,
  16605. bottom: 0.04
  16606. }
  16607. },
  16608. back: {
  16609. height: math.unit(6, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Back",
  16612. image: {
  16613. source: "./media/characters/veski/back.svg",
  16614. extra: 1299 / 1225,
  16615. bottom: 0.008
  16616. }
  16617. },
  16618. maw: {
  16619. height: math.unit(1.5 * 1.21, "feet"),
  16620. name: "Maw",
  16621. image: {
  16622. source: "./media/characters/veski/maw.svg"
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Macro",
  16629. height: math.unit(2, "km"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(5 + 7 / 12, "feet"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/isabelle/front.svg",
  16642. extra: 2130 / 1976,
  16643. bottom: 0.05
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Supermicro",
  16650. height: math.unit(10, "micrometers")
  16651. },
  16652. {
  16653. name: "Micro",
  16654. height: math.unit(1, "inch")
  16655. },
  16656. {
  16657. name: "Tiny",
  16658. height: math.unit(5, "inches")
  16659. },
  16660. {
  16661. name: "Standard",
  16662. height: math.unit(5 + 7 / 12, "inches")
  16663. },
  16664. {
  16665. name: "Macro",
  16666. height: math.unit(80, "meters"),
  16667. default: true
  16668. },
  16669. {
  16670. name: "Megamacro",
  16671. height: math.unit(250, "meters")
  16672. },
  16673. {
  16674. name: "Gigamacro",
  16675. height: math.unit(5, "km")
  16676. },
  16677. {
  16678. name: "Cosmic",
  16679. height: math.unit(2.5e6, "miles")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(6, "feet"),
  16688. weight: math.unit(150, "lb"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/hanzo/front.svg",
  16692. extra: 374 / 344,
  16693. bottom: 0.02
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(8, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(7, "feet"),
  16710. weight: math.unit(130, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/anna/front.svg",
  16714. extra: 169 / 145,
  16715. bottom: 0.06
  16716. }
  16717. },
  16718. full: {
  16719. height: math.unit(4.96, "feet"),
  16720. weight: math.unit(220, "lb"),
  16721. name: "Full",
  16722. image: {
  16723. source: "./media/characters/anna/full.svg",
  16724. extra: 138 / 114,
  16725. bottom: 0.15
  16726. }
  16727. },
  16728. tongue: {
  16729. height: math.unit(2.53, "feet"),
  16730. name: "Tongue",
  16731. image: {
  16732. source: "./media/characters/anna/tongue.svg"
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(7, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(7, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/ian-corvid/front.svg",
  16753. extra: 150 / 142,
  16754. bottom: 0.02
  16755. }
  16756. },
  16757. back: {
  16758. height: math.unit(7, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Back",
  16761. image: {
  16762. source: "./media/characters/ian-corvid/back.svg",
  16763. extra: 150 / 143,
  16764. bottom: 0.01
  16765. }
  16766. },
  16767. stomping: {
  16768. height: math.unit(7, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Stomping",
  16771. image: {
  16772. source: "./media/characters/ian-corvid/stomping.svg",
  16773. extra: 76 / 72
  16774. }
  16775. },
  16776. sitting: {
  16777. height: math.unit(7 / 1.8, "feet"),
  16778. weight: math.unit(150, "lb"),
  16779. name: "Sitting",
  16780. image: {
  16781. source: "./media/characters/ian-corvid/sitting.svg",
  16782. extra: 1400 / 1269,
  16783. bottom: 0.15
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Tiny Microw",
  16790. height: math.unit(1, "inch")
  16791. },
  16792. {
  16793. name: "Microw",
  16794. height: math.unit(6, "inches")
  16795. },
  16796. {
  16797. name: "Crow",
  16798. height: math.unit(7 + 1 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Macrow",
  16803. height: math.unit(176, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 7 / 12, "feet"),
  16812. weight: math.unit(147, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/natalie-kellon/front.svg",
  16816. extra: 1214 / 1141,
  16817. bottom: 0.02
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Micro",
  16824. height: math.unit(1 / 16, "inch")
  16825. },
  16826. {
  16827. name: "Tiny",
  16828. height: math.unit(4, "inches")
  16829. },
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(5 + 7 / 12, "feet"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Amazon",
  16837. height: math.unit(12, "feet")
  16838. },
  16839. {
  16840. name: "Giantess",
  16841. height: math.unit(160, "meters")
  16842. },
  16843. {
  16844. name: "Titaness",
  16845. height: math.unit(800, "meters")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6, "feet"),
  16854. weight: math.unit(150, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/alluria/front.svg",
  16858. extra: 806 / 738,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. side: {
  16863. height: math.unit(6, "feet"),
  16864. weight: math.unit(150, "lb"),
  16865. name: "Side",
  16866. image: {
  16867. source: "./media/characters/alluria/side.svg",
  16868. extra: 800 / 750,
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(150, "lb"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/alluria/back.svg",
  16877. extra: 806 / 738,
  16878. }
  16879. },
  16880. frontMaid: {
  16881. height: math.unit(6, "feet"),
  16882. weight: math.unit(150, "lb"),
  16883. name: "Front (Maid)",
  16884. image: {
  16885. source: "./media/characters/alluria/front-maid.svg",
  16886. extra: 806 / 738,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. sideMaid: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(150, "lb"),
  16893. name: "Side (Maid)",
  16894. image: {
  16895. source: "./media/characters/alluria/side-maid.svg",
  16896. extra: 800 / 750,
  16897. bottom: 0.005
  16898. }
  16899. },
  16900. backMaid: {
  16901. height: math.unit(6, "feet"),
  16902. weight: math.unit(150, "lb"),
  16903. name: "Back (Maid)",
  16904. image: {
  16905. source: "./media/characters/alluria/back-maid.svg",
  16906. extra: 806 / 738,
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Micro",
  16913. height: math.unit(6, "inches"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(150, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/kyle/front.svg",
  16927. extra: 1069 / 962,
  16928. bottom: 77.228 / 1727.45
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(150, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6, "feet"),
  16945. weight: math.unit(300, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/duncan/front.svg",
  16949. extra: 1650 / 1482,
  16950. bottom: 0.05
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(100, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(5 + 4 / 12, "feet"),
  16967. weight: math.unit(220, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/memory/front.svg",
  16971. extra: 3641 / 3545,
  16972. bottom: 0.03
  16973. }
  16974. },
  16975. back: {
  16976. height: math.unit(5 + 4 / 12, "feet"),
  16977. weight: math.unit(220, "lb"),
  16978. name: "Back",
  16979. image: {
  16980. source: "./media/characters/memory/back.svg",
  16981. extra: 3641 / 3545,
  16982. bottom: 0.025
  16983. }
  16984. },
  16985. frontSkirt: {
  16986. height: math.unit(5 + 4 / 12, "feet"),
  16987. weight: math.unit(220, "lb"),
  16988. name: "Front (Skirt)",
  16989. image: {
  16990. source: "./media/characters/memory/front-skirt.svg",
  16991. extra: 3641 / 3545,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. frontDress: {
  16996. height: math.unit(5 + 4 / 12, "feet"),
  16997. weight: math.unit(220, "lb"),
  16998. name: "Front (Dress)",
  16999. image: {
  17000. source: "./media/characters/memory/front-dress.svg",
  17001. extra: 3641 / 3545,
  17002. bottom: 0.03
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Micro",
  17009. height: math.unit(6, "inches"),
  17010. default: true
  17011. },
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(5 + 4 / 12, "feet")
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(4 + 11 / 12, "feet"),
  17023. weight: math.unit(100, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/luno/front.svg",
  17027. extra: 1535 / 1487,
  17028. bottom: 0.03
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Micro",
  17035. height: math.unit(3, "inches")
  17036. },
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(4 + 11 / 12, "feet"),
  17040. default: true
  17041. },
  17042. {
  17043. name: "Macro",
  17044. height: math.unit(300, "feet")
  17045. },
  17046. {
  17047. name: "Megamacro",
  17048. height: math.unit(700, "miles")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(6 + 2 / 12, "feet"),
  17057. weight: math.unit(170, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/jamesy/front.svg",
  17061. extra: 440 / 382,
  17062. bottom: 0.005
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Micro",
  17069. height: math.unit(3, "inches")
  17070. },
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(6 + 2 / 12, "feet"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(300, "feet")
  17079. },
  17080. {
  17081. name: "Megamacro",
  17082. height: math.unit(700, "miles")
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(160, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/mark/front.svg",
  17095. extra: 3300 / 3100,
  17096. bottom: 136.42 / 3440.47
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Macro",
  17103. height: math.unit(120, "meters")
  17104. },
  17105. {
  17106. name: "Bigger Macro",
  17107. height: math.unit(350, "meters")
  17108. },
  17109. {
  17110. name: "Megamacro",
  17111. height: math.unit(8, "km"),
  17112. default: true
  17113. },
  17114. {
  17115. name: "Continental",
  17116. height: math.unit(4550, "km")
  17117. },
  17118. {
  17119. name: "Planetary",
  17120. height: math.unit(65000, "km")
  17121. },
  17122. ]
  17123. ))
  17124. characterMakers.push(() => makeCharacter(
  17125. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17126. {
  17127. front: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(400, "lb"),
  17130. name: "Front",
  17131. image: {
  17132. source: "./media/characters/mac/front.svg",
  17133. extra: 1048 / 987.7,
  17134. bottom: 60 / 1107.6,
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(500, "feet"),
  17142. default: true
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17148. {
  17149. front: {
  17150. height: math.unit(5 + 2 / 12, "feet"),
  17151. weight: math.unit(190, "lb"),
  17152. name: "Front",
  17153. image: {
  17154. source: "./media/characters/bari/front.svg",
  17155. extra: 3156 / 2880,
  17156. bottom: 0.03
  17157. }
  17158. },
  17159. back: {
  17160. height: math.unit(5 + 2 / 12, "feet"),
  17161. weight: math.unit(190, "lb"),
  17162. name: "Back",
  17163. image: {
  17164. source: "./media/characters/bari/back.svg",
  17165. extra: 3260 / 2834,
  17166. bottom: 0.025
  17167. }
  17168. },
  17169. frontPlush: {
  17170. height: math.unit(5 + 2 / 12, "feet"),
  17171. weight: math.unit(190, "lb"),
  17172. name: "Front (Plush)",
  17173. image: {
  17174. source: "./media/characters/bari/front-plush.svg",
  17175. extra: 1112 / 1061,
  17176. bottom: 0.002
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Micro",
  17183. height: math.unit(3, "inches")
  17184. },
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 2 / 12, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(20, "feet")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(6 + 1 / 12, "feet"),
  17201. weight: math.unit(275, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/hunter-misha-raven/front.svg"
  17205. }
  17206. },
  17207. },
  17208. [
  17209. {
  17210. name: "Mortal",
  17211. height: math.unit(6 + 1 / 12, "feet")
  17212. },
  17213. {
  17214. name: "Divine",
  17215. height: math.unit(1.12134e34, "parsecs"),
  17216. default: true
  17217. },
  17218. ]
  17219. ))
  17220. characterMakers.push(() => makeCharacter(
  17221. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17222. {
  17223. front: {
  17224. height: math.unit(6 + 3 / 12, "feet"),
  17225. weight: math.unit(220, "lb"),
  17226. name: "Front",
  17227. image: {
  17228. source: "./media/characters/max-calore/front.svg",
  17229. extra: 1700 / 1648,
  17230. bottom: 0.01
  17231. }
  17232. },
  17233. back: {
  17234. height: math.unit(6 + 3 / 12, "feet"),
  17235. weight: math.unit(220, "lb"),
  17236. name: "Back",
  17237. image: {
  17238. source: "./media/characters/max-calore/back.svg",
  17239. extra: 1700 / 1648,
  17240. bottom: 0.01
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6 + 3 / 12, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17254. {
  17255. side: {
  17256. height: math.unit(2 + 8 / 12, "feet"),
  17257. weight: math.unit(99, "lb"),
  17258. name: "Side",
  17259. image: {
  17260. source: "./media/characters/aspen/side.svg",
  17261. extra: 152 / 138,
  17262. bottom: 0.032
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(2 + 8 / 12, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17276. {
  17277. side: {
  17278. height: math.unit(3 + 2 / 12, "feet"),
  17279. weight: math.unit(224, "lb"),
  17280. name: "Side",
  17281. image: {
  17282. source: "./media/characters/sheila-feral-wolf/side.svg",
  17283. extra: 179 / 166,
  17284. bottom: 0.03
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(3 + 2 / 12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17298. {
  17299. side: {
  17300. height: math.unit(1 + 9 / 12, "feet"),
  17301. weight: math.unit(38, "lb"),
  17302. name: "Side",
  17303. image: {
  17304. source: "./media/characters/michelle/side.svg",
  17305. extra: 147 / 136.7,
  17306. bottom: 0.03
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(1 + 9 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(1.54, "feet"),
  17323. weight: math.unit(50, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/nino/front.svg"
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(1.54, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(1.49, "feet"),
  17343. weight: math.unit(45, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/viola/front.svg"
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(1.49, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(6 + 5 / 12, "feet"),
  17363. weight: math.unit(580, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/atlas/front.svg",
  17367. extra: 298.5 / 290,
  17368. bottom: 0.015
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(6 + 5 / 12, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17382. {
  17383. side: {
  17384. height: math.unit(15.6, "inches"),
  17385. weight: math.unit(10, "lb"),
  17386. name: "Side",
  17387. image: {
  17388. source: "./media/characters/davy/side.svg",
  17389. extra: 200 / 170,
  17390. bottom: 0.01
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(15.6, "inches"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17404. {
  17405. side: {
  17406. height: math.unit(4 + 8 / 12, "feet"),
  17407. weight: math.unit(166, "lb"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/fiona/side.svg",
  17411. extra: 232 / 220,
  17412. bottom: 0.03
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(4 + 8 / 12, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17426. {
  17427. front: {
  17428. height: math.unit(26, "inches"),
  17429. weight: math.unit(35, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/lyla/front.svg",
  17433. bottom: 0.1
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(3, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17447. {
  17448. side: {
  17449. height: math.unit(1.8, "feet"),
  17450. weight: math.unit(44, "lb"),
  17451. name: "Side",
  17452. image: {
  17453. source: "./media/characters/perseus/side.svg",
  17454. bottom: 0.21
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(1.8, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17468. {
  17469. side: {
  17470. height: math.unit(4 + 2 / 12, "feet"),
  17471. weight: math.unit(20, "lb"),
  17472. name: "Side",
  17473. image: {
  17474. source: "./media/characters/remus/side.svg"
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(4 + 2 / 12, "feet"),
  17482. default: true
  17483. },
  17484. ]
  17485. ))
  17486. characterMakers.push(() => makeCharacter(
  17487. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17488. {
  17489. front: {
  17490. height: math.unit(4 + 11 / 12, "feet"),
  17491. weight: math.unit(114, "lb"),
  17492. name: "Front",
  17493. image: {
  17494. source: "./media/characters/raf/front.svg",
  17495. extra: 1504/1339,
  17496. bottom: 26/1530
  17497. }
  17498. },
  17499. side: {
  17500. height: math.unit(4 + 11 / 12, "feet"),
  17501. weight: math.unit(114, "lb"),
  17502. name: "Side",
  17503. image: {
  17504. source: "./media/characters/raf/side.svg",
  17505. extra: 1466/1316,
  17506. bottom: 29/1495
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(2, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(4 + 11 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(70, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(1.5, "meters"),
  17531. weight: math.unit(68, "kg"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/liam-einarr/front.svg",
  17535. extra: 2822 / 2666
  17536. }
  17537. },
  17538. back: {
  17539. height: math.unit(1.5, "meters"),
  17540. weight: math.unit(68, "kg"),
  17541. name: "Back",
  17542. image: {
  17543. source: "./media/characters/liam-einarr/back.svg",
  17544. extra: 2822 / 2666,
  17545. bottom: 0.015
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(1.5, "meters"),
  17553. default: true
  17554. },
  17555. {
  17556. name: "Macro",
  17557. height: math.unit(150, "meters")
  17558. },
  17559. {
  17560. name: "Megamacro",
  17561. height: math.unit(35, "km")
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(75, "kg"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/linda/front.svg",
  17574. extra: 930 / 874,
  17575. bottom: 0.004
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(6, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6 + 8 / 12, "feet"),
  17592. weight: math.unit(220, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/caylex/front.svg",
  17596. extra: 821 / 772,
  17597. bottom: 0.07
  17598. }
  17599. },
  17600. back: {
  17601. height: math.unit(6 + 8 / 12, "feet"),
  17602. weight: math.unit(220, "lb"),
  17603. name: "Back",
  17604. image: {
  17605. source: "./media/characters/caylex/back.svg",
  17606. extra: 821 / 772,
  17607. bottom: 0.022
  17608. }
  17609. },
  17610. hand: {
  17611. height: math.unit(1.25, "feet"),
  17612. name: "Hand",
  17613. image: {
  17614. source: "./media/characters/caylex/hand.svg"
  17615. }
  17616. },
  17617. foot: {
  17618. height: math.unit(1.6, "feet"),
  17619. name: "Foot",
  17620. image: {
  17621. source: "./media/characters/caylex/foot.svg"
  17622. }
  17623. },
  17624. armored: {
  17625. height: math.unit(6 + 8 / 12, "feet"),
  17626. weight: math.unit(250, "lb"),
  17627. name: "Armored",
  17628. image: {
  17629. source: "./media/characters/caylex/armored.svg",
  17630. extra: 1420 / 1310,
  17631. bottom: 0.045
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(6 + 8 / 12, "feet"),
  17639. default: true
  17640. },
  17641. {
  17642. name: "Normal+",
  17643. height: math.unit(12, "feet")
  17644. },
  17645. ]
  17646. ))
  17647. characterMakers.push(() => makeCharacter(
  17648. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17649. {
  17650. front: {
  17651. height: math.unit(7 + 6 / 12, "feet"),
  17652. weight: math.unit(288, "lb"),
  17653. name: "Front",
  17654. image: {
  17655. source: "./media/characters/alana/front.svg",
  17656. extra: 679 / 653,
  17657. bottom: 22.5 / 701
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(7 + 6 / 12, "feet")
  17665. },
  17666. {
  17667. name: "Large",
  17668. height: math.unit(50, "feet")
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(100, "feet"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Macro+",
  17677. height: math.unit(200, "feet")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(6 + 1 / 12, "feet"),
  17686. weight: math.unit(210, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/hasani/front.svg",
  17690. extra: 244 / 232,
  17691. bottom: 0.01
  17692. }
  17693. },
  17694. back: {
  17695. height: math.unit(6 + 1 / 12, "feet"),
  17696. weight: math.unit(210, "lb"),
  17697. name: "Back",
  17698. image: {
  17699. source: "./media/characters/hasani/back.svg",
  17700. extra: 244 / 232,
  17701. bottom: 0.01
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(6 + 1 / 12, "feet")
  17709. },
  17710. {
  17711. name: "Macro",
  17712. height: math.unit(175, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(1.82, "meters"),
  17722. weight: math.unit(140, "lb"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/nita/front.svg",
  17726. extra: 2473 / 2363,
  17727. bottom: 0.01
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(1.82, "m")
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(300, "m")
  17739. },
  17740. {
  17741. name: "Mistake Canon",
  17742. height: math.unit(0.5, "miles"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Big Mistake",
  17747. height: math.unit(13, "miles")
  17748. },
  17749. {
  17750. name: "Playing God",
  17751. height: math.unit(2450, "miles")
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(4, "feet"),
  17760. weight: math.unit(120, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/shiriko/front.svg",
  17764. extra: 970/934,
  17765. bottom: 5/975
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(4, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. name: "front",
  17783. image: {
  17784. source: "./media/characters/deja/front.svg",
  17785. extra: 926 / 840,
  17786. bottom: 0.07
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Planck Length",
  17793. height: math.unit(1.6e-35, "meters")
  17794. },
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(30.48, "meters"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Universal",
  17802. height: math.unit(8.8e26, "meters")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17808. {
  17809. side: {
  17810. height: math.unit(8, "feet"),
  17811. weight: math.unit(6300, "lb"),
  17812. name: "Side",
  17813. image: {
  17814. source: "./media/characters/anima/side.svg",
  17815. bottom: 0.035
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(8, "feet"),
  17823. default: true
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(8, "feet"),
  17832. weight: math.unit(350, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/bianca/front.svg",
  17836. extra: 234 / 225,
  17837. bottom: 0.03
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(8, "feet"),
  17845. default: true
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(6, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/adinia/front.svg",
  17858. extra: 1845 / 1672,
  17859. bottom: 0.02
  17860. }
  17861. },
  17862. back: {
  17863. height: math.unit(6, "feet"),
  17864. weight: math.unit(150, "lb"),
  17865. name: "Back",
  17866. image: {
  17867. source: "./media/characters/adinia/back.svg",
  17868. extra: 1845 / 1672,
  17869. bottom: 0.002
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Normal",
  17876. height: math.unit(11 + 5 / 12, "feet"),
  17877. default: true
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(3, "meters"),
  17886. weight: math.unit(200, "kg"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/lykasa/front.svg",
  17890. extra: 1076 / 976,
  17891. bottom: 0.06
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Normal",
  17898. height: math.unit(3, "meters")
  17899. },
  17900. {
  17901. name: "Kaiju",
  17902. height: math.unit(120, "meters"),
  17903. default: true
  17904. },
  17905. {
  17906. name: "Mega Kaiju",
  17907. height: math.unit(240, "km")
  17908. },
  17909. {
  17910. name: "Giga Kaiju",
  17911. height: math.unit(400, "megameters")
  17912. },
  17913. {
  17914. name: "Tera Kaiju",
  17915. height: math.unit(800, "gigameters")
  17916. },
  17917. {
  17918. name: "Kaiju Dragon Goddess",
  17919. height: math.unit(26, "zettaparsecs")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17925. {
  17926. side: {
  17927. height: math.unit(283 / 124 * 6, "feet"),
  17928. weight: math.unit(35000, "lb"),
  17929. name: "Side",
  17930. image: {
  17931. source: "./media/characters/malfaren/side.svg",
  17932. extra: 1310/529,
  17933. bottom: 24/1334
  17934. }
  17935. },
  17936. front: {
  17937. height: math.unit(22.36, "feet"),
  17938. weight: math.unit(35000, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/malfaren/front.svg",
  17942. extra: 1237/1115,
  17943. bottom: 32/1269
  17944. }
  17945. },
  17946. maw: {
  17947. height: math.unit(6.9, "feet"),
  17948. name: "Maw",
  17949. image: {
  17950. source: "./media/characters/malfaren/maw.svg"
  17951. }
  17952. },
  17953. dick: {
  17954. height: math.unit(6.19, "feet"),
  17955. name: "Dick",
  17956. image: {
  17957. source: "./media/characters/malfaren/dick.svg"
  17958. }
  17959. },
  17960. eye: {
  17961. height: math.unit(0.69, "feet"),
  17962. name: "Eye",
  17963. image: {
  17964. source: "./media/characters/malfaren/eye.svg"
  17965. }
  17966. },
  17967. },
  17968. [
  17969. {
  17970. name: "Big",
  17971. height: math.unit(283 / 162 * 6, "feet"),
  17972. },
  17973. {
  17974. name: "Bigger",
  17975. height: math.unit(283 / 124 * 6, "feet")
  17976. },
  17977. {
  17978. name: "Massive",
  17979. height: math.unit(283 / 92 * 6, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "👀💦",
  17984. height: math.unit(283 / 73 * 6, "feet"),
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(1.7, "m"),
  17993. weight: math.unit(70, "kg"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/kernel/front.svg",
  17997. extra: 222 / 210,
  17998. bottom: 0.007
  17999. }
  18000. },
  18001. },
  18002. [
  18003. {
  18004. name: "Nano",
  18005. height: math.unit(17, "micrometers")
  18006. },
  18007. {
  18008. name: "Micro",
  18009. height: math.unit(1.7, "mm")
  18010. },
  18011. {
  18012. name: "Small",
  18013. height: math.unit(1.7, "cm")
  18014. },
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(1.7, "m"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(1.75, "meters"),
  18027. weight: math.unit(65, "kg"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/jayne-folest/front.svg",
  18031. extra: 2115 / 2007,
  18032. bottom: 0.02
  18033. }
  18034. },
  18035. back: {
  18036. height: math.unit(1.75, "meters"),
  18037. weight: math.unit(65, "kg"),
  18038. name: "Back",
  18039. image: {
  18040. source: "./media/characters/jayne-folest/back.svg",
  18041. extra: 2115 / 2007,
  18042. bottom: 0.005
  18043. }
  18044. },
  18045. frontClothed: {
  18046. height: math.unit(1.75, "meters"),
  18047. weight: math.unit(65, "kg"),
  18048. name: "Front (Clothed)",
  18049. image: {
  18050. source: "./media/characters/jayne-folest/front-clothed.svg",
  18051. extra: 2115 / 2007,
  18052. bottom: 0.035
  18053. }
  18054. },
  18055. hand: {
  18056. height: math.unit(1 / 1.260, "feet"),
  18057. name: "Hand",
  18058. image: {
  18059. source: "./media/characters/jayne-folest/hand.svg"
  18060. }
  18061. },
  18062. foot: {
  18063. height: math.unit(1 / 0.918, "feet"),
  18064. name: "Foot",
  18065. image: {
  18066. source: "./media/characters/jayne-folest/foot.svg"
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Micro",
  18073. height: math.unit(4, "cm")
  18074. },
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(1.75, "meters")
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(47.5, "meters"),
  18082. default: true
  18083. },
  18084. ]
  18085. ))
  18086. characterMakers.push(() => makeCharacter(
  18087. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18088. {
  18089. front: {
  18090. height: math.unit(180, "cm"),
  18091. weight: math.unit(70, "kg"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/algier/front.svg",
  18095. extra: 596 / 572,
  18096. bottom: 0.04
  18097. }
  18098. },
  18099. back: {
  18100. height: math.unit(180, "cm"),
  18101. weight: math.unit(70, "kg"),
  18102. name: "Back",
  18103. image: {
  18104. source: "./media/characters/algier/back.svg",
  18105. extra: 596 / 572,
  18106. bottom: 0.025
  18107. }
  18108. },
  18109. frontdressed: {
  18110. height: math.unit(180, "cm"),
  18111. weight: math.unit(150, "kg"),
  18112. name: "Front-dressed",
  18113. image: {
  18114. source: "./media/characters/algier/front-dressed.svg",
  18115. extra: 596 / 572,
  18116. bottom: 0.038
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(5, "cm")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(180, "cm"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(64, "m")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18138. {
  18139. upright: {
  18140. height: math.unit(7, "feet"),
  18141. weight: math.unit(300, "lb"),
  18142. name: "Upright",
  18143. image: {
  18144. source: "./media/characters/pretzel/upright.svg",
  18145. extra: 534 / 522,
  18146. bottom: 0.065
  18147. }
  18148. },
  18149. sprawling: {
  18150. height: math.unit(3.75, "feet"),
  18151. weight: math.unit(300, "lb"),
  18152. name: "Sprawling",
  18153. image: {
  18154. source: "./media/characters/pretzel/sprawling.svg",
  18155. extra: 314 / 281,
  18156. bottom: 0.1
  18157. }
  18158. },
  18159. tongue: {
  18160. height: math.unit(2, "feet"),
  18161. name: "Tongue",
  18162. image: {
  18163. source: "./media/characters/pretzel/tongue.svg"
  18164. }
  18165. },
  18166. },
  18167. [
  18168. {
  18169. name: "Normal",
  18170. height: math.unit(7, "feet"),
  18171. default: true
  18172. },
  18173. {
  18174. name: "Oversized",
  18175. height: math.unit(15, "feet")
  18176. },
  18177. {
  18178. name: "Huge",
  18179. height: math.unit(30, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(250, "feet")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18189. {
  18190. sideFront: {
  18191. height: math.unit(5 + 2 / 12, "feet"),
  18192. weight: math.unit(120, "lb"),
  18193. name: "Front Side",
  18194. image: {
  18195. source: "./media/characters/roxi/side-front.svg",
  18196. extra: 2924 / 2717,
  18197. bottom: 0.08
  18198. }
  18199. },
  18200. sideBack: {
  18201. height: math.unit(5 + 2 / 12, "feet"),
  18202. weight: math.unit(120, "lb"),
  18203. name: "Back Side",
  18204. image: {
  18205. source: "./media/characters/roxi/side-back.svg",
  18206. extra: 2904 / 2693,
  18207. bottom: 0.06
  18208. }
  18209. },
  18210. front: {
  18211. height: math.unit(5 + 2 / 12, "feet"),
  18212. weight: math.unit(120, "lb"),
  18213. name: "Front",
  18214. image: {
  18215. source: "./media/characters/roxi/front.svg",
  18216. extra: 2028 / 1907,
  18217. bottom: 0.01
  18218. }
  18219. },
  18220. frontAlt: {
  18221. height: math.unit(5 + 2 / 12, "feet"),
  18222. weight: math.unit(120, "lb"),
  18223. name: "Front (Alt)",
  18224. image: {
  18225. source: "./media/characters/roxi/front-alt.svg",
  18226. extra: 1828 / 1798,
  18227. bottom: 0.01
  18228. }
  18229. },
  18230. sitting: {
  18231. height: math.unit(2.8, "feet"),
  18232. weight: math.unit(120, "lb"),
  18233. name: "Sitting",
  18234. image: {
  18235. source: "./media/characters/roxi/sitting.svg",
  18236. extra: 2660 / 2462,
  18237. bottom: 0.1
  18238. }
  18239. },
  18240. },
  18241. [
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(5 + 2 / 12, "feet"),
  18245. default: true
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18251. {
  18252. side: {
  18253. height: math.unit(55, "feet"),
  18254. weight: math.unit(153, "tons"),
  18255. name: "Side",
  18256. image: {
  18257. source: "./media/characters/shadow/side.svg",
  18258. extra: 701 / 628,
  18259. bottom: 0.02
  18260. }
  18261. },
  18262. flying: {
  18263. height: math.unit(145, "feet"),
  18264. weight: math.unit(153, "tons"),
  18265. name: "Flying",
  18266. image: {
  18267. source: "./media/characters/shadow/flying.svg"
  18268. }
  18269. },
  18270. },
  18271. [
  18272. {
  18273. name: "Normal",
  18274. height: math.unit(55, "feet"),
  18275. default: true
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18281. {
  18282. front: {
  18283. height: math.unit(6, "feet"),
  18284. weight: math.unit(200, "lb"),
  18285. name: "Front",
  18286. image: {
  18287. source: "./media/characters/marcie/front.svg",
  18288. extra: 960 / 876,
  18289. bottom: 58 / 1017.87
  18290. }
  18291. },
  18292. },
  18293. [
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(1, "mile"),
  18297. default: true
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18303. {
  18304. front: {
  18305. height: math.unit(7, "feet"),
  18306. weight: math.unit(200, "lb"),
  18307. name: "Front",
  18308. image: {
  18309. source: "./media/characters/kachina/front.svg",
  18310. extra: 1290.68 / 1119,
  18311. bottom: 36.5 / 1327.18
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(7, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18325. {
  18326. looking: {
  18327. height: math.unit(2, "meters"),
  18328. weight: math.unit(300, "kg"),
  18329. name: "Looking",
  18330. image: {
  18331. source: "./media/characters/kash/looking.svg",
  18332. extra: 474 / 344,
  18333. bottom: 0.03
  18334. }
  18335. },
  18336. side: {
  18337. height: math.unit(2, "meters"),
  18338. weight: math.unit(300, "kg"),
  18339. name: "Side",
  18340. image: {
  18341. source: "./media/characters/kash/side.svg",
  18342. extra: 302 / 251,
  18343. bottom: 0.03
  18344. }
  18345. },
  18346. front: {
  18347. height: math.unit(2, "meters"),
  18348. weight: math.unit(300, "kg"),
  18349. name: "Front",
  18350. image: {
  18351. source: "./media/characters/kash/front.svg",
  18352. extra: 495 / 360,
  18353. bottom: 0.015
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(2, "meters"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Big",
  18365. height: math.unit(3, "meters")
  18366. },
  18367. {
  18368. name: "Large",
  18369. height: math.unit(5, "meters")
  18370. },
  18371. ]
  18372. ))
  18373. characterMakers.push(() => makeCharacter(
  18374. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18375. {
  18376. feeding: {
  18377. height: math.unit(6.7, "feet"),
  18378. weight: math.unit(350, "lb"),
  18379. name: "Feeding",
  18380. image: {
  18381. source: "./media/characters/lalim/feeding.svg",
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(6.7, "feet"),
  18389. default: true
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(9.5, "feet"),
  18398. weight: math.unit(600, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/de'vout/front.svg",
  18402. extra: 1443 / 1328,
  18403. bottom: 0.025
  18404. }
  18405. },
  18406. back: {
  18407. height: math.unit(9.5, "feet"),
  18408. weight: math.unit(600, "lb"),
  18409. name: "Back",
  18410. image: {
  18411. source: "./media/characters/de'vout/back.svg",
  18412. extra: 1443 / 1328
  18413. }
  18414. },
  18415. frontDressed: {
  18416. height: math.unit(9.5, "feet"),
  18417. weight: math.unit(600, "lb"),
  18418. name: "Front (Dressed",
  18419. image: {
  18420. source: "./media/characters/de'vout/front-dressed.svg",
  18421. extra: 1443 / 1328,
  18422. bottom: 0.025
  18423. }
  18424. },
  18425. backDressed: {
  18426. height: math.unit(9.5, "feet"),
  18427. weight: math.unit(600, "lb"),
  18428. name: "Back (Dressed",
  18429. image: {
  18430. source: "./media/characters/de'vout/back-dressed.svg",
  18431. extra: 1443 / 1328
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(9.5, "feet"),
  18439. default: true
  18440. },
  18441. ]
  18442. ))
  18443. characterMakers.push(() => makeCharacter(
  18444. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18445. {
  18446. front: {
  18447. height: math.unit(8, "feet"),
  18448. weight: math.unit(225, "lb"),
  18449. name: "Front",
  18450. image: {
  18451. source: "./media/characters/talana/front.svg",
  18452. extra: 1410 / 1300,
  18453. bottom: 0.015
  18454. }
  18455. },
  18456. frontDressed: {
  18457. height: math.unit(8, "feet"),
  18458. weight: math.unit(225, "lb"),
  18459. name: "Front (Dressed",
  18460. image: {
  18461. source: "./media/characters/talana/front-dressed.svg",
  18462. extra: 1410 / 1300,
  18463. bottom: 0.015
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(8, "feet"),
  18471. default: true
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18477. {
  18478. side: {
  18479. height: math.unit(7.2, "feet"),
  18480. weight: math.unit(150, "lb"),
  18481. name: "Side",
  18482. image: {
  18483. source: "./media/characters/xeauvok/side.svg",
  18484. extra: 1975 / 1523,
  18485. bottom: 0.07
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(7.2, "feet"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18499. {
  18500. side: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(900, "kg"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/zara/side.svg",
  18506. extra: 504 / 498
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(10, "feet"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18520. {
  18521. side: {
  18522. height: math.unit(6, "feet"),
  18523. weight: math.unit(150, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/richard-dragon/side.svg",
  18527. extra: 845 / 340,
  18528. bottom: 0.017
  18529. }
  18530. },
  18531. maw: {
  18532. height: math.unit(2.97, "feet"),
  18533. name: "Maw",
  18534. image: {
  18535. source: "./media/characters/richard-dragon/maw.svg"
  18536. }
  18537. },
  18538. },
  18539. [
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(4, "feet"),
  18547. weight: math.unit(100, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/richard-smeargle/front.svg",
  18551. extra: 2952 / 2820,
  18552. bottom: 0.028
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(4, "feet"),
  18560. default: true
  18561. },
  18562. {
  18563. name: "Dynamax",
  18564. height: math.unit(20, "meters")
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18570. {
  18571. front: {
  18572. height: math.unit(6, "feet"),
  18573. weight: math.unit(110, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/klay/front.svg",
  18577. extra: 962 / 883,
  18578. bottom: 0.04
  18579. }
  18580. },
  18581. back: {
  18582. height: math.unit(6, "feet"),
  18583. weight: math.unit(110, "lb"),
  18584. name: "Back",
  18585. image: {
  18586. source: "./media/characters/klay/back.svg",
  18587. extra: 962 / 883
  18588. }
  18589. },
  18590. beans: {
  18591. height: math.unit(1.15, "feet"),
  18592. name: "Beans",
  18593. image: {
  18594. source: "./media/characters/klay/beans.svg"
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Micro",
  18601. height: math.unit(6, "inches")
  18602. },
  18603. {
  18604. name: "Mini",
  18605. height: math.unit(3, "feet")
  18606. },
  18607. {
  18608. name: "Normal",
  18609. height: math.unit(6, "feet"),
  18610. default: true
  18611. },
  18612. {
  18613. name: "Big",
  18614. height: math.unit(25, "feet")
  18615. },
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(100, "feet")
  18619. },
  18620. {
  18621. name: "Megamacro",
  18622. height: math.unit(400, "feet")
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(6, "feet"),
  18631. weight: math.unit(160, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/marcus/front.svg",
  18635. extra: 734 / 676,
  18636. bottom: 0.03
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Little",
  18643. height: math.unit(6, "feet")
  18644. },
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(110, "feet"),
  18648. default: true
  18649. },
  18650. {
  18651. name: "Macro",
  18652. height: math.unit(250, "feet")
  18653. },
  18654. {
  18655. name: "Megamacro",
  18656. height: math.unit(1000, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(7, "feet"),
  18665. weight: math.unit(275, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/claude-delroute/front.svg",
  18669. extra: 902/827,
  18670. bottom: 26/928
  18671. }
  18672. },
  18673. side: {
  18674. height: math.unit(7, "feet"),
  18675. weight: math.unit(275, "lb"),
  18676. name: "Side",
  18677. image: {
  18678. source: "./media/characters/claude-delroute/side.svg",
  18679. extra: 908/853,
  18680. bottom: 16/924
  18681. }
  18682. },
  18683. back: {
  18684. height: math.unit(7, "feet"),
  18685. weight: math.unit(275, "lb"),
  18686. name: "Back",
  18687. image: {
  18688. source: "./media/characters/claude-delroute/back.svg",
  18689. extra: 911/829,
  18690. bottom: 18/929
  18691. }
  18692. },
  18693. maw: {
  18694. height: math.unit(0.6407, "meters"),
  18695. name: "Maw",
  18696. image: {
  18697. source: "./media/characters/claude-delroute/maw.svg"
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(7, "feet"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Lorge",
  18709. height: math.unit(20, "feet")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(8 + 4 / 12, "feet"),
  18718. weight: math.unit(600, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/dragonien/front.svg",
  18722. extra: 100 / 94,
  18723. bottom: 3.3 / 103.3445
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(8 + 4 / 12, "feet"),
  18728. weight: math.unit(600, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/dragonien/back.svg",
  18732. extra: 776 / 746,
  18733. bottom: 6.4 / 782.0616
  18734. }
  18735. },
  18736. foot: {
  18737. height: math.unit(1.54, "feet"),
  18738. name: "Foot",
  18739. image: {
  18740. source: "./media/characters/dragonien/foot.svg",
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(8 + 4 / 12, "feet"),
  18748. default: true
  18749. },
  18750. {
  18751. name: "Macro",
  18752. height: math.unit(200, "feet")
  18753. },
  18754. {
  18755. name: "Megamacro",
  18756. height: math.unit(1, "mile")
  18757. },
  18758. {
  18759. name: "Gigamacro",
  18760. height: math.unit(1000, "miles")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(5 + 2 / 12, "feet"),
  18769. weight: math.unit(110, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/desta/front.svg",
  18773. extra: 767 / 726,
  18774. bottom: 11.7 / 779
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(5 + 2 / 12, "feet"),
  18779. weight: math.unit(110, "lb"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/desta/back.svg",
  18783. extra: 777 / 728,
  18784. bottom: 6 / 784
  18785. }
  18786. },
  18787. frontAlt: {
  18788. height: math.unit(5 + 2 / 12, "feet"),
  18789. weight: math.unit(110, "lb"),
  18790. name: "Front",
  18791. image: {
  18792. source: "./media/characters/desta/front-alt.svg",
  18793. extra: 1482 / 1417
  18794. }
  18795. },
  18796. side: {
  18797. height: math.unit(5 + 2 / 12, "feet"),
  18798. weight: math.unit(110, "lb"),
  18799. name: "Side",
  18800. image: {
  18801. source: "./media/characters/desta/side.svg",
  18802. extra: 2579 / 2491,
  18803. bottom: 0.053
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Micro",
  18810. height: math.unit(6, "inches")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(5 + 2 / 12, "feet"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(62, "feet")
  18820. },
  18821. {
  18822. name: "Megamacro",
  18823. height: math.unit(1800, "feet")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(10, "feet"),
  18832. weight: math.unit(700, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/storm-alystar/front.svg",
  18836. extra: 2112 / 1898,
  18837. bottom: 0.034
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(3.5, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(10, "feet"),
  18849. default: true
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(400, "feet")
  18854. },
  18855. {
  18856. name: "Deific",
  18857. height: math.unit(60, "miles")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(2.35, "meters"),
  18866. weight: math.unit(119, "kg"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/ilia/front.svg",
  18870. extra: 1285 / 1255,
  18871. bottom: 0.06
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(2.35, "meters")
  18879. },
  18880. {
  18881. name: "Macro",
  18882. height: math.unit(140, "meters"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Megamacro",
  18887. height: math.unit(100, "miles")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(6 + 5 / 12, "feet"),
  18896. weight: math.unit(190, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/kingdead/front.svg",
  18900. extra: 1228 / 1177
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Micro",
  18907. height: math.unit(7, "inches")
  18908. },
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6 + 5 / 12, "feet")
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(150, "feet"),
  18916. default: true
  18917. },
  18918. {
  18919. name: "Megamacro",
  18920. height: math.unit(200, "miles")
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(8, "feet"),
  18929. weight: math.unit(600, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/kyrehx/front.svg",
  18933. extra: 1195 / 1095,
  18934. bottom: 0.034
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(2, "inches")
  18942. },
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(8, "feet"),
  18946. default: true
  18947. },
  18948. {
  18949. name: "Macro",
  18950. height: math.unit(255, "feet")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18959. weight: math.unit(184, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/xang/front.svg",
  18963. extra: 845 / 755
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Macro",
  18975. height: math.unit(0.935 * 146, "feet")
  18976. },
  18977. {
  18978. name: "Megamacro",
  18979. height: math.unit(0.935 * 3, "miles")
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18985. {
  18986. frontDressed: {
  18987. height: math.unit(5 + 7 / 12, "feet"),
  18988. weight: math.unit(140, "lb"),
  18989. name: "Front (Dressed)",
  18990. image: {
  18991. source: "./media/characters/doc-weardno/front-dressed.svg",
  18992. extra: 263 / 234
  18993. }
  18994. },
  18995. backDressed: {
  18996. height: math.unit(5 + 7 / 12, "feet"),
  18997. weight: math.unit(140, "lb"),
  18998. name: "Back (Dressed)",
  18999. image: {
  19000. source: "./media/characters/doc-weardno/back-dressed.svg",
  19001. extra: 266 / 238
  19002. }
  19003. },
  19004. front: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(140, "lb"),
  19007. name: "Front",
  19008. image: {
  19009. source: "./media/characters/doc-weardno/front.svg",
  19010. extra: 254 / 233
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Micro",
  19017. height: math.unit(3, "inches")
  19018. },
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 7 / 12, "feet"),
  19022. default: true
  19023. },
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(25, "feet")
  19027. },
  19028. {
  19029. name: "Megamacro",
  19030. height: math.unit(2, "miles")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(6 + 2 / 12, "feet"),
  19039. weight: math.unit(153, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/seth-whilst/front.svg",
  19043. bottom: 0.07
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(5, "inches")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(6 + 2 / 12, "feet"),
  19055. default: true
  19056. },
  19057. ]
  19058. ))
  19059. characterMakers.push(() => makeCharacter(
  19060. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19061. {
  19062. front: {
  19063. height: math.unit(3, "inches"),
  19064. weight: math.unit(8, "grams"),
  19065. name: "Front",
  19066. image: {
  19067. source: "./media/characters/pocket-jabari/front.svg",
  19068. extra: 1024 / 974,
  19069. bottom: 0.039
  19070. }
  19071. },
  19072. },
  19073. [
  19074. {
  19075. name: "Minimicro",
  19076. height: math.unit(8, "mm")
  19077. },
  19078. {
  19079. name: "Micro",
  19080. height: math.unit(3, "inches"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(3, "feet")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(15, "feet"),
  19094. weight: math.unit(3280, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/sapphy/front.svg",
  19098. extra: 671 / 577,
  19099. bottom: 0.085
  19100. }
  19101. },
  19102. back: {
  19103. height: math.unit(15, "feet"),
  19104. weight: math.unit(3280, "lb"),
  19105. name: "Back",
  19106. image: {
  19107. source: "./media/characters/sapphy/back.svg",
  19108. extra: 631 / 607,
  19109. bottom: 0.045
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(15, "feet")
  19117. },
  19118. {
  19119. name: "Casual Macro",
  19120. height: math.unit(120, "feet")
  19121. },
  19122. {
  19123. name: "Macro",
  19124. height: math.unit(2150, "feet"),
  19125. default: true
  19126. },
  19127. {
  19128. name: "Megamacro",
  19129. height: math.unit(8, "miles")
  19130. },
  19131. {
  19132. name: "Galaxy Mom",
  19133. height: math.unit(6, "megalightyears")
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(6, "feet"),
  19142. weight: math.unit(170, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/kiro/front.svg",
  19146. extra: 1064 / 1012,
  19147. bottom: 0.052
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Micro",
  19154. height: math.unit(6, "inches")
  19155. },
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(6, "feet"),
  19159. default: true
  19160. },
  19161. {
  19162. name: "Macro",
  19163. height: math.unit(72, "feet")
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19169. {
  19170. front: {
  19171. height: math.unit(5 + 9 / 12, "feet"),
  19172. weight: math.unit(175, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/irishfox/front.svg",
  19176. extra: 1912 / 1680,
  19177. bottom: 0.02
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Nano",
  19184. height: math.unit(1, "mm")
  19185. },
  19186. {
  19187. name: "Micro",
  19188. height: math.unit(2, "inches")
  19189. },
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(5 + 9 / 12, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(45, "feet")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(6 + 1 / 12, "feet"),
  19206. weight: math.unit(75, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/aronai-sieyes/front.svg",
  19210. extra: 1532/1450,
  19211. bottom: 42/1574
  19212. }
  19213. },
  19214. side: {
  19215. height: math.unit(6 + 1 / 12, "feet"),
  19216. weight: math.unit(75, "lb"),
  19217. name: "Side",
  19218. image: {
  19219. source: "./media/characters/aronai-sieyes/side.svg",
  19220. extra: 1422/1365,
  19221. bottom: 148/1570
  19222. }
  19223. },
  19224. back: {
  19225. height: math.unit(6 + 1 / 12, "feet"),
  19226. weight: math.unit(75, "lb"),
  19227. name: "Back",
  19228. image: {
  19229. source: "./media/characters/aronai-sieyes/back.svg",
  19230. extra: 1526/1464,
  19231. bottom: 51/1577
  19232. }
  19233. },
  19234. dressed: {
  19235. height: math.unit(6 + 1 / 12, "feet"),
  19236. weight: math.unit(75, "lb"),
  19237. name: "Dressed",
  19238. image: {
  19239. source: "./media/characters/aronai-sieyes/dressed.svg",
  19240. extra: 1559/1483,
  19241. bottom: 39/1598
  19242. }
  19243. },
  19244. slit: {
  19245. height: math.unit(1.3, "feet"),
  19246. name: "Slit",
  19247. image: {
  19248. source: "./media/characters/aronai-sieyes/slit.svg"
  19249. }
  19250. },
  19251. slitSpread: {
  19252. height: math.unit(0.9, "feet"),
  19253. name: "Slit (Spread)",
  19254. image: {
  19255. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19256. }
  19257. },
  19258. rump: {
  19259. height: math.unit(1.3, "feet"),
  19260. name: "Rump",
  19261. image: {
  19262. source: "./media/characters/aronai-sieyes/rump.svg"
  19263. }
  19264. },
  19265. maw: {
  19266. height: math.unit(1.25, "feet"),
  19267. name: "Maw",
  19268. image: {
  19269. source: "./media/characters/aronai-sieyes/maw.svg"
  19270. }
  19271. },
  19272. feral: {
  19273. height: math.unit(18, "feet"),
  19274. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19275. name: "Feral",
  19276. image: {
  19277. source: "./media/characters/aronai-sieyes/feral.svg",
  19278. extra: 1530 / 1240,
  19279. bottom: 0.035
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Micro",
  19286. height: math.unit(2, "inches")
  19287. },
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(6 + 1 / 12, "feet"),
  19291. default: true
  19292. }
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(12, "feet"),
  19300. weight: math.unit(410, "kg"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/xuna/front.svg",
  19304. extra: 2184 / 1980
  19305. }
  19306. },
  19307. side: {
  19308. height: math.unit(12, "feet"),
  19309. weight: math.unit(410, "kg"),
  19310. name: "Side",
  19311. image: {
  19312. source: "./media/characters/xuna/side.svg",
  19313. extra: 2184 / 1980
  19314. }
  19315. },
  19316. back: {
  19317. height: math.unit(12, "feet"),
  19318. weight: math.unit(410, "kg"),
  19319. name: "Back",
  19320. image: {
  19321. source: "./media/characters/xuna/back.svg",
  19322. extra: 2184 / 1980
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Nano glow",
  19329. height: math.unit(10, "nm")
  19330. },
  19331. {
  19332. name: "Micro floof",
  19333. height: math.unit(0.3, "m")
  19334. },
  19335. {
  19336. name: "Huggable softy boi",
  19337. height: math.unit(3.6576, "m"),
  19338. default: true
  19339. },
  19340. {
  19341. name: "Admirable floof",
  19342. height: math.unit(80, "meters")
  19343. },
  19344. {
  19345. name: "Gentle macro",
  19346. height: math.unit(300, "meters")
  19347. },
  19348. {
  19349. name: "Very careful floof",
  19350. height: math.unit(3200, "meters")
  19351. },
  19352. {
  19353. name: "The mega floof",
  19354. height: math.unit(36000, "meters")
  19355. },
  19356. {
  19357. name: "Giga-fur-Wicker",
  19358. height: math.unit(4800000, "meters")
  19359. },
  19360. {
  19361. name: "Licky world",
  19362. height: math.unit(20000000, "meters")
  19363. },
  19364. {
  19365. name: "Floofy cyan sun",
  19366. height: math.unit(1500000000, "meters")
  19367. },
  19368. {
  19369. name: "Milky Wicker",
  19370. height: math.unit(1000000000000000000000, "meters")
  19371. },
  19372. {
  19373. name: "The observing Wicker",
  19374. height: math.unit(999999999999999999999999999, "meters")
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19380. {
  19381. front: {
  19382. height: math.unit(5 + 9 / 12, "feet"),
  19383. weight: math.unit(150, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/arokha-sieyes/front.svg",
  19387. extra: 1425 / 1284,
  19388. bottom: 0.05
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(5 + 9 / 12, "feet")
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(30, "meters"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(6, "feet"),
  19409. weight: math.unit(180, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/arokh-sieyes/front.svg",
  19413. extra: 1830 / 1769,
  19414. bottom: 0.01
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Normal",
  19421. height: math.unit(6, "feet")
  19422. },
  19423. {
  19424. name: "Macro",
  19425. height: math.unit(30, "meters"),
  19426. default: true
  19427. },
  19428. ]
  19429. ))
  19430. characterMakers.push(() => makeCharacter(
  19431. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19432. {
  19433. side: {
  19434. height: math.unit(13 + 1 / 12, "feet"),
  19435. weight: math.unit(8.5, "tonnes"),
  19436. name: "Side",
  19437. image: {
  19438. source: "./media/characters/goldeneye/side.svg",
  19439. extra: 1182 / 778,
  19440. bottom: 0.067
  19441. }
  19442. },
  19443. paw: {
  19444. height: math.unit(3.4, "feet"),
  19445. name: "Paw",
  19446. image: {
  19447. source: "./media/characters/goldeneye/paw.svg"
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(13 + 1 / 12, "feet"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6 + 1 / 12, "feet"),
  19464. weight: math.unit(210, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/leonardo-lycheborne/front.svg",
  19468. extra: 776/723,
  19469. bottom: 34/810
  19470. }
  19471. },
  19472. side: {
  19473. height: math.unit(6 + 1 / 12, "feet"),
  19474. weight: math.unit(210, "lb"),
  19475. name: "Side",
  19476. image: {
  19477. source: "./media/characters/leonardo-lycheborne/side.svg",
  19478. extra: 780/728,
  19479. bottom: 12/792
  19480. }
  19481. },
  19482. back: {
  19483. height: math.unit(6 + 1 / 12, "feet"),
  19484. weight: math.unit(210, "lb"),
  19485. name: "Back",
  19486. image: {
  19487. source: "./media/characters/leonardo-lycheborne/back.svg",
  19488. extra: 775/721,
  19489. bottom: 17/792
  19490. }
  19491. },
  19492. hand: {
  19493. height: math.unit(1.08, "feet"),
  19494. name: "Hand",
  19495. image: {
  19496. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19497. }
  19498. },
  19499. foot: {
  19500. height: math.unit(1.32, "feet"),
  19501. name: "Foot",
  19502. image: {
  19503. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19504. }
  19505. },
  19506. maw: {
  19507. height: math.unit(1, "feet"),
  19508. name: "Maw",
  19509. image: {
  19510. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19511. }
  19512. },
  19513. were: {
  19514. height: math.unit(20, "feet"),
  19515. weight: math.unit(7800, "lb"),
  19516. name: "Were",
  19517. image: {
  19518. source: "./media/characters/leonardo-lycheborne/were.svg",
  19519. extra: 1224/1165,
  19520. bottom: 72/1296
  19521. }
  19522. },
  19523. feral: {
  19524. height: math.unit(7.5, "feet"),
  19525. weight: math.unit(600, "lb"),
  19526. name: "Feral",
  19527. image: {
  19528. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19529. extra: 797/702,
  19530. bottom: 139/936
  19531. }
  19532. },
  19533. taur: {
  19534. height: math.unit(11, "feet"),
  19535. weight: math.unit(3300, "lb"),
  19536. name: "Taur",
  19537. image: {
  19538. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19539. extra: 1271/1197,
  19540. bottom: 47/1318
  19541. }
  19542. },
  19543. barghest: {
  19544. height: math.unit(11, "feet"),
  19545. weight: math.unit(1300, "lb"),
  19546. name: "Barghest",
  19547. image: {
  19548. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19549. extra: 1291/1204,
  19550. bottom: 37/1328
  19551. }
  19552. },
  19553. dick: {
  19554. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19555. name: "Dick",
  19556. image: {
  19557. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19558. }
  19559. },
  19560. dickWere: {
  19561. height: math.unit((20) / 3.8, "feet"),
  19562. name: "Dick (Were)",
  19563. image: {
  19564. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(6 + 1 / 12, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(10, "feet"),
  19581. weight: math.unit(350, "lb"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/jet/front.svg",
  19585. extra: 2050 / 1980,
  19586. bottom: 0.013
  19587. }
  19588. },
  19589. back: {
  19590. height: math.unit(10, "feet"),
  19591. weight: math.unit(350, "lb"),
  19592. name: "Back",
  19593. image: {
  19594. source: "./media/characters/jet/back.svg",
  19595. extra: 2050 / 1980,
  19596. bottom: 0.013
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Micro",
  19603. height: math.unit(6, "inches")
  19604. },
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(10, "feet"),
  19608. default: true
  19609. },
  19610. {
  19611. name: "Macro",
  19612. height: math.unit(100, "feet")
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(15, "feet"),
  19621. weight: math.unit(2800, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/tanarath/front.svg",
  19625. extra: 2392 / 2220,
  19626. bottom: 0.03
  19627. }
  19628. },
  19629. back: {
  19630. height: math.unit(15, "feet"),
  19631. weight: math.unit(2800, "lb"),
  19632. name: "Back",
  19633. image: {
  19634. source: "./media/characters/tanarath/back.svg",
  19635. extra: 2392 / 2220,
  19636. bottom: 0.03
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(15, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(7 + 1 / 12, "feet"),
  19653. weight: math.unit(175, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/patty-cattybatty/front.svg",
  19657. extra: 908 / 874,
  19658. bottom: 0.025
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Micro",
  19665. height: math.unit(1, "inch")
  19666. },
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(7 + 1 / 12, "feet")
  19670. },
  19671. {
  19672. name: "Mini Macro",
  19673. height: math.unit(155, "feet")
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(1077, "feet")
  19678. },
  19679. {
  19680. name: "Mega Macro",
  19681. height: math.unit(47650, "feet"),
  19682. default: true
  19683. },
  19684. {
  19685. name: "Giga Macro",
  19686. height: math.unit(440, "miles")
  19687. },
  19688. {
  19689. name: "Tera Macro",
  19690. height: math.unit(8700, "miles")
  19691. },
  19692. {
  19693. name: "Planetary Macro",
  19694. height: math.unit(32700, "miles")
  19695. },
  19696. {
  19697. name: "Solar Macro",
  19698. height: math.unit(550000, "miles")
  19699. },
  19700. {
  19701. name: "Celestial Macro",
  19702. height: math.unit(2.5, "AU")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(4 + 5 / 12, "feet"),
  19711. weight: math.unit(90, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/cappu/front.svg",
  19715. extra: 1247 / 1152,
  19716. bottom: 0.012
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(4 + 5 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19730. {
  19731. frontDressed: {
  19732. height: math.unit(70, "cm"),
  19733. weight: math.unit(6, "kg"),
  19734. name: "Front (Dressed)",
  19735. image: {
  19736. source: "./media/characters/sebi/front-dressed.svg",
  19737. extra: 713.5 / 686.5,
  19738. bottom: 0.003
  19739. }
  19740. },
  19741. front: {
  19742. height: math.unit(70, "cm"),
  19743. weight: math.unit(5, "kg"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/sebi/front.svg",
  19747. extra: 713.5 / 686.5,
  19748. bottom: 0.003
  19749. }
  19750. }
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(70, "cm"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(8, "meters")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6, "feet"),
  19769. weight: math.unit(150, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/typhek/front.svg",
  19773. extra: 1948 / 1929,
  19774. bottom: 0.025
  19775. }
  19776. },
  19777. side: {
  19778. height: math.unit(6, "feet"),
  19779. weight: math.unit(150, "lb"),
  19780. name: "Side",
  19781. image: {
  19782. source: "./media/characters/typhek/side.svg",
  19783. extra: 2034 / 2010,
  19784. bottom: 0.003
  19785. }
  19786. },
  19787. back: {
  19788. height: math.unit(6, "feet"),
  19789. weight: math.unit(150, "lb"),
  19790. name: "Back",
  19791. image: {
  19792. source: "./media/characters/typhek/back.svg",
  19793. extra: 2005 / 1978,
  19794. bottom: 0.004
  19795. }
  19796. },
  19797. palm: {
  19798. height: math.unit(1.2, "feet"),
  19799. name: "Palm",
  19800. image: {
  19801. source: "./media/characters/typhek/palm.svg"
  19802. }
  19803. },
  19804. fist: {
  19805. height: math.unit(1.1, "feet"),
  19806. name: "Fist",
  19807. image: {
  19808. source: "./media/characters/typhek/fist.svg"
  19809. }
  19810. },
  19811. foot: {
  19812. height: math.unit(1.57, "feet"),
  19813. name: "Foot",
  19814. image: {
  19815. source: "./media/characters/typhek/foot.svg"
  19816. }
  19817. },
  19818. sole: {
  19819. height: math.unit(2.05, "feet"),
  19820. name: "Sole",
  19821. image: {
  19822. source: "./media/characters/typhek/sole.svg"
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Macro",
  19829. height: math.unit(40, "stories"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Megamacro",
  19834. height: math.unit(1, "mile")
  19835. },
  19836. {
  19837. name: "Gigamacro",
  19838. height: math.unit(4000, "solarradii")
  19839. },
  19840. {
  19841. name: "Universal",
  19842. height: math.unit(1.1, "universes")
  19843. }
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19848. {
  19849. side: {
  19850. height: math.unit(5 + 7 / 12, "feet"),
  19851. weight: math.unit(150, "lb"),
  19852. name: "Side",
  19853. image: {
  19854. source: "./media/characters/kassy/side.svg",
  19855. extra: 1280 / 1225,
  19856. bottom: 0.002
  19857. }
  19858. },
  19859. front: {
  19860. height: math.unit(5 + 7 / 12, "feet"),
  19861. weight: math.unit(150, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/kassy/front.svg",
  19865. extra: 1280 / 1225,
  19866. bottom: 0.025
  19867. }
  19868. },
  19869. back: {
  19870. height: math.unit(5 + 7 / 12, "feet"),
  19871. weight: math.unit(150, "lb"),
  19872. name: "Back",
  19873. image: {
  19874. source: "./media/characters/kassy/back.svg",
  19875. extra: 1280 / 1225,
  19876. bottom: 0.002
  19877. }
  19878. },
  19879. foot: {
  19880. height: math.unit(1.266, "feet"),
  19881. name: "Foot",
  19882. image: {
  19883. source: "./media/characters/kassy/foot.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(5 + 7 / 12, "feet")
  19891. },
  19892. {
  19893. name: "Macro",
  19894. height: math.unit(137, "feet"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Megamacro",
  19899. height: math.unit(1, "mile")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6 + 1 / 12, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/neil/front.svg",
  19912. extra: 1326 / 1250,
  19913. bottom: 0.023
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(6 + 1 / 12, "feet"),
  19921. default: true
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(200, "feet")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(5 + 9 / 12, "feet"),
  19934. weight: math.unit(190, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/atticus/front.svg",
  19938. extra: 2934 / 2785,
  19939. bottom: 0.025
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(5 + 9 / 12, "feet"),
  19947. default: true
  19948. },
  19949. {
  19950. name: "Macro",
  19951. height: math.unit(180, "feet")
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19957. {
  19958. side: {
  19959. height: math.unit(9, "feet"),
  19960. weight: math.unit(650, "lb"),
  19961. name: "Side",
  19962. image: {
  19963. source: "./media/characters/milo/side.svg",
  19964. extra: 2644 / 2310,
  19965. bottom: 0.032
  19966. }
  19967. },
  19968. },
  19969. [
  19970. {
  19971. name: "Normal",
  19972. height: math.unit(9, "feet"),
  19973. default: true
  19974. },
  19975. {
  19976. name: "Macro",
  19977. height: math.unit(300, "feet")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19983. {
  19984. side: {
  19985. height: math.unit(8, "meters"),
  19986. weight: math.unit(90000, "kg"),
  19987. name: "Side",
  19988. image: {
  19989. source: "./media/characters/ijzer/side.svg",
  19990. extra: 2756 / 1600,
  19991. bottom: 0.01
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Small",
  19998. height: math.unit(3, "meters")
  19999. },
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(8, "meters"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "Normal+",
  20007. height: math.unit(10, "meters")
  20008. },
  20009. {
  20010. name: "Bigger",
  20011. height: math.unit(24, "meters")
  20012. },
  20013. {
  20014. name: "Huge",
  20015. height: math.unit(80, "meters")
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6 + 2 / 12, "feet"),
  20024. weight: math.unit(153, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/luca-cervicum/front.svg",
  20028. extra: 370 / 327,
  20029. bottom: 0.015
  20030. }
  20031. },
  20032. back: {
  20033. height: math.unit(6 + 2 / 12, "feet"),
  20034. weight: math.unit(153, "lb"),
  20035. name: "Back",
  20036. image: {
  20037. source: "./media/characters/luca-cervicum/back.svg",
  20038. extra: 367 / 333,
  20039. bottom: 0.005
  20040. }
  20041. },
  20042. frontGear: {
  20043. height: math.unit(6 + 2 / 12, "feet"),
  20044. weight: math.unit(173, "lb"),
  20045. name: "Front (Gear)",
  20046. image: {
  20047. source: "./media/characters/luca-cervicum/front-gear.svg",
  20048. extra: 377 / 333,
  20049. bottom: 0.006
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(6 + 2 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(6 + 1 / 12, "feet"),
  20066. weight: math.unit(304, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/oliver/front.svg",
  20070. extra: 157 / 143,
  20071. bottom: 0.08
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6 + 1 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(5 + 7 / 12, "feet"),
  20088. weight: math.unit(140, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/shane/front.svg",
  20092. extra: 304 / 289,
  20093. bottom: 0.005
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 7 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(5 + 9 / 12, "feet"),
  20110. weight: math.unit(178, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/shin/front.svg",
  20114. extra: 159 / 151,
  20115. bottom: 0.015
  20116. }
  20117. },
  20118. },
  20119. [
  20120. {
  20121. name: "Normal",
  20122. height: math.unit(5 + 9 / 12, "feet"),
  20123. default: true
  20124. },
  20125. ]
  20126. ))
  20127. characterMakers.push(() => makeCharacter(
  20128. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20129. {
  20130. front: {
  20131. height: math.unit(5 + 10 / 12, "feet"),
  20132. weight: math.unit(168, "lb"),
  20133. name: "Front",
  20134. image: {
  20135. source: "./media/characters/xerxes/front.svg",
  20136. extra: 282 / 260,
  20137. bottom: 0.045
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 10 / 12, "feet"),
  20145. default: true
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6 + 7 / 12, "feet"),
  20154. weight: math.unit(208, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/chaska/front.svg",
  20158. extra: 332 / 319,
  20159. bottom: 0.015
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(6 + 7 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(5 + 8 / 12, "feet"),
  20176. weight: math.unit(208, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/enuk/front.svg",
  20180. extra: 437 / 406,
  20181. bottom: 0.02
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 8 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(5 + 10 / 12, "feet"),
  20198. weight: math.unit(252, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/bruun/front.svg",
  20202. extra: 197 / 187,
  20203. bottom: 0.012
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 10 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(6 + 10 / 12, "feet"),
  20220. weight: math.unit(255, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/alexeev/front.svg",
  20224. extra: 213 / 200,
  20225. bottom: 0.05
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(6 + 10 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(2 + 8 / 12, "feet"),
  20242. weight: math.unit(22, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/evelyn/front.svg",
  20246. extra: 208 / 180
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(2 + 8 / 12, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(5 + 9 / 12, "feet"),
  20263. weight: math.unit(139, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/inca/front.svg",
  20267. extra: 294 / 291,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(5 + 9 / 12, "feet"),
  20276. default: true
  20277. },
  20278. ]
  20279. ))
  20280. characterMakers.push(() => makeCharacter(
  20281. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20282. {
  20283. front: {
  20284. height: math.unit(6 + 3 / 12, "feet"),
  20285. weight: math.unit(185, "lb"),
  20286. name: "Front",
  20287. image: {
  20288. source: "./media/characters/mera/front.svg",
  20289. extra: 291 / 277,
  20290. bottom: 0.03
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(6 + 3 / 12, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(6 + 7 / 12, "feet"),
  20307. weight: math.unit(160, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/ceres/front.svg",
  20311. extra: 1023 / 950,
  20312. bottom: 0.027
  20313. }
  20314. },
  20315. back: {
  20316. height: math.unit(6 + 7 / 12, "feet"),
  20317. weight: math.unit(160, "lb"),
  20318. name: "Back",
  20319. image: {
  20320. source: "./media/characters/ceres/back.svg",
  20321. extra: 1023 / 950
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(6 + 7 / 12, "feet"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(5 + 10 / 12, "feet"),
  20338. weight: math.unit(150, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/kris/front.svg",
  20342. extra: 885 / 803,
  20343. bottom: 0.03
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(5 + 10 / 12, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20357. {
  20358. front: {
  20359. height: math.unit(7, "feet"),
  20360. weight: math.unit(120, "kg"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/taluthus/front.svg",
  20364. extra: 903 / 833,
  20365. bottom: 0.015
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(7, "feet"),
  20373. default: true
  20374. },
  20375. {
  20376. name: "Macro",
  20377. height: math.unit(300, "feet")
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(5 + 9 / 12, "feet"),
  20386. weight: math.unit(145, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/dawn/front.svg",
  20390. extra: 2094 / 2016,
  20391. bottom: 0.025
  20392. }
  20393. },
  20394. back: {
  20395. height: math.unit(5 + 9 / 12, "feet"),
  20396. weight: math.unit(160, "lb"),
  20397. name: "Back",
  20398. image: {
  20399. source: "./media/characters/dawn/back.svg",
  20400. extra: 2112 / 2080,
  20401. bottom: 0.005
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(6 + 7 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20415. {
  20416. anthro: {
  20417. height: math.unit(8 + 3 / 12, "feet"),
  20418. weight: math.unit(450, "lb"),
  20419. name: "Anthro",
  20420. image: {
  20421. source: "./media/characters/arador/anthro.svg",
  20422. extra: 1835 / 1718,
  20423. bottom: 0.025
  20424. }
  20425. },
  20426. feral: {
  20427. height: math.unit(4, "feet"),
  20428. weight: math.unit(200, "lb"),
  20429. name: "Feral",
  20430. image: {
  20431. source: "./media/characters/arador/feral.svg",
  20432. extra: 1683 / 1514,
  20433. bottom: 0.07
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(8 + 3 / 12, "feet")
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(82.5, "feet"),
  20445. default: true
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20451. {
  20452. front: {
  20453. height: math.unit(5 + 10 / 12, "feet"),
  20454. weight: math.unit(125, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/dharsi/front.svg",
  20458. extra: 716 / 630,
  20459. bottom: 0.035
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Nano",
  20466. height: math.unit(100, "nm")
  20467. },
  20468. {
  20469. name: "Micro",
  20470. height: math.unit(2, "inches")
  20471. },
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(5 + 10 / 12, "feet"),
  20475. default: true
  20476. },
  20477. {
  20478. name: "Macro",
  20479. height: math.unit(1000, "feet")
  20480. },
  20481. {
  20482. name: "Megamacro",
  20483. height: math.unit(10, "miles")
  20484. },
  20485. {
  20486. name: "Gigamacro",
  20487. height: math.unit(3000, "miles")
  20488. },
  20489. {
  20490. name: "Teramacro",
  20491. height: math.unit(500000, "miles")
  20492. },
  20493. {
  20494. name: "Teramacro+",
  20495. height: math.unit(30, "galaxies")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20501. {
  20502. front: {
  20503. height: math.unit(6, "feet"),
  20504. weight: math.unit(150, "lb"),
  20505. name: "Front",
  20506. image: {
  20507. source: "./media/characters/deathy/front.svg",
  20508. extra: 1552 / 1463,
  20509. bottom: 0.025
  20510. }
  20511. },
  20512. side: {
  20513. height: math.unit(6, "feet"),
  20514. weight: math.unit(150, "lb"),
  20515. name: "Side",
  20516. image: {
  20517. source: "./media/characters/deathy/side.svg",
  20518. extra: 1604 / 1455,
  20519. bottom: 0.025
  20520. }
  20521. },
  20522. back: {
  20523. height: math.unit(6, "feet"),
  20524. weight: math.unit(150, "lb"),
  20525. name: "Back",
  20526. image: {
  20527. source: "./media/characters/deathy/back.svg",
  20528. extra: 1580 / 1463,
  20529. bottom: 0.005
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(5, "millimeters")
  20537. },
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(6 + 5 / 12, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20547. {
  20548. front: {
  20549. height: math.unit(16, "feet"),
  20550. weight: math.unit(4000, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/juniper/front.svg",
  20554. bottom: 0.04
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(16, "feet"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(6, "feet"),
  20571. weight: math.unit(150, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/hipster/front.svg",
  20575. extra: 1312 / 1209,
  20576. bottom: 0.025
  20577. }
  20578. },
  20579. back: {
  20580. height: math.unit(6, "feet"),
  20581. weight: math.unit(150, "lb"),
  20582. name: "Back",
  20583. image: {
  20584. source: "./media/characters/hipster/back.svg",
  20585. extra: 1281 / 1196,
  20586. bottom: 0.01
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Micro",
  20593. height: math.unit(1, "mm")
  20594. },
  20595. {
  20596. name: "Normal",
  20597. height: math.unit(4, "inches"),
  20598. default: true
  20599. },
  20600. {
  20601. name: "Macro",
  20602. height: math.unit(500, "feet")
  20603. },
  20604. {
  20605. name: "Megamacro",
  20606. height: math.unit(1000, "miles")
  20607. },
  20608. ]
  20609. ))
  20610. characterMakers.push(() => makeCharacter(
  20611. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20612. {
  20613. front: {
  20614. height: math.unit(6, "feet"),
  20615. weight: math.unit(150, "lb"),
  20616. name: "Front",
  20617. image: {
  20618. source: "./media/characters/tendirmuldr/front.svg",
  20619. extra: 1878 / 1772,
  20620. bottom: 0.015
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Megamacro",
  20627. height: math.unit(1500, "miles"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20634. {
  20635. front: {
  20636. height: math.unit(14, "feet"),
  20637. weight: math.unit(12000, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/mort/front.svg",
  20641. extra: 365 / 318,
  20642. bottom: 0.01
  20643. }
  20644. },
  20645. side: {
  20646. height: math.unit(14, "feet"),
  20647. weight: math.unit(12000, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/mort/side.svg",
  20651. extra: 365 / 318,
  20652. bottom: 0.052
  20653. },
  20654. default: true
  20655. },
  20656. back: {
  20657. height: math.unit(14, "feet"),
  20658. weight: math.unit(12000, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/mort/back.svg",
  20662. extra: 371 / 332,
  20663. bottom: 0.18
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(14, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20677. {
  20678. front: {
  20679. height: math.unit(8, "feet"),
  20680. weight: math.unit(1, "ton"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/lycoa/front.svg",
  20684. extra: 1836/1728,
  20685. bottom: 81/1917
  20686. }
  20687. },
  20688. back: {
  20689. height: math.unit(8, "feet"),
  20690. weight: math.unit(1, "ton"),
  20691. name: "Back",
  20692. image: {
  20693. source: "./media/characters/lycoa/back.svg",
  20694. extra: 1785/1720,
  20695. bottom: 91/1876
  20696. }
  20697. },
  20698. head: {
  20699. height: math.unit(1.6243, "feet"),
  20700. name: "Head",
  20701. image: {
  20702. source: "./media/characters/lycoa/head.svg",
  20703. extra: 1011/782,
  20704. bottom: 0/1011
  20705. }
  20706. },
  20707. tailmaw: {
  20708. height: math.unit(1.9, "feet"),
  20709. name: "Tailmaw",
  20710. image: {
  20711. source: "./media/characters/lycoa/tailmaw.svg"
  20712. }
  20713. },
  20714. tentacles: {
  20715. height: math.unit(2.1, "feet"),
  20716. name: "Tentacles",
  20717. image: {
  20718. source: "./media/characters/lycoa/tentacles.svg"
  20719. }
  20720. },
  20721. dick: {
  20722. height: math.unit(1.73, "feet"),
  20723. name: "Dick",
  20724. image: {
  20725. source: "./media/characters/lycoa/dick.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(8, "feet"),
  20733. default: true
  20734. },
  20735. {
  20736. name: "Macro",
  20737. height: math.unit(30, "feet")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20743. {
  20744. front: {
  20745. height: math.unit(4 + 2 / 12, "feet"),
  20746. weight: math.unit(70, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/naldara/front.svg",
  20750. extra: 1664/1387,
  20751. bottom: 81/1745
  20752. },
  20753. form: "anthro",
  20754. default: true
  20755. },
  20756. naga: {
  20757. height: math.unit(20, "feet"),
  20758. weight: math.unit(15000, "kg"),
  20759. name: "Front",
  20760. image: {
  20761. source: "./media/characters/naldara/naga.svg",
  20762. extra: 1590/1396,
  20763. bottom: 285/1875
  20764. },
  20765. form: "naga",
  20766. default: true
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(4 + 2 / 12, "feet"),
  20773. form: "anthro",
  20774. default: true
  20775. },
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(20, "feet"),
  20779. form: "naga",
  20780. default: true
  20781. },
  20782. ],
  20783. {
  20784. "anthro": {
  20785. name: "Anthro",
  20786. default: true
  20787. },
  20788. "naga": {
  20789. name: "Naga"
  20790. }
  20791. }
  20792. ))
  20793. characterMakers.push(() => makeCharacter(
  20794. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20795. {
  20796. front: {
  20797. height: math.unit(13 + 7 / 12, "feet"),
  20798. weight: math.unit(1500, "lb"),
  20799. name: "Front",
  20800. image: {
  20801. source: "./media/characters/briar/front.svg",
  20802. extra: 1223/1157,
  20803. bottom: 123/1346
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(13 + 7 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20817. {
  20818. side: {
  20819. height: math.unit(16, "feet"),
  20820. weight: math.unit(500, "lb"),
  20821. name: "Side",
  20822. image: {
  20823. source: "./media/characters/vanguard/side.svg",
  20824. extra: 1022/914,
  20825. bottom: 30/1052
  20826. }
  20827. },
  20828. sideAlt: {
  20829. height: math.unit(10, "feet"),
  20830. weight: math.unit(500, "lb"),
  20831. name: "Side (Alt)",
  20832. image: {
  20833. source: "./media/characters/vanguard/side-alt.svg",
  20834. extra: 502 / 425,
  20835. bottom: 0.087
  20836. }
  20837. },
  20838. },
  20839. [
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(17.71, "feet"),
  20843. default: true
  20844. },
  20845. ]
  20846. ))
  20847. characterMakers.push(() => makeCharacter(
  20848. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20849. {
  20850. front: {
  20851. height: math.unit(7.5, "feet"),
  20852. weight: math.unit(2, "lb"),
  20853. name: "Front",
  20854. image: {
  20855. source: "./media/characters/artemis/work-safe-front.svg",
  20856. extra: 1192 / 1075,
  20857. bottom: 0.07
  20858. },
  20859. form: "work-safe",
  20860. default: true
  20861. },
  20862. frontNsfw: {
  20863. height: math.unit(7.5, "feet"),
  20864. weight: math.unit(2, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/artemis/calibrating-front.svg",
  20868. extra: 1192 / 1075,
  20869. bottom: 0.07
  20870. },
  20871. form: "calibrating",
  20872. default: true
  20873. },
  20874. frontNsfwer: {
  20875. height: math.unit(7.5, "feet"),
  20876. weight: math.unit(2, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/artemis/oversize-load-front.svg",
  20880. extra: 1192 / 1075,
  20881. bottom: 0.07
  20882. },
  20883. form: "oversize-load",
  20884. default: true
  20885. },
  20886. side: {
  20887. height: math.unit(7.5, "feet"),
  20888. weight: math.unit(2, "lb"),
  20889. name: "Side",
  20890. image: {
  20891. source: "./media/characters/artemis/work-safe-side.svg",
  20892. extra: 1192 / 1075,
  20893. bottom: 0.07
  20894. },
  20895. form: "work-safe"
  20896. },
  20897. sideNsfw: {
  20898. height: math.unit(7.5, "feet"),
  20899. weight: math.unit(2, "lb"),
  20900. name: "Side",
  20901. image: {
  20902. source: "./media/characters/artemis/calibrating-side.svg",
  20903. extra: 1192 / 1075,
  20904. bottom: 0.07
  20905. },
  20906. form: "calibrating"
  20907. },
  20908. sideNsfwer: {
  20909. height: math.unit(7.5, "feet"),
  20910. weight: math.unit(2, "lb"),
  20911. name: "Side",
  20912. image: {
  20913. source: "./media/characters/artemis/oversize-load-side.svg",
  20914. extra: 1192 / 1075,
  20915. bottom: 0.07
  20916. },
  20917. form: "oversize-load"
  20918. },
  20919. maw: {
  20920. height: math.unit(1.1, "feet"),
  20921. name: "Maw",
  20922. image: {
  20923. source: "./media/characters/artemis/maw.svg"
  20924. },
  20925. form: "work-safe"
  20926. },
  20927. stomach: {
  20928. height: math.unit(0.95, "feet"),
  20929. name: "Stomach",
  20930. image: {
  20931. source: "./media/characters/artemis/stomach.svg"
  20932. },
  20933. form: "work-safe"
  20934. },
  20935. dickCanine: {
  20936. height: math.unit(1, "feet"),
  20937. name: "Dick (Canine)",
  20938. image: {
  20939. source: "./media/characters/artemis/dick-canine.svg"
  20940. },
  20941. form: "calibrating"
  20942. },
  20943. dickEquine: {
  20944. height: math.unit(0.85, "feet"),
  20945. name: "Dick (Equine)",
  20946. image: {
  20947. source: "./media/characters/artemis/dick-equine.svg"
  20948. },
  20949. form: "calibrating"
  20950. },
  20951. dickExotic: {
  20952. height: math.unit(0.85, "feet"),
  20953. name: "Dick (Exotic)",
  20954. image: {
  20955. source: "./media/characters/artemis/dick-exotic.svg"
  20956. },
  20957. form: "calibrating"
  20958. },
  20959. dickCanineBigger: {
  20960. height: math.unit(1 * 1.33, "feet"),
  20961. name: "Dick (Canine)",
  20962. image: {
  20963. source: "./media/characters/artemis/dick-canine.svg"
  20964. },
  20965. form: "oversize-load"
  20966. },
  20967. dickEquineBigger: {
  20968. height: math.unit(0.85 * 1.33, "feet"),
  20969. name: "Dick (Equine)",
  20970. image: {
  20971. source: "./media/characters/artemis/dick-equine.svg"
  20972. },
  20973. form: "oversize-load"
  20974. },
  20975. dickExoticBigger: {
  20976. height: math.unit(0.85 * 1.33, "feet"),
  20977. name: "Dick (Exotic)",
  20978. image: {
  20979. source: "./media/characters/artemis/dick-exotic.svg"
  20980. },
  20981. form: "oversize-load"
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(7.5, "feet"),
  20988. form: "work-safe",
  20989. default: true
  20990. },
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(7.5, "feet"),
  20994. form: "calibrating",
  20995. default: true
  20996. },
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(7.5, "feet"),
  21000. form: "oversize-load",
  21001. default: true
  21002. },
  21003. {
  21004. name: "Enlarged",
  21005. height: math.unit(12, "feet"),
  21006. form: "work-safe",
  21007. },
  21008. {
  21009. name: "Enlarged",
  21010. height: math.unit(12, "feet"),
  21011. form: "calibrating",
  21012. },
  21013. {
  21014. name: "Enlarged",
  21015. height: math.unit(12, "feet"),
  21016. form: "oversize-load",
  21017. },
  21018. ],
  21019. {
  21020. "work-safe": {
  21021. name: "Work-Safe",
  21022. default: true
  21023. },
  21024. "calibrating": {
  21025. name: "Calibrating"
  21026. },
  21027. "oversize-load": {
  21028. name: "Oversize Load"
  21029. }
  21030. }
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(5 + 3 / 12, "feet"),
  21037. weight: math.unit(160, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/kira/front.svg",
  21041. extra: 906 / 786,
  21042. bottom: 0.01
  21043. }
  21044. },
  21045. back: {
  21046. height: math.unit(5 + 3 / 12, "feet"),
  21047. weight: math.unit(160, "lb"),
  21048. name: "Back",
  21049. image: {
  21050. source: "./media/characters/kira/back.svg",
  21051. extra: 882 / 757,
  21052. bottom: 0.005
  21053. }
  21054. },
  21055. frontDressed: {
  21056. height: math.unit(5 + 3 / 12, "feet"),
  21057. weight: math.unit(160, "lb"),
  21058. name: "Front (Dressed)",
  21059. image: {
  21060. source: "./media/characters/kira/front-dressed.svg",
  21061. extra: 906 / 786,
  21062. bottom: 0.01
  21063. }
  21064. },
  21065. beans: {
  21066. height: math.unit(0.92, "feet"),
  21067. name: "Beans",
  21068. image: {
  21069. source: "./media/characters/kira/beans.svg"
  21070. }
  21071. },
  21072. },
  21073. [
  21074. {
  21075. name: "Normal",
  21076. height: math.unit(5 + 3 / 12, "feet"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21083. {
  21084. front: {
  21085. height: math.unit(5 + 4 / 12, "feet"),
  21086. weight: math.unit(145, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/scramble/front.svg",
  21090. extra: 763 / 727,
  21091. bottom: 0.05
  21092. }
  21093. },
  21094. back: {
  21095. height: math.unit(5 + 4 / 12, "feet"),
  21096. weight: math.unit(145, "lb"),
  21097. name: "Back",
  21098. image: {
  21099. source: "./media/characters/scramble/back.svg",
  21100. extra: 826 / 737,
  21101. bottom: 0.002
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(5 + 4 / 12, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21115. {
  21116. side: {
  21117. height: math.unit(6 + 2 / 12, "feet"),
  21118. weight: math.unit(190, "lb"),
  21119. name: "Side",
  21120. image: {
  21121. source: "./media/characters/biscuit/side.svg",
  21122. extra: 858 / 791,
  21123. bottom: 0.044
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(6 + 2 / 12, "feet"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21137. {
  21138. front: {
  21139. height: math.unit(5 + 2 / 12, "feet"),
  21140. weight: math.unit(120, "lb"),
  21141. name: "Front",
  21142. image: {
  21143. source: "./media/characters/poffin/front.svg",
  21144. extra: 786 / 680,
  21145. bottom: 0.005
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Normal",
  21152. height: math.unit(5 + 2 / 12, "feet"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(6 + 3 / 12, "feet"),
  21162. weight: math.unit(519, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/dhari/front.svg",
  21166. extra: 1048 / 946,
  21167. bottom: 0.015
  21168. }
  21169. },
  21170. back: {
  21171. height: math.unit(6 + 3 / 12, "feet"),
  21172. weight: math.unit(519, "lb"),
  21173. name: "Back",
  21174. image: {
  21175. source: "./media/characters/dhari/back.svg",
  21176. extra: 1048 / 931,
  21177. bottom: 0.005
  21178. }
  21179. },
  21180. frontDressed: {
  21181. height: math.unit(6 + 3 / 12, "feet"),
  21182. weight: math.unit(519, "lb"),
  21183. name: "Front (Dressed)",
  21184. image: {
  21185. source: "./media/characters/dhari/front-dressed.svg",
  21186. extra: 1713 / 1546,
  21187. bottom: 0.02
  21188. }
  21189. },
  21190. backDressed: {
  21191. height: math.unit(6 + 3 / 12, "feet"),
  21192. weight: math.unit(519, "lb"),
  21193. name: "Back (Dressed)",
  21194. image: {
  21195. source: "./media/characters/dhari/back-dressed.svg",
  21196. extra: 1699 / 1537,
  21197. bottom: 0.01
  21198. }
  21199. },
  21200. maw: {
  21201. height: math.unit(0.95, "feet"),
  21202. name: "Maw",
  21203. image: {
  21204. source: "./media/characters/dhari/maw.svg"
  21205. }
  21206. },
  21207. wereFront: {
  21208. height: math.unit(12 + 8 / 12, "feet"),
  21209. weight: math.unit(4000, "lb"),
  21210. name: "Front (Were)",
  21211. image: {
  21212. source: "./media/characters/dhari/were-front.svg",
  21213. extra: 1065 / 969,
  21214. bottom: 0.015
  21215. }
  21216. },
  21217. wereBack: {
  21218. height: math.unit(12 + 8 / 12, "feet"),
  21219. weight: math.unit(4000, "lb"),
  21220. name: "Back (Were)",
  21221. image: {
  21222. source: "./media/characters/dhari/were-back.svg",
  21223. extra: 1065 / 969,
  21224. bottom: 0.012
  21225. }
  21226. },
  21227. wereMaw: {
  21228. height: math.unit(0.625, "meters"),
  21229. name: "Maw (Were)",
  21230. image: {
  21231. source: "./media/characters/dhari/were-maw.svg"
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(6 + 3 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21245. {
  21246. anthro: {
  21247. height: math.unit(5 + 7 / 12, "feet"),
  21248. weight: math.unit(175, "lb"),
  21249. name: "Anthro",
  21250. image: {
  21251. source: "./media/characters/rena-dyne/anthro.svg",
  21252. extra: 1849 / 1785,
  21253. bottom: 0.005
  21254. }
  21255. },
  21256. taur: {
  21257. height: math.unit(15 + 6 / 12, "feet"),
  21258. weight: math.unit(8000, "lb"),
  21259. name: "Taur",
  21260. image: {
  21261. source: "./media/characters/rena-dyne/taur.svg",
  21262. extra: 2315 / 2234,
  21263. bottom: 0.033
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(5 + 7 / 12, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(8, "feet"),
  21280. weight: math.unit(600, "lb"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/weremeep/front.svg",
  21284. extra: 967 / 862,
  21285. bottom: 0.01
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(8, "feet"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Lorg",
  21297. height: math.unit(12, "feet")
  21298. },
  21299. {
  21300. name: "Oh Lawd She Comin'",
  21301. height: math.unit(20, "feet")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21307. {
  21308. front: {
  21309. height: math.unit(4, "feet"),
  21310. weight: math.unit(90, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/reza/front.svg",
  21314. extra: 1183 / 1111,
  21315. bottom: 0.017
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(4, "feet"),
  21320. weight: math.unit(90, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/reza/back.svg",
  21324. extra: 1183 / 1111,
  21325. bottom: 0.01
  21326. }
  21327. },
  21328. drake: {
  21329. height: math.unit(30, "feet"),
  21330. weight: math.unit(246960, "lb"),
  21331. name: "Drake",
  21332. image: {
  21333. source: "./media/characters/reza/drake.svg",
  21334. extra: 2350 / 2024,
  21335. bottom: 60.7 / 2403
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(4, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21349. {
  21350. side: {
  21351. height: math.unit(15, "feet"),
  21352. weight: math.unit(14, "tons"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/athea/side.svg",
  21356. extra: 960 / 540,
  21357. bottom: 0.003
  21358. }
  21359. },
  21360. sitting: {
  21361. height: math.unit(6 * 2.85, "feet"),
  21362. weight: math.unit(14, "tons"),
  21363. name: "Sitting",
  21364. image: {
  21365. source: "./media/characters/athea/sitting.svg",
  21366. extra: 621 / 581,
  21367. bottom: 0.075
  21368. }
  21369. },
  21370. maw: {
  21371. height: math.unit(7.59498031496063, "feet"),
  21372. name: "Maw",
  21373. image: {
  21374. source: "./media/characters/athea/maw.svg"
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Lap Cat",
  21381. height: math.unit(2.5, "feet")
  21382. },
  21383. {
  21384. name: "Minimacro",
  21385. height: math.unit(15, "feet"),
  21386. default: true
  21387. },
  21388. {
  21389. name: "Macro",
  21390. height: math.unit(120, "feet")
  21391. },
  21392. {
  21393. name: "Macro+",
  21394. height: math.unit(640, "feet")
  21395. },
  21396. {
  21397. name: "Colossus",
  21398. height: math.unit(2.2, "miles")
  21399. },
  21400. ]
  21401. ))
  21402. characterMakers.push(() => makeCharacter(
  21403. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21404. {
  21405. front: {
  21406. height: math.unit(8 + 8 / 12, "feet"),
  21407. weight: math.unit(130, "kg"),
  21408. name: "Front",
  21409. image: {
  21410. source: "./media/characters/seroko/front.svg",
  21411. extra: 1385 / 1280,
  21412. bottom: 0.025
  21413. }
  21414. },
  21415. back: {
  21416. height: math.unit(8 + 8 / 12, "feet"),
  21417. weight: math.unit(130, "kg"),
  21418. name: "Back",
  21419. image: {
  21420. source: "./media/characters/seroko/back.svg",
  21421. extra: 1369 / 1238,
  21422. bottom: 0.018
  21423. }
  21424. },
  21425. frontDressed: {
  21426. height: math.unit(8 + 8 / 12, "feet"),
  21427. weight: math.unit(130, "kg"),
  21428. name: "Front (Dressed)",
  21429. image: {
  21430. source: "./media/characters/seroko/front-dressed.svg",
  21431. extra: 1366 / 1275,
  21432. bottom: 0.03
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(8 + 8 / 12, "feet"),
  21440. default: true
  21441. },
  21442. ]
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(5.5, "feet"),
  21449. weight: math.unit(160, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/quatzi/front.svg",
  21453. extra: 2346 / 2242,
  21454. bottom: 0.015
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Normal",
  21461. height: math.unit(5.5, "feet"),
  21462. default: true
  21463. },
  21464. {
  21465. name: "Big",
  21466. height: math.unit(7.7, "feet")
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(5 + 11 / 12, "feet"),
  21475. weight: math.unit(180, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/sen/front.svg",
  21479. extra: 1321 / 1254,
  21480. bottom: 0.015
  21481. }
  21482. },
  21483. side: {
  21484. height: math.unit(5 + 11 / 12, "feet"),
  21485. weight: math.unit(180, "lb"),
  21486. name: "Side",
  21487. image: {
  21488. source: "./media/characters/sen/side.svg",
  21489. extra: 1321 / 1254,
  21490. bottom: 0.007
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(5 + 11 / 12, "feet"),
  21495. weight: math.unit(180, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/sen/back.svg",
  21499. extra: 1321 / 1254
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(5 + 11 / 12, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(166.6, "cm"),
  21516. weight: math.unit(66.6, "kg"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/fruity/front.svg",
  21520. extra: 1510 / 1386,
  21521. bottom: 0.04
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(166.6, "cm"),
  21526. weight: math.unit(66.6, "lb"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/fruity/back.svg",
  21530. extra: 1563 / 1435,
  21531. bottom: 0.005
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Normal",
  21538. height: math.unit(166.6, "cm"),
  21539. default: true
  21540. },
  21541. {
  21542. name: "Demonic",
  21543. height: math.unit(166.6, "feet")
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21549. {
  21550. side: {
  21551. height: math.unit(10, "feet"),
  21552. weight: math.unit(500, "lb"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/zost/side.svg",
  21556. extra: 2870/2533,
  21557. bottom: 252/3122
  21558. }
  21559. },
  21560. mawFront: {
  21561. height: math.unit(1.08, "meters"),
  21562. name: "Maw (Front)",
  21563. image: {
  21564. source: "./media/characters/zost/maw-front.svg"
  21565. }
  21566. },
  21567. mawSide: {
  21568. height: math.unit(2.66, "feet"),
  21569. name: "Maw (Side)",
  21570. image: {
  21571. source: "./media/characters/zost/maw-side.svg"
  21572. }
  21573. },
  21574. wingspan: {
  21575. height: math.unit(7.4, "feet"),
  21576. name: "Wingspan",
  21577. image: {
  21578. source: "./media/characters/zost/wingspan.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(10, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(5 + 4 / 12, "feet"),
  21595. weight: math.unit(120, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/luci/front.svg",
  21599. extra: 1985 / 1884,
  21600. bottom: 0.04
  21601. }
  21602. },
  21603. back: {
  21604. height: math.unit(5 + 4 / 12, "feet"),
  21605. weight: math.unit(120, "lb"),
  21606. name: "Back",
  21607. image: {
  21608. source: "./media/characters/luci/back.svg",
  21609. extra: 1892 / 1791,
  21610. bottom: 0.002
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(5 + 4 / 12, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(1500, "feet"),
  21627. weight: math.unit(3.8e6, "tons"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/2th/front.svg",
  21631. extra: 3489 / 3350,
  21632. bottom: 0.1
  21633. }
  21634. },
  21635. foot: {
  21636. height: math.unit(461, "feet"),
  21637. name: "Foot",
  21638. image: {
  21639. source: "./media/characters/2th/foot.svg"
  21640. }
  21641. },
  21642. },
  21643. [
  21644. {
  21645. name: "\"Micro\"",
  21646. height: math.unit(15 + 7 / 12, "feet")
  21647. },
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(1500, "feet"),
  21651. default: true
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(5000, "feet")
  21656. },
  21657. {
  21658. name: "Megamacro",
  21659. height: math.unit(15, "miles")
  21660. },
  21661. {
  21662. name: "Gigamacro",
  21663. height: math.unit(4000, "miles")
  21664. },
  21665. {
  21666. name: "Galactic",
  21667. height: math.unit(50, "AU")
  21668. },
  21669. ]
  21670. ))
  21671. characterMakers.push(() => makeCharacter(
  21672. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21673. {
  21674. front: {
  21675. height: math.unit(5 + 6 / 12, "feet"),
  21676. weight: math.unit(220, "lb"),
  21677. name: "Front",
  21678. image: {
  21679. source: "./media/characters/amethyst/front.svg",
  21680. extra: 2078 / 2040,
  21681. bottom: 0.045
  21682. }
  21683. },
  21684. back: {
  21685. height: math.unit(5 + 6 / 12, "feet"),
  21686. weight: math.unit(220, "lb"),
  21687. name: "Back",
  21688. image: {
  21689. source: "./media/characters/amethyst/back.svg",
  21690. extra: 2021 / 1989,
  21691. bottom: 0.02
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(5 + 6 / 12, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(4 + 11 / 12, "feet"),
  21708. weight: math.unit(120, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/yumi-akiyama/front.svg",
  21712. extra: 1327 / 1235,
  21713. bottom: 0.02
  21714. }
  21715. },
  21716. back: {
  21717. height: math.unit(4 + 11 / 12, "feet"),
  21718. weight: math.unit(120, "lb"),
  21719. name: "Back",
  21720. image: {
  21721. source: "./media/characters/yumi-akiyama/back.svg",
  21722. extra: 1287 / 1245,
  21723. bottom: 0.002
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Galactic",
  21730. height: math.unit(50, "galaxies"),
  21731. default: true
  21732. },
  21733. {
  21734. name: "Universal",
  21735. height: math.unit(100, "universes")
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(8, "feet"),
  21744. weight: math.unit(500, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/rifter-yrmori/front.svg",
  21748. extra: 1180 / 1125,
  21749. bottom: 0.02
  21750. }
  21751. },
  21752. back: {
  21753. height: math.unit(8, "feet"),
  21754. weight: math.unit(500, "lb"),
  21755. name: "Back",
  21756. image: {
  21757. source: "./media/characters/rifter-yrmori/back.svg",
  21758. extra: 1190 / 1145,
  21759. bottom: 0.001
  21760. }
  21761. },
  21762. wings: {
  21763. height: math.unit(7.75, "feet"),
  21764. weight: math.unit(500, "lb"),
  21765. name: "Wings",
  21766. image: {
  21767. source: "./media/characters/rifter-yrmori/wings.svg",
  21768. extra: 1357 / 1285
  21769. }
  21770. },
  21771. maw: {
  21772. height: math.unit(0.8, "feet"),
  21773. name: "Maw",
  21774. image: {
  21775. source: "./media/characters/rifter-yrmori/maw.svg"
  21776. }
  21777. },
  21778. mawfront: {
  21779. height: math.unit(1.45, "feet"),
  21780. name: "Maw (Front)",
  21781. image: {
  21782. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(8, "feet"),
  21790. default: true
  21791. },
  21792. {
  21793. name: "Macro",
  21794. height: math.unit(42, "meters")
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21800. {
  21801. were: {
  21802. height: math.unit(25 + 6 / 12, "feet"),
  21803. weight: math.unit(10000, "lb"),
  21804. name: "Were",
  21805. image: {
  21806. source: "./media/characters/tahajin/were.svg",
  21807. extra: 801 / 770,
  21808. bottom: 0.042
  21809. }
  21810. },
  21811. aquatic: {
  21812. height: math.unit(6 + 4 / 12, "feet"),
  21813. weight: math.unit(160, "lb"),
  21814. name: "Aquatic",
  21815. image: {
  21816. source: "./media/characters/tahajin/aquatic.svg",
  21817. extra: 572 / 542,
  21818. bottom: 0.04
  21819. }
  21820. },
  21821. chow: {
  21822. height: math.unit(8 + 11 / 12, "feet"),
  21823. weight: math.unit(450, "lb"),
  21824. name: "Chow",
  21825. image: {
  21826. source: "./media/characters/tahajin/chow.svg",
  21827. extra: 660 / 640,
  21828. bottom: 0.015
  21829. }
  21830. },
  21831. demiNaga: {
  21832. height: math.unit(6 + 8 / 12, "feet"),
  21833. weight: math.unit(300, "lb"),
  21834. name: "Demi Naga",
  21835. image: {
  21836. source: "./media/characters/tahajin/demi-naga.svg",
  21837. extra: 643 / 615,
  21838. bottom: 0.1
  21839. }
  21840. },
  21841. data: {
  21842. height: math.unit(5, "inches"),
  21843. weight: math.unit(0.1, "lb"),
  21844. name: "Data",
  21845. image: {
  21846. source: "./media/characters/tahajin/data.svg"
  21847. }
  21848. },
  21849. fluu: {
  21850. height: math.unit(5 + 7 / 12, "feet"),
  21851. weight: math.unit(140, "lb"),
  21852. name: "Fluu",
  21853. image: {
  21854. source: "./media/characters/tahajin/fluu.svg",
  21855. extra: 628 / 592,
  21856. bottom: 0.02
  21857. }
  21858. },
  21859. starWarrior: {
  21860. height: math.unit(4 + 5 / 12, "feet"),
  21861. weight: math.unit(50, "lb"),
  21862. name: "Star Warrior",
  21863. image: {
  21864. source: "./media/characters/tahajin/star-warrior.svg"
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(25 + 6 / 12, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(8, "feet"),
  21881. weight: math.unit(350, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/gabira/front.svg",
  21885. extra: 608 / 580,
  21886. bottom: 0.03
  21887. }
  21888. },
  21889. back: {
  21890. height: math.unit(8, "feet"),
  21891. weight: math.unit(350, "lb"),
  21892. name: "Back",
  21893. image: {
  21894. source: "./media/characters/gabira/back.svg",
  21895. extra: 608 / 580,
  21896. bottom: 0.03
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(8, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(5 + 3 / 12, "feet"),
  21913. weight: math.unit(137, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/sasha-katraine/front.svg",
  21917. bottom: 0.045
  21918. }
  21919. },
  21920. },
  21921. [
  21922. {
  21923. name: "Micro",
  21924. height: math.unit(5, "inches")
  21925. },
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 3 / 12, "feet"),
  21929. default: true
  21930. },
  21931. ]
  21932. ))
  21933. characterMakers.push(() => makeCharacter(
  21934. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21935. {
  21936. side: {
  21937. height: math.unit(4, "inches"),
  21938. weight: math.unit(200, "grams"),
  21939. name: "Side",
  21940. image: {
  21941. source: "./media/characters/der/side.svg",
  21942. extra: 719 / 400,
  21943. bottom: 30.6 / 749.9187
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Micro",
  21950. height: math.unit(4, "inches"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21957. {
  21958. side: {
  21959. height: math.unit(30, "meters"),
  21960. weight: math.unit(700, "tonnes"),
  21961. name: "Side",
  21962. image: {
  21963. source: "./media/characters/fixerdragon/side.svg",
  21964. extra: (1293.0514 - 116.03) / 1106.86,
  21965. bottom: 116.03 / 1293.0514
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Planck",
  21972. height: math.unit(1.6e-35, "meters")
  21973. },
  21974. {
  21975. name: "Micro",
  21976. height: math.unit(0.4, "meters")
  21977. },
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(30, "meters"),
  21981. default: true
  21982. },
  21983. {
  21984. name: "Megamacro",
  21985. height: math.unit(1.2, "megameters")
  21986. },
  21987. {
  21988. name: "Teramacro",
  21989. height: math.unit(130, "terameters")
  21990. },
  21991. {
  21992. name: "Yottamacro",
  21993. height: math.unit(6200, "yottameters")
  21994. },
  21995. ]
  21996. ));
  21997. characterMakers.push(() => makeCharacter(
  21998. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21999. {
  22000. front: {
  22001. height: math.unit(8, "feet"),
  22002. weight: math.unit(250, "lb"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/kite/front.svg",
  22006. extra: 2796 / 2659,
  22007. bottom: 0.002
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(8, "feet"),
  22015. default: true
  22016. },
  22017. {
  22018. name: "Macro",
  22019. height: math.unit(360, "feet")
  22020. },
  22021. {
  22022. name: "Megamacro",
  22023. height: math.unit(1500, "feet")
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(5 + 11/12, "feet"),
  22032. weight: math.unit(170, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/poojawa-vynar/front.svg",
  22036. extra: 1735/1585,
  22037. bottom: 96/1831
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(5 + 11/12, "feet"),
  22042. weight: math.unit(170, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/poojawa-vynar/back.svg",
  22046. extra: 1749/1607,
  22047. bottom: 28/1777
  22048. }
  22049. },
  22050. male: {
  22051. height: math.unit(5 + 11/12, "feet"),
  22052. weight: math.unit(170, "lb"),
  22053. name: "Male",
  22054. image: {
  22055. source: "./media/characters/poojawa-vynar/male.svg",
  22056. extra: 1855/1713,
  22057. bottom: 63/1918
  22058. }
  22059. },
  22060. taur: {
  22061. height: math.unit(5 + 11/12, "feet"),
  22062. weight: math.unit(170, "lb"),
  22063. name: "Taur",
  22064. image: {
  22065. source: "./media/characters/poojawa-vynar/taur.svg",
  22066. extra: 1151/1059,
  22067. bottom: 356/1507
  22068. }
  22069. },
  22070. frontDressed: {
  22071. height: math.unit(5 + 11/12, "feet"),
  22072. weight: math.unit(170, "lb"),
  22073. name: "Front (Dressed)",
  22074. image: {
  22075. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22076. extra: 1735/1585,
  22077. bottom: 96/1831
  22078. }
  22079. },
  22080. backDressed: {
  22081. height: math.unit(5 + 11/12, "feet"),
  22082. weight: math.unit(170, "lb"),
  22083. name: "Back (Dressed)",
  22084. image: {
  22085. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22086. extra: 1749/1607,
  22087. bottom: 28/1777
  22088. }
  22089. },
  22090. maleDressed: {
  22091. height: math.unit(5 + 11/12, "feet"),
  22092. weight: math.unit(170, "lb"),
  22093. name: "Male (Dressed)",
  22094. image: {
  22095. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22096. extra: 1855/1713,
  22097. bottom: 63/1918
  22098. }
  22099. },
  22100. taurDressed: {
  22101. height: math.unit(5 + 11/12, "feet"),
  22102. weight: math.unit(170, "lb"),
  22103. name: "Taur (Dressed)",
  22104. image: {
  22105. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22106. extra: 1151/1059,
  22107. bottom: 356/1507
  22108. }
  22109. },
  22110. maw: {
  22111. height: math.unit(1.46, "feet"),
  22112. name: "Maw",
  22113. image: {
  22114. source: "./media/characters/poojawa-vynar/maw.svg"
  22115. }
  22116. },
  22117. head: {
  22118. height: math.unit(2.34, "feet"),
  22119. name: "Head",
  22120. image: {
  22121. source: "./media/characters/poojawa-vynar/head.svg"
  22122. }
  22123. },
  22124. paw: {
  22125. height: math.unit(1.61, "feet"),
  22126. name: "Paw",
  22127. image: {
  22128. source: "./media/characters/poojawa-vynar/paw.svg"
  22129. }
  22130. },
  22131. pawToering: {
  22132. height: math.unit(1.72, "feet"),
  22133. name: "Paw (Toering)",
  22134. image: {
  22135. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22136. }
  22137. },
  22138. toering: {
  22139. height: math.unit(2.9, "inches"),
  22140. name: "Toering",
  22141. image: {
  22142. source: "./media/characters/poojawa-vynar/toering.svg"
  22143. }
  22144. },
  22145. shaft: {
  22146. height: math.unit(0.625, "feet"),
  22147. name: "Shaft",
  22148. image: {
  22149. source: "./media/characters/poojawa-vynar/shaft.svg"
  22150. }
  22151. },
  22152. spade: {
  22153. height: math.unit(0.42, "feet"),
  22154. name: "Spade",
  22155. image: {
  22156. source: "./media/characters/poojawa-vynar/spade.svg"
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Shortstack",
  22163. height: math.unit(4, "feet")
  22164. },
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(5 + 11 / 12, "feet"),
  22168. default: true
  22169. },
  22170. {
  22171. name: "Tauric",
  22172. height: math.unit(4, "meters")
  22173. },
  22174. ]
  22175. ))
  22176. characterMakers.push(() => makeCharacter(
  22177. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22178. {
  22179. front: {
  22180. height: math.unit(293, "meters"),
  22181. weight: math.unit(70400, "tons"),
  22182. name: "Front",
  22183. image: {
  22184. source: "./media/characters/violette/front.svg",
  22185. extra: 1227 / 1180,
  22186. bottom: 0.005
  22187. }
  22188. },
  22189. back: {
  22190. height: math.unit(293, "meters"),
  22191. weight: math.unit(70400, "tons"),
  22192. name: "Back",
  22193. image: {
  22194. source: "./media/characters/violette/back.svg",
  22195. extra: 1227 / 1180,
  22196. bottom: 0.005
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(293, "meters"),
  22204. default: true
  22205. },
  22206. ]
  22207. ))
  22208. characterMakers.push(() => makeCharacter(
  22209. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22210. {
  22211. front: {
  22212. height: math.unit(1050, "feet"),
  22213. weight: math.unit(200000, "tons"),
  22214. name: "Front",
  22215. image: {
  22216. source: "./media/characters/alessandra/front.svg",
  22217. extra: 960 / 912,
  22218. bottom: 0.06
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(1050, "feet")
  22226. },
  22227. {
  22228. name: "Macro+",
  22229. height: math.unit(900, "meters"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(5, "feet"),
  22239. weight: math.unit(187, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/person/front.svg",
  22243. extra: 3087 / 2945,
  22244. bottom: 91 / 3181
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Micro",
  22251. height: math.unit(3, "inches")
  22252. },
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5, "feet"),
  22256. default: true
  22257. },
  22258. {
  22259. name: "Macro",
  22260. height: math.unit(90, "feet")
  22261. },
  22262. {
  22263. name: "Max Size",
  22264. height: math.unit(280, "feet")
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(4.5, "meters"),
  22273. weight: math.unit(3200, "lb"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/ty/front.svg",
  22277. extra: 1038 / 960,
  22278. bottom: 31.156 / 1068
  22279. }
  22280. },
  22281. back: {
  22282. height: math.unit(4.5, "meters"),
  22283. weight: math.unit(3200, "lb"),
  22284. name: "Back",
  22285. image: {
  22286. source: "./media/characters/ty/back.svg",
  22287. extra: 1044 / 966,
  22288. bottom: 7.48 / 1049
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(4.5, "meters"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 4 / 12, "feet"),
  22305. weight: math.unit(115, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/rocky/front.svg",
  22309. extra: 1012 / 975,
  22310. bottom: 54 / 1066
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(5 + 4 / 12, "feet"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22324. {
  22325. upright: {
  22326. height: math.unit(6, "meters"),
  22327. weight: math.unit(4000, "kg"),
  22328. name: "Upright",
  22329. image: {
  22330. source: "./media/characters/ruin/upright.svg",
  22331. extra: 668 / 661,
  22332. bottom: 42 / 799.8396
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(6, "meters"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(5, "feet"),
  22349. weight: math.unit(106, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/robin/front.svg",
  22353. extra: 862 / 799,
  22354. bottom: 42.4 / 914.8856
  22355. }
  22356. },
  22357. },
  22358. [
  22359. {
  22360. name: "Normal",
  22361. height: math.unit(5, "feet"),
  22362. default: true
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22368. {
  22369. side: {
  22370. height: math.unit(3, "feet"),
  22371. weight: math.unit(225, "lb"),
  22372. name: "Side",
  22373. image: {
  22374. source: "./media/characters/saian/side.svg",
  22375. extra: 566 / 356,
  22376. bottom: 79.7 / 643
  22377. }
  22378. },
  22379. maw: {
  22380. height: math.unit(2.85, "feet"),
  22381. name: "Maw",
  22382. image: {
  22383. source: "./media/characters/saian/maw.svg"
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(3, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22397. {
  22398. side: {
  22399. height: math.unit(8, "feet"),
  22400. weight: math.unit(300, "lb"),
  22401. name: "Side",
  22402. image: {
  22403. source: "./media/characters/equus-silvermane/side.svg",
  22404. extra: 2176 / 2050,
  22405. bottom: 65.7 / 2245
  22406. }
  22407. },
  22408. front: {
  22409. height: math.unit(8, "feet"),
  22410. weight: math.unit(300, "lb"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/equus-silvermane/front.svg",
  22414. extra: 4633 / 4400,
  22415. bottom: 71.3 / 4706.915
  22416. }
  22417. },
  22418. sideStepping: {
  22419. height: math.unit(8, "feet"),
  22420. weight: math.unit(300, "lb"),
  22421. name: "Side (Stepping)",
  22422. image: {
  22423. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22424. extra: 1968 / 1860,
  22425. bottom: 16.4 / 1989
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(8, "feet")
  22433. },
  22434. {
  22435. name: "Minimacro",
  22436. height: math.unit(75, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Macro",
  22441. height: math.unit(150, "feet")
  22442. },
  22443. {
  22444. name: "Macro+",
  22445. height: math.unit(1000, "feet")
  22446. },
  22447. {
  22448. name: "Megamacro",
  22449. height: math.unit(1, "mile")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22455. {
  22456. side: {
  22457. height: math.unit(20, "feet"),
  22458. weight: math.unit(30000, "kg"),
  22459. name: "Side",
  22460. image: {
  22461. source: "./media/characters/windar/side.svg",
  22462. extra: 1491 / 1248,
  22463. bottom: 82.56 / 1568
  22464. }
  22465. },
  22466. },
  22467. [
  22468. {
  22469. name: "Normal",
  22470. height: math.unit(20, "feet"),
  22471. default: true
  22472. },
  22473. ]
  22474. ))
  22475. characterMakers.push(() => makeCharacter(
  22476. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22477. {
  22478. side: {
  22479. height: math.unit(15.66, "feet"),
  22480. weight: math.unit(150, "lb"),
  22481. name: "Side",
  22482. image: {
  22483. source: "./media/characters/melody/side.svg",
  22484. extra: 1097 / 944,
  22485. bottom: 11.8 / 1109
  22486. }
  22487. },
  22488. sideOutfit: {
  22489. height: math.unit(15.66, "feet"),
  22490. weight: math.unit(150, "lb"),
  22491. name: "Side (Outfit)",
  22492. image: {
  22493. source: "./media/characters/melody/side-outfit.svg",
  22494. extra: 1097 / 944,
  22495. bottom: 11.8 / 1109
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(15.66, "feet"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22509. {
  22510. front: {
  22511. height: math.unit(8, "feet"),
  22512. weight: math.unit(325, "lb"),
  22513. name: "Front",
  22514. image: {
  22515. source: "./media/characters/windera/front.svg",
  22516. extra: 3180 / 2845,
  22517. bottom: 178 / 3365
  22518. }
  22519. },
  22520. },
  22521. [
  22522. {
  22523. name: "Normal",
  22524. height: math.unit(8, "feet"),
  22525. default: true
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22531. {
  22532. front: {
  22533. height: math.unit(28.75, "feet"),
  22534. weight: math.unit(2000, "kg"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/sonear/front.svg",
  22538. extra: 1041.1 / 964.9,
  22539. bottom: 53.7 / 1096.6
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(28.75, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22553. {
  22554. side: {
  22555. height: math.unit(25.5, "feet"),
  22556. weight: math.unit(23000, "kg"),
  22557. name: "Side",
  22558. image: {
  22559. source: "./media/characters/kanara/side.svg"
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Normal",
  22566. height: math.unit(25.5, "feet"),
  22567. default: true
  22568. },
  22569. ]
  22570. ))
  22571. characterMakers.push(() => makeCharacter(
  22572. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22573. {
  22574. side: {
  22575. height: math.unit(10, "feet"),
  22576. weight: math.unit(1000, "kg"),
  22577. name: "Side",
  22578. image: {
  22579. source: "./media/characters/ereus/side.svg",
  22580. extra: 1157 / 959,
  22581. bottom: 153 / 1312.5
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(10, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22595. {
  22596. side: {
  22597. height: math.unit(4.5, "feet"),
  22598. weight: math.unit(500, "lb"),
  22599. name: "Side",
  22600. image: {
  22601. source: "./media/characters/e-ter/side.svg",
  22602. extra: 1550 / 1248,
  22603. bottom: 146 / 1694
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(4.5, "feet"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22617. {
  22618. side: {
  22619. height: math.unit(9.7, "feet"),
  22620. weight: math.unit(4000, "kg"),
  22621. name: "Side",
  22622. image: {
  22623. source: "./media/characters/yamie/side.svg"
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(9.7, "feet"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22637. {
  22638. front: {
  22639. height: math.unit(50, "feet"),
  22640. weight: math.unit(50000, "kg"),
  22641. name: "Front",
  22642. image: {
  22643. source: "./media/characters/anders/front.svg",
  22644. extra: 570 / 539,
  22645. bottom: 14.7 / 586.7
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Large",
  22652. height: math.unit(50, "feet")
  22653. },
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(2000, "feet"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Megamacro",
  22661. height: math.unit(12, "miles")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22667. {
  22668. front: {
  22669. height: math.unit(7 + 2 / 12, "feet"),
  22670. weight: math.unit(300, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/reban/front.svg",
  22674. extra: 1287/1212,
  22675. bottom: 148/1435
  22676. }
  22677. },
  22678. head: {
  22679. height: math.unit(1.95, "feet"),
  22680. name: "Head",
  22681. image: {
  22682. source: "./media/characters/reban/head.svg"
  22683. }
  22684. },
  22685. maw: {
  22686. height: math.unit(0.95, "feet"),
  22687. name: "Maw",
  22688. image: {
  22689. source: "./media/characters/reban/maw.svg"
  22690. }
  22691. },
  22692. foot: {
  22693. height: math.unit(1.65, "feet"),
  22694. name: "Foot",
  22695. image: {
  22696. source: "./media/characters/reban/foot.svg"
  22697. }
  22698. },
  22699. dick: {
  22700. height: math.unit(7 / 5, "feet"),
  22701. name: "Dick",
  22702. image: {
  22703. source: "./media/characters/reban/dick.svg"
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Natural Height",
  22710. height: math.unit(7 + 2 / 12, "feet")
  22711. },
  22712. {
  22713. name: "Macro",
  22714. height: math.unit(500, "feet"),
  22715. default: true
  22716. },
  22717. {
  22718. name: "Canon Height",
  22719. height: math.unit(50, "AU")
  22720. },
  22721. ]
  22722. ))
  22723. characterMakers.push(() => makeCharacter(
  22724. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22725. {
  22726. front: {
  22727. height: math.unit(6, "feet"),
  22728. weight: math.unit(150, "lb"),
  22729. name: "Front",
  22730. image: {
  22731. source: "./media/characters/terrance-keayes/front.svg",
  22732. extra: 1.005,
  22733. bottom: 151 / 1615
  22734. }
  22735. },
  22736. side: {
  22737. height: math.unit(6, "feet"),
  22738. weight: math.unit(150, "lb"),
  22739. name: "Side",
  22740. image: {
  22741. source: "./media/characters/terrance-keayes/side.svg",
  22742. extra: 1.005,
  22743. bottom: 129.4 / 1544
  22744. }
  22745. },
  22746. back: {
  22747. height: math.unit(6, "feet"),
  22748. weight: math.unit(150, "lb"),
  22749. name: "Back",
  22750. image: {
  22751. source: "./media/characters/terrance-keayes/back.svg",
  22752. extra: 1.005,
  22753. bottom: 58.4 / 1557.3
  22754. }
  22755. },
  22756. dick: {
  22757. height: math.unit(6 * 0.208, "feet"),
  22758. name: "Dick",
  22759. image: {
  22760. source: "./media/characters/terrance-keayes/dick.svg"
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Canon Height",
  22767. height: math.unit(35, "miles"),
  22768. default: true
  22769. },
  22770. ]
  22771. ))
  22772. characterMakers.push(() => makeCharacter(
  22773. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22774. {
  22775. front: {
  22776. height: math.unit(6, "feet"),
  22777. weight: math.unit(150, "lb"),
  22778. name: "Front",
  22779. image: {
  22780. source: "./media/characters/ofelia/front.svg",
  22781. extra: 1130/1117,
  22782. bottom: 91/1221
  22783. }
  22784. },
  22785. back: {
  22786. height: math.unit(6, "feet"),
  22787. weight: math.unit(150, "lb"),
  22788. name: "Back",
  22789. image: {
  22790. source: "./media/characters/ofelia/back.svg",
  22791. extra: 1172/1159,
  22792. bottom: 28/1200
  22793. }
  22794. },
  22795. maw: {
  22796. height: math.unit(1, "feet"),
  22797. name: "Maw",
  22798. image: {
  22799. source: "./media/characters/ofelia/maw.svg"
  22800. }
  22801. },
  22802. foot: {
  22803. height: math.unit(1.949, "feet"),
  22804. name: "Foot",
  22805. image: {
  22806. source: "./media/characters/ofelia/foot.svg"
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Canon Height",
  22813. height: math.unit(2000, "miles"),
  22814. default: true
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(6, "feet"),
  22823. weight: math.unit(150, "lb"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/samuel/front.svg",
  22827. extra: 265 / 258,
  22828. bottom: 2 / 266.1566
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(100, "feet"),
  22836. default: true
  22837. },
  22838. {
  22839. name: "Full Size",
  22840. height: math.unit(1000, "miles")
  22841. },
  22842. ]
  22843. ))
  22844. characterMakers.push(() => makeCharacter(
  22845. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22846. {
  22847. front: {
  22848. height: math.unit(6, "feet"),
  22849. weight: math.unit(300, "lb"),
  22850. name: "Front",
  22851. image: {
  22852. source: "./media/characters/beishir-kiel/front.svg",
  22853. extra: 569 / 547,
  22854. bottom: 41.9 / 609
  22855. }
  22856. },
  22857. maw: {
  22858. height: math.unit(6 * 0.202, "feet"),
  22859. name: "Maw",
  22860. image: {
  22861. source: "./media/characters/beishir-kiel/maw.svg"
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Macro",
  22868. height: math.unit(300, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(5 + 7/12, "feet"),
  22878. weight: math.unit(120, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/logan-grey/front.svg",
  22882. extra: 1836/1738,
  22883. bottom: 108/1944
  22884. }
  22885. },
  22886. back: {
  22887. height: math.unit(5 + 7/12, "feet"),
  22888. weight: math.unit(120, "lb"),
  22889. name: "Back",
  22890. image: {
  22891. source: "./media/characters/logan-grey/back.svg",
  22892. extra: 1880/1794,
  22893. bottom: 24/1904
  22894. }
  22895. },
  22896. frontSfw: {
  22897. height: math.unit(5 + 7/12, "feet"),
  22898. weight: math.unit(120, "lb"),
  22899. name: "Front (SFW)",
  22900. image: {
  22901. source: "./media/characters/logan-grey/front-sfw.svg",
  22902. extra: 1836/1738,
  22903. bottom: 108/1944
  22904. }
  22905. },
  22906. backSfw: {
  22907. height: math.unit(5 + 7/12, "feet"),
  22908. weight: math.unit(120, "lb"),
  22909. name: "Back (SFW)",
  22910. image: {
  22911. source: "./media/characters/logan-grey/back-sfw.svg",
  22912. extra: 1880/1794,
  22913. bottom: 24/1904
  22914. }
  22915. },
  22916. hands: {
  22917. height: math.unit(0.84, "feet"),
  22918. name: "Hands",
  22919. image: {
  22920. source: "./media/characters/logan-grey/hands.svg"
  22921. }
  22922. },
  22923. paws: {
  22924. height: math.unit(0.72, "feet"),
  22925. name: "Paws",
  22926. image: {
  22927. source: "./media/characters/logan-grey/paws.svg"
  22928. }
  22929. },
  22930. cock: {
  22931. height: math.unit(1.45, "feet"),
  22932. name: "Cock",
  22933. image: {
  22934. source: "./media/characters/logan-grey/cock.svg"
  22935. }
  22936. },
  22937. cockAlt: {
  22938. height: math.unit(1.437, "feet"),
  22939. name: "Cock (alt)",
  22940. image: {
  22941. source: "./media/characters/logan-grey/cock-alt.svg"
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(5 + 8 / 12, "feet")
  22949. },
  22950. {
  22951. name: "The 500 Foot Femboy",
  22952. height: math.unit(500, "feet"),
  22953. default: true
  22954. },
  22955. {
  22956. name: "Megmacro",
  22957. height: math.unit(20, "miles")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(8 + 2 / 12, "feet"),
  22966. weight: math.unit(275, "lb"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/draganta/front.svg",
  22970. extra: 1177 / 1135,
  22971. bottom: 33.46 / 1212.1
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Normal",
  22978. height: math.unit(8 + 6 / 12, "feet"),
  22979. default: true
  22980. },
  22981. {
  22982. name: "Macro",
  22983. height: math.unit(150, "feet")
  22984. },
  22985. {
  22986. name: "Megamacro",
  22987. height: math.unit(1000, "miles")
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(1.72, "m"),
  22996. weight: math.unit(80, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/voski/front.svg",
  23000. extra: 2076.22 / 2022.4,
  23001. bottom: 102.7 / 2177.3866
  23002. }
  23003. },
  23004. frontNsfw: {
  23005. height: math.unit(1.72, "m"),
  23006. weight: math.unit(80, "lb"),
  23007. name: "Front (NSFW)",
  23008. image: {
  23009. source: "./media/characters/voski/front-nsfw.svg",
  23010. extra: 2076.22 / 2022.4,
  23011. bottom: 102.7 / 2177.3866
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(1.72, "m"),
  23016. weight: math.unit(80, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/voski/back.svg",
  23020. extra: 2104 / 2051,
  23021. bottom: 10.45 / 2113.63
  23022. }
  23023. },
  23024. },
  23025. [
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(1.72, "m")
  23029. },
  23030. {
  23031. name: "Macro",
  23032. height: math.unit(55, "m"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Macro+",
  23037. height: math.unit(300, "m")
  23038. },
  23039. {
  23040. name: "Macro++",
  23041. height: math.unit(700, "m")
  23042. },
  23043. {
  23044. name: "Macro+++",
  23045. height: math.unit(4500, "m")
  23046. },
  23047. {
  23048. name: "Macro++++",
  23049. height: math.unit(45, "km")
  23050. },
  23051. {
  23052. name: "Macro+++++",
  23053. height: math.unit(1220, "km")
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(2.3, "m"),
  23062. weight: math.unit(304, "kg"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/icowom-lee/front.svg",
  23066. extra: 985 / 955,
  23067. bottom: 25.4 / 1012
  23068. }
  23069. },
  23070. fronttentacles: {
  23071. height: math.unit(2.3, "m"),
  23072. weight: math.unit(304, "kg"),
  23073. name: "Front-tentacles",
  23074. image: {
  23075. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23076. extra: 985 / 955,
  23077. bottom: 25.4 / 1012
  23078. }
  23079. },
  23080. back: {
  23081. height: math.unit(2.3, "m"),
  23082. weight: math.unit(304, "kg"),
  23083. name: "Back",
  23084. image: {
  23085. source: "./media/characters/icowom-lee/back.svg",
  23086. extra: 975 / 954,
  23087. bottom: 9.5 / 985
  23088. }
  23089. },
  23090. backtentacles: {
  23091. height: math.unit(2.3, "m"),
  23092. weight: math.unit(304, "kg"),
  23093. name: "Back-tentacles",
  23094. image: {
  23095. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23096. extra: 975 / 954,
  23097. bottom: 9.5 / 985
  23098. }
  23099. },
  23100. frontDressed: {
  23101. height: math.unit(2.3, "m"),
  23102. weight: math.unit(304, "kg"),
  23103. name: "Front (Dressed)",
  23104. image: {
  23105. source: "./media/characters/icowom-lee/front-dressed.svg",
  23106. extra: 3076 / 2933,
  23107. bottom: 51.4 / 3125.1889
  23108. }
  23109. },
  23110. rump: {
  23111. height: math.unit(0.776, "meters"),
  23112. name: "Rump",
  23113. image: {
  23114. source: "./media/characters/icowom-lee/rump.svg"
  23115. }
  23116. },
  23117. genitals: {
  23118. height: math.unit(0.78, "meters"),
  23119. name: "Genitals",
  23120. image: {
  23121. source: "./media/characters/icowom-lee/genitals.svg"
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(2.3, "meters"),
  23129. default: true
  23130. },
  23131. {
  23132. name: "Macro",
  23133. height: math.unit(94, "meters"),
  23134. default: true
  23135. },
  23136. ]
  23137. ))
  23138. characterMakers.push(() => makeCharacter(
  23139. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23140. {
  23141. front: {
  23142. height: math.unit(22, "meters"),
  23143. weight: math.unit(21000, "kg"),
  23144. name: "Front",
  23145. image: {
  23146. source: "./media/characters/shock-diamond/front.svg",
  23147. extra: 2204 / 2053,
  23148. bottom: 65 / 2239.47
  23149. }
  23150. },
  23151. frontNude: {
  23152. height: math.unit(22, "meters"),
  23153. weight: math.unit(21000, "kg"),
  23154. name: "Front (Nude)",
  23155. image: {
  23156. source: "./media/characters/shock-diamond/front-nude.svg",
  23157. extra: 2514 / 2285,
  23158. bottom: 13 / 2527.56
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(3, "meters")
  23166. },
  23167. {
  23168. name: "Macro",
  23169. height: math.unit(22, "meters"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(5 + 4 / 12, "feet"),
  23179. weight: math.unit(120, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/rory/front.svg",
  23183. extra: 1318/1241,
  23184. bottom: 42/1360
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(5 + 4 / 12, "feet"),
  23189. weight: math.unit(120, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/rory/back.svg",
  23193. extra: 1318/1241,
  23194. bottom: 42/1360
  23195. }
  23196. },
  23197. butt: {
  23198. height: math.unit(1.74, "feet"),
  23199. name: "Butt",
  23200. image: {
  23201. source: "./media/characters/rory/butt.svg"
  23202. }
  23203. },
  23204. dick: {
  23205. height: math.unit(1.02, "feet"),
  23206. name: "Dick",
  23207. image: {
  23208. source: "./media/characters/rory/dick.svg"
  23209. }
  23210. },
  23211. paws: {
  23212. height: math.unit(1, "feet"),
  23213. name: "Paws",
  23214. image: {
  23215. source: "./media/characters/rory/paws.svg"
  23216. }
  23217. },
  23218. frontAlt: {
  23219. height: math.unit(5 + 4 / 12, "feet"),
  23220. weight: math.unit(120, "lb"),
  23221. name: "Front (Alt)",
  23222. image: {
  23223. source: "./media/characters/rory/front-alt.svg",
  23224. extra: 589 / 556,
  23225. bottom: 45.7 / 635.76
  23226. }
  23227. },
  23228. frontAltNude: {
  23229. height: math.unit(5 + 4 / 12, "feet"),
  23230. weight: math.unit(120, "lb"),
  23231. name: "Front (Alt, Nude)",
  23232. image: {
  23233. source: "./media/characters/rory/front-alt-nude.svg",
  23234. extra: 589 / 556,
  23235. bottom: 45.7 / 635.76
  23236. }
  23237. },
  23238. side: {
  23239. height: math.unit(5 + 4 / 12, "feet"),
  23240. weight: math.unit(120, "lb"),
  23241. name: "Side",
  23242. image: {
  23243. source: "./media/characters/rory/side.svg",
  23244. extra: 597 / 564,
  23245. bottom: 55 / 653
  23246. }
  23247. },
  23248. backAlt: {
  23249. height: math.unit(5 + 4 / 12, "feet"),
  23250. weight: math.unit(120, "lb"),
  23251. name: "Back (Alt)",
  23252. image: {
  23253. source: "./media/characters/rory/back-alt.svg",
  23254. extra: 620 / 585,
  23255. bottom: 8.86 / 630.43
  23256. }
  23257. },
  23258. dickAlt: {
  23259. height: math.unit(0.86, "feet"),
  23260. name: "Dick (Alt)",
  23261. image: {
  23262. source: "./media/characters/rory/dick-alt.svg"
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(5 + 4 / 12, "feet"),
  23270. default: true
  23271. },
  23272. {
  23273. name: "Macro",
  23274. height: math.unit(100, "feet")
  23275. },
  23276. {
  23277. name: "Macro+",
  23278. height: math.unit(140, "feet")
  23279. },
  23280. {
  23281. name: "Macro++",
  23282. height: math.unit(300, "feet")
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(5 + 9 / 12, "feet"),
  23291. weight: math.unit(190, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/sprisk/front.svg",
  23295. extra: 1225 / 1180,
  23296. bottom: 42.7 / 1266.4
  23297. }
  23298. },
  23299. frontNsfw: {
  23300. height: math.unit(5 + 9 / 12, "feet"),
  23301. weight: math.unit(190, "lb"),
  23302. name: "Front (NSFW)",
  23303. image: {
  23304. source: "./media/characters/sprisk/front-nsfw.svg",
  23305. extra: 1225 / 1180,
  23306. bottom: 42.7 / 1266.4
  23307. }
  23308. },
  23309. back: {
  23310. height: math.unit(5 + 9 / 12, "feet"),
  23311. weight: math.unit(190, "lb"),
  23312. name: "Back",
  23313. image: {
  23314. source: "./media/characters/sprisk/back.svg",
  23315. extra: 1247 / 1200,
  23316. bottom: 5.6 / 1253.04
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Tiny",
  23323. height: math.unit(2, "inches")
  23324. },
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(5 + 9 / 12, "feet"),
  23328. default: true
  23329. },
  23330. {
  23331. name: "Mini Macro",
  23332. height: math.unit(18, "feet")
  23333. },
  23334. {
  23335. name: "Macro",
  23336. height: math.unit(100, "feet")
  23337. },
  23338. {
  23339. name: "MACRO",
  23340. height: math.unit(50, "miles")
  23341. },
  23342. {
  23343. name: "M A C R O",
  23344. height: math.unit(300, "miles")
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23350. {
  23351. side: {
  23352. height: math.unit(15.6, "meters"),
  23353. weight: math.unit(700000, "kg"),
  23354. name: "Side",
  23355. image: {
  23356. source: "./media/characters/bunsen/side.svg",
  23357. extra: 1644 / 358
  23358. }
  23359. },
  23360. foot: {
  23361. height: math.unit(1.611 * 1644 / 358, "meter"),
  23362. name: "Foot",
  23363. image: {
  23364. source: "./media/characters/bunsen/foot.svg"
  23365. }
  23366. },
  23367. },
  23368. [
  23369. {
  23370. name: "Small",
  23371. height: math.unit(10, "feet")
  23372. },
  23373. {
  23374. name: "Normal",
  23375. height: math.unit(15.6, "meters"),
  23376. default: true
  23377. },
  23378. ]
  23379. ))
  23380. characterMakers.push(() => makeCharacter(
  23381. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23382. {
  23383. front: {
  23384. height: math.unit(4 + 11 / 12, "feet"),
  23385. weight: math.unit(140, "lb"),
  23386. name: "Front",
  23387. image: {
  23388. source: "./media/characters/sesh/front.svg",
  23389. extra: 3420 / 3231,
  23390. bottom: 72 / 3949.5
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(4 + 11 / 12, "feet")
  23398. },
  23399. {
  23400. name: "Grown",
  23401. height: math.unit(15, "feet"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(1500, "feet")
  23407. },
  23408. {
  23409. name: "Megamacro",
  23410. height: math.unit(30, "miles")
  23411. },
  23412. {
  23413. name: "Continental",
  23414. height: math.unit(3000, "miles")
  23415. },
  23416. {
  23417. name: "Gravity Mass",
  23418. height: math.unit(300000, "miles")
  23419. },
  23420. {
  23421. name: "Planet Buster",
  23422. height: math.unit(30000000, "miles")
  23423. },
  23424. {
  23425. name: "Big",
  23426. height: math.unit(3000000000, "miles")
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(9, "feet"),
  23435. weight: math.unit(350, "lb"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/pepper/front.svg",
  23439. extra: 1448 / 1312,
  23440. bottom: 9.4 / 1457.88
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(9, "feet"),
  23445. weight: math.unit(350, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/pepper/back.svg",
  23449. extra: 1423 / 1300,
  23450. bottom: 4.6 / 1429
  23451. }
  23452. },
  23453. maw: {
  23454. height: math.unit(0.932, "feet"),
  23455. name: "Maw",
  23456. image: {
  23457. source: "./media/characters/pepper/maw.svg"
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Normal",
  23464. height: math.unit(9, "feet"),
  23465. default: true
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23471. {
  23472. front: {
  23473. height: math.unit(6, "feet"),
  23474. weight: math.unit(150, "lb"),
  23475. name: "Front",
  23476. image: {
  23477. source: "./media/characters/maelstrom/front.svg",
  23478. extra: 2100 / 1883,
  23479. bottom: 94 / 2196.7
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Less Kaiju",
  23486. height: math.unit(200, "feet")
  23487. },
  23488. {
  23489. name: "Kaiju",
  23490. height: math.unit(400, "feet"),
  23491. default: true
  23492. },
  23493. {
  23494. name: "Kaiju-er",
  23495. height: math.unit(600, "feet")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(6 + 5 / 12, "feet"),
  23504. weight: math.unit(180, "lb"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/lexir/front.svg",
  23508. extra: 180 / 172,
  23509. bottom: 12 / 192
  23510. }
  23511. },
  23512. back: {
  23513. height: math.unit(6 + 5 / 12, "feet"),
  23514. weight: math.unit(180, "lb"),
  23515. name: "Back",
  23516. image: {
  23517. source: "./media/characters/lexir/back.svg",
  23518. extra: 183.84 / 175.5,
  23519. bottom: 3.1 / 187
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Very Smal",
  23526. height: math.unit(1, "nm")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(6 + 5 / 12, "feet"),
  23531. default: true
  23532. },
  23533. {
  23534. name: "Macro",
  23535. height: math.unit(1, "mile")
  23536. },
  23537. {
  23538. name: "Megamacro",
  23539. height: math.unit(50, "miles")
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(1.5, "meters"),
  23548. weight: math.unit(100, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/maksio/front.svg",
  23552. extra: 1549 / 1531,
  23553. bottom: 123.7 / 1674.5429
  23554. }
  23555. },
  23556. back: {
  23557. height: math.unit(1.5, "meters"),
  23558. weight: math.unit(100, "lb"),
  23559. name: "Back",
  23560. image: {
  23561. source: "./media/characters/maksio/back.svg",
  23562. extra: 1541 / 1509,
  23563. bottom: 97 / 1639
  23564. }
  23565. },
  23566. hand: {
  23567. height: math.unit(0.621, "feet"),
  23568. name: "Hand",
  23569. image: {
  23570. source: "./media/characters/maksio/hand.svg"
  23571. }
  23572. },
  23573. foot: {
  23574. height: math.unit(1.611, "feet"),
  23575. name: "Foot",
  23576. image: {
  23577. source: "./media/characters/maksio/foot.svg"
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Shrunken",
  23584. height: math.unit(10, "cm")
  23585. },
  23586. {
  23587. name: "Normal",
  23588. height: math.unit(150, "cm"),
  23589. default: true
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(100, "feet"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/erza-bear/front.svg",
  23601. extra: 2449 / 2390,
  23602. bottom: 46 / 2494
  23603. }
  23604. },
  23605. back: {
  23606. height: math.unit(100, "feet"),
  23607. name: "Back",
  23608. image: {
  23609. source: "./media/characters/erza-bear/back.svg",
  23610. extra: 2489 / 2430,
  23611. bottom: 85.4 / 2480
  23612. }
  23613. },
  23614. tail: {
  23615. height: math.unit(42, "feet"),
  23616. name: "Tail",
  23617. image: {
  23618. source: "./media/characters/erza-bear/tail.svg"
  23619. }
  23620. },
  23621. tongue: {
  23622. height: math.unit(8, "feet"),
  23623. name: "Tongue",
  23624. image: {
  23625. source: "./media/characters/erza-bear/tongue.svg"
  23626. }
  23627. },
  23628. dick: {
  23629. height: math.unit(10.5, "feet"),
  23630. name: "Dick",
  23631. image: {
  23632. source: "./media/characters/erza-bear/dick.svg"
  23633. }
  23634. },
  23635. dickVertical: {
  23636. height: math.unit(16.9, "feet"),
  23637. name: "Dick (Vertical)",
  23638. image: {
  23639. source: "./media/characters/erza-bear/dick-vertical.svg"
  23640. }
  23641. },
  23642. },
  23643. [
  23644. {
  23645. name: "Macro",
  23646. height: math.unit(100, "feet"),
  23647. default: true
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(172, "cm"),
  23656. weight: math.unit(73, "kg"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/violet-flor/front.svg",
  23660. extra: 1530 / 1442,
  23661. bottom: 61.9 / 1588.8
  23662. }
  23663. },
  23664. back: {
  23665. height: math.unit(180, "cm"),
  23666. weight: math.unit(73, "kg"),
  23667. name: "Back",
  23668. image: {
  23669. source: "./media/characters/violet-flor/back.svg",
  23670. extra: 1692 / 1630,
  23671. bottom: 20 / 1712
  23672. }
  23673. },
  23674. },
  23675. [
  23676. {
  23677. name: "Normal",
  23678. height: math.unit(172, "cm"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(6, "feet"),
  23688. weight: math.unit(220, "lb"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/lynn-rhea/front.svg",
  23692. extra: 310 / 273
  23693. }
  23694. },
  23695. back: {
  23696. height: math.unit(6, "feet"),
  23697. weight: math.unit(220, "lb"),
  23698. name: "Back",
  23699. image: {
  23700. source: "./media/characters/lynn-rhea/back.svg",
  23701. extra: 310 / 273
  23702. }
  23703. },
  23704. dicks: {
  23705. height: math.unit(0.9, "feet"),
  23706. name: "Dicks",
  23707. image: {
  23708. source: "./media/characters/lynn-rhea/dicks.svg"
  23709. }
  23710. },
  23711. slit: {
  23712. height: math.unit(0.4, "feet"),
  23713. name: "Slit",
  23714. image: {
  23715. source: "./media/characters/lynn-rhea/slit.svg"
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Micro",
  23722. height: math.unit(1, "inch")
  23723. },
  23724. {
  23725. name: "Macro",
  23726. height: math.unit(60, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Megamacro",
  23731. height: math.unit(2, "miles")
  23732. },
  23733. {
  23734. name: "Gigamacro",
  23735. height: math.unit(3, "earths")
  23736. },
  23737. {
  23738. name: "Galactic",
  23739. height: math.unit(0.8, "galaxies")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23745. {
  23746. front: {
  23747. height: math.unit(1600, "feet"),
  23748. weight: math.unit(85758785169, "kg"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/valathos/front.svg",
  23752. extra: 1451 / 1339
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Macro",
  23759. height: math.unit(1600, "feet"),
  23760. default: true
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(7 + 5 / 12, "feet"),
  23769. weight: math.unit(300, "lb"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/azula/front.svg",
  23773. extra: 3208 / 2880,
  23774. bottom: 80.2 / 3277
  23775. }
  23776. },
  23777. back: {
  23778. height: math.unit(7 + 5 / 12, "feet"),
  23779. weight: math.unit(300, "lb"),
  23780. name: "Back",
  23781. image: {
  23782. source: "./media/characters/azula/back.svg",
  23783. extra: 3169 / 2822,
  23784. bottom: 150.6 / 3321
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Normal",
  23791. height: math.unit(7 + 5 / 12, "feet"),
  23792. default: true
  23793. },
  23794. {
  23795. name: "Big",
  23796. height: math.unit(20, "feet")
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(5 + 1 / 12, "feet"),
  23805. weight: math.unit(110, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/rupert/front.svg",
  23809. extra: 1549 / 1495,
  23810. bottom: 54.2 / 1604.4
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(5 + 1 / 12, "feet"),
  23818. default: true
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23824. {
  23825. front: {
  23826. height: math.unit(8 + 4 / 12, "feet"),
  23827. weight: math.unit(350, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/sheera-castellar/front.svg",
  23831. extra: 1957 / 1894,
  23832. bottom: 26.97 / 1975.017
  23833. }
  23834. },
  23835. side: {
  23836. height: math.unit(8 + 4 / 12, "feet"),
  23837. weight: math.unit(350, "lb"),
  23838. name: "Side",
  23839. image: {
  23840. source: "./media/characters/sheera-castellar/side.svg",
  23841. extra: 1957 / 1894
  23842. }
  23843. },
  23844. back: {
  23845. height: math.unit(8 + 4 / 12, "feet"),
  23846. weight: math.unit(350, "lb"),
  23847. name: "Back",
  23848. image: {
  23849. source: "./media/characters/sheera-castellar/back.svg",
  23850. extra: 1957 / 1894
  23851. }
  23852. },
  23853. angled: {
  23854. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23855. weight: math.unit(350, "lb"),
  23856. name: "Angled",
  23857. image: {
  23858. source: "./media/characters/sheera-castellar/angled.svg",
  23859. extra: 1807 / 1707,
  23860. bottom: 68 / 1875
  23861. }
  23862. },
  23863. genitals: {
  23864. height: math.unit(2.2, "feet"),
  23865. name: "Genitals",
  23866. image: {
  23867. source: "./media/characters/sheera-castellar/genitals.svg"
  23868. }
  23869. },
  23870. taur: {
  23871. height: math.unit(10 + 6/12, "feet"),
  23872. name: "Taur",
  23873. image: {
  23874. source: "./media/characters/sheera-castellar/taur.svg",
  23875. extra: 2017/1909,
  23876. bottom: 185/2202
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Normal",
  23883. height: math.unit(8 + 4 / 12, "feet")
  23884. },
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(150, "feet"),
  23888. default: true
  23889. },
  23890. {
  23891. name: "Macro+",
  23892. height: math.unit(800, "feet")
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(6, "feet"),
  23901. weight: math.unit(150, "lb"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/jaipur/front.svg",
  23905. extra: 3860 / 3731,
  23906. bottom: 287 / 4140
  23907. }
  23908. },
  23909. back: {
  23910. height: math.unit(6, "feet"),
  23911. weight: math.unit(150, "lb"),
  23912. name: "Back",
  23913. image: {
  23914. source: "./media/characters/jaipur/back.svg",
  23915. extra: 4060 / 3930,
  23916. bottom: 151 / 4200
  23917. }
  23918. },
  23919. },
  23920. [
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(1.85, "meters"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Macro",
  23928. height: math.unit(150, "meters")
  23929. },
  23930. {
  23931. name: "Macro+",
  23932. height: math.unit(0.5, "miles")
  23933. },
  23934. {
  23935. name: "Macro++",
  23936. height: math.unit(2.5, "miles")
  23937. },
  23938. {
  23939. name: "Macro+++",
  23940. height: math.unit(12, "miles")
  23941. },
  23942. {
  23943. name: "Macro++++",
  23944. height: math.unit(120, "miles")
  23945. },
  23946. {
  23947. name: "Macro+++++",
  23948. height: math.unit(1200, "miles")
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23954. {
  23955. front: {
  23956. height: math.unit(6, "feet"),
  23957. weight: math.unit(150, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/sheila-wolf/front.svg",
  23961. extra: 1931 / 1808,
  23962. bottom: 29.5 / 1960
  23963. }
  23964. },
  23965. dick: {
  23966. height: math.unit(1.464, "feet"),
  23967. name: "Dick",
  23968. image: {
  23969. source: "./media/characters/sheila-wolf/dick.svg"
  23970. }
  23971. },
  23972. muzzle: {
  23973. height: math.unit(0.513, "feet"),
  23974. name: "Muzzle",
  23975. image: {
  23976. source: "./media/characters/sheila-wolf/muzzle.svg"
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Macro",
  23983. height: math.unit(70, "feet"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(32, "meters"),
  23993. weight: math.unit(300000, "kg"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/almor/front.svg",
  23997. extra: 1408 / 1322,
  23998. bottom: 94.6 / 1506.5
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Macro",
  24005. height: math.unit(32, "meters"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24012. {
  24013. front: {
  24014. height: math.unit(7, "feet"),
  24015. weight: math.unit(200, "lb"),
  24016. name: "Front",
  24017. image: {
  24018. source: "./media/characters/silver/front.svg",
  24019. extra: 472.1 / 450.5,
  24020. bottom: 26.5 / 499.424
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(7, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(800, "feet")
  24033. },
  24034. {
  24035. name: "Megamacro",
  24036. height: math.unit(250, "miles")
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(6, "feet"),
  24045. weight: math.unit(150, "lb"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/pliskin/front.svg",
  24049. extra: 1469 / 1359,
  24050. bottom: 70 / 1540
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Micro",
  24057. height: math.unit(3, "inches")
  24058. },
  24059. {
  24060. name: "Normal",
  24061. height: math.unit(5 + 11 / 12, "feet"),
  24062. default: true
  24063. },
  24064. {
  24065. name: "Macro",
  24066. height: math.unit(120, "feet")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24072. {
  24073. front: {
  24074. height: math.unit(6, "feet"),
  24075. weight: math.unit(150, "lb"),
  24076. name: "Front",
  24077. image: {
  24078. source: "./media/characters/sammy/front.svg",
  24079. extra: 1193 / 1089,
  24080. bottom: 30.5 / 1226
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Macro",
  24087. height: math.unit(1700, "feet"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Examacro",
  24092. height: math.unit(2.5e9, "lightyears")
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(21, "meters"),
  24101. weight: math.unit(12, "tonnes"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/kuru/front.svg",
  24105. extra: 4301 / 3785,
  24106. bottom: 371.3 / 4691
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(21, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(23, "meters"),
  24123. weight: math.unit(12.2, "tonnes"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/rakka/front.svg",
  24127. extra: 4670 / 4169,
  24128. bottom: 301 / 4968.7
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Macro",
  24135. height: math.unit(23, "meters"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(150, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/rhys-feline/front.svg",
  24149. extra: 2488 / 2308,
  24150. bottom: 35.67 / 2519.19
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Really Small",
  24157. height: math.unit(1, "nm")
  24158. },
  24159. {
  24160. name: "Micro",
  24161. height: math.unit(4, "inches")
  24162. },
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(4 + 10 / 12, "feet"),
  24166. default: true
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(100, "feet")
  24171. },
  24172. {
  24173. name: "Megamacto",
  24174. height: math.unit(50, "miles")
  24175. },
  24176. ]
  24177. ))
  24178. characterMakers.push(() => makeCharacter(
  24179. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24180. {
  24181. side: {
  24182. height: math.unit(30, "feet"),
  24183. weight: math.unit(35000, "kg"),
  24184. name: "Side",
  24185. image: {
  24186. source: "./media/characters/alydar/side.svg",
  24187. extra: 234 / 222,
  24188. bottom: 6.5 / 241
  24189. }
  24190. },
  24191. front: {
  24192. height: math.unit(30, "feet"),
  24193. weight: math.unit(35000, "kg"),
  24194. name: "Front",
  24195. image: {
  24196. source: "./media/characters/alydar/front.svg",
  24197. extra: 223.37 / 210.2,
  24198. bottom: 22.3 / 246.76
  24199. }
  24200. },
  24201. top: {
  24202. height: math.unit(64.54, "feet"),
  24203. weight: math.unit(35000, "kg"),
  24204. name: "Top",
  24205. image: {
  24206. source: "./media/characters/alydar/top.svg"
  24207. }
  24208. },
  24209. anthro: {
  24210. height: math.unit(30, "feet"),
  24211. weight: math.unit(9000, "kg"),
  24212. name: "Anthro",
  24213. image: {
  24214. source: "./media/characters/alydar/anthro.svg",
  24215. extra: 432 / 421,
  24216. bottom: 7.18 / 440
  24217. }
  24218. },
  24219. maw: {
  24220. height: math.unit(11.693, "feet"),
  24221. name: "Maw",
  24222. image: {
  24223. source: "./media/characters/alydar/maw.svg"
  24224. }
  24225. },
  24226. head: {
  24227. height: math.unit(11.693, "feet"),
  24228. name: "Head",
  24229. image: {
  24230. source: "./media/characters/alydar/head.svg"
  24231. }
  24232. },
  24233. headAlt: {
  24234. height: math.unit(12.861, "feet"),
  24235. name: "Head (Alt)",
  24236. image: {
  24237. source: "./media/characters/alydar/head-alt.svg"
  24238. }
  24239. },
  24240. wing: {
  24241. height: math.unit(20.712, "feet"),
  24242. name: "Wing",
  24243. image: {
  24244. source: "./media/characters/alydar/wing.svg"
  24245. }
  24246. },
  24247. wingFeather: {
  24248. height: math.unit(9.662, "feet"),
  24249. name: "Wing Feather",
  24250. image: {
  24251. source: "./media/characters/alydar/wing-feather.svg"
  24252. }
  24253. },
  24254. countourFeather: {
  24255. height: math.unit(4.154, "feet"),
  24256. name: "Contour Feather",
  24257. image: {
  24258. source: "./media/characters/alydar/contour-feather.svg"
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Diplomatic",
  24265. height: math.unit(13, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Small",
  24270. height: math.unit(30, "feet")
  24271. },
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(95, "feet"),
  24275. default: true
  24276. },
  24277. {
  24278. name: "Large",
  24279. height: math.unit(285, "feet")
  24280. },
  24281. {
  24282. name: "Incomprehensible",
  24283. height: math.unit(450, "megameters")
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24289. {
  24290. side: {
  24291. height: math.unit(11, "feet"),
  24292. weight: math.unit(1750, "kg"),
  24293. name: "Side",
  24294. image: {
  24295. source: "./media/characters/selicia/side.svg",
  24296. extra: 440 / 396,
  24297. bottom: 24.8 / 465.979
  24298. }
  24299. },
  24300. maw: {
  24301. height: math.unit(4.665, "feet"),
  24302. name: "Maw",
  24303. image: {
  24304. source: "./media/characters/selicia/maw.svg"
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(11, "feet"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24318. {
  24319. side: {
  24320. height: math.unit(2 + 6 / 12, "feet"),
  24321. weight: math.unit(30, "lb"),
  24322. name: "Side",
  24323. image: {
  24324. source: "./media/characters/layla/side.svg",
  24325. extra: 244 / 188,
  24326. bottom: 18.2 / 262.1
  24327. }
  24328. },
  24329. back: {
  24330. height: math.unit(2 + 6 / 12, "feet"),
  24331. weight: math.unit(30, "lb"),
  24332. name: "Back",
  24333. image: {
  24334. source: "./media/characters/layla/back.svg",
  24335. extra: 308 / 241.5,
  24336. bottom: 8.9 / 316.8
  24337. }
  24338. },
  24339. cumming: {
  24340. height: math.unit(2 + 6 / 12, "feet"),
  24341. weight: math.unit(30, "lb"),
  24342. name: "Cumming",
  24343. image: {
  24344. source: "./media/characters/layla/cumming.svg",
  24345. extra: 342 / 279,
  24346. bottom: 595 / 938
  24347. }
  24348. },
  24349. dickFlaccid: {
  24350. height: math.unit(2.595, "feet"),
  24351. name: "Flaccid Genitals",
  24352. image: {
  24353. source: "./media/characters/layla/dick-flaccid.svg"
  24354. }
  24355. },
  24356. dickErect: {
  24357. height: math.unit(2.359, "feet"),
  24358. name: "Erect Genitals",
  24359. image: {
  24360. source: "./media/characters/layla/dick-erect.svg"
  24361. }
  24362. },
  24363. dragon: {
  24364. height: math.unit(40, "feet"),
  24365. name: "Dragon",
  24366. image: {
  24367. source: "./media/characters/layla/dragon.svg",
  24368. extra: 610/535,
  24369. bottom: 367/977
  24370. }
  24371. },
  24372. taur: {
  24373. height: math.unit(30, "feet"),
  24374. name: "Taur",
  24375. image: {
  24376. source: "./media/characters/layla/taur.svg",
  24377. extra: 1268/1199,
  24378. bottom: 112/1380
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Micro",
  24385. height: math.unit(1, "inch")
  24386. },
  24387. {
  24388. name: "Small",
  24389. height: math.unit(1, "foot")
  24390. },
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(2 + 6 / 12, "feet"),
  24394. default: true
  24395. },
  24396. {
  24397. name: "Macro",
  24398. height: math.unit(200, "feet")
  24399. },
  24400. {
  24401. name: "Megamacro",
  24402. height: math.unit(1000, "miles")
  24403. },
  24404. {
  24405. name: "Planetary",
  24406. height: math.unit(8000, "miles")
  24407. },
  24408. {
  24409. name: "True Layla",
  24410. height: math.unit(200000 * 7, "multiverses")
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24416. {
  24417. back: {
  24418. height: math.unit(10.5, "feet"),
  24419. weight: math.unit(800, "lb"),
  24420. name: "Back",
  24421. image: {
  24422. source: "./media/characters/knox/back.svg",
  24423. extra: 1486 / 1089,
  24424. bottom: 107 / 1601.4
  24425. }
  24426. },
  24427. side: {
  24428. height: math.unit(10.5, "feet"),
  24429. weight: math.unit(800, "lb"),
  24430. name: "Side",
  24431. image: {
  24432. source: "./media/characters/knox/side.svg",
  24433. extra: 244 / 218,
  24434. bottom: 14 / 260
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Compact",
  24441. height: math.unit(10.5, "feet"),
  24442. default: true
  24443. },
  24444. {
  24445. name: "Dynamax",
  24446. height: math.unit(210, "feet")
  24447. },
  24448. {
  24449. name: "Full Macro",
  24450. height: math.unit(850, "feet")
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(28, "feet"),
  24459. weight: math.unit(10500, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/kayda/front.svg",
  24463. extra: 1536 / 1428,
  24464. bottom: 68.7 / 1603
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(28, "feet"),
  24469. weight: math.unit(10500, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/kayda/back.svg",
  24473. extra: 1557 / 1464,
  24474. bottom: 39.5 / 1597.49
  24475. }
  24476. },
  24477. dick: {
  24478. height: math.unit(3.858, "feet"),
  24479. name: "Dick",
  24480. image: {
  24481. source: "./media/characters/kayda/dick.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(28, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(10 + 11 / 12, "feet"),
  24498. weight: math.unit(1400, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/brian/front.svg",
  24502. extra: 737 / 692,
  24503. bottom: 55.4 / 785
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(10 + 11 / 12, "feet"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(5 + 8 / 12, "feet"),
  24520. weight: math.unit(140, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/khemri/front.svg",
  24524. extra: 4780 / 4059,
  24525. bottom: 80.1 / 4859.25
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Micro",
  24532. height: math.unit(6, "inches")
  24533. },
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(5 + 8 / 12, "feet"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24543. {
  24544. front: {
  24545. height: math.unit(13, "feet"),
  24546. weight: math.unit(1700, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/felix-braveheart/front.svg",
  24550. extra: 1222 / 1157,
  24551. bottom: 53.2 / 1280
  24552. }
  24553. },
  24554. back: {
  24555. height: math.unit(13, "feet"),
  24556. weight: math.unit(1700, "lb"),
  24557. name: "Back",
  24558. image: {
  24559. source: "./media/characters/felix-braveheart/back.svg",
  24560. extra: 1277 / 1203,
  24561. bottom: 50.2 / 1327
  24562. }
  24563. },
  24564. feral: {
  24565. height: math.unit(6, "feet"),
  24566. weight: math.unit(400, "lb"),
  24567. name: "Feral",
  24568. image: {
  24569. source: "./media/characters/felix-braveheart/feral.svg",
  24570. extra: 682 / 625,
  24571. bottom: 6.9 / 688
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(13, "feet"),
  24579. default: true
  24580. },
  24581. ]
  24582. ))
  24583. characterMakers.push(() => makeCharacter(
  24584. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24585. {
  24586. side: {
  24587. height: math.unit(5 + 11 / 12, "feet"),
  24588. weight: math.unit(1400, "lb"),
  24589. name: "Side",
  24590. image: {
  24591. source: "./media/characters/shadow-blade/side.svg",
  24592. extra: 1726 / 1267,
  24593. bottom: 58.4 / 1785
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(5 + 11 / 12, "feet"),
  24601. default: true
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(1 + 6 / 12, "feet"),
  24610. weight: math.unit(25, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/karla-halldor/front.svg",
  24614. extra: 1459 / 1383,
  24615. bottom: 12 / 1472
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(1 + 6 / 12, "feet"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(6 + 2 / 12, "feet"),
  24632. weight: math.unit(160, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/ariam/front.svg",
  24636. extra: 1073/976,
  24637. bottom: 52/1125
  24638. }
  24639. },
  24640. back: {
  24641. height: math.unit(6 + 2/12, "feet"),
  24642. weight: math.unit(160, "lb"),
  24643. name: "Back",
  24644. image: {
  24645. source: "./media/characters/ariam/back.svg",
  24646. extra: 1103/1023,
  24647. bottom: 9/1112
  24648. }
  24649. },
  24650. dressed: {
  24651. height: math.unit(6 + 2/12, "feet"),
  24652. weight: math.unit(160, "lb"),
  24653. name: "Dressed",
  24654. image: {
  24655. source: "./media/characters/ariam/dressed.svg",
  24656. extra: 1099/1009,
  24657. bottom: 25/1124
  24658. }
  24659. },
  24660. squatting: {
  24661. height: math.unit(4.1, "feet"),
  24662. weight: math.unit(160, "lb"),
  24663. name: "Squatting",
  24664. image: {
  24665. source: "./media/characters/ariam/squatting.svg",
  24666. extra: 2617 / 2112,
  24667. bottom: 61.2 / 2681,
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(6 + 2 / 12, "feet"),
  24675. default: true
  24676. },
  24677. {
  24678. name: "Normal+",
  24679. height: math.unit(4, "meters")
  24680. },
  24681. {
  24682. name: "Macro",
  24683. height: math.unit(50, "meters")
  24684. },
  24685. {
  24686. name: "Macro+",
  24687. height: math.unit(100, "meters")
  24688. },
  24689. {
  24690. name: "Megamacro",
  24691. height: math.unit(20, "km")
  24692. },
  24693. {
  24694. name: "Caretaker",
  24695. height: math.unit(444, "megameters")
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(1.67, "meters"),
  24704. weight: math.unit(140, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24708. extra: 438 / 410,
  24709. bottom: 0.75 / 439
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Shrunken",
  24716. height: math.unit(7.6, "cm")
  24717. },
  24718. {
  24719. name: "Human Scale",
  24720. height: math.unit(1.67, "meters")
  24721. },
  24722. {
  24723. name: "Wolxi Scale",
  24724. height: math.unit(36.7, "meters"),
  24725. default: true
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24731. {
  24732. front: {
  24733. height: math.unit(1.73, "meters"),
  24734. weight: math.unit(240, "lb"),
  24735. name: "Front",
  24736. image: {
  24737. source: "./media/characters/izue-two-mothers/front.svg",
  24738. extra: 469 / 437,
  24739. bottom: 1.24 / 470.6
  24740. }
  24741. },
  24742. },
  24743. [
  24744. {
  24745. name: "Shrunken",
  24746. height: math.unit(7.86, "cm")
  24747. },
  24748. {
  24749. name: "Human Scale",
  24750. height: math.unit(1.73, "meters")
  24751. },
  24752. {
  24753. name: "Wolxi Scale",
  24754. height: math.unit(38, "meters"),
  24755. default: true
  24756. },
  24757. ]
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(1.55, "meters"),
  24764. weight: math.unit(120, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/teeku-love-shack/front.svg",
  24768. extra: 387 / 362,
  24769. bottom: 1.51 / 388
  24770. }
  24771. },
  24772. },
  24773. [
  24774. {
  24775. name: "Shrunken",
  24776. height: math.unit(7, "cm")
  24777. },
  24778. {
  24779. name: "Human Scale",
  24780. height: math.unit(1.55, "meters")
  24781. },
  24782. {
  24783. name: "Wolxi Scale",
  24784. height: math.unit(34.1, "meters"),
  24785. default: true
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(1.83, "meters"),
  24794. weight: math.unit(135, "lb"),
  24795. name: "Front",
  24796. image: {
  24797. source: "./media/characters/dejma-the-red/front.svg",
  24798. extra: 480 / 458,
  24799. bottom: 1.8 / 482
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Shrunken",
  24806. height: math.unit(8.3, "cm")
  24807. },
  24808. {
  24809. name: "Human Scale",
  24810. height: math.unit(1.83, "meters")
  24811. },
  24812. {
  24813. name: "Wolxi Scale",
  24814. height: math.unit(40, "meters"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(1.78, "meters"),
  24824. weight: math.unit(65, "kg"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/aki/front.svg",
  24828. extra: 452 / 415
  24829. }
  24830. },
  24831. frontNsfw: {
  24832. height: math.unit(1.78, "meters"),
  24833. weight: math.unit(65, "kg"),
  24834. name: "Front (NSFW)",
  24835. image: {
  24836. source: "./media/characters/aki/front-nsfw.svg",
  24837. extra: 452 / 415
  24838. }
  24839. },
  24840. back: {
  24841. height: math.unit(1.78, "meters"),
  24842. weight: math.unit(65, "kg"),
  24843. name: "Back",
  24844. image: {
  24845. source: "./media/characters/aki/back.svg",
  24846. extra: 452 / 415
  24847. }
  24848. },
  24849. rump: {
  24850. height: math.unit(2.05, "feet"),
  24851. name: "Rump",
  24852. image: {
  24853. source: "./media/characters/aki/rump.svg"
  24854. }
  24855. },
  24856. dick: {
  24857. height: math.unit(0.95, "feet"),
  24858. name: "Dick",
  24859. image: {
  24860. source: "./media/characters/aki/dick.svg"
  24861. }
  24862. },
  24863. },
  24864. [
  24865. {
  24866. name: "Micro",
  24867. height: math.unit(15, "cm")
  24868. },
  24869. {
  24870. name: "Normal",
  24871. height: math.unit(178, "cm"),
  24872. default: true
  24873. },
  24874. {
  24875. name: "Macro",
  24876. height: math.unit(214, "m")
  24877. },
  24878. {
  24879. name: "Macro+",
  24880. height: math.unit(534, "m")
  24881. },
  24882. ]
  24883. ))
  24884. characterMakers.push(() => makeCharacter(
  24885. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24886. {
  24887. front: {
  24888. height: math.unit(5 + 5 / 12, "feet"),
  24889. weight: math.unit(120, "lb"),
  24890. name: "Front",
  24891. image: {
  24892. source: "./media/characters/ari/front.svg",
  24893. extra: 714.5 / 682,
  24894. bottom: 8 / 722.5
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(5 + 5 / 12, "feet")
  24902. },
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(100, "feet"),
  24906. default: true
  24907. },
  24908. {
  24909. name: "Megamacro",
  24910. height: math.unit(100, "miles")
  24911. },
  24912. {
  24913. name: "Gigamacro",
  24914. height: math.unit(80000, "miles")
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24920. {
  24921. side: {
  24922. height: math.unit(9, "feet"),
  24923. weight: math.unit(400, "kg"),
  24924. name: "Side",
  24925. image: {
  24926. source: "./media/characters/bolt/side.svg",
  24927. extra: 1126 / 896,
  24928. bottom: 60 / 1187.3,
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Micro",
  24935. height: math.unit(5, "inches")
  24936. },
  24937. {
  24938. name: "Normal",
  24939. height: math.unit(9, "feet"),
  24940. default: true
  24941. },
  24942. {
  24943. name: "Macro",
  24944. height: math.unit(700, "feet")
  24945. },
  24946. {
  24947. name: "Max Size",
  24948. height: math.unit(1.52e22, "yottameters")
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24954. {
  24955. front: {
  24956. height: math.unit(4.3, "meters"),
  24957. weight: math.unit(3, "tons"),
  24958. name: "Front",
  24959. image: {
  24960. source: "./media/characters/draekon-sylviar/front.svg",
  24961. extra: 2072/1512,
  24962. bottom: 74/2146
  24963. }
  24964. },
  24965. back: {
  24966. height: math.unit(4.3, "meters"),
  24967. weight: math.unit(3, "tons"),
  24968. name: "Back",
  24969. image: {
  24970. source: "./media/characters/draekon-sylviar/back.svg",
  24971. extra: 1639/1483,
  24972. bottom: 41/1680
  24973. }
  24974. },
  24975. feral: {
  24976. height: math.unit(1.15, "meters"),
  24977. weight: math.unit(3, "tons"),
  24978. name: "Feral",
  24979. image: {
  24980. source: "./media/characters/draekon-sylviar/feral.svg",
  24981. extra: 1033/395,
  24982. bottom: 130/1163
  24983. }
  24984. },
  24985. maw: {
  24986. height: math.unit(1.3, "meters"),
  24987. name: "Maw",
  24988. image: {
  24989. source: "./media/characters/draekon-sylviar/maw.svg"
  24990. }
  24991. },
  24992. mawSeparated: {
  24993. height: math.unit(1.53, "meters"),
  24994. name: "Separated Maw",
  24995. image: {
  24996. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24997. }
  24998. },
  24999. tail: {
  25000. height: math.unit(1.15, "meters"),
  25001. name: "Tail",
  25002. image: {
  25003. source: "./media/characters/draekon-sylviar/tail.svg"
  25004. }
  25005. },
  25006. tailDick: {
  25007. height: math.unit(1.15, "meters"),
  25008. name: "Tail (Dick)",
  25009. image: {
  25010. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25011. }
  25012. },
  25013. tailDickSeparated: {
  25014. height: math.unit(1.19, "meters"),
  25015. name: "Tail (Separated Dick)",
  25016. image: {
  25017. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25018. }
  25019. },
  25020. slit: {
  25021. height: math.unit(1, "meters"),
  25022. name: "Slit",
  25023. image: {
  25024. source: "./media/characters/draekon-sylviar/slit.svg"
  25025. }
  25026. },
  25027. dick: {
  25028. height: math.unit(1.15, "meters"),
  25029. name: "Dick",
  25030. image: {
  25031. source: "./media/characters/draekon-sylviar/dick.svg"
  25032. }
  25033. },
  25034. dickSeparated: {
  25035. height: math.unit(1.1, "meters"),
  25036. name: "Separated Dick",
  25037. image: {
  25038. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25039. }
  25040. },
  25041. sheath: {
  25042. height: math.unit(1.15, "meters"),
  25043. name: "Sheath",
  25044. image: {
  25045. source: "./media/characters/draekon-sylviar/sheath.svg"
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Small",
  25052. height: math.unit(4.53 / 2, "meters"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(4.53, "meters"),
  25058. default: true
  25059. },
  25060. {
  25061. name: "Large",
  25062. height: math.unit(4.53 * 2, "meters"),
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(6 + 2 / 12, "feet"),
  25071. weight: math.unit(180, "lb"),
  25072. name: "Front",
  25073. image: {
  25074. source: "./media/characters/brawler/front.svg",
  25075. extra: 3301 / 3027,
  25076. bottom: 138 / 3439
  25077. }
  25078. },
  25079. },
  25080. [
  25081. {
  25082. name: "Normal",
  25083. height: math.unit(6 + 2 / 12, "feet"),
  25084. default: true
  25085. },
  25086. ]
  25087. ))
  25088. characterMakers.push(() => makeCharacter(
  25089. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25090. {
  25091. front: {
  25092. height: math.unit(11, "feet"),
  25093. weight: math.unit(1000, "lb"),
  25094. name: "Front",
  25095. image: {
  25096. source: "./media/characters/alex/front.svg",
  25097. bottom: 44.5 / 620
  25098. }
  25099. },
  25100. },
  25101. [
  25102. {
  25103. name: "Micro",
  25104. height: math.unit(5, "inches")
  25105. },
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(11, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Macro",
  25113. height: math.unit(9.5e9, "feet")
  25114. },
  25115. {
  25116. name: "Max Size",
  25117. height: math.unit(1.4e283, "yottameters")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25123. {
  25124. female: {
  25125. height: math.unit(29.9, "m"),
  25126. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25127. name: "Female",
  25128. image: {
  25129. source: "./media/characters/zenari/female.svg",
  25130. extra: 3281.6 / 3217,
  25131. bottom: 72.2 / 3353
  25132. }
  25133. },
  25134. male: {
  25135. height: math.unit(27.7, "m"),
  25136. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25137. name: "Male",
  25138. image: {
  25139. source: "./media/characters/zenari/male.svg",
  25140. extra: 3008 / 2991,
  25141. bottom: 54.6 / 3069
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Macro",
  25148. height: math.unit(29.7, "meters"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25155. {
  25156. female: {
  25157. height: math.unit(23.8, "m"),
  25158. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25159. name: "Female",
  25160. image: {
  25161. source: "./media/characters/mactarian/female.svg",
  25162. extra: 2662 / 2569,
  25163. bottom: 73 / 2736
  25164. }
  25165. },
  25166. male: {
  25167. height: math.unit(23.8, "m"),
  25168. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25169. name: "Male",
  25170. image: {
  25171. source: "./media/characters/mactarian/male.svg",
  25172. extra: 2673 / 2600,
  25173. bottom: 76 / 2750
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Macro",
  25180. height: math.unit(23.8, "meters"),
  25181. default: true
  25182. },
  25183. ]
  25184. ))
  25185. characterMakers.push(() => makeCharacter(
  25186. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25187. {
  25188. female: {
  25189. height: math.unit(19.3, "m"),
  25190. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25191. name: "Female",
  25192. image: {
  25193. source: "./media/characters/umok/female.svg",
  25194. extra: 2186 / 2078,
  25195. bottom: 87 / 2277
  25196. }
  25197. },
  25198. male: {
  25199. height: math.unit(19.5, "m"),
  25200. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25201. name: "Male",
  25202. image: {
  25203. source: "./media/characters/umok/male.svg",
  25204. extra: 2233 / 2140,
  25205. bottom: 24.4 / 2258
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Macro",
  25212. height: math.unit(19.3, "meters"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25219. {
  25220. female: {
  25221. height: math.unit(26.15, "m"),
  25222. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25223. name: "Female",
  25224. image: {
  25225. source: "./media/characters/joraxian/female.svg",
  25226. extra: 2912 / 2824,
  25227. bottom: 36 / 2956
  25228. }
  25229. },
  25230. male: {
  25231. height: math.unit(25.4, "m"),
  25232. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25233. name: "Male",
  25234. image: {
  25235. source: "./media/characters/joraxian/male.svg",
  25236. extra: 2877 / 2721,
  25237. bottom: 82 / 2967
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(26.15, "meters"),
  25245. default: true
  25246. },
  25247. ]
  25248. ))
  25249. characterMakers.push(() => makeCharacter(
  25250. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25251. {
  25252. female: {
  25253. height: math.unit(21.6, "m"),
  25254. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25255. name: "Female",
  25256. image: {
  25257. source: "./media/characters/sthara/female.svg",
  25258. extra: 2516 / 2347,
  25259. bottom: 21.5 / 2537
  25260. }
  25261. },
  25262. male: {
  25263. height: math.unit(24, "m"),
  25264. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25265. name: "Male",
  25266. image: {
  25267. source: "./media/characters/sthara/male.svg",
  25268. extra: 2732 / 2607,
  25269. bottom: 23 / 2732
  25270. }
  25271. },
  25272. },
  25273. [
  25274. {
  25275. name: "Macro",
  25276. height: math.unit(21.6, "meters"),
  25277. default: true
  25278. },
  25279. ]
  25280. ))
  25281. characterMakers.push(() => makeCharacter(
  25282. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25283. {
  25284. front: {
  25285. height: math.unit(6 + 4 / 12, "feet"),
  25286. weight: math.unit(175, "lb"),
  25287. name: "Front",
  25288. image: {
  25289. source: "./media/characters/luka-bryzant/front.svg",
  25290. extra: 311 / 289,
  25291. bottom: 4 / 315
  25292. }
  25293. },
  25294. back: {
  25295. height: math.unit(6 + 4 / 12, "feet"),
  25296. weight: math.unit(175, "lb"),
  25297. name: "Back",
  25298. image: {
  25299. source: "./media/characters/luka-bryzant/back.svg",
  25300. extra: 311 / 289,
  25301. bottom: 3.8 / 313.7
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Micro",
  25308. height: math.unit(10, "inches")
  25309. },
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(6 + 4 / 12, "feet"),
  25313. default: true
  25314. },
  25315. {
  25316. name: "Large",
  25317. height: math.unit(12, "feet")
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(5 + 7 / 12, "feet"),
  25326. weight: math.unit(185, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/aman-aquila/front.svg",
  25330. extra: 1013 / 976,
  25331. bottom: 45.6 / 1057
  25332. }
  25333. },
  25334. side: {
  25335. height: math.unit(5 + 7 / 12, "feet"),
  25336. weight: math.unit(185, "lb"),
  25337. name: "Side",
  25338. image: {
  25339. source: "./media/characters/aman-aquila/side.svg",
  25340. extra: 1054 / 1011,
  25341. bottom: 15 / 1070
  25342. }
  25343. },
  25344. back: {
  25345. height: math.unit(5 + 7 / 12, "feet"),
  25346. weight: math.unit(185, "lb"),
  25347. name: "Back",
  25348. image: {
  25349. source: "./media/characters/aman-aquila/back.svg",
  25350. extra: 1026 / 970,
  25351. bottom: 12 / 1039
  25352. }
  25353. },
  25354. head: {
  25355. height: math.unit(1.211, "feet"),
  25356. name: "Head",
  25357. image: {
  25358. source: "./media/characters/aman-aquila/head.svg",
  25359. }
  25360. },
  25361. },
  25362. [
  25363. {
  25364. name: "Minimicro",
  25365. height: math.unit(0.057, "inches")
  25366. },
  25367. {
  25368. name: "Micro",
  25369. height: math.unit(7, "inches")
  25370. },
  25371. {
  25372. name: "Mini",
  25373. height: math.unit(3 + 7 / 12, "feet")
  25374. },
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(5 + 7 / 12, "feet"),
  25378. default: true
  25379. },
  25380. {
  25381. name: "Macro",
  25382. height: math.unit(157 + 7 / 12, "feet")
  25383. },
  25384. {
  25385. name: "Megamacro",
  25386. height: math.unit(1557 + 7 / 12, "feet")
  25387. },
  25388. {
  25389. name: "Gigamacro",
  25390. height: math.unit(15557 + 7 / 12, "feet")
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(3 + 2 / 12, "inches"),
  25399. weight: math.unit(0.3, "ounces"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/hiphae/front.svg",
  25403. extra: 1931 / 1683,
  25404. bottom: 24 / 1955
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(3 + 1 / 2, "inches"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(5 + 10 / 12, "feet"),
  25421. weight: math.unit(165, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/nicky/front.svg",
  25425. extra: 3144 / 2886,
  25426. bottom: 45.6 / 3192
  25427. }
  25428. },
  25429. back: {
  25430. height: math.unit(5 + 10 / 12, "feet"),
  25431. weight: math.unit(165, "lb"),
  25432. name: "Back",
  25433. image: {
  25434. source: "./media/characters/nicky/back.svg",
  25435. extra: 3055 / 2804,
  25436. bottom: 28.4 / 3087
  25437. }
  25438. },
  25439. frontclothed: {
  25440. height: math.unit(5 + 10 / 12, "feet"),
  25441. weight: math.unit(165, "lb"),
  25442. name: "Front-clothed",
  25443. image: {
  25444. source: "./media/characters/nicky/front-clothed.svg",
  25445. extra: 3184.9 / 2926.9,
  25446. bottom: 86.5 / 3239.9
  25447. }
  25448. },
  25449. foot: {
  25450. height: math.unit(1.16, "feet"),
  25451. name: "Foot",
  25452. image: {
  25453. source: "./media/characters/nicky/foot.svg"
  25454. }
  25455. },
  25456. feet: {
  25457. height: math.unit(1.34, "feet"),
  25458. name: "Feet",
  25459. image: {
  25460. source: "./media/characters/nicky/feet.svg"
  25461. }
  25462. },
  25463. maw: {
  25464. height: math.unit(0.9, "feet"),
  25465. name: "Maw",
  25466. image: {
  25467. source: "./media/characters/nicky/maw.svg"
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(5 + 10 / 12, "feet"),
  25475. default: true
  25476. },
  25477. {
  25478. name: "Macro",
  25479. height: math.unit(60, "feet")
  25480. },
  25481. {
  25482. name: "Megamacro",
  25483. height: math.unit(1, "mile")
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25489. {
  25490. side: {
  25491. height: math.unit(10, "feet"),
  25492. weight: math.unit(600, "lb"),
  25493. name: "Side",
  25494. image: {
  25495. source: "./media/characters/blair/side.svg",
  25496. bottom: 16.6 / 475,
  25497. extra: 458 / 431
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Micro",
  25504. height: math.unit(8, "inches")
  25505. },
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(10, "feet"),
  25509. default: true
  25510. },
  25511. {
  25512. name: "Macro",
  25513. height: math.unit(180, "feet")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(5 + 4 / 12, "feet"),
  25522. weight: math.unit(125, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/fisher/front.svg",
  25526. extra: 444 / 390,
  25527. bottom: 2 / 444.8
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Micro",
  25534. height: math.unit(4, "inches")
  25535. },
  25536. {
  25537. name: "Normal",
  25538. height: math.unit(5 + 4 / 12, "feet"),
  25539. default: true
  25540. },
  25541. {
  25542. name: "Macro",
  25543. height: math.unit(100, "feet")
  25544. },
  25545. ]
  25546. ))
  25547. characterMakers.push(() => makeCharacter(
  25548. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25549. {
  25550. front: {
  25551. height: math.unit(6.71, "feet"),
  25552. weight: math.unit(200, "lb"),
  25553. capacity: math.unit(1000000, "people"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/gliss/front.svg",
  25557. extra: 2347 / 2231,
  25558. bottom: 113 / 2462
  25559. }
  25560. },
  25561. hammerspaceSize: {
  25562. height: math.unit(6.71 * 717, "feet"),
  25563. weight: math.unit(200, "lb"),
  25564. capacity: math.unit(1000000, "people"),
  25565. name: "Hammerspace Size",
  25566. image: {
  25567. source: "./media/characters/gliss/front.svg",
  25568. extra: 2347 / 2231,
  25569. bottom: 113 / 2462
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(6.71, "feet"),
  25577. default: true
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25583. {
  25584. side: {
  25585. height: math.unit(1.44, "m"),
  25586. weight: math.unit(80, "kg"),
  25587. name: "Side",
  25588. image: {
  25589. source: "./media/characters/dune-anderson/side.svg",
  25590. bottom: 49 / 1426
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Wolf-sized",
  25597. height: math.unit(1.44, "meters")
  25598. },
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(5.05, "meters"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Big",
  25606. height: math.unit(14.4, "meters")
  25607. },
  25608. {
  25609. name: "Huge",
  25610. height: math.unit(144, "meters")
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25616. {
  25617. front: {
  25618. height: math.unit(7, "feet"),
  25619. weight: math.unit(425, "lb"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/hind/front.svg",
  25623. extra: 2091 / 1860,
  25624. bottom: 129 / 2220
  25625. }
  25626. },
  25627. back: {
  25628. height: math.unit(7, "feet"),
  25629. weight: math.unit(425, "lb"),
  25630. name: "Back",
  25631. image: {
  25632. source: "./media/characters/hind/back.svg",
  25633. extra: 2091 / 1860,
  25634. bottom: 24.6 / 2309
  25635. }
  25636. },
  25637. tail: {
  25638. height: math.unit(2.8, "feet"),
  25639. name: "Tail",
  25640. image: {
  25641. source: "./media/characters/hind/tail.svg"
  25642. }
  25643. },
  25644. head: {
  25645. height: math.unit(2.55, "feet"),
  25646. name: "Head",
  25647. image: {
  25648. source: "./media/characters/hind/head.svg"
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "XS",
  25655. height: math.unit(0.7, "feet")
  25656. },
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(7, "feet"),
  25660. default: true
  25661. },
  25662. {
  25663. name: "XL",
  25664. height: math.unit(70, "feet")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(2.1, "meters"),
  25673. weight: math.unit(150, "lb"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/tharquench-sizestealer/front.svg",
  25677. extra: 1605/1470,
  25678. bottom: 36/1641
  25679. }
  25680. },
  25681. frontAlt: {
  25682. height: math.unit(2.1, "meters"),
  25683. weight: math.unit(150, "lb"),
  25684. name: "Front (Alt)",
  25685. image: {
  25686. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25687. extra: 2318 / 2063,
  25688. bottom: 93.4 / 2410
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Nano",
  25695. height: math.unit(1, "mm")
  25696. },
  25697. {
  25698. name: "Micro",
  25699. height: math.unit(1, "cm")
  25700. },
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(2.1, "meters"),
  25704. default: true
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(7 + 5 / 12, "feet"),
  25713. weight: math.unit(357, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/solex-draconov/front.svg",
  25717. extra: 1993 / 1865,
  25718. bottom: 117 / 2111
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Natural Height",
  25725. height: math.unit(7 + 5 / 12, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(350, "feet")
  25731. },
  25732. {
  25733. name: "Macro+",
  25734. height: math.unit(1000, "feet")
  25735. },
  25736. {
  25737. name: "Megamacro",
  25738. height: math.unit(20, "km")
  25739. },
  25740. {
  25741. name: "Megamacro+",
  25742. height: math.unit(1000, "km")
  25743. },
  25744. {
  25745. name: "Gigamacro",
  25746. height: math.unit(2.5, "Gm")
  25747. },
  25748. {
  25749. name: "Teramacro",
  25750. height: math.unit(15, "Tm")
  25751. },
  25752. {
  25753. name: "Galactic",
  25754. height: math.unit(30, "Zm")
  25755. },
  25756. {
  25757. name: "Universal",
  25758. height: math.unit(21000, "Ym")
  25759. },
  25760. {
  25761. name: "Omniversal",
  25762. height: math.unit(9.861e50, "Ym")
  25763. },
  25764. {
  25765. name: "Existential",
  25766. height: math.unit(1e300, "meters")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25772. {
  25773. side: {
  25774. height: math.unit(25, "feet"),
  25775. weight: math.unit(90000, "lb"),
  25776. name: "Side",
  25777. image: {
  25778. source: "./media/characters/mandarax/side.svg",
  25779. extra: 614 / 332,
  25780. bottom: 55 / 630
  25781. }
  25782. },
  25783. head: {
  25784. height: math.unit(11.4, "feet"),
  25785. name: "Head",
  25786. image: {
  25787. source: "./media/characters/mandarax/head.svg"
  25788. }
  25789. },
  25790. belly: {
  25791. height: math.unit(33, "feet"),
  25792. name: "Belly",
  25793. capacity: math.unit(500, "people"),
  25794. image: {
  25795. source: "./media/characters/mandarax/belly.svg"
  25796. }
  25797. },
  25798. dick: {
  25799. height: math.unit(8.46, "feet"),
  25800. name: "Dick",
  25801. image: {
  25802. source: "./media/characters/mandarax/dick.svg"
  25803. }
  25804. },
  25805. top: {
  25806. height: math.unit(28, "meters"),
  25807. name: "Top",
  25808. image: {
  25809. source: "./media/characters/mandarax/top.svg"
  25810. }
  25811. },
  25812. },
  25813. [
  25814. {
  25815. name: "Normal",
  25816. height: math.unit(25, "feet"),
  25817. default: true
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(5, "feet"),
  25826. weight: math.unit(90, "lb"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/pixil/front.svg",
  25830. extra: 2000 / 1618,
  25831. bottom: 12.3 / 2011
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Normal",
  25838. height: math.unit(5, "feet"),
  25839. default: true
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(10, "miles"),
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(7 + 2 / 12, "feet"),
  25852. weight: math.unit(200, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/angel/front.svg",
  25856. extra: 1830 / 1737,
  25857. bottom: 22.6 / 1854,
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(7 + 2 / 12, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(1000, "feet")
  25870. },
  25871. {
  25872. name: "Megamacro",
  25873. height: math.unit(2, "miles")
  25874. },
  25875. {
  25876. name: "Gigamacro",
  25877. height: math.unit(20, "earths")
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(5, "feet"),
  25886. weight: math.unit(180, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/mekana/front.svg",
  25890. extra: 1671 / 1605,
  25891. bottom: 3.5 / 1691
  25892. }
  25893. },
  25894. side: {
  25895. height: math.unit(5, "feet"),
  25896. weight: math.unit(180, "lb"),
  25897. name: "Side",
  25898. image: {
  25899. source: "./media/characters/mekana/side.svg",
  25900. extra: 1671 / 1605,
  25901. bottom: 3.5 / 1691
  25902. }
  25903. },
  25904. back: {
  25905. height: math.unit(5, "feet"),
  25906. weight: math.unit(180, "lb"),
  25907. name: "Back",
  25908. image: {
  25909. source: "./media/characters/mekana/back.svg",
  25910. extra: 1671 / 1605,
  25911. bottom: 3.5 / 1691
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(5, "feet"),
  25919. default: true
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(4 + 6 / 12, "feet"),
  25928. weight: math.unit(80, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/pixie/front.svg",
  25932. extra: 1924 / 1825,
  25933. bottom: 22.4 / 1946
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(4 + 6 / 12, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Macro",
  25945. height: math.unit(40, "feet")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(2.1, "meters"),
  25954. weight: math.unit(200, "lb"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/the-lascivious/front.svg",
  25958. extra: 1 / 0.893,
  25959. bottom: 3.5 / 573.7
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Human Scale",
  25966. height: math.unit(2.1, "meters")
  25967. },
  25968. {
  25969. name: "Wolxi Scale",
  25970. height: math.unit(46.2, "m"),
  25971. default: true
  25972. },
  25973. {
  25974. name: "Boinker of Buildings",
  25975. height: math.unit(10, "km")
  25976. },
  25977. {
  25978. name: "Shagger of Skyscrapers",
  25979. height: math.unit(40, "km")
  25980. },
  25981. {
  25982. name: "Banger of Boroughs",
  25983. height: math.unit(4000, "km")
  25984. },
  25985. {
  25986. name: "Screwer of States",
  25987. height: math.unit(100000, "km")
  25988. },
  25989. {
  25990. name: "Pounder of Planets",
  25991. height: math.unit(2000000, "km")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/aj/front.svg",
  26004. extra: 2039 / 1562,
  26005. bottom: 40 / 2079
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(11 + 6 / 12, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Megamacro",
  26017. height: math.unit(60, "megameters")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26023. {
  26024. side: {
  26025. height: math.unit(31 + 8 / 12, "feet"),
  26026. weight: math.unit(75000, "kg"),
  26027. name: "Side",
  26028. image: {
  26029. source: "./media/characters/koros/side.svg",
  26030. extra: 1442 / 1297,
  26031. bottom: 122.7 / 1562
  26032. }
  26033. },
  26034. dicksKingsCrown: {
  26035. height: math.unit(6, "feet"),
  26036. name: "Dicks (King's Crown)",
  26037. image: {
  26038. source: "./media/characters/koros/dicks-kings-crown.svg"
  26039. }
  26040. },
  26041. dicksTailSet: {
  26042. height: math.unit(3, "feet"),
  26043. name: "Dicks (Tail Set)",
  26044. image: {
  26045. source: "./media/characters/koros/dicks-tail-set.svg"
  26046. }
  26047. },
  26048. dickCumming: {
  26049. height: math.unit(7.98, "feet"),
  26050. name: "Dick (Cumming)",
  26051. image: {
  26052. source: "./media/characters/koros/dick-cumming.svg"
  26053. }
  26054. },
  26055. dicksBack: {
  26056. height: math.unit(5.9, "feet"),
  26057. name: "Dicks (Back)",
  26058. image: {
  26059. source: "./media/characters/koros/dicks-back.svg"
  26060. }
  26061. },
  26062. dicksFront: {
  26063. height: math.unit(3.72, "feet"),
  26064. name: "Dicks (Front)",
  26065. image: {
  26066. source: "./media/characters/koros/dicks-front.svg"
  26067. }
  26068. },
  26069. dicksPeeking: {
  26070. height: math.unit(3.0, "feet"),
  26071. name: "Dicks (Peeking)",
  26072. image: {
  26073. source: "./media/characters/koros/dicks-peeking.svg"
  26074. }
  26075. },
  26076. eye: {
  26077. height: math.unit(1.7, "feet"),
  26078. name: "Eye",
  26079. image: {
  26080. source: "./media/characters/koros/eye.svg"
  26081. }
  26082. },
  26083. headFront: {
  26084. height: math.unit(11.69, "feet"),
  26085. name: "Head (Front)",
  26086. image: {
  26087. source: "./media/characters/koros/head-front.svg"
  26088. }
  26089. },
  26090. headSide: {
  26091. height: math.unit(14, "feet"),
  26092. name: "Head (Side)",
  26093. image: {
  26094. source: "./media/characters/koros/head-side.svg"
  26095. }
  26096. },
  26097. leg: {
  26098. height: math.unit(17, "feet"),
  26099. name: "Leg",
  26100. image: {
  26101. source: "./media/characters/koros/leg.svg"
  26102. }
  26103. },
  26104. mawSide: {
  26105. height: math.unit(12.8, "feet"),
  26106. name: "Maw (Side)",
  26107. image: {
  26108. source: "./media/characters/koros/maw-side.svg"
  26109. }
  26110. },
  26111. mawSpitting: {
  26112. height: math.unit(17, "feet"),
  26113. name: "Maw (Spitting)",
  26114. image: {
  26115. source: "./media/characters/koros/maw-spitting.svg"
  26116. }
  26117. },
  26118. slit: {
  26119. height: math.unit(2.8, "feet"),
  26120. name: "Slit",
  26121. image: {
  26122. source: "./media/characters/koros/slit.svg"
  26123. }
  26124. },
  26125. stomach: {
  26126. height: math.unit(6.8, "feet"),
  26127. capacity: math.unit(20, "people"),
  26128. name: "Stomach",
  26129. image: {
  26130. source: "./media/characters/koros/stomach.svg"
  26131. }
  26132. },
  26133. wingspanBottom: {
  26134. height: math.unit(114, "feet"),
  26135. name: "Wingspan (Bottom)",
  26136. image: {
  26137. source: "./media/characters/koros/wingspan-bottom.svg"
  26138. }
  26139. },
  26140. wingspanTop: {
  26141. height: math.unit(104, "feet"),
  26142. name: "Wingspan (Top)",
  26143. image: {
  26144. source: "./media/characters/koros/wingspan-top.svg"
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(31 + 8 / 12, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(18 + 5 / 12, "feet"),
  26161. weight: math.unit(3750, "kg"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/vexx/front.svg",
  26165. extra: 426 / 396,
  26166. bottom: 31.5 / 458
  26167. }
  26168. },
  26169. maw: {
  26170. height: math.unit(6, "feet"),
  26171. name: "Maw",
  26172. image: {
  26173. source: "./media/characters/vexx/maw.svg"
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Normal",
  26180. height: math.unit(18 + 5 / 12, "feet"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(17 + 6 / 12, "feet"),
  26190. weight: math.unit(150, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/baadra/front.svg",
  26194. extra: 1694/1553,
  26195. bottom: 179/1873
  26196. }
  26197. },
  26198. frontAlt: {
  26199. height: math.unit(17 + 6 / 12, "feet"),
  26200. weight: math.unit(150, "lb"),
  26201. name: "Front (Alt)",
  26202. image: {
  26203. source: "./media/characters/baadra/front-alt.svg",
  26204. extra: 3137 / 2890,
  26205. bottom: 168.4 / 3305
  26206. }
  26207. },
  26208. back: {
  26209. height: math.unit(17 + 6 / 12, "feet"),
  26210. weight: math.unit(150, "lb"),
  26211. name: "Back",
  26212. image: {
  26213. source: "./media/characters/baadra/back.svg",
  26214. extra: 3142 / 2890,
  26215. bottom: 220 / 3371
  26216. }
  26217. },
  26218. head: {
  26219. height: math.unit(5.45, "feet"),
  26220. name: "Head",
  26221. image: {
  26222. source: "./media/characters/baadra/head.svg"
  26223. }
  26224. },
  26225. headAngry: {
  26226. height: math.unit(4.95, "feet"),
  26227. name: "Head (Angry)",
  26228. image: {
  26229. source: "./media/characters/baadra/head-angry.svg"
  26230. }
  26231. },
  26232. headOpen: {
  26233. height: math.unit(6, "feet"),
  26234. name: "Head (Open)",
  26235. image: {
  26236. source: "./media/characters/baadra/head-open.svg"
  26237. }
  26238. },
  26239. },
  26240. [
  26241. {
  26242. name: "Normal",
  26243. height: math.unit(17 + 6 / 12, "feet"),
  26244. default: true
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26250. {
  26251. front: {
  26252. height: math.unit(7 + 3 / 12, "feet"),
  26253. weight: math.unit(180, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/juri/front.svg",
  26257. extra: 1401 / 1237,
  26258. bottom: 18.5 / 1418
  26259. }
  26260. },
  26261. side: {
  26262. height: math.unit(7 + 3 / 12, "feet"),
  26263. weight: math.unit(180, "lb"),
  26264. name: "Side",
  26265. image: {
  26266. source: "./media/characters/juri/side.svg",
  26267. extra: 1424 / 1242,
  26268. bottom: 18.5 / 1447
  26269. }
  26270. },
  26271. sitting: {
  26272. height: math.unit(6, "feet"),
  26273. weight: math.unit(180, "lb"),
  26274. name: "Sitting",
  26275. image: {
  26276. source: "./media/characters/juri/sitting.svg",
  26277. extra: 1270 / 1143,
  26278. bottom: 100 / 1343
  26279. }
  26280. },
  26281. back: {
  26282. height: math.unit(7 + 3 / 12, "feet"),
  26283. weight: math.unit(180, "lb"),
  26284. name: "Back",
  26285. image: {
  26286. source: "./media/characters/juri/back.svg",
  26287. extra: 1377 / 1240,
  26288. bottom: 23.7 / 1405
  26289. }
  26290. },
  26291. maw: {
  26292. height: math.unit(2.8, "feet"),
  26293. name: "Maw",
  26294. image: {
  26295. source: "./media/characters/juri/maw.svg"
  26296. }
  26297. },
  26298. stomach: {
  26299. height: math.unit(0.89, "feet"),
  26300. capacity: math.unit(4, "liters"),
  26301. name: "Stomach",
  26302. image: {
  26303. source: "./media/characters/juri/stomach.svg"
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(7 + 3 / 12, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26317. {
  26318. fox: {
  26319. height: math.unit(5 + 6 / 12, "feet"),
  26320. weight: math.unit(140, "lb"),
  26321. name: "Fox",
  26322. image: {
  26323. source: "./media/characters/maxene-sita/fox.svg",
  26324. extra: 146 / 138,
  26325. bottom: 2.1 / 148.19
  26326. }
  26327. },
  26328. foxLaying: {
  26329. height: math.unit(1.70, "feet"),
  26330. weight: math.unit(140, "lb"),
  26331. name: "Fox (Laying)",
  26332. image: {
  26333. source: "./media/characters/maxene-sita/fox-laying.svg",
  26334. extra: 910 / 572,
  26335. bottom: 71 / 981
  26336. }
  26337. },
  26338. kitsune: {
  26339. height: math.unit(10, "feet"),
  26340. weight: math.unit(800, "lb"),
  26341. name: "Kitsune",
  26342. image: {
  26343. source: "./media/characters/maxene-sita/kitsune.svg",
  26344. extra: 185 / 176,
  26345. bottom: 4.7 / 189.9
  26346. }
  26347. },
  26348. hellhound: {
  26349. height: math.unit(10, "feet"),
  26350. weight: math.unit(700, "lb"),
  26351. name: "Hellhound",
  26352. image: {
  26353. source: "./media/characters/maxene-sita/hellhound.svg",
  26354. extra: 1600 / 1545,
  26355. bottom: 81 / 1681
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(5 + 6 / 12, "feet"),
  26363. default: true
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26369. {
  26370. front: {
  26371. height: math.unit(3 + 4 / 12, "feet"),
  26372. weight: math.unit(70, "lb"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/maia/front.svg",
  26376. extra: 227 / 219.5,
  26377. bottom: 40 / 267
  26378. }
  26379. },
  26380. back: {
  26381. height: math.unit(3 + 4 / 12, "feet"),
  26382. weight: math.unit(70, "lb"),
  26383. name: "Back",
  26384. image: {
  26385. source: "./media/characters/maia/back.svg",
  26386. extra: 237 / 225
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Normal",
  26393. height: math.unit(3 + 4 / 12, "feet"),
  26394. default: true
  26395. },
  26396. ]
  26397. ))
  26398. characterMakers.push(() => makeCharacter(
  26399. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26400. {
  26401. front: {
  26402. height: math.unit(5 + 10 / 12, "feet"),
  26403. weight: math.unit(197, "lb"),
  26404. name: "Front",
  26405. image: {
  26406. source: "./media/characters/jabaro/front.svg",
  26407. extra: 225 / 216,
  26408. bottom: 5.06 / 230
  26409. }
  26410. },
  26411. back: {
  26412. height: math.unit(5 + 10 / 12, "feet"),
  26413. weight: math.unit(197, "lb"),
  26414. name: "Back",
  26415. image: {
  26416. source: "./media/characters/jabaro/back.svg",
  26417. extra: 225 / 219,
  26418. bottom: 1.9 / 227
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(5 + 10 / 12, "feet"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(5 + 8 / 12, "feet"),
  26435. weight: math.unit(139, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/risa/front.svg",
  26439. extra: 270 / 260,
  26440. bottom: 11.2 / 282
  26441. }
  26442. },
  26443. back: {
  26444. height: math.unit(5 + 8 / 12, "feet"),
  26445. weight: math.unit(139, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/risa/back.svg",
  26449. extra: 264 / 255,
  26450. bottom: 4 / 268
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(5 + 8 / 12, "feet"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(2 + 11 / 12, "feet"),
  26467. weight: math.unit(30, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/weatley/front.svg",
  26471. bottom: 10.7 / 414,
  26472. extra: 403.5 / 362
  26473. }
  26474. },
  26475. back: {
  26476. height: math.unit(2 + 11 / 12, "feet"),
  26477. weight: math.unit(30, "lb"),
  26478. name: "Back",
  26479. image: {
  26480. source: "./media/characters/weatley/back.svg",
  26481. bottom: 10.7 / 414,
  26482. extra: 403.5 / 362
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(2 + 11 / 12, "feet"),
  26490. default: true
  26491. },
  26492. ]
  26493. ))
  26494. characterMakers.push(() => makeCharacter(
  26495. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26496. {
  26497. front: {
  26498. height: math.unit(5 + 2 / 12, "feet"),
  26499. weight: math.unit(50, "kg"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/mercury-crescent/front.svg",
  26503. extra: 1088 / 1033,
  26504. bottom: 18.9 / 1109
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(5 + 2 / 12, "feet"),
  26512. default: true
  26513. },
  26514. ]
  26515. ))
  26516. characterMakers.push(() => makeCharacter(
  26517. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26518. {
  26519. front: {
  26520. height: math.unit(2, "feet"),
  26521. weight: math.unit(15, "kg"),
  26522. name: "Front",
  26523. image: {
  26524. source: "./media/characters/diamond-jones/front.svg",
  26525. extra: 727/723,
  26526. bottom: 46/773
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(2, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26540. {
  26541. front: {
  26542. height: math.unit(3, "feet"),
  26543. weight: math.unit(30, "kg"),
  26544. name: "Front",
  26545. image: {
  26546. source: "./media/characters/sweet-bit/front.svg",
  26547. extra: 675 / 567,
  26548. bottom: 27.7 / 703
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(3, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26562. {
  26563. side: {
  26564. height: math.unit(9.178, "feet"),
  26565. weight: math.unit(500, "lb"),
  26566. name: "Side",
  26567. image: {
  26568. source: "./media/characters/umbrazen/side.svg",
  26569. extra: 1730 / 1473,
  26570. bottom: 34.6 / 1765
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(9.178, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(10, "feet"),
  26587. weight: math.unit(750, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/arlist/front.svg",
  26591. extra: 961 / 778,
  26592. bottom: 6.2 / 986
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(10, "feet"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26606. {
  26607. front: {
  26608. height: math.unit(5 + 1 / 12, "feet"),
  26609. weight: math.unit(110, "lb"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/aradel/front.svg",
  26613. extra: 324 / 303,
  26614. bottom: 3.6 / 329.4
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(5 + 1 / 12, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26628. {
  26629. dressed: {
  26630. height: math.unit(3 + 8 / 12, "feet"),
  26631. weight: math.unit(50, "lb"),
  26632. name: "Dressed",
  26633. image: {
  26634. source: "./media/characters/serryn/dressed.svg",
  26635. extra: 1792 / 1656,
  26636. bottom: 43.5 / 1840
  26637. }
  26638. },
  26639. nude: {
  26640. height: math.unit(3 + 8 / 12, "feet"),
  26641. weight: math.unit(50, "lb"),
  26642. name: "Nude",
  26643. image: {
  26644. source: "./media/characters/serryn/nude.svg",
  26645. extra: 1792 / 1656,
  26646. bottom: 43.5 / 1840
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(3 + 8 / 12, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(7 + 10 / 12, "feet"),
  26663. weight: math.unit(255, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/xavier-thyme/front.svg",
  26667. extra: 3733 / 3642,
  26668. bottom: 131 / 3869
  26669. }
  26670. },
  26671. frontRaven: {
  26672. height: math.unit(7 + 10 / 12, "feet"),
  26673. weight: math.unit(255, "lb"),
  26674. name: "Front (Raven)",
  26675. image: {
  26676. source: "./media/characters/xavier-thyme/front-raven.svg",
  26677. extra: 4385 / 3642,
  26678. bottom: 131 / 4517
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(7 + 10 / 12, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(1.6, "m"),
  26695. weight: math.unit(50, "kg"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/kiki/front.svg",
  26699. extra: 4682 / 3610,
  26700. bottom: 115 / 4777
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(1.6, "meters"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(50, "m"),
  26717. weight: math.unit(500, "tonnes"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/ryoko/front.svg",
  26721. extra: 4632 / 3926,
  26722. bottom: 193 / 4823
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Normal",
  26729. height: math.unit(50, "meters"),
  26730. default: true
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(30, "m"),
  26739. weight: math.unit(22, "tonnes"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/elio/front.svg",
  26743. extra: 4582 / 3720,
  26744. bottom: 236 / 4828
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(30, "meters"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(6 + 3 / 12, "feet"),
  26761. weight: math.unit(120, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/azura/front.svg",
  26765. extra: 1149 / 1135,
  26766. bottom: 45 / 1194
  26767. }
  26768. },
  26769. frontClothed: {
  26770. height: math.unit(6 + 3 / 12, "feet"),
  26771. weight: math.unit(120, "lb"),
  26772. name: "Front (Clothed)",
  26773. image: {
  26774. source: "./media/characters/azura/front-clothed.svg",
  26775. extra: 1149 / 1135,
  26776. bottom: 45 / 1194
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(6 + 3 / 12, "feet"),
  26784. default: true
  26785. },
  26786. {
  26787. name: "Macro",
  26788. height: math.unit(20 + 6 / 12, "feet")
  26789. },
  26790. {
  26791. name: "Megamacro",
  26792. height: math.unit(12, "miles")
  26793. },
  26794. {
  26795. name: "Gigamacro",
  26796. height: math.unit(10000, "miles")
  26797. },
  26798. {
  26799. name: "Teramacro",
  26800. height: math.unit(900000, "miles")
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26806. {
  26807. front: {
  26808. height: math.unit(12, "feet"),
  26809. weight: math.unit(1, "ton"),
  26810. capacity: math.unit(660000, "gallons"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/zeus/front.svg",
  26814. extra: 5005 / 4717,
  26815. bottom: 363 / 5388
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(12, "feet")
  26823. },
  26824. {
  26825. name: "Preferred Size",
  26826. height: math.unit(0.5, "miles"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Giga Horse",
  26831. height: math.unit(300, "miles")
  26832. },
  26833. {
  26834. name: "Riding Planets",
  26835. height: math.unit(30, "megameters")
  26836. },
  26837. {
  26838. name: "Cosmic Giant",
  26839. height: math.unit(3, "zettameters")
  26840. },
  26841. {
  26842. name: "Breeding God",
  26843. height: math.unit(9.92e22, "yottameters")
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26849. {
  26850. side: {
  26851. height: math.unit(9, "feet"),
  26852. weight: math.unit(1500, "kg"),
  26853. name: "Side",
  26854. image: {
  26855. source: "./media/characters/fang/side.svg",
  26856. extra: 924 / 866,
  26857. bottom: 47.5 / 972.3
  26858. }
  26859. },
  26860. },
  26861. [
  26862. {
  26863. name: "Normal",
  26864. height: math.unit(9, "feet"),
  26865. default: true
  26866. },
  26867. {
  26868. name: "Macro",
  26869. height: math.unit(75 + 6 / 12, "feet")
  26870. },
  26871. {
  26872. name: "Teramacro",
  26873. height: math.unit(50000, "miles")
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(10, "feet"),
  26882. weight: math.unit(2, "tons"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/rekhit/front.svg",
  26886. extra: 2796 / 2590,
  26887. bottom: 225 / 3022
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(10, "feet"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(500, "feet")
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(7 + 6.451 / 12, "feet"),
  26908. weight: math.unit(310, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/dahlia-verrick/front.svg",
  26912. extra: 1488 / 1365,
  26913. bottom: 6.2 / 1495
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(7 + 6.451 / 12, "feet"),
  26918. weight: math.unit(310, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/dahlia-verrick/back.svg",
  26922. extra: 1472 / 1351,
  26923. bottom: 5.28 / 1477
  26924. }
  26925. },
  26926. frontBusiness: {
  26927. height: math.unit(7 + 6.451 / 12, "feet"),
  26928. weight: math.unit(200, "lb"),
  26929. name: "Front (Business)",
  26930. image: {
  26931. source: "./media/characters/dahlia-verrick/front-business.svg",
  26932. extra: 1478 / 1381,
  26933. bottom: 5.5 / 1484
  26934. }
  26935. },
  26936. frontCasual: {
  26937. height: math.unit(7 + 6.451 / 12, "feet"),
  26938. weight: math.unit(200, "lb"),
  26939. name: "Front (Casual)",
  26940. image: {
  26941. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26942. extra: 1478 / 1381,
  26943. bottom: 5.5 / 1484
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Travel-Sized",
  26950. height: math.unit(7.45, "inches")
  26951. },
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(7 + 6.451 / 12, "feet"),
  26955. default: true
  26956. },
  26957. {
  26958. name: "Hitting the Town",
  26959. height: math.unit(37 + 8 / 12, "feet")
  26960. },
  26961. {
  26962. name: "Stomp in the Suburbs",
  26963. height: math.unit(964 + 9.728 / 12, "feet")
  26964. },
  26965. {
  26966. name: "Sit on the City",
  26967. height: math.unit(61747 + 10.592 / 12, "feet")
  26968. },
  26969. {
  26970. name: "Glomp the Globe",
  26971. height: math.unit(252919327 + 4.832 / 12, "feet")
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(6 + 4 / 12, "feet"),
  26980. weight: math.unit(320, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/balina-mahigan/front.svg",
  26984. extra: 447 / 428,
  26985. bottom: 18 / 466
  26986. }
  26987. },
  26988. back: {
  26989. height: math.unit(6 + 4 / 12, "feet"),
  26990. weight: math.unit(320, "lb"),
  26991. name: "Back",
  26992. image: {
  26993. source: "./media/characters/balina-mahigan/back.svg",
  26994. extra: 445 / 428,
  26995. bottom: 4.07 / 448
  26996. }
  26997. },
  26998. arm: {
  26999. height: math.unit(1.88, "feet"),
  27000. name: "Arm",
  27001. image: {
  27002. source: "./media/characters/balina-mahigan/arm.svg"
  27003. }
  27004. },
  27005. backPort: {
  27006. height: math.unit(0.685, "feet"),
  27007. name: "Back Port",
  27008. image: {
  27009. source: "./media/characters/balina-mahigan/back-port.svg"
  27010. }
  27011. },
  27012. hoofpaw: {
  27013. height: math.unit(1.41, "feet"),
  27014. name: "Hoofpaw",
  27015. image: {
  27016. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27017. }
  27018. },
  27019. leftHandBack: {
  27020. height: math.unit(0.938, "feet"),
  27021. name: "Left Hand (Back)",
  27022. image: {
  27023. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27024. }
  27025. },
  27026. leftHandFront: {
  27027. height: math.unit(0.938, "feet"),
  27028. name: "Left Hand (Front)",
  27029. image: {
  27030. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27031. }
  27032. },
  27033. rightHandBack: {
  27034. height: math.unit(0.95, "feet"),
  27035. name: "Right Hand (Back)",
  27036. image: {
  27037. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27038. }
  27039. },
  27040. rightHandFront: {
  27041. height: math.unit(0.95, "feet"),
  27042. name: "Right Hand (Front)",
  27043. image: {
  27044. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(6 + 4 / 12, "feet"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(6, "feet"),
  27061. weight: math.unit(320, "lb"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/balina-mejeri/front.svg",
  27065. extra: 517 / 488,
  27066. bottom: 44.2 / 561
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(6 + 4 / 12, "feet")
  27074. },
  27075. {
  27076. name: "Business",
  27077. height: math.unit(155, "feet"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27084. {
  27085. kneeling: {
  27086. height: math.unit(6 + 4 / 12, "feet"),
  27087. weight: math.unit(300 * 20, "lb"),
  27088. name: "Kneeling",
  27089. image: {
  27090. source: "./media/characters/balbarian/kneeling.svg",
  27091. extra: 922 / 862,
  27092. bottom: 42.4 / 965
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(6 + 4 / 12, "feet")
  27100. },
  27101. {
  27102. name: "Treasured",
  27103. height: math.unit(18 + 9 / 12, "feet"),
  27104. default: true
  27105. },
  27106. {
  27107. name: "Macro",
  27108. height: math.unit(900, "feet")
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(6 + 4 / 12, "feet"),
  27117. weight: math.unit(325, "lb"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/balina-amarini/front.svg",
  27121. extra: 415 / 403,
  27122. bottom: 19 / 433.4
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(6 + 4 / 12, "feet"),
  27127. weight: math.unit(325, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/balina-amarini/back.svg",
  27131. extra: 415 / 403,
  27132. bottom: 13.5 / 432
  27133. }
  27134. },
  27135. overdrive: {
  27136. height: math.unit(6 + 4 / 12, "feet"),
  27137. weight: math.unit(400, "lb"),
  27138. name: "Overdrive",
  27139. image: {
  27140. source: "./media/characters/balina-amarini/overdrive.svg",
  27141. extra: 269 / 259,
  27142. bottom: 12 / 282
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Boom",
  27149. height: math.unit(9 + 10 / 12, "feet"),
  27150. default: true
  27151. },
  27152. {
  27153. name: "Macro",
  27154. height: math.unit(280, "feet")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27160. {
  27161. goddess: {
  27162. height: math.unit(600, "feet"),
  27163. weight: math.unit(2000000, "tons"),
  27164. name: "Goddess",
  27165. image: {
  27166. source: "./media/characters/lady-kubwa/goddess.svg",
  27167. extra: 1240.5 / 1223,
  27168. bottom: 22 / 1263
  27169. }
  27170. },
  27171. goddesser: {
  27172. height: math.unit(900, "feet"),
  27173. weight: math.unit(20000000, "lb"),
  27174. name: "Goddess-er",
  27175. image: {
  27176. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27177. extra: 899 / 888,
  27178. bottom: 12.6 / 912
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Macro",
  27185. height: math.unit(600, "feet"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Megamacro",
  27190. height: math.unit(250, "miles")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(7 + 7 / 12, "feet"),
  27199. weight: math.unit(250, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/tala-grovehorn/front.svg",
  27203. extra: 2636 / 2525,
  27204. bottom: 147 / 2781
  27205. }
  27206. },
  27207. back: {
  27208. height: math.unit(7 + 7 / 12, "feet"),
  27209. weight: math.unit(250, "lb"),
  27210. name: "Back",
  27211. image: {
  27212. source: "./media/characters/tala-grovehorn/back.svg",
  27213. extra: 2635 / 2539,
  27214. bottom: 100 / 2732.8
  27215. }
  27216. },
  27217. mouth: {
  27218. height: math.unit(1.15, "feet"),
  27219. name: "Mouth",
  27220. image: {
  27221. source: "./media/characters/tala-grovehorn/mouth.svg"
  27222. }
  27223. },
  27224. dick: {
  27225. height: math.unit(2.36, "feet"),
  27226. name: "Dick",
  27227. image: {
  27228. source: "./media/characters/tala-grovehorn/dick.svg"
  27229. }
  27230. },
  27231. slit: {
  27232. height: math.unit(0.61, "feet"),
  27233. name: "Slit",
  27234. image: {
  27235. source: "./media/characters/tala-grovehorn/slit.svg"
  27236. }
  27237. },
  27238. },
  27239. [
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(7 + 7 / 12, "feet"),
  27247. weight: math.unit(225, "lb"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/epona/front.svg",
  27251. extra: 2445 / 2290,
  27252. bottom: 251 / 2696
  27253. }
  27254. },
  27255. back: {
  27256. height: math.unit(7 + 7 / 12, "feet"),
  27257. weight: math.unit(225, "lb"),
  27258. name: "Back",
  27259. image: {
  27260. source: "./media/characters/epona/back.svg",
  27261. extra: 2546 / 2408,
  27262. bottom: 44 / 2589
  27263. }
  27264. },
  27265. genitals: {
  27266. height: math.unit(1.5, "feet"),
  27267. name: "Genitals",
  27268. image: {
  27269. source: "./media/characters/epona/genitals.svg"
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Normal",
  27276. height: math.unit(7 + 7 / 12, "feet"),
  27277. default: true
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(7, "feet"),
  27286. weight: math.unit(518, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/avia-bloodbourn/front.svg",
  27290. extra: 1466 / 1350,
  27291. bottom: 65 / 1527
  27292. }
  27293. },
  27294. },
  27295. [
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(9.35, "feet"),
  27303. weight: math.unit(600, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/amera/front.svg",
  27307. extra: 891 / 818,
  27308. bottom: 30 / 922.7
  27309. }
  27310. },
  27311. back: {
  27312. height: math.unit(9.35, "feet"),
  27313. weight: math.unit(600, "lb"),
  27314. name: "Back",
  27315. image: {
  27316. source: "./media/characters/amera/back.svg",
  27317. extra: 876 / 824,
  27318. bottom: 6.8 / 884
  27319. }
  27320. },
  27321. dick: {
  27322. height: math.unit(2.14, "feet"),
  27323. name: "Dick",
  27324. image: {
  27325. source: "./media/characters/amera/dick.svg"
  27326. }
  27327. },
  27328. },
  27329. [
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(9.35, "feet"),
  27333. default: true
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27339. {
  27340. kneeling: {
  27341. height: math.unit(3 + 4 / 12, "feet"),
  27342. weight: math.unit(90, "lb"),
  27343. name: "Kneeling",
  27344. image: {
  27345. source: "./media/characters/rosewen/kneeling.svg",
  27346. extra: 1835 / 1571,
  27347. bottom: 27.7 / 1862
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Normal",
  27354. height: math.unit(3 + 4 / 12, "feet"),
  27355. default: true
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27361. {
  27362. front: {
  27363. height: math.unit(5 + 10 / 12, "feet"),
  27364. weight: math.unit(200, "lb"),
  27365. name: "Front",
  27366. image: {
  27367. source: "./media/characters/sabah/front.svg",
  27368. extra: 849 / 763,
  27369. bottom: 33.9 / 881
  27370. }
  27371. },
  27372. },
  27373. [
  27374. {
  27375. name: "Normal",
  27376. height: math.unit(5 + 10 / 12, "feet"),
  27377. default: true
  27378. },
  27379. ]
  27380. ))
  27381. characterMakers.push(() => makeCharacter(
  27382. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27383. {
  27384. front: {
  27385. height: math.unit(3 + 5 / 12, "feet"),
  27386. weight: math.unit(40, "kg"),
  27387. name: "Front",
  27388. image: {
  27389. source: "./media/characters/purple-flame/front.svg",
  27390. extra: 1577 / 1412,
  27391. bottom: 97 / 1694
  27392. }
  27393. },
  27394. frontDressed: {
  27395. height: math.unit(3 + 5 / 12, "feet"),
  27396. weight: math.unit(40, "kg"),
  27397. name: "Front (Dressed)",
  27398. image: {
  27399. source: "./media/characters/purple-flame/front-dressed.svg",
  27400. extra: 1577 / 1412,
  27401. bottom: 97 / 1694
  27402. }
  27403. },
  27404. headphones: {
  27405. height: math.unit(0.85, "feet"),
  27406. name: "Headphones",
  27407. image: {
  27408. source: "./media/characters/purple-flame/headphones.svg"
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Really Small",
  27415. height: math.unit(5, "cm")
  27416. },
  27417. {
  27418. name: "Micro",
  27419. height: math.unit(1 + 5 / 12, "feet")
  27420. },
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(3 + 5 / 12, "feet"),
  27424. default: true
  27425. },
  27426. {
  27427. name: "Minimacro",
  27428. height: math.unit(125, "feet")
  27429. },
  27430. {
  27431. name: "Macro",
  27432. height: math.unit(0.5, "miles")
  27433. },
  27434. {
  27435. name: "Megamacro",
  27436. height: math.unit(50, "miles")
  27437. },
  27438. {
  27439. name: "Gigantic",
  27440. height: math.unit(750, "miles")
  27441. },
  27442. {
  27443. name: "Planetary",
  27444. height: math.unit(15000, "miles")
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(14, "feet"),
  27453. weight: math.unit(959, "lb"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/arsenal/front.svg",
  27457. extra: 2357 / 2157,
  27458. bottom: 93 / 2458
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(14, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(6, "feet"),
  27475. weight: math.unit(150, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/adira/front.svg",
  27479. extra: 1078 / 1029,
  27480. bottom: 87 / 1166
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Micro",
  27487. height: math.unit(4, "inches"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Macro",
  27492. height: math.unit(50, "feet")
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(16, "feet"),
  27501. weight: math.unit(1000, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/grim/front.svg",
  27505. extra: 622 / 614,
  27506. bottom: 18.1 / 642
  27507. }
  27508. },
  27509. back: {
  27510. height: math.unit(16, "feet"),
  27511. weight: math.unit(1000, "lb"),
  27512. name: "Back",
  27513. image: {
  27514. source: "./media/characters/grim/back.svg",
  27515. extra: 610.6 / 602,
  27516. bottom: 40.8 / 652
  27517. }
  27518. },
  27519. hunched: {
  27520. height: math.unit(9.75, "feet"),
  27521. weight: math.unit(1000, "lb"),
  27522. name: "Hunched",
  27523. image: {
  27524. source: "./media/characters/grim/hunched.svg",
  27525. extra: 304 / 297,
  27526. bottom: 35.4 / 394
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(16, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(2.3, "meters"),
  27543. weight: math.unit(300, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/sinja/front-sfw.svg",
  27547. extra: 1393 / 1294,
  27548. bottom: 70 / 1463
  27549. }
  27550. },
  27551. frontNsfw: {
  27552. height: math.unit(2.3, "meters"),
  27553. weight: math.unit(300, "lb"),
  27554. name: "Front (NSFW)",
  27555. image: {
  27556. source: "./media/characters/sinja/front-nsfw.svg",
  27557. extra: 1393 / 1294,
  27558. bottom: 70 / 1463
  27559. }
  27560. },
  27561. back: {
  27562. height: math.unit(2.3, "meters"),
  27563. weight: math.unit(300, "lb"),
  27564. name: "Back",
  27565. image: {
  27566. source: "./media/characters/sinja/back.svg",
  27567. extra: 1393 / 1294,
  27568. bottom: 70 / 1463
  27569. }
  27570. },
  27571. head: {
  27572. height: math.unit(1.771, "feet"),
  27573. name: "Head",
  27574. image: {
  27575. source: "./media/characters/sinja/head.svg"
  27576. }
  27577. },
  27578. slit: {
  27579. height: math.unit(0.8, "feet"),
  27580. name: "Slit",
  27581. image: {
  27582. source: "./media/characters/sinja/slit.svg"
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(2.3, "meters")
  27590. },
  27591. {
  27592. name: "Macro",
  27593. height: math.unit(91, "meters"),
  27594. default: true
  27595. },
  27596. {
  27597. name: "Megamacro",
  27598. height: math.unit(91440, "meters")
  27599. },
  27600. {
  27601. name: "Gigamacro",
  27602. height: math.unit(60960000, "meters")
  27603. },
  27604. {
  27605. name: "Teramacro",
  27606. height: math.unit(9144000000, "meters")
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(1.7, "meters"),
  27615. weight: math.unit(130, "lb"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/kyu/front.svg",
  27619. extra: 415 / 395,
  27620. bottom: 5 / 420
  27621. }
  27622. },
  27623. head: {
  27624. height: math.unit(1.75, "feet"),
  27625. name: "Head",
  27626. image: {
  27627. source: "./media/characters/kyu/head.svg"
  27628. }
  27629. },
  27630. foot: {
  27631. height: math.unit(0.81, "feet"),
  27632. name: "Foot",
  27633. image: {
  27634. source: "./media/characters/kyu/foot.svg"
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Normal",
  27641. height: math.unit(1.7, "meters")
  27642. },
  27643. {
  27644. name: "Macro",
  27645. height: math.unit(131, "feet"),
  27646. default: true
  27647. },
  27648. {
  27649. name: "Megamacro",
  27650. height: math.unit(91440, "meters")
  27651. },
  27652. {
  27653. name: "Gigamacro",
  27654. height: math.unit(60960000, "meters")
  27655. },
  27656. {
  27657. name: "Teramacro",
  27658. height: math.unit(9144000000, "meters")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27664. {
  27665. front: {
  27666. height: math.unit(7 + 1 / 12, "feet"),
  27667. weight: math.unit(250, "lb"),
  27668. name: "Front",
  27669. image: {
  27670. source: "./media/characters/joey/front.svg",
  27671. extra: 1791 / 1537,
  27672. bottom: 28 / 1816
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Micro",
  27679. height: math.unit(3, "inches")
  27680. },
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(7 + 1 / 12, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(165, "cm"),
  27693. weight: math.unit(140, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/sam-evans/front.svg",
  27697. extra: 3417 / 3230,
  27698. bottom: 41.3 / 3417
  27699. }
  27700. },
  27701. frontSixTails: {
  27702. height: math.unit(165, "cm"),
  27703. weight: math.unit(140, "lb"),
  27704. name: "Front-six-tails",
  27705. image: {
  27706. source: "./media/characters/sam-evans/front-six-tails.svg",
  27707. extra: 3417 / 3230,
  27708. bottom: 41.3 / 3417
  27709. }
  27710. },
  27711. back: {
  27712. height: math.unit(165, "cm"),
  27713. weight: math.unit(140, "lb"),
  27714. name: "Back",
  27715. image: {
  27716. source: "./media/characters/sam-evans/back.svg",
  27717. extra: 3227 / 3032,
  27718. bottom: 6.8 / 3234
  27719. }
  27720. },
  27721. face: {
  27722. height: math.unit(0.68, "feet"),
  27723. name: "Face",
  27724. image: {
  27725. source: "./media/characters/sam-evans/face.svg"
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(165, "cm"),
  27733. default: true
  27734. },
  27735. {
  27736. name: "Macro",
  27737. height: math.unit(100, "meters")
  27738. },
  27739. {
  27740. name: "Macro+",
  27741. height: math.unit(800, "meters")
  27742. },
  27743. {
  27744. name: "Macro++",
  27745. height: math.unit(3, "km")
  27746. },
  27747. {
  27748. name: "Macro+++",
  27749. height: math.unit(30, "km")
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(10, "feet"),
  27758. weight: math.unit(750, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/juliet-a/front.svg",
  27762. extra: 1766 / 1720,
  27763. bottom: 43 / 1809
  27764. }
  27765. },
  27766. back: {
  27767. height: math.unit(10, "feet"),
  27768. weight: math.unit(750, "lb"),
  27769. name: "Back",
  27770. image: {
  27771. source: "./media/characters/juliet-a/back.svg",
  27772. extra: 1781 / 1734,
  27773. bottom: 35 / 1810,
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(10, "feet"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Dragon Form",
  27785. height: math.unit(250, "feet")
  27786. },
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(1000, "feet")
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(10000, "feet")
  27794. }
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27799. {
  27800. regular: {
  27801. height: math.unit(7 + 3 / 12, "feet"),
  27802. weight: math.unit(260, "lb"),
  27803. name: "Regular",
  27804. image: {
  27805. source: "./media/characters/wild/regular.svg",
  27806. extra: 97.45 / 92,
  27807. bottom: 6.8 / 104.3
  27808. }
  27809. },
  27810. biggums: {
  27811. height: math.unit(8 + 6 / 12, "feet"),
  27812. weight: math.unit(425, "lb"),
  27813. name: "Biggums",
  27814. image: {
  27815. source: "./media/characters/wild/biggums.svg",
  27816. extra: 97.45 / 92,
  27817. bottom: 7.5 / 132.34
  27818. }
  27819. },
  27820. mawRegular: {
  27821. height: math.unit(1.24, "feet"),
  27822. name: "Maw (Regular)",
  27823. image: {
  27824. source: "./media/characters/wild/maw.svg"
  27825. }
  27826. },
  27827. mawBiggums: {
  27828. height: math.unit(1.47, "feet"),
  27829. name: "Maw (Biggums)",
  27830. image: {
  27831. source: "./media/characters/wild/maw.svg"
  27832. }
  27833. },
  27834. },
  27835. [
  27836. {
  27837. name: "Normal",
  27838. height: math.unit(7 + 3 / 12, "feet"),
  27839. default: true
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27845. {
  27846. front: {
  27847. height: math.unit(2.5, "meters"),
  27848. weight: math.unit(200, "kg"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/vidar/front.svg",
  27852. extra: 2994 / 2795,
  27853. bottom: 56 / 3061
  27854. }
  27855. },
  27856. back: {
  27857. height: math.unit(2.5, "meters"),
  27858. weight: math.unit(200, "kg"),
  27859. name: "Back",
  27860. image: {
  27861. source: "./media/characters/vidar/back.svg",
  27862. extra: 3131 / 2928,
  27863. bottom: 13.5 / 3141.5
  27864. }
  27865. },
  27866. feral: {
  27867. height: math.unit(2.5, "meters"),
  27868. weight: math.unit(2000, "kg"),
  27869. name: "Feral",
  27870. image: {
  27871. source: "./media/characters/vidar/feral.svg",
  27872. extra: 2790 / 1765,
  27873. bottom: 6 / 2796
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(2.5, "meters"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Macro",
  27885. height: math.unit(100, "meters")
  27886. },
  27887. ]
  27888. ))
  27889. characterMakers.push(() => makeCharacter(
  27890. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27891. {
  27892. front: {
  27893. height: math.unit(5 + 9 / 12, "feet"),
  27894. weight: math.unit(120, "lb"),
  27895. name: "Front",
  27896. image: {
  27897. source: "./media/characters/ash/front.svg",
  27898. extra: 2189 / 1961,
  27899. bottom: 5.2 / 2194
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(5 + 9 / 12, "feet"),
  27907. default: true
  27908. },
  27909. ]
  27910. ))
  27911. characterMakers.push(() => makeCharacter(
  27912. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27913. {
  27914. front: {
  27915. height: math.unit(9, "feet"),
  27916. weight: math.unit(10000, "lb"),
  27917. name: "Front",
  27918. image: {
  27919. source: "./media/characters/gygabite/front.svg",
  27920. bottom: 31.7 / 537.8,
  27921. extra: 505 / 370
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(9, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(12, "feet"),
  27938. weight: math.unit(35000, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/p0tat0/front.svg",
  27942. extra: 1065 / 921,
  27943. bottom: 55.7 / 1121.25
  27944. }
  27945. },
  27946. },
  27947. [
  27948. {
  27949. name: "Normal",
  27950. height: math.unit(12, "feet"),
  27951. default: true
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27957. {
  27958. side: {
  27959. height: math.unit(6.5, "feet"),
  27960. weight: math.unit(800, "lb"),
  27961. name: "Side",
  27962. image: {
  27963. source: "./media/characters/dusk/side.svg",
  27964. extra: 615 / 373,
  27965. bottom: 53 / 664
  27966. }
  27967. },
  27968. sitting: {
  27969. height: math.unit(7, "feet"),
  27970. weight: math.unit(800, "lb"),
  27971. name: "Sitting",
  27972. image: {
  27973. source: "./media/characters/dusk/sitting.svg",
  27974. extra: 753 / 425,
  27975. bottom: 33 / 774
  27976. }
  27977. },
  27978. head: {
  27979. height: math.unit(6.1, "feet"),
  27980. name: "Head",
  27981. image: {
  27982. source: "./media/characters/dusk/head.svg"
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(7, "feet"),
  27990. default: true
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(15, "feet"),
  27999. weight: math.unit(7000, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/jay-direwolf/front.svg",
  28003. extra: 1810 / 1732,
  28004. bottom: 66 / 1892
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(15, "feet"),
  28012. default: true
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(4 + 9 / 12, "feet"),
  28021. weight: math.unit(130, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/anchovie/front.svg",
  28025. extra: 382 / 350,
  28026. bottom: 25 / 409
  28027. }
  28028. },
  28029. back: {
  28030. height: math.unit(4 + 9 / 12, "feet"),
  28031. weight: math.unit(130, "lb"),
  28032. name: "Back",
  28033. image: {
  28034. source: "./media/characters/anchovie/back.svg",
  28035. extra: 385 / 352,
  28036. bottom: 16.6 / 402
  28037. }
  28038. },
  28039. frontDressed: {
  28040. height: math.unit(4 + 9 / 12, "feet"),
  28041. weight: math.unit(130, "lb"),
  28042. name: "Front (Dressed)",
  28043. image: {
  28044. source: "./media/characters/anchovie/front-dressed.svg",
  28045. extra: 382 / 350,
  28046. bottom: 25 / 409
  28047. }
  28048. },
  28049. backDressed: {
  28050. height: math.unit(4 + 9 / 12, "feet"),
  28051. weight: math.unit(130, "lb"),
  28052. name: "Back (Dressed)",
  28053. image: {
  28054. source: "./media/characters/anchovie/back-dressed.svg",
  28055. extra: 385 / 352,
  28056. bottom: 16.6 / 402
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Micro",
  28063. height: math.unit(6.4, "inches")
  28064. },
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(4 + 9 / 12, "feet"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(2, "meters"),
  28077. weight: math.unit(180, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/acidrenamon/front.svg",
  28081. extra: 987 / 890,
  28082. bottom: 22.8 / 1009
  28083. }
  28084. },
  28085. back: {
  28086. height: math.unit(2, "meters"),
  28087. weight: math.unit(180, "lb"),
  28088. name: "Back",
  28089. image: {
  28090. source: "./media/characters/acidrenamon/back.svg",
  28091. extra: 983 / 891,
  28092. bottom: 8.4 / 992
  28093. }
  28094. },
  28095. head: {
  28096. height: math.unit(1.92, "feet"),
  28097. name: "Head",
  28098. image: {
  28099. source: "./media/characters/acidrenamon/head.svg"
  28100. }
  28101. },
  28102. rump: {
  28103. height: math.unit(1.72, "feet"),
  28104. name: "Rump",
  28105. image: {
  28106. source: "./media/characters/acidrenamon/rump.svg"
  28107. }
  28108. },
  28109. tail: {
  28110. height: math.unit(4.2, "feet"),
  28111. name: "Tail",
  28112. image: {
  28113. source: "./media/characters/acidrenamon/tail.svg"
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(2, "meters"),
  28121. default: true
  28122. },
  28123. {
  28124. name: "Minimacro",
  28125. height: math.unit(7, "meters")
  28126. },
  28127. {
  28128. name: "Macro",
  28129. height: math.unit(200, "meters")
  28130. },
  28131. {
  28132. name: "Gigamacro",
  28133. height: math.unit(0.2, "earths")
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(152, "feet"),
  28142. name: "Front",
  28143. image: {
  28144. source: "./media/characters/kenzie-lee/front.svg",
  28145. extra: 1869/1774,
  28146. bottom: 128/1997
  28147. }
  28148. },
  28149. side: {
  28150. height: math.unit(86, "feet"),
  28151. name: "Side",
  28152. image: {
  28153. source: "./media/characters/kenzie-lee/side.svg",
  28154. extra: 930/815,
  28155. bottom: 177/1107
  28156. }
  28157. },
  28158. paw: {
  28159. height: math.unit(15, "feet"),
  28160. name: "Paw",
  28161. image: {
  28162. source: "./media/characters/kenzie-lee/paw.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Micro",
  28169. height: math.unit(1.5, "inches")
  28170. },
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(152, "feet"),
  28174. default: true
  28175. },
  28176. {
  28177. name: "Megamacro",
  28178. height: math.unit(7, "miles")
  28179. },
  28180. {
  28181. name: "Gigamacro",
  28182. height: math.unit(8000, "miles")
  28183. },
  28184. ]
  28185. ))
  28186. characterMakers.push(() => makeCharacter(
  28187. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28188. {
  28189. side: {
  28190. height: math.unit(6, "feet"),
  28191. weight: math.unit(150, "lb"),
  28192. name: "Side",
  28193. image: {
  28194. source: "./media/characters/withers/side.svg",
  28195. extra: 1830 / 1728,
  28196. bottom: 96 / 1927
  28197. }
  28198. },
  28199. front: {
  28200. height: math.unit(6, "feet"),
  28201. weight: math.unit(150, "lb"),
  28202. name: "Front",
  28203. image: {
  28204. source: "./media/characters/withers/front.svg",
  28205. extra: 1514 / 1438,
  28206. bottom: 118 / 1632
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Macro",
  28213. height: math.unit(168, "feet"),
  28214. default: true
  28215. },
  28216. {
  28217. name: "Megamacro",
  28218. height: math.unit(15, "miles")
  28219. }
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(6 + 7 / 12, "feet"),
  28227. weight: math.unit(250, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/nemoskii/front.svg",
  28231. extra: 2270 / 1734,
  28232. bottom: 86 / 2354
  28233. }
  28234. },
  28235. back: {
  28236. height: math.unit(6 + 7 / 12, "feet"),
  28237. weight: math.unit(250, "lb"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/nemoskii/back.svg",
  28241. extra: 1845 / 1788,
  28242. bottom: 10.5 / 1852
  28243. }
  28244. },
  28245. head: {
  28246. height: math.unit(1.31, "feet"),
  28247. name: "Head",
  28248. image: {
  28249. source: "./media/characters/nemoskii/head.svg"
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Micro",
  28256. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28257. },
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(6 + 7 / 12, "feet"),
  28261. default: true
  28262. },
  28263. {
  28264. name: "Macro",
  28265. height: math.unit((6 + 7 / 12) * 150, "feet")
  28266. },
  28267. {
  28268. name: "Macro+",
  28269. height: math.unit((6 + 7 / 12) * 500, "feet")
  28270. },
  28271. {
  28272. name: "Megamacro",
  28273. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(1, "mile"),
  28282. weight: math.unit(265261.9, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/shui/front.svg",
  28286. extra: 1633 / 1564,
  28287. bottom: 91.5 / 1726
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Macro",
  28294. height: math.unit(1, "mile"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(12 + 6 / 12, "feet"),
  28304. weight: math.unit(1342, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/arokh-takakura/front.svg",
  28308. extra: 1089 / 1043,
  28309. bottom: 77.4 / 1176.7
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(12 + 6 / 12, "feet"),
  28314. weight: math.unit(1342, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/arokh-takakura/back.svg",
  28318. extra: 1046 / 1019,
  28319. bottom: 102 / 1150
  28320. }
  28321. },
  28322. },
  28323. [
  28324. {
  28325. name: "Big",
  28326. height: math.unit(12 + 6 / 12, "feet"),
  28327. default: true
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(5 + 6 / 12, "feet"),
  28336. weight: math.unit(150, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/theo/front.svg",
  28340. extra: 1184 / 1131,
  28341. bottom: 7.4 / 1191
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Micro",
  28348. height: math.unit(5, "inches")
  28349. },
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(5 + 6 / 12, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(5 + 9 / 12, "feet"),
  28362. weight: math.unit(130, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/cecelia-swift/front.svg",
  28366. extra: 502 / 484,
  28367. bottom: 23 / 523
  28368. }
  28369. },
  28370. back: {
  28371. height: math.unit(5 + 9 / 12, "feet"),
  28372. weight: math.unit(130, "lb"),
  28373. name: "Back",
  28374. image: {
  28375. source: "./media/characters/cecelia-swift/back.svg",
  28376. extra: 499 / 485,
  28377. bottom: 12 / 511
  28378. }
  28379. },
  28380. head: {
  28381. height: math.unit(0.90, "feet"),
  28382. name: "Head",
  28383. image: {
  28384. source: "./media/characters/cecelia-swift/head.svg"
  28385. }
  28386. },
  28387. rump: {
  28388. height: math.unit(1.75, "feet"),
  28389. name: "Rump",
  28390. image: {
  28391. source: "./media/characters/cecelia-swift/rump.svg"
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(5 + 9 / 12, "feet"),
  28399. default: true
  28400. },
  28401. {
  28402. name: "Big",
  28403. height: math.unit(50, "feet")
  28404. },
  28405. {
  28406. name: "Macro",
  28407. height: math.unit(100, "feet")
  28408. },
  28409. {
  28410. name: "Macro+",
  28411. height: math.unit(500, "feet")
  28412. },
  28413. {
  28414. name: "Macro++",
  28415. height: math.unit(1000, "feet")
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(6, "feet"),
  28424. weight: math.unit(150, "lb"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/kaunan/front.svg",
  28428. extra: 2890 / 2523,
  28429. bottom: 49 / 2939
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Macro",
  28436. height: math.unit(150, "feet"),
  28437. default: true
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(175, "cm"),
  28446. weight: math.unit(60, "kg"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/fei/front.svg",
  28450. extra: 1873/1723,
  28451. bottom: 53/1926
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Mortal",
  28458. height: math.unit(175, "cm")
  28459. },
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(3500, "m"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Stroll",
  28467. height: math.unit(17.5, "km")
  28468. },
  28469. {
  28470. name: "Showoff",
  28471. height: math.unit(175, "km")
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(7, "feet"),
  28480. weight: math.unit(1000, "kg"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/edrax/front.svg",
  28484. extra: 2838 / 2550,
  28485. bottom: 130 / 2968
  28486. }
  28487. },
  28488. },
  28489. [
  28490. {
  28491. name: "Small",
  28492. height: math.unit(7, "feet")
  28493. },
  28494. {
  28495. name: "Normal",
  28496. height: math.unit(1500, "meters")
  28497. },
  28498. {
  28499. name: "Mega",
  28500. height: math.unit(12000000, "km"),
  28501. default: true
  28502. },
  28503. {
  28504. name: "Megamacro",
  28505. height: math.unit(10600000, "lightyears")
  28506. },
  28507. {
  28508. name: "Hypermacro",
  28509. height: math.unit(256, "yottameters")
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(10, "feet"),
  28518. weight: math.unit(750, "lb"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/clove/front.svg",
  28522. extra: 1918/1751,
  28523. bottom: 52/1970
  28524. }
  28525. },
  28526. back: {
  28527. height: math.unit(10, "feet"),
  28528. weight: math.unit(750, "lb"),
  28529. name: "Back",
  28530. image: {
  28531. source: "./media/characters/clove/back.svg",
  28532. extra: 1912/1747,
  28533. bottom: 50/1962
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Normal",
  28540. height: math.unit(10, "feet"),
  28541. default: true
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(4, "feet"),
  28550. weight: math.unit(50, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/alex-rabbit/front.svg",
  28554. extra: 507 / 458,
  28555. bottom: 18.5 / 527
  28556. }
  28557. },
  28558. back: {
  28559. height: math.unit(4, "feet"),
  28560. weight: math.unit(50, "lb"),
  28561. name: "Back",
  28562. image: {
  28563. source: "./media/characters/alex-rabbit/back.svg",
  28564. extra: 502 / 460,
  28565. bottom: 18.9 / 521
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(4, "feet"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(1 + 3 / 12, "feet"),
  28582. weight: math.unit(80, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/zander-rose/front.svg",
  28586. extra: 916 / 797,
  28587. bottom: 17 / 933
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(1 + 3 / 12, "feet"),
  28592. weight: math.unit(80, "lb"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/zander-rose/back.svg",
  28596. extra: 903 / 779,
  28597. bottom: 31 / 934
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(1 + 3 / 12, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28611. {
  28612. anthro: {
  28613. height: math.unit(6, "feet"),
  28614. weight: math.unit(150, "lb"),
  28615. name: "Anthro",
  28616. image: {
  28617. source: "./media/characters/razz/anthro.svg",
  28618. extra: 1437 / 1343,
  28619. bottom: 48 / 1485
  28620. }
  28621. },
  28622. feral: {
  28623. height: math.unit(6, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Feral",
  28626. image: {
  28627. source: "./media/characters/razz/feral.svg",
  28628. extra: 2569 / 1385,
  28629. bottom: 95 / 2664
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(6, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(9 + 4 / 12, "feet"),
  28646. weight: math.unit(500, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/morrigan/front.svg",
  28650. extra: 2707 / 2579,
  28651. bottom: 156 / 2863
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(9 + 4 / 12, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(5, "stories"),
  28668. weight: math.unit(4000, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/jenene/front.svg",
  28672. extra: 1780 / 1710,
  28673. bottom: 57 / 1837
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(5, "stories"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28687. {
  28688. taurSfw: {
  28689. height: math.unit(10, "meters"),
  28690. weight: math.unit(17500, "kg"),
  28691. name: "Taur",
  28692. image: {
  28693. source: "./media/characters/faey/taur-sfw.svg",
  28694. extra: 1200 / 968,
  28695. bottom: 41 / 1241
  28696. }
  28697. },
  28698. chestmaw: {
  28699. height: math.unit(2.01, "meters"),
  28700. name: "Chestmaw",
  28701. image: {
  28702. source: "./media/characters/faey/chestmaw.svg"
  28703. }
  28704. },
  28705. foot: {
  28706. height: math.unit(2.43, "meters"),
  28707. name: "Foot",
  28708. image: {
  28709. source: "./media/characters/faey/foot.svg"
  28710. }
  28711. },
  28712. jaws: {
  28713. height: math.unit(1.66, "meters"),
  28714. name: "Jaws",
  28715. image: {
  28716. source: "./media/characters/faey/jaws.svg"
  28717. }
  28718. },
  28719. tongues: {
  28720. height: math.unit(2.01, "meters"),
  28721. name: "Tongues",
  28722. image: {
  28723. source: "./media/characters/faey/tongues.svg"
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Small",
  28730. height: math.unit(10, "meters"),
  28731. default: true
  28732. },
  28733. {
  28734. name: "Big",
  28735. height: math.unit(500000, "km")
  28736. },
  28737. ]
  28738. ))
  28739. characterMakers.push(() => makeCharacter(
  28740. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28741. {
  28742. front: {
  28743. height: math.unit(7, "feet"),
  28744. weight: math.unit(275, "lb"),
  28745. name: "Front",
  28746. image: {
  28747. source: "./media/characters/roku/front.svg",
  28748. extra: 903 / 878,
  28749. bottom: 37 / 940
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Normal",
  28756. height: math.unit(7, "feet"),
  28757. default: true
  28758. },
  28759. {
  28760. name: "Macro",
  28761. height: math.unit(500, "feet")
  28762. },
  28763. {
  28764. name: "Megamacro",
  28765. height: math.unit(200, "miles")
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28771. {
  28772. front: {
  28773. height: math.unit(6 + 2 / 12, "feet"),
  28774. weight: math.unit(150, "lb"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/lira/front.svg",
  28778. extra: 1727 / 1605,
  28779. bottom: 26 / 1753
  28780. }
  28781. },
  28782. back: {
  28783. height: math.unit(6 + 2 / 12, "feet"),
  28784. weight: math.unit(150, "lb"),
  28785. name: "Back",
  28786. image: {
  28787. source: "./media/characters/lira/back.svg",
  28788. extra: 1713/1621,
  28789. bottom: 20/1733
  28790. }
  28791. },
  28792. hand: {
  28793. height: math.unit(0.75, "feet"),
  28794. name: "Hand",
  28795. image: {
  28796. source: "./media/characters/lira/hand.svg"
  28797. }
  28798. },
  28799. maw: {
  28800. height: math.unit(0.65, "feet"),
  28801. name: "Maw",
  28802. image: {
  28803. source: "./media/characters/lira/maw.svg"
  28804. }
  28805. },
  28806. pawDigi: {
  28807. height: math.unit(1.6, "feet"),
  28808. name: "Paw Digi",
  28809. image: {
  28810. source: "./media/characters/lira/paw-digi.svg"
  28811. }
  28812. },
  28813. pawPlanti: {
  28814. height: math.unit(1.4, "feet"),
  28815. name: "Paw Planti",
  28816. image: {
  28817. source: "./media/characters/lira/paw-planti.svg"
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(6 + 2 / 12, "feet"),
  28825. default: true
  28826. },
  28827. {
  28828. name: "Macro",
  28829. height: math.unit(100, "feet")
  28830. },
  28831. {
  28832. name: "Macro²",
  28833. height: math.unit(1600, "feet")
  28834. },
  28835. {
  28836. name: "Planetary",
  28837. height: math.unit(20, "earths")
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(6, "feet"),
  28846. weight: math.unit(150, "lb"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/hadjet/front.svg",
  28850. extra: 1480 / 1346,
  28851. bottom: 26 / 1506
  28852. }
  28853. },
  28854. frontNsfw: {
  28855. height: math.unit(6, "feet"),
  28856. weight: math.unit(150, "lb"),
  28857. name: "Front (NSFW)",
  28858. image: {
  28859. source: "./media/characters/hadjet/front-nsfw.svg",
  28860. extra: 1440 / 1358,
  28861. bottom: 52 / 1492
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Macro",
  28868. height: math.unit(10, "stories"),
  28869. default: true
  28870. },
  28871. {
  28872. name: "Megamacro",
  28873. height: math.unit(1.5, "miles")
  28874. },
  28875. {
  28876. name: "Megamacro+",
  28877. height: math.unit(5, "miles")
  28878. },
  28879. ]
  28880. ))
  28881. characterMakers.push(() => makeCharacter(
  28882. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28883. {
  28884. side: {
  28885. height: math.unit(106, "feet"),
  28886. weight: math.unit(500, "tonnes"),
  28887. name: "Side",
  28888. image: {
  28889. source: "./media/characters/kodran/side.svg",
  28890. extra: 553 / 480,
  28891. bottom: 33 / 586
  28892. }
  28893. },
  28894. front: {
  28895. height: math.unit(132, "feet"),
  28896. weight: math.unit(500, "tonnes"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/kodran/front.svg",
  28900. extra: 667 / 643,
  28901. bottom: 42 / 709
  28902. }
  28903. },
  28904. flying: {
  28905. height: math.unit(350, "feet"),
  28906. weight: math.unit(500, "tonnes"),
  28907. name: "Flying",
  28908. image: {
  28909. source: "./media/characters/kodran/flying.svg"
  28910. }
  28911. },
  28912. foot: {
  28913. height: math.unit(33, "feet"),
  28914. name: "Foot",
  28915. image: {
  28916. source: "./media/characters/kodran/foot.svg"
  28917. }
  28918. },
  28919. footFront: {
  28920. height: math.unit(19, "feet"),
  28921. name: "Foot (Front)",
  28922. image: {
  28923. source: "./media/characters/kodran/foot-front.svg",
  28924. extra: 261 / 261,
  28925. bottom: 91 / 352
  28926. }
  28927. },
  28928. headFront: {
  28929. height: math.unit(53, "feet"),
  28930. name: "Head (Front)",
  28931. image: {
  28932. source: "./media/characters/kodran/head-front.svg"
  28933. }
  28934. },
  28935. headSide: {
  28936. height: math.unit(65, "feet"),
  28937. name: "Head (Side)",
  28938. image: {
  28939. source: "./media/characters/kodran/head-side.svg"
  28940. }
  28941. },
  28942. throat: {
  28943. height: math.unit(79, "feet"),
  28944. name: "Throat",
  28945. image: {
  28946. source: "./media/characters/kodran/throat.svg"
  28947. }
  28948. },
  28949. },
  28950. [
  28951. {
  28952. name: "Large",
  28953. height: math.unit(106, "feet"),
  28954. default: true
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28960. {
  28961. side: {
  28962. height: math.unit(11, "feet"),
  28963. weight: math.unit(150, "lb"),
  28964. name: "Side",
  28965. image: {
  28966. source: "./media/characters/pyxaron/side.svg",
  28967. extra: 305 / 195,
  28968. bottom: 17 / 322
  28969. }
  28970. },
  28971. },
  28972. [
  28973. {
  28974. name: "Normal",
  28975. height: math.unit(11, "feet"),
  28976. default: true
  28977. },
  28978. ]
  28979. ))
  28980. characterMakers.push(() => makeCharacter(
  28981. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28982. {
  28983. front: {
  28984. height: math.unit(6, "feet"),
  28985. weight: math.unit(150, "lb"),
  28986. name: "Front",
  28987. image: {
  28988. source: "./media/characters/meep/front.svg",
  28989. extra: 88 / 80,
  28990. bottom: 6 / 94
  28991. }
  28992. },
  28993. },
  28994. [
  28995. {
  28996. name: "Fun Sized",
  28997. height: math.unit(2, "inches"),
  28998. default: true
  28999. },
  29000. {
  29001. name: "Friend Sized",
  29002. height: math.unit(8, "inches")
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(15, "feet"),
  29011. weight: math.unit(2500, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/holly-rabbit/front.svg",
  29015. extra: 1433 / 1233,
  29016. bottom: 125 / 1558
  29017. }
  29018. },
  29019. dick: {
  29020. height: math.unit(4.6, "feet"),
  29021. name: "Dick",
  29022. image: {
  29023. source: "./media/characters/holly-rabbit/dick.svg"
  29024. }
  29025. },
  29026. },
  29027. [
  29028. {
  29029. name: "Normal",
  29030. height: math.unit(15, "feet"),
  29031. default: true
  29032. },
  29033. {
  29034. name: "Macro",
  29035. height: math.unit(250, "feet")
  29036. },
  29037. {
  29038. name: "Macro+",
  29039. height: math.unit(2500, "feet")
  29040. },
  29041. ]
  29042. ))
  29043. characterMakers.push(() => makeCharacter(
  29044. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29045. {
  29046. front: {
  29047. height: math.unit(3.02, "meters"),
  29048. weight: math.unit(500, "kg"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/drena/front.svg",
  29052. extra: 282 / 243,
  29053. bottom: 8 / 290
  29054. }
  29055. },
  29056. side: {
  29057. height: math.unit(3.02, "meters"),
  29058. weight: math.unit(500, "kg"),
  29059. name: "Side",
  29060. image: {
  29061. source: "./media/characters/drena/side.svg",
  29062. extra: 280 / 245,
  29063. bottom: 10 / 290
  29064. }
  29065. },
  29066. back: {
  29067. height: math.unit(3.02, "meters"),
  29068. weight: math.unit(500, "kg"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/drena/back.svg",
  29072. extra: 278 / 243,
  29073. bottom: 2 / 280
  29074. }
  29075. },
  29076. foot: {
  29077. height: math.unit(0.75, "meters"),
  29078. name: "Foot",
  29079. image: {
  29080. source: "./media/characters/drena/foot.svg"
  29081. }
  29082. },
  29083. maw: {
  29084. height: math.unit(0.82, "meters"),
  29085. name: "Maw",
  29086. image: {
  29087. source: "./media/characters/drena/maw.svg"
  29088. }
  29089. },
  29090. rump: {
  29091. height: math.unit(0.93, "meters"),
  29092. name: "Rump",
  29093. image: {
  29094. source: "./media/characters/drena/rump.svg"
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(3.02, "meters"),
  29102. default: true
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(6 + 4 / 12, "feet"),
  29111. weight: math.unit(250, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/remmyzilla/front.svg",
  29115. extra: 4033 / 3588,
  29116. bottom: 123 / 4156
  29117. }
  29118. },
  29119. back: {
  29120. height: math.unit(6 + 4 / 12, "feet"),
  29121. weight: math.unit(250, "lb"),
  29122. name: "Back",
  29123. image: {
  29124. source: "./media/characters/remmyzilla/back.svg",
  29125. extra: 2687 / 2555,
  29126. bottom: 48 / 2735
  29127. }
  29128. },
  29129. paw: {
  29130. height: math.unit(1.73, "feet"),
  29131. name: "Paw",
  29132. image: {
  29133. source: "./media/characters/remmyzilla/paw.svg"
  29134. }
  29135. },
  29136. maw: {
  29137. height: math.unit(1.73, "feet"),
  29138. name: "Maw",
  29139. image: {
  29140. source: "./media/characters/remmyzilla/maw.svg"
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Normal",
  29147. height: math.unit(6 + 4 / 12, "feet")
  29148. },
  29149. {
  29150. name: "Minimacro",
  29151. height: math.unit(12 + 8 / 12, "feet")
  29152. },
  29153. {
  29154. name: "Normal",
  29155. height: math.unit(640, "feet"),
  29156. default: true
  29157. },
  29158. {
  29159. name: "Megamacro",
  29160. height: math.unit(6400, "feet")
  29161. },
  29162. {
  29163. name: "Gigamacro",
  29164. height: math.unit(64000, "miles")
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(2.5, "meters"),
  29173. weight: math.unit(300, "lb"),
  29174. name: "Front",
  29175. image: {
  29176. source: "./media/characters/lawrence/front.svg",
  29177. extra: 357 / 335,
  29178. bottom: 30 / 387
  29179. }
  29180. },
  29181. back: {
  29182. height: math.unit(2.5, "meters"),
  29183. weight: math.unit(300, "lb"),
  29184. name: "Back",
  29185. image: {
  29186. source: "./media/characters/lawrence/back.svg",
  29187. extra: 357 / 338,
  29188. bottom: 16 / 373
  29189. }
  29190. },
  29191. head: {
  29192. height: math.unit(0.9, "meter"),
  29193. name: "Head",
  29194. image: {
  29195. source: "./media/characters/lawrence/head.svg"
  29196. }
  29197. },
  29198. maw: {
  29199. height: math.unit(0.7, "meter"),
  29200. name: "Maw",
  29201. image: {
  29202. source: "./media/characters/lawrence/maw.svg"
  29203. }
  29204. },
  29205. footBottom: {
  29206. height: math.unit(0.5, "meter"),
  29207. name: "Foot (Bottom)",
  29208. image: {
  29209. source: "./media/characters/lawrence/foot-bottom.svg"
  29210. }
  29211. },
  29212. footTop: {
  29213. height: math.unit(0.5, "meter"),
  29214. name: "Foot (Top)",
  29215. image: {
  29216. source: "./media/characters/lawrence/foot-top.svg"
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Normal",
  29223. height: math.unit(2.5, "meters"),
  29224. default: true
  29225. },
  29226. {
  29227. name: "Macro",
  29228. height: math.unit(95, "meters")
  29229. },
  29230. {
  29231. name: "Megamacro",
  29232. height: math.unit(150, "km")
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29238. {
  29239. front: {
  29240. height: math.unit(4.2, "meters"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/sydney/front.svg",
  29244. extra: 1323 / 1277,
  29245. bottom: 111 / 1434
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(4.2, "meters"),
  29253. default: true
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29259. {
  29260. back: {
  29261. height: math.unit(201, "feet"),
  29262. name: "Back",
  29263. image: {
  29264. source: "./media/characters/jessica/back.svg",
  29265. extra: 273 / 259,
  29266. bottom: 7 / 280
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Normal",
  29273. height: math.unit(201, "feet"),
  29274. default: true
  29275. },
  29276. {
  29277. name: "Megamacro",
  29278. height: math.unit(8, "miles")
  29279. },
  29280. ]
  29281. ))
  29282. characterMakers.push(() => makeCharacter(
  29283. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29284. {
  29285. side: {
  29286. height: math.unit(5.6, "m"),
  29287. weight: math.unit(8000, "kg"),
  29288. name: "Side",
  29289. image: {
  29290. source: "./media/characters/victoria/side.svg",
  29291. extra: 1542/1229,
  29292. bottom: 124/1666
  29293. }
  29294. },
  29295. maw: {
  29296. height: math.unit(7.14, "feet"),
  29297. name: "Maw",
  29298. image: {
  29299. source: "./media/characters/victoria/maw.svg"
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(5.6, "m"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29313. {
  29314. front: {
  29315. height: math.unit(5 + 6 / 12, "feet"),
  29316. name: "Front",
  29317. image: {
  29318. source: "./media/characters/cat/front.svg",
  29319. extra: 1449/1295,
  29320. bottom: 34/1483
  29321. },
  29322. form: "cat",
  29323. default: true
  29324. },
  29325. back: {
  29326. height: math.unit(5 + 6 / 12, "feet"),
  29327. name: "Back",
  29328. image: {
  29329. source: "./media/characters/cat/back.svg",
  29330. extra: 1466/1301,
  29331. bottom: 19/1485
  29332. },
  29333. form: "cat"
  29334. },
  29335. taur: {
  29336. height: math.unit(7, "feet"),
  29337. name: "Taur",
  29338. image: {
  29339. source: "./media/characters/cat/taur.svg",
  29340. extra: 1389/1233,
  29341. bottom: 83/1472
  29342. },
  29343. form: "taur",
  29344. default: true
  29345. },
  29346. lucarioFront: {
  29347. height: math.unit(4, "feet"),
  29348. name: "Lucario (Front)",
  29349. image: {
  29350. source: "./media/characters/cat/lucario-front.svg",
  29351. extra: 1149/1019,
  29352. bottom: 84/1233
  29353. },
  29354. form: "lucario",
  29355. default: true
  29356. },
  29357. lucarioBack: {
  29358. height: math.unit(4, "feet"),
  29359. name: "Lucario (Back)",
  29360. image: {
  29361. source: "./media/characters/cat/lucario-back.svg",
  29362. extra: 1190/1059,
  29363. bottom: 33/1223
  29364. },
  29365. form: "lucario"
  29366. },
  29367. megaLucario: {
  29368. height: math.unit(4, "feet"),
  29369. name: "Mega Lucario",
  29370. image: {
  29371. source: "./media/characters/cat/mega-lucario.svg",
  29372. extra: 1515 / 1319,
  29373. bottom: 63 / 1578
  29374. },
  29375. form: "lucario"
  29376. },
  29377. nickit: {
  29378. height: math.unit(2, "feet"),
  29379. name: "Nickit",
  29380. image: {
  29381. source: "./media/characters/cat/nickit.svg",
  29382. extra: 1980 / 1585,
  29383. bottom: 102 / 2082
  29384. },
  29385. form: "nickit",
  29386. default: true
  29387. },
  29388. lopunnyFront: {
  29389. height: math.unit(5, "feet"),
  29390. name: "Lopunny (Front)",
  29391. image: {
  29392. source: "./media/characters/cat/lopunny-front.svg",
  29393. extra: 1782 / 1469,
  29394. bottom: 38 / 1820
  29395. },
  29396. form: "lopunny",
  29397. default: true
  29398. },
  29399. lopunnyBack: {
  29400. height: math.unit(5, "feet"),
  29401. name: "Lopunny (Back)",
  29402. image: {
  29403. source: "./media/characters/cat/lopunny-back.svg",
  29404. extra: 1660 / 1490,
  29405. bottom: 25 / 1685
  29406. },
  29407. form: "lopunny"
  29408. },
  29409. },
  29410. [
  29411. {
  29412. name: "Really small",
  29413. height: math.unit(1, "nm")
  29414. },
  29415. {
  29416. name: "Micro",
  29417. height: math.unit(5, "inches")
  29418. },
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(5 + 6 / 12, "feet"),
  29422. default: true
  29423. },
  29424. {
  29425. name: "Macro",
  29426. height: math.unit(50, "feet")
  29427. },
  29428. {
  29429. name: "Macro+",
  29430. height: math.unit(150, "feet")
  29431. },
  29432. {
  29433. name: "Megamacro",
  29434. height: math.unit(100, "miles")
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29440. {
  29441. front: {
  29442. height: math.unit(63.4, "meters"),
  29443. weight: math.unit(3.28349e+6, "kilograms"),
  29444. name: "Front",
  29445. image: {
  29446. source: "./media/characters/kirina-violet/front.svg",
  29447. extra: 2812 / 2725,
  29448. bottom: 0 / 2812
  29449. }
  29450. },
  29451. back: {
  29452. height: math.unit(63.4, "meters"),
  29453. weight: math.unit(3.28349e+6, "kilograms"),
  29454. name: "Back",
  29455. image: {
  29456. source: "./media/characters/kirina-violet/back.svg",
  29457. extra: 2812 / 2725,
  29458. bottom: 0 / 2812
  29459. }
  29460. },
  29461. mouth: {
  29462. height: math.unit(4.35, "meters"),
  29463. name: "Mouth",
  29464. image: {
  29465. source: "./media/characters/kirina-violet/mouth.svg"
  29466. }
  29467. },
  29468. paw: {
  29469. height: math.unit(5.6, "meters"),
  29470. name: "Paw",
  29471. image: {
  29472. source: "./media/characters/kirina-violet/paw.svg"
  29473. }
  29474. },
  29475. tail: {
  29476. height: math.unit(18, "meters"),
  29477. name: "Tail",
  29478. image: {
  29479. source: "./media/characters/kirina-violet/tail.svg"
  29480. }
  29481. },
  29482. },
  29483. [
  29484. {
  29485. name: "Macro",
  29486. height: math.unit(63.4, "meters"),
  29487. default: true
  29488. },
  29489. ]
  29490. ))
  29491. characterMakers.push(() => makeCharacter(
  29492. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29493. {
  29494. front: {
  29495. height: math.unit(75, "feet"),
  29496. name: "Front",
  29497. image: {
  29498. source: "./media/characters/cat-gigachu/front.svg",
  29499. extra: 1239/1027,
  29500. bottom: 32/1271
  29501. }
  29502. },
  29503. back: {
  29504. height: math.unit(75, "feet"),
  29505. name: "Back",
  29506. image: {
  29507. source: "./media/characters/cat-gigachu/back.svg",
  29508. extra: 1229/1030,
  29509. bottom: 9/1238
  29510. }
  29511. },
  29512. },
  29513. [
  29514. {
  29515. name: "Dynamax",
  29516. height: math.unit(75, "feet"),
  29517. default: true
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(6, "feet"),
  29526. weight: math.unit(150, "lb"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/sfaiyan/front.svg",
  29530. extra: 999 / 978,
  29531. bottom: 5 / 1004
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Normal",
  29538. height: math.unit(1.82, "meters")
  29539. },
  29540. {
  29541. name: "Giant",
  29542. height: math.unit(2.27, "km"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(179, "cm"),
  29552. weight: math.unit(100, "kg"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/raunehkeli/front.svg",
  29556. extra: 1934 / 1926,
  29557. bottom: 0 / 1934
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(179, "cm")
  29565. },
  29566. {
  29567. name: "Maximum",
  29568. height: math.unit(575, "meters"),
  29569. default: true
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(6, "feet"),
  29578. weight: math.unit(150, "lb"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29582. extra: 2625 / 2518,
  29583. bottom: 60 / 2685
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Normal",
  29590. height: math.unit(6 + 2 / 12, "feet")
  29591. },
  29592. {
  29593. name: "Macro",
  29594. height: math.unit(1180, "feet"),
  29595. default: true
  29596. },
  29597. ]
  29598. ))
  29599. characterMakers.push(() => makeCharacter(
  29600. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29601. {
  29602. front: {
  29603. height: math.unit(5 + 6 / 12, "feet"),
  29604. weight: math.unit(108, "lb"),
  29605. name: "Front",
  29606. image: {
  29607. source: "./media/characters/lilith-zott/front.svg",
  29608. extra: 2510 / 2238,
  29609. bottom: 100 / 2610
  29610. }
  29611. },
  29612. frontDressed: {
  29613. height: math.unit(5 + 6 / 12, "feet"),
  29614. weight: math.unit(108, "lb"),
  29615. name: "Front (Dressed)",
  29616. image: {
  29617. source: "./media/characters/lilith-zott/front-dressed.svg",
  29618. extra: 2510 / 2238,
  29619. bottom: 100 / 2610
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(5 + 6 / 12, "feet")
  29627. },
  29628. {
  29629. name: "Macro",
  29630. height: math.unit(1030, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29644. extra: 2567 / 2435,
  29645. bottom: 39 / 2606
  29646. }
  29647. },
  29648. frontSuper: {
  29649. height: math.unit(6, "feet"),
  29650. name: "Front (Super)",
  29651. image: {
  29652. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29653. extra: 2567 / 2435,
  29654. bottom: 39 / 2606
  29655. }
  29656. },
  29657. },
  29658. [
  29659. {
  29660. name: "Normal",
  29661. height: math.unit(5 + 10 / 12, "feet")
  29662. },
  29663. {
  29664. name: "Macro",
  29665. height: math.unit(1100, "feet"),
  29666. default: true
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(100, "miles"),
  29675. name: "Front",
  29676. image: {
  29677. source: "./media/characters/sona/front.svg",
  29678. extra: 2433 / 2201,
  29679. bottom: 53 / 2486
  29680. }
  29681. },
  29682. foot: {
  29683. height: math.unit(16.1, "miles"),
  29684. name: "Foot",
  29685. image: {
  29686. source: "./media/characters/sona/foot.svg"
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "Macro",
  29693. height: math.unit(100, "miles"),
  29694. default: true
  29695. },
  29696. ]
  29697. ))
  29698. characterMakers.push(() => makeCharacter(
  29699. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29700. {
  29701. front: {
  29702. height: math.unit(6, "feet"),
  29703. weight: math.unit(150, "lb"),
  29704. name: "Front",
  29705. image: {
  29706. source: "./media/characters/bailey/front.svg",
  29707. extra: 1778 / 1724,
  29708. bottom: 30 / 1808
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Micro",
  29715. height: math.unit(4, "inches")
  29716. },
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(5 + 5 / 12, "feet"),
  29720. default: true
  29721. },
  29722. {
  29723. name: "Macro",
  29724. height: math.unit(250, "feet")
  29725. },
  29726. {
  29727. name: "Megamacro",
  29728. height: math.unit(100, "miles")
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29734. {
  29735. front: {
  29736. height: math.unit(5 + 2 / 12, "feet"),
  29737. weight: math.unit(120, "lb"),
  29738. name: "Front",
  29739. image: {
  29740. source: "./media/characters/snaps/front.svg",
  29741. extra: 2370 / 2177,
  29742. bottom: 48 / 2418
  29743. }
  29744. },
  29745. back: {
  29746. height: math.unit(5 + 2 / 12, "feet"),
  29747. weight: math.unit(120, "lb"),
  29748. name: "Back",
  29749. image: {
  29750. source: "./media/characters/snaps/back.svg",
  29751. extra: 2408 / 2258,
  29752. bottom: 15 / 2423
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Micro",
  29759. height: math.unit(9, "inches")
  29760. },
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(5 + 2 / 12, "feet"),
  29764. default: true
  29765. },
  29766. {
  29767. name: "Mini Macro",
  29768. height: math.unit(10, "feet")
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29774. {
  29775. front: {
  29776. height: math.unit(1.8, "meters"),
  29777. weight: math.unit(85, "kg"),
  29778. name: "Front",
  29779. image: {
  29780. source: "./media/characters/azteck/front.svg",
  29781. extra: 2815 / 2625,
  29782. bottom: 89 / 2904
  29783. }
  29784. },
  29785. back: {
  29786. height: math.unit(1.8, "meters"),
  29787. weight: math.unit(85, "kg"),
  29788. name: "Back",
  29789. image: {
  29790. source: "./media/characters/azteck/back.svg",
  29791. extra: 2856 / 2648,
  29792. bottom: 85 / 2941
  29793. }
  29794. },
  29795. frontDressed: {
  29796. height: math.unit(1.8, "meters"),
  29797. weight: math.unit(85, "kg"),
  29798. name: "Front (Dressed)",
  29799. image: {
  29800. source: "./media/characters/azteck/front-dressed.svg",
  29801. extra: 2147 / 2003,
  29802. bottom: 68 / 2215
  29803. }
  29804. },
  29805. head: {
  29806. height: math.unit(0.47, "meters"),
  29807. weight: math.unit(85, "kg"),
  29808. name: "Head",
  29809. image: {
  29810. source: "./media/characters/azteck/head.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Bite sized",
  29817. height: math.unit(16, "cm")
  29818. },
  29819. {
  29820. name: "Normal",
  29821. height: math.unit(1.8, "meters"),
  29822. default: true
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(6, "feet"),
  29831. weight: math.unit(150, "lb"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/pidge/front.svg",
  29835. extra: 620 / 588,
  29836. bottom: 9 / 629
  29837. }
  29838. },
  29839. back: {
  29840. height: math.unit(6, "feet"),
  29841. weight: math.unit(150, "lb"),
  29842. name: "Back",
  29843. image: {
  29844. source: "./media/characters/pidge/back.svg",
  29845. extra: 620 / 588,
  29846. bottom: 9 / 629
  29847. }
  29848. },
  29849. },
  29850. [
  29851. {
  29852. name: "Macro",
  29853. height: math.unit(1, "mile"),
  29854. default: true
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29860. {
  29861. front: {
  29862. height: math.unit(6, "feet"),
  29863. weight: math.unit(150, "lb"),
  29864. name: "Front",
  29865. image: {
  29866. source: "./media/characters/en/front.svg",
  29867. extra: 1697 / 1563,
  29868. bottom: 103 / 1800
  29869. }
  29870. },
  29871. back: {
  29872. height: math.unit(6, "feet"),
  29873. weight: math.unit(150, "lb"),
  29874. name: "Back",
  29875. image: {
  29876. source: "./media/characters/en/back.svg",
  29877. extra: 1700 / 1570,
  29878. bottom: 51 / 1751
  29879. }
  29880. },
  29881. frontDressed: {
  29882. height: math.unit(6, "feet"),
  29883. weight: math.unit(150, "lb"),
  29884. name: "Front (Dressed)",
  29885. image: {
  29886. source: "./media/characters/en/front-dressed.svg",
  29887. extra: 1697 / 1563,
  29888. bottom: 103 / 1800
  29889. }
  29890. },
  29891. backDressed: {
  29892. height: math.unit(6, "feet"),
  29893. weight: math.unit(150, "lb"),
  29894. name: "Back (Dressed)",
  29895. image: {
  29896. source: "./media/characters/en/back-dressed.svg",
  29897. extra: 1700 / 1570,
  29898. bottom: 51 / 1751
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Macro",
  29905. height: math.unit(210, "feet"),
  29906. default: true
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29912. {
  29913. front: {
  29914. height: math.unit(6, "feet"),
  29915. weight: math.unit(150, "lb"),
  29916. name: "Front",
  29917. image: {
  29918. source: "./media/characters/haze-orris/front.svg",
  29919. extra: 3975 / 3525,
  29920. bottom: 137 / 4112
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Micro",
  29927. height: math.unit(150, "mm"),
  29928. default: true
  29929. },
  29930. ]
  29931. ))
  29932. characterMakers.push(() => makeCharacter(
  29933. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29934. {
  29935. front: {
  29936. height: math.unit(6, "feet"),
  29937. weight: math.unit(150, "lb"),
  29938. name: "Front",
  29939. image: {
  29940. source: "./media/characters/casselene-yaro/front.svg",
  29941. extra: 4721 / 4541,
  29942. bottom: 82 / 4803
  29943. }
  29944. },
  29945. back: {
  29946. height: math.unit(6, "feet"),
  29947. weight: math.unit(150, "lb"),
  29948. name: "Back",
  29949. image: {
  29950. source: "./media/characters/casselene-yaro/back.svg",
  29951. extra: 4569 / 4377,
  29952. bottom: 69 / 4638
  29953. }
  29954. },
  29955. frontDressed: {
  29956. height: math.unit(6, "feet"),
  29957. weight: math.unit(150, "lb"),
  29958. name: "Front-dressed",
  29959. image: {
  29960. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29961. extra: 4721 / 4541,
  29962. bottom: 82 / 4803
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(190, "feet"),
  29970. default: true
  29971. },
  29972. ]
  29973. ))
  29974. characterMakers.push(() => makeCharacter(
  29975. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29976. {
  29977. front: {
  29978. height: math.unit(6, "feet"),
  29979. weight: math.unit(150, "lb"),
  29980. name: "Front",
  29981. image: {
  29982. source: "./media/characters/myra-rue-delore/front.svg",
  29983. extra: 1340 / 1308,
  29984. bottom: 67 / 1407
  29985. }
  29986. },
  29987. back: {
  29988. height: math.unit(6, "feet"),
  29989. weight: math.unit(150, "lb"),
  29990. name: "Back",
  29991. image: {
  29992. source: "./media/characters/myra-rue-delore/back.svg",
  29993. extra: 1341 / 1310,
  29994. bottom: 40 / 1381
  29995. }
  29996. },
  29997. frontDressed: {
  29998. height: math.unit(6, "feet"),
  29999. weight: math.unit(150, "lb"),
  30000. name: "Front (Dressed)",
  30001. image: {
  30002. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30003. extra: 1340 / 1308,
  30004. bottom: 67 / 1407
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Macro",
  30011. height: math.unit(150, "feet"),
  30012. default: true
  30013. },
  30014. ]
  30015. ))
  30016. characterMakers.push(() => makeCharacter(
  30017. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30018. {
  30019. front: {
  30020. height: math.unit(10, "feet"),
  30021. weight: math.unit(15015, "lb"),
  30022. name: "Front",
  30023. image: {
  30024. source: "./media/characters/fem!plat/front.svg",
  30025. extra: 2799 / 2604,
  30026. bottom: 149 / 2948
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Normal",
  30033. height: math.unit(10, "feet"),
  30034. default: true
  30035. },
  30036. {
  30037. name: "Macro",
  30038. height: math.unit(100, "feet")
  30039. },
  30040. {
  30041. name: "Megamacro",
  30042. height: math.unit(1000, "feet")
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(15 + 5 / 12, "feet"),
  30051. weight: math.unit(4600, "lb"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/neapolitan-ananassa/front.svg",
  30055. extra: 2903 / 2736,
  30056. bottom: 0 / 2903
  30057. }
  30058. },
  30059. side: {
  30060. height: math.unit(15 + 5 / 12, "feet"),
  30061. weight: math.unit(4600, "lb"),
  30062. name: "Side",
  30063. image: {
  30064. source: "./media/characters/neapolitan-ananassa/side.svg",
  30065. extra: 2925 / 2719,
  30066. bottom: 0 / 2925
  30067. }
  30068. },
  30069. back: {
  30070. height: math.unit(15 + 5 / 12, "feet"),
  30071. weight: math.unit(4600, "lb"),
  30072. name: "Back",
  30073. image: {
  30074. source: "./media/characters/neapolitan-ananassa/back.svg",
  30075. extra: 2903 / 2736,
  30076. bottom: 0 / 2903
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(15 + 5 / 12, "feet"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Post-Millenium",
  30088. height: math.unit(35 + 5 / 12, "feet")
  30089. },
  30090. {
  30091. name: "Post-Era",
  30092. height: math.unit(450 + 5 / 12, "feet")
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(300, "meters"),
  30101. weight: math.unit(125000, "tonnes"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/pazuzu/front.svg",
  30105. extra: 877 / 794,
  30106. bottom: 47 / 924
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Macro",
  30113. height: math.unit(300, "meters"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30120. {
  30121. side: {
  30122. height: math.unit(10 + 7 / 12, "feet"),
  30123. weight: math.unit(2.5, "tons"),
  30124. name: "Side",
  30125. image: {
  30126. source: "./media/characters/aasha/side.svg",
  30127. extra: 1345 / 1245,
  30128. bottom: 111 / 1456
  30129. }
  30130. },
  30131. back: {
  30132. height: math.unit(10 + 7 / 12, "feet"),
  30133. weight: math.unit(2.5, "tons"),
  30134. name: "Back",
  30135. image: {
  30136. source: "./media/characters/aasha/back.svg",
  30137. extra: 1133 / 1057,
  30138. bottom: 257 / 1390
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(10 + 7 / 12, "feet"),
  30146. default: true
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(6 + 3 / 12, "feet"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/nevan/front.svg",
  30158. extra: 704 / 704,
  30159. bottom: 28 / 732
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(6 + 3 / 12, "feet"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/nevan/back.svg",
  30167. extra: 714 / 714,
  30168. bottom: 21 / 735
  30169. }
  30170. },
  30171. frontFlaccid: {
  30172. height: math.unit(6 + 3 / 12, "feet"),
  30173. name: "Front (Flaccid)",
  30174. image: {
  30175. source: "./media/characters/nevan/front-flaccid.svg",
  30176. extra: 704 / 704,
  30177. bottom: 28 / 732
  30178. }
  30179. },
  30180. frontErect: {
  30181. height: math.unit(6 + 3 / 12, "feet"),
  30182. name: "Front (Erect)",
  30183. image: {
  30184. source: "./media/characters/nevan/front-erect.svg",
  30185. extra: 704 / 704,
  30186. bottom: 28 / 732
  30187. }
  30188. },
  30189. backFlaccid: {
  30190. height: math.unit(6 + 3 / 12, "feet"),
  30191. name: "Back (Flaccid)",
  30192. image: {
  30193. source: "./media/characters/nevan/back-flaccid.svg",
  30194. extra: 714 / 714,
  30195. bottom: 21 / 735
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(6 + 3 / 12, "feet"),
  30203. default: true
  30204. },
  30205. ]
  30206. ))
  30207. characterMakers.push(() => makeCharacter(
  30208. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30209. {
  30210. front: {
  30211. height: math.unit(4, "feet"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/arhan/front.svg",
  30215. extra: 3368 / 3133,
  30216. bottom: 0 / 3368
  30217. }
  30218. },
  30219. side: {
  30220. height: math.unit(4, "feet"),
  30221. name: "Side",
  30222. image: {
  30223. source: "./media/characters/arhan/side.svg",
  30224. extra: 3347 / 3105,
  30225. bottom: 0 / 3347
  30226. }
  30227. },
  30228. tongue: {
  30229. height: math.unit(1.42, "feet"),
  30230. name: "Tongue",
  30231. image: {
  30232. source: "./media/characters/arhan/tongue.svg"
  30233. }
  30234. },
  30235. head: {
  30236. height: math.unit(0.85, "feet"),
  30237. name: "Head",
  30238. image: {
  30239. source: "./media/characters/arhan/head.svg"
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(4, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(5 + 7.5 / 12, "feet"),
  30256. weight: math.unit(120, "lb"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/digi-duncan/front.svg",
  30260. extra: 330 / 326,
  30261. bottom: 16 / 346
  30262. }
  30263. },
  30264. side: {
  30265. height: math.unit(5 + 7.5 / 12, "feet"),
  30266. weight: math.unit(120, "lb"),
  30267. name: "Side",
  30268. image: {
  30269. source: "./media/characters/digi-duncan/side.svg",
  30270. extra: 341 / 337,
  30271. bottom: 1 / 342
  30272. }
  30273. },
  30274. back: {
  30275. height: math.unit(5 + 7.5 / 12, "feet"),
  30276. weight: math.unit(120, "lb"),
  30277. name: "Back",
  30278. image: {
  30279. source: "./media/characters/digi-duncan/back.svg",
  30280. extra: 330 / 326,
  30281. bottom: 12 / 342
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Speck",
  30288. height: math.unit(0.25, "mm")
  30289. },
  30290. {
  30291. name: "Micro",
  30292. height: math.unit(5, "mm")
  30293. },
  30294. {
  30295. name: "Tiny",
  30296. height: math.unit(0.5, "inches"),
  30297. default: true
  30298. },
  30299. {
  30300. name: "Human",
  30301. height: math.unit(5 + 7.5 / 12, "feet")
  30302. },
  30303. {
  30304. name: "Minigiant",
  30305. height: math.unit(8 + 5.25, "feet")
  30306. },
  30307. {
  30308. name: "Giant",
  30309. height: math.unit(2000, "feet")
  30310. },
  30311. {
  30312. name: "Mega",
  30313. height: math.unit(371.1, "miles")
  30314. },
  30315. ]
  30316. ))
  30317. characterMakers.push(() => makeCharacter(
  30318. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30319. {
  30320. front: {
  30321. height: math.unit(2, "meters"),
  30322. weight: math.unit(350, "kg"),
  30323. name: "Front",
  30324. image: {
  30325. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30326. extra: 898 / 838,
  30327. bottom: 9 / 907
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "Micro",
  30334. height: math.unit(8, "meters")
  30335. },
  30336. {
  30337. name: "Normal",
  30338. height: math.unit(50, "meters"),
  30339. default: true
  30340. },
  30341. {
  30342. name: "Macro",
  30343. height: math.unit(500, "meters")
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30349. {
  30350. front: {
  30351. height: math.unit(6 + 6 / 12, "feet"),
  30352. name: "Front",
  30353. image: {
  30354. source: "./media/characters/khardesh/front.svg",
  30355. extra: 1788/1596,
  30356. bottom: 66/1854
  30357. }
  30358. },
  30359. back: {
  30360. height: math.unit(6 + 6 / 12, "feet"),
  30361. name: "Back",
  30362. image: {
  30363. source: "./media/characters/khardesh/back.svg",
  30364. extra: 1781/1584,
  30365. bottom: 68/1849
  30366. }
  30367. },
  30368. },
  30369. [
  30370. {
  30371. name: "Normal",
  30372. height: math.unit(6 + 6 / 12, "feet"),
  30373. default: true
  30374. },
  30375. {
  30376. name: "Normal+",
  30377. height: math.unit(4, "meters")
  30378. },
  30379. {
  30380. name: "Macro",
  30381. height: math.unit(50, "meters")
  30382. },
  30383. {
  30384. name: "Macro+",
  30385. height: math.unit(100, "meters")
  30386. },
  30387. {
  30388. name: "Megamacro",
  30389. height: math.unit(20, "km")
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/kosho/front.svg",
  30402. extra: 1847 / 1847,
  30403. bottom: 86 / 1933
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Second-stage micro",
  30410. height: math.unit(0.5, "inches")
  30411. },
  30412. {
  30413. name: "First-stage micro",
  30414. height: math.unit(6, "inches")
  30415. },
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(6, "feet"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "First-stage macro",
  30423. height: math.unit(72, "feet")
  30424. },
  30425. {
  30426. name: "Second-stage macro",
  30427. height: math.unit(864, "feet")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30433. {
  30434. normal: {
  30435. height: math.unit(4 + 6 / 12, "feet"),
  30436. name: "Normal",
  30437. image: {
  30438. source: "./media/characters/hydra/normal.svg",
  30439. extra: 2833 / 2634,
  30440. bottom: 68 / 2901
  30441. }
  30442. },
  30443. smol: {
  30444. height: math.unit(0.705, "inches"),
  30445. name: "Smol",
  30446. image: {
  30447. source: "./media/characters/hydra/smol.svg",
  30448. extra: 2715 / 2540,
  30449. bottom: 0 / 2715
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Normal",
  30456. height: math.unit(4 + 6 / 12, "feet"),
  30457. default: true
  30458. }
  30459. ]
  30460. ))
  30461. characterMakers.push(() => makeCharacter(
  30462. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30463. {
  30464. front: {
  30465. height: math.unit(0.6, "cm"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/daz/front.svg",
  30469. extra: 1682 / 1164,
  30470. bottom: 42 / 1724
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Normal",
  30477. height: math.unit(0.6, "cm"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6, "feet"),
  30487. weight: math.unit(235, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/theo-pangolin/front.svg",
  30491. extra: 1996 / 1969,
  30492. bottom: 115 / 2111
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(6, "feet"),
  30497. weight: math.unit(235, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/theo-pangolin/back.svg",
  30501. extra: 1979 / 1979,
  30502. bottom: 40 / 2019
  30503. }
  30504. },
  30505. feral: {
  30506. height: math.unit(2, "feet"),
  30507. weight: math.unit(30, "lb"),
  30508. name: "Feral",
  30509. image: {
  30510. source: "./media/characters/theo-pangolin/feral.svg",
  30511. extra: 803 / 791,
  30512. bottom: 181 / 984
  30513. }
  30514. },
  30515. footFive: {
  30516. height: math.unit(1.43, "feet"),
  30517. name: "Foot (Five Toes)",
  30518. image: {
  30519. source: "./media/characters/theo-pangolin/foot-five.svg"
  30520. }
  30521. },
  30522. footFour: {
  30523. height: math.unit(1.43, "feet"),
  30524. name: "Foot (Four Toes)",
  30525. image: {
  30526. source: "./media/characters/theo-pangolin/foot-four.svg"
  30527. }
  30528. },
  30529. handFour: {
  30530. height: math.unit(0.81, "feet"),
  30531. name: "Hand (Four Fingers)",
  30532. image: {
  30533. source: "./media/characters/theo-pangolin/hand-four.svg"
  30534. }
  30535. },
  30536. handThree: {
  30537. height: math.unit(0.81, "feet"),
  30538. name: "Hand (Three Fingers)",
  30539. image: {
  30540. source: "./media/characters/theo-pangolin/hand-three.svg"
  30541. }
  30542. },
  30543. headFront: {
  30544. height: math.unit(1.37, "feet"),
  30545. name: "Head (Front)",
  30546. image: {
  30547. source: "./media/characters/theo-pangolin/head-front.svg"
  30548. }
  30549. },
  30550. headSide: {
  30551. height: math.unit(1.43, "feet"),
  30552. name: "Head (Side)",
  30553. image: {
  30554. source: "./media/characters/theo-pangolin/head-side.svg"
  30555. }
  30556. },
  30557. tongue: {
  30558. height: math.unit(2.29, "feet"),
  30559. name: "Tongue",
  30560. image: {
  30561. source: "./media/characters/theo-pangolin/tongue.svg"
  30562. }
  30563. },
  30564. },
  30565. [
  30566. {
  30567. name: "Normal",
  30568. height: math.unit(6, "feet")
  30569. },
  30570. {
  30571. name: "Macro",
  30572. height: math.unit(400, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(6, "inches"),
  30582. weight: math.unit(0.036, "kg"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/renée/front.svg",
  30586. extra: 900 / 886,
  30587. bottom: 8 / 908
  30588. }
  30589. },
  30590. },
  30591. [
  30592. {
  30593. name: "Nano",
  30594. height: math.unit(1, "nm")
  30595. },
  30596. {
  30597. name: "Micro",
  30598. height: math.unit(1, "mm")
  30599. },
  30600. {
  30601. name: "Normal",
  30602. height: math.unit(6, "inches")
  30603. },
  30604. {
  30605. name: "Macro",
  30606. height: math.unit(2000, "feet"),
  30607. default: true
  30608. },
  30609. {
  30610. name: "Megamacro",
  30611. height: math.unit(2, "km")
  30612. },
  30613. {
  30614. name: "Gigamacro",
  30615. height: math.unit(2000, "km")
  30616. },
  30617. {
  30618. name: "Teramacro",
  30619. height: math.unit(250000, "km")
  30620. },
  30621. ]
  30622. ))
  30623. characterMakers.push(() => makeCharacter(
  30624. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30625. {
  30626. front: {
  30627. height: math.unit(4, "meters"),
  30628. weight: math.unit(150, "kg"),
  30629. name: "Front",
  30630. image: {
  30631. source: "./media/characters/caledvwlch/front.svg",
  30632. extra: 1760 / 1551,
  30633. bottom: 28 / 1788
  30634. }
  30635. },
  30636. side: {
  30637. height: math.unit(4, "meters"),
  30638. weight: math.unit(150, "kg"),
  30639. name: "Side",
  30640. image: {
  30641. source: "./media/characters/caledvwlch/side.svg",
  30642. extra: 1605 / 1536,
  30643. bottom: 31 / 1636
  30644. }
  30645. },
  30646. back: {
  30647. height: math.unit(4, "meters"),
  30648. weight: math.unit(150, "kg"),
  30649. name: "Back",
  30650. image: {
  30651. source: "./media/characters/caledvwlch/back.svg",
  30652. extra: 1635 / 1565,
  30653. bottom: 27 / 1662
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "\"Incognito\"",
  30660. height: math.unit(4, "meters")
  30661. },
  30662. {
  30663. name: "Small rampage",
  30664. height: math.unit(600, "meters")
  30665. },
  30666. {
  30667. name: "Mega",
  30668. height: math.unit(30, "km")
  30669. },
  30670. {
  30671. name: "Home-size",
  30672. height: math.unit(50, "km"),
  30673. default: true
  30674. },
  30675. {
  30676. name: "Giga",
  30677. height: math.unit(300, "km")
  30678. },
  30679. {
  30680. name: "Lounging",
  30681. height: math.unit(11000, "km")
  30682. },
  30683. {
  30684. name: "Planet snacking",
  30685. height: math.unit(2000000, "km")
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(6, "feet"),
  30694. weight: math.unit(215, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/sapphire-svell/front.svg",
  30698. extra: 495 / 455,
  30699. bottom: 20 / 515
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(6, "feet"),
  30704. weight: math.unit(216, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/sapphire-svell/back.svg",
  30708. extra: 497 / 477,
  30709. bottom: 7 / 504
  30710. }
  30711. },
  30712. maw: {
  30713. height: math.unit(1.57, "feet"),
  30714. name: "Maw",
  30715. image: {
  30716. source: "./media/characters/sapphire-svell/maw.svg"
  30717. }
  30718. },
  30719. foot: {
  30720. height: math.unit(1.07, "feet"),
  30721. name: "Foot",
  30722. image: {
  30723. source: "./media/characters/sapphire-svell/foot.svg"
  30724. }
  30725. },
  30726. toering: {
  30727. height: math.unit(1.7, "inch"),
  30728. name: "Toering",
  30729. image: {
  30730. source: "./media/characters/sapphire-svell/toering.svg"
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(300, "feet"),
  30738. default: true
  30739. },
  30740. {
  30741. name: "Augmented",
  30742. height: math.unit(1250, "feet")
  30743. },
  30744. {
  30745. name: "Unleashed",
  30746. height: math.unit(3000, "feet")
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30752. {
  30753. side: {
  30754. height: math.unit(2 + 3 / 12, "feet"),
  30755. weight: math.unit(110, "lb"),
  30756. name: "Side",
  30757. image: {
  30758. source: "./media/characters/glitch-flux/side.svg",
  30759. extra: 997 / 805,
  30760. bottom: 20 / 1017
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(2 + 3 / 12, "feet"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30774. {
  30775. front: {
  30776. height: math.unit(4, "meters"),
  30777. name: "Front",
  30778. image: {
  30779. source: "./media/characters/mid/front.svg",
  30780. extra: 507 / 476,
  30781. bottom: 17 / 524
  30782. }
  30783. },
  30784. back: {
  30785. height: math.unit(4, "meters"),
  30786. name: "Back",
  30787. image: {
  30788. source: "./media/characters/mid/back.svg",
  30789. extra: 519 / 487,
  30790. bottom: 7 / 526
  30791. }
  30792. },
  30793. stuck: {
  30794. height: math.unit(2.2, "meters"),
  30795. name: "Stuck",
  30796. image: {
  30797. source: "./media/characters/mid/stuck.svg",
  30798. extra: 1951 / 1869,
  30799. bottom: 88 / 2039
  30800. }
  30801. }
  30802. },
  30803. [
  30804. {
  30805. name: "Normal",
  30806. height: math.unit(4, "meters"),
  30807. default: true
  30808. },
  30809. {
  30810. name: "Big",
  30811. height: math.unit(10, "meters")
  30812. },
  30813. {
  30814. name: "Macro",
  30815. height: math.unit(800, "meters")
  30816. },
  30817. {
  30818. name: "Megamacro",
  30819. height: math.unit(100, "km")
  30820. },
  30821. {
  30822. name: "Overgrown",
  30823. height: math.unit(1, "parsec")
  30824. },
  30825. ]
  30826. ))
  30827. characterMakers.push(() => makeCharacter(
  30828. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30829. {
  30830. front: {
  30831. height: math.unit(2.5, "meters"),
  30832. weight: math.unit(225, "kg"),
  30833. name: "Front",
  30834. image: {
  30835. source: "./media/characters/iris/front.svg",
  30836. extra: 3348 / 3251,
  30837. bottom: 205 / 3553
  30838. }
  30839. },
  30840. maw: {
  30841. height: math.unit(0.56, "meter"),
  30842. name: "Maw",
  30843. image: {
  30844. source: "./media/characters/iris/maw.svg"
  30845. }
  30846. },
  30847. },
  30848. [
  30849. {
  30850. name: "Mewter cat",
  30851. height: math.unit(1.2, "meters")
  30852. },
  30853. {
  30854. name: "Minimacro",
  30855. height: math.unit(2.5, "meters"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Macro",
  30860. height: math.unit(180, "meters")
  30861. },
  30862. {
  30863. name: "Megamacro",
  30864. height: math.unit(2746, "meters")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(6, "feet"),
  30873. weight: math.unit(135, "lb"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/axel/front.svg",
  30877. extra: 908 / 908,
  30878. bottom: 58 / 966
  30879. }
  30880. },
  30881. side: {
  30882. height: math.unit(6, "feet"),
  30883. weight: math.unit(135, "lb"),
  30884. name: "Side",
  30885. image: {
  30886. source: "./media/characters/axel/side.svg",
  30887. extra: 958 / 958,
  30888. bottom: 11 / 969
  30889. }
  30890. },
  30891. back: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(135, "lb"),
  30894. name: "Back",
  30895. image: {
  30896. source: "./media/characters/axel/back.svg",
  30897. extra: 887 / 887,
  30898. bottom: 34 / 921
  30899. }
  30900. },
  30901. head: {
  30902. height: math.unit(1.07, "feet"),
  30903. name: "Head",
  30904. image: {
  30905. source: "./media/characters/axel/head.svg"
  30906. }
  30907. },
  30908. beak: {
  30909. height: math.unit(1.4, "feet"),
  30910. name: "Beak",
  30911. image: {
  30912. source: "./media/characters/axel/beak.svg"
  30913. }
  30914. },
  30915. beakSide: {
  30916. height: math.unit(1.4, "feet"),
  30917. name: "Beak Side",
  30918. image: {
  30919. source: "./media/characters/axel/beak-side.svg"
  30920. }
  30921. },
  30922. sheath: {
  30923. height: math.unit(0.5, "feet"),
  30924. name: "Sheath",
  30925. image: {
  30926. source: "./media/characters/axel/sheath.svg"
  30927. }
  30928. },
  30929. dick: {
  30930. height: math.unit(0.98, "feet"),
  30931. name: "Dick",
  30932. image: {
  30933. source: "./media/characters/axel/dick.svg"
  30934. }
  30935. },
  30936. },
  30937. [
  30938. {
  30939. name: "Macro",
  30940. height: math.unit(68, "meters"),
  30941. default: true
  30942. },
  30943. ]
  30944. ))
  30945. characterMakers.push(() => makeCharacter(
  30946. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30947. {
  30948. front: {
  30949. height: math.unit(3.5, "meters"),
  30950. weight: math.unit(1200, "kg"),
  30951. name: "Front",
  30952. image: {
  30953. source: "./media/characters/joanna/front.svg",
  30954. extra: 1596 / 1488,
  30955. bottom: 29 / 1625
  30956. }
  30957. },
  30958. back: {
  30959. height: math.unit(3.5, "meters"),
  30960. weight: math.unit(1200, "kg"),
  30961. name: "Back",
  30962. image: {
  30963. source: "./media/characters/joanna/back.svg",
  30964. extra: 1594 / 1495,
  30965. bottom: 26 / 1620
  30966. }
  30967. },
  30968. frontShorts: {
  30969. height: math.unit(3.5, "meters"),
  30970. weight: math.unit(1200, "kg"),
  30971. name: "Front (Shorts)",
  30972. image: {
  30973. source: "./media/characters/joanna/front-shorts.svg",
  30974. extra: 1596 / 1488,
  30975. bottom: 29 / 1625
  30976. }
  30977. },
  30978. frontBiker: {
  30979. height: math.unit(3.5, "meters"),
  30980. weight: math.unit(1200, "kg"),
  30981. name: "Front (Biker)",
  30982. image: {
  30983. source: "./media/characters/joanna/front-biker.svg",
  30984. extra: 1596 / 1488,
  30985. bottom: 29 / 1625
  30986. }
  30987. },
  30988. backBiker: {
  30989. height: math.unit(3.5, "meters"),
  30990. weight: math.unit(1200, "kg"),
  30991. name: "Back (Biker)",
  30992. image: {
  30993. source: "./media/characters/joanna/back-biker.svg",
  30994. extra: 1594 / 1495,
  30995. bottom: 88 / 1682
  30996. }
  30997. },
  30998. bikeLeft: {
  30999. height: math.unit(2.4, "meters"),
  31000. weight: math.unit(1600, "kg"),
  31001. name: "Bike (Left)",
  31002. image: {
  31003. source: "./media/characters/joanna/bike-left.svg",
  31004. extra: 720 / 720,
  31005. bottom: 8 / 728
  31006. }
  31007. },
  31008. bikeRight: {
  31009. height: math.unit(2.4, "meters"),
  31010. weight: math.unit(1600, "kg"),
  31011. name: "Bike (Right)",
  31012. image: {
  31013. source: "./media/characters/joanna/bike-right.svg",
  31014. extra: 720 / 720,
  31015. bottom: 8 / 728
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Incognito",
  31022. height: math.unit(3.5, "meters")
  31023. },
  31024. {
  31025. name: "Casual Big",
  31026. height: math.unit(200, "meters")
  31027. },
  31028. {
  31029. name: "Macro",
  31030. height: math.unit(600, "meters")
  31031. },
  31032. {
  31033. name: "Original",
  31034. height: math.unit(20, "km"),
  31035. default: true
  31036. },
  31037. {
  31038. name: "Giga",
  31039. height: math.unit(400, "km")
  31040. },
  31041. {
  31042. name: "Lounging",
  31043. height: math.unit(1500, "km")
  31044. },
  31045. {
  31046. name: "Planetary",
  31047. height: math.unit(200000, "km")
  31048. },
  31049. ]
  31050. ))
  31051. characterMakers.push(() => makeCharacter(
  31052. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31053. {
  31054. front: {
  31055. height: math.unit(6, "feet"),
  31056. weight: math.unit(150, "lb"),
  31057. name: "Front",
  31058. image: {
  31059. source: "./media/characters/hugo-sigil/front.svg",
  31060. extra: 522 / 500,
  31061. bottom: 2 / 524
  31062. }
  31063. },
  31064. back: {
  31065. height: math.unit(6, "feet"),
  31066. weight: math.unit(150, "lb"),
  31067. name: "Back",
  31068. image: {
  31069. source: "./media/characters/hugo-sigil/back.svg",
  31070. extra: 519 / 495,
  31071. bottom: 5 / 524
  31072. }
  31073. },
  31074. maw: {
  31075. height: math.unit(1.4, "feet"),
  31076. weight: math.unit(150, "lb"),
  31077. name: "Maw",
  31078. image: {
  31079. source: "./media/characters/hugo-sigil/maw.svg"
  31080. }
  31081. },
  31082. feet: {
  31083. height: math.unit(1.56, "feet"),
  31084. weight: math.unit(150, "lb"),
  31085. name: "Feet",
  31086. image: {
  31087. source: "./media/characters/hugo-sigil/feet.svg",
  31088. extra: 177 / 177,
  31089. bottom: 12 / 189
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(6, "feet")
  31097. },
  31098. {
  31099. name: "Macro",
  31100. height: math.unit(200, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(6, "feet"),
  31110. weight: math.unit(150, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/peri/front.svg",
  31114. extra: 2354 / 2233,
  31115. bottom: 49 / 2403
  31116. }
  31117. },
  31118. },
  31119. [
  31120. {
  31121. name: "Really Small",
  31122. height: math.unit(1, "nm")
  31123. },
  31124. {
  31125. name: "Micro",
  31126. height: math.unit(4, "inches")
  31127. },
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(7, "inches"),
  31131. default: true
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(400, "feet")
  31136. },
  31137. {
  31138. name: "Megamacro",
  31139. height: math.unit(100, "miles")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31145. {
  31146. frontSlim: {
  31147. height: math.unit(7, "feet"),
  31148. name: "Front (Slim)",
  31149. image: {
  31150. source: "./media/characters/issilora/front-slim.svg",
  31151. extra: 529 / 449,
  31152. bottom: 53 / 582
  31153. }
  31154. },
  31155. sideSlim: {
  31156. height: math.unit(7, "feet"),
  31157. name: "Side (Slim)",
  31158. image: {
  31159. source: "./media/characters/issilora/side-slim.svg",
  31160. extra: 570 / 480,
  31161. bottom: 30 / 600
  31162. }
  31163. },
  31164. backSlim: {
  31165. height: math.unit(7, "feet"),
  31166. name: "Back (Slim)",
  31167. image: {
  31168. source: "./media/characters/issilora/back-slim.svg",
  31169. extra: 537 / 455,
  31170. bottom: 46 / 583
  31171. }
  31172. },
  31173. frontBuff: {
  31174. height: math.unit(7, "feet"),
  31175. name: "Front (Buff)",
  31176. image: {
  31177. source: "./media/characters/issilora/front-buff.svg",
  31178. extra: 2310 / 2035,
  31179. bottom: 335 / 2645
  31180. }
  31181. },
  31182. head: {
  31183. height: math.unit(1.94, "feet"),
  31184. name: "Head",
  31185. image: {
  31186. source: "./media/characters/issilora/head.svg"
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Minimum",
  31193. height: math.unit(7, "feet")
  31194. },
  31195. {
  31196. name: "Comfortable",
  31197. height: math.unit(17, "feet")
  31198. },
  31199. {
  31200. name: "Fun Size",
  31201. height: math.unit(47, "feet")
  31202. },
  31203. {
  31204. name: "Natural Macro",
  31205. height: math.unit(137, "feet"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "Maximum Kaiju",
  31210. height: math.unit(397, "feet")
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31216. {
  31217. front: {
  31218. height: math.unit(50 + 9/12, "feet"),
  31219. weight: math.unit(32.8, "tons"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/irb'iiritaahn/front.svg",
  31223. extra: 1878/1826,
  31224. bottom: 326/2204
  31225. }
  31226. },
  31227. back: {
  31228. height: math.unit(50 + 9/12, "feet"),
  31229. weight: math.unit(32.8, "tons"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/irb'iiritaahn/back.svg",
  31233. extra: 2052/2018,
  31234. bottom: 152/2204
  31235. }
  31236. },
  31237. head: {
  31238. height: math.unit(12.86, "feet"),
  31239. name: "Head",
  31240. image: {
  31241. source: "./media/characters/irb'iiritaahn/head.svg"
  31242. }
  31243. },
  31244. maw: {
  31245. height: math.unit(9.66, "feet"),
  31246. name: "Maw",
  31247. image: {
  31248. source: "./media/characters/irb'iiritaahn/maw.svg"
  31249. }
  31250. },
  31251. frontDick: {
  31252. height: math.unit(8.78461, "feet"),
  31253. name: "Front Dick",
  31254. image: {
  31255. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31256. }
  31257. },
  31258. rearDick: {
  31259. height: math.unit(8.78461, "feet"),
  31260. name: "Rear Dick",
  31261. image: {
  31262. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31263. }
  31264. },
  31265. rearDickUnfolded: {
  31266. height: math.unit(8.78, "feet"),
  31267. name: "Rear Dick (Unfolded)",
  31268. image: {
  31269. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31270. }
  31271. },
  31272. wings: {
  31273. height: math.unit(43, "feet"),
  31274. name: "Wings",
  31275. image: {
  31276. source: "./media/characters/irb'iiritaahn/wings.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Macro",
  31283. height: math.unit(50 + 9/12, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(205, "cm"),
  31293. weight: math.unit(102, "kg"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/irbisgreif/front.svg",
  31297. extra: 785/706,
  31298. bottom: 13/798
  31299. }
  31300. },
  31301. back: {
  31302. height: math.unit(205, "cm"),
  31303. weight: math.unit(102, "kg"),
  31304. name: "Back",
  31305. image: {
  31306. source: "./media/characters/irbisgreif/back.svg",
  31307. extra: 713/701,
  31308. bottom: 26/739
  31309. }
  31310. },
  31311. frontDressed: {
  31312. height: math.unit(216, "cm"),
  31313. weight: math.unit(102, "kg"),
  31314. name: "Front-dressed",
  31315. image: {
  31316. source: "./media/characters/irbisgreif/front-dressed.svg",
  31317. extra: 902/776,
  31318. bottom: 14/916
  31319. }
  31320. },
  31321. sideDressed: {
  31322. height: math.unit(195, "cm"),
  31323. weight: math.unit(102, "kg"),
  31324. name: "Side-dressed",
  31325. image: {
  31326. source: "./media/characters/irbisgreif/side-dressed.svg",
  31327. extra: 788/688,
  31328. bottom: 21/809
  31329. }
  31330. },
  31331. backDressed: {
  31332. height: math.unit(216, "cm"),
  31333. weight: math.unit(102, "kg"),
  31334. name: "Back-dressed",
  31335. image: {
  31336. source: "./media/characters/irbisgreif/back-dressed.svg",
  31337. extra: 901/783,
  31338. bottom: 10/911
  31339. }
  31340. },
  31341. dick: {
  31342. height: math.unit(0.49, "feet"),
  31343. name: "Dick",
  31344. image: {
  31345. source: "./media/characters/irbisgreif/dick.svg"
  31346. }
  31347. },
  31348. wingTop: {
  31349. height: math.unit(1.93 , "feet"),
  31350. name: "Wing-top",
  31351. image: {
  31352. source: "./media/characters/irbisgreif/wing-top.svg"
  31353. }
  31354. },
  31355. wingBottom: {
  31356. height: math.unit(1.93 , "feet"),
  31357. name: "Wing-bottom",
  31358. image: {
  31359. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(216, "cm"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(6, "feet"),
  31376. weight: math.unit(150, "lb"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/pride/front.svg",
  31380. extra: 1299/1230,
  31381. bottom: 18/1317
  31382. }
  31383. },
  31384. },
  31385. [
  31386. {
  31387. name: "Normal",
  31388. height: math.unit(7, "feet")
  31389. },
  31390. {
  31391. name: "Mini-macro",
  31392. height: math.unit(11, "feet")
  31393. },
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(15, "meters"),
  31397. default: true
  31398. },
  31399. {
  31400. name: "Macro+",
  31401. height: math.unit(40, "meters")
  31402. },
  31403. ]
  31404. ))
  31405. characterMakers.push(() => makeCharacter(
  31406. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31407. {
  31408. front: {
  31409. height: math.unit(4 + 2 / 12, "feet"),
  31410. weight: math.unit(95, "lb"),
  31411. name: "Front",
  31412. image: {
  31413. source: "./media/characters/vaelophis-nyx/front.svg",
  31414. extra: 2532/2330,
  31415. bottom: 0/2532
  31416. }
  31417. },
  31418. back: {
  31419. height: math.unit(4 + 2 / 12, "feet"),
  31420. weight: math.unit(95, "lb"),
  31421. name: "Back",
  31422. image: {
  31423. source: "./media/characters/vaelophis-nyx/back.svg",
  31424. extra: 2484/2361,
  31425. bottom: 0/2484
  31426. }
  31427. },
  31428. feralSide: {
  31429. height: math.unit(2 + 1/12, "feet"),
  31430. weight: math.unit(20, "lb"),
  31431. name: "Feral (Side)",
  31432. image: {
  31433. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31434. extra: 1721/1581,
  31435. bottom: 70/1791
  31436. }
  31437. },
  31438. feralLazing: {
  31439. height: math.unit(1.08, "feet"),
  31440. weight: math.unit(20, "lb"),
  31441. name: "Feral (Lazing)",
  31442. image: {
  31443. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31444. extra: 822/822,
  31445. bottom: 248/1070
  31446. }
  31447. },
  31448. ear: {
  31449. height: math.unit(0.416, "feet"),
  31450. name: "Ear",
  31451. image: {
  31452. source: "./media/characters/vaelophis-nyx/ear.svg"
  31453. }
  31454. },
  31455. eye: {
  31456. height: math.unit(0.0748, "feet"),
  31457. name: "Eye",
  31458. image: {
  31459. source: "./media/characters/vaelophis-nyx/eye.svg"
  31460. }
  31461. },
  31462. mouth: {
  31463. height: math.unit(0.378, "feet"),
  31464. name: "Mouth",
  31465. image: {
  31466. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31467. }
  31468. },
  31469. spade: {
  31470. height: math.unit(0.55, "feet"),
  31471. name: "Spade",
  31472. image: {
  31473. source: "./media/characters/vaelophis-nyx/spade.svg"
  31474. }
  31475. },
  31476. },
  31477. [
  31478. {
  31479. name: "Normal",
  31480. height: math.unit(4 + 2/12, "feet"),
  31481. default: true
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31487. {
  31488. front: {
  31489. height: math.unit(7, "feet"),
  31490. weight: math.unit(231, "lb"),
  31491. name: "Front",
  31492. image: {
  31493. source: "./media/characters/flux/front.svg",
  31494. extra: 919/871,
  31495. bottom: 0/919
  31496. }
  31497. },
  31498. back: {
  31499. height: math.unit(7, "feet"),
  31500. weight: math.unit(231, "lb"),
  31501. name: "Back",
  31502. image: {
  31503. source: "./media/characters/flux/back.svg",
  31504. extra: 1040/992,
  31505. bottom: 0/1040
  31506. }
  31507. },
  31508. frontDressed: {
  31509. height: math.unit(7, "feet"),
  31510. weight: math.unit(231, "lb"),
  31511. name: "Front (Dressed)",
  31512. image: {
  31513. source: "./media/characters/flux/front-dressed.svg",
  31514. extra: 919/871,
  31515. bottom: 0/919
  31516. }
  31517. },
  31518. feralSide: {
  31519. height: math.unit(5, "feet"),
  31520. weight: math.unit(150, "lb"),
  31521. name: "Feral (Side)",
  31522. image: {
  31523. source: "./media/characters/flux/feral-side.svg",
  31524. extra: 598/528,
  31525. bottom: 28/626
  31526. }
  31527. },
  31528. head: {
  31529. height: math.unit(1.585, "feet"),
  31530. name: "Head",
  31531. image: {
  31532. source: "./media/characters/flux/head.svg"
  31533. }
  31534. },
  31535. headSide: {
  31536. height: math.unit(1.74, "feet"),
  31537. name: "Head (Side)",
  31538. image: {
  31539. source: "./media/characters/flux/head-side.svg"
  31540. }
  31541. },
  31542. headSideFire: {
  31543. height: math.unit(1.76, "feet"),
  31544. name: "Head (Side, Fire)",
  31545. image: {
  31546. source: "./media/characters/flux/head-side-fire.svg"
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(7, "feet"),
  31554. default: true
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(9, "feet"),
  31563. weight: math.unit(1012, "lb"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/ulfra-lupae/front.svg",
  31567. extra: 1083/1011,
  31568. bottom: 67/1150
  31569. }
  31570. },
  31571. },
  31572. [
  31573. {
  31574. name: "Micro",
  31575. height: math.unit(6, "inches")
  31576. },
  31577. {
  31578. name: "Socializing",
  31579. height: math.unit(6 + 5/12, "feet")
  31580. },
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(9, "feet"),
  31584. default: true
  31585. },
  31586. {
  31587. name: "Macro",
  31588. height: math.unit(150, "feet")
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(5 + 2/12, "feet"),
  31597. weight: math.unit(120, "lb"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/timber/front.svg",
  31601. extra: 2814/2705,
  31602. bottom: 181/2995
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(5 + 2/12, "feet"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(5 + 7/12, "feet"),
  31619. weight: math.unit(220, "lb"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/nicki/front.svg",
  31623. extra: 453/419,
  31624. bottom: 7/460
  31625. }
  31626. },
  31627. frontAlt: {
  31628. height: math.unit(5 + 7/12, "feet"),
  31629. weight: math.unit(220, "lb"),
  31630. name: "Front-alt",
  31631. image: {
  31632. source: "./media/characters/nicki/front-alt.svg",
  31633. extra: 435/411,
  31634. bottom: 12/447
  31635. }
  31636. },
  31637. back: {
  31638. height: math.unit(5 + 7/12, "feet"),
  31639. weight: math.unit(220, "lb"),
  31640. name: "Back",
  31641. image: {
  31642. source: "./media/characters/nicki/back.svg",
  31643. extra: 440/413,
  31644. bottom: 19/459
  31645. }
  31646. },
  31647. taur: {
  31648. height: math.unit(7 + 6/12, "feet"),
  31649. weight: math.unit(700, "lb"),
  31650. name: "Taur",
  31651. image: {
  31652. source: "./media/characters/nicki/taur.svg",
  31653. extra: 975/773,
  31654. bottom: 0/975
  31655. }
  31656. },
  31657. frontNsfw: {
  31658. height: math.unit(5 + 7/12, "feet"),
  31659. weight: math.unit(220, "lb"),
  31660. name: "Front (NSFW)",
  31661. image: {
  31662. source: "./media/characters/nicki/front-nsfw.svg",
  31663. extra: 453/419,
  31664. bottom: 7/460
  31665. }
  31666. },
  31667. frontNsfwAlt: {
  31668. height: math.unit(5 + 7/12, "feet"),
  31669. weight: math.unit(220, "lb"),
  31670. name: "Front (Alt, NSFW)",
  31671. image: {
  31672. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31673. extra: 435/411,
  31674. bottom: 12/447
  31675. }
  31676. },
  31677. backNsfw: {
  31678. height: math.unit(5 + 7/12, "feet"),
  31679. weight: math.unit(220, "lb"),
  31680. name: "Back (NSFW)",
  31681. image: {
  31682. source: "./media/characters/nicki/back-nsfw.svg",
  31683. extra: 440/413,
  31684. bottom: 19/459
  31685. }
  31686. },
  31687. head: {
  31688. height: math.unit(2.1, "feet"),
  31689. name: "Head",
  31690. image: {
  31691. source: "./media/characters/nicki/head.svg"
  31692. }
  31693. },
  31694. paw: {
  31695. height: math.unit(1.88, "feet"),
  31696. name: "Paw",
  31697. image: {
  31698. source: "./media/characters/nicki/paw.svg"
  31699. }
  31700. },
  31701. },
  31702. [
  31703. {
  31704. name: "Normal",
  31705. height: math.unit(5 + 7/12, "feet"),
  31706. default: true
  31707. },
  31708. ]
  31709. ))
  31710. characterMakers.push(() => makeCharacter(
  31711. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31712. {
  31713. front: {
  31714. height: math.unit(7 + 10/12, "feet"),
  31715. weight: math.unit(3.5, "tons"),
  31716. name: "Front",
  31717. image: {
  31718. source: "./media/characters/lee/front.svg",
  31719. extra: 1773/1615,
  31720. bottom: 86/1859
  31721. }
  31722. },
  31723. hand: {
  31724. height: math.unit(1.78, "feet"),
  31725. name: "Hand",
  31726. image: {
  31727. source: "./media/characters/lee/hand.svg"
  31728. }
  31729. },
  31730. maw: {
  31731. height: math.unit(1.18, "feet"),
  31732. name: "Maw",
  31733. image: {
  31734. source: "./media/characters/lee/maw.svg"
  31735. }
  31736. },
  31737. },
  31738. [
  31739. {
  31740. name: "Normal",
  31741. height: math.unit(7 + 10/12, "feet"),
  31742. default: true
  31743. },
  31744. ]
  31745. ))
  31746. characterMakers.push(() => makeCharacter(
  31747. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31748. {
  31749. front: {
  31750. height: math.unit(9, "feet"),
  31751. name: "Front",
  31752. image: {
  31753. source: "./media/characters/guti/front.svg",
  31754. extra: 4551/4355,
  31755. bottom: 123/4674
  31756. }
  31757. },
  31758. tongue: {
  31759. height: math.unit(1, "feet"),
  31760. name: "Tongue",
  31761. image: {
  31762. source: "./media/characters/guti/tongue.svg"
  31763. }
  31764. },
  31765. paw: {
  31766. height: math.unit(1.18, "feet"),
  31767. name: "Paw",
  31768. image: {
  31769. source: "./media/characters/guti/paw.svg"
  31770. }
  31771. },
  31772. },
  31773. [
  31774. {
  31775. name: "Normal",
  31776. height: math.unit(9, "feet"),
  31777. default: true
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31783. {
  31784. side: {
  31785. height: math.unit(5, "meters"),
  31786. name: "Side",
  31787. image: {
  31788. source: "./media/characters/vesper/side.svg",
  31789. extra: 1605/1518,
  31790. bottom: 0/1605
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Small",
  31797. height: math.unit(5, "meters")
  31798. },
  31799. {
  31800. name: "Sage",
  31801. height: math.unit(100, "meters"),
  31802. default: true
  31803. },
  31804. {
  31805. name: "Fun Size",
  31806. height: math.unit(600, "meters")
  31807. },
  31808. {
  31809. name: "Goddess",
  31810. height: math.unit(20000, "km")
  31811. },
  31812. {
  31813. name: "Maximum",
  31814. height: math.unit(5, "galaxies")
  31815. },
  31816. ]
  31817. ))
  31818. characterMakers.push(() => makeCharacter(
  31819. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31820. {
  31821. front: {
  31822. height: math.unit(6 + 3/12, "feet"),
  31823. weight: math.unit(190, "lb"),
  31824. name: "Front",
  31825. image: {
  31826. source: "./media/characters/gawain/front.svg",
  31827. extra: 2222/2139,
  31828. bottom: 90/2312
  31829. }
  31830. },
  31831. back: {
  31832. height: math.unit(6 + 3/12, "feet"),
  31833. weight: math.unit(190, "lb"),
  31834. name: "Back",
  31835. image: {
  31836. source: "./media/characters/gawain/back.svg",
  31837. extra: 2199/2111,
  31838. bottom: 73/2272
  31839. }
  31840. },
  31841. },
  31842. [
  31843. {
  31844. name: "Normal",
  31845. height: math.unit(6 + 3/12, "feet"),
  31846. default: true
  31847. },
  31848. ]
  31849. ))
  31850. characterMakers.push(() => makeCharacter(
  31851. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31852. {
  31853. side: {
  31854. height: math.unit(3.5, "meters"),
  31855. weight: math.unit(16000, "lb"),
  31856. name: "Side",
  31857. image: {
  31858. source: "./media/characters/dascalti/side.svg",
  31859. extra: 392/273,
  31860. bottom: 47/439
  31861. }
  31862. },
  31863. breath: {
  31864. height: math.unit(7.4, "feet"),
  31865. name: "Breath",
  31866. image: {
  31867. source: "./media/characters/dascalti/breath.svg"
  31868. }
  31869. },
  31870. fed: {
  31871. height: math.unit(3.6, "meters"),
  31872. weight: math.unit(16000, "lb"),
  31873. name: "Fed",
  31874. image: {
  31875. source: "./media/characters/dascalti/fed.svg",
  31876. extra: 1419/820,
  31877. bottom: 95/1514
  31878. }
  31879. },
  31880. },
  31881. [
  31882. {
  31883. name: "Normal",
  31884. height: math.unit(3.5, "meters"),
  31885. default: true
  31886. },
  31887. ]
  31888. ))
  31889. characterMakers.push(() => makeCharacter(
  31890. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31891. {
  31892. front: {
  31893. height: math.unit(3 + 5/12, "feet"),
  31894. name: "Front",
  31895. image: {
  31896. source: "./media/characters/mauve/front.svg",
  31897. extra: 1126/1033,
  31898. bottom: 65/1191
  31899. }
  31900. },
  31901. side: {
  31902. height: math.unit(3 + 5/12, "feet"),
  31903. name: "Side",
  31904. image: {
  31905. source: "./media/characters/mauve/side.svg",
  31906. extra: 1089/1001,
  31907. bottom: 29/1118
  31908. }
  31909. },
  31910. back: {
  31911. height: math.unit(3 + 5/12, "feet"),
  31912. name: "Back",
  31913. image: {
  31914. source: "./media/characters/mauve/back.svg",
  31915. extra: 1173/1053,
  31916. bottom: 109/1282
  31917. }
  31918. },
  31919. },
  31920. [
  31921. {
  31922. name: "Normal",
  31923. height: math.unit(3 + 5/12, "feet"),
  31924. default: true
  31925. },
  31926. ]
  31927. ))
  31928. characterMakers.push(() => makeCharacter(
  31929. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31930. {
  31931. front: {
  31932. height: math.unit(6 + 3/12, "feet"),
  31933. weight: math.unit(430, "lb"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/carlos/front.svg",
  31937. extra: 1964/1913,
  31938. bottom: 70/2034
  31939. }
  31940. },
  31941. },
  31942. [
  31943. {
  31944. name: "Normal",
  31945. height: math.unit(6 + 3/12, "feet"),
  31946. default: true
  31947. },
  31948. ]
  31949. ))
  31950. characterMakers.push(() => makeCharacter(
  31951. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31952. {
  31953. back: {
  31954. height: math.unit(5 + 10/12, "feet"),
  31955. weight: math.unit(200, "lb"),
  31956. name: "Back",
  31957. image: {
  31958. source: "./media/characters/jax/back.svg",
  31959. extra: 764/739,
  31960. bottom: 25/789
  31961. }
  31962. },
  31963. },
  31964. [
  31965. {
  31966. name: "Normal",
  31967. height: math.unit(5 + 10/12, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(8, "feet"),
  31977. weight: math.unit(250, "lb"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/eikthynir/front.svg",
  31981. extra: 1332/1166,
  31982. bottom: 82/1414
  31983. }
  31984. },
  31985. back: {
  31986. height: math.unit(8, "feet"),
  31987. weight: math.unit(250, "lb"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/eikthynir/back.svg",
  31991. extra: 1342/1190,
  31992. bottom: 19/1361
  31993. }
  31994. },
  31995. dick: {
  31996. height: math.unit(2.35, "feet"),
  31997. name: "Dick",
  31998. image: {
  31999. source: "./media/characters/eikthynir/dick.svg"
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(8, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(99, "meters"),
  32016. weight: math.unit(13000, "tons"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/zlmos/front.svg",
  32020. extra: 2202/1992,
  32021. bottom: 315/2517
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Macro",
  32028. height: math.unit(99, "meters"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6 + 5/12, "feet"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/purri/front.svg",
  32041. extra: 1698/1610,
  32042. bottom: 32/1730
  32043. }
  32044. },
  32045. frontAlt: {
  32046. height: math.unit(6 + 5/12, "feet"),
  32047. name: "Front (Alt)",
  32048. image: {
  32049. source: "./media/characters/purri/front-alt.svg",
  32050. extra: 450/420,
  32051. bottom: 26/476
  32052. }
  32053. },
  32054. boots: {
  32055. height: math.unit(5.5, "feet"),
  32056. name: "Boots",
  32057. image: {
  32058. source: "./media/characters/purri/boots.svg",
  32059. extra: 905/853,
  32060. bottom: 18/923
  32061. }
  32062. },
  32063. lying: {
  32064. height: math.unit(2, "feet"),
  32065. name: "Lying",
  32066. image: {
  32067. source: "./media/characters/purri/lying.svg",
  32068. extra: 940/843,
  32069. bottom: 146/1086
  32070. }
  32071. },
  32072. devious: {
  32073. height: math.unit(1.77, "feet"),
  32074. name: "Devious",
  32075. image: {
  32076. source: "./media/characters/purri/devious.svg",
  32077. extra: 1440/1155,
  32078. bottom: 147/1587
  32079. }
  32080. },
  32081. bean: {
  32082. height: math.unit(1.94, "feet"),
  32083. name: "Bean",
  32084. image: {
  32085. source: "./media/characters/purri/bean.svg"
  32086. }
  32087. },
  32088. },
  32089. [
  32090. {
  32091. name: "Micro",
  32092. height: math.unit(1, "mm")
  32093. },
  32094. {
  32095. name: "Normal",
  32096. height: math.unit(6 + 5/12, "feet"),
  32097. default: true
  32098. },
  32099. {
  32100. name: "Macro :3c",
  32101. height: math.unit(2, "miles")
  32102. },
  32103. ]
  32104. ))
  32105. characterMakers.push(() => makeCharacter(
  32106. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32107. {
  32108. front: {
  32109. height: math.unit(6 + 2/12, "feet"),
  32110. weight: math.unit(250, "lb"),
  32111. name: "Front",
  32112. image: {
  32113. source: "./media/characters/moonlight/front.svg",
  32114. extra: 1044/908,
  32115. bottom: 56/1100
  32116. }
  32117. },
  32118. feral: {
  32119. height: math.unit(3 + 1/12, "feet"),
  32120. weight: math.unit(50, "kg"),
  32121. name: "Feral",
  32122. image: {
  32123. source: "./media/characters/moonlight/feral.svg",
  32124. extra: 3705/2791,
  32125. bottom: 145/3850
  32126. }
  32127. },
  32128. paw: {
  32129. height: math.unit(1, "feet"),
  32130. name: "Paw",
  32131. image: {
  32132. source: "./media/characters/moonlight/paw.svg"
  32133. }
  32134. },
  32135. paws: {
  32136. height: math.unit(0.98, "feet"),
  32137. name: "Paws",
  32138. image: {
  32139. source: "./media/characters/moonlight/paws.svg",
  32140. extra: 939/939,
  32141. bottom: 50/989
  32142. }
  32143. },
  32144. mouth: {
  32145. height: math.unit(0.48, "feet"),
  32146. name: "Mouth",
  32147. image: {
  32148. source: "./media/characters/moonlight/mouth.svg"
  32149. }
  32150. },
  32151. dick: {
  32152. height: math.unit(1.46, "feet"),
  32153. name: "Dick",
  32154. image: {
  32155. source: "./media/characters/moonlight/dick.svg"
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(6 + 2/12, "feet"),
  32163. default: true
  32164. },
  32165. {
  32166. name: "Macro",
  32167. height: math.unit(300, "feet")
  32168. },
  32169. {
  32170. name: "Macro+",
  32171. height: math.unit(1, "mile")
  32172. },
  32173. {
  32174. name: "Mt. Moon",
  32175. height: math.unit(5, "miles")
  32176. },
  32177. {
  32178. name: "Megamacro",
  32179. height: math.unit(15, "miles")
  32180. },
  32181. ]
  32182. ))
  32183. characterMakers.push(() => makeCharacter(
  32184. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32185. {
  32186. back: {
  32187. height: math.unit(6, "feet"),
  32188. weight: math.unit(150, "lb"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/sylen/back.svg",
  32192. extra: 1335/1273,
  32193. bottom: 107/1442
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Normal",
  32200. height: math.unit(5 + 5/12, "feet")
  32201. },
  32202. {
  32203. name: "Megamacro",
  32204. height: math.unit(3, "miles"),
  32205. default: true
  32206. },
  32207. ]
  32208. ))
  32209. characterMakers.push(() => makeCharacter(
  32210. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32211. {
  32212. front: {
  32213. height: math.unit(6, "feet"),
  32214. weight: math.unit(190, "lb"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/huttser/front.svg",
  32218. extra: 1152/1058,
  32219. bottom: 23/1175
  32220. }
  32221. },
  32222. side: {
  32223. height: math.unit(6, "feet"),
  32224. weight: math.unit(190, "lb"),
  32225. name: "Side",
  32226. image: {
  32227. source: "./media/characters/huttser/side.svg",
  32228. extra: 1174/1065,
  32229. bottom: 18/1192
  32230. }
  32231. },
  32232. back: {
  32233. height: math.unit(6, "feet"),
  32234. weight: math.unit(190, "lb"),
  32235. name: "Back",
  32236. image: {
  32237. source: "./media/characters/huttser/back.svg",
  32238. extra: 1158/1056,
  32239. bottom: 12/1170
  32240. }
  32241. },
  32242. },
  32243. [
  32244. ]
  32245. ))
  32246. characterMakers.push(() => makeCharacter(
  32247. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32248. {
  32249. side: {
  32250. height: math.unit(12 + 9/12, "feet"),
  32251. weight: math.unit(15000, "lb"),
  32252. name: "Side",
  32253. image: {
  32254. source: "./media/characters/faan/side.svg",
  32255. extra: 2747/2697,
  32256. bottom: 0/2747
  32257. }
  32258. },
  32259. front: {
  32260. height: math.unit(12 + 9/12, "feet"),
  32261. weight: math.unit(15000, "lb"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/faan/front.svg",
  32265. extra: 607/571,
  32266. bottom: 24/631
  32267. }
  32268. },
  32269. head: {
  32270. height: math.unit(2.85, "feet"),
  32271. name: "Head",
  32272. image: {
  32273. source: "./media/characters/faan/head.svg"
  32274. }
  32275. },
  32276. headAlt: {
  32277. height: math.unit(3.13, "feet"),
  32278. name: "Head-alt",
  32279. image: {
  32280. source: "./media/characters/faan/head-alt.svg"
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(12 + 9/12, "feet"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(6, "feet"),
  32297. weight: math.unit(300, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/tanio/front.svg",
  32301. extra: 711/673,
  32302. bottom: 25/736
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(6, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(3, "inches"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/noboru/front.svg",
  32322. extra: 1039/932,
  32323. bottom: 18/1057
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Micro",
  32330. height: math.unit(3, "inches"),
  32331. default: true
  32332. },
  32333. ]
  32334. ))
  32335. characterMakers.push(() => makeCharacter(
  32336. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32337. {
  32338. front: {
  32339. height: math.unit(1.85, "meters"),
  32340. weight: math.unit(80, "kg"),
  32341. name: "Front",
  32342. image: {
  32343. source: "./media/characters/daniel-barrett/front.svg",
  32344. extra: 355/337,
  32345. bottom: 9/364
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Pico",
  32352. height: math.unit(0.0433, "mm")
  32353. },
  32354. {
  32355. name: "Nano",
  32356. height: math.unit(1.5, "mm")
  32357. },
  32358. {
  32359. name: "Micro",
  32360. height: math.unit(5.3, "cm"),
  32361. default: true
  32362. },
  32363. {
  32364. name: "Normal",
  32365. height: math.unit(1.85, "meters")
  32366. },
  32367. {
  32368. name: "Macro",
  32369. height: math.unit(64.7, "meters")
  32370. },
  32371. {
  32372. name: "Megamacro",
  32373. height: math.unit(2.26, "km")
  32374. },
  32375. {
  32376. name: "Gigamacro",
  32377. height: math.unit(79, "km")
  32378. },
  32379. {
  32380. name: "Teramacro",
  32381. height: math.unit(2765, "km")
  32382. },
  32383. {
  32384. name: "Petamacro",
  32385. height: math.unit(96678, "km")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32391. {
  32392. front: {
  32393. height: math.unit(30, "meters"),
  32394. weight: math.unit(400, "tons"),
  32395. name: "Front",
  32396. image: {
  32397. source: "./media/characters/zeel/front.svg",
  32398. extra: 2599/2599,
  32399. bottom: 226/2825
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Macro",
  32406. height: math.unit(30, "meters"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(6 + 7/12, "feet"),
  32416. weight: math.unit(210, "lb"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/tarn/front.svg",
  32420. extra: 3517/3220,
  32421. bottom: 91/3608
  32422. }
  32423. },
  32424. back: {
  32425. height: math.unit(6 + 7/12, "feet"),
  32426. weight: math.unit(210, "lb"),
  32427. name: "Back",
  32428. image: {
  32429. source: "./media/characters/tarn/back.svg",
  32430. extra: 3566/3241,
  32431. bottom: 34/3600
  32432. }
  32433. },
  32434. dick: {
  32435. height: math.unit(1.65, "feet"),
  32436. name: "Dick",
  32437. image: {
  32438. source: "./media/characters/tarn/dick.svg"
  32439. }
  32440. },
  32441. paw: {
  32442. height: math.unit(1.80, "feet"),
  32443. name: "Paw",
  32444. image: {
  32445. source: "./media/characters/tarn/paw.svg"
  32446. }
  32447. },
  32448. tongue: {
  32449. height: math.unit(0.97, "feet"),
  32450. name: "Tongue",
  32451. image: {
  32452. source: "./media/characters/tarn/tongue.svg"
  32453. }
  32454. },
  32455. },
  32456. [
  32457. {
  32458. name: "Micro",
  32459. height: math.unit(4, "inches")
  32460. },
  32461. {
  32462. name: "Normal",
  32463. height: math.unit(6 + 7/12, "feet"),
  32464. default: true
  32465. },
  32466. {
  32467. name: "Macro",
  32468. height: math.unit(300, "feet")
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(5 + 7/12, "feet"),
  32477. weight: math.unit(80, "kg"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32481. extra: 3023/2865,
  32482. bottom: 33/3056
  32483. }
  32484. },
  32485. back: {
  32486. height: math.unit(5 + 7/12, "feet"),
  32487. weight: math.unit(80, "kg"),
  32488. name: "Back",
  32489. image: {
  32490. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32491. extra: 3020/2886,
  32492. bottom: 30/3050
  32493. }
  32494. },
  32495. dick: {
  32496. height: math.unit(0.98, "feet"),
  32497. name: "Dick",
  32498. image: {
  32499. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32500. }
  32501. },
  32502. anatomy: {
  32503. height: math.unit(2.86, "feet"),
  32504. name: "Anatomy",
  32505. image: {
  32506. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32507. }
  32508. },
  32509. },
  32510. [
  32511. {
  32512. name: "Really Small",
  32513. height: math.unit(2, "inches")
  32514. },
  32515. {
  32516. name: "Micro",
  32517. height: math.unit(5.583, "inches")
  32518. },
  32519. {
  32520. name: "Normal",
  32521. height: math.unit(5 + 7/12, "feet"),
  32522. default: true
  32523. },
  32524. {
  32525. name: "Macro",
  32526. height: math.unit(67, "feet")
  32527. },
  32528. {
  32529. name: "Megamacro",
  32530. height: math.unit(134, "feet")
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32536. {
  32537. front: {
  32538. height: math.unit(9, "feet"),
  32539. weight: math.unit(120, "lb"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/sally/front.svg",
  32543. extra: 1506/1349,
  32544. bottom: 66/1572
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(9, "feet"),
  32552. default: true
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32558. {
  32559. front: {
  32560. height: math.unit(8, "feet"),
  32561. weight: math.unit(900, "lb"),
  32562. name: "Front",
  32563. image: {
  32564. source: "./media/characters/owen/front.svg",
  32565. extra: 1761/1657,
  32566. bottom: 74/1835
  32567. }
  32568. },
  32569. side: {
  32570. height: math.unit(8, "feet"),
  32571. weight: math.unit(900, "lb"),
  32572. name: "Side",
  32573. image: {
  32574. source: "./media/characters/owen/side.svg",
  32575. extra: 1797/1734,
  32576. bottom: 30/1827
  32577. }
  32578. },
  32579. back: {
  32580. height: math.unit(8, "feet"),
  32581. weight: math.unit(900, "lb"),
  32582. name: "Back",
  32583. image: {
  32584. source: "./media/characters/owen/back.svg",
  32585. extra: 1796/1706,
  32586. bottom: 59/1855
  32587. }
  32588. },
  32589. maw: {
  32590. height: math.unit(1.76, "feet"),
  32591. name: "Maw",
  32592. image: {
  32593. source: "./media/characters/owen/maw.svg"
  32594. }
  32595. },
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(8, "feet"),
  32601. default: true
  32602. },
  32603. ]
  32604. ))
  32605. characterMakers.push(() => makeCharacter(
  32606. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32607. {
  32608. front: {
  32609. height: math.unit(4, "feet"),
  32610. weight: math.unit(400, "lb"),
  32611. name: "Front",
  32612. image: {
  32613. source: "./media/characters/ryth/front.svg",
  32614. extra: 1920/1748,
  32615. bottom: 42/1962
  32616. }
  32617. },
  32618. back: {
  32619. height: math.unit(4, "feet"),
  32620. weight: math.unit(400, "lb"),
  32621. name: "Back",
  32622. image: {
  32623. source: "./media/characters/ryth/back.svg",
  32624. extra: 1897/1690,
  32625. bottom: 89/1986
  32626. }
  32627. },
  32628. mouth: {
  32629. height: math.unit(1.39, "feet"),
  32630. name: "Mouth",
  32631. image: {
  32632. source: "./media/characters/ryth/mouth.svg"
  32633. }
  32634. },
  32635. tailmaw: {
  32636. height: math.unit(1.23, "feet"),
  32637. name: "Tailmaw",
  32638. image: {
  32639. source: "./media/characters/ryth/tailmaw.svg"
  32640. }
  32641. },
  32642. goia: {
  32643. height: math.unit(4, "meters"),
  32644. weight: math.unit(10800, "lb"),
  32645. name: "Goia",
  32646. image: {
  32647. source: "./media/characters/ryth/goia.svg",
  32648. extra: 745/640,
  32649. bottom: 107/852
  32650. }
  32651. },
  32652. goiaFront: {
  32653. height: math.unit(4, "meters"),
  32654. weight: math.unit(10800, "lb"),
  32655. name: "Goia (Front)",
  32656. image: {
  32657. source: "./media/characters/ryth/goia-front.svg",
  32658. extra: 750/586,
  32659. bottom: 114/864
  32660. }
  32661. },
  32662. goiaMaw: {
  32663. height: math.unit(5.55, "feet"),
  32664. name: "Goia Maw",
  32665. image: {
  32666. source: "./media/characters/ryth/goia-maw.svg"
  32667. }
  32668. },
  32669. goiaForepaw: {
  32670. height: math.unit(3.5, "feet"),
  32671. name: "Goia Forepaw",
  32672. image: {
  32673. source: "./media/characters/ryth/goia-forepaw.svg"
  32674. }
  32675. },
  32676. goiaHindpaw: {
  32677. height: math.unit(5.55, "feet"),
  32678. name: "Goia Hindpaw",
  32679. image: {
  32680. source: "./media/characters/ryth/goia-hindpaw.svg"
  32681. }
  32682. },
  32683. },
  32684. [
  32685. {
  32686. name: "Normal",
  32687. height: math.unit(4, "feet"),
  32688. default: true
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(7, "feet"),
  32697. weight: math.unit(180, "lb"),
  32698. name: "Front",
  32699. image: {
  32700. source: "./media/characters/necrolance/front.svg",
  32701. extra: 1062/947,
  32702. bottom: 41/1103
  32703. }
  32704. },
  32705. back: {
  32706. height: math.unit(7, "feet"),
  32707. weight: math.unit(180, "lb"),
  32708. name: "Back",
  32709. image: {
  32710. source: "./media/characters/necrolance/back.svg",
  32711. extra: 1045/984,
  32712. bottom: 14/1059
  32713. }
  32714. },
  32715. wing: {
  32716. height: math.unit(2.67, "feet"),
  32717. name: "Wing",
  32718. image: {
  32719. source: "./media/characters/necrolance/wing.svg"
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(7, "feet"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32733. {
  32734. front: {
  32735. height: math.unit(76, "meters"),
  32736. weight: math.unit(30000, "tons"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/tyler/front.svg",
  32740. extra: 1640/1640,
  32741. bottom: 114/1754
  32742. }
  32743. },
  32744. },
  32745. [
  32746. {
  32747. name: "Macro",
  32748. height: math.unit(76, "meters"),
  32749. default: true
  32750. },
  32751. ]
  32752. ))
  32753. characterMakers.push(() => makeCharacter(
  32754. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32755. {
  32756. front: {
  32757. height: math.unit(4 + 11/12, "feet"),
  32758. weight: math.unit(132, "lb"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/icey/front.svg",
  32762. extra: 2750/2550,
  32763. bottom: 33/2783
  32764. }
  32765. },
  32766. back: {
  32767. height: math.unit(4 + 11/12, "feet"),
  32768. weight: math.unit(132, "lb"),
  32769. name: "Back",
  32770. image: {
  32771. source: "./media/characters/icey/back.svg",
  32772. extra: 2624/2481,
  32773. bottom: 35/2659
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(4 + 11/12, "feet"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32787. {
  32788. front: {
  32789. height: math.unit(100, "feet"),
  32790. weight: math.unit(0, "lb"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/smile/front.svg",
  32794. extra: 2983/2912,
  32795. bottom: 162/3145
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(100, "feet"),
  32800. weight: math.unit(0, "lb"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/smile/back.svg",
  32804. extra: 3143/3031,
  32805. bottom: 91/3234
  32806. }
  32807. },
  32808. head: {
  32809. height: math.unit(26.3, "feet"),
  32810. weight: math.unit(0, "lb"),
  32811. name: "Head",
  32812. image: {
  32813. source: "./media/characters/smile/head.svg"
  32814. }
  32815. },
  32816. collar: {
  32817. height: math.unit(5.3, "feet"),
  32818. weight: math.unit(0, "lb"),
  32819. name: "Collar",
  32820. image: {
  32821. source: "./media/characters/smile/collar.svg"
  32822. }
  32823. },
  32824. },
  32825. [
  32826. {
  32827. name: "Macro",
  32828. height: math.unit(100, "feet"),
  32829. default: true
  32830. },
  32831. ]
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32835. {
  32836. dragon: {
  32837. height: math.unit(26, "feet"),
  32838. weight: math.unit(36, "tons"),
  32839. name: "Dragon",
  32840. image: {
  32841. source: "./media/characters/arimphae/dragon.svg",
  32842. extra: 1574/983,
  32843. bottom: 357/1931
  32844. }
  32845. },
  32846. drake: {
  32847. height: math.unit(9, "feet"),
  32848. weight: math.unit(1.5, "tons"),
  32849. name: "Drake",
  32850. image: {
  32851. source: "./media/characters/arimphae/drake.svg",
  32852. extra: 1120/925,
  32853. bottom: 435/1555
  32854. }
  32855. },
  32856. },
  32857. [
  32858. {
  32859. name: "Small",
  32860. height: math.unit(26*5/9, "feet")
  32861. },
  32862. {
  32863. name: "Normal",
  32864. height: math.unit(26, "feet"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32871. {
  32872. front: {
  32873. height: math.unit(8 + 9/12, "feet"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/xander/front.svg",
  32877. extra: 1237/974,
  32878. bottom: 94/1331
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(8 + 9/12, "feet"),
  32886. default: true
  32887. },
  32888. {
  32889. name: "Gaze Grabber",
  32890. height: math.unit(13 + 8/12, "feet")
  32891. },
  32892. {
  32893. name: "Jaw Dropper",
  32894. height: math.unit(27, "feet")
  32895. },
  32896. {
  32897. name: "Show Stopper",
  32898. height: math.unit(136, "feet")
  32899. },
  32900. {
  32901. name: "Superstar",
  32902. height: math.unit(1.9e6, "miles")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32908. {
  32909. side: {
  32910. height: math.unit(2100, "feet"),
  32911. name: "Side",
  32912. image: {
  32913. source: "./media/characters/osiris/side.svg",
  32914. extra: 1105/939,
  32915. bottom: 167/1272
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Macro",
  32922. height: math.unit(2100, "feet"),
  32923. default: true
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(6 + 8/12, "feet"),
  32932. weight: math.unit(225, "lb"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/rhys-londe/front.svg",
  32936. extra: 2258/2141,
  32937. bottom: 188/2446
  32938. }
  32939. },
  32940. back: {
  32941. height: math.unit(6 + 8/12, "feet"),
  32942. weight: math.unit(225, "lb"),
  32943. name: "Back",
  32944. image: {
  32945. source: "./media/characters/rhys-londe/back.svg",
  32946. extra: 2237/2137,
  32947. bottom: 63/2300
  32948. }
  32949. },
  32950. frontNsfw: {
  32951. height: math.unit(6 + 8/12, "feet"),
  32952. weight: math.unit(225, "lb"),
  32953. name: "Front (NSFW)",
  32954. image: {
  32955. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32956. extra: 2258/2141,
  32957. bottom: 188/2446
  32958. }
  32959. },
  32960. backNsfw: {
  32961. height: math.unit(6 + 8/12, "feet"),
  32962. weight: math.unit(225, "lb"),
  32963. name: "Back (NSFW)",
  32964. image: {
  32965. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32966. extra: 2237/2137,
  32967. bottom: 63/2300
  32968. }
  32969. },
  32970. dick: {
  32971. height: math.unit(30, "inches"),
  32972. name: "Dick",
  32973. image: {
  32974. source: "./media/characters/rhys-londe/dick.svg"
  32975. }
  32976. },
  32977. maw: {
  32978. height: math.unit(1.6, "feet"),
  32979. name: "Maw",
  32980. image: {
  32981. source: "./media/characters/rhys-londe/maw.svg"
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Normal",
  32988. height: math.unit(6 + 8/12, "feet"),
  32989. default: true
  32990. },
  32991. ]
  32992. ))
  32993. characterMakers.push(() => makeCharacter(
  32994. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32995. {
  32996. front: {
  32997. height: math.unit(3 + 10/12, "feet"),
  32998. weight: math.unit(90, "lb"),
  32999. name: "Front",
  33000. image: {
  33001. source: "./media/characters/taivas-ensim/front.svg",
  33002. extra: 1327/1216,
  33003. bottom: 96/1423
  33004. }
  33005. },
  33006. back: {
  33007. height: math.unit(3 + 10/12, "feet"),
  33008. weight: math.unit(90, "lb"),
  33009. name: "Back",
  33010. image: {
  33011. source: "./media/characters/taivas-ensim/back.svg",
  33012. extra: 1355/1247,
  33013. bottom: 11/1366
  33014. }
  33015. },
  33016. frontNsfw: {
  33017. height: math.unit(3 + 10/12, "feet"),
  33018. weight: math.unit(90, "lb"),
  33019. name: "Front (NSFW)",
  33020. image: {
  33021. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33022. extra: 1327/1216,
  33023. bottom: 96/1423
  33024. }
  33025. },
  33026. backNsfw: {
  33027. height: math.unit(3 + 10/12, "feet"),
  33028. weight: math.unit(90, "lb"),
  33029. name: "Back (NSFW)",
  33030. image: {
  33031. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33032. extra: 1355/1247,
  33033. bottom: 11/1366
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Normal",
  33040. height: math.unit(3 + 10/12, "feet"),
  33041. default: true
  33042. },
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33047. {
  33048. front: {
  33049. height: math.unit(9 + 6/12, "feet"),
  33050. weight: math.unit(940, "lb"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/byliss/front.svg",
  33054. extra: 1327/1290,
  33055. bottom: 82/1409
  33056. }
  33057. },
  33058. back: {
  33059. height: math.unit(9 + 6/12, "feet"),
  33060. weight: math.unit(940, "lb"),
  33061. name: "Back",
  33062. image: {
  33063. source: "./media/characters/byliss/back.svg",
  33064. extra: 1376/1349,
  33065. bottom: 9/1385
  33066. }
  33067. },
  33068. frontNsfw: {
  33069. height: math.unit(9 + 6/12, "feet"),
  33070. weight: math.unit(940, "lb"),
  33071. name: "Front (NSFW)",
  33072. image: {
  33073. source: "./media/characters/byliss/front-nsfw.svg",
  33074. extra: 1327/1290,
  33075. bottom: 82/1409
  33076. }
  33077. },
  33078. backNsfw: {
  33079. height: math.unit(9 + 6/12, "feet"),
  33080. weight: math.unit(940, "lb"),
  33081. name: "Back (NSFW)",
  33082. image: {
  33083. source: "./media/characters/byliss/back-nsfw.svg",
  33084. extra: 1376/1349,
  33085. bottom: 9/1385
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(9 + 6/12, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(5 + 2/12, "feet"),
  33102. weight: math.unit(200, "lb"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/noraly/front.svg",
  33106. extra: 4985/4773,
  33107. bottom: 150/5135
  33108. }
  33109. },
  33110. full: {
  33111. height: math.unit(5 + 2/12, "feet"),
  33112. weight: math.unit(164, "lb"),
  33113. name: "Full",
  33114. image: {
  33115. source: "./media/characters/noraly/full.svg",
  33116. extra: 1114/1059,
  33117. bottom: 35/1149
  33118. }
  33119. },
  33120. fuller: {
  33121. height: math.unit(5 + 2/12, "feet"),
  33122. weight: math.unit(230, "lb"),
  33123. name: "Fuller",
  33124. image: {
  33125. source: "./media/characters/noraly/fuller.svg",
  33126. extra: 1114/1059,
  33127. bottom: 35/1149
  33128. }
  33129. },
  33130. fullest: {
  33131. height: math.unit(5 + 2/12, "feet"),
  33132. weight: math.unit(300, "lb"),
  33133. name: "Fullest",
  33134. image: {
  33135. source: "./media/characters/noraly/fullest.svg",
  33136. extra: 1114/1059,
  33137. bottom: 35/1149
  33138. }
  33139. },
  33140. },
  33141. [
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(5 + 2/12, "feet"),
  33145. default: true
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33151. {
  33152. front: {
  33153. height: math.unit(5 + 2/12, "feet"),
  33154. weight: math.unit(210, "lb"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/pera/front.svg",
  33158. extra: 1560/1531,
  33159. bottom: 165/1725
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(5 + 2/12, "feet"),
  33164. weight: math.unit(210, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/pera/back.svg",
  33168. extra: 1523/1493,
  33169. bottom: 152/1675
  33170. }
  33171. },
  33172. dick: {
  33173. height: math.unit(2.4, "feet"),
  33174. name: "Dick",
  33175. image: {
  33176. source: "./media/characters/pera/dick.svg"
  33177. }
  33178. },
  33179. },
  33180. [
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(5 + 2/12, "feet"),
  33184. default: true
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(12, "feet"),
  33193. weight: math.unit(3200, "lb"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/julian/front.svg",
  33197. extra: 2962/2701,
  33198. bottom: 184/3146
  33199. }
  33200. },
  33201. maw: {
  33202. height: math.unit(5.35, "feet"),
  33203. name: "Maw",
  33204. image: {
  33205. source: "./media/characters/julian/maw.svg"
  33206. }
  33207. },
  33208. paw: {
  33209. height: math.unit(3.07, "feet"),
  33210. name: "Paw",
  33211. image: {
  33212. source: "./media/characters/julian/paw.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Default",
  33219. height: math.unit(12, "feet"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Big",
  33224. height: math.unit(50, "feet")
  33225. },
  33226. {
  33227. name: "Really Big",
  33228. height: math.unit(1, "mile")
  33229. },
  33230. {
  33231. name: "Extremely Big",
  33232. height: math.unit(100, "miles")
  33233. },
  33234. {
  33235. name: "Planet Hugger",
  33236. height: math.unit(200, "megameters")
  33237. },
  33238. {
  33239. name: "Unreasonably Big",
  33240. height: math.unit(1e300, "meters")
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33246. {
  33247. solgooleo: {
  33248. height: math.unit(4, "meters"),
  33249. weight: math.unit(6000*1.5, "kg"),
  33250. volume: math.unit(6000, "liters"),
  33251. name: "Solgooleo",
  33252. image: {
  33253. source: "./media/characters/pi/solgooleo.svg",
  33254. extra: 388/331,
  33255. bottom: 29/417
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Normal",
  33262. height: math.unit(4, "meters"),
  33263. default: true
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33269. {
  33270. front: {
  33271. height: math.unit(8, "feet"),
  33272. weight: math.unit(4, "tons"),
  33273. name: "Front",
  33274. image: {
  33275. source: "./media/characters/shaun/front.svg",
  33276. extra: 503/495,
  33277. bottom: 20/523
  33278. }
  33279. },
  33280. back: {
  33281. height: math.unit(8, "feet"),
  33282. weight: math.unit(4, "tons"),
  33283. name: "Back",
  33284. image: {
  33285. source: "./media/characters/shaun/back.svg",
  33286. extra: 487/480,
  33287. bottom: 20/507
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Lorg",
  33294. height: math.unit(8, "feet"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33301. {
  33302. frontAnthro: {
  33303. height: math.unit(7, "feet"),
  33304. name: "Front",
  33305. image: {
  33306. source: "./media/characters/sini/front-anthro.svg",
  33307. extra: 726/678,
  33308. bottom: 35/761
  33309. },
  33310. form: "anthro",
  33311. default: true
  33312. },
  33313. backAnthro: {
  33314. height: math.unit(7, "feet"),
  33315. name: "Back",
  33316. image: {
  33317. source: "./media/characters/sini/back-anthro.svg",
  33318. extra: 743/701,
  33319. bottom: 12/755
  33320. },
  33321. form: "anthro",
  33322. },
  33323. frontAnthroNsfw: {
  33324. height: math.unit(7, "feet"),
  33325. name: "Front (NSFW)",
  33326. image: {
  33327. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33328. extra: 726/678,
  33329. bottom: 35/761
  33330. },
  33331. form: "anthro"
  33332. },
  33333. backAnthroNsfw: {
  33334. height: math.unit(7, "feet"),
  33335. name: "Back (NSFW)",
  33336. image: {
  33337. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33338. extra: 743/701,
  33339. bottom: 12/755
  33340. },
  33341. form: "anthro",
  33342. },
  33343. mawAnthro: {
  33344. height: math.unit(2.14, "feet"),
  33345. name: "Maw",
  33346. image: {
  33347. source: "./media/characters/sini/maw-anthro.svg"
  33348. },
  33349. form: "anthro"
  33350. },
  33351. dick: {
  33352. height: math.unit(1.45, "feet"),
  33353. name: "Dick",
  33354. image: {
  33355. source: "./media/characters/sini/dick-anthro.svg"
  33356. },
  33357. form: "anthro"
  33358. },
  33359. feral: {
  33360. height: math.unit(16, "feet"),
  33361. name: "Feral",
  33362. image: {
  33363. source: "./media/characters/sini/feral.svg",
  33364. extra: 814/605,
  33365. bottom: 11/825
  33366. },
  33367. form: "feral",
  33368. default: true
  33369. },
  33370. feralNsfw: {
  33371. height: math.unit(16, "feet"),
  33372. name: "Feral (NSFW)",
  33373. image: {
  33374. source: "./media/characters/sini/feral-nsfw.svg",
  33375. extra: 814/605,
  33376. bottom: 11/825
  33377. },
  33378. form: "feral"
  33379. },
  33380. mawFeral: {
  33381. height: math.unit(5.66, "feet"),
  33382. name: "Maw",
  33383. image: {
  33384. source: "./media/characters/sini/maw-feral.svg"
  33385. },
  33386. form: "feral",
  33387. },
  33388. pawFeral: {
  33389. height: math.unit(5.17, "feet"),
  33390. name: "Paw",
  33391. image: {
  33392. source: "./media/characters/sini/paw-feral.svg"
  33393. },
  33394. form: "feral",
  33395. },
  33396. rumpFeral: {
  33397. height: math.unit(13.11, "feet"),
  33398. name: "Rump",
  33399. image: {
  33400. source: "./media/characters/sini/rump-feral.svg"
  33401. },
  33402. form: "feral",
  33403. },
  33404. dickFeral: {
  33405. height: math.unit(1, "feet"),
  33406. name: "Dick",
  33407. image: {
  33408. source: "./media/characters/sini/dick-feral.svg"
  33409. },
  33410. form: "feral",
  33411. },
  33412. eyeFeral: {
  33413. height: math.unit(1.23, "feet"),
  33414. name: "Eye",
  33415. image: {
  33416. source: "./media/characters/sini/eye-feral.svg"
  33417. },
  33418. form: "feral",
  33419. },
  33420. },
  33421. [
  33422. {
  33423. name: "Normal",
  33424. height: math.unit(7, "feet"),
  33425. default: true,
  33426. form: "anthro"
  33427. },
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(16, "feet"),
  33431. default: true,
  33432. form: "feral"
  33433. },
  33434. ],
  33435. {
  33436. "anthro": {
  33437. name: "Anthro",
  33438. default: true
  33439. },
  33440. "feral": {
  33441. name: "Feral",
  33442. }
  33443. }
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33447. {
  33448. side: {
  33449. height: math.unit(13, "meters"),
  33450. weight: math.unit(9072, "kg"),
  33451. name: "Side",
  33452. image: {
  33453. source: "./media/characters/raylldo/side.svg",
  33454. extra: 403/344,
  33455. bottom: 42/445
  33456. }
  33457. },
  33458. leaping: {
  33459. height: math.unit(12.3, "meters"),
  33460. weight: math.unit(9072, "kg"),
  33461. name: "Leaping",
  33462. image: {
  33463. source: "./media/characters/raylldo/leaping.svg",
  33464. extra: 470/249,
  33465. bottom: 13/483
  33466. }
  33467. },
  33468. flying: {
  33469. height: math.unit(18, "meters"),
  33470. weight: math.unit(9072, "kg"),
  33471. name: "Flying",
  33472. image: {
  33473. source: "./media/characters/raylldo/flying.svg"
  33474. }
  33475. },
  33476. head: {
  33477. height: math.unit(5.85, "meters"),
  33478. name: "Head",
  33479. image: {
  33480. source: "./media/characters/raylldo/head.svg"
  33481. }
  33482. },
  33483. maw: {
  33484. height: math.unit(5.32, "meters"),
  33485. name: "Maw",
  33486. image: {
  33487. source: "./media/characters/raylldo/maw.svg"
  33488. }
  33489. },
  33490. eye: {
  33491. height: math.unit(0.54, "meters"),
  33492. name: "Eye",
  33493. image: {
  33494. source: "./media/characters/raylldo/eye.svg"
  33495. }
  33496. },
  33497. },
  33498. [
  33499. {
  33500. name: "Normal",
  33501. height: math.unit(13, "meters"),
  33502. default: true
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33508. {
  33509. anthroFront: {
  33510. height: math.unit(9, "feet"),
  33511. weight: math.unit(600, "lb"),
  33512. name: "Anthro (Front)",
  33513. image: {
  33514. source: "./media/characters/glint/anthro-front.svg",
  33515. extra: 1097/1018,
  33516. bottom: 28/1125
  33517. }
  33518. },
  33519. anthroBack: {
  33520. height: math.unit(9, "feet"),
  33521. weight: math.unit(600, "lb"),
  33522. name: "Anthro (Back)",
  33523. image: {
  33524. source: "./media/characters/glint/anthro-back.svg",
  33525. extra: 1154/997,
  33526. bottom: 36/1190
  33527. }
  33528. },
  33529. feral: {
  33530. height: math.unit(11, "feet"),
  33531. weight: math.unit(50000, "lb"),
  33532. name: "Feral",
  33533. image: {
  33534. source: "./media/characters/glint/feral.svg",
  33535. extra: 3035/1585,
  33536. bottom: 1169/4204
  33537. }
  33538. },
  33539. dickAnthro: {
  33540. height: math.unit(0.7, "meters"),
  33541. name: "Dick (Anthro)",
  33542. image: {
  33543. source: "./media/characters/glint/dick-anthro.svg"
  33544. }
  33545. },
  33546. dickFeral: {
  33547. height: math.unit(2.65, "meters"),
  33548. name: "Dick (Feral)",
  33549. image: {
  33550. source: "./media/characters/glint/dick-feral.svg"
  33551. }
  33552. },
  33553. slitHidden: {
  33554. height: math.unit(5.85, "meters"),
  33555. name: "Slit (Hidden)",
  33556. image: {
  33557. source: "./media/characters/glint/slit-hidden.svg"
  33558. }
  33559. },
  33560. slitErect: {
  33561. height: math.unit(5.85, "meters"),
  33562. name: "Slit (Erect)",
  33563. image: {
  33564. source: "./media/characters/glint/slit-erect.svg"
  33565. }
  33566. },
  33567. mawAnthro: {
  33568. height: math.unit(0.63, "meters"),
  33569. name: "Maw (Anthro)",
  33570. image: {
  33571. source: "./media/characters/glint/maw.svg"
  33572. }
  33573. },
  33574. mawFeral: {
  33575. height: math.unit(2.89, "meters"),
  33576. name: "Maw (Feral)",
  33577. image: {
  33578. source: "./media/characters/glint/maw.svg"
  33579. }
  33580. },
  33581. },
  33582. [
  33583. {
  33584. name: "Normal",
  33585. height: math.unit(9, "feet"),
  33586. default: true
  33587. },
  33588. ]
  33589. ))
  33590. characterMakers.push(() => makeCharacter(
  33591. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33592. {
  33593. side: {
  33594. height: math.unit(15, "feet"),
  33595. weight: math.unit(5000, "kg"),
  33596. name: "Side",
  33597. image: {
  33598. source: "./media/characters/kairne/side.svg",
  33599. extra: 979/811,
  33600. bottom: 13/992
  33601. }
  33602. },
  33603. front: {
  33604. height: math.unit(15, "feet"),
  33605. weight: math.unit(5000, "kg"),
  33606. name: "Front",
  33607. image: {
  33608. source: "./media/characters/kairne/front.svg",
  33609. extra: 908/814,
  33610. bottom: 26/934
  33611. }
  33612. },
  33613. sideNsfw: {
  33614. height: math.unit(15, "feet"),
  33615. weight: math.unit(5000, "kg"),
  33616. name: "Side (NSFW)",
  33617. image: {
  33618. source: "./media/characters/kairne/side-nsfw.svg",
  33619. extra: 979/811,
  33620. bottom: 13/992
  33621. }
  33622. },
  33623. frontNsfw: {
  33624. height: math.unit(15, "feet"),
  33625. weight: math.unit(5000, "kg"),
  33626. name: "Front (NSFW)",
  33627. image: {
  33628. source: "./media/characters/kairne/front-nsfw.svg",
  33629. extra: 908/814,
  33630. bottom: 26/934
  33631. }
  33632. },
  33633. dickCaged: {
  33634. height: math.unit(0.65, "meters"),
  33635. name: "Dick-caged",
  33636. image: {
  33637. source: "./media/characters/kairne/dick-caged.svg"
  33638. }
  33639. },
  33640. dick: {
  33641. height: math.unit(0.79, "meters"),
  33642. name: "Dick",
  33643. image: {
  33644. source: "./media/characters/kairne/dick.svg"
  33645. }
  33646. },
  33647. genitals: {
  33648. height: math.unit(1.29, "meters"),
  33649. name: "Genitals",
  33650. image: {
  33651. source: "./media/characters/kairne/genitals.svg"
  33652. }
  33653. },
  33654. maw: {
  33655. height: math.unit(1.73, "meters"),
  33656. name: "Maw",
  33657. image: {
  33658. source: "./media/characters/kairne/maw.svg"
  33659. }
  33660. },
  33661. },
  33662. [
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(15, "feet"),
  33666. default: true
  33667. },
  33668. ]
  33669. ))
  33670. characterMakers.push(() => makeCharacter(
  33671. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33672. {
  33673. front: {
  33674. height: math.unit(5 + 8/12, "feet"),
  33675. weight: math.unit(139, "lb"),
  33676. name: "Front",
  33677. image: {
  33678. source: "./media/characters/biscuit-jackal/front.svg",
  33679. extra: 2106/1961,
  33680. bottom: 58/2164
  33681. }
  33682. },
  33683. back: {
  33684. height: math.unit(5 + 8/12, "feet"),
  33685. weight: math.unit(139, "lb"),
  33686. name: "Back",
  33687. image: {
  33688. source: "./media/characters/biscuit-jackal/back.svg",
  33689. extra: 2132/1976,
  33690. bottom: 57/2189
  33691. }
  33692. },
  33693. werejackal: {
  33694. height: math.unit(6 + 3/12, "feet"),
  33695. weight: math.unit(188, "lb"),
  33696. name: "Werejackal",
  33697. image: {
  33698. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33699. extra: 2373/2178,
  33700. bottom: 53/2426
  33701. }
  33702. },
  33703. },
  33704. [
  33705. {
  33706. name: "Normal",
  33707. height: math.unit(5 + 8/12, "feet"),
  33708. default: true
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(140, "cm"),
  33717. weight: math.unit(45, "kg"),
  33718. name: "Front",
  33719. image: {
  33720. source: "./media/characters/tayra-white/front.svg",
  33721. extra: 2229/2192,
  33722. bottom: 75/2304
  33723. }
  33724. },
  33725. },
  33726. [
  33727. {
  33728. name: "Normal",
  33729. height: math.unit(140, "cm"),
  33730. default: true
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(4 + 5/12, "feet"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/scoop/front.svg",
  33742. extra: 1257/1136,
  33743. bottom: 69/1326
  33744. }
  33745. },
  33746. back: {
  33747. height: math.unit(4 + 5/12, "feet"),
  33748. name: "Back",
  33749. image: {
  33750. source: "./media/characters/scoop/back.svg",
  33751. extra: 1321/1152,
  33752. bottom: 32/1353
  33753. }
  33754. },
  33755. maw: {
  33756. height: math.unit(0.68, "feet"),
  33757. name: "Maw",
  33758. image: {
  33759. source: "./media/characters/scoop/maw.svg"
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Really Small",
  33766. height: math.unit(1, "mm")
  33767. },
  33768. {
  33769. name: "Micro",
  33770. height: math.unit(1, "inch")
  33771. },
  33772. {
  33773. name: "Normal",
  33774. height: math.unit(4 + 5/12, "feet"),
  33775. default: true
  33776. },
  33777. {
  33778. name: "Macro",
  33779. height: math.unit(200, "feet")
  33780. },
  33781. {
  33782. name: "Megamacro",
  33783. height: math.unit(3240, "feet")
  33784. },
  33785. {
  33786. name: "Teramacro",
  33787. height: math.unit(2500, "miles")
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(15 + 7/12, "feet"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/saphinara/front.svg",
  33799. extra: 604/546,
  33800. bottom: 19/623
  33801. }
  33802. },
  33803. side: {
  33804. height: math.unit(15 + 7/12, "feet"),
  33805. name: "Side",
  33806. image: {
  33807. source: "./media/characters/saphinara/side.svg",
  33808. extra: 605/547,
  33809. bottom: 6/611
  33810. }
  33811. },
  33812. back: {
  33813. height: math.unit(15 + 7/12, "feet"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/saphinara/back.svg",
  33817. extra: 591/531,
  33818. bottom: 13/604
  33819. }
  33820. },
  33821. frontTail: {
  33822. height: math.unit(15 + 7/12, "feet"),
  33823. name: "Front (Full Tail)",
  33824. image: {
  33825. source: "./media/characters/saphinara/front-tail.svg",
  33826. extra: 748/547,
  33827. bottom: 66/814
  33828. }
  33829. },
  33830. },
  33831. [
  33832. {
  33833. name: "Normal",
  33834. height: math.unit(15 + 7/12, "feet"),
  33835. default: true
  33836. },
  33837. {
  33838. name: "Angry",
  33839. height: math.unit(30 + 6/12, "feet")
  33840. },
  33841. {
  33842. name: "Enraged",
  33843. height: math.unit(102 + 1/12, "feet")
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33849. {
  33850. front: {
  33851. height: math.unit(6 + 8/12, "feet"),
  33852. weight: math.unit(300, "lb"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/jrain/front.svg",
  33856. extra: 3039/2865,
  33857. bottom: 399/3438
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(6 + 8/12, "feet"),
  33862. weight: math.unit(300, "lb"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/jrain/back.svg",
  33866. extra: 3089/2938,
  33867. bottom: 172/3261
  33868. }
  33869. },
  33870. head: {
  33871. height: math.unit(2.14, "feet"),
  33872. name: "Head",
  33873. image: {
  33874. source: "./media/characters/jrain/head.svg"
  33875. }
  33876. },
  33877. maw: {
  33878. height: math.unit(1.77, "feet"),
  33879. name: "Maw",
  33880. image: {
  33881. source: "./media/characters/jrain/maw.svg"
  33882. }
  33883. },
  33884. leftHand: {
  33885. height: math.unit(1.1, "feet"),
  33886. name: "Left Hand",
  33887. image: {
  33888. source: "./media/characters/jrain/left-hand.svg"
  33889. }
  33890. },
  33891. rightHand: {
  33892. height: math.unit(1.1, "feet"),
  33893. name: "Right Hand",
  33894. image: {
  33895. source: "./media/characters/jrain/right-hand.svg"
  33896. }
  33897. },
  33898. eye: {
  33899. height: math.unit(0.35, "feet"),
  33900. name: "Eye",
  33901. image: {
  33902. source: "./media/characters/jrain/eye.svg"
  33903. }
  33904. },
  33905. },
  33906. [
  33907. {
  33908. name: "Normal",
  33909. height: math.unit(6 + 8/12, "feet"),
  33910. default: true
  33911. },
  33912. {
  33913. name: "Casually Large",
  33914. height: math.unit(25, "feet")
  33915. },
  33916. {
  33917. name: "Giant",
  33918. height: math.unit(100, "feet")
  33919. },
  33920. {
  33921. name: "Kaiju",
  33922. height: math.unit(300, "feet")
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33928. {
  33929. dragon: {
  33930. height: math.unit(5, "meters"),
  33931. name: "Dragon",
  33932. image: {
  33933. source: "./media/characters/sabrina/dragon.svg",
  33934. extra: 3670 / 2365,
  33935. bottom: 333 / 4003
  33936. }
  33937. },
  33938. gryphon: {
  33939. height: math.unit(3, "meters"),
  33940. name: "Gryphon",
  33941. image: {
  33942. source: "./media/characters/sabrina/gryphon.svg",
  33943. extra: 1576 / 945,
  33944. bottom: 71 / 1647
  33945. }
  33946. },
  33947. snake: {
  33948. height: math.unit(12, "meters"),
  33949. name: "Snake",
  33950. image: {
  33951. source: "./media/characters/sabrina/snake.svg",
  33952. extra: 1758 / 1320,
  33953. bottom: 186 / 1944
  33954. }
  33955. },
  33956. collar: {
  33957. height: math.unit(1.86, "meters"),
  33958. name: "Collar",
  33959. image: {
  33960. source: "./media/characters/sabrina/collar.svg"
  33961. }
  33962. },
  33963. eye: {
  33964. height: math.unit(0.53, "meters"),
  33965. name: "Eye",
  33966. image: {
  33967. source: "./media/characters/sabrina/eye.svg"
  33968. }
  33969. },
  33970. foot: {
  33971. height: math.unit(1.86, "meters"),
  33972. name: "Foot",
  33973. image: {
  33974. source: "./media/characters/sabrina/foot.svg"
  33975. }
  33976. },
  33977. hand: {
  33978. height: math.unit(1.32, "meters"),
  33979. name: "Hand",
  33980. image: {
  33981. source: "./media/characters/sabrina/hand.svg"
  33982. }
  33983. },
  33984. head: {
  33985. height: math.unit(2.44, "meters"),
  33986. name: "Head",
  33987. image: {
  33988. source: "./media/characters/sabrina/head.svg"
  33989. }
  33990. },
  33991. headAngry: {
  33992. height: math.unit(2.44, "meters"),
  33993. name: "Head (Angry))",
  33994. image: {
  33995. source: "./media/characters/sabrina/head-angry.svg"
  33996. }
  33997. },
  33998. maw: {
  33999. height: math.unit(1.65, "meters"),
  34000. name: "Maw",
  34001. image: {
  34002. source: "./media/characters/sabrina/maw.svg"
  34003. }
  34004. },
  34005. spikes: {
  34006. height: math.unit(1.69, "meters"),
  34007. name: "Spikes",
  34008. image: {
  34009. source: "./media/characters/sabrina/spikes.svg"
  34010. }
  34011. },
  34012. stomach: {
  34013. height: math.unit(1.15, "meters"),
  34014. name: "Stomach",
  34015. image: {
  34016. source: "./media/characters/sabrina/stomach.svg"
  34017. }
  34018. },
  34019. tongue: {
  34020. height: math.unit(1.27, "meters"),
  34021. name: "Tongue",
  34022. image: {
  34023. source: "./media/characters/sabrina/tongue.svg"
  34024. }
  34025. },
  34026. wingDorsal: {
  34027. height: math.unit(4.85, "meters"),
  34028. name: "Wing (Dorsal)",
  34029. image: {
  34030. source: "./media/characters/sabrina/wing-dorsal.svg"
  34031. }
  34032. },
  34033. wingVentral: {
  34034. height: math.unit(4.85, "meters"),
  34035. name: "Wing (Ventral)",
  34036. image: {
  34037. source: "./media/characters/sabrina/wing-ventral.svg"
  34038. }
  34039. },
  34040. },
  34041. [
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(5, "meters"),
  34045. default: true
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34051. {
  34052. frontMaid: {
  34053. height: math.unit(5 + 5/12, "feet"),
  34054. weight: math.unit(130, "lb"),
  34055. name: "Front (Maid)",
  34056. image: {
  34057. source: "./media/characters/midnight-tales/front-maid.svg",
  34058. extra: 489/454,
  34059. bottom: 61/550
  34060. }
  34061. },
  34062. frontFormal: {
  34063. height: math.unit(5 + 5/12, "feet"),
  34064. weight: math.unit(130, "lb"),
  34065. name: "Front (Formal)",
  34066. image: {
  34067. source: "./media/characters/midnight-tales/front-formal.svg",
  34068. extra: 489/454,
  34069. bottom: 61/550
  34070. }
  34071. },
  34072. back: {
  34073. height: math.unit(5 + 5/12, "feet"),
  34074. weight: math.unit(130, "lb"),
  34075. name: "Back",
  34076. image: {
  34077. source: "./media/characters/midnight-tales/back.svg",
  34078. extra: 498/456,
  34079. bottom: 33/531
  34080. }
  34081. },
  34082. frontBeast: {
  34083. height: math.unit(40, "feet"),
  34084. weight: math.unit(64000, "lb"),
  34085. name: "Front (Beast)",
  34086. image: {
  34087. source: "./media/characters/midnight-tales/front-beast.svg",
  34088. extra: 927/860,
  34089. bottom: 53/980
  34090. }
  34091. },
  34092. backBeast: {
  34093. height: math.unit(40, "feet"),
  34094. weight: math.unit(64000, "lb"),
  34095. name: "Back (Beast)",
  34096. image: {
  34097. source: "./media/characters/midnight-tales/back-beast.svg",
  34098. extra: 929/855,
  34099. bottom: 16/945
  34100. }
  34101. },
  34102. footBeast: {
  34103. height: math.unit(6.7, "feet"),
  34104. name: "Foot (Beast)",
  34105. image: {
  34106. source: "./media/characters/midnight-tales/foot-beast.svg"
  34107. }
  34108. },
  34109. headBeast: {
  34110. height: math.unit(8, "feet"),
  34111. name: "Head (Beast)",
  34112. image: {
  34113. source: "./media/characters/midnight-tales/head-beast.svg"
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(5 + 5 / 12, "feet"),
  34121. default: true
  34122. },
  34123. {
  34124. name: "Macro",
  34125. height: math.unit(25, "feet")
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(5 + 10/12, "feet"),
  34134. name: "Front",
  34135. image: {
  34136. source: "./media/characters/argon/front.svg",
  34137. extra: 2009/1935,
  34138. bottom: 118/2127
  34139. }
  34140. },
  34141. back: {
  34142. height: math.unit(5 + 10/12, "feet"),
  34143. name: "Back",
  34144. image: {
  34145. source: "./media/characters/argon/back.svg",
  34146. extra: 2047/1992,
  34147. bottom: 20/2067
  34148. }
  34149. },
  34150. frontDressed: {
  34151. height: math.unit(5 + 10/12, "feet"),
  34152. name: "Front (Dressed)",
  34153. image: {
  34154. source: "./media/characters/argon/front-dressed.svg",
  34155. extra: 2009/1935,
  34156. bottom: 118/2127
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(5 + 10/12, "feet"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(8 + 6/12, "feet"),
  34173. weight: math.unit(1150, "lb"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/kichi/front.svg",
  34177. extra: 1267/1164,
  34178. bottom: 61/1328
  34179. }
  34180. },
  34181. back: {
  34182. height: math.unit(8 + 6/12, "feet"),
  34183. weight: math.unit(1150, "lb"),
  34184. name: "Back",
  34185. image: {
  34186. source: "./media/characters/kichi/back.svg",
  34187. extra: 1273/1166,
  34188. bottom: 33/1306
  34189. }
  34190. },
  34191. },
  34192. [
  34193. {
  34194. name: "Normal",
  34195. height: math.unit(8 + 6/12, "feet"),
  34196. default: true
  34197. },
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34202. {
  34203. front: {
  34204. height: math.unit(6, "feet"),
  34205. weight: math.unit(210, "lb"),
  34206. name: "Front",
  34207. image: {
  34208. source: "./media/characters/manetel-greyscale/front.svg",
  34209. extra: 350/312,
  34210. bottom: 8/358
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Micro",
  34217. height: math.unit(2, "inches")
  34218. },
  34219. {
  34220. name: "Normal",
  34221. height: math.unit(6, "feet"),
  34222. default: true
  34223. },
  34224. {
  34225. name: "Minimacro",
  34226. height: math.unit(17, "feet")
  34227. },
  34228. {
  34229. name: "Macro",
  34230. height: math.unit(117, "feet")
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34236. {
  34237. side: {
  34238. height: math.unit(5 + 1/12, "feet"),
  34239. weight: math.unit(418, "lb"),
  34240. name: "Side",
  34241. image: {
  34242. source: "./media/characters/softpurr/side.svg",
  34243. extra: 1993/1945,
  34244. bottom: 134/2127
  34245. }
  34246. },
  34247. front: {
  34248. height: math.unit(5 + 1/12, "feet"),
  34249. weight: math.unit(418, "lb"),
  34250. name: "Front",
  34251. image: {
  34252. source: "./media/characters/softpurr/front.svg",
  34253. extra: 1950/1856,
  34254. bottom: 174/2124
  34255. }
  34256. },
  34257. paw: {
  34258. height: math.unit(1, "feet"),
  34259. name: "Paw",
  34260. image: {
  34261. source: "./media/characters/softpurr/paw.svg"
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(5 + 1/12, "feet"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34275. {
  34276. front: {
  34277. height: math.unit(260, "meters"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/anahita/front.svg",
  34281. extra: 665/635,
  34282. bottom: 89/754
  34283. }
  34284. },
  34285. },
  34286. [
  34287. {
  34288. name: "Macro",
  34289. height: math.unit(260, "meters"),
  34290. default: true
  34291. },
  34292. ]
  34293. ))
  34294. characterMakers.push(() => makeCharacter(
  34295. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34296. {
  34297. front: {
  34298. height: math.unit(4 + 10/12, "feet"),
  34299. weight: math.unit(160, "lb"),
  34300. name: "Front",
  34301. image: {
  34302. source: "./media/characters/chip-mouse/front.svg",
  34303. extra: 3528/3408,
  34304. bottom: 0/3528
  34305. }
  34306. },
  34307. frontNsfw: {
  34308. height: math.unit(4 + 10/12, "feet"),
  34309. weight: math.unit(160, "lb"),
  34310. name: "Front (NSFW)",
  34311. image: {
  34312. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34313. extra: 3528/3408,
  34314. bottom: 0/3528
  34315. }
  34316. },
  34317. },
  34318. [
  34319. {
  34320. name: "Normal",
  34321. height: math.unit(4 + 10/12, "feet"),
  34322. default: true
  34323. },
  34324. ]
  34325. ))
  34326. characterMakers.push(() => makeCharacter(
  34327. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34328. {
  34329. side: {
  34330. height: math.unit(10, "feet"),
  34331. weight: math.unit(14000, "lb"),
  34332. name: "Side",
  34333. image: {
  34334. source: "./media/characters/kremm/side.svg",
  34335. extra: 1390/1053,
  34336. bottom: 90/1480
  34337. }
  34338. },
  34339. gut: {
  34340. height: math.unit(5.8, "feet"),
  34341. name: "Gut",
  34342. image: {
  34343. source: "./media/characters/kremm/gut.svg"
  34344. }
  34345. },
  34346. ass: {
  34347. height: math.unit(6.1, "feet"),
  34348. name: "Ass",
  34349. image: {
  34350. source: "./media/characters/kremm/ass.svg"
  34351. }
  34352. },
  34353. jaws: {
  34354. height: math.unit(2.2, "feet"),
  34355. name: "Jaws",
  34356. image: {
  34357. source: "./media/characters/kremm/jaws.svg"
  34358. }
  34359. },
  34360. dick: {
  34361. height: math.unit(4.26, "feet"),
  34362. name: "Dick",
  34363. image: {
  34364. source: "./media/characters/kremm/dick.svg"
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(10, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(30, "stories"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/kai/front.svg",
  34384. extra: 1892/1718,
  34385. bottom: 162/2054
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Macro",
  34392. height: math.unit(30, "stories"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(6 + 4/12, "feet"),
  34402. weight: math.unit(145, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/sykes/front.svg",
  34406. extra: 1321 / 1187,
  34407. bottom: 66 / 1387
  34408. }
  34409. },
  34410. back: {
  34411. height: math.unit(6 + 4/12, "feet"),
  34412. weight: math.unit(145, "lb"),
  34413. name: "Back",
  34414. image: {
  34415. source: "./media/characters/sykes/back.svg",
  34416. extra: 1326/1181,
  34417. bottom: 31/1357
  34418. }
  34419. },
  34420. handBack: {
  34421. height: math.unit(0.9, "feet"),
  34422. name: "Hand (Back)",
  34423. image: {
  34424. source: "./media/characters/sykes/hand-back.svg"
  34425. }
  34426. },
  34427. handFront: {
  34428. height: math.unit(0.839, "feet"),
  34429. name: "Hand (Front)",
  34430. image: {
  34431. source: "./media/characters/sykes/hand-front.svg"
  34432. }
  34433. },
  34434. leftFoot: {
  34435. height: math.unit(1.2, "feet"),
  34436. name: "Foot (Left)",
  34437. image: {
  34438. source: "./media/characters/sykes/foot-left.svg"
  34439. }
  34440. },
  34441. rightFoot: {
  34442. height: math.unit(1.2, "feet"),
  34443. name: "Foot (Right)",
  34444. image: {
  34445. source: "./media/characters/sykes/foot-right.svg"
  34446. }
  34447. },
  34448. maw: {
  34449. height: math.unit(1.93, "feet"),
  34450. name: "Maw",
  34451. image: {
  34452. source: "./media/characters/sykes/maw.svg"
  34453. }
  34454. },
  34455. teeth: {
  34456. height: math.unit(0.51, "feet"),
  34457. name: "Teeth",
  34458. image: {
  34459. source: "./media/characters/sykes/teeth.svg"
  34460. }
  34461. },
  34462. tongue: {
  34463. height: math.unit(2.13, "feet"),
  34464. name: "Tongue",
  34465. image: {
  34466. source: "./media/characters/sykes/tongue.svg"
  34467. }
  34468. },
  34469. uvula: {
  34470. height: math.unit(0.16, "feet"),
  34471. name: "Uvula",
  34472. image: {
  34473. source: "./media/characters/sykes/uvula.svg"
  34474. }
  34475. },
  34476. collar: {
  34477. height: math.unit(0.287, "feet"),
  34478. name: "Collar",
  34479. image: {
  34480. source: "./media/characters/sykes/collar.svg"
  34481. }
  34482. },
  34483. },
  34484. [
  34485. {
  34486. name: "Shrunken",
  34487. height: math.unit(5, "inches")
  34488. },
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(6 + 4 / 12, "feet"),
  34492. default: true
  34493. },
  34494. {
  34495. name: "Big",
  34496. height: math.unit(15, "feet")
  34497. },
  34498. ]
  34499. ))
  34500. characterMakers.push(() => makeCharacter(
  34501. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34502. {
  34503. front: {
  34504. height: math.unit(5 + 8/12, "feet"),
  34505. weight: math.unit(190, "lb"),
  34506. name: "Front",
  34507. image: {
  34508. source: "./media/characters/oven-otter/front.svg",
  34509. extra: 1809/1740,
  34510. bottom: 181/1990
  34511. }
  34512. },
  34513. back: {
  34514. height: math.unit(5 + 8/12, "feet"),
  34515. weight: math.unit(190, "lb"),
  34516. name: "Back",
  34517. image: {
  34518. source: "./media/characters/oven-otter/back.svg",
  34519. extra: 1709/1635,
  34520. bottom: 118/1827
  34521. }
  34522. },
  34523. hand: {
  34524. height: math.unit(1.07, "feet"),
  34525. name: "Hand",
  34526. image: {
  34527. source: "./media/characters/oven-otter/hand.svg"
  34528. }
  34529. },
  34530. beans: {
  34531. height: math.unit(1.74, "feet"),
  34532. name: "Beans",
  34533. image: {
  34534. source: "./media/characters/oven-otter/beans.svg"
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Micro",
  34541. height: math.unit(0.5, "inches")
  34542. },
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(5 + 8/12, "feet"),
  34546. default: true
  34547. },
  34548. {
  34549. name: "Macro",
  34550. height: math.unit(250, "feet")
  34551. },
  34552. {
  34553. name: "Really High",
  34554. height: math.unit(420, "feet")
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(5, "meters"),
  34563. weight: math.unit(292000000000000, "kg"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/devourer/front.svg",
  34567. extra: 1800/1733,
  34568. bottom: 211/2011
  34569. }
  34570. },
  34571. maw: {
  34572. height: math.unit(1.1, "meter"),
  34573. name: "Maw",
  34574. image: {
  34575. source: "./media/characters/devourer/maw.svg"
  34576. }
  34577. },
  34578. },
  34579. [
  34580. {
  34581. name: "Small",
  34582. height: math.unit(3, "meters")
  34583. },
  34584. {
  34585. name: "Large",
  34586. height: math.unit(5, "meters"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34593. {
  34594. front: {
  34595. height: math.unit(6, "feet"),
  34596. weight: math.unit(400, "lb"),
  34597. name: "Front",
  34598. image: {
  34599. source: "./media/characters/ellarby/front.svg",
  34600. extra: 1909/1763,
  34601. bottom: 80/1989
  34602. }
  34603. },
  34604. back: {
  34605. height: math.unit(6, "feet"),
  34606. weight: math.unit(400, "lb"),
  34607. name: "Back",
  34608. image: {
  34609. source: "./media/characters/ellarby/back.svg",
  34610. extra: 1914/1784,
  34611. bottom: 172/2086
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Mischief",
  34618. height: math.unit(18, "inches")
  34619. },
  34620. {
  34621. name: "Trouble",
  34622. height: math.unit(12, "feet")
  34623. },
  34624. {
  34625. name: "Havoc",
  34626. height: math.unit(200, "feet"),
  34627. default: true
  34628. },
  34629. {
  34630. name: "Pandemonium",
  34631. height: math.unit(1, "mile")
  34632. },
  34633. {
  34634. name: "Catastrophe",
  34635. height: math.unit(100, "miles")
  34636. },
  34637. ]
  34638. ))
  34639. characterMakers.push(() => makeCharacter(
  34640. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34641. {
  34642. front: {
  34643. height: math.unit(4.7, "meters"),
  34644. weight: math.unit(6500, "kg"),
  34645. name: "Front",
  34646. image: {
  34647. source: "./media/characters/vex/front.svg",
  34648. extra: 1288/1140,
  34649. bottom: 100/1388
  34650. }
  34651. },
  34652. },
  34653. [
  34654. {
  34655. name: "Normal",
  34656. height: math.unit(4.7, "meters"),
  34657. default: true
  34658. },
  34659. ]
  34660. ))
  34661. characterMakers.push(() => makeCharacter(
  34662. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34663. {
  34664. normal: {
  34665. height: math.unit(6, "feet"),
  34666. weight: math.unit(350, "lb"),
  34667. name: "Normal",
  34668. image: {
  34669. source: "./media/characters/teshy/normal.svg",
  34670. extra: 1795/1735,
  34671. bottom: 16/1811
  34672. }
  34673. },
  34674. monsterFront: {
  34675. height: math.unit(12, "feet"),
  34676. weight: math.unit(4700, "lb"),
  34677. name: "Monster (Front)",
  34678. image: {
  34679. source: "./media/characters/teshy/monster-front.svg",
  34680. extra: 2042/2034,
  34681. bottom: 128/2170
  34682. }
  34683. },
  34684. monsterSide: {
  34685. height: math.unit(12, "feet"),
  34686. weight: math.unit(4700, "lb"),
  34687. name: "Monster (Side)",
  34688. image: {
  34689. source: "./media/characters/teshy/monster-side.svg",
  34690. extra: 2067/2056,
  34691. bottom: 70/2137
  34692. }
  34693. },
  34694. monsterBack: {
  34695. height: math.unit(12, "feet"),
  34696. weight: math.unit(4700, "lb"),
  34697. name: "Monster (Back)",
  34698. image: {
  34699. source: "./media/characters/teshy/monster-back.svg",
  34700. extra: 1921/1914,
  34701. bottom: 171/2092
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(6, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(6, "feet"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/ramey/front.svg",
  34721. extra: 790/787,
  34722. bottom: 27/817
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(6, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(5 + 5/12, "feet"),
  34739. weight: math.unit(120, "lb"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/phirae/front.svg",
  34743. extra: 2491/2436,
  34744. bottom: 38/2529
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Normal",
  34751. height: math.unit(5 + 5/12, "feet"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34758. {
  34759. front: {
  34760. height: math.unit(5 + 3/12, "feet"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/stagglas/front.svg",
  34764. extra: 962/882,
  34765. bottom: 53/1015
  34766. }
  34767. },
  34768. feral: {
  34769. height: math.unit(335, "cm"),
  34770. name: "Feral",
  34771. image: {
  34772. source: "./media/characters/stagglas/feral.svg",
  34773. extra: 1732/1090,
  34774. bottom: 48/1780
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(5 + 3/12, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(5 + 4/12, "feet"),
  34791. weight: math.unit(145, "lb"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/starra/front.svg",
  34795. extra: 1790/1691,
  34796. bottom: 91/1881
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(5 + 4/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(2.2, "meters"),
  34813. name: "Front",
  34814. image: {
  34815. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34816. extra: 1194/1005,
  34817. bottom: 25/1219
  34818. }
  34819. },
  34820. },
  34821. [
  34822. {
  34823. name: "Normal",
  34824. height: math.unit(2.2, "meters"),
  34825. default: true
  34826. },
  34827. ]
  34828. ))
  34829. characterMakers.push(() => makeCharacter(
  34830. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34831. {
  34832. side: {
  34833. height: math.unit(8 + 2/12, "feet"),
  34834. weight: math.unit(1240, "lb"),
  34835. name: "Side",
  34836. image: {
  34837. source: "./media/characters/mika-valentine/side.svg",
  34838. extra: 2670/2501,
  34839. bottom: 250/2920
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(8 + 2/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(7 + 2/12, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/xoltol/front.svg",
  34859. extra: 2212/2124,
  34860. bottom: 84/2296
  34861. }
  34862. },
  34863. side: {
  34864. height: math.unit(7 + 2/12, "feet"),
  34865. name: "Side",
  34866. image: {
  34867. source: "./media/characters/xoltol/side.svg",
  34868. extra: 2273/2197,
  34869. bottom: 26/2299
  34870. }
  34871. },
  34872. hand: {
  34873. height: math.unit(2.5, "feet"),
  34874. name: "Hand",
  34875. image: {
  34876. source: "./media/characters/xoltol/hand.svg"
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Small-ish",
  34883. height: math.unit(5 + 11/12, "feet")
  34884. },
  34885. {
  34886. name: "Normal",
  34887. height: math.unit(7 + 2/12, "feet")
  34888. },
  34889. {
  34890. name: "\"Macro\"",
  34891. height: math.unit(14 + 9/12, "feet"),
  34892. default: true
  34893. },
  34894. {
  34895. name: "Alternate Height",
  34896. height: math.unit(20, "feet")
  34897. },
  34898. {
  34899. name: "Actually Macro",
  34900. height: math.unit(100, "feet")
  34901. },
  34902. ]
  34903. ))
  34904. characterMakers.push(() => makeCharacter(
  34905. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34906. {
  34907. front: {
  34908. height: math.unit(5 + 2/12, "feet"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/kotetsu-redwood/front.svg",
  34912. extra: 1053/942,
  34913. bottom: 60/1113
  34914. }
  34915. },
  34916. },
  34917. [
  34918. {
  34919. name: "Normal",
  34920. height: math.unit(5 + 2/12, "feet"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(2.4, "meters"),
  34930. weight: math.unit(125, "kg"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/lilith/front.svg",
  34934. extra: 1590/1513,
  34935. bottom: 203/1793
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Humanoid",
  34942. height: math.unit(2.4, "meters")
  34943. },
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(6, "meters"),
  34947. default: true
  34948. },
  34949. {
  34950. name: "Largest",
  34951. height: math.unit(55, "meters")
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(8 + 4/12, "feet"),
  34960. weight: math.unit(535, "lb"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/beh'kah-bolger/front.svg",
  34964. extra: 1660/1603,
  34965. bottom: 37/1697
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(8 + 4/12, "feet"),
  34973. default: true
  34974. },
  34975. {
  34976. name: "Kaiju",
  34977. height: math.unit(250, "feet")
  34978. },
  34979. {
  34980. name: "Still Growing",
  34981. height: math.unit(10, "miles")
  34982. },
  34983. {
  34984. name: "Continental",
  34985. height: math.unit(5000, "miles")
  34986. },
  34987. {
  34988. name: "Final Form",
  34989. height: math.unit(2500000, "miles")
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(7 + 2/12, "feet"),
  34998. weight: math.unit(230, "kg"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/tatyana-milewska/front.svg",
  35002. extra: 1199/1150,
  35003. bottom: 86/1285
  35004. }
  35005. },
  35006. },
  35007. [
  35008. {
  35009. name: "Normal",
  35010. height: math.unit(7 + 2/12, "feet"),
  35011. default: true
  35012. },
  35013. {
  35014. name: "Big",
  35015. height: math.unit(12, "feet")
  35016. },
  35017. {
  35018. name: "Minimacro",
  35019. height: math.unit(20, "feet")
  35020. },
  35021. {
  35022. name: "Macro",
  35023. height: math.unit(120, "feet")
  35024. },
  35025. ]
  35026. ))
  35027. characterMakers.push(() => makeCharacter(
  35028. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35029. {
  35030. front: {
  35031. height: math.unit(7 + 8/12, "feet"),
  35032. weight: math.unit(152, "kg"),
  35033. name: "Front",
  35034. image: {
  35035. source: "./media/characters/helen-arri/front.svg",
  35036. extra: 440/423,
  35037. bottom: 14/454
  35038. }
  35039. },
  35040. back: {
  35041. height: math.unit(7 + 8/12, "feet"),
  35042. weight: math.unit(152, "kg"),
  35043. name: "Back",
  35044. image: {
  35045. source: "./media/characters/helen-arri/back.svg",
  35046. extra: 443/426,
  35047. bottom: 8/451
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(7 + 8/12, "feet"),
  35055. default: true
  35056. },
  35057. {
  35058. name: "Big",
  35059. height: math.unit(14, "feet")
  35060. },
  35061. {
  35062. name: "Minimacro",
  35063. height: math.unit(24, "feet")
  35064. },
  35065. {
  35066. name: "Macro",
  35067. height: math.unit(140, "feet")
  35068. },
  35069. ]
  35070. ))
  35071. characterMakers.push(() => makeCharacter(
  35072. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35073. {
  35074. front: {
  35075. height: math.unit(6, "meters"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/ehanu-rehu/front.svg",
  35079. extra: 1800/1800,
  35080. bottom: 59/1859
  35081. }
  35082. },
  35083. },
  35084. [
  35085. {
  35086. name: "Normal",
  35087. height: math.unit(6, "meters"),
  35088. default: true
  35089. },
  35090. ]
  35091. ))
  35092. characterMakers.push(() => makeCharacter(
  35093. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35094. {
  35095. front: {
  35096. height: math.unit(7 + 3/12, "feet"),
  35097. name: "Front",
  35098. image: {
  35099. source: "./media/characters/renholder/front.svg",
  35100. extra: 3096/2960,
  35101. bottom: 250/3346
  35102. }
  35103. },
  35104. },
  35105. [
  35106. {
  35107. name: "Normal Bat",
  35108. height: math.unit(7 + 3/12, "feet"),
  35109. default: true
  35110. },
  35111. {
  35112. name: "Slightly Tall Bat",
  35113. height: math.unit(100, "feet")
  35114. },
  35115. {
  35116. name: "Big Bat",
  35117. height: math.unit(1000, "feet")
  35118. },
  35119. {
  35120. name: "City-Sized Bat",
  35121. height: math.unit(200000, "feet")
  35122. },
  35123. {
  35124. name: "Bigger Bat",
  35125. height: math.unit(10000, "miles")
  35126. },
  35127. {
  35128. name: "Solar Sized Bat",
  35129. height: math.unit(100, "AU")
  35130. },
  35131. {
  35132. name: "Galactic Bat",
  35133. height: math.unit(200000, "lightyears")
  35134. },
  35135. {
  35136. name: "Universally Known Bat",
  35137. height: math.unit(1, "universe")
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(6 + 11/12, "feet"),
  35146. weight: math.unit(250, "lb"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/cookiecat/front.svg",
  35150. extra: 893/827,
  35151. bottom: 14/907
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Micro",
  35158. height: math.unit(3, "inches")
  35159. },
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(6 + 11/12, "feet"),
  35163. default: true
  35164. },
  35165. {
  35166. name: "Macro",
  35167. height: math.unit(100, "feet")
  35168. },
  35169. {
  35170. name: "Macro+",
  35171. height: math.unit(404, "feet")
  35172. },
  35173. {
  35174. name: "Megamacro",
  35175. height: math.unit(165, "miles")
  35176. },
  35177. {
  35178. name: "Planetary",
  35179. height: math.unit(4600, "miles")
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(10 + 3/12, "feet"),
  35188. weight: math.unit(1500, "lb"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/tux-kusanagi/front.svg",
  35192. extra: 944/840,
  35193. bottom: 39/983
  35194. }
  35195. },
  35196. back: {
  35197. height: math.unit(10 + 3/12, "feet"),
  35198. weight: math.unit(1500, "lb"),
  35199. name: "Back",
  35200. image: {
  35201. source: "./media/characters/tux-kusanagi/back.svg",
  35202. extra: 941/842,
  35203. bottom: 28/969
  35204. }
  35205. },
  35206. rump: {
  35207. height: math.unit(5.25, "feet"),
  35208. name: "Rump",
  35209. image: {
  35210. source: "./media/characters/tux-kusanagi/rump.svg"
  35211. }
  35212. },
  35213. beak: {
  35214. height: math.unit(1.54, "feet"),
  35215. name: "Beak",
  35216. image: {
  35217. source: "./media/characters/tux-kusanagi/beak.svg"
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(10 + 3/12, "feet"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(58, "feet"),
  35234. weight: math.unit(200, "tons"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/uzarmazari/front.svg",
  35238. extra: 1575/1455,
  35239. bottom: 152/1727
  35240. }
  35241. },
  35242. back: {
  35243. height: math.unit(58, "feet"),
  35244. weight: math.unit(200, "tons"),
  35245. name: "Back",
  35246. image: {
  35247. source: "./media/characters/uzarmazari/back.svg",
  35248. extra: 1585/1510,
  35249. bottom: 157/1742
  35250. }
  35251. },
  35252. head: {
  35253. height: math.unit(26, "feet"),
  35254. name: "Head",
  35255. image: {
  35256. source: "./media/characters/uzarmazari/head.svg"
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(58, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35270. {
  35271. side: {
  35272. height: math.unit(15, "feet"),
  35273. name: "Side",
  35274. image: {
  35275. source: "./media/characters/akitu/side.svg",
  35276. extra: 1421/1321,
  35277. bottom: 157/1578
  35278. }
  35279. },
  35280. front: {
  35281. height: math.unit(15, "feet"),
  35282. name: "Front",
  35283. image: {
  35284. source: "./media/characters/akitu/front.svg",
  35285. extra: 1435/1326,
  35286. bottom: 232/1667
  35287. }
  35288. },
  35289. },
  35290. [
  35291. {
  35292. name: "Normal",
  35293. height: math.unit(15, "feet"),
  35294. default: true
  35295. },
  35296. ]
  35297. ))
  35298. characterMakers.push(() => makeCharacter(
  35299. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35300. {
  35301. front: {
  35302. height: math.unit(10 + 8/12, "feet"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/azalie-croixland/front.svg",
  35306. extra: 1972/1856,
  35307. bottom: 31/2003
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Original Height",
  35314. height: math.unit(5 + 4/12, "feet")
  35315. },
  35316. {
  35317. name: "Normal Height",
  35318. height: math.unit(10 + 8/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35325. {
  35326. side: {
  35327. height: math.unit(7 + 1/12, "feet"),
  35328. weight: math.unit(245, "lb"),
  35329. name: "Side",
  35330. image: {
  35331. source: "./media/characters/kavus-kazian/side.svg",
  35332. extra: 349/342,
  35333. bottom: 15/364
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(7 + 1/12, "feet"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35347. {
  35348. normalFront: {
  35349. height: math.unit(5 + 11/12, "feet"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/moonlight-rose/normal-front.svg",
  35353. extra: 1980/1825,
  35354. bottom: 18/1998
  35355. },
  35356. form: "normal",
  35357. default: true
  35358. },
  35359. normalBack: {
  35360. height: math.unit(5 + 11/12, "feet"),
  35361. name: "Back",
  35362. image: {
  35363. source: "./media/characters/moonlight-rose/normal-back.svg",
  35364. extra: 2010/1839,
  35365. bottom: 10/2020
  35366. },
  35367. form: "normal"
  35368. },
  35369. demonFront: {
  35370. height: math.unit(1.5, "earths"),
  35371. name: "Front",
  35372. image: {
  35373. source: "./media/characters/moonlight-rose/demon.svg",
  35374. extra: 1400/1294,
  35375. bottom: 45/1445
  35376. },
  35377. form: "demon",
  35378. default: true
  35379. },
  35380. terraFront: {
  35381. height: math.unit(1.5, "earths"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/moonlight-rose/terra.svg"
  35385. },
  35386. form: "terra",
  35387. default: true
  35388. },
  35389. jupiterFront: {
  35390. height: math.unit(69911*2, "km"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35394. extra: 1367/1286,
  35395. bottom: 55/1422
  35396. },
  35397. form: "jupiter",
  35398. default: true
  35399. },
  35400. neptuneFront: {
  35401. height: math.unit(24622*2, "feet"),
  35402. name: "Front",
  35403. image: {
  35404. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35405. extra: 1851/1712,
  35406. bottom: 0/1851
  35407. },
  35408. form: "neptune",
  35409. default: true
  35410. },
  35411. },
  35412. [
  35413. {
  35414. name: "\"Natural\" Height",
  35415. height: math.unit(5 + 11/12, "feet"),
  35416. form: "normal"
  35417. },
  35418. {
  35419. name: "Smallest comfortable size",
  35420. height: math.unit(40, "meters"),
  35421. form: "normal"
  35422. },
  35423. {
  35424. name: "Common size",
  35425. height: math.unit(50, "km"),
  35426. form: "normal",
  35427. default: true
  35428. },
  35429. {
  35430. name: "Normal",
  35431. height: math.unit(1.5, "earths"),
  35432. form: "demon",
  35433. default: true
  35434. },
  35435. {
  35436. name: "Universal",
  35437. height: math.unit(15, "universes"),
  35438. form: "demon"
  35439. },
  35440. {
  35441. name: "Earth",
  35442. height: math.unit(1.5, "earths"),
  35443. form: "terra",
  35444. default: true
  35445. },
  35446. {
  35447. name: "Super Earth",
  35448. height: math.unit(67.5, "earths"),
  35449. form: "terra"
  35450. },
  35451. {
  35452. name: "Doesn't fit in a solar system...",
  35453. height: math.unit(1, "galaxy"),
  35454. form: "terra"
  35455. },
  35456. {
  35457. name: "Saturn",
  35458. height: math.unit(58232*2, "km"),
  35459. form: "jupiter"
  35460. },
  35461. {
  35462. name: "Jupiter",
  35463. height: math.unit(69911*2, "km"),
  35464. form: "jupiter",
  35465. default: true
  35466. },
  35467. {
  35468. name: "HD 100546 b",
  35469. height: math.unit(482938, "km"),
  35470. form: "jupiter"
  35471. },
  35472. {
  35473. name: "Enceladus",
  35474. height: math.unit(513*2, "km"),
  35475. form: "neptune"
  35476. },
  35477. {
  35478. name: "Europe",
  35479. height: math.unit(1560*2, "km"),
  35480. form: "neptune"
  35481. },
  35482. {
  35483. name: "Neptune",
  35484. height: math.unit(24622*2, "km"),
  35485. form: "neptune",
  35486. default: true
  35487. },
  35488. {
  35489. name: "CoRoT-9b",
  35490. height: math.unit(75067*2, "km"),
  35491. form: "neptune"
  35492. },
  35493. ],
  35494. {
  35495. "normal": {
  35496. name: "Normal",
  35497. default: true
  35498. },
  35499. "demon": {
  35500. name: "Demon"
  35501. },
  35502. "terra": {
  35503. name: "Terra"
  35504. },
  35505. "jupiter": {
  35506. name: "Jupiter"
  35507. },
  35508. "neptune": {
  35509. name: "Neptune"
  35510. }
  35511. }
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(16, "feet"),
  35518. weight: math.unit(610, "kg"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/huckle/front.svg",
  35522. extra: 1731/1625,
  35523. bottom: 33/1764
  35524. }
  35525. },
  35526. back: {
  35527. height: math.unit(16, "feet"),
  35528. weight: math.unit(610, "kg"),
  35529. name: "Back",
  35530. image: {
  35531. source: "./media/characters/huckle/back.svg",
  35532. extra: 1738/1651,
  35533. bottom: 37/1775
  35534. }
  35535. },
  35536. laughing: {
  35537. height: math.unit(3.75, "feet"),
  35538. name: "Laughing",
  35539. image: {
  35540. source: "./media/characters/huckle/laughing.svg"
  35541. }
  35542. },
  35543. angry: {
  35544. height: math.unit(4.15, "feet"),
  35545. name: "Angry",
  35546. image: {
  35547. source: "./media/characters/huckle/angry.svg"
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Normal",
  35554. height: math.unit(16, "feet"),
  35555. default: true
  35556. },
  35557. {
  35558. name: "Mini Macro",
  35559. height: math.unit(463, "feet")
  35560. },
  35561. {
  35562. name: "Macro",
  35563. height: math.unit(1680, "meters")
  35564. },
  35565. {
  35566. name: "Mega Macro",
  35567. height: math.unit(175, "km")
  35568. },
  35569. {
  35570. name: "Terra Macro",
  35571. height: math.unit(32, "gigameters")
  35572. },
  35573. {
  35574. name: "Multiverse+",
  35575. height: math.unit(2.56e23, "yottameters")
  35576. },
  35577. ]
  35578. ))
  35579. characterMakers.push(() => makeCharacter(
  35580. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35581. {
  35582. front: {
  35583. height: math.unit(6 + 9/12, "feet"),
  35584. weight: math.unit(280, "lb"),
  35585. name: "Front",
  35586. image: {
  35587. source: "./media/characters/candy/front.svg",
  35588. extra: 234/217,
  35589. bottom: 11/245
  35590. }
  35591. },
  35592. },
  35593. [
  35594. {
  35595. name: "Really Small",
  35596. height: math.unit(0.1, "nm")
  35597. },
  35598. {
  35599. name: "Micro",
  35600. height: math.unit(2, "inches")
  35601. },
  35602. {
  35603. name: "Normal",
  35604. height: math.unit(6 + 9/12, "feet"),
  35605. default: true
  35606. },
  35607. {
  35608. name: "Small Macro",
  35609. height: math.unit(69, "feet")
  35610. },
  35611. {
  35612. name: "Macro",
  35613. height: math.unit(160, "feet")
  35614. },
  35615. {
  35616. name: "Megamacro",
  35617. height: math.unit(22000, "miles")
  35618. },
  35619. {
  35620. name: "Gigamacro",
  35621. height: math.unit(50000, "miles")
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35627. {
  35628. front: {
  35629. height: math.unit(4, "feet"),
  35630. weight: math.unit(90, "lb"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/joey-mcdonald/front.svg",
  35634. extra: 1059/852,
  35635. bottom: 33/1092
  35636. }
  35637. },
  35638. back: {
  35639. height: math.unit(4, "feet"),
  35640. weight: math.unit(90, "lb"),
  35641. name: "Back",
  35642. image: {
  35643. source: "./media/characters/joey-mcdonald/back.svg",
  35644. extra: 1077/879,
  35645. bottom: 5/1082
  35646. }
  35647. },
  35648. frontKobold: {
  35649. height: math.unit(4, "feet"),
  35650. weight: math.unit(100, "lb"),
  35651. name: "Front-kobold",
  35652. image: {
  35653. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35654. extra: 1480/1367,
  35655. bottom: 0/1480
  35656. }
  35657. },
  35658. backKobold: {
  35659. height: math.unit(4, "feet"),
  35660. weight: math.unit(100, "lb"),
  35661. name: "Back-kobold",
  35662. image: {
  35663. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35664. extra: 1449/1361,
  35665. bottom: 0/1449
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(4, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(12 + 6/12, "feet"),
  35682. name: "Front",
  35683. image: {
  35684. source: "./media/characters/kass-lockheed/front.svg",
  35685. extra: 354/343,
  35686. bottom: 9/363
  35687. }
  35688. },
  35689. back: {
  35690. height: math.unit(12 + 6/12, "feet"),
  35691. name: "Back",
  35692. image: {
  35693. source: "./media/characters/kass-lockheed/back.svg",
  35694. extra: 364/352,
  35695. bottom: 3/367
  35696. }
  35697. },
  35698. dick: {
  35699. height: math.unit(3.12, "feet"),
  35700. name: "Dick",
  35701. image: {
  35702. source: "./media/characters/kass-lockheed/dick.svg"
  35703. }
  35704. },
  35705. head: {
  35706. height: math.unit(2.6, "feet"),
  35707. name: "Head",
  35708. image: {
  35709. source: "./media/characters/kass-lockheed/head.svg"
  35710. }
  35711. },
  35712. bleh: {
  35713. height: math.unit(2.85, "feet"),
  35714. name: "Bleh",
  35715. image: {
  35716. source: "./media/characters/kass-lockheed/bleh.svg"
  35717. }
  35718. },
  35719. smug: {
  35720. height: math.unit(2.85, "feet"),
  35721. name: "Smug",
  35722. image: {
  35723. source: "./media/characters/kass-lockheed/smug.svg"
  35724. }
  35725. },
  35726. },
  35727. [
  35728. {
  35729. name: "Normal",
  35730. height: math.unit(12 + 6/12, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35737. {
  35738. front: {
  35739. height: math.unit(6 + 2/12, "feet"),
  35740. name: "Front",
  35741. image: {
  35742. source: "./media/characters/taylor/front.svg",
  35743. extra: 639/495,
  35744. bottom: 12/651
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(6 + 2/12, "feet"),
  35752. default: true
  35753. },
  35754. {
  35755. name: "Big",
  35756. height: math.unit(15, "feet")
  35757. },
  35758. {
  35759. name: "Lorg",
  35760. height: math.unit(80, "feet")
  35761. },
  35762. {
  35763. name: "Too Lorg",
  35764. height: math.unit(120, "feet")
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(15, "feet"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/kaizer/front.svg",
  35776. extra: 1612/1436,
  35777. bottom: 43/1655
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(15, "feet"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35791. {
  35792. front: {
  35793. height: math.unit(2, "feet"),
  35794. weight: math.unit(30, "lb"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/sandy/front.svg",
  35798. extra: 1439/1307,
  35799. bottom: 194/1633
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(2, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(3, "feet"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/mellvi/front.svg",
  35819. extra: 1831/1630,
  35820. bottom: 58/1889
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(3, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35834. {
  35835. front: {
  35836. height: math.unit(5 + 11/12, "feet"),
  35837. weight: math.unit(200, "lb"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/shirou/front.svg",
  35841. extra: 2491/2383,
  35842. bottom: 189/2680
  35843. }
  35844. },
  35845. back: {
  35846. height: math.unit(5 + 11/12, "feet"),
  35847. weight: math.unit(200, "lb"),
  35848. name: "Back",
  35849. image: {
  35850. source: "./media/characters/shirou/back.svg",
  35851. extra: 2554/2450,
  35852. bottom: 76/2630
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(5 + 11/12, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(6 + 3/12, "feet"),
  35869. weight: math.unit(177, "lb"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/noryu/front.svg",
  35873. extra: 973/885,
  35874. bottom: 10/983
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(6 + 3/12, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35888. {
  35889. front: {
  35890. height: math.unit(5 + 6/12, "feet"),
  35891. weight: math.unit(170, "lb"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/mevolas-rubenido/front.svg",
  35895. extra: 2109/1901,
  35896. bottom: 96/2205
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(5 + 6/12, "feet"),
  35904. default: true
  35905. },
  35906. ]
  35907. ))
  35908. characterMakers.push(() => makeCharacter(
  35909. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35910. {
  35911. front: {
  35912. height: math.unit(100, "feet"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/dee/front.svg",
  35916. extra: 2153/2036,
  35917. bottom: 59/2212
  35918. }
  35919. },
  35920. back: {
  35921. height: math.unit(100, "feet"),
  35922. name: "Back",
  35923. image: {
  35924. source: "./media/characters/dee/back.svg",
  35925. extra: 2183/2058,
  35926. bottom: 75/2258
  35927. }
  35928. },
  35929. foot: {
  35930. height: math.unit(19.43, "feet"),
  35931. name: "Foot",
  35932. image: {
  35933. source: "./media/characters/dee/foot.svg"
  35934. }
  35935. },
  35936. hoof: {
  35937. height: math.unit(20.6, "feet"),
  35938. name: "Hoof",
  35939. image: {
  35940. source: "./media/characters/dee/hoof.svg"
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Macro",
  35947. height: math.unit(100, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(5 + 6/12, "feet"),
  35957. name: "Front",
  35958. image: {
  35959. source: "./media/characters/teh/front.svg",
  35960. extra: 1002/847,
  35961. bottom: 62/1064
  35962. }
  35963. },
  35964. },
  35965. [
  35966. {
  35967. name: "Normal",
  35968. height: math.unit(5 + 6/12, "feet"),
  35969. default: true
  35970. },
  35971. ]
  35972. ))
  35973. characterMakers.push(() => makeCharacter(
  35974. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35975. {
  35976. side: {
  35977. height: math.unit(6 + 1/12, "feet"),
  35978. weight: math.unit(204, "lb"),
  35979. name: "Side",
  35980. image: {
  35981. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35982. extra: 974/775,
  35983. bottom: 169/1143
  35984. }
  35985. },
  35986. sitting: {
  35987. height: math.unit(6 + 2/12, "feet"),
  35988. weight: math.unit(204, "lb"),
  35989. name: "Sitting",
  35990. image: {
  35991. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35992. extra: 1175/964,
  35993. bottom: 378/1553
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(6 + 1/12, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36007. {
  36008. front: {
  36009. height: math.unit(6, "inches"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/tululi/front.svg",
  36013. extra: 1997/1876,
  36014. bottom: 20/2017
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Normal",
  36021. height: math.unit(6, "inches"),
  36022. default: true
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36028. {
  36029. front: {
  36030. height: math.unit(4 + 1/12, "feet"),
  36031. name: "Front",
  36032. image: {
  36033. source: "./media/characters/star/front.svg",
  36034. extra: 1493/1189,
  36035. bottom: 48/1541
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(4 + 1/12, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(6 + 3/12, "feet"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/comet/front.svg",
  36055. extra: 1681/1462,
  36056. bottom: 26/1707
  36057. }
  36058. },
  36059. },
  36060. [
  36061. {
  36062. name: "Normal",
  36063. height: math.unit(6 + 3/12, "feet"),
  36064. default: true
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36070. {
  36071. front: {
  36072. height: math.unit(950, "feet"),
  36073. name: "Front",
  36074. image: {
  36075. source: "./media/characters/vortex/front.svg",
  36076. extra: 1497/1434,
  36077. bottom: 56/1553
  36078. }
  36079. },
  36080. maw: {
  36081. height: math.unit(285, "feet"),
  36082. name: "Maw",
  36083. image: {
  36084. source: "./media/characters/vortex/maw.svg"
  36085. }
  36086. },
  36087. },
  36088. [
  36089. {
  36090. name: "Macro",
  36091. height: math.unit(950, "feet"),
  36092. default: true
  36093. },
  36094. ]
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(600, "feet"),
  36101. weight: math.unit(0.02, "grams"),
  36102. name: "Front",
  36103. image: {
  36104. source: "./media/characters/doodle/front.svg",
  36105. extra: 1578/1413,
  36106. bottom: 37/1615
  36107. }
  36108. },
  36109. },
  36110. [
  36111. {
  36112. name: "Macro",
  36113. height: math.unit(600, "feet"),
  36114. default: true
  36115. },
  36116. ]
  36117. ))
  36118. characterMakers.push(() => makeCharacter(
  36119. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36120. {
  36121. front: {
  36122. height: math.unit(6 + 6/12, "feet"),
  36123. name: "Front",
  36124. image: {
  36125. source: "./media/characters/jai/front.svg",
  36126. extra: 1645/1534,
  36127. bottom: 115/1760
  36128. }
  36129. },
  36130. },
  36131. [
  36132. {
  36133. name: "Normal",
  36134. height: math.unit(6 + 6/12, "feet"),
  36135. default: true
  36136. },
  36137. ]
  36138. ))
  36139. characterMakers.push(() => makeCharacter(
  36140. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36141. {
  36142. front: {
  36143. height: math.unit(6 + 8/12, "feet"),
  36144. name: "Front",
  36145. image: {
  36146. source: "./media/characters/pixel/front.svg",
  36147. extra: 1900/1735,
  36148. bottom: 63/1963
  36149. }
  36150. },
  36151. },
  36152. [
  36153. {
  36154. name: "Normal",
  36155. height: math.unit(6 + 8/12, "feet"),
  36156. default: true
  36157. },
  36158. ]
  36159. ))
  36160. characterMakers.push(() => makeCharacter(
  36161. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36162. {
  36163. back: {
  36164. height: math.unit(4 + 1/12, "feet"),
  36165. weight: math.unit(75, "lb"),
  36166. name: "Back",
  36167. image: {
  36168. source: "./media/characters/rhett/back.svg",
  36169. extra: 930/878,
  36170. bottom: 25/955
  36171. }
  36172. },
  36173. front: {
  36174. height: math.unit(4 + 1/12, "feet"),
  36175. weight: math.unit(75, "lb"),
  36176. name: "Front",
  36177. image: {
  36178. source: "./media/characters/rhett/front.svg",
  36179. extra: 1682/1586,
  36180. bottom: 92/1774
  36181. }
  36182. },
  36183. },
  36184. [
  36185. {
  36186. name: "Micro",
  36187. height: math.unit(8, "inches")
  36188. },
  36189. {
  36190. name: "Tiny",
  36191. height: math.unit(2, "feet")
  36192. },
  36193. {
  36194. name: "Normal",
  36195. height: math.unit(4 + 1/12, "feet"),
  36196. default: true
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36202. {
  36203. front: {
  36204. height: math.unit(3 + 3/12, "feet"),
  36205. name: "Front",
  36206. image: {
  36207. source: "./media/characters/penny/front.svg",
  36208. extra: 1406/1311,
  36209. bottom: 26/1432
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(3 + 3/12, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(4 + 11/12, "feet"),
  36226. name: "Front",
  36227. image: {
  36228. source: "./media/characters/monty/front.svg",
  36229. extra: 1479/1209,
  36230. bottom: 0/1479
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(4 + 11/12, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(8 + 4/12, "feet"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/sterling/front.svg",
  36250. extra: 1420/1236,
  36251. bottom: 27/1447
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(8 + 4/12, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(15, "feet"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/marble/front.svg",
  36271. extra: 973/937,
  36272. bottom: 32/1005
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(15, "feet"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36286. {
  36287. front: {
  36288. height: math.unit(3, "inches"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/powder/front.svg",
  36292. extra: 1504/1334,
  36293. bottom: 518/2022
  36294. }
  36295. },
  36296. },
  36297. [
  36298. {
  36299. name: "Normal",
  36300. height: math.unit(3, "inches"),
  36301. default: true
  36302. },
  36303. ]
  36304. ))
  36305. characterMakers.push(() => makeCharacter(
  36306. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36307. {
  36308. front: {
  36309. height: math.unit(4 + 5/12, "feet"),
  36310. name: "Front",
  36311. image: {
  36312. source: "./media/characters/joey-raccoon/front.svg",
  36313. extra: 1273/1197,
  36314. bottom: 0/1273
  36315. }
  36316. },
  36317. },
  36318. [
  36319. {
  36320. name: "Normal",
  36321. height: math.unit(4 + 5/12, "feet"),
  36322. default: true
  36323. },
  36324. ]
  36325. ))
  36326. characterMakers.push(() => makeCharacter(
  36327. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36328. {
  36329. front: {
  36330. height: math.unit(8 + 4/12, "feet"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/vick/front.svg",
  36334. extra: 2187/2118,
  36335. bottom: 47/2234
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(8 + 4/12, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(5 + 5/12, "feet"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/mitsy/front.svg",
  36355. extra: 1842/1695,
  36356. bottom: 0/1842
  36357. }
  36358. },
  36359. },
  36360. [
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(5 + 5/12, "feet"),
  36364. default: true
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36370. {
  36371. front: {
  36372. height: math.unit(6 + 3/12, "feet"),
  36373. name: "Front",
  36374. image: {
  36375. source: "./media/characters/silvy/front.svg",
  36376. extra: 1995/1836,
  36377. bottom: 225/2220
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(6 + 3/12, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(3 + 8/12, "feet"),
  36394. name: "Front",
  36395. image: {
  36396. source: "./media/characters/rodney/front.svg",
  36397. extra: 1956/1747,
  36398. bottom: 31/1987
  36399. }
  36400. },
  36401. frontDressed: {
  36402. height: math.unit(2.9, "feet"),
  36403. name: "Front (Dressed)",
  36404. image: {
  36405. source: "./media/characters/rodney/front-dressed.svg",
  36406. extra: 1382/1241,
  36407. bottom: 385/1767
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(3 + 8/12, "feet"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(5 + 9/12, "feet"),
  36424. weight: math.unit(194, "lbs"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/zakail-sudekai/front.svg",
  36428. extra: 2696/2533,
  36429. bottom: 248/2944
  36430. }
  36431. },
  36432. maw: {
  36433. height: math.unit(1.35, "feet"),
  36434. name: "Maw",
  36435. image: {
  36436. source: "./media/characters/zakail-sudekai/maw.svg"
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(5 + 9/12, "feet"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(8 + 4/12, "feet"),
  36453. weight: math.unit(1200, "lb"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/eleanor/front.svg",
  36457. extra: 1226/1192,
  36458. bottom: 52/1278
  36459. }
  36460. },
  36461. back: {
  36462. height: math.unit(8 + 4/12, "feet"),
  36463. weight: math.unit(1200, "lb"),
  36464. name: "Back",
  36465. image: {
  36466. source: "./media/characters/eleanor/back.svg",
  36467. extra: 1242/1184,
  36468. bottom: 60/1302
  36469. }
  36470. },
  36471. head: {
  36472. height: math.unit(2.62, "feet"),
  36473. name: "Head",
  36474. image: {
  36475. source: "./media/characters/eleanor/head.svg"
  36476. }
  36477. },
  36478. },
  36479. [
  36480. {
  36481. name: "Normal",
  36482. height: math.unit(8 + 4/12, "feet"),
  36483. default: true
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(8 + 4/12, "feet"),
  36492. weight: math.unit(750, "lb"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/tanya/front.svg",
  36496. extra: 1749/1615,
  36497. bottom: 33/1782
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Normal",
  36504. height: math.unit(8 + 4/12, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(5, "feet"),
  36514. weight: math.unit(225, "lb"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/cindy/front.svg",
  36518. extra: 1320/1250,
  36519. bottom: 42/1362
  36520. }
  36521. },
  36522. frontDressed: {
  36523. height: math.unit(5, "feet"),
  36524. weight: math.unit(225, "lb"),
  36525. name: "Front (Dressed)",
  36526. image: {
  36527. source: "./media/characters/cindy/front-dressed.svg",
  36528. extra: 1320/1250,
  36529. bottom: 42/1362
  36530. }
  36531. },
  36532. back: {
  36533. height: math.unit(5, "feet"),
  36534. weight: math.unit(225, "lb"),
  36535. name: "Back",
  36536. image: {
  36537. source: "./media/characters/cindy/back.svg",
  36538. extra: 1384/1346,
  36539. bottom: 14/1398
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(5, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36553. {
  36554. front: {
  36555. height: math.unit(6 + 9/12, "feet"),
  36556. weight: math.unit(440, "lb"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/wilbur-owen/front.svg",
  36560. extra: 1575/1448,
  36561. bottom: 72/1647
  36562. }
  36563. },
  36564. back: {
  36565. height: math.unit(6 + 9/12, "feet"),
  36566. weight: math.unit(440, "lb"),
  36567. name: "Back",
  36568. image: {
  36569. source: "./media/characters/wilbur-owen/back.svg",
  36570. extra: 1578/1445,
  36571. bottom: 36/1614
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(6 + 9/12, "feet"),
  36579. default: true
  36580. },
  36581. ]
  36582. ))
  36583. characterMakers.push(() => makeCharacter(
  36584. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36585. {
  36586. front: {
  36587. height: math.unit(6 + 5/12, "feet"),
  36588. weight: math.unit(650, "lb"),
  36589. name: "Front",
  36590. image: {
  36591. source: "./media/characters/keegan/front.svg",
  36592. extra: 2387/2198,
  36593. bottom: 33/2420
  36594. }
  36595. },
  36596. side: {
  36597. height: math.unit(6 + 5/12, "feet"),
  36598. weight: math.unit(650, "lb"),
  36599. name: "Side",
  36600. image: {
  36601. source: "./media/characters/keegan/side.svg",
  36602. extra: 2390/2202,
  36603. bottom: 47/2437
  36604. }
  36605. },
  36606. back: {
  36607. height: math.unit(6 + 5/12, "feet"),
  36608. weight: math.unit(650, "lb"),
  36609. name: "Back",
  36610. image: {
  36611. source: "./media/characters/keegan/back.svg",
  36612. extra: 2418/2268,
  36613. bottom: 15/2433
  36614. }
  36615. },
  36616. frontSfw: {
  36617. height: math.unit(6 + 5/12, "feet"),
  36618. weight: math.unit(650, "lb"),
  36619. name: "Front (SFW)",
  36620. image: {
  36621. source: "./media/characters/keegan/front-sfw.svg",
  36622. extra: 2387/2198,
  36623. bottom: 33/2420
  36624. }
  36625. },
  36626. beans: {
  36627. height: math.unit(1.85, "feet"),
  36628. name: "Beans",
  36629. image: {
  36630. source: "./media/characters/keegan/beans.svg"
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(6 + 5/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36644. {
  36645. front: {
  36646. height: math.unit(9, "feet"),
  36647. name: "Front",
  36648. image: {
  36649. source: "./media/characters/colton/front.svg",
  36650. extra: 1589/1326,
  36651. bottom: 139/1728
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Normal",
  36658. height: math.unit(9, "feet"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(2 + 9/12, "feet"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/bora/front.svg",
  36671. extra: 1265/1250,
  36672. bottom: 24/1289
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(2 + 9/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36686. {
  36687. front: {
  36688. height: math.unit(8, "feet"),
  36689. name: "Front",
  36690. image: {
  36691. source: "./media/characters/myu-myu/front.svg",
  36692. extra: 1949/1857,
  36693. bottom: 90/2039
  36694. }
  36695. },
  36696. },
  36697. [
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(8, "feet"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Big",
  36705. height: math.unit(15, "feet")
  36706. },
  36707. {
  36708. name: "BIG",
  36709. height: math.unit(25, "feet")
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36715. {
  36716. side: {
  36717. height: math.unit(7 + 5/12, "feet"),
  36718. weight: math.unit(2800, "lb"),
  36719. name: "Side",
  36720. image: {
  36721. source: "./media/characters/haloren/side.svg",
  36722. extra: 1793/409,
  36723. bottom: 59/1852
  36724. }
  36725. },
  36726. frontPaw: {
  36727. height: math.unit(2.36, "feet"),
  36728. name: "Front paw",
  36729. image: {
  36730. source: "./media/characters/haloren/front-paw.svg"
  36731. }
  36732. },
  36733. hindPaw: {
  36734. height: math.unit(3.18, "feet"),
  36735. name: "Hind paw",
  36736. image: {
  36737. source: "./media/characters/haloren/hind-paw.svg"
  36738. }
  36739. },
  36740. maw: {
  36741. height: math.unit(5.05, "feet"),
  36742. name: "Maw",
  36743. image: {
  36744. source: "./media/characters/haloren/maw.svg"
  36745. }
  36746. },
  36747. dick: {
  36748. height: math.unit(2.90, "feet"),
  36749. name: "Dick",
  36750. image: {
  36751. source: "./media/characters/haloren/dick.svg"
  36752. }
  36753. },
  36754. },
  36755. [
  36756. {
  36757. name: "Normal",
  36758. height: math.unit(7 + 5/12, "feet"),
  36759. default: true
  36760. },
  36761. {
  36762. name: "Enhanced",
  36763. height: math.unit(14 + 3/12, "feet")
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(171, "cm"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/kimmy/front.svg",
  36775. extra: 1491/1435,
  36776. bottom: 53/1544
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Small",
  36783. height: math.unit(9, "cm")
  36784. },
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(171, "cm"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(8, "feet"),
  36797. weight: math.unit(300, "lb"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/galeboomer/front.svg",
  36801. extra: 4651/4415,
  36802. bottom: 162/4813
  36803. }
  36804. },
  36805. back: {
  36806. height: math.unit(8, "feet"),
  36807. weight: math.unit(300, "lb"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/galeboomer/back.svg",
  36811. extra: 4544/4314,
  36812. bottom: 16/4560
  36813. }
  36814. },
  36815. frontAlt: {
  36816. height: math.unit(8, "feet"),
  36817. weight: math.unit(300, "lb"),
  36818. name: "Front (Alt)",
  36819. image: {
  36820. source: "./media/characters/galeboomer/front-alt.svg",
  36821. extra: 4458/4228,
  36822. bottom: 68/4526
  36823. }
  36824. },
  36825. maw: {
  36826. height: math.unit(1.2, "feet"),
  36827. name: "Maw",
  36828. image: {
  36829. source: "./media/characters/galeboomer/maw.svg"
  36830. }
  36831. },
  36832. },
  36833. [
  36834. {
  36835. name: "Normal",
  36836. height: math.unit(8, "feet"),
  36837. default: true
  36838. },
  36839. ]
  36840. ))
  36841. characterMakers.push(() => makeCharacter(
  36842. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36843. {
  36844. front: {
  36845. height: math.unit(5 + 9/12, "feet"),
  36846. weight: math.unit(120, "lb"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/chyr/front.svg",
  36850. extra: 1323/1254,
  36851. bottom: 63/1386
  36852. }
  36853. },
  36854. back: {
  36855. height: math.unit(5 + 9/12, "feet"),
  36856. weight: math.unit(120, "lb"),
  36857. name: "Back",
  36858. image: {
  36859. source: "./media/characters/chyr/back.svg",
  36860. extra: 1323/1252,
  36861. bottom: 48/1371
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Normal",
  36868. height: math.unit(5 + 9/12, "feet"),
  36869. default: true
  36870. },
  36871. ]
  36872. ))
  36873. characterMakers.push(() => makeCharacter(
  36874. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36875. {
  36876. front: {
  36877. height: math.unit(7, "feet"),
  36878. weight: math.unit(310, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/solarus/front.svg",
  36882. extra: 2415/2021,
  36883. bottom: 103/2518
  36884. }
  36885. },
  36886. back: {
  36887. height: math.unit(7, "feet"),
  36888. weight: math.unit(310, "lb"),
  36889. name: "Back",
  36890. image: {
  36891. source: "./media/characters/solarus/back.svg",
  36892. extra: 2463/2089,
  36893. bottom: 79/2542
  36894. }
  36895. },
  36896. },
  36897. [
  36898. {
  36899. name: "Normal",
  36900. height: math.unit(7, "feet"),
  36901. default: true
  36902. },
  36903. ]
  36904. ))
  36905. characterMakers.push(() => makeCharacter(
  36906. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36907. {
  36908. front: {
  36909. height: math.unit(16, "feet"),
  36910. name: "Front",
  36911. image: {
  36912. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36913. extra: 1844/1780,
  36914. bottom: 58/1902
  36915. }
  36916. },
  36917. winterCoat: {
  36918. height: math.unit(16, "feet"),
  36919. name: "Winter Coat",
  36920. image: {
  36921. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36922. extra: 1807/1775,
  36923. bottom: 69/1876
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Normal",
  36930. height: math.unit(16, "feet"),
  36931. default: true
  36932. },
  36933. {
  36934. name: "Chicago Size",
  36935. height: math.unit(560, "feet")
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(11 + 6/12, "feet"),
  36944. weight: math.unit(1366, "lb"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/lexor/front.svg",
  36948. extra: 1560/1481,
  36949. bottom: 211/1771
  36950. }
  36951. },
  36952. back: {
  36953. height: math.unit(11 + 6/12, "feet"),
  36954. weight: math.unit(1366, "lb"),
  36955. name: "Back",
  36956. image: {
  36957. source: "./media/characters/lexor/back.svg",
  36958. extra: 1614/1533,
  36959. bottom: 76/1690
  36960. }
  36961. },
  36962. maw: {
  36963. height: math.unit(3, "feet"),
  36964. name: "Maw",
  36965. image: {
  36966. source: "./media/characters/lexor/maw.svg"
  36967. }
  36968. },
  36969. dick: {
  36970. height: math.unit(2.59, "feet"),
  36971. name: "Dick",
  36972. image: {
  36973. source: "./media/characters/lexor/dick.svg"
  36974. }
  36975. },
  36976. },
  36977. [
  36978. {
  36979. name: "Normal",
  36980. height: math.unit(11 + 6/12, "feet"),
  36981. default: true
  36982. },
  36983. ]
  36984. ))
  36985. characterMakers.push(() => makeCharacter(
  36986. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36987. {
  36988. front: {
  36989. height: math.unit(5 + 8/12, "feet"),
  36990. name: "Front",
  36991. image: {
  36992. source: "./media/characters/magnum/front.svg",
  36993. extra: 942/855,
  36994. bottom: 26/968
  36995. }
  36996. },
  36997. },
  36998. [
  36999. {
  37000. name: "Normal",
  37001. height: math.unit(5 + 8/12, "feet"),
  37002. default: true
  37003. },
  37004. ]
  37005. ))
  37006. characterMakers.push(() => makeCharacter(
  37007. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37008. {
  37009. front: {
  37010. height: math.unit(18 + 4/12, "feet"),
  37011. weight: math.unit(1500, "kg"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/solas-sharpsman/front.svg",
  37015. extra: 1698/1589,
  37016. bottom: 0/1698
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(18 + 4/12, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(5 + 5/12, "feet"),
  37033. weight: math.unit(180, "lb"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/october/front.svg",
  37037. extra: 1800/1650,
  37038. bottom: 0/1800
  37039. }
  37040. },
  37041. frontNsfw: {
  37042. height: math.unit(5 + 5/12, "feet"),
  37043. weight: math.unit(180, "lb"),
  37044. name: "Front (NSFW)",
  37045. image: {
  37046. source: "./media/characters/october/front-nsfw.svg",
  37047. extra: 1392/1307,
  37048. bottom: 42/1434
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(5 + 5/12, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(8 + 6/12, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/essynkardi/front.svg",
  37068. extra: 1914/1846,
  37069. bottom: 22/1936
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(8 + 6/12, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(6 + 6/12, "feet"),
  37086. weight: math.unit(7, "lb"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/icky/front.svg",
  37090. extra: 813/782,
  37091. bottom: 66/879
  37092. }
  37093. },
  37094. back: {
  37095. height: math.unit(6 + 6/12, "feet"),
  37096. weight: math.unit(7, "lb"),
  37097. name: "Back",
  37098. image: {
  37099. source: "./media/characters/icky/back.svg",
  37100. extra: 754/735,
  37101. bottom: 56/810
  37102. }
  37103. },
  37104. },
  37105. [
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(6 + 6/12, "feet"),
  37109. default: true
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(15, "feet"),
  37118. name: "Front",
  37119. image: {
  37120. source: "./media/characters/rojas/front.svg",
  37121. extra: 1462/1408,
  37122. bottom: 95/1557
  37123. }
  37124. },
  37125. back: {
  37126. height: math.unit(15, "feet"),
  37127. name: "Back",
  37128. image: {
  37129. source: "./media/characters/rojas/back.svg",
  37130. extra: 1023/954,
  37131. bottom: 28/1051
  37132. }
  37133. },
  37134. },
  37135. [
  37136. {
  37137. name: "Normal",
  37138. height: math.unit(15, "feet"),
  37139. default: true
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37145. {
  37146. frontHuman: {
  37147. height: math.unit(5 + 7/12, "feet"),
  37148. name: "Front (Human)",
  37149. image: {
  37150. source: "./media/characters/alek-dryagan/front-human.svg",
  37151. extra: 1687/1667,
  37152. bottom: 69/1756
  37153. }
  37154. },
  37155. backHuman: {
  37156. height: math.unit(5 + 7/12, "feet"),
  37157. name: "Back (Human)",
  37158. image: {
  37159. source: "./media/characters/alek-dryagan/back-human.svg",
  37160. extra: 1670/1649,
  37161. bottom: 65/1735
  37162. }
  37163. },
  37164. frontDemi: {
  37165. height: math.unit(65, "feet"),
  37166. name: "Front (Demi)",
  37167. image: {
  37168. source: "./media/characters/alek-dryagan/front-demi.svg",
  37169. extra: 1669/1642,
  37170. bottom: 49/1718
  37171. }
  37172. },
  37173. backDemi: {
  37174. height: math.unit(65, "feet"),
  37175. name: "Back (Demi)",
  37176. image: {
  37177. source: "./media/characters/alek-dryagan/back-demi.svg",
  37178. extra: 1658/1637,
  37179. bottom: 40/1698
  37180. }
  37181. },
  37182. mawHuman: {
  37183. height: math.unit(0.3, "feet"),
  37184. name: "Maw (Human)",
  37185. image: {
  37186. source: "./media/characters/alek-dryagan/maw-human.svg"
  37187. }
  37188. },
  37189. mawDemi: {
  37190. height: math.unit(3.8, "feet"),
  37191. name: "Maw (Demi)",
  37192. image: {
  37193. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(5 + 7/12, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37207. {
  37208. frontHuman: {
  37209. height: math.unit(5 + 2/12, "feet"),
  37210. name: "Front (Human)",
  37211. image: {
  37212. source: "./media/characters/gen/front-human.svg",
  37213. extra: 1627/1538,
  37214. bottom: 71/1698
  37215. }
  37216. },
  37217. backHuman: {
  37218. height: math.unit(5 + 2/12, "feet"),
  37219. name: "Back (Human)",
  37220. image: {
  37221. source: "./media/characters/gen/back-human.svg",
  37222. extra: 1638/1548,
  37223. bottom: 69/1707
  37224. }
  37225. },
  37226. frontDemi: {
  37227. height: math.unit(5 + 2/12, "feet"),
  37228. name: "Front (Demi)",
  37229. image: {
  37230. source: "./media/characters/gen/front-demi.svg",
  37231. extra: 1627/1538,
  37232. bottom: 71/1698
  37233. }
  37234. },
  37235. backDemi: {
  37236. height: math.unit(5 + 2/12, "feet"),
  37237. name: "Back (Demi)",
  37238. image: {
  37239. source: "./media/characters/gen/back-demi.svg",
  37240. extra: 1638/1548,
  37241. bottom: 69/1707
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(5 + 2/12, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37255. {
  37256. frontImp: {
  37257. height: math.unit(1 + 11/12, "feet"),
  37258. name: "Front (Imp)",
  37259. image: {
  37260. source: "./media/characters/max-kobold/front-imp.svg",
  37261. extra: 1238/1134,
  37262. bottom: 81/1319
  37263. }
  37264. },
  37265. backImp: {
  37266. height: math.unit(1 + 11/12, "feet"),
  37267. name: "Back (Imp)",
  37268. image: {
  37269. source: "./media/characters/max-kobold/back-imp.svg",
  37270. extra: 1334/1175,
  37271. bottom: 34/1368
  37272. }
  37273. },
  37274. frontDemi: {
  37275. height: math.unit(5 + 9/12, "feet"),
  37276. name: "Front (Demi)",
  37277. image: {
  37278. source: "./media/characters/max-kobold/front-demi.svg",
  37279. extra: 1715/1685,
  37280. bottom: 54/1769
  37281. }
  37282. },
  37283. backDemi: {
  37284. height: math.unit(5 + 9/12, "feet"),
  37285. name: "Back (Demi)",
  37286. image: {
  37287. source: "./media/characters/max-kobold/back-demi.svg",
  37288. extra: 1752/1729,
  37289. bottom: 41/1793
  37290. }
  37291. },
  37292. handImp: {
  37293. height: math.unit(0.45, "feet"),
  37294. name: "Hand (Imp)",
  37295. image: {
  37296. source: "./media/characters/max-kobold/hand.svg"
  37297. }
  37298. },
  37299. pawImp: {
  37300. height: math.unit(0.46, "feet"),
  37301. name: "Paw (Imp)",
  37302. image: {
  37303. source: "./media/characters/max-kobold/paw.svg"
  37304. }
  37305. },
  37306. handDemi: {
  37307. height: math.unit(0.80, "feet"),
  37308. name: "Hand (Demi)",
  37309. image: {
  37310. source: "./media/characters/max-kobold/hand.svg"
  37311. }
  37312. },
  37313. pawDemi: {
  37314. height: math.unit(1.1, "feet"),
  37315. name: "Paw (Demi)",
  37316. image: {
  37317. source: "./media/characters/max-kobold/paw.svg"
  37318. }
  37319. },
  37320. headImp: {
  37321. height: math.unit(1.33, "feet"),
  37322. name: "Head (Imp)",
  37323. image: {
  37324. source: "./media/characters/max-kobold/head-imp.svg"
  37325. }
  37326. },
  37327. mawImp: {
  37328. height: math.unit(0.75, "feet"),
  37329. name: "Maw (Imp)",
  37330. image: {
  37331. source: "./media/characters/max-kobold/maw-imp.svg"
  37332. }
  37333. },
  37334. mawDemi: {
  37335. height: math.unit(0.42, "feet"),
  37336. name: "Maw (Demi)",
  37337. image: {
  37338. source: "./media/characters/max-kobold/maw-demi.svg"
  37339. }
  37340. },
  37341. },
  37342. [
  37343. {
  37344. name: "Normal",
  37345. height: math.unit(1 + 11/12, "feet"),
  37346. default: true
  37347. },
  37348. ]
  37349. ))
  37350. characterMakers.push(() => makeCharacter(
  37351. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37352. {
  37353. front: {
  37354. height: math.unit(7 + 5/12, "feet"),
  37355. name: "Front",
  37356. image: {
  37357. source: "./media/characters/carbon/front.svg",
  37358. extra: 1754/1689,
  37359. bottom: 65/1819
  37360. }
  37361. },
  37362. back: {
  37363. height: math.unit(7 + 5/12, "feet"),
  37364. name: "Back",
  37365. image: {
  37366. source: "./media/characters/carbon/back.svg",
  37367. extra: 1762/1695,
  37368. bottom: 24/1786
  37369. }
  37370. },
  37371. frontGigantamax: {
  37372. height: math.unit(150, "feet"),
  37373. name: "Front (Gigantamax)",
  37374. image: {
  37375. source: "./media/characters/carbon/front-gigantamax.svg",
  37376. extra: 1826/1669,
  37377. bottom: 59/1885
  37378. }
  37379. },
  37380. backGigantamax: {
  37381. height: math.unit(150, "feet"),
  37382. name: "Back (Gigantamax)",
  37383. image: {
  37384. source: "./media/characters/carbon/back-gigantamax.svg",
  37385. extra: 1796/1653,
  37386. bottom: 53/1849
  37387. }
  37388. },
  37389. maw: {
  37390. height: math.unit(0.48, "feet"),
  37391. name: "Maw",
  37392. image: {
  37393. source: "./media/characters/carbon/maw.svg"
  37394. }
  37395. },
  37396. mawGigantamax: {
  37397. height: math.unit(7.5, "feet"),
  37398. name: "Maw (Gigantamax)",
  37399. image: {
  37400. source: "./media/characters/carbon/maw-gigantamax.svg"
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(7 + 5/12, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37414. {
  37415. front: {
  37416. height: math.unit(6, "feet"),
  37417. name: "Front",
  37418. image: {
  37419. source: "./media/characters/maverick/front.svg",
  37420. extra: 1672/1661,
  37421. bottom: 85/1757
  37422. }
  37423. },
  37424. back: {
  37425. height: math.unit(6, "feet"),
  37426. name: "Back",
  37427. image: {
  37428. source: "./media/characters/maverick/back.svg",
  37429. extra: 1642/1631,
  37430. bottom: 38/1680
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(6, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(15, "feet"),
  37447. weight: math.unit(615, "lb"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/grockle/front.svg",
  37451. extra: 1535/1427,
  37452. bottom: 56/1591
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(15, "feet"),
  37460. default: true
  37461. },
  37462. {
  37463. name: "Large",
  37464. height: math.unit(150, "feet")
  37465. },
  37466. {
  37467. name: "Macro",
  37468. height: math.unit(1876, "feet")
  37469. },
  37470. {
  37471. name: "Mega Macro",
  37472. height: math.unit(121940, "feet")
  37473. },
  37474. {
  37475. name: "Giga Macro",
  37476. height: math.unit(750, "km")
  37477. },
  37478. {
  37479. name: "Tera Macro",
  37480. height: math.unit(750000, "km")
  37481. },
  37482. {
  37483. name: "Galactic",
  37484. height: math.unit(1.4e5, "km")
  37485. },
  37486. {
  37487. name: "Godlike",
  37488. height: math.unit(9.8e280, "galaxies")
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(11, "meters"),
  37497. weight: math.unit(20, "tonnes"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/alistair/front.svg",
  37501. extra: 1265/1009,
  37502. bottom: 93/1358
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(11, "meters"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(5 + 8/12, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/haruka/front.svg",
  37522. extra: 2012/1952,
  37523. bottom: 0/2012
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(5 + 8/12, "feet"),
  37531. default: true
  37532. },
  37533. ]
  37534. ))
  37535. characterMakers.push(() => makeCharacter(
  37536. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37537. {
  37538. back: {
  37539. height: math.unit(9, "feet"),
  37540. name: "Back",
  37541. image: {
  37542. source: "./media/characters/vivian-sylveon/back.svg",
  37543. extra: 1853/1714,
  37544. bottom: 0/1853
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(9, "feet"),
  37552. default: true
  37553. },
  37554. {
  37555. name: "Macro",
  37556. height: math.unit(500, "feet")
  37557. },
  37558. {
  37559. name: "Megamacro",
  37560. height: math.unit(600, "miles")
  37561. },
  37562. {
  37563. name: "Gigamacro",
  37564. height: math.unit(30000, "miles")
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37570. {
  37571. anthro: {
  37572. height: math.unit(5 + 10/12, "feet"),
  37573. weight: math.unit(100, "lb"),
  37574. name: "Anthro",
  37575. image: {
  37576. source: "./media/characters/daiki/anthro.svg",
  37577. extra: 1115/1027,
  37578. bottom: 69/1184
  37579. }
  37580. },
  37581. feral: {
  37582. height: math.unit(200, "feet"),
  37583. name: "Feral",
  37584. image: {
  37585. source: "./media/characters/daiki/feral.svg",
  37586. extra: 1256/313,
  37587. bottom: 39/1295
  37588. }
  37589. },
  37590. feralHead: {
  37591. height: math.unit(171, "feet"),
  37592. name: "Feral Head",
  37593. image: {
  37594. source: "./media/characters/daiki/feral-head.svg"
  37595. }
  37596. },
  37597. manaDragon: {
  37598. height: math.unit(170, "meters"),
  37599. name: "Mana-dragon",
  37600. image: {
  37601. source: "./media/characters/daiki/mana-dragon.svg",
  37602. extra: 763/420,
  37603. bottom: 97/860
  37604. }
  37605. },
  37606. },
  37607. [
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(5 + 10/12, "feet"),
  37611. default: true
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37617. {
  37618. fullyEquippedFront: {
  37619. height: math.unit(3 + 1/12, "feet"),
  37620. weight: math.unit(24, "lb"),
  37621. name: "Fully Equipped (Front)",
  37622. image: {
  37623. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37624. extra: 687/605,
  37625. bottom: 18/705
  37626. }
  37627. },
  37628. fullyEquippedBack: {
  37629. height: math.unit(3 + 1/12, "feet"),
  37630. weight: math.unit(24, "lb"),
  37631. name: "Fully Equipped (Back)",
  37632. image: {
  37633. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37634. extra: 689/590,
  37635. bottom: 18/707
  37636. }
  37637. },
  37638. dailyWear: {
  37639. height: math.unit(3 + 1/12, "feet"),
  37640. weight: math.unit(24, "lb"),
  37641. name: "Daily Wear",
  37642. image: {
  37643. source: "./media/characters/tea-spot/daily-wear.svg",
  37644. extra: 701/620,
  37645. bottom: 21/722
  37646. }
  37647. },
  37648. maidWork: {
  37649. height: math.unit(3 + 1/12, "feet"),
  37650. weight: math.unit(24, "lb"),
  37651. name: "Maid Work",
  37652. image: {
  37653. source: "./media/characters/tea-spot/maid-work.svg",
  37654. extra: 693/609,
  37655. bottom: 15/708
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(3 + 1/12, "feet"),
  37663. default: true
  37664. },
  37665. ]
  37666. ))
  37667. characterMakers.push(() => makeCharacter(
  37668. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37669. {
  37670. front: {
  37671. height: math.unit(175, "cm"),
  37672. weight: math.unit(75, "kg"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/chee/front.svg",
  37676. extra: 1796/1740,
  37677. bottom: 40/1836
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Micro-Micro",
  37684. height: math.unit(1, "nm")
  37685. },
  37686. {
  37687. name: "Micro-erst",
  37688. height: math.unit(1, "micrometer")
  37689. },
  37690. {
  37691. name: "Micro-er",
  37692. height: math.unit(1, "cm")
  37693. },
  37694. {
  37695. name: "Normal",
  37696. height: math.unit(175, "cm"),
  37697. default: true
  37698. },
  37699. {
  37700. name: "Macro",
  37701. height: math.unit(100, "m")
  37702. },
  37703. {
  37704. name: "Macro-er",
  37705. height: math.unit(1, "km")
  37706. },
  37707. {
  37708. name: "Macro-erst",
  37709. height: math.unit(10, "km")
  37710. },
  37711. {
  37712. name: "Macro-Macro",
  37713. height: math.unit(100, "km")
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(11 + 9/12, "feet"),
  37722. weight: math.unit(935, "lb"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/kingsley/front.svg",
  37726. extra: 1803/1674,
  37727. bottom: 127/1930
  37728. }
  37729. },
  37730. frontNude: {
  37731. height: math.unit(11 + 9/12, "feet"),
  37732. weight: math.unit(935, "lb"),
  37733. name: "Front (Nude)",
  37734. image: {
  37735. source: "./media/characters/kingsley/front-nude.svg",
  37736. extra: 1803/1674,
  37737. bottom: 127/1930
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(11 + 9/12, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37751. {
  37752. side: {
  37753. height: math.unit(9, "feet"),
  37754. name: "Side",
  37755. image: {
  37756. source: "./media/characters/rymel/side.svg",
  37757. extra: 792/469,
  37758. bottom: 121/913
  37759. }
  37760. },
  37761. maw: {
  37762. height: math.unit(2.4, "meters"),
  37763. name: "Maw",
  37764. image: {
  37765. source: "./media/characters/rymel/maw.svg"
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "House Drake",
  37772. height: math.unit(2, "feet")
  37773. },
  37774. {
  37775. name: "Reduced",
  37776. height: math.unit(4.5, "feet")
  37777. },
  37778. {
  37779. name: "Normal",
  37780. height: math.unit(9, "feet"),
  37781. default: true
  37782. },
  37783. ]
  37784. ))
  37785. characterMakers.push(() => makeCharacter(
  37786. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37787. {
  37788. front: {
  37789. height: math.unit(1.74, "meters"),
  37790. weight: math.unit(55, "kg"),
  37791. name: "Front",
  37792. image: {
  37793. source: "./media/characters/rubus/front.svg",
  37794. extra: 1894/1742,
  37795. bottom: 44/1938
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(1.74, "meters"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(5 + 2/12, "feet"),
  37812. weight: math.unit(112, "lb"),
  37813. name: "Front",
  37814. image: {
  37815. source: "./media/characters/cassie-kingston/front.svg",
  37816. extra: 1438/1390,
  37817. bottom: 47/1485
  37818. }
  37819. },
  37820. },
  37821. [
  37822. {
  37823. name: "Normal",
  37824. height: math.unit(5 + 2/12, "feet"),
  37825. default: true
  37826. },
  37827. {
  37828. name: "Macro",
  37829. height: math.unit(128, "feet")
  37830. },
  37831. {
  37832. name: "Megamacro",
  37833. height: math.unit(2.56, "miles")
  37834. },
  37835. ]
  37836. ))
  37837. characterMakers.push(() => makeCharacter(
  37838. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37839. {
  37840. front: {
  37841. height: math.unit(7, "feet"),
  37842. name: "Front",
  37843. image: {
  37844. source: "./media/characters/fox/front.svg",
  37845. extra: 1798/1703,
  37846. bottom: 55/1853
  37847. }
  37848. },
  37849. back: {
  37850. height: math.unit(7, "feet"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/fox/back.svg",
  37854. extra: 1748/1649,
  37855. bottom: 32/1780
  37856. }
  37857. },
  37858. head: {
  37859. height: math.unit(1.95, "feet"),
  37860. name: "Head",
  37861. image: {
  37862. source: "./media/characters/fox/head.svg"
  37863. }
  37864. },
  37865. dick: {
  37866. height: math.unit(1.33, "feet"),
  37867. name: "Dick",
  37868. image: {
  37869. source: "./media/characters/fox/dick.svg"
  37870. }
  37871. },
  37872. foot: {
  37873. height: math.unit(1, "feet"),
  37874. name: "Foot",
  37875. image: {
  37876. source: "./media/characters/fox/foot.svg"
  37877. }
  37878. },
  37879. paw: {
  37880. height: math.unit(0.92, "feet"),
  37881. name: "Paw",
  37882. image: {
  37883. source: "./media/characters/fox/paw.svg"
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Small",
  37890. height: math.unit(3, "inches")
  37891. },
  37892. {
  37893. name: "\"Realistic\"",
  37894. height: math.unit(7, "feet")
  37895. },
  37896. {
  37897. name: "Normal",
  37898. height: math.unit(150, "feet"),
  37899. default: true
  37900. },
  37901. {
  37902. name: "BIG",
  37903. height: math.unit(1200, "feet")
  37904. },
  37905. {
  37906. name: "👀",
  37907. height: math.unit(5, "miles")
  37908. },
  37909. {
  37910. name: "👀👀👀",
  37911. height: math.unit(64, "miles")
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(625, "feet"),
  37920. name: "Front",
  37921. image: {
  37922. source: "./media/characters/asonja-rossa/front.svg",
  37923. extra: 1833/1686,
  37924. bottom: 24/1857
  37925. }
  37926. },
  37927. back: {
  37928. height: math.unit(625, "feet"),
  37929. name: "Back",
  37930. image: {
  37931. source: "./media/characters/asonja-rossa/back.svg",
  37932. extra: 1852/1753,
  37933. bottom: 26/1878
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Macro",
  37940. height: math.unit(625, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37947. {
  37948. side: {
  37949. height: math.unit(8, "feet"),
  37950. name: "Side",
  37951. image: {
  37952. source: "./media/characters/rezukii/side.svg",
  37953. extra: 979/542,
  37954. bottom: 87/1066
  37955. }
  37956. },
  37957. sitting: {
  37958. height: math.unit(14.6, "feet"),
  37959. name: "Sitting",
  37960. image: {
  37961. source: "./media/characters/rezukii/sitting.svg",
  37962. extra: 1023/813,
  37963. bottom: 45/1068
  37964. }
  37965. },
  37966. },
  37967. [
  37968. {
  37969. name: "Tiny",
  37970. height: math.unit(2, "feet")
  37971. },
  37972. {
  37973. name: "Smol",
  37974. height: math.unit(4, "feet")
  37975. },
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(8, "feet"),
  37979. default: true
  37980. },
  37981. {
  37982. name: "Big",
  37983. height: math.unit(12, "feet")
  37984. },
  37985. {
  37986. name: "Macro",
  37987. height: math.unit(30, "feet")
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(14, "feet"),
  37996. weight: math.unit(9.5, "tonnes"),
  37997. name: "Front",
  37998. image: {
  37999. source: "./media/characters/dawnheart/front.svg",
  38000. extra: 2792/2675,
  38001. bottom: 64/2856
  38002. }
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "Normal",
  38008. height: math.unit(14, "feet"),
  38009. default: true
  38010. },
  38011. ]
  38012. ))
  38013. characterMakers.push(() => makeCharacter(
  38014. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38015. {
  38016. front: {
  38017. height: math.unit(1.7, "m"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/gladi/front.svg",
  38021. extra: 1460/1362,
  38022. bottom: 19/1479
  38023. }
  38024. },
  38025. back: {
  38026. height: math.unit(1.7, "m"),
  38027. name: "Back",
  38028. image: {
  38029. source: "./media/characters/gladi/back.svg",
  38030. extra: 1459/1357,
  38031. bottom: 12/1471
  38032. }
  38033. },
  38034. feral: {
  38035. height: math.unit(2.05, "m"),
  38036. name: "Feral",
  38037. image: {
  38038. source: "./media/characters/gladi/feral.svg",
  38039. extra: 821/557,
  38040. bottom: 91/912
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Shortest",
  38047. height: math.unit(70, "cm")
  38048. },
  38049. {
  38050. name: "Normal",
  38051. height: math.unit(1.7, "m")
  38052. },
  38053. {
  38054. name: "Macro",
  38055. height: math.unit(10, "m"),
  38056. default: true
  38057. },
  38058. {
  38059. name: "Tallest",
  38060. height: math.unit(200, "m")
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38066. {
  38067. front: {
  38068. height: math.unit(5 + 7/12, "feet"),
  38069. weight: math.unit(2, "tons"),
  38070. name: "Front",
  38071. image: {
  38072. source: "./media/characters/erdno/front.svg",
  38073. extra: 1234/1129,
  38074. bottom: 35/1269
  38075. }
  38076. },
  38077. angled: {
  38078. height: math.unit(5 + 7/12, "feet"),
  38079. weight: math.unit(2, "tons"),
  38080. name: "Angled",
  38081. image: {
  38082. source: "./media/characters/erdno/angled.svg",
  38083. extra: 1185/1139,
  38084. bottom: 36/1221
  38085. }
  38086. },
  38087. side: {
  38088. height: math.unit(5 + 7/12, "feet"),
  38089. weight: math.unit(2, "tons"),
  38090. name: "Side",
  38091. image: {
  38092. source: "./media/characters/erdno/side.svg",
  38093. extra: 1191/1144,
  38094. bottom: 40/1231
  38095. }
  38096. },
  38097. back: {
  38098. height: math.unit(5 + 7/12, "feet"),
  38099. weight: math.unit(2, "tons"),
  38100. name: "Back",
  38101. image: {
  38102. source: "./media/characters/erdno/back.svg",
  38103. extra: 1202/1146,
  38104. bottom: 17/1219
  38105. }
  38106. },
  38107. frontNsfw: {
  38108. height: math.unit(5 + 7/12, "feet"),
  38109. weight: math.unit(2, "tons"),
  38110. name: "Front (NSFW)",
  38111. image: {
  38112. source: "./media/characters/erdno/front-nsfw.svg",
  38113. extra: 1234/1129,
  38114. bottom: 35/1269
  38115. }
  38116. },
  38117. angledNsfw: {
  38118. height: math.unit(5 + 7/12, "feet"),
  38119. weight: math.unit(2, "tons"),
  38120. name: "Angled (NSFW)",
  38121. image: {
  38122. source: "./media/characters/erdno/angled-nsfw.svg",
  38123. extra: 1185/1139,
  38124. bottom: 36/1221
  38125. }
  38126. },
  38127. sideNsfw: {
  38128. height: math.unit(5 + 7/12, "feet"),
  38129. weight: math.unit(2, "tons"),
  38130. name: "Side (NSFW)",
  38131. image: {
  38132. source: "./media/characters/erdno/side-nsfw.svg",
  38133. extra: 1191/1144,
  38134. bottom: 40/1231
  38135. }
  38136. },
  38137. backNsfw: {
  38138. height: math.unit(5 + 7/12, "feet"),
  38139. weight: math.unit(2, "tons"),
  38140. name: "Back (NSFW)",
  38141. image: {
  38142. source: "./media/characters/erdno/back-nsfw.svg",
  38143. extra: 1202/1146,
  38144. bottom: 17/1219
  38145. }
  38146. },
  38147. frontHyper: {
  38148. height: math.unit(5 + 7/12, "feet"),
  38149. weight: math.unit(2, "tons"),
  38150. name: "Front (Hyper)",
  38151. image: {
  38152. source: "./media/characters/erdno/front-hyper.svg",
  38153. extra: 1298/1136,
  38154. bottom: 35/1333
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(5 + 7/12, "feet"),
  38162. default: true
  38163. },
  38164. {
  38165. name: "Big",
  38166. height: math.unit(5.7, "meters")
  38167. },
  38168. {
  38169. name: "Macro",
  38170. height: math.unit(5.7, "kilometers")
  38171. },
  38172. {
  38173. name: "Megamacro",
  38174. height: math.unit(5.7, "earths")
  38175. },
  38176. ]
  38177. ))
  38178. characterMakers.push(() => makeCharacter(
  38179. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38180. {
  38181. front: {
  38182. height: math.unit(5 + 10/12, "feet"),
  38183. weight: math.unit(150, "lb"),
  38184. name: "Front",
  38185. image: {
  38186. source: "./media/characters/jamie/front.svg",
  38187. extra: 1908/1768,
  38188. bottom: 19/1927
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Minimum",
  38195. height: math.unit(2, "cm")
  38196. },
  38197. {
  38198. name: "Micro",
  38199. height: math.unit(3, "inches")
  38200. },
  38201. {
  38202. name: "Normal",
  38203. height: math.unit(5 + 10/12, "feet"),
  38204. default: true
  38205. },
  38206. {
  38207. name: "Macro",
  38208. height: math.unit(150, "feet")
  38209. },
  38210. {
  38211. name: "Megamacro",
  38212. height: math.unit(10000, "m")
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(2, "meters"),
  38221. weight: math.unit(100, "kg"),
  38222. name: "Front",
  38223. image: {
  38224. source: "./media/characters/shiron/front.svg",
  38225. extra: 2103/1985,
  38226. bottom: 98/2201
  38227. }
  38228. },
  38229. back: {
  38230. height: math.unit(2, "meters"),
  38231. weight: math.unit(100, "kg"),
  38232. name: "Back",
  38233. image: {
  38234. source: "./media/characters/shiron/back.svg",
  38235. extra: 2110/2015,
  38236. bottom: 89/2199
  38237. }
  38238. },
  38239. hand: {
  38240. height: math.unit(0.96, "feet"),
  38241. name: "Hand",
  38242. image: {
  38243. source: "./media/characters/shiron/hand.svg"
  38244. }
  38245. },
  38246. foot: {
  38247. height: math.unit(1.464, "feet"),
  38248. name: "Foot",
  38249. image: {
  38250. source: "./media/characters/shiron/foot.svg"
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(2, "meters")
  38258. },
  38259. {
  38260. name: "Macro",
  38261. height: math.unit(500, "meters"),
  38262. default: true
  38263. },
  38264. {
  38265. name: "Megamacro",
  38266. height: math.unit(20, "km")
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(6, "feet"),
  38275. name: "Front",
  38276. image: {
  38277. source: "./media/characters/sam/front.svg",
  38278. extra: 849/826,
  38279. bottom: 19/868
  38280. }
  38281. },
  38282. },
  38283. [
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(6, "feet"),
  38287. default: true
  38288. },
  38289. ]
  38290. ))
  38291. characterMakers.push(() => makeCharacter(
  38292. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38293. {
  38294. front: {
  38295. height: math.unit(8 + 4/12, "feet"),
  38296. weight: math.unit(122, "kg"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/namori-kurogawa/front.svg",
  38300. extra: 1894/1576,
  38301. bottom: 34/1928
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(8 + 4/12, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(9, "feet"),
  38318. weight: math.unit(621, "lb"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/unmru/front.svg",
  38322. extra: 1853/1747,
  38323. bottom: 73/1926
  38324. }
  38325. },
  38326. side: {
  38327. height: math.unit(9, "feet"),
  38328. weight: math.unit(621, "lb"),
  38329. name: "Side",
  38330. image: {
  38331. source: "./media/characters/unmru/side.svg",
  38332. extra: 1781/1671,
  38333. bottom: 127/1908
  38334. }
  38335. },
  38336. back: {
  38337. height: math.unit(9, "feet"),
  38338. weight: math.unit(621, "lb"),
  38339. name: "Back",
  38340. image: {
  38341. source: "./media/characters/unmru/back.svg",
  38342. extra: 1894/1765,
  38343. bottom: 75/1969
  38344. }
  38345. },
  38346. dick: {
  38347. height: math.unit(3, "feet"),
  38348. weight: math.unit(35, "lb"),
  38349. name: "Dick",
  38350. image: {
  38351. source: "./media/characters/unmru/dick.svg"
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(9, "feet")
  38359. },
  38360. {
  38361. name: "Natural",
  38362. height: math.unit(27, "feet"),
  38363. default: true
  38364. },
  38365. {
  38366. name: "Giant",
  38367. height: math.unit(90, "feet")
  38368. },
  38369. {
  38370. name: "Kaiju",
  38371. height: math.unit(270, "feet")
  38372. },
  38373. {
  38374. name: "Macro",
  38375. height: math.unit(900, "feet")
  38376. },
  38377. {
  38378. name: "Macro+",
  38379. height: math.unit(2700, "feet")
  38380. },
  38381. {
  38382. name: "Megamacro",
  38383. height: math.unit(9000, "feet")
  38384. },
  38385. {
  38386. name: "City-Crushing",
  38387. height: math.unit(27000, "feet")
  38388. },
  38389. {
  38390. name: "Mountain-Mashing",
  38391. height: math.unit(90000, "feet")
  38392. },
  38393. {
  38394. name: "Earth-Eclipsing",
  38395. height: math.unit(2.7e8, "feet")
  38396. },
  38397. {
  38398. name: "Sol-Swallowing",
  38399. height: math.unit(9e10, "feet")
  38400. },
  38401. {
  38402. name: "Majoris-Munching",
  38403. height: math.unit(2.7e13, "feet")
  38404. },
  38405. ]
  38406. ))
  38407. characterMakers.push(() => makeCharacter(
  38408. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38409. {
  38410. front: {
  38411. height: math.unit(1, "inch"),
  38412. name: "Front",
  38413. image: {
  38414. source: "./media/characters/squeaks-mouse/front.svg",
  38415. extra: 352/308,
  38416. bottom: 25/377
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Micro",
  38423. height: math.unit(1, "inch"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38430. {
  38431. side: {
  38432. height: math.unit(35, "feet"),
  38433. name: "Side",
  38434. image: {
  38435. source: "./media/characters/sayko/side.svg",
  38436. extra: 1697/1021,
  38437. bottom: 82/1779
  38438. }
  38439. },
  38440. head: {
  38441. height: math.unit(16, "feet"),
  38442. name: "Head",
  38443. image: {
  38444. source: "./media/characters/sayko/head.svg"
  38445. }
  38446. },
  38447. forepaw: {
  38448. height: math.unit(7.85, "feet"),
  38449. name: "Forepaw",
  38450. image: {
  38451. source: "./media/characters/sayko/forepaw.svg"
  38452. }
  38453. },
  38454. hindpaw: {
  38455. height: math.unit(8.8, "feet"),
  38456. name: "Hindpaw",
  38457. image: {
  38458. source: "./media/characters/sayko/hindpaw.svg"
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Normal",
  38465. height: math.unit(35, "feet"),
  38466. default: true
  38467. },
  38468. {
  38469. name: "Colossus",
  38470. height: math.unit(100, "meters")
  38471. },
  38472. {
  38473. name: "\"Small\" Deity",
  38474. height: math.unit(1, "km")
  38475. },
  38476. {
  38477. name: "\"Large\" Deity",
  38478. height: math.unit(15, "km")
  38479. },
  38480. ]
  38481. ))
  38482. characterMakers.push(() => makeCharacter(
  38483. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38484. {
  38485. front: {
  38486. height: math.unit(6, "feet"),
  38487. weight: math.unit(250, "lb"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/mukiro/front.svg",
  38491. extra: 1368/1310,
  38492. bottom: 34/1402
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(6, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(12 + 4/12, "feet"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38512. extra: 1346/1311,
  38513. bottom: 65/1411
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Base",
  38520. height: math.unit(12 + 4/12, "feet"),
  38521. default: true
  38522. },
  38523. {
  38524. name: "Macro",
  38525. height: math.unit(150, "feet")
  38526. },
  38527. {
  38528. name: "Mega",
  38529. height: math.unit(2, "miles")
  38530. },
  38531. {
  38532. name: "Demi God",
  38533. height: math.unit(4, "AU")
  38534. },
  38535. {
  38536. name: "God Size",
  38537. height: math.unit(1, "universe")
  38538. },
  38539. ]
  38540. ))
  38541. characterMakers.push(() => makeCharacter(
  38542. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38543. {
  38544. front: {
  38545. height: math.unit(3 + 3/12, "feet"),
  38546. weight: math.unit(88, "lb"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/trey/front.svg",
  38550. extra: 1815/1509,
  38551. bottom: 60/1875
  38552. }
  38553. },
  38554. },
  38555. [
  38556. {
  38557. name: "Normal",
  38558. height: math.unit(3 + 3/12, "feet"),
  38559. default: true
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38565. {
  38566. front: {
  38567. height: math.unit(4, "meters"),
  38568. name: "Front",
  38569. image: {
  38570. source: "./media/characters/adelonda/front.svg",
  38571. extra: 1077/982,
  38572. bottom: 39/1116
  38573. }
  38574. },
  38575. back: {
  38576. height: math.unit(4, "meters"),
  38577. name: "Back",
  38578. image: {
  38579. source: "./media/characters/adelonda/back.svg",
  38580. extra: 1105/1003,
  38581. bottom: 25/1130
  38582. }
  38583. },
  38584. feral: {
  38585. height: math.unit(40/1.5, "meters"),
  38586. name: "Feral",
  38587. image: {
  38588. source: "./media/characters/adelonda/feral.svg",
  38589. extra: 597/271,
  38590. bottom: 387/984
  38591. }
  38592. },
  38593. },
  38594. [
  38595. {
  38596. name: "Normal",
  38597. height: math.unit(4, "meters"),
  38598. default: true
  38599. },
  38600. ]
  38601. ))
  38602. characterMakers.push(() => makeCharacter(
  38603. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38604. {
  38605. front: {
  38606. height: math.unit(8 + 4/12, "feet"),
  38607. weight: math.unit(670, "lb"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/acadiel/front.svg",
  38611. extra: 1901/1595,
  38612. bottom: 142/2043
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(8 + 4/12, "feet"),
  38620. default: true
  38621. },
  38622. {
  38623. name: "Macro",
  38624. height: math.unit(200, "feet")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(6 + 2/12, "feet"),
  38633. weight: math.unit(185, "lb"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/kayne-ein/front.svg",
  38637. extra: 1780/1560,
  38638. bottom: 81/1861
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Normal",
  38645. height: math.unit(6 + 2/12, "feet"),
  38646. default: true
  38647. },
  38648. {
  38649. name: "Transformation Stage",
  38650. height: math.unit(15, "feet")
  38651. },
  38652. {
  38653. name: "Macro",
  38654. height: math.unit(150, "feet")
  38655. },
  38656. {
  38657. name: "Earth's Shadow",
  38658. height: math.unit(6200, "miles")
  38659. },
  38660. {
  38661. name: "Universal Demon",
  38662. height: math.unit(28e9, "parsecs")
  38663. },
  38664. {
  38665. name: "Multiverse God",
  38666. height: math.unit(3, "multiverses")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(5 + 5/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/fawn/front.svg",
  38678. extra: 1873/1731,
  38679. bottom: 95/1968
  38680. }
  38681. },
  38682. back: {
  38683. height: math.unit(5 + 5/12, "feet"),
  38684. name: "Back",
  38685. image: {
  38686. source: "./media/characters/fawn/back.svg",
  38687. extra: 1813/1700,
  38688. bottom: 14/1827
  38689. }
  38690. },
  38691. hoof: {
  38692. height: math.unit(1.45, "feet"),
  38693. name: "Hoof",
  38694. image: {
  38695. source: "./media/characters/fawn/hoof.svg"
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(5 + 5/12, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(2 + 5/12, "feet"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/orion/front.svg",
  38715. extra: 1366/1304,
  38716. bottom: 43/1409
  38717. }
  38718. },
  38719. paw: {
  38720. height: math.unit(0.52, "feet"),
  38721. name: "Paw",
  38722. image: {
  38723. source: "./media/characters/orion/paw.svg"
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(2 + 5/12, "feet"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(5 + 10/12, "feet"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/vera/front.svg",
  38743. extra: 1680/1575,
  38744. bottom: 49/1729
  38745. }
  38746. },
  38747. back: {
  38748. height: math.unit(5 + 10/12, "feet"),
  38749. name: "Back",
  38750. image: {
  38751. source: "./media/characters/vera/back.svg",
  38752. extra: 1700/1588,
  38753. bottom: 18/1718
  38754. }
  38755. },
  38756. arcanine: {
  38757. height: math.unit(6 + 8/12, "feet"),
  38758. name: "Arcanine",
  38759. image: {
  38760. source: "./media/characters/vera/arcanine.svg",
  38761. extra: 1590/1511,
  38762. bottom: 71/1661
  38763. }
  38764. },
  38765. maw: {
  38766. height: math.unit(0.82, "feet"),
  38767. name: "Maw",
  38768. image: {
  38769. source: "./media/characters/vera/maw.svg"
  38770. }
  38771. },
  38772. mawArcanine: {
  38773. height: math.unit(0.97, "feet"),
  38774. name: "Maw (Arcanine)",
  38775. image: {
  38776. source: "./media/characters/vera/maw-arcanine.svg"
  38777. }
  38778. },
  38779. paw: {
  38780. height: math.unit(0.75, "feet"),
  38781. name: "Paw",
  38782. image: {
  38783. source: "./media/characters/vera/paw.svg"
  38784. }
  38785. },
  38786. pawprint: {
  38787. height: math.unit(0.52, "feet"),
  38788. name: "Pawprint",
  38789. image: {
  38790. source: "./media/characters/vera/pawprint.svg"
  38791. }
  38792. },
  38793. },
  38794. [
  38795. {
  38796. name: "Normal",
  38797. height: math.unit(5 + 10/12, "feet"),
  38798. default: true
  38799. },
  38800. {
  38801. name: "Macro",
  38802. height: math.unit(75, "feet")
  38803. },
  38804. ]
  38805. ))
  38806. characterMakers.push(() => makeCharacter(
  38807. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38808. {
  38809. front: {
  38810. height: math.unit(4, "feet"),
  38811. weight: math.unit(40, "lb"),
  38812. name: "Front",
  38813. image: {
  38814. source: "./media/characters/orvan-rabbit/front.svg",
  38815. extra: 1896/1642,
  38816. bottom: 29/1925
  38817. }
  38818. },
  38819. },
  38820. [
  38821. {
  38822. name: "Normal",
  38823. height: math.unit(4, "feet"),
  38824. default: true
  38825. },
  38826. ]
  38827. ))
  38828. characterMakers.push(() => makeCharacter(
  38829. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38830. {
  38831. front: {
  38832. height: math.unit(6, "feet"),
  38833. weight: math.unit(168, "lb"),
  38834. name: "Front",
  38835. image: {
  38836. source: "./media/characters/lisa/front.svg",
  38837. extra: 2065/1867,
  38838. bottom: 46/2111
  38839. }
  38840. },
  38841. back: {
  38842. height: math.unit(6, "feet"),
  38843. weight: math.unit(168, "lb"),
  38844. name: "Back",
  38845. image: {
  38846. source: "./media/characters/lisa/back.svg",
  38847. extra: 1982/1838,
  38848. bottom: 29/2011
  38849. }
  38850. },
  38851. maw: {
  38852. height: math.unit(0.81, "feet"),
  38853. name: "Maw",
  38854. image: {
  38855. source: "./media/characters/lisa/maw.svg"
  38856. }
  38857. },
  38858. paw: {
  38859. height: math.unit(0.9, "feet"),
  38860. name: "Paw",
  38861. image: {
  38862. source: "./media/characters/lisa/paw.svg"
  38863. }
  38864. },
  38865. caribousune: {
  38866. height: math.unit(7 + 2/12, "feet"),
  38867. weight: math.unit(268, "lb"),
  38868. name: "Caribousune",
  38869. image: {
  38870. source: "./media/characters/lisa/caribousune.svg",
  38871. extra: 1843/1633,
  38872. bottom: 29/1872
  38873. }
  38874. },
  38875. frontCaribousune: {
  38876. height: math.unit(7 + 2/12, "feet"),
  38877. weight: math.unit(268, "lb"),
  38878. name: "Front (Caribousune)",
  38879. image: {
  38880. source: "./media/characters/lisa/front-caribousune.svg",
  38881. extra: 1818/1638,
  38882. bottom: 52/1870
  38883. }
  38884. },
  38885. sideCaribousune: {
  38886. height: math.unit(7 + 2/12, "feet"),
  38887. weight: math.unit(268, "lb"),
  38888. name: "Side (Caribousune)",
  38889. image: {
  38890. source: "./media/characters/lisa/side-caribousune.svg",
  38891. extra: 1851/1635,
  38892. bottom: 16/1867
  38893. }
  38894. },
  38895. backCaribousune: {
  38896. height: math.unit(7 + 2/12, "feet"),
  38897. weight: math.unit(268, "lb"),
  38898. name: "Back (Caribousune)",
  38899. image: {
  38900. source: "./media/characters/lisa/back-caribousune.svg",
  38901. extra: 1801/1604,
  38902. bottom: 44/1845
  38903. }
  38904. },
  38905. caribou: {
  38906. height: math.unit(7 + 2/12, "feet"),
  38907. weight: math.unit(268, "lb"),
  38908. name: "Caribou",
  38909. image: {
  38910. source: "./media/characters/lisa/caribou.svg",
  38911. extra: 1843/1633,
  38912. bottom: 29/1872
  38913. }
  38914. },
  38915. frontCaribou: {
  38916. height: math.unit(7 + 2/12, "feet"),
  38917. weight: math.unit(268, "lb"),
  38918. name: "Front (Caribou)",
  38919. image: {
  38920. source: "./media/characters/lisa/front-caribou.svg",
  38921. extra: 1818/1638,
  38922. bottom: 52/1870
  38923. }
  38924. },
  38925. sideCaribou: {
  38926. height: math.unit(7 + 2/12, "feet"),
  38927. weight: math.unit(268, "lb"),
  38928. name: "Side (Caribou)",
  38929. image: {
  38930. source: "./media/characters/lisa/side-caribou.svg",
  38931. extra: 1851/1635,
  38932. bottom: 16/1867
  38933. }
  38934. },
  38935. backCaribou: {
  38936. height: math.unit(7 + 2/12, "feet"),
  38937. weight: math.unit(268, "lb"),
  38938. name: "Back (Caribou)",
  38939. image: {
  38940. source: "./media/characters/lisa/back-caribou.svg",
  38941. extra: 1801/1604,
  38942. bottom: 44/1845
  38943. }
  38944. },
  38945. mawCaribou: {
  38946. height: math.unit(1.45, "feet"),
  38947. name: "Maw (Caribou)",
  38948. image: {
  38949. source: "./media/characters/lisa/maw-caribou.svg"
  38950. }
  38951. },
  38952. mawCaribousune: {
  38953. height: math.unit(1.45, "feet"),
  38954. name: "Maw (Caribousune)",
  38955. image: {
  38956. source: "./media/characters/lisa/maw-caribousune.svg"
  38957. }
  38958. },
  38959. pawCaribousune: {
  38960. height: math.unit(1.61, "feet"),
  38961. name: "Paw (Caribou)",
  38962. image: {
  38963. source: "./media/characters/lisa/paw-caribousune.svg"
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(6, "feet")
  38971. },
  38972. {
  38973. name: "God Size",
  38974. height: math.unit(72, "feet"),
  38975. default: true
  38976. },
  38977. {
  38978. name: "Towering",
  38979. height: math.unit(288, "feet")
  38980. },
  38981. {
  38982. name: "City Size",
  38983. height: math.unit(48384, "feet")
  38984. },
  38985. {
  38986. name: "Continental",
  38987. height: math.unit(4200, "miles")
  38988. },
  38989. {
  38990. name: "Planet Eater",
  38991. height: math.unit(42, "earths")
  38992. },
  38993. {
  38994. name: "Star Swallower",
  38995. height: math.unit(42, "solarradii")
  38996. },
  38997. {
  38998. name: "System Swallower",
  38999. height: math.unit(84000, "AU")
  39000. },
  39001. {
  39002. name: "Galaxy Gobbler",
  39003. height: math.unit(42, "galaxies")
  39004. },
  39005. {
  39006. name: "Universe Devourer",
  39007. height: math.unit(42, "universes")
  39008. },
  39009. {
  39010. name: "Multiverse Muncher",
  39011. height: math.unit(42, "multiverses")
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39017. {
  39018. front: {
  39019. height: math.unit(36, "feet"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/shadow-rat/front.svg",
  39023. extra: 1845/1758,
  39024. bottom: 83/1928
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Macro",
  39031. height: math.unit(36, "feet"),
  39032. default: true
  39033. },
  39034. ]
  39035. ))
  39036. characterMakers.push(() => makeCharacter(
  39037. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39038. {
  39039. side: {
  39040. height: math.unit(8, "feet"),
  39041. weight: math.unit(2630, "lb"),
  39042. name: "Side",
  39043. image: {
  39044. source: "./media/characters/torallia/side.svg",
  39045. extra: 2164/2021,
  39046. bottom: 371/2535
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Mortal Interaction",
  39053. height: math.unit(8, "feet")
  39054. },
  39055. {
  39056. name: "Natural",
  39057. height: math.unit(24, "feet"),
  39058. default: true
  39059. },
  39060. {
  39061. name: "Giant",
  39062. height: math.unit(80, "feet")
  39063. },
  39064. {
  39065. name: "Kaiju",
  39066. height: math.unit(240, "feet")
  39067. },
  39068. {
  39069. name: "Macro",
  39070. height: math.unit(800, "feet")
  39071. },
  39072. {
  39073. name: "Macro+",
  39074. height: math.unit(2400, "feet")
  39075. },
  39076. {
  39077. name: "Macro++",
  39078. height: math.unit(8000, "feet")
  39079. },
  39080. {
  39081. name: "City-Crushing",
  39082. height: math.unit(24000, "feet")
  39083. },
  39084. {
  39085. name: "Mountain-Mashing",
  39086. height: math.unit(80000, "feet")
  39087. },
  39088. {
  39089. name: "District Demolisher",
  39090. height: math.unit(240000, "feet")
  39091. },
  39092. {
  39093. name: "Tri-County Terror",
  39094. height: math.unit(800000, "feet")
  39095. },
  39096. {
  39097. name: "State Smasher",
  39098. height: math.unit(2.4e6, "feet")
  39099. },
  39100. {
  39101. name: "Nation Nemesis",
  39102. height: math.unit(8e6, "feet")
  39103. },
  39104. {
  39105. name: "Continent Cracker",
  39106. height: math.unit(2.4e7, "feet")
  39107. },
  39108. {
  39109. name: "Planet-Pillaging",
  39110. height: math.unit(8e7, "feet")
  39111. },
  39112. {
  39113. name: "Earth-Eclipsing",
  39114. height: math.unit(2.4e8, "feet")
  39115. },
  39116. {
  39117. name: "Jovian-Jostling",
  39118. height: math.unit(8e8, "feet")
  39119. },
  39120. {
  39121. name: "Gas Giant Gulper",
  39122. height: math.unit(2.4e9, "feet")
  39123. },
  39124. {
  39125. name: "Astral Annihilator",
  39126. height: math.unit(8e9, "feet")
  39127. },
  39128. {
  39129. name: "Celestial Conqueror",
  39130. height: math.unit(2.4e10, "feet")
  39131. },
  39132. {
  39133. name: "Sol-Swallowing",
  39134. height: math.unit(8e10, "feet")
  39135. },
  39136. {
  39137. name: "Hunter of the Heavens",
  39138. height: math.unit(2.4e13, "feet")
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(6 + 8/12, "feet"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/rebecca-pawlson/front.svg",
  39150. extra: 1737/1596,
  39151. bottom: 107/1844
  39152. }
  39153. },
  39154. back: {
  39155. height: math.unit(6 + 8/12, "feet"),
  39156. name: "Back",
  39157. image: {
  39158. source: "./media/characters/rebecca-pawlson/back.svg",
  39159. extra: 1702/1523,
  39160. bottom: 86/1788
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(6 + 8/12, "feet")
  39168. },
  39169. {
  39170. name: "Mini Macro",
  39171. height: math.unit(10, "feet"),
  39172. default: true
  39173. },
  39174. {
  39175. name: "Macro",
  39176. height: math.unit(100, "feet")
  39177. },
  39178. {
  39179. name: "Mega Macro",
  39180. height: math.unit(2500, "feet")
  39181. },
  39182. {
  39183. name: "Giga Macro",
  39184. height: math.unit(50, "miles")
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(7 + 6/12, "feet"),
  39193. weight: math.unit(600, "lb"),
  39194. name: "Front",
  39195. image: {
  39196. source: "./media/characters/moxie-nova/front.svg",
  39197. extra: 1734/1652,
  39198. bottom: 41/1775
  39199. }
  39200. },
  39201. },
  39202. [
  39203. {
  39204. name: "Normal",
  39205. height: math.unit(7 + 6/12, "feet"),
  39206. default: true
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39212. {
  39213. goat: {
  39214. height: math.unit(4, "feet"),
  39215. weight: math.unit(180, "lb"),
  39216. name: "Goat",
  39217. image: {
  39218. source: "./media/characters/tiffany/goat.svg",
  39219. extra: 1845/1595,
  39220. bottom: 106/1951
  39221. }
  39222. },
  39223. front: {
  39224. height: math.unit(5, "feet"),
  39225. weight: math.unit(150, "lb"),
  39226. name: "Foxcoon",
  39227. image: {
  39228. source: "./media/characters/tiffany/foxcoon.svg",
  39229. extra: 1941/1845,
  39230. bottom: 58/1999
  39231. }
  39232. },
  39233. },
  39234. [
  39235. {
  39236. name: "Normal",
  39237. height: math.unit(5, "feet"),
  39238. default: true
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39244. {
  39245. front: {
  39246. height: math.unit(8, "feet"),
  39247. weight: math.unit(300, "lb"),
  39248. name: "Front",
  39249. image: {
  39250. source: "./media/characters/raxinath/front.svg",
  39251. extra: 1407/1309,
  39252. bottom: 39/1446
  39253. }
  39254. },
  39255. back: {
  39256. height: math.unit(8, "feet"),
  39257. weight: math.unit(300, "lb"),
  39258. name: "Back",
  39259. image: {
  39260. source: "./media/characters/raxinath/back.svg",
  39261. extra: 1405/1315,
  39262. bottom: 9/1414
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Speck",
  39269. height: math.unit(0.5, "nm")
  39270. },
  39271. {
  39272. name: "Micro",
  39273. height: math.unit(3, "inches")
  39274. },
  39275. {
  39276. name: "Kobold",
  39277. height: math.unit(3, "feet")
  39278. },
  39279. {
  39280. name: "Normal",
  39281. height: math.unit(8, "feet"),
  39282. default: true
  39283. },
  39284. {
  39285. name: "Giant",
  39286. height: math.unit(50, "feet")
  39287. },
  39288. {
  39289. name: "Macro",
  39290. height: math.unit(1000, "feet")
  39291. },
  39292. {
  39293. name: "Megamacro",
  39294. height: math.unit(1, "mile")
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(10, "feet"),
  39303. weight: math.unit(1442, "lb"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/mal-dragon/front.svg",
  39307. extra: 1515/1444,
  39308. bottom: 113/1628
  39309. }
  39310. },
  39311. back: {
  39312. height: math.unit(10, "feet"),
  39313. weight: math.unit(1442, "lb"),
  39314. name: "Back",
  39315. image: {
  39316. source: "./media/characters/mal-dragon/back.svg",
  39317. extra: 1527/1434,
  39318. bottom: 25/1552
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Mortal Interaction",
  39325. height: math.unit(10, "feet"),
  39326. default: true
  39327. },
  39328. {
  39329. name: "Large",
  39330. height: math.unit(30, "feet")
  39331. },
  39332. {
  39333. name: "Kaiju",
  39334. height: math.unit(300, "feet")
  39335. },
  39336. {
  39337. name: "Megamacro",
  39338. height: math.unit(10000, "feet")
  39339. },
  39340. {
  39341. name: "Continent Cracker",
  39342. height: math.unit(30000000, "feet")
  39343. },
  39344. {
  39345. name: "Sol-Swallowing",
  39346. height: math.unit(1e11, "feet")
  39347. },
  39348. {
  39349. name: "Light Universal",
  39350. height: math.unit(5, "universes")
  39351. },
  39352. {
  39353. name: "Universe Atoms",
  39354. height: math.unit(1.829e9, "universes")
  39355. },
  39356. {
  39357. name: "Light Multiversal",
  39358. height: math.unit(5, "multiverses")
  39359. },
  39360. {
  39361. name: "Multiverse Atoms",
  39362. height: math.unit(1.829e9, "multiverses")
  39363. },
  39364. {
  39365. name: "Fabric of Time",
  39366. height: math.unit(1e262, "multiverses")
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39372. {
  39373. front: {
  39374. height: math.unit(9, "feet"),
  39375. weight: math.unit(1050, "lb"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/tabitha/front.svg",
  39379. extra: 2083/1994,
  39380. bottom: 68/2151
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Baseline",
  39387. height: math.unit(9, "feet"),
  39388. default: true
  39389. },
  39390. {
  39391. name: "Giant",
  39392. height: math.unit(90, "feet")
  39393. },
  39394. {
  39395. name: "Macro",
  39396. height: math.unit(900, "feet")
  39397. },
  39398. {
  39399. name: "Megamacro",
  39400. height: math.unit(9000, "feet")
  39401. },
  39402. {
  39403. name: "City-Crushing",
  39404. height: math.unit(27000, "feet")
  39405. },
  39406. {
  39407. name: "Mountain-Mashing",
  39408. height: math.unit(90000, "feet")
  39409. },
  39410. {
  39411. name: "Nation Nemesis",
  39412. height: math.unit(9e6, "feet")
  39413. },
  39414. {
  39415. name: "Continent Cracker",
  39416. height: math.unit(27e6, "feet")
  39417. },
  39418. {
  39419. name: "Earth-Eclipsing",
  39420. height: math.unit(2.7e8, "feet")
  39421. },
  39422. {
  39423. name: "Gas Giant Gulper",
  39424. height: math.unit(2.7e9, "feet")
  39425. },
  39426. {
  39427. name: "Sol-Swallowing",
  39428. height: math.unit(9e10, "feet")
  39429. },
  39430. {
  39431. name: "Galaxy Gulper",
  39432. height: math.unit(9, "galaxies")
  39433. },
  39434. {
  39435. name: "Cosmos Churner",
  39436. height: math.unit(9, "universes")
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(160, "cm"),
  39445. weight: math.unit(55, "kg"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/tow/front.svg",
  39449. extra: 1751/1722,
  39450. bottom: 74/1825
  39451. }
  39452. },
  39453. },
  39454. [
  39455. {
  39456. name: "Norm",
  39457. height: math.unit(160, "cm")
  39458. },
  39459. {
  39460. name: "Casual",
  39461. height: math.unit(3200, "m"),
  39462. default: true
  39463. },
  39464. {
  39465. name: "Show-Off",
  39466. height: math.unit(160, "km")
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39472. {
  39473. front: {
  39474. height: math.unit(7 + 11/12, "feet"),
  39475. weight: math.unit(342.8, "lb"),
  39476. name: "Front",
  39477. image: {
  39478. source: "./media/characters/vivian-orca-dragon/front.svg",
  39479. extra: 1890/1865,
  39480. bottom: 28/1918
  39481. }
  39482. },
  39483. },
  39484. [
  39485. {
  39486. name: "Micro",
  39487. height: math.unit(5, "inches")
  39488. },
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(7 + 11/12, "feet"),
  39492. default: true
  39493. },
  39494. {
  39495. name: "Macro",
  39496. height: math.unit(395 + 7/12, "feet")
  39497. },
  39498. ]
  39499. ))
  39500. characterMakers.push(() => makeCharacter(
  39501. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39502. {
  39503. side: {
  39504. height: math.unit(10, "feet"),
  39505. weight: math.unit(1442, "lb"),
  39506. name: "Side",
  39507. image: {
  39508. source: "./media/characters/lotherakon/side.svg",
  39509. extra: 1604/1497,
  39510. bottom: 89/1693
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Mortal Interaction",
  39517. height: math.unit(10, "feet")
  39518. },
  39519. {
  39520. name: "Large",
  39521. height: math.unit(30, "feet"),
  39522. default: true
  39523. },
  39524. {
  39525. name: "Giant",
  39526. height: math.unit(100, "feet")
  39527. },
  39528. {
  39529. name: "Kaiju",
  39530. height: math.unit(300, "feet")
  39531. },
  39532. {
  39533. name: "Macro",
  39534. height: math.unit(1000, "feet")
  39535. },
  39536. {
  39537. name: "Macro+",
  39538. height: math.unit(3000, "feet")
  39539. },
  39540. {
  39541. name: "Megamacro",
  39542. height: math.unit(10000, "feet")
  39543. },
  39544. {
  39545. name: "City-Crushing",
  39546. height: math.unit(30000, "feet")
  39547. },
  39548. {
  39549. name: "Continent Cracker",
  39550. height: math.unit(30e6, "feet")
  39551. },
  39552. {
  39553. name: "Earth Eclipsing",
  39554. height: math.unit(3e8, "feet")
  39555. },
  39556. {
  39557. name: "Gas Giant Gulper",
  39558. height: math.unit(3e9, "feet")
  39559. },
  39560. {
  39561. name: "Sol-Swallowing",
  39562. height: math.unit(1e11, "feet")
  39563. },
  39564. {
  39565. name: "System Swallower",
  39566. height: math.unit(3e14, "feet")
  39567. },
  39568. {
  39569. name: "Galaxy Gulper",
  39570. height: math.unit(10, "galaxies")
  39571. },
  39572. {
  39573. name: "Light Universal",
  39574. height: math.unit(5, "universes")
  39575. },
  39576. {
  39577. name: "Universe Palm",
  39578. height: math.unit(20, "universes")
  39579. },
  39580. {
  39581. name: "Light Multiversal",
  39582. height: math.unit(5, "multiverses")
  39583. },
  39584. {
  39585. name: "Multiverse Palm",
  39586. height: math.unit(20, "multiverses")
  39587. },
  39588. {
  39589. name: "Inferno Incarnate",
  39590. height: math.unit(1e7, "multiverses")
  39591. },
  39592. ]
  39593. ))
  39594. characterMakers.push(() => makeCharacter(
  39595. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39596. {
  39597. front: {
  39598. height: math.unit(8, "feet"),
  39599. weight: math.unit(1200, "lb"),
  39600. name: "Front",
  39601. image: {
  39602. source: "./media/characters/malithee/front.svg",
  39603. extra: 1675/1640,
  39604. bottom: 162/1837
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Mortal Interaction",
  39611. height: math.unit(8, "feet"),
  39612. default: true
  39613. },
  39614. {
  39615. name: "Large",
  39616. height: math.unit(24, "feet")
  39617. },
  39618. {
  39619. name: "Kaiju",
  39620. height: math.unit(240, "feet")
  39621. },
  39622. {
  39623. name: "Megamacro",
  39624. height: math.unit(8000, "feet")
  39625. },
  39626. {
  39627. name: "Continent Cracker",
  39628. height: math.unit(24e6, "feet")
  39629. },
  39630. {
  39631. name: "Earth-Eclipsing",
  39632. height: math.unit(2.4e8, "feet")
  39633. },
  39634. {
  39635. name: "Sol-Swallowing",
  39636. height: math.unit(8e10, "feet")
  39637. },
  39638. {
  39639. name: "Galaxy Gulper",
  39640. height: math.unit(8, "galaxies")
  39641. },
  39642. {
  39643. name: "Light Universal",
  39644. height: math.unit(4, "universes")
  39645. },
  39646. {
  39647. name: "Universe Atoms",
  39648. height: math.unit(1.829e9, "universes")
  39649. },
  39650. {
  39651. name: "Light Multiversal",
  39652. height: math.unit(4, "multiverses")
  39653. },
  39654. {
  39655. name: "Multiverse Atoms",
  39656. height: math.unit(1.829e9, "multiverses")
  39657. },
  39658. {
  39659. name: "Nigh-Omnipresence",
  39660. height: math.unit(8e261, "multiverses")
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39666. {
  39667. front: {
  39668. height: math.unit(10, "feet"),
  39669. weight: math.unit(1500, "lb"),
  39670. name: "Front",
  39671. image: {
  39672. source: "./media/characters/miles-thestia/front.svg",
  39673. extra: 1812/1727,
  39674. bottom: 86/1898
  39675. }
  39676. },
  39677. back: {
  39678. height: math.unit(10, "feet"),
  39679. weight: math.unit(1500, "lb"),
  39680. name: "Back",
  39681. image: {
  39682. source: "./media/characters/miles-thestia/back.svg",
  39683. extra: 1799/1690,
  39684. bottom: 47/1846
  39685. }
  39686. },
  39687. frontNsfw: {
  39688. height: math.unit(10, "feet"),
  39689. weight: math.unit(1500, "lb"),
  39690. name: "Front (NSFW)",
  39691. image: {
  39692. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39693. extra: 1812/1727,
  39694. bottom: 86/1898
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Mini-Macro",
  39701. height: math.unit(10, "feet"),
  39702. default: true
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(25, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/titan-s-wulf/front.svg",
  39714. extra: 1560/1484,
  39715. bottom: 76/1636
  39716. }
  39717. },
  39718. },
  39719. [
  39720. {
  39721. name: "Smallest",
  39722. height: math.unit(25, "feet"),
  39723. default: true
  39724. },
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(200, "feet")
  39728. },
  39729. {
  39730. name: "Macro",
  39731. height: math.unit(200000, "feet")
  39732. },
  39733. {
  39734. name: "Multiversal Original",
  39735. height: math.unit(10000, "multiverses")
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39741. {
  39742. front: {
  39743. height: math.unit(8, "feet"),
  39744. weight: math.unit(553, "lb"),
  39745. name: "Front",
  39746. image: {
  39747. source: "./media/characters/tawendeh/front.svg",
  39748. extra: 2365/2268,
  39749. bottom: 83/2448
  39750. }
  39751. },
  39752. frontClothed: {
  39753. height: math.unit(8, "feet"),
  39754. weight: math.unit(553, "lb"),
  39755. name: "Front (Clothed)",
  39756. image: {
  39757. source: "./media/characters/tawendeh/front-clothed.svg",
  39758. extra: 2365/2268,
  39759. bottom: 83/2448
  39760. }
  39761. },
  39762. back: {
  39763. height: math.unit(8, "feet"),
  39764. weight: math.unit(553, "lb"),
  39765. name: "Back",
  39766. image: {
  39767. source: "./media/characters/tawendeh/back.svg",
  39768. extra: 2397/2294,
  39769. bottom: 42/2439
  39770. }
  39771. },
  39772. },
  39773. [
  39774. {
  39775. name: "Mortal Interaction",
  39776. height: math.unit(8, "feet"),
  39777. default: true
  39778. },
  39779. {
  39780. name: "Giant",
  39781. height: math.unit(80, "feet")
  39782. },
  39783. {
  39784. name: "Macro",
  39785. height: math.unit(800, "feet")
  39786. },
  39787. {
  39788. name: "Megamacro",
  39789. height: math.unit(8000, "feet")
  39790. },
  39791. {
  39792. name: "City-Crushing",
  39793. height: math.unit(24000, "feet")
  39794. },
  39795. {
  39796. name: "Mountain-Mashing",
  39797. height: math.unit(80000, "feet")
  39798. },
  39799. {
  39800. name: "Nation Nemesis",
  39801. height: math.unit(8e6, "feet")
  39802. },
  39803. {
  39804. name: "Continent Cracker",
  39805. height: math.unit(24e6, "feet")
  39806. },
  39807. {
  39808. name: "Earth-Eclipsing",
  39809. height: math.unit(2.4e8, "feet")
  39810. },
  39811. {
  39812. name: "Gas Giant Gulper",
  39813. height: math.unit(2.4e9, "feet")
  39814. },
  39815. {
  39816. name: "Sol-Swallowing",
  39817. height: math.unit(8e10, "feet")
  39818. },
  39819. {
  39820. name: "Galaxy Gulper",
  39821. height: math.unit(8, "galaxies")
  39822. },
  39823. {
  39824. name: "Cosmos Churner",
  39825. height: math.unit(8, "universes")
  39826. },
  39827. {
  39828. name: "Omnipotent Otter",
  39829. height: math.unit(80, "universes")
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39835. {
  39836. front: {
  39837. height: math.unit(2.6, "meters"),
  39838. weight: math.unit(900, "kg"),
  39839. name: "Front",
  39840. image: {
  39841. source: "./media/characters/neesha/front.svg",
  39842. extra: 1803/1653,
  39843. bottom: 128/1931
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(2.6, "meters"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(50, "meters")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(5, "feet"),
  39864. weight: math.unit(185, "lb"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/kyera/front.svg",
  39868. extra: 1875/1790,
  39869. bottom: 96/1971
  39870. }
  39871. },
  39872. },
  39873. [
  39874. {
  39875. name: "Normal",
  39876. height: math.unit(5, "feet"),
  39877. default: true
  39878. },
  39879. ]
  39880. ))
  39881. characterMakers.push(() => makeCharacter(
  39882. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39883. {
  39884. front: {
  39885. height: math.unit(7 + 6/12, "feet"),
  39886. weight: math.unit(540, "lb"),
  39887. name: "Front",
  39888. image: {
  39889. source: "./media/characters/yuko/front.svg",
  39890. extra: 1282/1222,
  39891. bottom: 101/1383
  39892. }
  39893. },
  39894. frontClothed: {
  39895. height: math.unit(7 + 6/12, "feet"),
  39896. weight: math.unit(540, "lb"),
  39897. name: "Front (Clothed)",
  39898. image: {
  39899. source: "./media/characters/yuko/front-clothed.svg",
  39900. extra: 1282/1222,
  39901. bottom: 101/1383
  39902. }
  39903. },
  39904. },
  39905. [
  39906. {
  39907. name: "Normal",
  39908. height: math.unit(7 + 6/12, "feet"),
  39909. default: true
  39910. },
  39911. {
  39912. name: "Macro",
  39913. height: math.unit(26 + 9/12, "feet")
  39914. },
  39915. {
  39916. name: "Megamacro",
  39917. height: math.unit(300, "feet")
  39918. },
  39919. {
  39920. name: "Gigamacro",
  39921. height: math.unit(5000, "feet")
  39922. },
  39923. {
  39924. name: "Planetary",
  39925. height: math.unit(10000, "miles")
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39931. {
  39932. front: {
  39933. height: math.unit(8 + 2/12, "feet"),
  39934. weight: math.unit(600, "lb"),
  39935. name: "Front",
  39936. image: {
  39937. source: "./media/characters/deam-nitrel/front.svg",
  39938. extra: 1308/1234,
  39939. bottom: 125/1433
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(8 + 2/12, "feet"),
  39947. default: true
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39953. {
  39954. front: {
  39955. height: math.unit(6.1, "feet"),
  39956. weight: math.unit(180, "lb"),
  39957. name: "Front",
  39958. image: {
  39959. source: "./media/characters/skyress/front.svg",
  39960. extra: 1045/915,
  39961. bottom: 28/1073
  39962. }
  39963. },
  39964. maw: {
  39965. height: math.unit(1, "feet"),
  39966. name: "Maw",
  39967. image: {
  39968. source: "./media/characters/skyress/maw.svg"
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Normal",
  39975. height: math.unit(6.1, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Macro",
  39980. height: math.unit(200, "feet")
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(4 + 2/12, "feet"),
  39989. weight: math.unit(40, "kg"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/amethyst-jones/front.svg",
  39993. extra: 1220/1150,
  39994. bottom: 101/1321
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Normal",
  40001. height: math.unit(4 + 2/12, "feet"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(1.7, "m"),
  40011. weight: math.unit(135, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/jade/front.svg",
  40015. extra: 1818/1767,
  40016. bottom: 32/1850
  40017. }
  40018. },
  40019. back: {
  40020. height: math.unit(1.7, "m"),
  40021. weight: math.unit(135, "lb"),
  40022. name: "Back",
  40023. image: {
  40024. source: "./media/characters/jade/back.svg",
  40025. extra: 1869/1809,
  40026. bottom: 35/1904
  40027. }
  40028. },
  40029. hand: {
  40030. height: math.unit(0.24, "m"),
  40031. name: "Hand",
  40032. image: {
  40033. source: "./media/characters/jade/hand.svg"
  40034. }
  40035. },
  40036. foot: {
  40037. height: math.unit(0.263, "m"),
  40038. name: "Foot",
  40039. image: {
  40040. source: "./media/characters/jade/foot.svg"
  40041. }
  40042. },
  40043. dick: {
  40044. height: math.unit(0.47, "m"),
  40045. name: "Dick",
  40046. image: {
  40047. source: "./media/characters/jade/dick.svg"
  40048. }
  40049. },
  40050. },
  40051. [
  40052. {
  40053. name: "Micro",
  40054. height: math.unit(22, "cm")
  40055. },
  40056. {
  40057. name: "Normal",
  40058. height: math.unit(1.7, "m"),
  40059. default: true
  40060. },
  40061. {
  40062. name: "Macro",
  40063. height: math.unit(152, "m")
  40064. },
  40065. ]
  40066. ))
  40067. characterMakers.push(() => makeCharacter(
  40068. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40069. {
  40070. front: {
  40071. height: math.unit(100, "miles"),
  40072. weight: math.unit(20000, "tons"),
  40073. name: "Front",
  40074. image: {
  40075. source: "./media/characters/cookie/front.svg",
  40076. extra: 1125/1070,
  40077. bottom: 30/1155
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Big",
  40084. height: math.unit(50, "feet")
  40085. },
  40086. {
  40087. name: "Macro",
  40088. height: math.unit(100, "miles"),
  40089. default: true
  40090. },
  40091. {
  40092. name: "Megamacro",
  40093. height: math.unit(90000, "miles")
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(6, "feet"),
  40102. weight: math.unit(145, "lb"),
  40103. name: "Front",
  40104. image: {
  40105. source: "./media/characters/farzian/front.svg",
  40106. extra: 1902/1693,
  40107. bottom: 108/2010
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Macro",
  40114. height: math.unit(500, "feet"),
  40115. default: true
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40121. {
  40122. front: {
  40123. height: math.unit(3 + 6/12, "feet"),
  40124. weight: math.unit(50, "lb"),
  40125. name: "Front",
  40126. image: {
  40127. source: "./media/characters/kimberly-tilson/front.svg",
  40128. extra: 1400/1322,
  40129. bottom: 36/1436
  40130. }
  40131. },
  40132. back: {
  40133. height: math.unit(3 + 6/12, "feet"),
  40134. weight: math.unit(50, "lb"),
  40135. name: "Back",
  40136. image: {
  40137. source: "./media/characters/kimberly-tilson/back.svg",
  40138. extra: 1370/1307,
  40139. bottom: 20/1390
  40140. }
  40141. },
  40142. },
  40143. [
  40144. {
  40145. name: "Normal",
  40146. height: math.unit(3 + 6/12, "feet"),
  40147. default: true
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(1148, "feet"),
  40156. weight: math.unit(34057, "lb"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/harthos/front.svg",
  40160. extra: 1391/1339,
  40161. bottom: 13/1404
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Macro",
  40168. height: math.unit(1148, "feet"),
  40169. default: true
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(15, "feet"),
  40178. name: "Front",
  40179. image: {
  40180. source: "./media/characters/hypatia/front.svg",
  40181. extra: 1653/1591,
  40182. bottom: 79/1732
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Normal",
  40189. height: math.unit(15, "feet")
  40190. },
  40191. {
  40192. name: "Small",
  40193. height: math.unit(300, "feet")
  40194. },
  40195. {
  40196. name: "Macro",
  40197. height: math.unit(2500, "feet"),
  40198. default: true
  40199. },
  40200. {
  40201. name: "Mega Macro",
  40202. height: math.unit(1500, "miles")
  40203. },
  40204. {
  40205. name: "Giga Macro",
  40206. height: math.unit(1.5e6, "miles")
  40207. },
  40208. ]
  40209. ))
  40210. characterMakers.push(() => makeCharacter(
  40211. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40212. {
  40213. front: {
  40214. height: math.unit(6, "feet"),
  40215. weight: math.unit(200, "lb"),
  40216. name: "Front",
  40217. image: {
  40218. source: "./media/characters/wulver/front.svg",
  40219. extra: 1724/1632,
  40220. bottom: 130/1854
  40221. }
  40222. },
  40223. frontNsfw: {
  40224. height: math.unit(6, "feet"),
  40225. weight: math.unit(200, "lb"),
  40226. name: "Front (NSFW)",
  40227. image: {
  40228. source: "./media/characters/wulver/front-nsfw.svg",
  40229. extra: 1724/1632,
  40230. bottom: 130/1854
  40231. }
  40232. },
  40233. },
  40234. [
  40235. {
  40236. name: "Human-Sized",
  40237. height: math.unit(6, "feet")
  40238. },
  40239. {
  40240. name: "Normal",
  40241. height: math.unit(4, "meters"),
  40242. default: true
  40243. },
  40244. {
  40245. name: "Large",
  40246. height: math.unit(6, "m")
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(7, "feet"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/maru/front.svg",
  40258. extra: 1595/1570,
  40259. bottom: 0/1595
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Normal",
  40266. height: math.unit(7, "feet"),
  40267. default: true
  40268. },
  40269. {
  40270. name: "Macro",
  40271. height: math.unit(700, "feet")
  40272. },
  40273. {
  40274. name: "Mega Macro",
  40275. height: math.unit(25, "miles")
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(6, "feet"),
  40284. weight: math.unit(170, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/xenon/front.svg",
  40288. extra: 1376/1305,
  40289. bottom: 56/1432
  40290. }
  40291. },
  40292. back: {
  40293. height: math.unit(6, "feet"),
  40294. weight: math.unit(170, "lb"),
  40295. name: "Back",
  40296. image: {
  40297. source: "./media/characters/xenon/back.svg",
  40298. extra: 1328/1259,
  40299. bottom: 95/1423
  40300. }
  40301. },
  40302. maw: {
  40303. height: math.unit(0.52, "feet"),
  40304. name: "Maw",
  40305. image: {
  40306. source: "./media/characters/xenon/maw.svg"
  40307. }
  40308. },
  40309. hand: {
  40310. height: math.unit(0.82, "feet"),
  40311. name: "Hand",
  40312. image: {
  40313. source: "./media/characters/xenon/hand.svg"
  40314. }
  40315. },
  40316. foot: {
  40317. height: math.unit(1.13, "feet"),
  40318. name: "Foot",
  40319. image: {
  40320. source: "./media/characters/xenon/foot.svg"
  40321. }
  40322. },
  40323. },
  40324. [
  40325. {
  40326. name: "Micro",
  40327. height: math.unit(0.8, "inches")
  40328. },
  40329. {
  40330. name: "Normal",
  40331. height: math.unit(6, "feet")
  40332. },
  40333. {
  40334. name: "Macro",
  40335. height: math.unit(50, "feet"),
  40336. default: true
  40337. },
  40338. {
  40339. name: "Macro+",
  40340. height: math.unit(250, "feet")
  40341. },
  40342. {
  40343. name: "Megamacro",
  40344. height: math.unit(1500, "feet")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(7 + 5/12, "feet"),
  40353. name: "Front",
  40354. image: {
  40355. source: "./media/characters/zane/front.svg",
  40356. extra: 1260/1203,
  40357. bottom: 94/1354
  40358. }
  40359. },
  40360. back: {
  40361. height: math.unit(5.05, "feet"),
  40362. name: "Back",
  40363. image: {
  40364. source: "./media/characters/zane/back.svg",
  40365. extra: 893/829,
  40366. bottom: 30/923
  40367. }
  40368. },
  40369. werewolf: {
  40370. height: math.unit(11, "feet"),
  40371. name: "Werewolf",
  40372. image: {
  40373. source: "./media/characters/zane/werewolf.svg",
  40374. extra: 1383/1323,
  40375. bottom: 89/1472
  40376. }
  40377. },
  40378. foot: {
  40379. height: math.unit(1.46, "feet"),
  40380. name: "Foot",
  40381. image: {
  40382. source: "./media/characters/zane/foot.svg"
  40383. }
  40384. },
  40385. footFront: {
  40386. height: math.unit(0.784, "feet"),
  40387. name: "Foot (Front)",
  40388. image: {
  40389. source: "./media/characters/zane/foot-front.svg"
  40390. }
  40391. },
  40392. dick: {
  40393. height: math.unit(1.95, "feet"),
  40394. name: "Dick",
  40395. image: {
  40396. source: "./media/characters/zane/dick.svg"
  40397. }
  40398. },
  40399. dickWerewolf: {
  40400. height: math.unit(3.77, "feet"),
  40401. name: "Dick (Werewolf)",
  40402. image: {
  40403. source: "./media/characters/zane/dick.svg"
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(7 + 5/12, "feet"),
  40411. default: true
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(6 + 2/12, "feet"),
  40420. weight: math.unit(284, "lb"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/benni-desparque/front.svg",
  40424. extra: 1353/1126,
  40425. bottom: 69/1422
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Civilian",
  40432. height: math.unit(6 + 2/12, "feet")
  40433. },
  40434. {
  40435. name: "Normal",
  40436. height: math.unit(98, "feet"),
  40437. default: true
  40438. },
  40439. {
  40440. name: "Kaiju Fighter",
  40441. height: math.unit(268, "feet")
  40442. },
  40443. ]
  40444. ))
  40445. characterMakers.push(() => makeCharacter(
  40446. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40447. {
  40448. front: {
  40449. height: math.unit(5, "feet"),
  40450. weight: math.unit(105, "lb"),
  40451. name: "Front",
  40452. image: {
  40453. source: "./media/characters/maxine/front.svg",
  40454. extra: 1386/1250,
  40455. bottom: 71/1457
  40456. }
  40457. },
  40458. },
  40459. [
  40460. {
  40461. name: "Normal",
  40462. height: math.unit(5, "feet"),
  40463. default: true
  40464. },
  40465. ]
  40466. ))
  40467. characterMakers.push(() => makeCharacter(
  40468. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40469. {
  40470. front: {
  40471. height: math.unit(11 + 7/12, "feet"),
  40472. weight: math.unit(9576, "lb"),
  40473. name: "Front",
  40474. image: {
  40475. source: "./media/characters/scaly/front.svg",
  40476. extra: 888/867,
  40477. bottom: 36/924
  40478. }
  40479. },
  40480. },
  40481. [
  40482. {
  40483. name: "Normal",
  40484. height: math.unit(11 + 7/12, "feet"),
  40485. default: true
  40486. },
  40487. ]
  40488. ))
  40489. characterMakers.push(() => makeCharacter(
  40490. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40491. {
  40492. front: {
  40493. height: math.unit(6 + 3/12, "feet"),
  40494. name: "Front",
  40495. image: {
  40496. source: "./media/characters/saelria/front.svg",
  40497. extra: 1243/1138,
  40498. bottom: 46/1289
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Micro",
  40505. height: math.unit(6, "inches"),
  40506. },
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(6 + 3/12, "feet"),
  40510. default: true
  40511. },
  40512. {
  40513. name: "Macro",
  40514. height: math.unit(25, "feet")
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(80, "meters"),
  40523. weight: math.unit(7000, "tonnes"),
  40524. name: "Front",
  40525. image: {
  40526. source: "./media/characters/tef/front.svg",
  40527. extra: 2036/1991,
  40528. bottom: 54/2090
  40529. }
  40530. },
  40531. back: {
  40532. height: math.unit(80, "meters"),
  40533. weight: math.unit(7000, "tonnes"),
  40534. name: "Back",
  40535. image: {
  40536. source: "./media/characters/tef/back.svg",
  40537. extra: 2036/1991,
  40538. bottom: 54/2090
  40539. }
  40540. },
  40541. },
  40542. [
  40543. {
  40544. name: "Macro",
  40545. height: math.unit(80, "meters"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(13, "feet"),
  40555. weight: math.unit(6, "tons"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/rover/front.svg",
  40559. extra: 1233/1156,
  40560. bottom: 50/1283
  40561. }
  40562. },
  40563. back: {
  40564. height: math.unit(13, "feet"),
  40565. weight: math.unit(6, "tons"),
  40566. name: "Back",
  40567. image: {
  40568. source: "./media/characters/rover/back.svg",
  40569. extra: 1327/1258,
  40570. bottom: 39/1366
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Normal",
  40577. height: math.unit(13, "feet"),
  40578. default: true
  40579. },
  40580. {
  40581. name: "Macro",
  40582. height: math.unit(1300, "feet")
  40583. },
  40584. {
  40585. name: "Megamacro",
  40586. height: math.unit(1300, "miles")
  40587. },
  40588. {
  40589. name: "Gigamacro",
  40590. height: math.unit(1300000, "miles")
  40591. },
  40592. ]
  40593. ))
  40594. characterMakers.push(() => makeCharacter(
  40595. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40596. {
  40597. front: {
  40598. height: math.unit(6, "feet"),
  40599. weight: math.unit(150, "lb"),
  40600. name: "Front",
  40601. image: {
  40602. source: "./media/characters/ariz/front.svg",
  40603. extra: 1401/1346,
  40604. bottom: 5/1406
  40605. }
  40606. },
  40607. },
  40608. [
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(10, "feet"),
  40612. default: true
  40613. },
  40614. ]
  40615. ))
  40616. characterMakers.push(() => makeCharacter(
  40617. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40618. {
  40619. front: {
  40620. height: math.unit(6, "feet"),
  40621. weight: math.unit(140, "lb"),
  40622. name: "Front",
  40623. image: {
  40624. source: "./media/characters/sigrun/front.svg",
  40625. extra: 1418/1359,
  40626. bottom: 27/1445
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Macro",
  40633. height: math.unit(35, "feet"),
  40634. default: true
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(6, "feet"),
  40643. weight: math.unit(150, "lb"),
  40644. name: "Front",
  40645. image: {
  40646. source: "./media/characters/numin/front.svg",
  40647. extra: 1433/1388,
  40648. bottom: 12/1445
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Macro",
  40655. height: math.unit(21.5, "km"),
  40656. default: true
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40662. {
  40663. front: {
  40664. height: math.unit(6, "feet"),
  40665. weight: math.unit(463, "lb"),
  40666. name: "Front",
  40667. image: {
  40668. source: "./media/characters/melwa/front.svg",
  40669. extra: 1307/1248,
  40670. bottom: 93/1400
  40671. }
  40672. },
  40673. },
  40674. [
  40675. {
  40676. name: "Macro",
  40677. height: math.unit(50, "meters"),
  40678. default: true
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40684. {
  40685. front: {
  40686. height: math.unit(325, "feet"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/zorkaiju/front.svg",
  40690. extra: 1955/1814,
  40691. bottom: 40/1995
  40692. }
  40693. },
  40694. frontExtended: {
  40695. height: math.unit(325, "feet"),
  40696. name: "Front (Extended)",
  40697. image: {
  40698. source: "./media/characters/zorkaiju/front-extended.svg",
  40699. extra: 1955/1814,
  40700. bottom: 40/1995
  40701. }
  40702. },
  40703. side: {
  40704. height: math.unit(325, "feet"),
  40705. name: "Side",
  40706. image: {
  40707. source: "./media/characters/zorkaiju/side.svg",
  40708. extra: 1495/1396,
  40709. bottom: 17/1512
  40710. }
  40711. },
  40712. sideExtended: {
  40713. height: math.unit(325, "feet"),
  40714. name: "Side (Extended)",
  40715. image: {
  40716. source: "./media/characters/zorkaiju/side-extended.svg",
  40717. extra: 1495/1396,
  40718. bottom: 17/1512
  40719. }
  40720. },
  40721. back: {
  40722. height: math.unit(325, "feet"),
  40723. name: "Back",
  40724. image: {
  40725. source: "./media/characters/zorkaiju/back.svg",
  40726. extra: 1959/1821,
  40727. bottom: 31/1990
  40728. }
  40729. },
  40730. backExtended: {
  40731. height: math.unit(325, "feet"),
  40732. name: "Back (Extended)",
  40733. image: {
  40734. source: "./media/characters/zorkaiju/back-extended.svg",
  40735. extra: 1959/1821,
  40736. bottom: 31/1990
  40737. }
  40738. },
  40739. hand: {
  40740. height: math.unit(58.4, "feet"),
  40741. name: "Hand",
  40742. image: {
  40743. source: "./media/characters/zorkaiju/hand.svg"
  40744. }
  40745. },
  40746. handExtended: {
  40747. height: math.unit(61.4, "feet"),
  40748. name: "Hand (Extended)",
  40749. image: {
  40750. source: "./media/characters/zorkaiju/hand-extended.svg"
  40751. }
  40752. },
  40753. foot: {
  40754. height: math.unit(95, "feet"),
  40755. name: "Foot",
  40756. image: {
  40757. source: "./media/characters/zorkaiju/foot.svg"
  40758. }
  40759. },
  40760. leftArm: {
  40761. height: math.unit(59, "feet"),
  40762. name: "Left Arm",
  40763. image: {
  40764. source: "./media/characters/zorkaiju/left-arm.svg"
  40765. }
  40766. },
  40767. rightArm: {
  40768. height: math.unit(59, "feet"),
  40769. name: "Right Arm",
  40770. image: {
  40771. source: "./media/characters/zorkaiju/right-arm.svg"
  40772. }
  40773. },
  40774. tail: {
  40775. height: math.unit(104, "feet"),
  40776. name: "Tail",
  40777. image: {
  40778. source: "./media/characters/zorkaiju/tail.svg"
  40779. }
  40780. },
  40781. tailExtended: {
  40782. height: math.unit(104, "feet"),
  40783. name: "Tail (Extended)",
  40784. image: {
  40785. source: "./media/characters/zorkaiju/tail-extended.svg"
  40786. }
  40787. },
  40788. tailBottom: {
  40789. height: math.unit(104, "feet"),
  40790. name: "Tail Bottom",
  40791. image: {
  40792. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40793. }
  40794. },
  40795. crystal: {
  40796. height: math.unit(27.54, "feet"),
  40797. name: "Crystal",
  40798. image: {
  40799. source: "./media/characters/zorkaiju/crystal.svg"
  40800. }
  40801. },
  40802. },
  40803. [
  40804. {
  40805. name: "Kaiju",
  40806. height: math.unit(325, "feet"),
  40807. default: true
  40808. },
  40809. ]
  40810. ))
  40811. characterMakers.push(() => makeCharacter(
  40812. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40813. {
  40814. front: {
  40815. height: math.unit(6 + 1/12, "feet"),
  40816. weight: math.unit(115, "lb"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/bailey-belfry/front.svg",
  40820. extra: 1240/1121,
  40821. bottom: 101/1341
  40822. }
  40823. },
  40824. },
  40825. [
  40826. {
  40827. name: "Normal",
  40828. height: math.unit(6 + 1/12, "feet"),
  40829. default: true
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40835. {
  40836. side: {
  40837. height: math.unit(4, "meters"),
  40838. weight: math.unit(250, "kg"),
  40839. name: "Side",
  40840. image: {
  40841. source: "./media/characters/blacky/side.svg",
  40842. extra: 1027/919,
  40843. bottom: 43/1070
  40844. }
  40845. },
  40846. maw: {
  40847. height: math.unit(1, "meters"),
  40848. name: "Maw",
  40849. image: {
  40850. source: "./media/characters/blacky/maw.svg"
  40851. }
  40852. },
  40853. paw: {
  40854. height: math.unit(1, "meters"),
  40855. name: "Paw",
  40856. image: {
  40857. source: "./media/characters/blacky/paw.svg"
  40858. }
  40859. },
  40860. },
  40861. [
  40862. {
  40863. name: "Normal",
  40864. height: math.unit(4, "meters"),
  40865. default: true
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(170, "cm"),
  40874. weight: math.unit(66, "kg"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/thux-ei/front.svg",
  40878. extra: 1109/1011,
  40879. bottom: 8/1117
  40880. }
  40881. },
  40882. },
  40883. [
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(170, "cm"),
  40887. default: true
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(5, "feet"),
  40896. weight: math.unit(120, "lb"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/roxanne-voltaire/front.svg",
  40900. extra: 1901/1779,
  40901. bottom: 53/1954
  40902. }
  40903. },
  40904. },
  40905. [
  40906. {
  40907. name: "Normal",
  40908. height: math.unit(5, "feet"),
  40909. default: true
  40910. },
  40911. {
  40912. name: "Giant",
  40913. height: math.unit(50, "feet")
  40914. },
  40915. {
  40916. name: "Titan",
  40917. height: math.unit(500, "feet")
  40918. },
  40919. {
  40920. name: "Macro",
  40921. height: math.unit(5000, "feet")
  40922. },
  40923. {
  40924. name: "Megamacro",
  40925. height: math.unit(50000, "feet")
  40926. },
  40927. {
  40928. name: "Gigamacro",
  40929. height: math.unit(500000, "feet")
  40930. },
  40931. {
  40932. name: "Teramacro",
  40933. height: math.unit(5e6, "feet")
  40934. },
  40935. ]
  40936. ))
  40937. characterMakers.push(() => makeCharacter(
  40938. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40939. {
  40940. front: {
  40941. height: math.unit(6 + 2/12, "feet"),
  40942. name: "Front",
  40943. image: {
  40944. source: "./media/characters/squeaks/front.svg",
  40945. extra: 1823/1768,
  40946. bottom: 138/1961
  40947. }
  40948. },
  40949. },
  40950. [
  40951. {
  40952. name: "Micro",
  40953. height: math.unit(0.5, "inches")
  40954. },
  40955. {
  40956. name: "Normal",
  40957. height: math.unit(6 + 2/12, "feet"),
  40958. default: true
  40959. },
  40960. {
  40961. name: "Macro",
  40962. height: math.unit(600, "feet")
  40963. },
  40964. ]
  40965. ))
  40966. characterMakers.push(() => makeCharacter(
  40967. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40968. {
  40969. front: {
  40970. height: math.unit(1.72, "meters"),
  40971. name: "Front",
  40972. image: {
  40973. source: "./media/characters/archinger/front.svg",
  40974. extra: 1861/1675,
  40975. bottom: 125/1986
  40976. }
  40977. },
  40978. back: {
  40979. height: math.unit(1.72, "meters"),
  40980. name: "Back",
  40981. image: {
  40982. source: "./media/characters/archinger/back.svg",
  40983. extra: 1844/1701,
  40984. bottom: 104/1948
  40985. }
  40986. },
  40987. cock: {
  40988. height: math.unit(0.59, "feet"),
  40989. name: "Cock",
  40990. image: {
  40991. source: "./media/characters/archinger/cock.svg"
  40992. }
  40993. },
  40994. },
  40995. [
  40996. {
  40997. name: "Normal",
  40998. height: math.unit(1.72, "meters"),
  40999. default: true
  41000. },
  41001. {
  41002. name: "Macro",
  41003. height: math.unit(84, "meters")
  41004. },
  41005. {
  41006. name: "Macro+",
  41007. height: math.unit(112, "meters")
  41008. },
  41009. {
  41010. name: "Macro++",
  41011. height: math.unit(960, "meters")
  41012. },
  41013. {
  41014. name: "Macro+++",
  41015. height: math.unit(4, "km")
  41016. },
  41017. {
  41018. name: "Macro++++",
  41019. height: math.unit(48, "km")
  41020. },
  41021. {
  41022. name: "Macro+++++",
  41023. height: math.unit(4500, "km")
  41024. },
  41025. ]
  41026. ))
  41027. characterMakers.push(() => makeCharacter(
  41028. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41029. {
  41030. front: {
  41031. height: math.unit(5 + 5/12, "feet"),
  41032. name: "Front",
  41033. image: {
  41034. source: "./media/characters/alsnapz/front.svg",
  41035. extra: 1157/1065,
  41036. bottom: 42/1199
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(5 + 5/12, "feet"),
  41044. default: true
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41050. {
  41051. side: {
  41052. height: math.unit(3.2, "earths"),
  41053. name: "Side",
  41054. image: {
  41055. source: "./media/characters/mag/side.svg",
  41056. extra: 1331/1008,
  41057. bottom: 52/1383
  41058. }
  41059. },
  41060. wing: {
  41061. height: math.unit(1.94, "earths"),
  41062. name: "Wing",
  41063. image: {
  41064. source: "./media/characters/mag/wing.svg"
  41065. }
  41066. },
  41067. dick: {
  41068. height: math.unit(1.8, "earths"),
  41069. name: "Dick",
  41070. image: {
  41071. source: "./media/characters/mag/dick.svg"
  41072. }
  41073. },
  41074. ass: {
  41075. height: math.unit(1.33, "earths"),
  41076. name: "Ass",
  41077. image: {
  41078. source: "./media/characters/mag/ass.svg"
  41079. }
  41080. },
  41081. head: {
  41082. height: math.unit(1.1, "earths"),
  41083. name: "Head",
  41084. image: {
  41085. source: "./media/characters/mag/head.svg"
  41086. }
  41087. },
  41088. maw: {
  41089. height: math.unit(1.62, "earths"),
  41090. name: "Maw",
  41091. image: {
  41092. source: "./media/characters/mag/maw.svg"
  41093. }
  41094. },
  41095. },
  41096. [
  41097. {
  41098. name: "Small",
  41099. height: math.unit(162, "feet")
  41100. },
  41101. {
  41102. name: "Normal",
  41103. height: math.unit(3.2, "earths"),
  41104. default: true
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(512, "feet"),
  41113. weight: math.unit(63509, "tonnes"),
  41114. name: "Front",
  41115. image: {
  41116. source: "./media/characters/vorrel-harroc/front.svg",
  41117. extra: 1075/1063,
  41118. bottom: 62/1137
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Normal",
  41125. height: math.unit(10, "feet")
  41126. },
  41127. {
  41128. name: "Macro",
  41129. height: math.unit(512, "feet"),
  41130. default: true
  41131. },
  41132. {
  41133. name: "Megamacro",
  41134. height: math.unit(256, "miles")
  41135. },
  41136. {
  41137. name: "Gigamacro",
  41138. height: math.unit(4096, "miles")
  41139. },
  41140. ]
  41141. ))
  41142. characterMakers.push(() => makeCharacter(
  41143. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41144. {
  41145. side: {
  41146. height: math.unit(50, "feet"),
  41147. name: "Side",
  41148. image: {
  41149. source: "./media/characters/froimar/side.svg",
  41150. extra: 855/638,
  41151. bottom: 99/954
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Macro",
  41158. height: math.unit(50, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(210, "miles"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/timothy/front.svg",
  41171. extra: 1007/943,
  41172. bottom: 62/1069
  41173. }
  41174. },
  41175. frontSkirt: {
  41176. height: math.unit(210, "miles"),
  41177. name: "Front (Skirt)",
  41178. image: {
  41179. source: "./media/characters/timothy/front-skirt.svg",
  41180. extra: 1007/943,
  41181. bottom: 62/1069
  41182. }
  41183. },
  41184. frontCoat: {
  41185. height: math.unit(210, "miles"),
  41186. name: "Front (Coat)",
  41187. image: {
  41188. source: "./media/characters/timothy/front-coat.svg",
  41189. extra: 1007/943,
  41190. bottom: 62/1069
  41191. }
  41192. },
  41193. },
  41194. [
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(210, "miles"),
  41198. default: true
  41199. },
  41200. {
  41201. name: "Megamacro",
  41202. height: math.unit(210000, "miles")
  41203. },
  41204. ]
  41205. ))
  41206. characterMakers.push(() => makeCharacter(
  41207. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41208. {
  41209. front: {
  41210. height: math.unit(188, "feet"),
  41211. name: "Front",
  41212. image: {
  41213. source: "./media/characters/pyotr/front.svg",
  41214. extra: 1912/1826,
  41215. bottom: 18/1930
  41216. }
  41217. },
  41218. },
  41219. [
  41220. {
  41221. name: "Macro",
  41222. height: math.unit(188, "feet"),
  41223. default: true
  41224. },
  41225. {
  41226. name: "Megamacro",
  41227. height: math.unit(8, "miles")
  41228. },
  41229. ]
  41230. ))
  41231. characterMakers.push(() => makeCharacter(
  41232. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41233. {
  41234. side: {
  41235. height: math.unit(10, "feet"),
  41236. weight: math.unit(4500, "lb"),
  41237. name: "Side",
  41238. image: {
  41239. source: "./media/characters/ackart/side.svg",
  41240. extra: 1776/1668,
  41241. bottom: 116/1892
  41242. }
  41243. },
  41244. },
  41245. [
  41246. {
  41247. name: "Normal",
  41248. height: math.unit(10, "feet"),
  41249. default: true
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41255. {
  41256. side: {
  41257. height: math.unit(21, "feet"),
  41258. name: "Side",
  41259. image: {
  41260. source: "./media/characters/nolow/side.svg",
  41261. extra: 1484/1434,
  41262. bottom: 85/1569
  41263. }
  41264. },
  41265. sideErect: {
  41266. height: math.unit(21, "feet"),
  41267. name: "Side-erect",
  41268. image: {
  41269. source: "./media/characters/nolow/side-erect.svg",
  41270. extra: 1484/1434,
  41271. bottom: 85/1569
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Regular",
  41278. height: math.unit(12, "feet")
  41279. },
  41280. {
  41281. name: "Big Chee",
  41282. height: math.unit(21, "feet"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(7, "feet"),
  41292. weight: math.unit(250, "lb"),
  41293. name: "Front",
  41294. image: {
  41295. source: "./media/characters/nines/front.svg",
  41296. extra: 1741/1607,
  41297. bottom: 41/1782
  41298. }
  41299. },
  41300. side: {
  41301. height: math.unit(7, "feet"),
  41302. weight: math.unit(250, "lb"),
  41303. name: "Side",
  41304. image: {
  41305. source: "./media/characters/nines/side.svg",
  41306. extra: 1854/1735,
  41307. bottom: 93/1947
  41308. }
  41309. },
  41310. back: {
  41311. height: math.unit(7, "feet"),
  41312. weight: math.unit(250, "lb"),
  41313. name: "Back",
  41314. image: {
  41315. source: "./media/characters/nines/back.svg",
  41316. extra: 1748/1615,
  41317. bottom: 20/1768
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Megamacro",
  41324. height: math.unit(99, "km"),
  41325. default: true
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41331. {
  41332. front: {
  41333. height: math.unit(5 + 10/12, "feet"),
  41334. weight: math.unit(210, "lb"),
  41335. name: "Front",
  41336. image: {
  41337. source: "./media/characters/zenith/front.svg",
  41338. extra: 1531/1452,
  41339. bottom: 198/1729
  41340. }
  41341. },
  41342. back: {
  41343. height: math.unit(5 + 10/12, "feet"),
  41344. weight: math.unit(210, "lb"),
  41345. name: "Back",
  41346. image: {
  41347. source: "./media/characters/zenith/back.svg",
  41348. extra: 1571/1487,
  41349. bottom: 75/1646
  41350. }
  41351. },
  41352. },
  41353. [
  41354. {
  41355. name: "Normal",
  41356. height: math.unit(5 + 10/12, "feet"),
  41357. default: true
  41358. }
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(4, "feet"),
  41366. weight: math.unit(60, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/jasper/front.svg",
  41370. extra: 1450/1379,
  41371. bottom: 19/1469
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(4, "feet"),
  41379. default: true
  41380. },
  41381. ]
  41382. ))
  41383. characterMakers.push(() => makeCharacter(
  41384. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41385. {
  41386. front: {
  41387. height: math.unit(6 + 5/12, "feet"),
  41388. weight: math.unit(290, "lb"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/tiberius-thyben/front.svg",
  41392. extra: 757/739,
  41393. bottom: 39/796
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Micro",
  41400. height: math.unit(1.5, "inches")
  41401. },
  41402. {
  41403. name: "Normal",
  41404. height: math.unit(6 + 5/12, "feet"),
  41405. default: true
  41406. },
  41407. {
  41408. name: "Macro",
  41409. height: math.unit(300, "feet")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(5 + 6/12, "feet"),
  41418. weight: math.unit(60, "kg"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/sabre/front.svg",
  41422. extra: 738/671,
  41423. bottom: 27/765
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Teeny",
  41430. height: math.unit(2, "inches")
  41431. },
  41432. {
  41433. name: "Smol",
  41434. height: math.unit(8, "inches")
  41435. },
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(5 + 6/12, "feet"),
  41439. default: true
  41440. },
  41441. {
  41442. name: "Mini-Macro",
  41443. height: math.unit(15, "feet")
  41444. },
  41445. {
  41446. name: "Macro",
  41447. height: math.unit(50, "feet")
  41448. },
  41449. ]
  41450. ))
  41451. characterMakers.push(() => makeCharacter(
  41452. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41453. {
  41454. front: {
  41455. height: math.unit(6 + 4/12, "feet"),
  41456. weight: math.unit(170, "lb"),
  41457. name: "Front",
  41458. image: {
  41459. source: "./media/characters/charlie/front.svg",
  41460. extra: 1348/1228,
  41461. bottom: 15/1363
  41462. }
  41463. },
  41464. },
  41465. [
  41466. {
  41467. name: "Macro",
  41468. height: math.unit(1700, "meters"),
  41469. default: true
  41470. },
  41471. {
  41472. name: "MegaMacro",
  41473. height: math.unit(20400, "meters")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(6 + 3/12, "feet"),
  41482. weight: math.unit(185, "lb"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/susan-grant/front.svg",
  41486. extra: 1351/1327,
  41487. bottom: 26/1377
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(6 + 3/12, "feet"),
  41495. default: true
  41496. },
  41497. {
  41498. name: "Macro",
  41499. height: math.unit(225, "feet")
  41500. },
  41501. {
  41502. name: "Macro+",
  41503. height: math.unit(900, "feet")
  41504. },
  41505. {
  41506. name: "MegaMacro",
  41507. height: math.unit(14400, "feet")
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(5 + 4/12, "feet"),
  41516. weight: math.unit(110, "lb"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/axel-isanov/front.svg",
  41520. extra: 1096/1065,
  41521. bottom: 13/1109
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(5 + 4/12, "feet"),
  41529. default: true
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41535. {
  41536. front: {
  41537. height: math.unit(9, "feet"),
  41538. weight: math.unit(467, "lb"),
  41539. name: "Front",
  41540. image: {
  41541. source: "./media/characters/necahual/front.svg",
  41542. extra: 920/873,
  41543. bottom: 26/946
  41544. }
  41545. },
  41546. back: {
  41547. height: math.unit(9, "feet"),
  41548. weight: math.unit(467, "lb"),
  41549. name: "Back",
  41550. image: {
  41551. source: "./media/characters/necahual/back.svg",
  41552. extra: 930/884,
  41553. bottom: 16/946
  41554. }
  41555. },
  41556. frontUnderwear: {
  41557. height: math.unit(9, "feet"),
  41558. weight: math.unit(467, "lb"),
  41559. name: "Front (Underwear)",
  41560. image: {
  41561. source: "./media/characters/necahual/front-underwear.svg",
  41562. extra: 920/873,
  41563. bottom: 26/946
  41564. }
  41565. },
  41566. frontDressed: {
  41567. height: math.unit(9, "feet"),
  41568. weight: math.unit(467, "lb"),
  41569. name: "Front (Dressed)",
  41570. image: {
  41571. source: "./media/characters/necahual/front-dressed.svg",
  41572. extra: 920/873,
  41573. bottom: 26/946
  41574. }
  41575. },
  41576. },
  41577. [
  41578. {
  41579. name: "Comprsesed",
  41580. height: math.unit(9, "feet")
  41581. },
  41582. {
  41583. name: "Natural",
  41584. height: math.unit(15, "feet"),
  41585. default: true
  41586. },
  41587. {
  41588. name: "Boosted",
  41589. height: math.unit(50, "feet")
  41590. },
  41591. {
  41592. name: "Boosted+",
  41593. height: math.unit(150, "feet")
  41594. },
  41595. {
  41596. name: "Max",
  41597. height: math.unit(500, "feet")
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41603. {
  41604. front: {
  41605. height: math.unit(22 + 1/12, "feet"),
  41606. weight: math.unit(3200, "lb"),
  41607. name: "Front",
  41608. image: {
  41609. source: "./media/characters/theo-acacia/front.svg",
  41610. extra: 1796/1741,
  41611. bottom: 83/1879
  41612. }
  41613. },
  41614. frontUnderwear: {
  41615. height: math.unit(22 + 1/12, "feet"),
  41616. weight: math.unit(3200, "lb"),
  41617. name: "Front (Underwear)",
  41618. image: {
  41619. source: "./media/characters/theo-acacia/front-underwear.svg",
  41620. extra: 1796/1741,
  41621. bottom: 83/1879
  41622. }
  41623. },
  41624. frontNude: {
  41625. height: math.unit(22 + 1/12, "feet"),
  41626. weight: math.unit(3200, "lb"),
  41627. name: "Front (Nude)",
  41628. image: {
  41629. source: "./media/characters/theo-acacia/front-nude.svg",
  41630. extra: 1796/1741,
  41631. bottom: 83/1879
  41632. }
  41633. },
  41634. },
  41635. [
  41636. {
  41637. name: "Normal",
  41638. height: math.unit(22 + 1/12, "feet"),
  41639. default: true
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41645. {
  41646. front: {
  41647. height: math.unit(20, "feet"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/astra/front.svg",
  41651. extra: 1850/1714,
  41652. bottom: 106/1956
  41653. }
  41654. },
  41655. frontUndressed: {
  41656. height: math.unit(20, "feet"),
  41657. name: "Front (Undressed)",
  41658. image: {
  41659. source: "./media/characters/astra/front-undressed.svg",
  41660. extra: 1926/1749,
  41661. bottom: 0/1926
  41662. }
  41663. },
  41664. hand: {
  41665. height: math.unit(1.53, "feet"),
  41666. name: "Hand",
  41667. image: {
  41668. source: "./media/characters/astra/hand.svg"
  41669. }
  41670. },
  41671. paw: {
  41672. height: math.unit(1.53, "feet"),
  41673. name: "Paw",
  41674. image: {
  41675. source: "./media/characters/astra/paw.svg"
  41676. }
  41677. },
  41678. },
  41679. [
  41680. {
  41681. name: "Smallest",
  41682. height: math.unit(20, "feet")
  41683. },
  41684. {
  41685. name: "Normal",
  41686. height: math.unit(1e9, "miles"),
  41687. default: true
  41688. },
  41689. {
  41690. name: "Larger",
  41691. height: math.unit(5, "multiverses")
  41692. },
  41693. {
  41694. name: "Largest",
  41695. height: math.unit(1e9, "multiverses")
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(8, "feet"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/breanna/front.svg",
  41707. extra: 1912/1632,
  41708. bottom: 33/1945
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Smallest",
  41715. height: math.unit(8, "feet")
  41716. },
  41717. {
  41718. name: "Normal",
  41719. height: math.unit(1, "mile"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Maximum",
  41724. height: math.unit(1500000000000, "lightyears")
  41725. },
  41726. ]
  41727. ))
  41728. characterMakers.push(() => makeCharacter(
  41729. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41730. {
  41731. front: {
  41732. height: math.unit(5 + 11/12, "feet"),
  41733. weight: math.unit(155, "lb"),
  41734. name: "Front",
  41735. image: {
  41736. source: "./media/characters/cai/front.svg",
  41737. extra: 1823/1702,
  41738. bottom: 32/1855
  41739. }
  41740. },
  41741. back: {
  41742. height: math.unit(5 + 11/12, "feet"),
  41743. weight: math.unit(155, "lb"),
  41744. name: "Back",
  41745. image: {
  41746. source: "./media/characters/cai/back.svg",
  41747. extra: 1809/1708,
  41748. bottom: 31/1840
  41749. }
  41750. },
  41751. },
  41752. [
  41753. {
  41754. name: "Normal",
  41755. height: math.unit(5 + 11/12, "feet"),
  41756. default: true
  41757. },
  41758. {
  41759. name: "Big",
  41760. height: math.unit(15, "feet")
  41761. },
  41762. {
  41763. name: "Macro",
  41764. height: math.unit(200, "feet")
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41770. {
  41771. front: {
  41772. height: math.unit(5 + 6/12, "feet"),
  41773. weight: math.unit(160, "lb"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41777. extra: 1227/1174,
  41778. bottom: 37/1264
  41779. }
  41780. },
  41781. },
  41782. [
  41783. {
  41784. name: "Macro",
  41785. height: math.unit(444, "meters"),
  41786. default: true
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(18 + 7/12, "feet"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/rex/front.svg",
  41798. extra: 1941/1807,
  41799. bottom: 66/2007
  41800. }
  41801. },
  41802. back: {
  41803. height: math.unit(18 + 7/12, "feet"),
  41804. name: "Back",
  41805. image: {
  41806. source: "./media/characters/rex/back.svg",
  41807. extra: 1937/1822,
  41808. bottom: 42/1979
  41809. }
  41810. },
  41811. boot: {
  41812. height: math.unit(3.45, "feet"),
  41813. name: "Boot",
  41814. image: {
  41815. source: "./media/characters/rex/boot.svg"
  41816. }
  41817. },
  41818. paw: {
  41819. height: math.unit(4.17, "feet"),
  41820. name: "Paw",
  41821. image: {
  41822. source: "./media/characters/rex/paw.svg"
  41823. }
  41824. },
  41825. head: {
  41826. height: math.unit(6.728, "feet"),
  41827. name: "Head",
  41828. image: {
  41829. source: "./media/characters/rex/head.svg"
  41830. }
  41831. },
  41832. },
  41833. [
  41834. {
  41835. name: "Nano",
  41836. height: math.unit(18 + 7/12, "feet")
  41837. },
  41838. {
  41839. name: "Micro",
  41840. height: math.unit(1.5, "megameters")
  41841. },
  41842. {
  41843. name: "Normal",
  41844. height: math.unit(440, "megameters"),
  41845. default: true
  41846. },
  41847. {
  41848. name: "Macro",
  41849. height: math.unit(2.5, "gigameters")
  41850. },
  41851. {
  41852. name: "Gigamacro",
  41853. height: math.unit(2, "galaxies")
  41854. },
  41855. ]
  41856. ))
  41857. characterMakers.push(() => makeCharacter(
  41858. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41859. {
  41860. side: {
  41861. height: math.unit(32, "feet"),
  41862. weight: math.unit(250000, "lb"),
  41863. name: "Side",
  41864. image: {
  41865. source: "./media/characters/silverwing/side.svg",
  41866. extra: 1100/1019,
  41867. bottom: 204/1304
  41868. }
  41869. },
  41870. },
  41871. [
  41872. {
  41873. name: "Normal",
  41874. height: math.unit(32, "feet"),
  41875. default: true
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41881. {
  41882. front: {
  41883. height: math.unit(6 + 6/12, "feet"),
  41884. weight: math.unit(350, "lb"),
  41885. name: "Front",
  41886. image: {
  41887. source: "./media/characters/tristan-hawthorne/front.svg",
  41888. extra: 1159/1124,
  41889. bottom: 37/1196
  41890. },
  41891. form: "labrador",
  41892. default: true
  41893. },
  41894. skunkFront: {
  41895. height: math.unit(4 + 6/12, "feet"),
  41896. weight: math.unit(120, "lb"),
  41897. name: "Front",
  41898. image: {
  41899. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41900. extra: 1609/1551,
  41901. bottom: 169/1778
  41902. },
  41903. form: "skunk",
  41904. default: true
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(6 + 6/12, "feet"),
  41911. form: "labrador",
  41912. default: true
  41913. },
  41914. {
  41915. name: "Normal",
  41916. height: math.unit(4 + 6/12, "feet"),
  41917. form: "skunk",
  41918. default: true
  41919. },
  41920. ],
  41921. {
  41922. "labrador": {
  41923. name: "Labrador",
  41924. default: true
  41925. },
  41926. "skunk": {
  41927. name: "Skunk"
  41928. }
  41929. }
  41930. ))
  41931. characterMakers.push(() => makeCharacter(
  41932. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41933. {
  41934. front: {
  41935. height: math.unit(5 + 11/12, "feet"),
  41936. weight: math.unit(190, "lb"),
  41937. name: "Front",
  41938. image: {
  41939. source: "./media/characters/mizu/front.svg",
  41940. extra: 1988/1788,
  41941. bottom: 14/2002
  41942. }
  41943. },
  41944. },
  41945. [
  41946. {
  41947. name: "Normal",
  41948. height: math.unit(5 + 11/12, "feet"),
  41949. default: true
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41955. {
  41956. front: {
  41957. height: math.unit(1.7, "feet"),
  41958. weight: math.unit(50, "lb"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/dechroma/front.svg",
  41962. extra: 1095/859,
  41963. bottom: 64/1159
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(1.7, "feet"),
  41971. default: true
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41977. {
  41978. side: {
  41979. height: math.unit(30, "feet"),
  41980. name: "Side",
  41981. image: {
  41982. source: "./media/characters/veluren-thanazel/side.svg",
  41983. extra: 1611/633,
  41984. bottom: 118/1729
  41985. }
  41986. },
  41987. front: {
  41988. height: math.unit(30, "feet"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/veluren-thanazel/front.svg",
  41992. extra: 1486/636,
  41993. bottom: 238/1724
  41994. }
  41995. },
  41996. head: {
  41997. height: math.unit(21.4, "feet"),
  41998. name: "Head",
  41999. image: {
  42000. source: "./media/characters/veluren-thanazel/head.svg"
  42001. }
  42002. },
  42003. genitals: {
  42004. height: math.unit(19.4, "feet"),
  42005. name: "Genitals",
  42006. image: {
  42007. source: "./media/characters/veluren-thanazel/genitals.svg"
  42008. }
  42009. },
  42010. },
  42011. [
  42012. {
  42013. name: "Social",
  42014. height: math.unit(6, "feet")
  42015. },
  42016. {
  42017. name: "Play",
  42018. height: math.unit(12, "feet")
  42019. },
  42020. {
  42021. name: "True",
  42022. height: math.unit(30, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(7 + 6/12, "feet"),
  42032. weight: math.unit(500, "kg"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/arcturas/front.svg",
  42036. extra: 1700/1500,
  42037. bottom: 145/1845
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(7 + 6/12, "feet"),
  42045. default: true
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42051. {
  42052. side: {
  42053. height: math.unit(6, "feet"),
  42054. weight: math.unit(2, "tons"),
  42055. name: "Side",
  42056. image: {
  42057. source: "./media/characters/vitaen/side.svg",
  42058. extra: 1157/617,
  42059. bottom: 122/1279
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Normal",
  42066. height: math.unit(6, "feet"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(19, "feet"),
  42076. name: "Front",
  42077. image: {
  42078. source: "./media/characters/fia-dreamweaver/front.svg",
  42079. extra: 1630/1504,
  42080. bottom: 25/1655
  42081. }
  42082. },
  42083. },
  42084. [
  42085. {
  42086. name: "Normal",
  42087. height: math.unit(19, "feet"),
  42088. default: true
  42089. },
  42090. ]
  42091. ))
  42092. characterMakers.push(() => makeCharacter(
  42093. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42094. {
  42095. front: {
  42096. height: math.unit(5 + 4/12, "feet"),
  42097. name: "Front",
  42098. image: {
  42099. source: "./media/characters/artan/front.svg",
  42100. extra: 1618/1535,
  42101. bottom: 46/1664
  42102. }
  42103. },
  42104. back: {
  42105. height: math.unit(5 + 4/12, "feet"),
  42106. name: "Back",
  42107. image: {
  42108. source: "./media/characters/artan/back.svg",
  42109. extra: 1618/1543,
  42110. bottom: 31/1649
  42111. }
  42112. },
  42113. },
  42114. [
  42115. {
  42116. name: "Normal",
  42117. height: math.unit(5 + 4/12, "feet"),
  42118. default: true
  42119. },
  42120. ]
  42121. ))
  42122. characterMakers.push(() => makeCharacter(
  42123. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42124. {
  42125. side: {
  42126. height: math.unit(182, "cm"),
  42127. weight: math.unit(1000, "lb"),
  42128. name: "Side",
  42129. image: {
  42130. source: "./media/characters/silver-dragon/side.svg",
  42131. extra: 710/287,
  42132. bottom: 88/798
  42133. }
  42134. },
  42135. },
  42136. [
  42137. {
  42138. name: "Normal",
  42139. height: math.unit(182, "cm"),
  42140. default: true
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42146. {
  42147. side: {
  42148. height: math.unit(6 + 6/12, "feet"),
  42149. weight: math.unit(1.5, "tons"),
  42150. name: "Side",
  42151. image: {
  42152. source: "./media/characters/zephyr/side.svg",
  42153. extra: 1433/586,
  42154. bottom: 109/1542
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Normal",
  42161. height: math.unit(6 + 6/12, "feet"),
  42162. default: true
  42163. },
  42164. ]
  42165. ))
  42166. characterMakers.push(() => makeCharacter(
  42167. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42168. {
  42169. side: {
  42170. height: math.unit(1, "feet"),
  42171. name: "Side",
  42172. image: {
  42173. source: "./media/characters/vixye/side.svg",
  42174. extra: 632/541,
  42175. bottom: 0/632
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Normal",
  42182. height: math.unit(1, "feet"),
  42183. default: true
  42184. },
  42185. {
  42186. name: "True",
  42187. height: math.unit(1e15, "multiverses")
  42188. },
  42189. ]
  42190. ))
  42191. characterMakers.push(() => makeCharacter(
  42192. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42193. {
  42194. front: {
  42195. height: math.unit(8 + 2/12, "feet"),
  42196. weight: math.unit(650, "lb"),
  42197. name: "Front",
  42198. image: {
  42199. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42200. extra: 1174/1137,
  42201. bottom: 82/1256
  42202. }
  42203. },
  42204. back: {
  42205. height: math.unit(8 + 2/12, "feet"),
  42206. weight: math.unit(650, "lb"),
  42207. name: "Back",
  42208. image: {
  42209. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42210. extra: 1204/1157,
  42211. bottom: 46/1250
  42212. }
  42213. },
  42214. },
  42215. [
  42216. {
  42217. name: "Wildform",
  42218. height: math.unit(8 + 2/12, "feet"),
  42219. default: true
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(18, "feet"),
  42228. name: "Front",
  42229. image: {
  42230. source: "./media/characters/cyphin/front.svg",
  42231. extra: 970/886,
  42232. bottom: 42/1012
  42233. }
  42234. },
  42235. back: {
  42236. height: math.unit(18, "feet"),
  42237. name: "Back",
  42238. image: {
  42239. source: "./media/characters/cyphin/back.svg",
  42240. extra: 1009/894,
  42241. bottom: 24/1033
  42242. }
  42243. },
  42244. head: {
  42245. height: math.unit(5.05, "feet"),
  42246. name: "Head",
  42247. image: {
  42248. source: "./media/characters/cyphin/head.svg"
  42249. }
  42250. },
  42251. tailbud: {
  42252. height: math.unit(5, "feet"),
  42253. name: "Tailbud",
  42254. image: {
  42255. source: "./media/characters/cyphin/tailbud.svg"
  42256. }
  42257. },
  42258. },
  42259. [
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42264. {
  42265. side: {
  42266. height: math.unit(10, "feet"),
  42267. weight: math.unit(6, "tons"),
  42268. name: "Side",
  42269. image: {
  42270. source: "./media/characters/raijin/side.svg",
  42271. extra: 1529/613,
  42272. bottom: 337/1866
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(10, "feet"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42286. {
  42287. side: {
  42288. height: math.unit(9, "feet"),
  42289. name: "Side",
  42290. image: {
  42291. source: "./media/characters/nilghais/side.svg",
  42292. extra: 1047/744,
  42293. bottom: 91/1138
  42294. }
  42295. },
  42296. head: {
  42297. height: math.unit(3.14, "feet"),
  42298. name: "Head",
  42299. image: {
  42300. source: "./media/characters/nilghais/head.svg"
  42301. }
  42302. },
  42303. mouth: {
  42304. height: math.unit(4.6, "feet"),
  42305. name: "Mouth",
  42306. image: {
  42307. source: "./media/characters/nilghais/mouth.svg"
  42308. }
  42309. },
  42310. wings: {
  42311. height: math.unit(24, "feet"),
  42312. name: "Wings",
  42313. image: {
  42314. source: "./media/characters/nilghais/wings.svg"
  42315. }
  42316. },
  42317. ass: {
  42318. height: math.unit(6.12, "feet"),
  42319. name: "Ass",
  42320. image: {
  42321. source: "./media/characters/nilghais/ass.svg"
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(9, "feet"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42335. {
  42336. regular: {
  42337. height: math.unit(16 + 2/12, "feet"),
  42338. weight: math.unit(2300, "lb"),
  42339. name: "Regular",
  42340. image: {
  42341. source: "./media/characters/zolgar/regular.svg",
  42342. extra: 1246/1004,
  42343. bottom: 124/1370
  42344. }
  42345. },
  42346. boxers: {
  42347. height: math.unit(16 + 2/12, "feet"),
  42348. weight: math.unit(2300, "lb"),
  42349. name: "Boxers",
  42350. image: {
  42351. source: "./media/characters/zolgar/boxers.svg",
  42352. extra: 1246/1004,
  42353. bottom: 124/1370
  42354. }
  42355. },
  42356. armored: {
  42357. height: math.unit(16 + 2/12, "feet"),
  42358. weight: math.unit(2300, "lb"),
  42359. name: "Armored",
  42360. image: {
  42361. source: "./media/characters/zolgar/armored.svg",
  42362. extra: 1246/1004,
  42363. bottom: 124/1370
  42364. }
  42365. },
  42366. goth: {
  42367. height: math.unit(16 + 2/12, "feet"),
  42368. weight: math.unit(2300, "lb"),
  42369. name: "Goth",
  42370. image: {
  42371. source: "./media/characters/zolgar/goth.svg",
  42372. extra: 1246/1004,
  42373. bottom: 124/1370
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Shrunken Down",
  42380. height: math.unit(9 + 2/12, "feet")
  42381. },
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(16 + 2/12, "feet"),
  42385. default: true
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(6, "feet"),
  42394. weight: math.unit(168, "lb"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/luca/front.svg",
  42398. extra: 841/667,
  42399. bottom: 102/943
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(6, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42413. {
  42414. side: {
  42415. height: math.unit(7 + 3/12, "feet"),
  42416. weight: math.unit(312, "lb"),
  42417. name: "Side",
  42418. image: {
  42419. source: "./media/characters/zezo/side.svg",
  42420. extra: 1192/1067,
  42421. bottom: 63/1255
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(7 + 3/12, "feet"),
  42429. default: true
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(5 + 5/12, "feet"),
  42438. weight: math.unit(170, "lb"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/mayso/front.svg",
  42442. extra: 1215/1108,
  42443. bottom: 16/1231
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Normal",
  42450. height: math.unit(5 + 5/12, "feet"),
  42451. default: true
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(4 + 3/12, "feet"),
  42460. weight: math.unit(80, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/hess/front.svg",
  42464. extra: 1200/1123,
  42465. bottom: 16/1216
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(4 + 3/12, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42479. {
  42480. front: {
  42481. height: math.unit(1.9, "meters"),
  42482. name: "Front",
  42483. image: {
  42484. source: "./media/characters/ashgar/front.svg",
  42485. extra: 1177/1146,
  42486. bottom: 99/1276
  42487. }
  42488. },
  42489. back: {
  42490. height: math.unit(1.9, "meters"),
  42491. name: "Back",
  42492. image: {
  42493. source: "./media/characters/ashgar/back.svg",
  42494. extra: 1201/1183,
  42495. bottom: 53/1254
  42496. }
  42497. },
  42498. feral: {
  42499. height: math.unit(1.4, "meters"),
  42500. name: "Feral",
  42501. image: {
  42502. source: "./media/characters/ashgar/feral.svg",
  42503. extra: 370/345,
  42504. bottom: 45/415
  42505. }
  42506. },
  42507. },
  42508. [
  42509. {
  42510. name: "Normal",
  42511. height: math.unit(1.9, "meters"),
  42512. default: true
  42513. },
  42514. ]
  42515. ))
  42516. characterMakers.push(() => makeCharacter(
  42517. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42518. {
  42519. regular: {
  42520. height: math.unit(6, "feet"),
  42521. weight: math.unit(220, "lb"),
  42522. name: "Regular",
  42523. image: {
  42524. source: "./media/characters/phillip/regular.svg",
  42525. extra: 1373/1277,
  42526. bottom: 75/1448
  42527. }
  42528. },
  42529. dressed: {
  42530. height: math.unit(6, "feet"),
  42531. weight: math.unit(220, "lb"),
  42532. name: "Dressed",
  42533. image: {
  42534. source: "./media/characters/phillip/dressed.svg",
  42535. extra: 1373/1277,
  42536. bottom: 75/1448
  42537. }
  42538. },
  42539. paw: {
  42540. height: math.unit(1.44, "feet"),
  42541. name: "Paw",
  42542. image: {
  42543. source: "./media/characters/phillip/paw.svg"
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(6, "feet"),
  42551. default: true
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42557. {
  42558. side: {
  42559. height: math.unit(42, "feet"),
  42560. name: "Side",
  42561. image: {
  42562. source: "./media/characters/uvula/side.svg",
  42563. extra: 683/586,
  42564. bottom: 60/743
  42565. }
  42566. },
  42567. front: {
  42568. height: math.unit(42, "feet"),
  42569. name: "Front",
  42570. image: {
  42571. source: "./media/characters/uvula/front.svg",
  42572. extra: 705/613,
  42573. bottom: 54/759
  42574. }
  42575. },
  42576. maw: {
  42577. height: math.unit(23.5, "feet"),
  42578. name: "Maw",
  42579. image: {
  42580. source: "./media/characters/uvula/maw.svg"
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Original Size",
  42587. height: math.unit(14, "inches")
  42588. },
  42589. {
  42590. name: "Human Size",
  42591. height: math.unit(6, "feet")
  42592. },
  42593. {
  42594. name: "Big",
  42595. height: math.unit(42, "feet"),
  42596. default: true
  42597. },
  42598. {
  42599. name: "Bigger",
  42600. height: math.unit(100, "feet")
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(5 + 11/12, "feet"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/lannah/front.svg",
  42612. extra: 1208/1113,
  42613. bottom: 97/1305
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Normal",
  42620. height: math.unit(5 + 11/12, "feet"),
  42621. default: true
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42627. {
  42628. front: {
  42629. height: math.unit(6 + 3/12, "feet"),
  42630. weight: math.unit(3.5, "tons"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/emberflame/front.svg",
  42634. extra: 1198/672,
  42635. bottom: 82/1280
  42636. }
  42637. },
  42638. side: {
  42639. height: math.unit(6 + 3/12, "feet"),
  42640. weight: math.unit(3.5, "tons"),
  42641. name: "Side",
  42642. image: {
  42643. source: "./media/characters/emberflame/side.svg",
  42644. extra: 938/527,
  42645. bottom: 56/994
  42646. }
  42647. },
  42648. },
  42649. [
  42650. {
  42651. name: "Normal",
  42652. height: math.unit(6 + 3/12, "feet"),
  42653. default: true
  42654. },
  42655. ]
  42656. ))
  42657. characterMakers.push(() => makeCharacter(
  42658. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42659. {
  42660. side: {
  42661. height: math.unit(17.5, "feet"),
  42662. weight: math.unit(35, "tons"),
  42663. name: "Side",
  42664. image: {
  42665. source: "./media/characters/sophie-ambrose/side.svg",
  42666. extra: 1573/1242,
  42667. bottom: 71/1644
  42668. }
  42669. },
  42670. maw: {
  42671. height: math.unit(7.4, "feet"),
  42672. name: "Maw",
  42673. image: {
  42674. source: "./media/characters/sophie-ambrose/maw.svg"
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Normal",
  42681. height: math.unit(17.5, "feet"),
  42682. default: true
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(280, "feet"),
  42691. weight: math.unit(550, "tons"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/king-mugi/front.svg",
  42695. extra: 1102/947,
  42696. bottom: 104/1206
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "King Mugi",
  42703. height: math.unit(280, "feet"),
  42704. default: true
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42710. {
  42711. front: {
  42712. height: math.unit(64, "meters"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/nova-fox/front.svg",
  42716. extra: 1310/1246,
  42717. bottom: 65/1375
  42718. }
  42719. },
  42720. },
  42721. [
  42722. {
  42723. name: "Macro",
  42724. height: math.unit(64, "meters"),
  42725. default: true
  42726. },
  42727. ]
  42728. ))
  42729. characterMakers.push(() => makeCharacter(
  42730. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42731. {
  42732. front: {
  42733. height: math.unit(6 + 3/12, "feet"),
  42734. weight: math.unit(170, "lb"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/sam-bat/front.svg",
  42738. extra: 1601/1411,
  42739. bottom: 125/1726
  42740. }
  42741. },
  42742. back: {
  42743. height: math.unit(6 + 3/12, "feet"),
  42744. weight: math.unit(170, "lb"),
  42745. name: "Back",
  42746. image: {
  42747. source: "./media/characters/sam-bat/back.svg",
  42748. extra: 1577/1405,
  42749. bottom: 58/1635
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Normal",
  42756. height: math.unit(6 + 3/12, "feet"),
  42757. default: true
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42763. {
  42764. front: {
  42765. height: math.unit(59, "feet"),
  42766. weight: math.unit(40000, "lb"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/inari/front.svg",
  42770. extra: 1884/1350,
  42771. bottom: 95/1979
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Gigantamax",
  42778. height: math.unit(59, "feet"),
  42779. default: true
  42780. },
  42781. ]
  42782. ))
  42783. characterMakers.push(() => makeCharacter(
  42784. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42785. {
  42786. front: {
  42787. height: math.unit(5 + 8/12, "feet"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/elizabeth/front.svg",
  42791. extra: 1395/1298,
  42792. bottom: 54/1449
  42793. }
  42794. },
  42795. mouth: {
  42796. height: math.unit(1.97, "feet"),
  42797. name: "Mouth",
  42798. image: {
  42799. source: "./media/characters/elizabeth/mouth.svg"
  42800. }
  42801. },
  42802. foot: {
  42803. height: math.unit(1.17, "feet"),
  42804. name: "Foot",
  42805. image: {
  42806. source: "./media/characters/elizabeth/foot.svg"
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Normal",
  42813. height: math.unit(5 + 8/12, "feet"),
  42814. default: true
  42815. },
  42816. {
  42817. name: "Minimacro",
  42818. height: math.unit(18, "feet")
  42819. },
  42820. {
  42821. name: "Macro",
  42822. height: math.unit(180, "feet")
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(5 + 2/12, "feet"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/october-gossamer/front.svg",
  42834. extra: 505/454,
  42835. bottom: 7/512
  42836. }
  42837. },
  42838. back: {
  42839. height: math.unit(5 + 2/12, "feet"),
  42840. name: "Back",
  42841. image: {
  42842. source: "./media/characters/october-gossamer/back.svg",
  42843. extra: 501/454,
  42844. bottom: 11/512
  42845. }
  42846. },
  42847. },
  42848. [
  42849. {
  42850. name: "Normal",
  42851. height: math.unit(5 + 2/12, "feet"),
  42852. default: true
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42858. {
  42859. front: {
  42860. height: math.unit(5, "feet"),
  42861. name: "Front",
  42862. image: {
  42863. source: "./media/characters/epiglottis/front.svg",
  42864. extra: 923/849,
  42865. bottom: 17/940
  42866. }
  42867. },
  42868. },
  42869. [
  42870. {
  42871. name: "Original Size",
  42872. height: math.unit(10, "inches")
  42873. },
  42874. {
  42875. name: "Human Size",
  42876. height: math.unit(5, "feet"),
  42877. default: true
  42878. },
  42879. {
  42880. name: "Big",
  42881. height: math.unit(25, "feet")
  42882. },
  42883. {
  42884. name: "Bigger",
  42885. height: math.unit(50, "feet")
  42886. },
  42887. {
  42888. name: "oh lawd",
  42889. height: math.unit(75, "feet")
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(2 + 4/12, "feet"),
  42898. weight: math.unit(60, "lb"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/lerm/front.svg",
  42902. extra: 796/790,
  42903. bottom: 79/875
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(2 + 4/12, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(5.5, "feet"),
  42920. weight: math.unit(130, "lb"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/xena-nebadon/front.svg",
  42924. extra: 1828/1730,
  42925. bottom: 79/1907
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Tiny Puppy",
  42932. height: math.unit(3, "inches")
  42933. },
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(5.5, "feet"),
  42937. default: true
  42938. },
  42939. {
  42940. name: "Lotta Lady",
  42941. height: math.unit(12, "feet")
  42942. },
  42943. {
  42944. name: "Pretty Big",
  42945. height: math.unit(100, "feet")
  42946. },
  42947. {
  42948. name: "Big",
  42949. height: math.unit(500, "feet")
  42950. },
  42951. {
  42952. name: "Skyscraper Toys",
  42953. height: math.unit(2500, "feet")
  42954. },
  42955. {
  42956. name: "Plane Catcher",
  42957. height: math.unit(8, "miles")
  42958. },
  42959. {
  42960. name: "Planet Toys",
  42961. height: math.unit(15, "earths")
  42962. },
  42963. {
  42964. name: "Stardust",
  42965. height: math.unit(0.25, "galaxies")
  42966. },
  42967. {
  42968. name: "Snacks",
  42969. height: math.unit(70, "universes")
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(1.6, "meters"),
  42978. weight: math.unit(60, "kg"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/bounty/front.svg",
  42982. extra: 1426/1308,
  42983. bottom: 15/1441
  42984. }
  42985. },
  42986. back: {
  42987. height: math.unit(1.6, "meters"),
  42988. weight: math.unit(60, "kg"),
  42989. name: "Back",
  42990. image: {
  42991. source: "./media/characters/bounty/back.svg",
  42992. extra: 1417/1307,
  42993. bottom: 8/1425
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(1.6, "meters"),
  43001. default: true
  43002. },
  43003. {
  43004. name: "Macro",
  43005. height: math.unit(300, "meters")
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43011. {
  43012. front: {
  43013. height: math.unit(2 + 8/12, "feet"),
  43014. weight: math.unit(15, "lb"),
  43015. name: "Front",
  43016. image: {
  43017. source: "./media/characters/mochi/front.svg",
  43018. extra: 1022/852,
  43019. bottom: 435/1457
  43020. }
  43021. },
  43022. back: {
  43023. height: math.unit(2 + 8/12, "feet"),
  43024. weight: math.unit(15, "lb"),
  43025. name: "Back",
  43026. image: {
  43027. source: "./media/characters/mochi/back.svg",
  43028. extra: 1335/1119,
  43029. bottom: 39/1374
  43030. }
  43031. },
  43032. bird: {
  43033. height: math.unit(2 + 8/12, "feet"),
  43034. weight: math.unit(15, "lb"),
  43035. name: "Bird",
  43036. image: {
  43037. source: "./media/characters/mochi/bird.svg",
  43038. extra: 1251/1113,
  43039. bottom: 178/1429
  43040. }
  43041. },
  43042. kaiju: {
  43043. height: math.unit(154, "feet"),
  43044. weight: math.unit(1e7, "lb"),
  43045. name: "Kaiju",
  43046. image: {
  43047. source: "./media/characters/mochi/kaiju.svg",
  43048. extra: 460/324,
  43049. bottom: 40/500
  43050. }
  43051. },
  43052. head: {
  43053. height: math.unit(1.21, "feet"),
  43054. name: "Head",
  43055. image: {
  43056. source: "./media/characters/mochi/head.svg"
  43057. }
  43058. },
  43059. alternateTail: {
  43060. height: math.unit(2 + 8/12, "feet"),
  43061. weight: math.unit(45, "lb"),
  43062. name: "Alternate Tail",
  43063. image: {
  43064. source: "./media/characters/mochi/alternate-tail.svg",
  43065. extra: 139/76,
  43066. bottom: 45/184
  43067. }
  43068. },
  43069. },
  43070. [
  43071. {
  43072. name: "Micro",
  43073. height: math.unit(2, "inches")
  43074. },
  43075. {
  43076. name: "Normal",
  43077. height: math.unit(2 + 8/12, "feet"),
  43078. default: true
  43079. },
  43080. {
  43081. name: "Macro",
  43082. height: math.unit(106, "feet")
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(5.67, "feet"),
  43091. weight: math.unit(135, "lb"),
  43092. name: "Front",
  43093. image: {
  43094. source: "./media/characters/sarel/front.svg",
  43095. extra: 865/788,
  43096. bottom: 97/962
  43097. }
  43098. },
  43099. back: {
  43100. height: math.unit(5.67, "feet"),
  43101. weight: math.unit(135, "lb"),
  43102. name: "Back",
  43103. image: {
  43104. source: "./media/characters/sarel/back.svg",
  43105. extra: 857/777,
  43106. bottom: 32/889
  43107. }
  43108. },
  43109. chozoan: {
  43110. height: math.unit(5.67, "feet"),
  43111. weight: math.unit(135, "lb"),
  43112. name: "Chozoan",
  43113. image: {
  43114. source: "./media/characters/sarel/chozoan.svg",
  43115. extra: 865/788,
  43116. bottom: 97/962
  43117. }
  43118. },
  43119. current: {
  43120. height: math.unit(5.67, "feet"),
  43121. weight: math.unit(135, "lb"),
  43122. name: "Current",
  43123. image: {
  43124. source: "./media/characters/sarel/current.svg",
  43125. extra: 865/788,
  43126. bottom: 97/962
  43127. }
  43128. },
  43129. head: {
  43130. height: math.unit(1.77, "feet"),
  43131. name: "Head",
  43132. image: {
  43133. source: "./media/characters/sarel/head.svg"
  43134. }
  43135. },
  43136. claws: {
  43137. height: math.unit(1.8, "feet"),
  43138. name: "Claws",
  43139. image: {
  43140. source: "./media/characters/sarel/claws.svg"
  43141. }
  43142. },
  43143. clawsAlt: {
  43144. height: math.unit(1.8, "feet"),
  43145. name: "Claws-alt",
  43146. image: {
  43147. source: "./media/characters/sarel/claws-alt.svg"
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(5.67, "feet"),
  43155. default: true
  43156. },
  43157. ]
  43158. ))
  43159. characterMakers.push(() => makeCharacter(
  43160. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43161. {
  43162. front: {
  43163. height: math.unit(5500, "feet"),
  43164. name: "Front",
  43165. image: {
  43166. source: "./media/characters/alyonia/front.svg",
  43167. extra: 1200/1135,
  43168. bottom: 29/1229
  43169. }
  43170. },
  43171. back: {
  43172. height: math.unit(5500, "feet"),
  43173. name: "Back",
  43174. image: {
  43175. source: "./media/characters/alyonia/back.svg",
  43176. extra: 1205/1138,
  43177. bottom: 10/1215
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Small",
  43184. height: math.unit(10, "feet")
  43185. },
  43186. {
  43187. name: "Macro",
  43188. height: math.unit(500, "feet")
  43189. },
  43190. {
  43191. name: "Mega Macro",
  43192. height: math.unit(5500, "feet"),
  43193. default: true
  43194. },
  43195. {
  43196. name: "Mega Macro+",
  43197. height: math.unit(500000, "feet")
  43198. },
  43199. {
  43200. name: "Giga Macro",
  43201. height: math.unit(3000, "miles")
  43202. },
  43203. {
  43204. name: "Tera Macro",
  43205. height: math.unit(2.8e6, "miles")
  43206. },
  43207. {
  43208. name: "Galactic",
  43209. height: math.unit(120000, "lightyears")
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43215. {
  43216. werewolf: {
  43217. height: math.unit(8, "feet"),
  43218. weight: math.unit(425, "lb"),
  43219. name: "Werewolf",
  43220. image: {
  43221. source: "./media/characters/autumn/werewolf.svg",
  43222. extra: 2154/2031,
  43223. bottom: 160/2314
  43224. }
  43225. },
  43226. human: {
  43227. height: math.unit(5 + 8/12, "feet"),
  43228. weight: math.unit(150, "lb"),
  43229. name: "Human",
  43230. image: {
  43231. source: "./media/characters/autumn/human.svg",
  43232. extra: 1200/1149,
  43233. bottom: 30/1230
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Normal",
  43240. height: math.unit(8, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(8 + 5/12, "feet"),
  43250. weight: math.unit(825, "lb"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/cobalt-charizard/front.svg",
  43254. extra: 1268/1155,
  43255. bottom: 122/1390
  43256. }
  43257. },
  43258. side: {
  43259. height: math.unit(8 + 5/12, "feet"),
  43260. weight: math.unit(825, "lb"),
  43261. name: "Side",
  43262. image: {
  43263. source: "./media/characters/cobalt-charizard/side.svg",
  43264. extra: 1348/1257,
  43265. bottom: 58/1406
  43266. }
  43267. },
  43268. gMax: {
  43269. height: math.unit(134 + 11/12, "feet"),
  43270. name: "G-Max",
  43271. image: {
  43272. source: "./media/characters/cobalt-charizard/g-max.svg",
  43273. extra: 1835/1541,
  43274. bottom: 151/1986
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(8 + 5/12, "feet"),
  43282. default: true
  43283. },
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43288. {
  43289. front: {
  43290. height: math.unit(6 + 3/12, "feet"),
  43291. weight: math.unit(210, "lb"),
  43292. name: "Front",
  43293. image: {
  43294. source: "./media/characters/stella/front.svg",
  43295. extra: 3549/3335,
  43296. bottom: 51/3600
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Normal",
  43303. height: math.unit(6 + 3/12, "feet"),
  43304. default: true
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43310. {
  43311. front: {
  43312. height: math.unit(5, "feet"),
  43313. weight: math.unit(90, "lb"),
  43314. name: "Front",
  43315. image: {
  43316. source: "./media/characters/riley-bishop/front.svg",
  43317. extra: 1450/1428,
  43318. bottom: 152/1602
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(5, "feet"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43332. {
  43333. side: {
  43334. height: math.unit(8 + 2/12, "feet"),
  43335. weight: math.unit(500, "kg"),
  43336. name: "Side",
  43337. image: {
  43338. source: "./media/characters/theo-arcanine/side.svg",
  43339. extra: 1342/1074,
  43340. bottom: 111/1453
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(8 + 2/12, "feet"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(4, "feet"),
  43357. name: "Front",
  43358. image: {
  43359. source: "./media/characters/kali/front.svg",
  43360. extra: 1921/1357,
  43361. bottom: 70/1991
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(4, "feet"),
  43369. default: true
  43370. },
  43371. {
  43372. name: "Macro",
  43373. height: math.unit(32, "meters")
  43374. },
  43375. {
  43376. name: "Macro+",
  43377. height: math.unit(150, "meters")
  43378. },
  43379. {
  43380. name: "Megamacro",
  43381. height: math.unit(7500, "meters")
  43382. },
  43383. {
  43384. name: "Megamacro+",
  43385. height: math.unit(80, "kilometers")
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43391. {
  43392. side: {
  43393. height: math.unit(5 + 11/12, "feet"),
  43394. weight: math.unit(236, "lb"),
  43395. name: "Side",
  43396. image: {
  43397. source: "./media/characters/gapp/side.svg",
  43398. extra: 775/340,
  43399. bottom: 58/833
  43400. }
  43401. },
  43402. mouth: {
  43403. height: math.unit(2.98, "feet"),
  43404. name: "Mouth",
  43405. image: {
  43406. source: "./media/characters/gapp/mouth.svg"
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(5 + 1/12, "feet"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43420. {
  43421. front: {
  43422. height: math.unit(6, "feet"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/persephone/front.svg",
  43426. extra: 1895/1717,
  43427. bottom: 96/1991
  43428. }
  43429. },
  43430. back: {
  43431. height: math.unit(6, "feet"),
  43432. name: "Back",
  43433. image: {
  43434. source: "./media/characters/persephone/back.svg",
  43435. extra: 1868/1679,
  43436. bottom: 26/1894
  43437. }
  43438. },
  43439. casual: {
  43440. height: math.unit(6, "feet"),
  43441. name: "Casual",
  43442. image: {
  43443. source: "./media/characters/persephone/casual.svg",
  43444. extra: 1713/1541,
  43445. bottom: 76/1789
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Human Size",
  43452. height: math.unit(6, "feet")
  43453. },
  43454. {
  43455. name: "Big Steppy",
  43456. height: math.unit(600, "meters"),
  43457. default: true
  43458. },
  43459. {
  43460. name: "Galaxy Brain",
  43461. height: math.unit(1, "zettameter")
  43462. },
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(1.85, "meters"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/riley-foxthing/front.svg",
  43473. extra: 1495/1354,
  43474. bottom: 122/1617
  43475. }
  43476. },
  43477. frontAlt: {
  43478. height: math.unit(1.85, "meters"),
  43479. name: "Front (Alt)",
  43480. image: {
  43481. source: "./media/characters/riley-foxthing/front-alt.svg",
  43482. extra: 1572/1389,
  43483. bottom: 116/1688
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Normal Sized",
  43490. height: math.unit(1.85, "meters"),
  43491. default: true
  43492. },
  43493. {
  43494. name: "Quite Sizable",
  43495. height: math.unit(5, "meters")
  43496. },
  43497. {
  43498. name: "Rather Large",
  43499. height: math.unit(20, "meters")
  43500. },
  43501. {
  43502. name: "Macro",
  43503. height: math.unit(450, "meters")
  43504. },
  43505. {
  43506. name: "Giga",
  43507. height: math.unit(5, "km")
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(6, "feet"),
  43516. weight: math.unit(200, "lb"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/blizzard/front.svg",
  43520. extra: 1136/990,
  43521. bottom: 136/1272
  43522. }
  43523. },
  43524. back: {
  43525. height: math.unit(6, "feet"),
  43526. weight: math.unit(200, "lb"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/blizzard/back.svg",
  43530. extra: 1175/1034,
  43531. bottom: 97/1272
  43532. }
  43533. },
  43534. sitting: {
  43535. height: math.unit(3.725, "feet"),
  43536. weight: math.unit(200, "lb"),
  43537. name: "Sitting",
  43538. image: {
  43539. source: "./media/characters/blizzard/sitting.svg",
  43540. extra: 581/485,
  43541. bottom: 90/671
  43542. }
  43543. },
  43544. frontWizard: {
  43545. height: math.unit(7.9, "feet"),
  43546. weight: math.unit(200, "lb"),
  43547. name: "Front (Wizard)",
  43548. image: {
  43549. source: "./media/characters/blizzard/front-wizard.svg"
  43550. }
  43551. },
  43552. backWizard: {
  43553. height: math.unit(7.9, "feet"),
  43554. weight: math.unit(200, "lb"),
  43555. name: "Back (Wizard)",
  43556. image: {
  43557. source: "./media/characters/blizzard/back-wizard.svg"
  43558. }
  43559. },
  43560. frontNsfw: {
  43561. height: math.unit(6, "feet"),
  43562. weight: math.unit(200, "lb"),
  43563. name: "Front (NSFW)",
  43564. image: {
  43565. source: "./media/characters/blizzard/front-nsfw.svg",
  43566. extra: 1136/990,
  43567. bottom: 136/1272
  43568. }
  43569. },
  43570. backNsfw: {
  43571. height: math.unit(6, "feet"),
  43572. weight: math.unit(200, "lb"),
  43573. name: "Back (NSFW)",
  43574. image: {
  43575. source: "./media/characters/blizzard/back-nsfw.svg",
  43576. extra: 1175/1034,
  43577. bottom: 97/1272
  43578. }
  43579. },
  43580. sittingNsfw: {
  43581. height: math.unit(3.725, "feet"),
  43582. weight: math.unit(200, "lb"),
  43583. name: "Sitting (NSFW)",
  43584. image: {
  43585. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43586. extra: 581/485,
  43587. bottom: 90/671
  43588. }
  43589. },
  43590. wizardFrontNsfw: {
  43591. height: math.unit(7.9, "feet"),
  43592. weight: math.unit(200, "lb"),
  43593. name: "Wizard (Front, NSFW)",
  43594. image: {
  43595. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(6, "feet"),
  43603. default: true
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(5 + 2/12, "feet"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/lumi/front.svg",
  43615. extra: 1328/1268,
  43616. bottom: 103/1431
  43617. }
  43618. },
  43619. back: {
  43620. height: math.unit(5 + 2/12, "feet"),
  43621. name: "Back",
  43622. image: {
  43623. source: "./media/characters/lumi/back.svg",
  43624. extra: 1381/1327,
  43625. bottom: 43/1424
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Normal",
  43632. height: math.unit(5 + 2/12, "feet"),
  43633. default: true
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43639. {
  43640. front: {
  43641. height: math.unit(5 + 9/12, "feet"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/aliya-cotton/front.svg",
  43645. extra: 577/564,
  43646. bottom: 29/606
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Normal",
  43653. height: math.unit(5 + 9/12, "feet"),
  43654. default: true
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(2.7, "meters"),
  43663. weight: math.unit(25000, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/noah-luxray/front.svg",
  43667. extra: 1644/825,
  43668. bottom: 339/1983
  43669. }
  43670. },
  43671. side: {
  43672. height: math.unit(2.97, "meters"),
  43673. weight: math.unit(25000, "lb"),
  43674. name: "Side",
  43675. image: {
  43676. source: "./media/characters/noah-luxray/side.svg",
  43677. extra: 1319/650,
  43678. bottom: 163/1482
  43679. }
  43680. },
  43681. dick: {
  43682. height: math.unit(7.4, "feet"),
  43683. weight: math.unit(2500, "lb"),
  43684. name: "Dick",
  43685. image: {
  43686. source: "./media/characters/noah-luxray/dick.svg"
  43687. }
  43688. },
  43689. dickAlt: {
  43690. height: math.unit(10.83, "feet"),
  43691. weight: math.unit(2500, "lb"),
  43692. name: "Dick-alt",
  43693. image: {
  43694. source: "./media/characters/noah-luxray/dick-alt.svg"
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "BIG",
  43701. height: math.unit(2.7, "meters"),
  43702. default: true
  43703. },
  43704. ]
  43705. ))
  43706. characterMakers.push(() => makeCharacter(
  43707. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43708. {
  43709. standing: {
  43710. height: math.unit(183, "cm"),
  43711. weight: math.unit(68, "kg"),
  43712. name: "Standing",
  43713. image: {
  43714. source: "./media/characters/arion/standing.svg",
  43715. extra: 1869/1807,
  43716. bottom: 93/1962
  43717. }
  43718. },
  43719. reclining: {
  43720. height: math.unit(70.5, "cm"),
  43721. weight: math.unit(68, "lb"),
  43722. name: "Reclining",
  43723. image: {
  43724. source: "./media/characters/arion/reclining.svg",
  43725. extra: 937/870,
  43726. bottom: 63/1000
  43727. }
  43728. },
  43729. },
  43730. [
  43731. {
  43732. name: "Colossus Size, Low",
  43733. height: math.unit(33, "meters"),
  43734. default: true
  43735. },
  43736. {
  43737. name: "Colossus Size, Mid",
  43738. height: math.unit(52, "meters")
  43739. },
  43740. {
  43741. name: "Colossus Size, High",
  43742. height: math.unit(60, "meters")
  43743. },
  43744. {
  43745. name: "Titan Size, Low",
  43746. height: math.unit(91, "meters"),
  43747. },
  43748. {
  43749. name: "Titan Size, Mid",
  43750. height: math.unit(122, "meters")
  43751. },
  43752. {
  43753. name: "Titan Size, High",
  43754. height: math.unit(162, "meters")
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(53, "meters"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/stellar-marbey/front.svg",
  43766. extra: 1913/1805,
  43767. bottom: 92/2005
  43768. }
  43769. },
  43770. back: {
  43771. height: math.unit(53, "meters"),
  43772. name: "Back",
  43773. image: {
  43774. source: "./media/characters/stellar-marbey/back.svg",
  43775. extra: 1960/1851,
  43776. bottom: 28/1988
  43777. }
  43778. },
  43779. mouth: {
  43780. height: math.unit(3.5, "meters"),
  43781. name: "Mouth",
  43782. image: {
  43783. source: "./media/characters/stellar-marbey/mouth.svg"
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Macro",
  43790. height: math.unit(53, "meters"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(8 + 1/12, "feet"),
  43800. weight: math.unit(233, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/matsu/front.svg",
  43804. extra: 832/772,
  43805. bottom: 40/872
  43806. }
  43807. },
  43808. back: {
  43809. height: math.unit(8 + 1/12, "feet"),
  43810. weight: math.unit(233, "lb"),
  43811. name: "Back",
  43812. image: {
  43813. source: "./media/characters/matsu/back.svg",
  43814. extra: 839/780,
  43815. bottom: 47/886
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(8 + 1/12, "feet"),
  43823. default: true
  43824. },
  43825. ]
  43826. ))
  43827. characterMakers.push(() => makeCharacter(
  43828. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43829. {
  43830. front: {
  43831. height: math.unit(4, "feet"),
  43832. weight: math.unit(148, "lb"),
  43833. name: "Front",
  43834. image: {
  43835. source: "./media/characters/thiz/front.svg",
  43836. extra: 1913/1748,
  43837. bottom: 62/1975
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal",
  43844. height: math.unit(4, "feet"),
  43845. default: true
  43846. },
  43847. ]
  43848. ))
  43849. characterMakers.push(() => makeCharacter(
  43850. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43851. {
  43852. front: {
  43853. height: math.unit(7 + 6/12, "feet"),
  43854. weight: math.unit(267, "lb"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/marcel/front.svg",
  43858. extra: 1221/1096,
  43859. bottom: 76/1297
  43860. }
  43861. },
  43862. },
  43863. [
  43864. {
  43865. name: "Normal",
  43866. height: math.unit(7 + 6/12, "feet"),
  43867. default: true
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43873. {
  43874. side: {
  43875. height: math.unit(42, "meters"),
  43876. name: "Side",
  43877. image: {
  43878. source: "./media/characters/flake/side.svg",
  43879. extra: 1525/1306,
  43880. bottom: 209/1734
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Normal",
  43887. height: math.unit(42, "meters"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43894. {
  43895. dressed: {
  43896. height: math.unit(6 + 4/12, "feet"),
  43897. weight: math.unit(520, "lb"),
  43898. name: "Dressed",
  43899. image: {
  43900. source: "./media/characters/someonne/dressed.svg",
  43901. extra: 1020/1010,
  43902. bottom: 178/1198
  43903. }
  43904. },
  43905. undressed: {
  43906. height: math.unit(6 + 4/12, "feet"),
  43907. weight: math.unit(520, "lb"),
  43908. name: "Undressed",
  43909. image: {
  43910. source: "./media/characters/someonne/undressed.svg",
  43911. extra: 1019/1014,
  43912. bottom: 169/1188
  43913. }
  43914. },
  43915. },
  43916. [
  43917. {
  43918. name: "Normal",
  43919. height: math.unit(6 + 4/12, "feet"),
  43920. default: true
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(3, "feet"),
  43929. weight: math.unit(30, "lb"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/till/front.svg",
  43933. extra: 892/823,
  43934. bottom: 55/947
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Normal",
  43941. height: math.unit(3, "feet"),
  43942. default: true
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(9 + 8/12, "feet"),
  43951. weight: math.unit(800, "lb"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/sydney-heki/front.svg",
  43955. extra: 1360/1300,
  43956. bottom: 22/1382
  43957. }
  43958. },
  43959. back: {
  43960. height: math.unit(9 + 8/12, "feet"),
  43961. weight: math.unit(800, "lb"),
  43962. name: "Back",
  43963. image: {
  43964. source: "./media/characters/sydney-heki/back.svg",
  43965. extra: 1356/1293,
  43966. bottom: 12/1368
  43967. }
  43968. },
  43969. frontDressed: {
  43970. height: math.unit(9 + 8/12, "feet"),
  43971. weight: math.unit(800, "lb"),
  43972. name: "Front-dressed",
  43973. image: {
  43974. source: "./media/characters/sydney-heki/front-dressed.svg",
  43975. extra: 1360/1300,
  43976. bottom: 22/1382
  43977. }
  43978. },
  43979. },
  43980. [
  43981. {
  43982. name: "Normal",
  43983. height: math.unit(9 + 8/12, "feet"),
  43984. default: true
  43985. },
  43986. {
  43987. name: "Macro",
  43988. height: math.unit(500, "feet")
  43989. },
  43990. {
  43991. name: "Megamacro",
  43992. height: math.unit(3.6, "miles")
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43998. {
  43999. front: {
  44000. height: math.unit(200, "cm"),
  44001. weight: math.unit(250, "lb"),
  44002. name: "Front",
  44003. image: {
  44004. source: "./media/characters/fowler-karlsson/front.svg",
  44005. extra: 897/845,
  44006. bottom: 123/1020
  44007. }
  44008. },
  44009. back: {
  44010. height: math.unit(200, "cm"),
  44011. weight: math.unit(250, "lb"),
  44012. name: "Back",
  44013. image: {
  44014. source: "./media/characters/fowler-karlsson/back.svg",
  44015. extra: 999/944,
  44016. bottom: 26/1025
  44017. }
  44018. },
  44019. dick: {
  44020. height: math.unit(1.92, "feet"),
  44021. weight: math.unit(150, "lb"),
  44022. name: "Dick",
  44023. image: {
  44024. source: "./media/characters/fowler-karlsson/dick.svg"
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(200, "cm"),
  44032. default: true
  44033. },
  44034. {
  44035. name: "Smaller Macro",
  44036. height: math.unit(90, "m")
  44037. },
  44038. {
  44039. name: "Macro",
  44040. height: math.unit(150, "m")
  44041. },
  44042. {
  44043. name: "Bigger Macro",
  44044. height: math.unit(300, "m")
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44050. {
  44051. side: {
  44052. height: math.unit(8 + 2/12, "feet"),
  44053. weight: math.unit(1, "tonne"),
  44054. name: "Side",
  44055. image: {
  44056. source: "./media/characters/rylide/side.svg",
  44057. extra: 1318/1034,
  44058. bottom: 106/1424
  44059. }
  44060. },
  44061. sitting: {
  44062. height: math.unit(303, "cm"),
  44063. weight: math.unit(1, "tonne"),
  44064. name: "Sitting",
  44065. image: {
  44066. source: "./media/characters/rylide/sitting.svg",
  44067. extra: 1303/1103,
  44068. bottom: 36/1339
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(8 + 2/12, "feet"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(5 + 10/12, "feet"),
  44085. weight: math.unit(160, "lb"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/pudask/front.svg",
  44089. extra: 1616/1590,
  44090. bottom: 161/1777
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Ferret Height",
  44097. height: math.unit(2 + 5/12, "feet")
  44098. },
  44099. {
  44100. name: "Canon Height",
  44101. height: math.unit(5 + 10/12, "feet"),
  44102. default: true
  44103. },
  44104. ]
  44105. ))
  44106. characterMakers.push(() => makeCharacter(
  44107. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44108. {
  44109. front: {
  44110. height: math.unit(3 + 6/12, "feet"),
  44111. weight: math.unit(60, "lb"),
  44112. name: "Front",
  44113. image: {
  44114. source: "./media/characters/ramita/front.svg",
  44115. extra: 1402/1232,
  44116. bottom: 62/1464
  44117. }
  44118. },
  44119. dressed: {
  44120. height: math.unit(3 + 6/12, "feet"),
  44121. weight: math.unit(60, "lb"),
  44122. name: "Dressed",
  44123. image: {
  44124. source: "./media/characters/ramita/dressed.svg",
  44125. extra: 1534/1249,
  44126. bottom: 50/1584
  44127. }
  44128. },
  44129. },
  44130. [
  44131. {
  44132. name: "Normal",
  44133. height: math.unit(3 + 6/12, "feet"),
  44134. default: true
  44135. },
  44136. ]
  44137. ))
  44138. characterMakers.push(() => makeCharacter(
  44139. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44140. {
  44141. front: {
  44142. height: math.unit(8, "feet"),
  44143. name: "Front",
  44144. image: {
  44145. source: "./media/characters/ark/front.svg",
  44146. extra: 772/693,
  44147. bottom: 45/817
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Normal",
  44154. height: math.unit(8, "feet"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(6, "feet"),
  44164. weight: math.unit(250, "lb"),
  44165. volume: math.unit(5/8, "gallons"),
  44166. name: "Front",
  44167. image: {
  44168. source: "./media/characters/ludwig-horn/front.svg",
  44169. extra: 1782/1635,
  44170. bottom: 96/1878
  44171. }
  44172. },
  44173. back: {
  44174. height: math.unit(6, "feet"),
  44175. weight: math.unit(250, "lb"),
  44176. volume: math.unit(5/8, "gallons"),
  44177. name: "Back",
  44178. image: {
  44179. source: "./media/characters/ludwig-horn/back.svg",
  44180. extra: 1874/1729,
  44181. bottom: 27/1901
  44182. }
  44183. },
  44184. dick: {
  44185. height: math.unit(1.05, "feet"),
  44186. weight: math.unit(15, "lb"),
  44187. volume: math.unit(5/8, "gallons"),
  44188. name: "Dick",
  44189. image: {
  44190. source: "./media/characters/ludwig-horn/dick.svg"
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Small",
  44197. height: math.unit(6, "feet")
  44198. },
  44199. {
  44200. name: "Typical",
  44201. height: math.unit(12, "feet"),
  44202. default: true
  44203. },
  44204. {
  44205. name: "Building",
  44206. height: math.unit(80, "feet")
  44207. },
  44208. {
  44209. name: "Town",
  44210. height: math.unit(800, "feet")
  44211. },
  44212. {
  44213. name: "Kingdom",
  44214. height: math.unit(80000, "feet")
  44215. },
  44216. {
  44217. name: "Planet",
  44218. height: math.unit(8000000, "feet")
  44219. },
  44220. {
  44221. name: "Universe",
  44222. height: math.unit(8000000000, "feet")
  44223. },
  44224. {
  44225. name: "Transcended",
  44226. height: math.unit(8e27, "feet")
  44227. },
  44228. ]
  44229. ))
  44230. characterMakers.push(() => makeCharacter(
  44231. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44232. {
  44233. front: {
  44234. height: math.unit(5, "feet"),
  44235. weight: math.unit(50, "kg"),
  44236. name: "Front",
  44237. image: {
  44238. source: "./media/characters/biot-avery/front.svg",
  44239. extra: 1295/1232,
  44240. bottom: 86/1381
  44241. }
  44242. },
  44243. },
  44244. [
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(5, "feet"),
  44248. default: true
  44249. },
  44250. ]
  44251. ))
  44252. characterMakers.push(() => makeCharacter(
  44253. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44254. {
  44255. front: {
  44256. height: math.unit(6, "feet"),
  44257. name: "Front",
  44258. image: {
  44259. source: "./media/characters/kitsune-kiro/front.svg",
  44260. extra: 1270/1158,
  44261. bottom: 42/1312
  44262. }
  44263. },
  44264. frontAlt: {
  44265. height: math.unit(6, "feet"),
  44266. name: "Front-alt",
  44267. image: {
  44268. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44269. extra: 1130/1081,
  44270. bottom: 36/1166
  44271. }
  44272. },
  44273. },
  44274. [
  44275. {
  44276. name: "Smol",
  44277. height: math.unit(3, "feet")
  44278. },
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(6, "feet"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44288. {
  44289. front: {
  44290. height: math.unit(6, "feet"),
  44291. weight: math.unit(125, "lb"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/jack-thatcher/front.svg",
  44295. extra: 1474/1370,
  44296. bottom: 26/1500
  44297. }
  44298. },
  44299. back: {
  44300. height: math.unit(6, "feet"),
  44301. weight: math.unit(125, "lb"),
  44302. name: "Back",
  44303. image: {
  44304. source: "./media/characters/jack-thatcher/back.svg",
  44305. extra: 1489/1384,
  44306. bottom: 18/1507
  44307. }
  44308. },
  44309. },
  44310. [
  44311. {
  44312. name: "Normal",
  44313. height: math.unit(6, "feet"),
  44314. default: true
  44315. },
  44316. {
  44317. name: "Macro",
  44318. height: math.unit(75, "feet")
  44319. },
  44320. {
  44321. name: "Macro-er",
  44322. height: math.unit(250, "feet")
  44323. },
  44324. ]
  44325. ))
  44326. characterMakers.push(() => makeCharacter(
  44327. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44328. {
  44329. front: {
  44330. height: math.unit(7, "feet"),
  44331. weight: math.unit(110, "kg"),
  44332. name: "Front",
  44333. image: {
  44334. source: "./media/characters/max-hyper/front.svg",
  44335. extra: 1969/1881,
  44336. bottom: 49/2018
  44337. }
  44338. },
  44339. },
  44340. [
  44341. {
  44342. name: "Normal",
  44343. height: math.unit(7, "feet"),
  44344. default: true
  44345. },
  44346. ]
  44347. ))
  44348. characterMakers.push(() => makeCharacter(
  44349. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44350. {
  44351. front: {
  44352. height: math.unit(5 + 5/12, "feet"),
  44353. weight: math.unit(160, "lb"),
  44354. name: "Front",
  44355. image: {
  44356. source: "./media/characters/spook/front.svg",
  44357. extra: 794/791,
  44358. bottom: 54/848
  44359. }
  44360. },
  44361. back: {
  44362. height: math.unit(5 + 5/12, "feet"),
  44363. weight: math.unit(160, "lb"),
  44364. name: "Back",
  44365. image: {
  44366. source: "./media/characters/spook/back.svg",
  44367. extra: 812/798,
  44368. bottom: 32/844
  44369. }
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Normal",
  44375. height: math.unit(5 + 5/12, "feet"),
  44376. default: true
  44377. },
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(18, "feet"),
  44385. name: "Front",
  44386. image: {
  44387. source: "./media/characters/xeaduulix/front.svg",
  44388. extra: 1380/1166,
  44389. bottom: 110/1490
  44390. }
  44391. },
  44392. back: {
  44393. height: math.unit(18, "feet"),
  44394. name: "Back",
  44395. image: {
  44396. source: "./media/characters/xeaduulix/back.svg",
  44397. extra: 1592/1170,
  44398. bottom: 128/1720
  44399. }
  44400. },
  44401. frontNsfw: {
  44402. height: math.unit(18, "feet"),
  44403. name: "Front (NSFW)",
  44404. image: {
  44405. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44406. extra: 1380/1166,
  44407. bottom: 110/1490
  44408. }
  44409. },
  44410. backNsfw: {
  44411. height: math.unit(18, "feet"),
  44412. name: "Back (NSFW)",
  44413. image: {
  44414. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44415. extra: 1592/1170,
  44416. bottom: 128/1720
  44417. }
  44418. },
  44419. },
  44420. [
  44421. {
  44422. name: "Normal",
  44423. height: math.unit(18, "feet"),
  44424. default: true
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44430. {
  44431. spreadWings: {
  44432. height: math.unit(20, "feet"),
  44433. name: "Spread Wings",
  44434. image: {
  44435. source: "./media/characters/fledge/spread-wings.svg",
  44436. extra: 693/635,
  44437. bottom: 26/719
  44438. }
  44439. },
  44440. front: {
  44441. height: math.unit(20, "feet"),
  44442. name: "Front",
  44443. image: {
  44444. source: "./media/characters/fledge/front.svg",
  44445. extra: 684/637,
  44446. bottom: 18/702
  44447. }
  44448. },
  44449. frontAlt: {
  44450. height: math.unit(20, "feet"),
  44451. name: "Front (Alt)",
  44452. image: {
  44453. source: "./media/characters/fledge/front-alt.svg",
  44454. extra: 708/664,
  44455. bottom: 13/721
  44456. }
  44457. },
  44458. back: {
  44459. height: math.unit(20, "feet"),
  44460. name: "Back",
  44461. image: {
  44462. source: "./media/characters/fledge/back.svg",
  44463. extra: 718/634,
  44464. bottom: 22/740
  44465. }
  44466. },
  44467. head: {
  44468. height: math.unit(5.55, "feet"),
  44469. name: "Head",
  44470. image: {
  44471. source: "./media/characters/fledge/head.svg"
  44472. }
  44473. },
  44474. headAlt: {
  44475. height: math.unit(5.1, "feet"),
  44476. name: "Head (Alt)",
  44477. image: {
  44478. source: "./media/characters/fledge/head-alt.svg"
  44479. }
  44480. },
  44481. },
  44482. [
  44483. {
  44484. name: "Small",
  44485. height: math.unit(6 + 2/12, "feet")
  44486. },
  44487. {
  44488. name: "Big",
  44489. height: math.unit(20, "feet"),
  44490. default: true
  44491. },
  44492. {
  44493. name: "Giant",
  44494. height: math.unit(100, "feet")
  44495. },
  44496. {
  44497. name: "Macro",
  44498. height: math.unit(200, "feet")
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(1, "meter"),
  44507. name: "Front",
  44508. image: {
  44509. source: "./media/characters/atlas-morenai/front.svg",
  44510. extra: 1275/1043,
  44511. bottom: 19/1294
  44512. }
  44513. },
  44514. back: {
  44515. height: math.unit(1, "meter"),
  44516. name: "Back",
  44517. image: {
  44518. source: "./media/characters/atlas-morenai/back.svg",
  44519. extra: 1141/1001,
  44520. bottom: 25/1166
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(1, "meter"),
  44528. default: true
  44529. },
  44530. {
  44531. name: "Magic-Infused",
  44532. height: math.unit(5, "meters")
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(5, "meters"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/cintia/front.svg",
  44544. extra: 1312/1228,
  44545. bottom: 38/1350
  44546. }
  44547. },
  44548. back: {
  44549. height: math.unit(5, "meters"),
  44550. name: "Back",
  44551. image: {
  44552. source: "./media/characters/cintia/back.svg",
  44553. extra: 1260/1166,
  44554. bottom: 98/1358
  44555. }
  44556. },
  44557. frontDick: {
  44558. height: math.unit(5, "meters"),
  44559. name: "Front (Dick)",
  44560. image: {
  44561. source: "./media/characters/cintia/front-dick.svg",
  44562. extra: 1312/1228,
  44563. bottom: 38/1350
  44564. }
  44565. },
  44566. backDick: {
  44567. height: math.unit(5, "meters"),
  44568. name: "Back (Dick)",
  44569. image: {
  44570. source: "./media/characters/cintia/back-dick.svg",
  44571. extra: 1260/1166,
  44572. bottom: 98/1358
  44573. }
  44574. },
  44575. bust: {
  44576. height: math.unit(1.97, "meters"),
  44577. name: "Bust",
  44578. image: {
  44579. source: "./media/characters/cintia/bust.svg",
  44580. extra: 617/565,
  44581. bottom: 0/617
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(5, "meters"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44595. {
  44596. side: {
  44597. height: math.unit(100, "feet"),
  44598. name: "Side",
  44599. image: {
  44600. source: "./media/characters/denora/side.svg",
  44601. extra: 875/803,
  44602. bottom: 9/884
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Standard",
  44609. height: math.unit(100, "feet"),
  44610. default: true
  44611. },
  44612. {
  44613. name: "Grand",
  44614. height: math.unit(1000, "feet")
  44615. },
  44616. {
  44617. name: "Conquering",
  44618. height: math.unit(10000, "feet")
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44624. {
  44625. dressed: {
  44626. height: math.unit(8 + 5/12, "feet"),
  44627. weight: math.unit(700, "lb"),
  44628. name: "Dressed",
  44629. image: {
  44630. source: "./media/characters/kiva/dressed.svg",
  44631. extra: 1102/1055,
  44632. bottom: 60/1162
  44633. }
  44634. },
  44635. nude: {
  44636. height: math.unit(8 + 5/12, "feet"),
  44637. weight: math.unit(700, "lb"),
  44638. name: "Nude",
  44639. image: {
  44640. source: "./media/characters/kiva/nude.svg",
  44641. extra: 1102/1055,
  44642. bottom: 60/1162
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Base Height",
  44649. height: math.unit(8 + 5/12, "feet"),
  44650. default: true
  44651. },
  44652. {
  44653. name: "Macro",
  44654. height: math.unit(100, "feet")
  44655. },
  44656. {
  44657. name: "Max",
  44658. height: math.unit(3280, "feet")
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(6 + 8/12, "feet"),
  44667. weight: math.unit(250, "lb"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/ztragon/front.svg",
  44671. extra: 1825/1684,
  44672. bottom: 98/1923
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "Normal",
  44679. height: math.unit(6 + 8/12, "feet"),
  44680. default: true
  44681. },
  44682. {
  44683. name: "Macro",
  44684. height: math.unit(80, "feet")
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44690. {
  44691. front: {
  44692. height: math.unit(10.4, "feet"),
  44693. weight: math.unit(2, "tons"),
  44694. name: "Front",
  44695. image: {
  44696. source: "./media/characters/yesenia/front.svg",
  44697. extra: 1479/1474,
  44698. bottom: 233/1712
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "Normal",
  44705. height: math.unit(10.4, "feet"),
  44706. default: true
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44712. {
  44713. normal: {
  44714. height: math.unit(6 + 1/12, "feet"),
  44715. weight: math.unit(180, "lb"),
  44716. name: "Normal",
  44717. image: {
  44718. source: "./media/characters/leanne-lycheborne/normal.svg",
  44719. extra: 1748/1660,
  44720. bottom: 98/1846
  44721. }
  44722. },
  44723. were: {
  44724. height: math.unit(12, "feet"),
  44725. weight: math.unit(1600, "lb"),
  44726. name: "Were",
  44727. image: {
  44728. source: "./media/characters/leanne-lycheborne/were.svg",
  44729. extra: 1485/1432,
  44730. bottom: 66/1551
  44731. }
  44732. },
  44733. },
  44734. [
  44735. {
  44736. name: "Normal",
  44737. height: math.unit(6 + 1/12, "feet"),
  44738. default: true
  44739. },
  44740. ]
  44741. ))
  44742. characterMakers.push(() => makeCharacter(
  44743. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44744. {
  44745. side: {
  44746. height: math.unit(13, "feet"),
  44747. name: "Side",
  44748. image: {
  44749. source: "./media/characters/kira-tyler/side.svg",
  44750. extra: 693/393,
  44751. bottom: 58/751
  44752. }
  44753. },
  44754. },
  44755. [
  44756. {
  44757. name: "Normal",
  44758. height: math.unit(13, "feet"),
  44759. default: true
  44760. },
  44761. ]
  44762. ))
  44763. characterMakers.push(() => makeCharacter(
  44764. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44765. {
  44766. front: {
  44767. height: math.unit(10.3, "feet"),
  44768. weight: math.unit(150, "lb"),
  44769. name: "Front",
  44770. image: {
  44771. source: "./media/characters/blaze/front.svg",
  44772. extra: 1378/1286,
  44773. bottom: 172/1550
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(10.3, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44787. {
  44788. side: {
  44789. height: math.unit(2, "meters"),
  44790. weight: math.unit(400, "kg"),
  44791. name: "Side",
  44792. image: {
  44793. source: "./media/characters/anu/side.svg",
  44794. extra: 506/394,
  44795. bottom: 18/524
  44796. }
  44797. },
  44798. },
  44799. [
  44800. {
  44801. name: "Humanoid",
  44802. height: math.unit(2, "meters")
  44803. },
  44804. {
  44805. name: "Normal",
  44806. height: math.unit(5, "meters"),
  44807. default: true
  44808. },
  44809. ]
  44810. ))
  44811. characterMakers.push(() => makeCharacter(
  44812. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44813. {
  44814. front: {
  44815. height: math.unit(5 + 5/12, "feet"),
  44816. weight: math.unit(170, "lb"),
  44817. name: "Front",
  44818. image: {
  44819. source: "./media/characters/synx-the-lynx/front.svg",
  44820. extra: 1893/1745,
  44821. bottom: 17/1910
  44822. }
  44823. },
  44824. side: {
  44825. height: math.unit(5 + 5/12, "feet"),
  44826. weight: math.unit(170, "lb"),
  44827. name: "Side",
  44828. image: {
  44829. source: "./media/characters/synx-the-lynx/side.svg",
  44830. extra: 1884/1740,
  44831. bottom: 39/1923
  44832. }
  44833. },
  44834. back: {
  44835. height: math.unit(5 + 5/12, "feet"),
  44836. weight: math.unit(170, "lb"),
  44837. name: "Back",
  44838. image: {
  44839. source: "./media/characters/synx-the-lynx/back.svg",
  44840. extra: 1903/1755,
  44841. bottom: 14/1917
  44842. }
  44843. },
  44844. },
  44845. [
  44846. {
  44847. name: "Normal",
  44848. height: math.unit(5 + 5/12, "feet"),
  44849. default: true
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44855. {
  44856. back: {
  44857. height: math.unit(15, "feet"),
  44858. name: "Back",
  44859. image: {
  44860. source: "./media/characters/nadezda-fex/back.svg",
  44861. extra: 1695/1481,
  44862. bottom: 25/1720
  44863. }
  44864. },
  44865. },
  44866. [
  44867. {
  44868. name: "Normal",
  44869. height: math.unit(15, "feet"),
  44870. default: true
  44871. },
  44872. {
  44873. name: "Macro",
  44874. height: math.unit(2.5, "miles")
  44875. },
  44876. {
  44877. name: "Goddess",
  44878. height: math.unit(2, "multiverses")
  44879. },
  44880. ]
  44881. ))
  44882. characterMakers.push(() => makeCharacter(
  44883. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44884. {
  44885. front: {
  44886. height: math.unit(216, "cm"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/lev/front.svg",
  44890. extra: 1728/1670,
  44891. bottom: 82/1810
  44892. }
  44893. },
  44894. back: {
  44895. height: math.unit(216, "cm"),
  44896. name: "Back",
  44897. image: {
  44898. source: "./media/characters/lev/back.svg",
  44899. extra: 1738/1675,
  44900. bottom: 24/1762
  44901. }
  44902. },
  44903. dressed: {
  44904. height: math.unit(216, "cm"),
  44905. name: "Dressed",
  44906. image: {
  44907. source: "./media/characters/lev/dressed.svg",
  44908. extra: 1397/1351,
  44909. bottom: 73/1470
  44910. }
  44911. },
  44912. head: {
  44913. height: math.unit(0.51, "meter"),
  44914. name: "Head",
  44915. image: {
  44916. source: "./media/characters/lev/head.svg"
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Normal",
  44923. height: math.unit(216, "cm"),
  44924. default: true
  44925. },
  44926. {
  44927. name: "Relatively Macro",
  44928. height: math.unit(80, "meters")
  44929. },
  44930. {
  44931. name: "Megamacro",
  44932. height: math.unit(21600, "meters")
  44933. },
  44934. {
  44935. name: "Megamacro+",
  44936. height: math.unit(64800, "meters")
  44937. },
  44938. ]
  44939. ))
  44940. characterMakers.push(() => makeCharacter(
  44941. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44942. {
  44943. front: {
  44944. height: math.unit(2, "meters"),
  44945. weight: math.unit(80, "kg"),
  44946. name: "Front",
  44947. image: {
  44948. source: "./media/characters/moka/front.svg",
  44949. extra: 1337/1255,
  44950. bottom: 58/1395
  44951. }
  44952. },
  44953. },
  44954. [
  44955. {
  44956. name: "Micro",
  44957. height: math.unit(15, "cm")
  44958. },
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(2, "meters"),
  44962. default: true
  44963. },
  44964. {
  44965. name: "Macro",
  44966. height: math.unit(20, "meters"),
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44972. {
  44973. front: {
  44974. height: math.unit(9, "feet"),
  44975. weight: math.unit(240, "lb"),
  44976. name: "Front",
  44977. image: {
  44978. source: "./media/characters/kuzco/front.svg",
  44979. extra: 1593/1487,
  44980. bottom: 32/1625
  44981. }
  44982. },
  44983. side: {
  44984. height: math.unit(9, "feet"),
  44985. weight: math.unit(240, "lb"),
  44986. name: "Side",
  44987. image: {
  44988. source: "./media/characters/kuzco/side.svg",
  44989. extra: 1575/1485,
  44990. bottom: 30/1605
  44991. }
  44992. },
  44993. back: {
  44994. height: math.unit(9, "feet"),
  44995. weight: math.unit(240, "lb"),
  44996. name: "Back",
  44997. image: {
  44998. source: "./media/characters/kuzco/back.svg",
  44999. extra: 1603/1514,
  45000. bottom: 14/1617
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(9, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45014. {
  45015. side: {
  45016. height: math.unit(2, "meters"),
  45017. weight: math.unit(300, "kg"),
  45018. name: "Side",
  45019. image: {
  45020. source: "./media/characters/ceruleus/side.svg",
  45021. extra: 1068/974,
  45022. bottom: 126/1194
  45023. }
  45024. },
  45025. },
  45026. [
  45027. {
  45028. name: "Normal",
  45029. height: math.unit(16, "meters"),
  45030. default: true
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(9, "feet"),
  45039. weight: math.unit(500, "kg"),
  45040. name: "Front",
  45041. image: {
  45042. source: "./media/characters/acouya/front.svg",
  45043. extra: 1660/1473,
  45044. bottom: 28/1688
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(9, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(5 + 6/12, "feet"),
  45061. weight: math.unit(195, "lb"),
  45062. name: "Front",
  45063. image: {
  45064. source: "./media/characters/vant/front.svg",
  45065. extra: 1396/1320,
  45066. bottom: 20/1416
  45067. }
  45068. },
  45069. back: {
  45070. height: math.unit(5 + 6/12, "feet"),
  45071. weight: math.unit(195, "lb"),
  45072. name: "Back",
  45073. image: {
  45074. source: "./media/characters/vant/back.svg",
  45075. extra: 1396/1320,
  45076. bottom: 20/1416
  45077. }
  45078. },
  45079. maw: {
  45080. height: math.unit(0.75, "feet"),
  45081. name: "Maw",
  45082. image: {
  45083. source: "./media/characters/vant/maw.svg"
  45084. }
  45085. },
  45086. paw: {
  45087. height: math.unit(1.07, "feet"),
  45088. name: "Paw",
  45089. image: {
  45090. source: "./media/characters/vant/paw.svg"
  45091. }
  45092. },
  45093. },
  45094. [
  45095. {
  45096. name: "Micro",
  45097. height: math.unit(0.25, "inches")
  45098. },
  45099. {
  45100. name: "Normal",
  45101. height: math.unit(5 + 6/12, "feet"),
  45102. default: true
  45103. },
  45104. {
  45105. name: "Macro",
  45106. height: math.unit(75, "feet")
  45107. },
  45108. ]
  45109. ))
  45110. characterMakers.push(() => makeCharacter(
  45111. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45112. {
  45113. front: {
  45114. height: math.unit(30, "meters"),
  45115. weight: math.unit(363, "tons"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/ahra/front.svg",
  45119. extra: 1914/1814,
  45120. bottom: 46/1960
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Macro",
  45127. height: math.unit(30, "meters"),
  45128. default: true
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45134. {
  45135. undressed: {
  45136. height: math.unit(2, "m"),
  45137. weight: math.unit(250, "kg"),
  45138. name: "Undressed",
  45139. image: {
  45140. source: "./media/characters/coriander/undressed.svg",
  45141. extra: 1757/1606,
  45142. bottom: 107/1864
  45143. }
  45144. },
  45145. dressed: {
  45146. height: math.unit(2, "m"),
  45147. weight: math.unit(250, "kg"),
  45148. name: "Dressed",
  45149. image: {
  45150. source: "./media/characters/coriander/dressed.svg",
  45151. extra: 1757/1606,
  45152. bottom: 107/1864
  45153. }
  45154. },
  45155. },
  45156. [
  45157. {
  45158. name: "Normal",
  45159. height: math.unit(4, "meters"),
  45160. default: true
  45161. },
  45162. {
  45163. name: "XL",
  45164. height: math.unit(6, "meters")
  45165. },
  45166. {
  45167. name: "XXL",
  45168. height: math.unit(8, "meters")
  45169. },
  45170. ]
  45171. ))
  45172. characterMakers.push(() => makeCharacter(
  45173. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45174. {
  45175. front: {
  45176. height: math.unit(6, "feet"),
  45177. name: "Front",
  45178. image: {
  45179. source: "./media/characters/syrinx/front.svg",
  45180. extra: 1557/1259,
  45181. bottom: 171/1728
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Normal",
  45188. height: math.unit(6 + 3/12, "feet"),
  45189. default: true
  45190. },
  45191. ]
  45192. ))
  45193. characterMakers.push(() => makeCharacter(
  45194. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45195. {
  45196. front: {
  45197. height: math.unit(11 + 6/12, "feet"),
  45198. weight: math.unit(1.5, "tons"),
  45199. name: "Front",
  45200. image: {
  45201. source: "./media/characters/bor/front.svg",
  45202. extra: 1189/1109,
  45203. bottom: 170/1359
  45204. }
  45205. },
  45206. },
  45207. [
  45208. {
  45209. name: "Normal",
  45210. height: math.unit(11 + 6/12, "feet"),
  45211. default: true
  45212. },
  45213. {
  45214. name: "Macro",
  45215. height: math.unit(32 + 9/12, "feet")
  45216. },
  45217. ]
  45218. ))
  45219. characterMakers.push(() => makeCharacter(
  45220. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45221. {
  45222. anthro: {
  45223. height: math.unit(9, "feet"),
  45224. weight: math.unit(2076, "lb"),
  45225. name: "Anthro",
  45226. image: {
  45227. source: "./media/characters/abacus/anthro.svg",
  45228. extra: 1540/1494,
  45229. bottom: 233/1773
  45230. }
  45231. },
  45232. pigeon: {
  45233. height: math.unit(1, "feet"),
  45234. name: "Pigeon",
  45235. image: {
  45236. source: "./media/characters/abacus/pigeon.svg",
  45237. extra: 528/525,
  45238. bottom: 46/574
  45239. }
  45240. },
  45241. },
  45242. [
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(9, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45252. {
  45253. side: {
  45254. height: math.unit(6, "feet"),
  45255. name: "Side",
  45256. image: {
  45257. source: "./media/characters/delkhan/side.svg",
  45258. extra: 1884/1786,
  45259. bottom: 308/2192
  45260. }
  45261. },
  45262. head: {
  45263. height: math.unit(3.38, "feet"),
  45264. name: "Head",
  45265. image: {
  45266. source: "./media/characters/delkhan/head.svg"
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(72, "feet"),
  45274. default: true
  45275. },
  45276. {
  45277. name: "Giant",
  45278. height: math.unit(172, "feet")
  45279. },
  45280. ]
  45281. ))
  45282. characterMakers.push(() => makeCharacter(
  45283. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45284. {
  45285. standing: {
  45286. height: math.unit(6, "feet"),
  45287. name: "Standing",
  45288. image: {
  45289. source: "./media/characters/euchidat/standing.svg",
  45290. extra: 1612/1553,
  45291. bottom: 116/1728
  45292. }
  45293. },
  45294. leaning: {
  45295. height: math.unit(6, "feet"),
  45296. name: "Leaning",
  45297. image: {
  45298. source: "./media/characters/euchidat/leaning.svg",
  45299. extra: 1719/1674,
  45300. bottom: 27/1746
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(175, "feet"),
  45308. default: true
  45309. },
  45310. {
  45311. name: "Megamacro",
  45312. height: math.unit(190, "miles")
  45313. },
  45314. {
  45315. name: "Gigamacro",
  45316. height: math.unit(190000, "miles")
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45322. {
  45323. front: {
  45324. height: math.unit(6, "feet"),
  45325. weight: math.unit(150, "lb"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/rebecca-stack/front.svg",
  45329. extra: 1256/1201,
  45330. bottom: 18/1274
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(5 + 8/12, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Demolitionist",
  45342. height: math.unit(200, "feet")
  45343. },
  45344. {
  45345. name: "Out of Control",
  45346. height: math.unit(2, "miles")
  45347. },
  45348. {
  45349. name: "Giga",
  45350. height: math.unit(7200, "miles")
  45351. },
  45352. ]
  45353. ))
  45354. characterMakers.push(() => makeCharacter(
  45355. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45356. {
  45357. front: {
  45358. height: math.unit(6, "feet"),
  45359. weight: math.unit(150, "lb"),
  45360. name: "Front",
  45361. image: {
  45362. source: "./media/characters/jenny-cartwright/front.svg",
  45363. extra: 1384/1376,
  45364. bottom: 58/1442
  45365. }
  45366. },
  45367. },
  45368. [
  45369. {
  45370. name: "Normal",
  45371. height: math.unit(6 + 7/12, "feet"),
  45372. default: true
  45373. },
  45374. {
  45375. name: "Librarian",
  45376. height: math.unit(55, "feet")
  45377. },
  45378. {
  45379. name: "Sightseer",
  45380. height: math.unit(50, "miles")
  45381. },
  45382. {
  45383. name: "Giga",
  45384. height: math.unit(30000, "miles")
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45390. {
  45391. nude: {
  45392. height: math.unit(8, "feet"),
  45393. weight: math.unit(225, "lb"),
  45394. name: "Nude",
  45395. image: {
  45396. source: "./media/characters/marvy/nude.svg",
  45397. extra: 1900/1683,
  45398. bottom: 89/1989
  45399. }
  45400. },
  45401. dressed: {
  45402. height: math.unit(8, "feet"),
  45403. weight: math.unit(225, "lb"),
  45404. name: "Dressed",
  45405. image: {
  45406. source: "./media/characters/marvy/dressed.svg",
  45407. extra: 1900/1683,
  45408. bottom: 89/1989
  45409. }
  45410. },
  45411. head: {
  45412. height: math.unit(2.85, "feet"),
  45413. name: "Head",
  45414. image: {
  45415. source: "./media/characters/marvy/head.svg"
  45416. }
  45417. },
  45418. },
  45419. [
  45420. {
  45421. name: "Normal",
  45422. height: math.unit(8, "feet"),
  45423. default: true
  45424. },
  45425. ]
  45426. ))
  45427. characterMakers.push(() => makeCharacter(
  45428. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45429. {
  45430. front: {
  45431. height: math.unit(8, "feet"),
  45432. weight: math.unit(250, "lb"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/leah/front.svg",
  45436. extra: 1257/1149,
  45437. bottom: 109/1366
  45438. }
  45439. },
  45440. },
  45441. [
  45442. {
  45443. name: "Normal",
  45444. height: math.unit(8, "feet"),
  45445. default: true
  45446. },
  45447. {
  45448. name: "Minimacro",
  45449. height: math.unit(40, "feet")
  45450. },
  45451. {
  45452. name: "Macro",
  45453. height: math.unit(124, "feet")
  45454. },
  45455. {
  45456. name: "Megamacro",
  45457. height: math.unit(850, "feet")
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45463. {
  45464. side: {
  45465. height: math.unit(13 + 6/12, "feet"),
  45466. weight: math.unit(3200, "lb"),
  45467. name: "Side",
  45468. image: {
  45469. source: "./media/characters/alvir/side.svg",
  45470. extra: 896/589,
  45471. bottom: 26/922
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(13 + 6/12, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(5 + 4/12, "feet"),
  45488. weight: math.unit(236, "lb"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/zaina-khalil/front.svg",
  45492. extra: 1533/1485,
  45493. bottom: 94/1627
  45494. }
  45495. },
  45496. side: {
  45497. height: math.unit(5 + 4/12, "feet"),
  45498. weight: math.unit(236, "lb"),
  45499. name: "Side",
  45500. image: {
  45501. source: "./media/characters/zaina-khalil/side.svg",
  45502. extra: 1537/1498,
  45503. bottom: 66/1603
  45504. }
  45505. },
  45506. back: {
  45507. height: math.unit(5 + 4/12, "feet"),
  45508. weight: math.unit(236, "lb"),
  45509. name: "Back",
  45510. image: {
  45511. source: "./media/characters/zaina-khalil/back.svg",
  45512. extra: 1546/1494,
  45513. bottom: 89/1635
  45514. }
  45515. },
  45516. },
  45517. [
  45518. {
  45519. name: "Normal",
  45520. height: math.unit(5 + 4/12, "feet"),
  45521. default: true
  45522. },
  45523. ]
  45524. ))
  45525. characterMakers.push(() => makeCharacter(
  45526. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45527. {
  45528. side: {
  45529. height: math.unit(12, "feet"),
  45530. weight: math.unit(4000, "lb"),
  45531. name: "Side",
  45532. image: {
  45533. source: "./media/characters/terry/side.svg",
  45534. extra: 1518/1439,
  45535. bottom: 149/1667
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(12, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(12, "feet"),
  45552. weight: math.unit(1500, "lb"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/kahea/front.svg",
  45556. extra: 1722/1617,
  45557. bottom: 179/1901
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Normal",
  45564. height: math.unit(12, "feet"),
  45565. default: true
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45571. {
  45572. demonFront: {
  45573. height: math.unit(36, "feet"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/alex-xuria/demon-front.svg",
  45577. extra: 1705/1673,
  45578. bottom: 198/1903
  45579. },
  45580. form: "demon",
  45581. default: true
  45582. },
  45583. demonBack: {
  45584. height: math.unit(36, "feet"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/alex-xuria/demon-back.svg",
  45588. extra: 1725/1693,
  45589. bottom: 70/1795
  45590. },
  45591. form: "demon"
  45592. },
  45593. demonHead: {
  45594. height: math.unit(2.14, "meters"),
  45595. name: "Head",
  45596. image: {
  45597. source: "./media/characters/alex-xuria/demon-head.svg"
  45598. },
  45599. form: "demon"
  45600. },
  45601. demonHand: {
  45602. height: math.unit(1.61, "meters"),
  45603. name: "Hand",
  45604. image: {
  45605. source: "./media/characters/alex-xuria/demon-hand.svg"
  45606. },
  45607. form: "demon"
  45608. },
  45609. demonPaw: {
  45610. height: math.unit(1.35, "meters"),
  45611. name: "Paw",
  45612. image: {
  45613. source: "./media/characters/alex-xuria/demon-paw.svg"
  45614. },
  45615. form: "demon"
  45616. },
  45617. demonFoot: {
  45618. height: math.unit(2.2, "meters"),
  45619. name: "Foot",
  45620. image: {
  45621. source: "./media/characters/alex-xuria/demon-foot.svg"
  45622. },
  45623. form: "demon"
  45624. },
  45625. demonCock: {
  45626. height: math.unit(1.74, "meters"),
  45627. name: "Cock",
  45628. image: {
  45629. source: "./media/characters/alex-xuria/demon-cock.svg"
  45630. },
  45631. form: "demon"
  45632. },
  45633. demonTailClosed: {
  45634. height: math.unit(1.47, "meters"),
  45635. name: "Tail (Closed)",
  45636. image: {
  45637. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45638. },
  45639. form: "demon"
  45640. },
  45641. demonTailOpen: {
  45642. height: math.unit(2.85, "meters"),
  45643. name: "Tail (Open)",
  45644. image: {
  45645. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45646. },
  45647. form: "demon"
  45648. },
  45649. incubusFront: {
  45650. height: math.unit(12, "feet"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/alex-xuria/incubus-front.svg",
  45654. extra: 1754/1677,
  45655. bottom: 125/1879
  45656. },
  45657. form: "incubus",
  45658. default: true
  45659. },
  45660. incubusBack: {
  45661. height: math.unit(12, "feet"),
  45662. name: "Back",
  45663. image: {
  45664. source: "./media/characters/alex-xuria/incubus-back.svg",
  45665. extra: 1702/1647,
  45666. bottom: 30/1732
  45667. },
  45668. form: "incubus"
  45669. },
  45670. incubusHead: {
  45671. height: math.unit(3.45, "feet"),
  45672. name: "Head",
  45673. image: {
  45674. source: "./media/characters/alex-xuria/incubus-head.svg"
  45675. },
  45676. form: "incubus"
  45677. },
  45678. rabbitFront: {
  45679. height: math.unit(6, "feet"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45683. extra: 1369/1349,
  45684. bottom: 45/1414
  45685. },
  45686. form: "rabbit",
  45687. default: true
  45688. },
  45689. rabbitSide: {
  45690. height: math.unit(6, "feet"),
  45691. name: "Side",
  45692. image: {
  45693. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45694. extra: 1370/1356,
  45695. bottom: 37/1407
  45696. },
  45697. form: "rabbit"
  45698. },
  45699. rabbitBack: {
  45700. height: math.unit(6, "feet"),
  45701. name: "Back",
  45702. image: {
  45703. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45704. extra: 1375/1358,
  45705. bottom: 43/1418
  45706. },
  45707. form: "rabbit"
  45708. },
  45709. },
  45710. [
  45711. {
  45712. name: "Normal",
  45713. height: math.unit(6, "feet"),
  45714. default: true,
  45715. form: "rabbit"
  45716. },
  45717. {
  45718. name: "Incubus",
  45719. height: math.unit(12, "feet"),
  45720. default: true,
  45721. form: "incubus"
  45722. },
  45723. {
  45724. name: "Demon",
  45725. height: math.unit(36, "feet"),
  45726. default: true,
  45727. form: "demon"
  45728. }
  45729. ],
  45730. {
  45731. "demon": {
  45732. name: "Demon",
  45733. default: true
  45734. },
  45735. "incubus": {
  45736. name: "Incubus",
  45737. },
  45738. "rabbit": {
  45739. name: "Rabbit"
  45740. }
  45741. }
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45745. {
  45746. front: {
  45747. height: math.unit(7 + 5/12, "feet"),
  45748. weight: math.unit(510, "lb"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/syrup/front.svg",
  45752. extra: 932/916,
  45753. bottom: 26/958
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Normal",
  45760. height: math.unit(7 + 5/12, "feet"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Big",
  45765. height: math.unit(50, "feet")
  45766. },
  45767. {
  45768. name: "Macro",
  45769. height: math.unit(300, "feet")
  45770. },
  45771. {
  45772. name: "Megamacro",
  45773. height: math.unit(1, "mile")
  45774. },
  45775. ]
  45776. ))
  45777. characterMakers.push(() => makeCharacter(
  45778. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45779. {
  45780. front: {
  45781. height: math.unit(6 + 9/12, "feet"),
  45782. name: "Front",
  45783. image: {
  45784. source: "./media/characters/zeimne/front.svg",
  45785. extra: 1969/1806,
  45786. bottom: 53/2022
  45787. }
  45788. },
  45789. },
  45790. [
  45791. {
  45792. name: "Normal",
  45793. height: math.unit(6 + 9/12, "feet"),
  45794. default: true
  45795. },
  45796. {
  45797. name: "Giant",
  45798. height: math.unit(550, "feet")
  45799. },
  45800. {
  45801. name: "Mega",
  45802. height: math.unit(3, "miles")
  45803. },
  45804. {
  45805. name: "Giga",
  45806. height: math.unit(250, "miles")
  45807. },
  45808. {
  45809. name: "Tera",
  45810. height: math.unit(1, "AU")
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45816. {
  45817. front: {
  45818. height: math.unit(5 + 2/12, "feet"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/grar/front.svg",
  45822. extra: 1331/1119,
  45823. bottom: 60/1391
  45824. }
  45825. },
  45826. back: {
  45827. height: math.unit(5 + 2/12, "feet"),
  45828. name: "Back",
  45829. image: {
  45830. source: "./media/characters/grar/back.svg",
  45831. extra: 1385/1169,
  45832. bottom: 23/1408
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(5 + 2/12, "feet"),
  45840. default: true
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(13 + 7/12, "feet"),
  45849. weight: math.unit(2200, "lb"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/endraya/front.svg",
  45853. extra: 1289/1215,
  45854. bottom: 50/1339
  45855. }
  45856. },
  45857. nude: {
  45858. height: math.unit(13 + 7/12, "feet"),
  45859. weight: math.unit(2200, "lb"),
  45860. name: "Nude",
  45861. image: {
  45862. source: "./media/characters/endraya/nude.svg",
  45863. extra: 1247/1171,
  45864. bottom: 40/1287
  45865. }
  45866. },
  45867. head: {
  45868. height: math.unit(2.6, "feet"),
  45869. name: "Head",
  45870. image: {
  45871. source: "./media/characters/endraya/head.svg"
  45872. }
  45873. },
  45874. slit: {
  45875. height: math.unit(3.4, "feet"),
  45876. name: "Slit",
  45877. image: {
  45878. source: "./media/characters/endraya/slit.svg"
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(13 + 7/12, "feet"),
  45886. default: true
  45887. },
  45888. {
  45889. name: "Macro",
  45890. height: math.unit(200, "feet")
  45891. },
  45892. ]
  45893. ))
  45894. characterMakers.push(() => makeCharacter(
  45895. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45896. {
  45897. front: {
  45898. height: math.unit(412, "meters"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/rodryana/front.svg",
  45902. extra: 2002/1921,
  45903. bottom: 53/2055
  45904. }
  45905. },
  45906. back: {
  45907. height: math.unit(412, "meters"),
  45908. name: "Back",
  45909. image: {
  45910. source: "./media/characters/rodryana/back.svg",
  45911. extra: 1993/1926,
  45912. bottom: 48/2041
  45913. }
  45914. },
  45915. maw: {
  45916. height: math.unit(45, "meters"),
  45917. name: "Maw",
  45918. image: {
  45919. source: "./media/characters/rodryana/maw.svg"
  45920. }
  45921. },
  45922. slit: {
  45923. height: math.unit(72, "meters"),
  45924. name: "Slit",
  45925. image: {
  45926. source: "./media/characters/rodryana/slit.svg"
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Macro",
  45933. height: math.unit(412, "meters"),
  45934. default: true
  45935. },
  45936. ]
  45937. ))
  45938. characterMakers.push(() => makeCharacter(
  45939. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45940. {
  45941. front: {
  45942. height: math.unit(6, "feet"),
  45943. weight: math.unit(1000, "lb"),
  45944. name: "Front",
  45945. image: {
  45946. source: "./media/characters/asaya/front.svg",
  45947. extra: 1460/1200,
  45948. bottom: 71/1531
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(8, "km"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45962. {
  45963. front: {
  45964. height: math.unit(3.5, "meters"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/sarzu-and-israz/front.svg",
  45968. extra: 1570/1558,
  45969. bottom: 150/1720
  45970. },
  45971. },
  45972. back: {
  45973. height: math.unit(3.5, "meters"),
  45974. name: "Back",
  45975. image: {
  45976. source: "./media/characters/sarzu-and-israz/back.svg",
  45977. extra: 1523/1509,
  45978. bottom: 132/1655
  45979. },
  45980. },
  45981. frontFemale: {
  45982. height: math.unit(3.5, "meters"),
  45983. name: "Front (Female)",
  45984. image: {
  45985. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45986. extra: 1570/1558,
  45987. bottom: 150/1720
  45988. },
  45989. },
  45990. frontHerm: {
  45991. height: math.unit(3.5, "meters"),
  45992. name: "Front (Herm)",
  45993. image: {
  45994. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45995. extra: 1570/1558,
  45996. bottom: 150/1720
  45997. },
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Normal",
  46003. height: math.unit(3.5, "meters"),
  46004. default: true,
  46005. },
  46006. {
  46007. name: "Macro",
  46008. height: math.unit(65.5, "meters"),
  46009. },
  46010. ],
  46011. ))
  46012. characterMakers.push(() => makeCharacter(
  46013. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46014. {
  46015. front: {
  46016. height: math.unit(6, "feet"),
  46017. weight: math.unit(250, "lb"),
  46018. name: "Front",
  46019. image: {
  46020. source: "./media/characters/zenimma/front.svg",
  46021. extra: 1346/1320,
  46022. bottom: 58/1404
  46023. }
  46024. },
  46025. back: {
  46026. height: math.unit(6, "feet"),
  46027. weight: math.unit(250, "lb"),
  46028. name: "Back",
  46029. image: {
  46030. source: "./media/characters/zenimma/back.svg",
  46031. extra: 1324/1308,
  46032. bottom: 44/1368
  46033. }
  46034. },
  46035. dick: {
  46036. height: math.unit(1.44, "feet"),
  46037. name: "Dick",
  46038. image: {
  46039. source: "./media/characters/zenimma/dick.svg"
  46040. }
  46041. },
  46042. },
  46043. [
  46044. {
  46045. name: "Canon Height",
  46046. height: math.unit(66, "miles"),
  46047. default: true
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46053. {
  46054. nude: {
  46055. height: math.unit(6, "feet"),
  46056. weight: math.unit(150, "lb"),
  46057. name: "Nude",
  46058. image: {
  46059. source: "./media/characters/shavon/nude.svg",
  46060. extra: 1242/1096,
  46061. bottom: 98/1340
  46062. }
  46063. },
  46064. dressed: {
  46065. height: math.unit(6, "feet"),
  46066. weight: math.unit(150, "lb"),
  46067. name: "Dressed",
  46068. image: {
  46069. source: "./media/characters/shavon/dressed.svg",
  46070. extra: 1242/1096,
  46071. bottom: 98/1340
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Macro",
  46078. height: math.unit(255, "feet"),
  46079. default: true
  46080. },
  46081. ]
  46082. ))
  46083. characterMakers.push(() => makeCharacter(
  46084. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46085. {
  46086. front: {
  46087. height: math.unit(6, "feet"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/steph/front.svg",
  46091. extra: 1430/1330,
  46092. bottom: 54/1484
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(6, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46106. {
  46107. front: {
  46108. height: math.unit(9, "feet"),
  46109. weight: math.unit(400, "lb"),
  46110. name: "Front",
  46111. image: {
  46112. source: "./media/characters/kil'aman/front.svg",
  46113. extra: 1210/1159,
  46114. bottom: 109/1319
  46115. }
  46116. },
  46117. head: {
  46118. height: math.unit(2.14, "feet"),
  46119. name: "Head",
  46120. image: {
  46121. source: "./media/characters/kil'aman/head.svg"
  46122. }
  46123. },
  46124. maw: {
  46125. height: math.unit(1.21, "feet"),
  46126. name: "Maw",
  46127. image: {
  46128. source: "./media/characters/kil'aman/maw.svg"
  46129. }
  46130. },
  46131. foot: {
  46132. height: math.unit(1.7, "feet"),
  46133. name: "Foot",
  46134. image: {
  46135. source: "./media/characters/kil'aman/foot.svg"
  46136. }
  46137. },
  46138. dick: {
  46139. height: math.unit(2.1, "feet"),
  46140. name: "Dick",
  46141. image: {
  46142. source: "./media/characters/kil'aman/dick.svg"
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(9, "feet")
  46150. },
  46151. {
  46152. name: "Canon Height",
  46153. height: math.unit(10, "miles"),
  46154. default: true
  46155. },
  46156. {
  46157. name: "Maximum",
  46158. height: math.unit(6e9, "miles")
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46164. {
  46165. front: {
  46166. height: math.unit(90, "feet"),
  46167. weight: math.unit(675000, "lb"),
  46168. name: "Front",
  46169. image: {
  46170. source: "./media/characters/qadan/front.svg",
  46171. extra: 1012/1004,
  46172. bottom: 78/1090
  46173. }
  46174. },
  46175. back: {
  46176. height: math.unit(90, "feet"),
  46177. weight: math.unit(675000, "lb"),
  46178. name: "Back",
  46179. image: {
  46180. source: "./media/characters/qadan/back.svg",
  46181. extra: 1042/1031,
  46182. bottom: 55/1097
  46183. }
  46184. },
  46185. armored: {
  46186. height: math.unit(90, "feet"),
  46187. weight: math.unit(675000, "lb"),
  46188. name: "Armored",
  46189. image: {
  46190. source: "./media/characters/qadan/armored.svg",
  46191. extra: 1047/1037,
  46192. bottom: 48/1095
  46193. }
  46194. },
  46195. },
  46196. [
  46197. {
  46198. name: "Normal",
  46199. height: math.unit(90, "feet"),
  46200. default: true
  46201. },
  46202. ]
  46203. ))
  46204. characterMakers.push(() => makeCharacter(
  46205. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46206. {
  46207. front: {
  46208. height: math.unit(6, "feet"),
  46209. weight: math.unit(225, "lb"),
  46210. name: "Front",
  46211. image: {
  46212. source: "./media/characters/brooke/front.svg",
  46213. extra: 1050/1010,
  46214. bottom: 66/1116
  46215. }
  46216. },
  46217. back: {
  46218. height: math.unit(6, "feet"),
  46219. weight: math.unit(225, "lb"),
  46220. name: "Back",
  46221. image: {
  46222. source: "./media/characters/brooke/back.svg",
  46223. extra: 1053/1013,
  46224. bottom: 41/1094
  46225. }
  46226. },
  46227. dressed: {
  46228. height: math.unit(6, "feet"),
  46229. weight: math.unit(225, "lb"),
  46230. name: "Dressed",
  46231. image: {
  46232. source: "./media/characters/brooke/dressed.svg",
  46233. extra: 1050/1010,
  46234. bottom: 66/1116
  46235. }
  46236. },
  46237. },
  46238. [
  46239. {
  46240. name: "Canon Height",
  46241. height: math.unit(500, "miles"),
  46242. default: true
  46243. },
  46244. ]
  46245. ))
  46246. characterMakers.push(() => makeCharacter(
  46247. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46248. {
  46249. front: {
  46250. height: math.unit(6 + 2/12, "feet"),
  46251. weight: math.unit(210, "lb"),
  46252. name: "Front",
  46253. image: {
  46254. source: "./media/characters/wubs/front.svg",
  46255. extra: 1345/1325,
  46256. bottom: 70/1415
  46257. }
  46258. },
  46259. back: {
  46260. height: math.unit(6 + 2/12, "feet"),
  46261. weight: math.unit(210, "lb"),
  46262. name: "Back",
  46263. image: {
  46264. source: "./media/characters/wubs/back.svg",
  46265. extra: 1296/1275,
  46266. bottom: 58/1354
  46267. }
  46268. },
  46269. },
  46270. [
  46271. {
  46272. name: "Normal",
  46273. height: math.unit(6 + 2/12, "feet"),
  46274. default: true
  46275. },
  46276. {
  46277. name: "Macro",
  46278. height: math.unit(1000, "feet")
  46279. },
  46280. {
  46281. name: "Megamacro",
  46282. height: math.unit(1, "mile")
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46288. {
  46289. front: {
  46290. height: math.unit(4, "feet"),
  46291. weight: math.unit(120, "lb"),
  46292. name: "Front",
  46293. image: {
  46294. source: "./media/characters/blue/front.svg",
  46295. extra: 1636/1525,
  46296. bottom: 43/1679
  46297. }
  46298. },
  46299. back: {
  46300. height: math.unit(4, "feet"),
  46301. weight: math.unit(120, "lb"),
  46302. name: "Back",
  46303. image: {
  46304. source: "./media/characters/blue/back.svg",
  46305. extra: 1660/1560,
  46306. bottom: 57/1717
  46307. }
  46308. },
  46309. paws: {
  46310. height: math.unit(0.826, "feet"),
  46311. name: "Paws",
  46312. image: {
  46313. source: "./media/characters/blue/paws.svg"
  46314. }
  46315. },
  46316. },
  46317. [
  46318. {
  46319. name: "Micro",
  46320. height: math.unit(3, "inches")
  46321. },
  46322. {
  46323. name: "Normal",
  46324. height: math.unit(4, "feet"),
  46325. default: true
  46326. },
  46327. {
  46328. name: "Femenine Form",
  46329. height: math.unit(14, "feet")
  46330. },
  46331. {
  46332. name: "Werebat Form",
  46333. height: math.unit(18, "feet")
  46334. },
  46335. ]
  46336. ))
  46337. characterMakers.push(() => makeCharacter(
  46338. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46339. {
  46340. female: {
  46341. height: math.unit(7 + 4/12, "feet"),
  46342. weight: math.unit(243, "lb"),
  46343. name: "Female",
  46344. image: {
  46345. source: "./media/characters/kaya/female.svg",
  46346. extra: 975/898,
  46347. bottom: 34/1009
  46348. }
  46349. },
  46350. herm: {
  46351. height: math.unit(7 + 4/12, "feet"),
  46352. weight: math.unit(243, "lb"),
  46353. name: "Herm",
  46354. image: {
  46355. source: "./media/characters/kaya/herm.svg",
  46356. extra: 975/898,
  46357. bottom: 34/1009
  46358. }
  46359. },
  46360. },
  46361. [
  46362. {
  46363. name: "Normal",
  46364. height: math.unit(7 + 4/12, "feet"),
  46365. default: true
  46366. },
  46367. ]
  46368. ))
  46369. characterMakers.push(() => makeCharacter(
  46370. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46371. {
  46372. female: {
  46373. height: math.unit(9 + 4/12, "feet"),
  46374. weight: math.unit(398, "lb"),
  46375. name: "Female",
  46376. image: {
  46377. source: "./media/characters/kassandra/female.svg",
  46378. extra: 908/839,
  46379. bottom: 61/969
  46380. }
  46381. },
  46382. intersex: {
  46383. height: math.unit(9 + 4/12, "feet"),
  46384. weight: math.unit(398, "lb"),
  46385. name: "Intersex",
  46386. image: {
  46387. source: "./media/characters/kassandra/intersex.svg",
  46388. extra: 908/839,
  46389. bottom: 61/969
  46390. }
  46391. },
  46392. },
  46393. [
  46394. {
  46395. name: "Normal",
  46396. height: math.unit(9 + 4/12, "feet"),
  46397. default: true
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(3, "meters"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/amy/front.svg",
  46409. extra: 1380/1343,
  46410. bottom: 70/1450
  46411. }
  46412. },
  46413. back: {
  46414. height: math.unit(3, "meters"),
  46415. name: "Back",
  46416. image: {
  46417. source: "./media/characters/amy/back.svg",
  46418. extra: 1380/1347,
  46419. bottom: 66/1446
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(3, "meters"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46433. {
  46434. side: {
  46435. height: math.unit(47, "cm"),
  46436. weight: math.unit(10.8, "kg"),
  46437. name: "Side",
  46438. image: {
  46439. source: "./media/characters/alphaschakal/side.svg",
  46440. extra: 1058/568,
  46441. bottom: 62/1120
  46442. }
  46443. },
  46444. back: {
  46445. height: math.unit(78, "cm"),
  46446. weight: math.unit(10.8, "kg"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/alphaschakal/back.svg",
  46450. extra: 1102/942,
  46451. bottom: 185/1287
  46452. }
  46453. },
  46454. head: {
  46455. height: math.unit(28, "cm"),
  46456. name: "Head",
  46457. image: {
  46458. source: "./media/characters/alphaschakal/head.svg",
  46459. extra: 696/508,
  46460. bottom: 0/696
  46461. }
  46462. },
  46463. paw: {
  46464. height: math.unit(16, "cm"),
  46465. name: "Paw",
  46466. image: {
  46467. source: "./media/characters/alphaschakal/paw.svg"
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(47, "cm"),
  46475. default: true
  46476. },
  46477. {
  46478. name: "Macro",
  46479. height: math.unit(340, "cm")
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(36, "earths"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/ecobyss/front.svg",
  46491. extra: 1282/1215,
  46492. bottom: 11/1293
  46493. }
  46494. },
  46495. back: {
  46496. height: math.unit(36, "earths"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/ecobyss/back.svg",
  46500. extra: 1291/1222,
  46501. bottom: 8/1299
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(36, "earths"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46515. {
  46516. front: {
  46517. height: math.unit(12, "feet"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/vasuk/front.svg",
  46521. extra: 1326/1207,
  46522. bottom: 64/1390
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(12, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46536. {
  46537. side: {
  46538. height: math.unit(100, "feet"),
  46539. name: "Side",
  46540. image: {
  46541. source: "./media/characters/linneaus/side.svg",
  46542. extra: 987/807,
  46543. bottom: 47/1034
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Macro",
  46550. height: math.unit(100, "feet"),
  46551. default: true
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(8, "feet"),
  46560. weight: math.unit(1200, "lb"),
  46561. name: "Front",
  46562. image: {
  46563. source: "./media/characters/nyterious-daligdig/front.svg",
  46564. extra: 1284/1094,
  46565. bottom: 84/1368
  46566. }
  46567. },
  46568. back: {
  46569. height: math.unit(8, "feet"),
  46570. weight: math.unit(1200, "lb"),
  46571. name: "Back",
  46572. image: {
  46573. source: "./media/characters/nyterious-daligdig/back.svg",
  46574. extra: 1301/1121,
  46575. bottom: 129/1430
  46576. }
  46577. },
  46578. mouth: {
  46579. height: math.unit(1.464, "feet"),
  46580. name: "Mouth",
  46581. image: {
  46582. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Small",
  46589. height: math.unit(8, "feet"),
  46590. default: true
  46591. },
  46592. {
  46593. name: "Normal",
  46594. height: math.unit(15, "feet")
  46595. },
  46596. {
  46597. name: "Macro",
  46598. height: math.unit(90, "feet")
  46599. },
  46600. ]
  46601. ))
  46602. characterMakers.push(() => makeCharacter(
  46603. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46604. {
  46605. front: {
  46606. height: math.unit(7 + 4/12, "feet"),
  46607. weight: math.unit(252, "lb"),
  46608. name: "Front",
  46609. image: {
  46610. source: "./media/characters/bandel/front.svg",
  46611. extra: 1946/1775,
  46612. bottom: 26/1972
  46613. }
  46614. },
  46615. back: {
  46616. height: math.unit(7 + 4/12, "feet"),
  46617. weight: math.unit(252, "lb"),
  46618. name: "Back",
  46619. image: {
  46620. source: "./media/characters/bandel/back.svg",
  46621. extra: 1940/1770,
  46622. bottom: 25/1965
  46623. }
  46624. },
  46625. maw: {
  46626. height: math.unit(2.15, "feet"),
  46627. name: "Maw",
  46628. image: {
  46629. source: "./media/characters/bandel/maw.svg"
  46630. }
  46631. },
  46632. stomach: {
  46633. height: math.unit(1.95, "feet"),
  46634. name: "Stomach",
  46635. image: {
  46636. source: "./media/characters/bandel/stomach.svg"
  46637. }
  46638. },
  46639. },
  46640. [
  46641. {
  46642. name: "Normal",
  46643. height: math.unit(7 + 4/12, "feet"),
  46644. default: true
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46650. {
  46651. front: {
  46652. height: math.unit(10 + 5/12, "feet"),
  46653. weight: math.unit(773.5, "kg"),
  46654. name: "Front",
  46655. image: {
  46656. source: "./media/characters/zed/front.svg",
  46657. extra: 987/941,
  46658. bottom: 52/1039
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Short",
  46665. height: math.unit(5 + 4/12, "feet")
  46666. },
  46667. {
  46668. name: "Average",
  46669. height: math.unit(10 + 5/12, "feet"),
  46670. default: true
  46671. },
  46672. {
  46673. name: "Mini-Macro",
  46674. height: math.unit(24 + 9/12, "feet")
  46675. },
  46676. {
  46677. name: "Macro",
  46678. height: math.unit(249, "feet")
  46679. },
  46680. {
  46681. name: "Mega-Macro",
  46682. height: math.unit(12490, "feet")
  46683. },
  46684. {
  46685. name: "Giga-Macro",
  46686. height: math.unit(24.9, "miles")
  46687. },
  46688. {
  46689. name: "Tera-Macro",
  46690. height: math.unit(24900, "miles")
  46691. },
  46692. {
  46693. name: "Cosmic Scale",
  46694. height: math.unit(38.9, "lightyears")
  46695. },
  46696. {
  46697. name: "Universal Scale",
  46698. height: math.unit(138e12, "lightyears")
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46704. {
  46705. front: {
  46706. height: math.unit(1561, "inches"),
  46707. name: "Front",
  46708. image: {
  46709. source: "./media/characters/ivan/front.svg",
  46710. extra: 1126/1071,
  46711. bottom: 26/1152
  46712. }
  46713. },
  46714. back: {
  46715. height: math.unit(1561, "inches"),
  46716. name: "Back",
  46717. image: {
  46718. source: "./media/characters/ivan/back.svg",
  46719. extra: 1134/1079,
  46720. bottom: 30/1164
  46721. }
  46722. },
  46723. },
  46724. [
  46725. {
  46726. name: "Normal",
  46727. height: math.unit(1561, "inches"),
  46728. default: true
  46729. },
  46730. ]
  46731. ))
  46732. characterMakers.push(() => makeCharacter(
  46733. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46734. {
  46735. front: {
  46736. height: math.unit(5 + 7/12, "feet"),
  46737. weight: math.unit(150, "lb"),
  46738. name: "Front",
  46739. image: {
  46740. source: "./media/characters/robin-arctic-hare/front.svg",
  46741. extra: 1148/974,
  46742. bottom: 20/1168
  46743. }
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Normal",
  46749. height: math.unit(5 + 7/12, "feet"),
  46750. default: true
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46756. {
  46757. side: {
  46758. height: math.unit(5, "feet"),
  46759. name: "Side",
  46760. image: {
  46761. source: "./media/characters/birch/side.svg",
  46762. extra: 985/796,
  46763. bottom: 111/1096
  46764. }
  46765. },
  46766. },
  46767. [
  46768. {
  46769. name: "Normal",
  46770. height: math.unit(5, "feet"),
  46771. default: true
  46772. },
  46773. ]
  46774. ))
  46775. characterMakers.push(() => makeCharacter(
  46776. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46777. {
  46778. front: {
  46779. height: math.unit(4, "feet"),
  46780. name: "Front",
  46781. image: {
  46782. source: "./media/characters/rasp/front.svg",
  46783. extra: 561/478,
  46784. bottom: 74/635
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "Normal",
  46791. height: math.unit(4, "feet"),
  46792. default: true
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46798. {
  46799. front: {
  46800. height: math.unit(4 + 6/12, "feet"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/agatha/front.svg",
  46804. extra: 947/933,
  46805. bottom: 42/989
  46806. }
  46807. },
  46808. back: {
  46809. height: math.unit(4 + 6/12, "feet"),
  46810. name: "Back",
  46811. image: {
  46812. source: "./media/characters/agatha/back.svg",
  46813. extra: 935/922,
  46814. bottom: 48/983
  46815. }
  46816. },
  46817. },
  46818. [
  46819. {
  46820. name: "Normal",
  46821. height: math.unit(4 + 6 /12, "feet"),
  46822. default: true
  46823. },
  46824. {
  46825. name: "Max Size",
  46826. height: math.unit(500, "feet")
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46832. {
  46833. side: {
  46834. height: math.unit(30, "feet"),
  46835. name: "Side",
  46836. image: {
  46837. source: "./media/characters/roggy/side.svg",
  46838. extra: 909/643,
  46839. bottom: 63/972
  46840. }
  46841. },
  46842. lounging: {
  46843. height: math.unit(20, "feet"),
  46844. name: "Lounging",
  46845. image: {
  46846. source: "./media/characters/roggy/lounging.svg",
  46847. extra: 643/479,
  46848. bottom: 145/788
  46849. }
  46850. },
  46851. handpaw: {
  46852. height: math.unit(13.1, "feet"),
  46853. name: "Handpaw",
  46854. image: {
  46855. source: "./media/characters/roggy/handpaw.svg"
  46856. }
  46857. },
  46858. footpaw: {
  46859. height: math.unit(15.8, "feet"),
  46860. name: "Footpaw",
  46861. image: {
  46862. source: "./media/characters/roggy/footpaw.svg"
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Menacing",
  46869. height: math.unit(30, "feet"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46876. {
  46877. front: {
  46878. height: math.unit(5 + 7/12, "feet"),
  46879. weight: math.unit(135, "lb"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/naomi/front.svg",
  46883. extra: 1209/1154,
  46884. bottom: 129/1338
  46885. }
  46886. },
  46887. back: {
  46888. height: math.unit(5 + 7/12, "feet"),
  46889. weight: math.unit(135, "lb"),
  46890. name: "Back",
  46891. image: {
  46892. source: "./media/characters/naomi/back.svg",
  46893. extra: 1252/1190,
  46894. bottom: 23/1275
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(5 + 7 /12, "feet"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46908. {
  46909. side: {
  46910. height: math.unit(35, "meters"),
  46911. name: "Side",
  46912. image: {
  46913. source: "./media/characters/kimpi/side.svg",
  46914. extra: 419/382,
  46915. bottom: 63/482
  46916. }
  46917. },
  46918. hand: {
  46919. height: math.unit(8.96, "meters"),
  46920. name: "Hand",
  46921. image: {
  46922. source: "./media/characters/kimpi/hand.svg"
  46923. }
  46924. },
  46925. },
  46926. [
  46927. {
  46928. name: "Normal",
  46929. height: math.unit(35, "meters"),
  46930. default: true
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46936. {
  46937. front: {
  46938. height: math.unit(4 + 4/12, "feet"),
  46939. name: "Front",
  46940. image: {
  46941. source: "./media/characters/pepper-purrloin/front.svg",
  46942. extra: 1141/1024,
  46943. bottom: 21/1162
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "Normal",
  46950. height: math.unit(4 + 4/12, "feet"),
  46951. default: true
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46957. {
  46958. front: {
  46959. height: math.unit(6 + 2/12, "feet"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/raphael/front.svg",
  46963. extra: 1101/962,
  46964. bottom: 59/1160
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(6 + 2/12, "feet"),
  46972. default: true
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46978. {
  46979. front: {
  46980. height: math.unit(6, "feet"),
  46981. weight: math.unit(150, "lb"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/victor-williams/front.svg",
  46985. extra: 1894/1825,
  46986. bottom: 67/1961
  46987. }
  46988. },
  46989. },
  46990. [
  46991. {
  46992. name: "Normal",
  46993. height: math.unit(6, "feet"),
  46994. default: true
  46995. },
  46996. ]
  46997. ))
  46998. characterMakers.push(() => makeCharacter(
  46999. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47000. {
  47001. front: {
  47002. height: math.unit(5 + 8/12, "feet"),
  47003. weight: math.unit(150, "lb"),
  47004. name: "Front",
  47005. image: {
  47006. source: "./media/characters/rachel/front.svg",
  47007. extra: 1902/1787,
  47008. bottom: 46/1948
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Base Height",
  47015. height: math.unit(5 + 8/12, "feet"),
  47016. default: true
  47017. },
  47018. {
  47019. name: "Macro",
  47020. height: math.unit(200, "feet")
  47021. },
  47022. {
  47023. name: "Mega Macro",
  47024. height: math.unit(1, "mile")
  47025. },
  47026. {
  47027. name: "Giga Macro",
  47028. height: math.unit(1500, "miles")
  47029. },
  47030. {
  47031. name: "Tera Macro",
  47032. height: math.unit(8000, "miles")
  47033. },
  47034. {
  47035. name: "Tera Macro+",
  47036. height: math.unit(2e5, "miles")
  47037. },
  47038. ]
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47042. {
  47043. front: {
  47044. height: math.unit(6.5, "feet"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47048. extra: 860/819,
  47049. bottom: 307/1167
  47050. }
  47051. },
  47052. back: {
  47053. height: math.unit(6.5, "feet"),
  47054. name: "Back",
  47055. image: {
  47056. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47057. extra: 880/837,
  47058. bottom: 395/1275
  47059. }
  47060. },
  47061. sleeping: {
  47062. height: math.unit(2.79, "feet"),
  47063. name: "Sleeping",
  47064. image: {
  47065. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47066. extra: 465/383,
  47067. bottom: 263/728
  47068. }
  47069. },
  47070. maw: {
  47071. height: math.unit(2.52, "feet"),
  47072. name: "Maw",
  47073. image: {
  47074. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47075. }
  47076. },
  47077. },
  47078. [
  47079. {
  47080. name: "Normal",
  47081. height: math.unit(6.5, "feet"),
  47082. default: true
  47083. },
  47084. ]
  47085. ))
  47086. characterMakers.push(() => makeCharacter(
  47087. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47088. {
  47089. front: {
  47090. height: math.unit(5, "feet"),
  47091. name: "Front",
  47092. image: {
  47093. source: "./media/characters/nova-nerium/front.svg",
  47094. extra: 1548/1392,
  47095. bottom: 374/1922
  47096. }
  47097. },
  47098. back: {
  47099. height: math.unit(5, "feet"),
  47100. name: "Back",
  47101. image: {
  47102. source: "./media/characters/nova-nerium/back.svg",
  47103. extra: 1658/1468,
  47104. bottom: 257/1915
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(5, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47118. {
  47119. front: {
  47120. height: math.unit(5 + 4/12, "feet"),
  47121. name: "Front",
  47122. image: {
  47123. source: "./media/characters/ashe-pyriph/front.svg",
  47124. extra: 1935/1747,
  47125. bottom: 60/1995
  47126. }
  47127. },
  47128. },
  47129. [
  47130. {
  47131. name: "Normal",
  47132. height: math.unit(5 + 4/12, "feet"),
  47133. default: true
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47139. {
  47140. front: {
  47141. height: math.unit(8.7, "feet"),
  47142. name: "Front",
  47143. image: {
  47144. source: "./media/characters/flicker-wisp/front.svg",
  47145. extra: 1835/1613,
  47146. bottom: 449/2284
  47147. }
  47148. },
  47149. side: {
  47150. height: math.unit(8.7, "feet"),
  47151. name: "Side",
  47152. image: {
  47153. source: "./media/characters/flicker-wisp/side.svg",
  47154. extra: 1841/1642,
  47155. bottom: 336/2177
  47156. },
  47157. default: true
  47158. },
  47159. maw: {
  47160. height: math.unit(3.35, "feet"),
  47161. name: "Maw",
  47162. image: {
  47163. source: "./media/characters/flicker-wisp/maw.svg",
  47164. extra: 2338/1506,
  47165. bottom: 0/2338
  47166. }
  47167. },
  47168. ovipositor: {
  47169. height: math.unit(4.95, "feet"),
  47170. name: "Ovipositor",
  47171. image: {
  47172. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47173. }
  47174. },
  47175. egg: {
  47176. height: math.unit(0.385, "feet"),
  47177. weight: math.unit(2, "lb"),
  47178. name: "Egg",
  47179. image: {
  47180. source: "./media/characters/flicker-wisp/egg.svg"
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Normal",
  47187. height: math.unit(8.7, "feet"),
  47188. default: true
  47189. },
  47190. ]
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47194. {
  47195. side: {
  47196. height: math.unit(11, "feet"),
  47197. name: "Side",
  47198. image: {
  47199. source: "./media/characters/faefnul/side.svg",
  47200. extra: 1100/1007,
  47201. bottom: 0/1100
  47202. }
  47203. },
  47204. },
  47205. [
  47206. {
  47207. name: "Normal",
  47208. height: math.unit(11, "feet"),
  47209. default: true
  47210. },
  47211. ]
  47212. ))
  47213. characterMakers.push(() => makeCharacter(
  47214. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47215. {
  47216. front: {
  47217. height: math.unit(6 + 2/12, "feet"),
  47218. name: "Front",
  47219. image: {
  47220. source: "./media/characters/shady/front.svg",
  47221. extra: 502/461,
  47222. bottom: 9/511
  47223. }
  47224. },
  47225. },
  47226. [
  47227. {
  47228. name: "Nano",
  47229. height: math.unit(1, "mm")
  47230. },
  47231. {
  47232. name: "Micro",
  47233. height: math.unit(12, "mm")
  47234. },
  47235. {
  47236. name: "Tiny",
  47237. height: math.unit(3, "inches")
  47238. },
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(6 + 2/12, "feet"),
  47242. default: true
  47243. },
  47244. {
  47245. name: "Big",
  47246. height: math.unit(15, "feet")
  47247. },
  47248. {
  47249. name: "Macro",
  47250. height: math.unit(150, "feet")
  47251. },
  47252. {
  47253. name: "Titanic",
  47254. height: math.unit(500, "feet")
  47255. },
  47256. ]
  47257. ))
  47258. //characters
  47259. function makeCharacters() {
  47260. const results = [];
  47261. characterMakers.forEach(character => {
  47262. results.push(character());
  47263. });
  47264. return results;
  47265. }