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.
 
 
 

50801 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.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. "plant",
  359. "animal"
  360. ]
  361. },
  362. "mouse": {
  363. name: "Mouse",
  364. parents: [
  365. "rodent"
  366. ]
  367. },
  368. "rat": {
  369. name: "Rat",
  370. parents: [
  371. "mammal"
  372. ]
  373. },
  374. "hoshiko-beast": {
  375. name: "Hoshiko Beast",
  376. parents: ["animal"]
  377. },
  378. "snow-jugani": {
  379. name: "Snow Jugani",
  380. parents: ["cat"]
  381. },
  382. "patamon": {
  383. name: "Patamon",
  384. parents: ["digimon", "guinea-pig"]
  385. },
  386. "digimon": {
  387. name: "Digimon",
  388. },
  389. "jugani": {
  390. name: "Jugani",
  391. parents: ["cat"]
  392. },
  393. "luxray": {
  394. name: "Luxray",
  395. parents: ["pokemon", "lion"]
  396. },
  397. "mech": {
  398. name: "Mech",
  399. parents: ["machine"]
  400. },
  401. "zoid": {
  402. name: "Zoid",
  403. parents: ["mech"]
  404. },
  405. "monster": {
  406. name: "Monster",
  407. parents: ["animal"]
  408. },
  409. "foo-dog": {
  410. name: "Foo Dog",
  411. parents: ["mammal"]
  412. },
  413. "elephant": {
  414. name: "Elephant",
  415. parents: ["mammal"]
  416. },
  417. "eagle": {
  418. name: "Eagle",
  419. parents: ["avian"]
  420. },
  421. "cow": {
  422. name: "Cow",
  423. parents: ["mammal"]
  424. },
  425. "crocodile": {
  426. name: "Crocodile",
  427. parents: ["reptile"]
  428. },
  429. "borzoi": {
  430. name: "Borzoi",
  431. parents: ["dog"]
  432. },
  433. "snake": {
  434. name: "Snake",
  435. parents: ["reptile"]
  436. },
  437. "horned-bush-viper": {
  438. name: "Horned Bush Viper",
  439. parents: ["viper"]
  440. },
  441. "cobra": {
  442. name: "Cobra",
  443. parents: ["snake"]
  444. },
  445. "harpy-eagle": {
  446. name: "Harpy Eagle",
  447. parents: ["eagle"]
  448. },
  449. "raptor": {
  450. name: "Raptor",
  451. parents: ["dinosaur"]
  452. },
  453. "dinosaur": {
  454. name: "Dinosaur",
  455. parents: ["reptile"]
  456. },
  457. "veilhound": {
  458. name: "Veilhound",
  459. parents: ["hellhound"]
  460. },
  461. "hellhound": {
  462. name: "Hellhound",
  463. parents: ["canine", "demon"]
  464. },
  465. "insect": {
  466. name: "Insect",
  467. parents: ["animal"]
  468. },
  469. "beetle": {
  470. name: "Beetle",
  471. parents: ["insect"]
  472. },
  473. "moth": {
  474. name: "Moth",
  475. parents: ["insect"]
  476. },
  477. "eastern-dragon": {
  478. name: "Eastern Dragon",
  479. parents: ["dragon"]
  480. },
  481. "jaguar": {
  482. name: "Jaguar",
  483. parents: ["cat"]
  484. },
  485. "horse": {
  486. name: "Horse",
  487. parents: ["mammal"]
  488. },
  489. "sergal": {
  490. name: "Sergal",
  491. parents: ["mammal"]
  492. },
  493. "gryphon": {
  494. name: "Gryphon",
  495. parents: ["lion", "eagle"]
  496. },
  497. "robot": {
  498. name: "Robot",
  499. parents: ["machine"]
  500. },
  501. "medihound": {
  502. name: "Medihound",
  503. parents: ["robot", "dog"]
  504. },
  505. "sylveon": {
  506. name: "Sylveon",
  507. parents: ["pokemon"]
  508. },
  509. "catgirl": {
  510. name: "Catgirl",
  511. parents: ["mammal"]
  512. },
  513. "cowgirl": {
  514. name: "Cowgirl",
  515. parents: ["mammal"]
  516. },
  517. "pony": {
  518. name: "Pony",
  519. parents: ["horse"]
  520. },
  521. "rabbit": {
  522. name: "Rabbit",
  523. parents: ["leporidae"]
  524. },
  525. "fennec-fox": {
  526. name: "Fennec Fox",
  527. parents: ["fox"]
  528. },
  529. "azodian": {
  530. name: "Azodian",
  531. parents: ["mouse"]
  532. },
  533. "shiba-inu": {
  534. name: "Shiba Inu",
  535. parents: ["dog"]
  536. },
  537. "changeling": {
  538. name: "Changeling",
  539. parents: ["insect"]
  540. },
  541. "cheetah": {
  542. name: "Cheetah",
  543. parents: ["cat"]
  544. },
  545. "golden-jackal": {
  546. name: "Golden Jackal",
  547. parents: ["jackal"]
  548. },
  549. "manectric": {
  550. name: "Manectric",
  551. parents: ["pokemon", "wolf"]
  552. },
  553. "rat": {
  554. name: "Rat",
  555. parents: ["rodent"]
  556. },
  557. "rodent": {
  558. name: "Rodent",
  559. parents: ["mammal"]
  560. },
  561. "octocoon": {
  562. name: "Octocoon",
  563. parents: ["raccoon", "octopus"]
  564. },
  565. "octopus": {
  566. name: "Octopus",
  567. parents: ["fish"]
  568. },
  569. "werewolf": {
  570. name: "Werewolf",
  571. parents: ["wolf", "werebeast"]
  572. },
  573. "werebeast": {
  574. name: "Werebeast",
  575. parents: ["monster"]
  576. },
  577. "meerkat": {
  578. name: "Meerkat",
  579. parents: ["mammal"]
  580. },
  581. "human": {
  582. name: "Human",
  583. parents: ["mammal"]
  584. },
  585. "geth": {
  586. name: "Geth",
  587. parents: ["android"]
  588. },
  589. "husky": {
  590. name: "Husky",
  591. parents: ["dog"]
  592. },
  593. "long-eared-bat": {
  594. name: "Long Eared Bat",
  595. parents: ["bat"]
  596. },
  597. "lizard": {
  598. name: "Lizard",
  599. parents: ["reptile"]
  600. },
  601. "salamander": {
  602. name: "Salamander",
  603. parents: ["lizard"]
  604. },
  605. "chameleon": {
  606. name: "Chameleon",
  607. parents: ["lizard"]
  608. },
  609. "gecko": {
  610. name: "Gecko",
  611. parents: ["lizard"]
  612. },
  613. "kobold": {
  614. name: "Kobold",
  615. parents: ["reptile"]
  616. },
  617. "charizard": {
  618. name: "Charizard",
  619. parents: ["pokemon", "dragon"]
  620. },
  621. "lugia": {
  622. name: "Lugia",
  623. parents: ["pokemon", "avian"]
  624. },
  625. "cerberus": {
  626. name: "Cerberus",
  627. parents: ["dog"]
  628. },
  629. "tyrantrum": {
  630. name: "Tyrantrum",
  631. parents: ["pokemon"]
  632. },
  633. "lemur": {
  634. name: "Lemur",
  635. parents: ["mammal"]
  636. },
  637. "kelpie": {
  638. name: "Kelpie",
  639. parents: ["horse", "monster"]
  640. },
  641. "labrador": {
  642. name: "Labrador",
  643. parents: ["dog"]
  644. },
  645. "sylveon": {
  646. name: "Sylveon",
  647. parents: ["eeveelution"]
  648. },
  649. "eeveelution": {
  650. name: "Eeveelution",
  651. parents: ["pokemon", "cat"]
  652. },
  653. "polar-bear": {
  654. name: "Polar Bear",
  655. parents: ["bear"]
  656. },
  657. "bear": {
  658. name: "Bear",
  659. parents: ["mammal"]
  660. },
  661. "absol": {
  662. name: "Absol",
  663. parents: ["pokemon", "cat"]
  664. },
  665. "wolver": {
  666. name: "Wolver",
  667. parents: ["mammal"]
  668. },
  669. "rottweiler": {
  670. name: "Rottweiler",
  671. parents: ["dog"]
  672. },
  673. "zebra": {
  674. name: "Zebra",
  675. parents: ["horse"]
  676. },
  677. "yoshi": {
  678. name: "Yoshi",
  679. parents: ["lizard"]
  680. },
  681. "lynx": {
  682. name: "Lynx",
  683. parents: ["cat"]
  684. },
  685. "unknown": {
  686. name: "Unknown",
  687. parents: []
  688. },
  689. "thylacine": {
  690. name: "Thylacine",
  691. parents: ["mammal"]
  692. },
  693. "gabumon": {
  694. name: "Gabumon",
  695. parents: ["digimon"]
  696. },
  697. "border-collie": {
  698. name: "Border Collie",
  699. parents: ["dog"]
  700. },
  701. "imp": {
  702. name: "Imp",
  703. parents: ["demon"]
  704. },
  705. "kangaroo": {
  706. name: "Kangaroo",
  707. parents: ["marsupial"]
  708. },
  709. "renamon": {
  710. name: "Renamon",
  711. parents: ["digimon", "fox"]
  712. },
  713. "candy-orca-dragon": {
  714. name: "Candy Orca Dragon",
  715. parents: ["fish", "dragon", "candy"]
  716. },
  717. "sabertooth-tiger": {
  718. name: "Sabertooth Tiger",
  719. parents: ["cat"]
  720. },
  721. "espurr": {
  722. name: "Espurr",
  723. parents: ["pokemon", "cat"]
  724. },
  725. "otter": {
  726. name: "Otter",
  727. parents: ["mustelid"]
  728. },
  729. "elemental": {
  730. name: "Elemental",
  731. parents: ["mammal"]
  732. },
  733. "mew": {
  734. name: "Mew",
  735. parents: ["pokemon"]
  736. },
  737. "goodra": {
  738. name: "Goodra",
  739. parents: ["pokemon"]
  740. },
  741. "fairy": {
  742. name: "Fairy",
  743. parents: ["magical"]
  744. },
  745. "typhlosion": {
  746. name: "Typhlosion",
  747. parents: ["pokemon"]
  748. },
  749. "magical": {
  750. name: "Magical",
  751. parents: []
  752. },
  753. "xenomorph": {
  754. name: "Xenomorph",
  755. parents: ["monster", "alien"]
  756. },
  757. "charr": {
  758. name: "Charr",
  759. parents: ["cat"]
  760. },
  761. "siberian-husky": {
  762. name: "Siberian Husky",
  763. parents: ["husky"]
  764. },
  765. "alligator": {
  766. name: "Alligator",
  767. parents: ["reptile"]
  768. },
  769. "bernese-mountain-dog": {
  770. name: "Bernese Mountain Dog",
  771. parents: ["dog"]
  772. },
  773. "reshiram": {
  774. name: "Reshiram",
  775. parents: ["pokemon", "dragon"]
  776. },
  777. "grizzly-bear": {
  778. name: "Grizzly Bear",
  779. parents: ["bear"]
  780. },
  781. "water-monitor": {
  782. name: "Water Monitor",
  783. parents: ["lizard"]
  784. },
  785. "banchofossa": {
  786. name: "Banchofossa",
  787. parents: ["mammal"]
  788. },
  789. "kirin": {
  790. name: "Kirin",
  791. parents: ["monster"]
  792. },
  793. "quilava": {
  794. name: "Quilava",
  795. parents: ["pokemon"]
  796. },
  797. "seviper": {
  798. name: "Seviper",
  799. parents: ["pokemon", "viper"]
  800. },
  801. "flying-fox": {
  802. name: "Flying Fox",
  803. parents: ["bat"]
  804. },
  805. "keynain": {
  806. name: "Keynain",
  807. parents: ["avian"]
  808. },
  809. "lucario": {
  810. name: "Lucario",
  811. parents: ["pokemon", "jackal"]
  812. },
  813. "siamese-cat": {
  814. name: "Siamese Cat",
  815. parents: ["cat"]
  816. },
  817. "spider": {
  818. name: "Spider",
  819. parents: ["insect"]
  820. },
  821. "samurott": {
  822. name: "Samurott",
  823. parents: ["pokemon", "otter"]
  824. },
  825. "megalodon": {
  826. name: "Megalodon",
  827. parents: ["shark"]
  828. },
  829. "unicorn": {
  830. name: "Unicorn",
  831. parents: ["horse"]
  832. },
  833. "greninja": {
  834. name: "Greninja",
  835. parents: ["pokemon", "frog"]
  836. },
  837. "water-dragon": {
  838. name: "Water Dragon",
  839. parents: ["dragon"]
  840. },
  841. "cross-fox": {
  842. name: "Cross Fox",
  843. parents: ["fox"]
  844. },
  845. "synth": {
  846. name: "Synth",
  847. parents: ["machine"]
  848. },
  849. "construct": {
  850. name: "Construct",
  851. parents: []
  852. },
  853. "mexican-wolf": {
  854. name: "Mexican Wolf",
  855. parents: ["wolf"]
  856. },
  857. "leopard": {
  858. name: "Leopard",
  859. parents: ["cat"]
  860. },
  861. "pig": {
  862. name: "Pig",
  863. parents: ["mammal"]
  864. },
  865. "ampharos": {
  866. name: "Ampharos",
  867. parents: ["pokemon", "sheep"]
  868. },
  869. "orca": {
  870. name: "Orca",
  871. parents: ["fish"]
  872. },
  873. "lycanroc": {
  874. name: "Lycanroc",
  875. parents: ["pokemon", "wolf"]
  876. },
  877. "surkanu": {
  878. name: "Surkanu",
  879. parents: ["monster"]
  880. },
  881. "seal": {
  882. name: "Seal",
  883. parents: ["mammal"]
  884. },
  885. "keldeo": {
  886. name: "Keldeo",
  887. parents: ["pokemon"]
  888. },
  889. "great-dane": {
  890. name: "Great Dane",
  891. parents: ["dog"]
  892. },
  893. "black-backed-jackal": {
  894. name: "Black Backed Jackal",
  895. parents: ["jackal"]
  896. },
  897. "sheep": {
  898. name: "Sheep",
  899. parents: ["mammal"]
  900. },
  901. "leopard-seal": {
  902. name: "Leopard Seal",
  903. parents: ["seal"]
  904. },
  905. "zoroark": {
  906. name: "Zoroark",
  907. parents: ["pokemon", "fox"]
  908. },
  909. "maned-wolf": {
  910. name: "Maned Wolf",
  911. parents: ["canine"]
  912. },
  913. "dracha": {
  914. name: "Dracha",
  915. parents: ["dragon"]
  916. },
  917. "wolxi": {
  918. name: "Wolxi",
  919. parents: ["mammal", "alien"]
  920. },
  921. "dratini": {
  922. name: "Dratini",
  923. parents: ["pokemon", "dragon"]
  924. },
  925. "skaven": {
  926. name: "Skaven",
  927. parents: ["rat"]
  928. },
  929. "mongoose": {
  930. name: "Mongoose",
  931. parents: ["mammal"]
  932. },
  933. "lopunny": {
  934. name: "Lopunny",
  935. parents: ["pokemon", "rabbit"]
  936. },
  937. "feraligatr": {
  938. name: "Feraligatr",
  939. parents: ["pokemon", "alligator"]
  940. },
  941. "houndoom": {
  942. name: "Houndoom",
  943. parents: ["pokemon", "dog"]
  944. },
  945. "protogen": {
  946. name: "Protogen",
  947. parents: ["machine"]
  948. },
  949. "saint-bernard": {
  950. name: "Saint Bernard",
  951. parents: ["dog"]
  952. },
  953. "crow": {
  954. name: "Crow",
  955. parents: ["corvid"]
  956. },
  957. "delphox": {
  958. name: "Delphox",
  959. parents: ["pokemon", "fox"]
  960. },
  961. "moose": {
  962. name: "Moose",
  963. parents: ["mammal"]
  964. },
  965. "joraxian": {
  966. name: "Joraxian",
  967. parents: ["monster", "canine", "demon"]
  968. },
  969. "nimbat": {
  970. name: "Nimbat",
  971. parents: ["mammal"]
  972. },
  973. "aardwolf": {
  974. name: "Aardwolf",
  975. parents: ["canine"]
  976. },
  977. "fluudrani": {
  978. name: "Fluudrani",
  979. parents: ["animal"]
  980. },
  981. "arcanine": {
  982. name: "Arcanine",
  983. parents: ["pokemon", "dog"]
  984. },
  985. "inteleon": {
  986. name: "Inteleon",
  987. parents: ["pokemon", "fish"]
  988. },
  989. "ninetales": {
  990. name: "Ninetales",
  991. parents: ["pokemon", "kitsune"]
  992. },
  993. "tigrex": {
  994. name: "Tigrex",
  995. parents: ["tiger"]
  996. },
  997. "zorua": {
  998. name: "Zorua",
  999. parents: ["pokemon", "fox"]
  1000. },
  1001. "vulpix": {
  1002. name: "Vulpix",
  1003. parents: ["pokemon", "fox"]
  1004. },
  1005. "barghest": {
  1006. name: "Barghest",
  1007. parents: ["monster"]
  1008. },
  1009. "gray-wolf": {
  1010. name: "Gray Wolf",
  1011. parents: ["wolf"]
  1012. },
  1013. "ruppells-fox": {
  1014. name: "Rüppell's Fox",
  1015. parents: ["fox"]
  1016. },
  1017. "bull-terrier": {
  1018. name: "Bull Terrier",
  1019. parents: ["dog"]
  1020. },
  1021. "european-honey-buzzard": {
  1022. name: "European Honey Buzzard",
  1023. parents: ["avian"]
  1024. },
  1025. "t-rex": {
  1026. name: "Tyrannosaurus Rex",
  1027. parents: ["dinosaur"]
  1028. },
  1029. "mactarian": {
  1030. name: "Mactarian",
  1031. parents: ["shark", "monster"]
  1032. },
  1033. "mewtwo-y": {
  1034. name: "Mewtwo Y",
  1035. parents: ["mewtwo"]
  1036. },
  1037. "mewtwo": {
  1038. name: "Mewtwo",
  1039. parents: ["pokemon"]
  1040. },
  1041. "eevee": {
  1042. name: "Eevee",
  1043. parents: ["eeveelution"]
  1044. },
  1045. "mienshao": {
  1046. name: "Mienshao",
  1047. parents: ["pokemon"]
  1048. },
  1049. "sugar-glider": {
  1050. name: "Sugar Glider",
  1051. parents: ["opossum"]
  1052. },
  1053. "spectral-bat": {
  1054. name: "Spectral Bat",
  1055. parents: ["bat"]
  1056. },
  1057. "scolipede": {
  1058. name: "Scolipede",
  1059. parents: ["pokemon", "insect"]
  1060. },
  1061. "jackalope": {
  1062. name: "Jackalope",
  1063. parents: ["rabbit", "antelope"]
  1064. },
  1065. "caracal": {
  1066. name: "Caracal",
  1067. parents: ["cat"]
  1068. },
  1069. "stoat": {
  1070. name: "Stoat",
  1071. parents: ["mammal"]
  1072. },
  1073. "african-golden-cat": {
  1074. name: "African Golden Cat",
  1075. parents: ["cat"]
  1076. },
  1077. "gigantosaurus": {
  1078. name: "Gigantosaurus",
  1079. parents: ["dinosaur"]
  1080. },
  1081. "zorgoia": {
  1082. name: "Zorgoia",
  1083. parents: ["mammal"]
  1084. },
  1085. "monitor-lizard": {
  1086. name: "Monitor Lizard",
  1087. parents: ["lizard"]
  1088. },
  1089. "ziralkia": {
  1090. name: "Ziralkia",
  1091. parents: ["mammal"]
  1092. },
  1093. "kiiasi": {
  1094. name: "Kiiasi",
  1095. parents: ["animal"]
  1096. },
  1097. "synx": {
  1098. name: "Synx",
  1099. parents: ["monster"]
  1100. },
  1101. "panther": {
  1102. name: "Panther",
  1103. parents: ["cat"]
  1104. },
  1105. "azumarill": {
  1106. name: "Azumarill",
  1107. parents: ["pokemon"]
  1108. },
  1109. "river-snaptail": {
  1110. name: "River Snaptail",
  1111. parents: ["otter", "crocodile"]
  1112. },
  1113. "great-blue-heron": {
  1114. name: "Great Blue Heron",
  1115. parents: ["avian"]
  1116. },
  1117. "smeargle": {
  1118. name: "Smeargle",
  1119. parents: ["pokemon"]
  1120. },
  1121. "vendeilen": {
  1122. name: "Vendeilen",
  1123. parents: ["monster"]
  1124. },
  1125. "ventura": {
  1126. name: "Ventura",
  1127. parents: ["canine"]
  1128. },
  1129. "clouded-leopard": {
  1130. name: "Clouded Leopard",
  1131. parents: ["leopard"]
  1132. },
  1133. "argonian": {
  1134. name: "Argonian",
  1135. parents: ["lizard"]
  1136. },
  1137. "salazzle": {
  1138. name: "Salazzle",
  1139. parents: ["pokemon", "lizard"]
  1140. },
  1141. "je-stoff-drachen": {
  1142. name: "Je-Stoff Drachen",
  1143. parents: ["dragon"]
  1144. },
  1145. "finnish-spitz-dog": {
  1146. name: "Finnish Spitz Dog",
  1147. parents: ["dog"]
  1148. },
  1149. "gray-fox": {
  1150. name: "Gray Fox",
  1151. parents: ["fox"]
  1152. },
  1153. "opossum": {
  1154. name: "Opossum",
  1155. parents: ["mammal"]
  1156. },
  1157. "antelope": {
  1158. name: "Antelope",
  1159. parents: ["mammal"]
  1160. },
  1161. "weavile": {
  1162. name: "Weavile",
  1163. parents: ["pokemon"]
  1164. },
  1165. "pikachu": {
  1166. name: "Pikachu",
  1167. parents: ["pokemon", "mouse"]
  1168. },
  1169. "grovyle": {
  1170. name: "Grovyle",
  1171. parents: ["pokemon", "plant"]
  1172. },
  1173. "sthara": {
  1174. name: "Sthara",
  1175. parents: ["snow-leopard", "reptile"]
  1176. },
  1177. "star-warrior": {
  1178. name: "Star Warrior",
  1179. parents: ["magical"]
  1180. },
  1181. "dragonoid": {
  1182. name: "Dragonoid",
  1183. parents: ["dragon"]
  1184. },
  1185. "suicune": {
  1186. name: "Suicune",
  1187. parents: ["pokemon"]
  1188. },
  1189. "vole": {
  1190. name: "Vole",
  1191. parents: ["mammal"]
  1192. },
  1193. "blaziken": {
  1194. name: "Blaziken",
  1195. parents: ["pokemon", "avian"]
  1196. },
  1197. "buizel": {
  1198. name: "Buizel",
  1199. parents: ["pokemon", "fish"]
  1200. },
  1201. "floatzel": {
  1202. name: "Floatzel",
  1203. parents: ["pokemon", "fish"]
  1204. },
  1205. "umok": {
  1206. name: "Umok",
  1207. parents: ["avian"]
  1208. },
  1209. "sea-monster": {
  1210. name: "Sea Monster",
  1211. parents: ["monster", "fish"]
  1212. },
  1213. "egyptian-vulture": {
  1214. name: "Egyptian Vulture",
  1215. parents: ["avian"]
  1216. },
  1217. "doberman": {
  1218. name: "Doberman",
  1219. parents: ["dog"]
  1220. },
  1221. "zangoose": {
  1222. name: "Zangoose",
  1223. parents: ["pokemon", "mongoose"]
  1224. },
  1225. "mongoose": {
  1226. name: "Mongoose",
  1227. parents: ["mammal"]
  1228. },
  1229. "wickerbeast": {
  1230. name: "Wickerbeast",
  1231. parents: ["monster"]
  1232. },
  1233. "zenari": {
  1234. name: "Zenari",
  1235. parents: ["lizard"]
  1236. },
  1237. "plant": {
  1238. name: "Plant",
  1239. parents: []
  1240. },
  1241. "raskatox": {
  1242. name: "Raskatox",
  1243. parents: ["raccoon", "skunk", "cat", "fox"]
  1244. },
  1245. "mikromare": {
  1246. name: "mikromare",
  1247. parents: ["alien"]
  1248. },
  1249. "alien": {
  1250. name: "Alien",
  1251. parents: ["animal"]
  1252. },
  1253. "deity": {
  1254. name: "Deity",
  1255. parents: []
  1256. },
  1257. "skarlan": {
  1258. name: "Skarlan",
  1259. parents: ["slug", "dragon"]
  1260. },
  1261. "slug": {
  1262. name: "Slug",
  1263. parents: ["mollusk"]
  1264. },
  1265. "mollusk": {
  1266. name: "Mollusk",
  1267. parents: ["animal"]
  1268. },
  1269. "chimera": {
  1270. name: "Chimera",
  1271. parents: ["monster"]
  1272. },
  1273. "gestalt": {
  1274. name: "Gestalt",
  1275. parents: ["construct"]
  1276. },
  1277. "mimic": {
  1278. name: "Mimic",
  1279. parents: ["monster"]
  1280. },
  1281. "calico-rat": {
  1282. name: "Calico Rat",
  1283. parents: ["rat"]
  1284. },
  1285. "panda": {
  1286. name: "Panda",
  1287. parents: ["mammal"]
  1288. },
  1289. "oni": {
  1290. name: "Oni",
  1291. parents: ["monster"]
  1292. },
  1293. "pegasus": {
  1294. name: "Pegasus",
  1295. parents: ["horse"]
  1296. },
  1297. "vulpera": {
  1298. name: "Vulpera",
  1299. parents: ["fennec-fox"]
  1300. },
  1301. "ceratosaurus": {
  1302. name: "Ceratosaurus",
  1303. parents: ["dinosaur"]
  1304. },
  1305. "nykur": {
  1306. name: "Nykur",
  1307. parents: ["horse", "monster"]
  1308. },
  1309. "giraffe": {
  1310. name: "Giraffe",
  1311. parents: ["mammal"]
  1312. },
  1313. "tauren": {
  1314. name: "Tauren",
  1315. parents: ["cow"]
  1316. },
  1317. "draconi": {
  1318. name: "Draconi",
  1319. parents: ["alien", "cat", "cyborg"]
  1320. },
  1321. "dire-wolf": {
  1322. name: "Dire Wolf",
  1323. parents: ["wolf"]
  1324. },
  1325. "ferromorph": {
  1326. name: "Ferromorph",
  1327. parents: ["construct"]
  1328. },
  1329. "meowth": {
  1330. name: "Meowth",
  1331. parents: ["cat", "pokemon"]
  1332. },
  1333. "pavodragon": {
  1334. name: "Pavodragon",
  1335. parents: ["dragon"]
  1336. },
  1337. "aaltranae": {
  1338. name: "Aaltranae",
  1339. parents: ["dragon"]
  1340. },
  1341. "cyborg": {
  1342. name: "Cyborg",
  1343. parents: ["machine"]
  1344. },
  1345. "draptor": {
  1346. name: "Draptor",
  1347. parents: ["dragon"]
  1348. },
  1349. "candy": {
  1350. name: "Candy",
  1351. parents: []
  1352. },
  1353. "drenath": {
  1354. name: "Drenath",
  1355. parents: ["dragon", "snake", "rabbit"]
  1356. },
  1357. "coyju": {
  1358. name: "Coyju",
  1359. parents: ["coyote", "kaiju"]
  1360. },
  1361. "kaiju": {
  1362. name: "Kaiju",
  1363. parents: ["monster"]
  1364. },
  1365. "nickit": {
  1366. name: "Nickit",
  1367. parents: ["pokemon", "cat"]
  1368. },
  1369. "lopunny": {
  1370. name: "Lopunny",
  1371. parents: ["pokemon", "rabbit"]
  1372. },
  1373. "korean-jindo-dog": {
  1374. name: "Korean Jindo Dog",
  1375. parents: ["dog"]
  1376. },
  1377. "naga": {
  1378. name: "Naga",
  1379. parents: ["snake", "monster"]
  1380. },
  1381. "undead": {
  1382. name: "Undead",
  1383. parents: ["monster"]
  1384. },
  1385. "whale": {
  1386. name: "Whale",
  1387. parents: ["fish"]
  1388. },
  1389. "gelato-bee": {
  1390. name: "Gelato Bee",
  1391. parents: ["bee"]
  1392. },
  1393. "bee": {
  1394. name: "Bee",
  1395. parents: ["insect"]
  1396. },
  1397. "gardevoir": {
  1398. name: "Gardevoir",
  1399. parents: ["pokemon"]
  1400. },
  1401. "ant": {
  1402. name: "Ant",
  1403. parents: ["insect"]
  1404. },
  1405. "frog": {
  1406. name: "Frog",
  1407. parents: ["amphibian"]
  1408. },
  1409. "amphibian": {
  1410. name: "Amphibian",
  1411. parents: ["animal"]
  1412. },
  1413. "pangolin": {
  1414. name: "Pangolin",
  1415. parents: ["mammal"]
  1416. },
  1417. "uragi'viidorn": {
  1418. name: "Uragi'viidorn",
  1419. parents: ["avian", "bear"]
  1420. },
  1421. "gryphdelphais": {
  1422. name: "Gryphdelphais",
  1423. parents: ["dolphin", "gryphon"]
  1424. },
  1425. "plush": {
  1426. name: "Plush",
  1427. parents: ["construct"]
  1428. },
  1429. "draiger": {
  1430. name: "Draiger",
  1431. parents: ["dragon","tiger"]
  1432. },
  1433. "foxsky": {
  1434. name: "Foxsky",
  1435. parents: ["fox", "husky"]
  1436. },
  1437. "umbreon": {
  1438. name: "Umbreon",
  1439. parents: ["eeveelution"]
  1440. },
  1441. "slime-dragon": {
  1442. name: "Slime Dragon",
  1443. parents: ["dragon", "goo"]
  1444. },
  1445. "enderman": {
  1446. name: "Enderman",
  1447. parents: ["monster"]
  1448. },
  1449. "gremlin": {
  1450. name: "Gremlin",
  1451. parents: ["monster"]
  1452. },
  1453. "dragonsune": {
  1454. name: "Dragonsune",
  1455. parents: ["dragon", "kitsune"]
  1456. },
  1457. "ghost": {
  1458. name: "Ghost",
  1459. parents: ["supernatural"]
  1460. },
  1461. "false-vampire-bat": {
  1462. name: "False Vampire Bat",
  1463. parents: ["bat"]
  1464. },
  1465. "succubus": {
  1466. name: "Succubus",
  1467. parents: ["demon"]
  1468. },
  1469. "mia": {
  1470. name: "Mia",
  1471. parents: ["canine"]
  1472. },
  1473. "rainbow": {
  1474. name: "Rainbow",
  1475. parents: ["monster"]
  1476. },
  1477. "solgaleo": {
  1478. name: "Solgaleo",
  1479. parents: ["pokemon"]
  1480. },
  1481. "lucent-nargacuga": {
  1482. name: "Lucent Nargacuga",
  1483. parents: ["monster-hunter"]
  1484. },
  1485. "monster-hunter": {
  1486. name: "Monster Hunter",
  1487. parents: ["monster"]
  1488. },
  1489. "leviathan": {
  1490. "name": "Leviathan",
  1491. "url": "sea-monster"
  1492. },
  1493. "bull": {
  1494. name: "Bull",
  1495. parents: ["mammal"]
  1496. },
  1497. "tanuki": {
  1498. name: "Tanuki",
  1499. parents: ["monster"]
  1500. },
  1501. "chakat": {
  1502. name: "Chakat",
  1503. parents: ["cat"]
  1504. },
  1505. "hydra": {
  1506. name: "Hydra",
  1507. parents: ["monster"]
  1508. },
  1509. "zigzagoon": {
  1510. name: "Zigzagoon",
  1511. parents: ["raccoon", "pokemon"]
  1512. },
  1513. "vulture": {
  1514. name: "Vulture",
  1515. parents: ["avian"]
  1516. },
  1517. "eastern-dragon": {
  1518. name: "Eastern Dragon",
  1519. parents: ["dragon"]
  1520. },
  1521. "gryffon": {
  1522. name: "Gryffon",
  1523. parents: ["phoenix", "red-panda"]
  1524. },
  1525. "amtsvane": {
  1526. name: "Amtsvane",
  1527. parents: ["reptile"]
  1528. },
  1529. "kigavi": {
  1530. name: "Kigavi",
  1531. parents: ["avian"]
  1532. },
  1533. "turian": {
  1534. name: "Turian",
  1535. parents: ["avian"]
  1536. },
  1537. "zeraora": {
  1538. name: "Zeraora",
  1539. parents: ["pokemon", "cat"]
  1540. },
  1541. "sandshrew": {
  1542. name: "Sandshrew",
  1543. parents: ["pokemon", "pangolin"]
  1544. },
  1545. "valais-blacknose-sheep": {
  1546. name: "Valais Blacknose Sheep",
  1547. parents: ["sheep"]
  1548. },
  1549. "novaleit": {
  1550. name: "Novaleit",
  1551. parents: ["mammal"]
  1552. },
  1553. "dunnoh": {
  1554. name: "Dunnoh",
  1555. parents: ["mammal"]
  1556. },
  1557. "lunaral-dragon": {
  1558. name: "Lunaral Dragon",
  1559. parents: ["dragon"]
  1560. },
  1561. "arctic-wolf": {
  1562. name: "Arctic Wolf",
  1563. parents: ["wolf"]
  1564. },
  1565. "donkey": {
  1566. name: "Donkey",
  1567. parents: ["horse"]
  1568. },
  1569. "chinchilla": {
  1570. name: "Chinchilla",
  1571. parents: ["rodent"]
  1572. },
  1573. "felkin": {
  1574. name: "Felkin",
  1575. parents: ["dragon"]
  1576. },
  1577. "tykeriel": {
  1578. name: "Tykeriel",
  1579. parents: ["avian"]
  1580. },
  1581. "folf": {
  1582. name: "Folf",
  1583. parents: ["fox", "wolf"]
  1584. },
  1585. "pooltoy": {
  1586. name: "Pooltoy",
  1587. parents: ["construct"]
  1588. },
  1589. "demi": {
  1590. name: "Demi",
  1591. parents: ["human"]
  1592. },
  1593. "stegosaurus": {
  1594. name: "Stegosaurus",
  1595. parents: ["dinosaur"]
  1596. },
  1597. "computer-virus": {
  1598. name: "Computer Virus",
  1599. parents: ["program"]
  1600. },
  1601. "program": {
  1602. name: "Program",
  1603. parents: ["construct"]
  1604. },
  1605. "space-springhare": {
  1606. name: "Space Springhare",
  1607. parents: ["hare"]
  1608. },
  1609. "river-drake": {
  1610. name: "River Drake",
  1611. parents: ["dragon"]
  1612. },
  1613. "djinn": {
  1614. "name": "Djinn",
  1615. "url": "supernatural"
  1616. },
  1617. "supernatural": {
  1618. name: "Supernatural",
  1619. parents: ["monster"]
  1620. },
  1621. "grasshopper-mouse": {
  1622. name: "Grasshopper Mouse",
  1623. parents: ["mouse"]
  1624. },
  1625. "somali-cat": {
  1626. name: "Somali Cat",
  1627. parents: ["cat"]
  1628. },
  1629. "minccino": {
  1630. name: "Minccino",
  1631. parents: ["pokemon", "chinchilla"]
  1632. },
  1633. "pine-marten": {
  1634. name: "Pine Marten",
  1635. parents: ["marten"]
  1636. },
  1637. "marten": {
  1638. name: "Marten",
  1639. parents: ["mustelid"]
  1640. },
  1641. "mustelid": {
  1642. name: "Mustelid",
  1643. parents: ["mammal"]
  1644. },
  1645. "caribou": {
  1646. name: "Caribou",
  1647. parents: ["deer"]
  1648. },
  1649. "gnoll": {
  1650. name: "Gnoll",
  1651. parents: ["hyena", "monster"]
  1652. },
  1653. "peacekeeper": {
  1654. name: "Peacekeeper",
  1655. parents: ["human"]
  1656. },
  1657. "river-otter": {
  1658. name: "River Otter",
  1659. parents: ["otter"]
  1660. },
  1661. "dhole": {
  1662. name: "Dhole",
  1663. parents: ["canine"]
  1664. },
  1665. "springbok": {
  1666. name: "Springbok",
  1667. parents: ["antelope"]
  1668. },
  1669. "marsupial": {
  1670. name: "Marsupial",
  1671. parents: ["mammal"]
  1672. },
  1673. "townsend-big-eared-bat": {
  1674. name: "Townsend Big-eared Bat",
  1675. parents: ["bat"]
  1676. },
  1677. "squirrel": {
  1678. name: "Squirrel",
  1679. parents: ["rodent"]
  1680. },
  1681. "magpie": {
  1682. name: "Magpie",
  1683. parents: ["corvid"]
  1684. },
  1685. "civet": {
  1686. name: "Civet",
  1687. parents: ["feliform"]
  1688. },
  1689. "feliform": {
  1690. name: "Feliform",
  1691. parents: ["mammal"]
  1692. },
  1693. "tiefling": {
  1694. name: "Tiefling",
  1695. parents: ["devil"]
  1696. },
  1697. "devil": {
  1698. name: "Devil",
  1699. parents: ["supernatural"]
  1700. },
  1701. "sika-deer": {
  1702. name: "Sika Deer",
  1703. parents: ["deer"]
  1704. },
  1705. "vaporeon": {
  1706. name: "Vaporeon",
  1707. parents: ["eeveelution"]
  1708. },
  1709. "leafeon": {
  1710. name: "Leafeon",
  1711. parents: ["eeveelution"]
  1712. },
  1713. "jolteon": {
  1714. name: "Jolteon",
  1715. parents: ["eeveelution"]
  1716. },
  1717. "spireborn": {
  1718. name: "Spireborn",
  1719. parents: ["zorgoia"]
  1720. },
  1721. "vampire": {
  1722. name: "Vampire",
  1723. parents: ["monster"]
  1724. },
  1725. "extraplanar": {
  1726. name: "Extraplanar",
  1727. parents: []
  1728. },
  1729. "goo": {
  1730. name: "Goo",
  1731. parents: []
  1732. },
  1733. "skink": {
  1734. name: "Skink",
  1735. parents: ["lizard"]
  1736. },
  1737. "bat-eared-fox": {
  1738. name: "Bat-eared Fox",
  1739. parents: ["fox"]
  1740. },
  1741. "belted-kingfisher": {
  1742. name: "Belted Kingfisher",
  1743. parents: ["avian"]
  1744. },
  1745. "omnifalcon": {
  1746. name: "Omnifalcon",
  1747. parents: ["gryphon", "falcon", "harpy-eagle"]
  1748. },
  1749. "falcon": {
  1750. name: "Falcon",
  1751. parents: ["avian"]
  1752. },
  1753. "avali": {
  1754. name: "Avali",
  1755. parents: ["avian", "alien"]
  1756. },
  1757. "arctic-fox": {
  1758. name: "Arctic Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "snow-tiger": {
  1762. name: "Snow Tiger",
  1763. parents: ["tiger"]
  1764. },
  1765. "marble-fox": {
  1766. name: "Marble Fox",
  1767. parents: ["fox"]
  1768. },
  1769. "king-wickerbeast": {
  1770. name: "King Wickerbeast",
  1771. parents: ["wickerbeast"]
  1772. },
  1773. "wickerbeast": {
  1774. name: "Wickerbeast",
  1775. parents: ["mammal"]
  1776. },
  1777. "european-polecat": {
  1778. name: "European Polecat",
  1779. parents: ["mustelid"]
  1780. },
  1781. "teshari": {
  1782. name: "Teshari",
  1783. parents: ["avian", "raptor"]
  1784. },
  1785. "alicorn": {
  1786. name: "Alicorn",
  1787. parents: ["horse"]
  1788. },
  1789. "atlas-moth": {
  1790. name: "Atlas Moth",
  1791. parents: ["moth"]
  1792. },
  1793. "owlbear": {
  1794. name: "Owlbear",
  1795. parents: ["owl", "bear", "monster"]
  1796. },
  1797. "owl": {
  1798. name: "Owl",
  1799. parents: ["avian"]
  1800. },
  1801. "silvertongue": {
  1802. name: "Silvertongue",
  1803. parents: ["reptile"]
  1804. },
  1805. "ahuizotl": {
  1806. name: "Ahuizotl",
  1807. parents: ["monster"]
  1808. },
  1809. "ender-dragon": {
  1810. name: "Ender Dragon",
  1811. parents: ["dragon"]
  1812. },
  1813. "bruhathkayosaurus": {
  1814. name: "Bruhathkayosaurus",
  1815. parents: ["sauropod"]
  1816. },
  1817. "sauropod": {
  1818. name: "Sauropod",
  1819. parents: ["dinosaur"]
  1820. },
  1821. "black-sable-antelope": {
  1822. name: "Black Sable Antelope",
  1823. parents: ["antelope"]
  1824. },
  1825. "slime": {
  1826. name: "Slime",
  1827. parents: ["goo"]
  1828. },
  1829. "utahraptor": {
  1830. name: "Utahraptor",
  1831. parents: ["raptor"]
  1832. },
  1833. "indian-giant-squirrel": {
  1834. name: "Indian Giant Squirrel",
  1835. parents: ["squirrel"]
  1836. },
  1837. "golden-retriever": {
  1838. name: "Golden Retriever",
  1839. parents: ["dog"]
  1840. },
  1841. "triceratops": {
  1842. name: "Triceratops",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "drake": {
  1846. name: "Drake",
  1847. parents: ["dragon"]
  1848. },
  1849. "okapi": {
  1850. name: "Okapi",
  1851. parents: ["giraffe"]
  1852. },
  1853. "arctic-hare": {
  1854. name: "Arctic Hare",
  1855. parents: ["hare"]
  1856. },
  1857. "hare": {
  1858. name: "Hare",
  1859. parents: ["leporidae"]
  1860. },
  1861. "leporidae": {
  1862. name: "Leporidae",
  1863. parents: ["mammal"]
  1864. },
  1865. "leopard-gecko": {
  1866. name: "Leopard Gecko",
  1867. parents: ["gecko"]
  1868. },
  1869. "dreamspawn": {
  1870. name: "Dreamspawn",
  1871. parents: ["illusion"]
  1872. },
  1873. "illusion": {
  1874. name: "Illusion",
  1875. parents: []
  1876. },
  1877. "purrloin": {
  1878. name: "Purrloin",
  1879. parents: ["cat", "pokemon"]
  1880. },
  1881. "noivern": {
  1882. name: "Noivern",
  1883. parents: ["bat", "dragon", "pokemon"]
  1884. },
  1885. "hedgehog": {
  1886. name: "Hedgehog",
  1887. parents: ["mammal"]
  1888. },
  1889. "liger": {
  1890. name: "Liger",
  1891. parents: ["lion", "tiger", "hybrid"]
  1892. },
  1893. "hybrid": {
  1894. name: "Hybrid",
  1895. parents: []
  1896. },
  1897. "drider": {
  1898. name: "Drider",
  1899. parents: ["spider"]
  1900. },
  1901. "sabresune": {
  1902. name: "Sabresune",
  1903. parents: ["kitsune", "sabertooth-tiger"]
  1904. },
  1905. "ditto": {
  1906. name: "Ditto",
  1907. parents: ["pokemon", "goo"]
  1908. },
  1909. "amogus": {
  1910. name: "Amogus",
  1911. parents: ["deity"]
  1912. },
  1913. "ferret": {
  1914. name: "Ferret",
  1915. parents: ["mustelid"]
  1916. },
  1917. "guinea-pig": {
  1918. name: "Guinea Pig",
  1919. parents: ["rodent"]
  1920. },
  1921. "viper": {
  1922. name: "Viper",
  1923. parents: ["snake"]
  1924. },
  1925. "cinderace": {
  1926. name: "Cinderace",
  1927. parents: ["pokemon", "rabbit"]
  1928. },
  1929. "caudin": {
  1930. name: "Caudin",
  1931. parents: ["dragon"]
  1932. },
  1933. "red-winged-blackbird": {
  1934. name: "Red-Winged Blackbird",
  1935. parents: ["avian"]
  1936. },
  1937. "hooded-wheater": {
  1938. name: "Hooded Wheater",
  1939. parents: ["passerine"]
  1940. },
  1941. "passerine": {
  1942. name: "Passerine",
  1943. parents: ["avian"]
  1944. },
  1945. }
  1946. //species
  1947. function getSpeciesInfo(speciesList) {
  1948. let result = new Set();
  1949. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1950. result.add(entry)
  1951. });
  1952. return Array.from(result);
  1953. };
  1954. function getSpeciesInfoHelper(species) {
  1955. if (!speciesData[species]) {
  1956. console.warn(species + " doesn't exist");
  1957. return [];
  1958. }
  1959. if (speciesData[species].parents) {
  1960. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1961. } else {
  1962. return [species];
  1963. }
  1964. }
  1965. characterMakers.push(() => makeCharacter(
  1966. {
  1967. name: "Fen",
  1968. species: ["crux"],
  1969. description: {
  1970. title: "Bio",
  1971. text: "Very furry. Sheds on everything."
  1972. },
  1973. tags: [
  1974. "anthro",
  1975. "goo"
  1976. ]
  1977. },
  1978. {
  1979. front: {
  1980. height: math.unit(12, "feet"),
  1981. weight: math.unit(2400, "lb"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/fen/front.svg",
  1985. extra: 1804/1562,
  1986. bottom: 205/2009
  1987. }
  1988. },
  1989. diving: {
  1990. height: math.unit(4.9, "meters"),
  1991. weight: math.unit(2400, "lb"),
  1992. name: "Diving",
  1993. image: {
  1994. source: "./media/characters/fen/diving.svg"
  1995. }
  1996. },
  1997. goo: {
  1998. height: math.unit(12, "feet"),
  1999. weight: math.unit(3600, "lb"),
  2000. volume: math.unit(1000, "liters"),
  2001. capacity: math.unit(6, "people"),
  2002. name: "Goo",
  2003. image: {
  2004. source: "./media/characters/fen/goo.svg",
  2005. extra: 1307/1071,
  2006. bottom: 134/1441
  2007. }
  2008. },
  2009. maw: {
  2010. height: math.unit(5.03, "feet"),
  2011. name: "Maw",
  2012. image: {
  2013. source: "./media/characters/fen/maw.svg"
  2014. }
  2015. },
  2016. gooCeiling: {
  2017. height: math.unit(6.6, "feet"),
  2018. weight: math.unit(3000, "lb"),
  2019. volume: math.unit(1000, "liters"),
  2020. capacity: math.unit(6, "people"),
  2021. name: "Goo (Ceiling)",
  2022. image: {
  2023. source: "./media/characters/fen/goo-ceiling.svg"
  2024. }
  2025. },
  2026. back: {
  2027. height: math.unit(12, "feet"),
  2028. weight: math.unit(2400, "lb"),
  2029. name: "Back",
  2030. image: {
  2031. source: "./media/characters/fen/back.svg",
  2032. },
  2033. info: {
  2034. description: {
  2035. mode: "append",
  2036. text: "\n\nHe is not currently looking at you."
  2037. }
  2038. }
  2039. },
  2040. full: {
  2041. height: math.unit(1.85, "meter"),
  2042. weight: math.unit(3200, "lb"),
  2043. name: "Full",
  2044. image: {
  2045. source: "./media/characters/fen/full.svg",
  2046. extra: 1133/859,
  2047. bottom: 145/1278
  2048. },
  2049. info: {
  2050. description: {
  2051. mode: "append",
  2052. text: "\n\nMunch."
  2053. }
  2054. }
  2055. },
  2056. gooLounging: {
  2057. height: math.unit(4.53, "feet"),
  2058. weight: math.unit(3000, "lb"),
  2059. capacity: math.unit(6, "people"),
  2060. name: "Goo (Lounging)",
  2061. image: {
  2062. source: "./media/characters/fen/goo-lounging.svg",
  2063. bottom: 116 / 613
  2064. }
  2065. },
  2066. lounging: {
  2067. height: math.unit(10.52, "feet"),
  2068. weight: math.unit(2400, "lb"),
  2069. name: "Lounging",
  2070. image: {
  2071. source: "./media/characters/fen/lounging.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Small",
  2078. height: math.unit(2.2428, "meter")
  2079. },
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(12, "feet"),
  2083. default: true,
  2084. },
  2085. {
  2086. name: "Big",
  2087. height: math.unit(20, "feet")
  2088. },
  2089. {
  2090. name: "Minimacro",
  2091. height: math.unit(40, "feet"),
  2092. info: {
  2093. description: {
  2094. mode: "append",
  2095. text: "\n\nTOO DAMN BIG"
  2096. }
  2097. }
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(100, "feet"),
  2102. info: {
  2103. description: {
  2104. mode: "append",
  2105. text: "\n\nTOO DAMN BIG"
  2106. }
  2107. }
  2108. },
  2109. {
  2110. name: "Megamacro",
  2111. height: math.unit(2, "miles")
  2112. },
  2113. {
  2114. name: "Gigamacro",
  2115. height: math.unit(10, "earths")
  2116. },
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2121. {
  2122. front: {
  2123. height: math.unit(183, "cm"),
  2124. weight: math.unit(80, "kg"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/sofia-fluttertail/front.svg",
  2128. bottom: 0.01,
  2129. extra: 2154 / 2081
  2130. }
  2131. },
  2132. frontAlt: {
  2133. height: math.unit(183, "cm"),
  2134. weight: math.unit(80, "kg"),
  2135. name: "Front (alt)",
  2136. image: {
  2137. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2138. }
  2139. },
  2140. back: {
  2141. height: math.unit(183, "cm"),
  2142. weight: math.unit(80, "kg"),
  2143. name: "Back",
  2144. image: {
  2145. source: "./media/characters/sofia-fluttertail/back.svg"
  2146. }
  2147. },
  2148. kneeling: {
  2149. height: math.unit(125, "cm"),
  2150. weight: math.unit(80, "kg"),
  2151. name: "Kneeling",
  2152. image: {
  2153. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2154. extra: 1033 / 977,
  2155. bottom: 23.7 / 1057
  2156. }
  2157. },
  2158. maw: {
  2159. height: math.unit(183 / 5, "cm"),
  2160. name: "Maw",
  2161. image: {
  2162. source: "./media/characters/sofia-fluttertail/maw.svg"
  2163. }
  2164. },
  2165. mawcloseup: {
  2166. height: math.unit(183 / 5 * 0.41, "cm"),
  2167. name: "Maw (Closeup)",
  2168. image: {
  2169. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2170. }
  2171. },
  2172. paws: {
  2173. height: math.unit(1.17, "feet"),
  2174. name: "Paws",
  2175. image: {
  2176. source: "./media/characters/sofia-fluttertail/paws.svg",
  2177. extra: 851 / 851,
  2178. bottom: 17 / 868
  2179. }
  2180. },
  2181. },
  2182. [
  2183. {
  2184. name: "Normal",
  2185. height: math.unit(1.83, "meter")
  2186. },
  2187. {
  2188. name: "Size Thief",
  2189. height: math.unit(18, "feet")
  2190. },
  2191. {
  2192. name: "50 Foot Collie",
  2193. height: math.unit(50, "feet")
  2194. },
  2195. {
  2196. name: "Macro",
  2197. height: math.unit(96, "feet"),
  2198. default: true
  2199. },
  2200. {
  2201. name: "Megamerger",
  2202. height: math.unit(650, "feet")
  2203. },
  2204. ]
  2205. ))
  2206. characterMakers.push(() => makeCharacter(
  2207. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2208. {
  2209. front: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Front",
  2213. image: {
  2214. source: "./media/characters/march/front.svg",
  2215. extra: 1992/1851,
  2216. bottom: 39/2031
  2217. }
  2218. },
  2219. foot: {
  2220. height: math.unit(0.9, "feet"),
  2221. name: "Foot",
  2222. image: {
  2223. source: "./media/characters/march/foot.svg"
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7.9, "feet")
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(220, "meters")
  2235. },
  2236. {
  2237. name: "Megamacro",
  2238. height: math.unit(2.98, "km"),
  2239. default: true
  2240. },
  2241. {
  2242. name: "Gigamacro",
  2243. height: math.unit(15963, "km")
  2244. },
  2245. {
  2246. name: "Teramacro",
  2247. height: math.unit(2980000000, "km")
  2248. },
  2249. {
  2250. name: "Examacro",
  2251. height: math.unit(250, "parsecs")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(6, "feet"),
  2260. weight: math.unit(60, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/noir/front.svg",
  2264. extra: 1,
  2265. bottom: 0.032
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Normal",
  2272. height: math.unit(6.6, "feet")
  2273. },
  2274. {
  2275. name: "Macro",
  2276. height: math.unit(500, "feet")
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(2.5, "km"),
  2281. default: true
  2282. },
  2283. {
  2284. name: "Gigamacro",
  2285. height: math.unit(22500, "km")
  2286. },
  2287. {
  2288. name: "Teramacro",
  2289. height: math.unit(2500000000, "km")
  2290. },
  2291. {
  2292. name: "Examacro",
  2293. height: math.unit(200, "parsecs")
  2294. },
  2295. ]
  2296. ))
  2297. characterMakers.push(() => makeCharacter(
  2298. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2299. {
  2300. front: {
  2301. height: math.unit(7, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Front",
  2304. image: {
  2305. source: "./media/characters/okuri/front.svg",
  2306. extra: 739/665,
  2307. bottom: 39/778
  2308. }
  2309. },
  2310. back: {
  2311. height: math.unit(7, "feet"),
  2312. weight: math.unit(100, "kg"),
  2313. name: "Back",
  2314. image: {
  2315. source: "./media/characters/okuri/back.svg",
  2316. extra: 734/653,
  2317. bottom: 13/747
  2318. }
  2319. },
  2320. sitting: {
  2321. height: math.unit(2.95, "feet"),
  2322. weight: math.unit(100, "kg"),
  2323. name: "Sitting",
  2324. image: {
  2325. source: "./media/characters/okuri/sitting.svg",
  2326. extra: 370/318,
  2327. bottom: 99/469
  2328. }
  2329. },
  2330. },
  2331. [
  2332. {
  2333. name: "Smallest",
  2334. height: math.unit(5 + 2/12, "feet")
  2335. },
  2336. {
  2337. name: "Smaller",
  2338. height: math.unit(300, "feet")
  2339. },
  2340. {
  2341. name: "Small",
  2342. height: math.unit(1000, "feet")
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(1, "mile")
  2347. },
  2348. {
  2349. name: "Mega Macro (Small)",
  2350. height: math.unit(20, "km")
  2351. },
  2352. {
  2353. name: "Mega Macro (Large)",
  2354. height: math.unit(600, "km")
  2355. },
  2356. {
  2357. name: "Giga Macro",
  2358. height: math.unit(10000, "km")
  2359. },
  2360. {
  2361. name: "Normal",
  2362. height: math.unit(577560, "km"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Large",
  2367. height: math.unit(4, "galaxies")
  2368. },
  2369. {
  2370. name: "Largest",
  2371. height: math.unit(15, "multiverses")
  2372. },
  2373. ]
  2374. ))
  2375. characterMakers.push(() => makeCharacter(
  2376. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2377. {
  2378. front: {
  2379. height: math.unit(7, "feet"),
  2380. weight: math.unit(100, "kg"),
  2381. name: "Front",
  2382. image: {
  2383. source: "./media/characters/manny/front.svg",
  2384. extra: 1,
  2385. bottom: 0.06
  2386. }
  2387. },
  2388. back: {
  2389. height: math.unit(7, "feet"),
  2390. weight: math.unit(100, "kg"),
  2391. name: "Back",
  2392. image: {
  2393. source: "./media/characters/manny/back.svg",
  2394. extra: 1,
  2395. bottom: 0.014
  2396. }
  2397. },
  2398. },
  2399. [
  2400. {
  2401. name: "Normal",
  2402. height: math.unit(7, "feet"),
  2403. },
  2404. {
  2405. name: "Macro",
  2406. height: math.unit(78, "feet"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Macro+",
  2411. height: math.unit(300, "meters")
  2412. },
  2413. {
  2414. name: "Macro++",
  2415. height: math.unit(2400, "meters")
  2416. },
  2417. {
  2418. name: "Megamacro",
  2419. height: math.unit(5167, "meters")
  2420. },
  2421. {
  2422. name: "Gigamacro",
  2423. height: math.unit(41769, "miles")
  2424. },
  2425. ]
  2426. ))
  2427. characterMakers.push(() => makeCharacter(
  2428. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2429. {
  2430. front: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(100, "kg"),
  2433. name: "Front",
  2434. image: {
  2435. source: "./media/characters/adake/front-1.svg"
  2436. }
  2437. },
  2438. frontAlt: {
  2439. height: math.unit(7, "feet"),
  2440. weight: math.unit(100, "kg"),
  2441. name: "Front (Alt)",
  2442. image: {
  2443. source: "./media/characters/adake/front-2.svg",
  2444. extra: 1,
  2445. bottom: 0.01
  2446. }
  2447. },
  2448. back: {
  2449. height: math.unit(7, "feet"),
  2450. weight: math.unit(100, "kg"),
  2451. name: "Back",
  2452. image: {
  2453. source: "./media/characters/adake/back.svg",
  2454. }
  2455. },
  2456. kneel: {
  2457. height: math.unit(5.385, "feet"),
  2458. weight: math.unit(100, "kg"),
  2459. name: "Kneeling",
  2460. image: {
  2461. source: "./media/characters/adake/kneel.svg",
  2462. bottom: 0.052
  2463. }
  2464. },
  2465. },
  2466. [
  2467. {
  2468. name: "Normal",
  2469. height: math.unit(7, "feet"),
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(78, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Macro+",
  2478. height: math.unit(300, "meters")
  2479. },
  2480. {
  2481. name: "Macro++",
  2482. height: math.unit(2400, "meters")
  2483. },
  2484. {
  2485. name: "Megamacro",
  2486. height: math.unit(5167, "meters")
  2487. },
  2488. {
  2489. name: "Gigamacro",
  2490. height: math.unit(41769, "miles")
  2491. },
  2492. ]
  2493. ))
  2494. characterMakers.push(() => makeCharacter(
  2495. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2496. {
  2497. front: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Front",
  2501. image: {
  2502. source: "./media/characters/elijah/front.svg",
  2503. extra: 858 / 830,
  2504. bottom: 95.5 / 953.8559
  2505. }
  2506. },
  2507. back: {
  2508. height: math.unit(1.65, "meters"),
  2509. weight: math.unit(50, "kg"),
  2510. name: "Back",
  2511. image: {
  2512. source: "./media/characters/elijah/back.svg",
  2513. extra: 895 / 850,
  2514. bottom: 5.3 / 897.956
  2515. }
  2516. },
  2517. frontNsfw: {
  2518. height: math.unit(1.65, "meters"),
  2519. weight: math.unit(50, "kg"),
  2520. name: "Front (NSFW)",
  2521. image: {
  2522. source: "./media/characters/elijah/front-nsfw.svg",
  2523. extra: 858 / 830,
  2524. bottom: 95.5 / 953.8559
  2525. }
  2526. },
  2527. backNsfw: {
  2528. height: math.unit(1.65, "meters"),
  2529. weight: math.unit(50, "kg"),
  2530. name: "Back (NSFW)",
  2531. image: {
  2532. source: "./media/characters/elijah/back-nsfw.svg",
  2533. extra: 895 / 850,
  2534. bottom: 5.3 / 897.956
  2535. }
  2536. },
  2537. dick: {
  2538. height: math.unit(1, "feet"),
  2539. name: "Dick",
  2540. image: {
  2541. source: "./media/characters/elijah/dick.svg"
  2542. }
  2543. },
  2544. beakOpen: {
  2545. height: math.unit(1.25, "feet"),
  2546. name: "Beak (Open)",
  2547. image: {
  2548. source: "./media/characters/elijah/beak-open.svg"
  2549. }
  2550. },
  2551. beakShut: {
  2552. height: math.unit(1.25, "feet"),
  2553. name: "Beak (Shut)",
  2554. image: {
  2555. source: "./media/characters/elijah/beak-shut.svg"
  2556. }
  2557. },
  2558. footFlexing: {
  2559. height: math.unit(1.61, "feet"),
  2560. name: "Foot (Flexing)",
  2561. image: {
  2562. source: "./media/characters/elijah/foot-flexing.svg"
  2563. }
  2564. },
  2565. footStepping: {
  2566. height: math.unit(1.44, "feet"),
  2567. name: "Foot (Stepping)",
  2568. image: {
  2569. source: "./media/characters/elijah/foot-stepping.svg"
  2570. }
  2571. },
  2572. plantigradeLeg: {
  2573. height: math.unit(2.34, "feet"),
  2574. name: "Plantigrade Leg",
  2575. image: {
  2576. source: "./media/characters/elijah/plantigrade-leg.svg"
  2577. }
  2578. },
  2579. plantigradeFootLeft: {
  2580. height: math.unit(0.9, "feet"),
  2581. name: "Plantigrade Foot (Left)",
  2582. image: {
  2583. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2584. }
  2585. },
  2586. plantigradeFootRight: {
  2587. height: math.unit(0.9, "feet"),
  2588. name: "Plantigrade Foot (Right)",
  2589. image: {
  2590. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2591. }
  2592. },
  2593. },
  2594. [
  2595. {
  2596. name: "Normal",
  2597. height: math.unit(1.65, "meters")
  2598. },
  2599. {
  2600. name: "Macro",
  2601. height: math.unit(55, "meters"),
  2602. default: true
  2603. },
  2604. {
  2605. name: "Macro+",
  2606. height: math.unit(105, "meters")
  2607. },
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/rai/front.svg",
  2619. extra: 1802/1696,
  2620. bottom: 68/1870
  2621. }
  2622. },
  2623. frontDressed: {
  2624. height: math.unit(7 + 2/12, "feet"),
  2625. weight: math.unit(320, "kg"),
  2626. name: "Front (Dressed)",
  2627. image: {
  2628. source: "./media/characters/rai/front-dressed.svg",
  2629. extra: 1802/1696,
  2630. bottom: 68/1870
  2631. }
  2632. },
  2633. side: {
  2634. height: math.unit(7 + 2/12, "feet"),
  2635. weight: math.unit(320, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/rai/side.svg",
  2639. extra: 1789/1710,
  2640. bottom: 115/1904
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(7 + 2/12, "feet"),
  2645. weight: math.unit(320, "kg"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/rai/back.svg",
  2649. extra: 1770/1707,
  2650. bottom: 28/1798
  2651. }
  2652. },
  2653. feral: {
  2654. height: math.unit(9.5, "feet"),
  2655. weight: math.unit(640, "kg"),
  2656. name: "Feral",
  2657. image: {
  2658. source: "./media/characters/rai/feral.svg",
  2659. extra: 945/553,
  2660. bottom: 176/1121
  2661. }
  2662. },
  2663. dragon: {
  2664. height: math.unit(23, "feet"),
  2665. weight: math.unit(50000, "lb"),
  2666. name: "Dragon",
  2667. image: {
  2668. source: "./media/characters/rai/dragon.svg",
  2669. extra: 2498 / 2030,
  2670. bottom: 85.2 / 2584
  2671. }
  2672. },
  2673. maw: {
  2674. height: math.unit(1.69, "feet"),
  2675. name: "Maw",
  2676. image: {
  2677. source: "./media/characters/rai/maw.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Normal",
  2684. height: math.unit(7 + 2/12, "feet")
  2685. },
  2686. {
  2687. name: "Big",
  2688. height: math.unit(11, "feet")
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(302, "feet"),
  2693. default: true
  2694. },
  2695. ]
  2696. ))
  2697. characterMakers.push(() => makeCharacter(
  2698. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2699. {
  2700. frontDressed: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Front (Dressed)",
  2704. image: {
  2705. source: "./media/characters/jazzy/front-dressed.svg",
  2706. extra: 2738 / 2651,
  2707. bottom: 41.8 / 2786
  2708. }
  2709. },
  2710. backDressed: {
  2711. height: math.unit(216, "feet"),
  2712. weight: math.unit(7000000, "lb"),
  2713. name: "Back (Dressed)",
  2714. image: {
  2715. source: "./media/characters/jazzy/back-dressed.svg",
  2716. extra: 2775 / 2673,
  2717. bottom: 36.8 / 2817
  2718. }
  2719. },
  2720. front: {
  2721. height: math.unit(216, "feet"),
  2722. weight: math.unit(7000000, "lb"),
  2723. name: "Front",
  2724. image: {
  2725. source: "./media/characters/jazzy/front.svg",
  2726. extra: 2738 / 2651,
  2727. bottom: 41.8 / 2786
  2728. }
  2729. },
  2730. back: {
  2731. height: math.unit(216, "feet"),
  2732. weight: math.unit(7000000, "lb"),
  2733. name: "Back",
  2734. image: {
  2735. source: "./media/characters/jazzy/back.svg",
  2736. extra: 2775 / 2673,
  2737. bottom: 36.8 / 2817
  2738. }
  2739. },
  2740. maw: {
  2741. height: math.unit(20, "feet"),
  2742. name: "Maw",
  2743. image: {
  2744. source: "./media/characters/jazzy/maw.svg"
  2745. }
  2746. },
  2747. paws: {
  2748. height: math.unit(27.5, "feet"),
  2749. name: "Paws",
  2750. image: {
  2751. source: "./media/characters/jazzy/paws.svg"
  2752. }
  2753. },
  2754. eye: {
  2755. height: math.unit(4.4, "feet"),
  2756. name: "Eye",
  2757. image: {
  2758. source: "./media/characters/jazzy/eye.svg"
  2759. }
  2760. },
  2761. droneOffense: {
  2762. height: math.unit(9.5, "inches"),
  2763. name: "Drone (Offense)",
  2764. image: {
  2765. source: "./media/characters/jazzy/drone-offense.svg"
  2766. }
  2767. },
  2768. droneRecon: {
  2769. height: math.unit(9.5, "inches"),
  2770. name: "Drone (Recon)",
  2771. image: {
  2772. source: "./media/characters/jazzy/drone-recon.svg"
  2773. }
  2774. },
  2775. droneDefense: {
  2776. height: math.unit(9.5, "inches"),
  2777. name: "Drone (Defense)",
  2778. image: {
  2779. source: "./media/characters/jazzy/drone-defense.svg"
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(216, "feet"),
  2787. default: true
  2788. },
  2789. ]
  2790. ))
  2791. characterMakers.push(() => makeCharacter(
  2792. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2793. {
  2794. front: {
  2795. height: math.unit(9 + 6/12, "feet"),
  2796. weight: math.unit(700, "lb"),
  2797. name: "Front",
  2798. image: {
  2799. source: "./media/characters/flamm/front.svg",
  2800. extra: 1751/1632,
  2801. bottom: 46/1797
  2802. }
  2803. },
  2804. buff: {
  2805. height: math.unit(9 + 6/12, "feet"),
  2806. weight: math.unit(950, "lb"),
  2807. name: "Buff",
  2808. image: {
  2809. source: "./media/characters/flamm/buff.svg",
  2810. extra: 3018/2874,
  2811. bottom: 221/3239
  2812. }
  2813. },
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(9.5, "feet")
  2819. },
  2820. {
  2821. name: "Macro",
  2822. height: math.unit(200, "feet"),
  2823. default: true
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(5 + 3/12, "feet"),
  2832. weight: math.unit(60, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/zephiro/front.svg",
  2836. extra: 2309 / 2162,
  2837. bottom: 0.069
  2838. }
  2839. },
  2840. side: {
  2841. height: math.unit(5 + 3/12, "feet"),
  2842. weight: math.unit(60, "kg"),
  2843. name: "Side",
  2844. image: {
  2845. source: "./media/characters/zephiro/side.svg",
  2846. extra: 2403 / 2279,
  2847. bottom: 0.015
  2848. }
  2849. },
  2850. back: {
  2851. height: math.unit(5 + 3/12, "feet"),
  2852. weight: math.unit(60, "kg"),
  2853. name: "Back",
  2854. image: {
  2855. source: "./media/characters/zephiro/back.svg",
  2856. extra: 2373 / 2244,
  2857. bottom: 0.013
  2858. }
  2859. },
  2860. hand: {
  2861. height: math.unit(0.68, "feet"),
  2862. name: "Hand",
  2863. image: {
  2864. source: "./media/characters/zephiro/hand.svg"
  2865. }
  2866. },
  2867. paw: {
  2868. height: math.unit(1, "feet"),
  2869. name: "Paw",
  2870. image: {
  2871. source: "./media/characters/zephiro/paw.svg"
  2872. }
  2873. },
  2874. beans: {
  2875. height: math.unit(0.93, "feet"),
  2876. name: "Beans",
  2877. image: {
  2878. source: "./media/characters/zephiro/beans.svg"
  2879. }
  2880. },
  2881. },
  2882. [
  2883. {
  2884. name: "Micro",
  2885. height: math.unit(3, "inches")
  2886. },
  2887. {
  2888. name: "Normal",
  2889. height: math.unit(5 + 3 / 12, "feet"),
  2890. default: true
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(118, "feet")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2900. {
  2901. front: {
  2902. height: math.unit(5, "feet"),
  2903. weight: math.unit(90, "kg"),
  2904. name: "Front",
  2905. image: {
  2906. source: "./media/characters/fory/front.svg",
  2907. extra: 2862 / 2674,
  2908. bottom: 180 / 3043.8
  2909. }
  2910. },
  2911. back: {
  2912. height: math.unit(5, "feet"),
  2913. weight: math.unit(90, "kg"),
  2914. name: "Back",
  2915. image: {
  2916. source: "./media/characters/fory/back.svg",
  2917. extra: 2962 / 2791,
  2918. bottom: 106 / 3071.8
  2919. }
  2920. },
  2921. foot: {
  2922. height: math.unit(2.14, "feet"),
  2923. name: "Foot",
  2924. image: {
  2925. source: "./media/characters/fory/foot.svg"
  2926. }
  2927. },
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(5, "feet")
  2933. },
  2934. {
  2935. name: "Macro",
  2936. height: math.unit(50, "feet"),
  2937. default: true
  2938. },
  2939. {
  2940. name: "Megamacro",
  2941. height: math.unit(10, "miles")
  2942. },
  2943. {
  2944. name: "Gigamacro",
  2945. height: math.unit(5, "earths")
  2946. },
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2951. {
  2952. front: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(90, "kg"),
  2955. name: "Front",
  2956. image: {
  2957. source: "./media/characters/kurrikage/front.svg",
  2958. extra: 1845/1733,
  2959. bottom: 119/1964
  2960. }
  2961. },
  2962. back: {
  2963. height: math.unit(7, "feet"),
  2964. weight: math.unit(90, "kg"),
  2965. name: "Back",
  2966. image: {
  2967. source: "./media/characters/kurrikage/back.svg",
  2968. extra: 1790/1677,
  2969. bottom: 61/1851
  2970. }
  2971. },
  2972. dressed: {
  2973. height: math.unit(7, "feet"),
  2974. weight: math.unit(90, "kg"),
  2975. name: "Dressed",
  2976. image: {
  2977. source: "./media/characters/kurrikage/dressed.svg",
  2978. extra: 1845/1733,
  2979. bottom: 119/1964
  2980. }
  2981. },
  2982. foot: {
  2983. height: math.unit(1.5, "feet"),
  2984. name: "Foot",
  2985. image: {
  2986. source: "./media/characters/kurrikage/foot.svg"
  2987. }
  2988. },
  2989. staff: {
  2990. height: math.unit(6.7, "feet"),
  2991. name: "Staff",
  2992. image: {
  2993. source: "./media/characters/kurrikage/staff.svg"
  2994. }
  2995. },
  2996. peek: {
  2997. height: math.unit(1.05, "feet"),
  2998. name: "Peeking",
  2999. image: {
  3000. source: "./media/characters/kurrikage/peek.svg",
  3001. bottom: 0.08
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Normal",
  3008. height: math.unit(12, "feet"),
  3009. default: true
  3010. },
  3011. {
  3012. name: "Big",
  3013. height: math.unit(20, "feet")
  3014. },
  3015. {
  3016. name: "Macro",
  3017. height: math.unit(500, "feet")
  3018. },
  3019. {
  3020. name: "Megamacro",
  3021. height: math.unit(20, "miles")
  3022. },
  3023. ]
  3024. ))
  3025. characterMakers.push(() => makeCharacter(
  3026. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3027. {
  3028. front: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front",
  3032. image: {
  3033. source: "./media/characters/shingo/front.svg",
  3034. extra: 1900/1825,
  3035. bottom: 82/1982
  3036. }
  3037. },
  3038. side: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Side",
  3042. image: {
  3043. source: "./media/characters/shingo/side.svg",
  3044. extra: 1930/1865,
  3045. bottom: 16/1946
  3046. }
  3047. },
  3048. back: {
  3049. height: math.unit(6, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Back",
  3052. image: {
  3053. source: "./media/characters/shingo/back.svg",
  3054. extra: 1922/1852,
  3055. bottom: 16/1938
  3056. }
  3057. },
  3058. frontDressed: {
  3059. height: math.unit(6, "feet"),
  3060. weight: math.unit(150, "lb"),
  3061. name: "Front-dressed",
  3062. image: {
  3063. source: "./media/characters/shingo/front-dressed.svg",
  3064. extra: 1900/1825,
  3065. bottom: 82/1982
  3066. }
  3067. },
  3068. paw: {
  3069. height: math.unit(1.29, "feet"),
  3070. name: "Paw",
  3071. image: {
  3072. source: "./media/characters/shingo/paw.svg"
  3073. }
  3074. },
  3075. hand: {
  3076. height: math.unit(1.07, "feet"),
  3077. name: "Hand",
  3078. image: {
  3079. source: "./media/characters/shingo/hand.svg"
  3080. }
  3081. },
  3082. frontAlt: {
  3083. height: math.unit(6, "feet"),
  3084. weight: math.unit(75, "kg"),
  3085. name: "Front (Alt)",
  3086. image: {
  3087. source: "./media/characters/shingo/front-alt.svg",
  3088. extra: 3511 / 3338,
  3089. bottom: 0.005
  3090. }
  3091. },
  3092. frontAlt2: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(75, "kg"),
  3095. name: "Front (Alt 2)",
  3096. image: {
  3097. source: "./media/characters/shingo/front-alt-2.svg",
  3098. extra: 706/681,
  3099. bottom: 11/717
  3100. }
  3101. },
  3102. pawAlt: {
  3103. height: math.unit(1, "feet"),
  3104. name: "Paw (Alt)",
  3105. image: {
  3106. source: "./media/characters/shingo/paw-alt.svg"
  3107. }
  3108. },
  3109. },
  3110. [
  3111. {
  3112. name: "Micro",
  3113. height: math.unit(4, "inches")
  3114. },
  3115. {
  3116. name: "Normal",
  3117. height: math.unit(6, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(108, "feet")
  3123. },
  3124. {
  3125. name: "Macro+",
  3126. height: math.unit(1500, "feet")
  3127. },
  3128. ]
  3129. ))
  3130. characterMakers.push(() => makeCharacter(
  3131. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3132. {
  3133. side: {
  3134. height: math.unit(6, "feet"),
  3135. weight: math.unit(75, "kg"),
  3136. name: "Side",
  3137. image: {
  3138. source: "./media/characters/aigey/side.svg"
  3139. }
  3140. },
  3141. },
  3142. [
  3143. {
  3144. name: "Macro",
  3145. height: math.unit(200, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Megamacro",
  3150. height: math.unit(100, "miles")
  3151. },
  3152. ]
  3153. )
  3154. )
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/natasha/front.svg",
  3164. extra: 859 / 824,
  3165. bottom: 23 / 879.6
  3166. }
  3167. },
  3168. frontNsfw: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Front (NSFW)",
  3172. image: {
  3173. source: "./media/characters/natasha/front-nsfw.svg",
  3174. extra: 859 / 824,
  3175. bottom: 23 / 879.6
  3176. }
  3177. },
  3178. frontErect: {
  3179. height: math.unit(5 + 5 / 12, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Front (Erect)",
  3182. image: {
  3183. source: "./media/characters/natasha/front-erect.svg",
  3184. extra: 859 / 824,
  3185. bottom: 23 / 879.6
  3186. }
  3187. },
  3188. back: {
  3189. height: math.unit(5 + 5 / 12, "feet"),
  3190. weight: math.unit(75, "kg"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/natasha/back.svg",
  3194. extra: 887.9 / 852.6,
  3195. bottom: 9.7 / 896.4
  3196. }
  3197. },
  3198. backAlt: {
  3199. height: math.unit(5 + 5 / 12, "feet"),
  3200. weight: math.unit(75, "kg"),
  3201. name: "Back (Alt)",
  3202. image: {
  3203. source: "./media/characters/natasha/back-alt.svg",
  3204. extra: 1236.7 / 1192,
  3205. bottom: 22.3 / 1258.2
  3206. }
  3207. },
  3208. dick: {
  3209. height: math.unit(1.772, "feet"),
  3210. name: "Dick",
  3211. image: {
  3212. source: "./media/characters/natasha/dick.svg"
  3213. }
  3214. },
  3215. paw: {
  3216. height: math.unit(0.250, "meters"),
  3217. name: "Paw",
  3218. image: {
  3219. source: "./media/characters/natasha/paw.svg"
  3220. }
  3221. },
  3222. },
  3223. [
  3224. {
  3225. name: "Normal",
  3226. height: math.unit(5 + 5 / 12, "feet")
  3227. },
  3228. {
  3229. name: "Large",
  3230. height: math.unit(12, "feet")
  3231. },
  3232. {
  3233. name: "Macro",
  3234. height: math.unit(100, "feet"),
  3235. default: true
  3236. },
  3237. {
  3238. name: "Macro+",
  3239. height: math.unit(260, "feet")
  3240. },
  3241. {
  3242. name: "Macro++",
  3243. height: math.unit(1, "mile")
  3244. },
  3245. ]
  3246. ))
  3247. characterMakers.push(() => makeCharacter(
  3248. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3249. {
  3250. front: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(75, "kg"),
  3253. name: "Front",
  3254. image: {
  3255. source: "./media/characters/malik/front.svg"
  3256. }
  3257. },
  3258. side: {
  3259. height: math.unit(6, "feet"),
  3260. weight: math.unit(75, "kg"),
  3261. name: "Side",
  3262. image: {
  3263. source: "./media/characters/malik/side.svg",
  3264. extra: 1.1539
  3265. }
  3266. },
  3267. back: {
  3268. height: math.unit(6, "feet"),
  3269. weight: math.unit(75, "kg"),
  3270. name: "Back",
  3271. image: {
  3272. source: "./media/characters/malik/back.svg"
  3273. }
  3274. },
  3275. },
  3276. [
  3277. {
  3278. name: "Macro",
  3279. height: math.unit(156, "feet"),
  3280. default: true
  3281. },
  3282. {
  3283. name: "Macro+",
  3284. height: math.unit(1188, "feet")
  3285. },
  3286. ]
  3287. ))
  3288. characterMakers.push(() => makeCharacter(
  3289. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3290. {
  3291. front: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Front",
  3295. image: {
  3296. source: "./media/characters/sefer/front.svg",
  3297. extra: 848 / 659,
  3298. bottom: 28.3 / 876.442
  3299. }
  3300. },
  3301. back: {
  3302. height: math.unit(6, "feet"),
  3303. weight: math.unit(75, "kg"),
  3304. name: "Back",
  3305. image: {
  3306. source: "./media/characters/sefer/back.svg",
  3307. extra: 864 / 695,
  3308. bottom: 10 / 871
  3309. }
  3310. },
  3311. frontDressed: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(75, "kg"),
  3314. name: "Front (Dressed)",
  3315. image: {
  3316. source: "./media/characters/sefer/front-dressed.svg",
  3317. extra: 839 / 653,
  3318. bottom: 37.6 / 878
  3319. }
  3320. },
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(6, "feet"),
  3326. default: true
  3327. },
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3332. {
  3333. body: {
  3334. height: math.unit(2.2428, "meter"),
  3335. weight: math.unit(124.738, "kg"),
  3336. name: "Body",
  3337. image: {
  3338. extra: 1225 / 1050,
  3339. source: "./media/characters/north/front.svg"
  3340. }
  3341. }
  3342. },
  3343. [
  3344. {
  3345. name: "Micro",
  3346. height: math.unit(4, "inches")
  3347. },
  3348. {
  3349. name: "Macro",
  3350. height: math.unit(63, "meters")
  3351. },
  3352. {
  3353. name: "Megamacro",
  3354. height: math.unit(101, "miles"),
  3355. default: true
  3356. }
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3361. {
  3362. angled: {
  3363. height: math.unit(4, "meter"),
  3364. weight: math.unit(150, "kg"),
  3365. name: "Angled",
  3366. image: {
  3367. source: "./media/characters/talan/angled-sfw.svg",
  3368. bottom: 29 / 3734
  3369. }
  3370. },
  3371. angledNsfw: {
  3372. height: math.unit(4, "meter"),
  3373. weight: math.unit(150, "kg"),
  3374. name: "Angled (NSFW)",
  3375. image: {
  3376. source: "./media/characters/talan/angled-nsfw.svg",
  3377. bottom: 29 / 3734
  3378. }
  3379. },
  3380. frontNsfw: {
  3381. height: math.unit(4, "meter"),
  3382. weight: math.unit(150, "kg"),
  3383. name: "Front (NSFW)",
  3384. image: {
  3385. source: "./media/characters/talan/front-nsfw.svg",
  3386. bottom: 29 / 3734
  3387. }
  3388. },
  3389. sideNsfw: {
  3390. height: math.unit(4, "meter"),
  3391. weight: math.unit(150, "kg"),
  3392. name: "Side (NSFW)",
  3393. image: {
  3394. source: "./media/characters/talan/side-nsfw.svg",
  3395. bottom: 29 / 3734
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(4, "meter"),
  3400. weight: math.unit(150, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/talan/back.svg"
  3404. }
  3405. },
  3406. dickBottom: {
  3407. height: math.unit(0.621, "meter"),
  3408. name: "Dick (Bottom)",
  3409. image: {
  3410. source: "./media/characters/talan/dick-bottom.svg"
  3411. }
  3412. },
  3413. dickTop: {
  3414. height: math.unit(0.621, "meter"),
  3415. name: "Dick (Top)",
  3416. image: {
  3417. source: "./media/characters/talan/dick-top.svg"
  3418. }
  3419. },
  3420. dickSide: {
  3421. height: math.unit(0.305, "meter"),
  3422. name: "Dick (Side)",
  3423. image: {
  3424. source: "./media/characters/talan/dick-side.svg"
  3425. }
  3426. },
  3427. dickFront: {
  3428. height: math.unit(0.305, "meter"),
  3429. name: "Dick (Front)",
  3430. image: {
  3431. source: "./media/characters/talan/dick-front.svg"
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(4, "meters")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(100, "meters")
  3443. },
  3444. {
  3445. name: "Megamacro",
  3446. height: math.unit(2, "miles"),
  3447. default: true
  3448. },
  3449. {
  3450. name: "Gigamacro",
  3451. height: math.unit(5000, "miles")
  3452. },
  3453. {
  3454. name: "Teramacro",
  3455. height: math.unit(100, "parsecs")
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(90, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/gael'rathus/front.svg"
  3468. }
  3469. },
  3470. frontAlt: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(90, "kg"),
  3473. name: "Front (alt)",
  3474. image: {
  3475. source: "./media/characters/gael'rathus/front-alt.svg"
  3476. }
  3477. },
  3478. frontAlt2: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(90, "kg"),
  3481. name: "Front (alt 2)",
  3482. image: {
  3483. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(9, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Large",
  3495. height: math.unit(25, "feet")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(0.25, "miles")
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(10, "miles")
  3504. }
  3505. ]
  3506. ))
  3507. characterMakers.push(() => makeCharacter(
  3508. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3509. {
  3510. side: {
  3511. height: math.unit(2, "meter"),
  3512. weight: math.unit(140, "kg"),
  3513. name: "Side",
  3514. image: {
  3515. source: "./media/characters/sosha/side.svg",
  3516. bottom: 0.042
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(12, "feet"),
  3524. default: true
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3530. {
  3531. side: {
  3532. height: math.unit(5 + 5 / 12, "feet"),
  3533. weight: math.unit(170, "kg"),
  3534. name: "Side",
  3535. image: {
  3536. source: "./media/characters/runnola/side.svg",
  3537. extra: 741 / 448,
  3538. bottom: 0.05
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Small",
  3545. height: math.unit(3, "feet")
  3546. },
  3547. {
  3548. name: "Normal",
  3549. height: math.unit(5 + 5 / 12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Big",
  3554. height: math.unit(10, "feet")
  3555. },
  3556. ]
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(2, "meter"),
  3563. weight: math.unit(50, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/kurribird/front.svg",
  3567. bottom: 0.015
  3568. }
  3569. },
  3570. frontAlt: {
  3571. height: math.unit(1.5, "meter"),
  3572. weight: math.unit(50, "kg"),
  3573. name: "Front (Alt)",
  3574. image: {
  3575. source: "./media/characters/kurribird/front-alt.svg",
  3576. extra: 1.45
  3577. }
  3578. },
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(7, "feet")
  3584. },
  3585. {
  3586. name: "Big",
  3587. height: math.unit(12, "feet"),
  3588. default: true
  3589. },
  3590. {
  3591. name: "Macro",
  3592. height: math.unit(1500, "feet")
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(2, "miles")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/elbial/front.svg",
  3609. extra: 1643 / 1556,
  3610. bottom: 60.2 / 1696
  3611. }
  3612. },
  3613. side: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(80, "kg"),
  3616. name: "Side",
  3617. image: {
  3618. source: "./media/characters/elbial/side.svg",
  3619. extra: 1601/1528,
  3620. bottom: 97/1698
  3621. }
  3622. },
  3623. back: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Back",
  3627. image: {
  3628. source: "./media/characters/elbial/back.svg",
  3629. extra: 1653/1569,
  3630. bottom: 20/1673
  3631. }
  3632. },
  3633. frontDressed: {
  3634. height: math.unit(2, "meter"),
  3635. weight: math.unit(80, "kg"),
  3636. name: "Front (Dressed)",
  3637. image: {
  3638. source: "./media/characters/elbial/front-dressed.svg",
  3639. extra: 1638/1569,
  3640. bottom: 70/1708
  3641. }
  3642. },
  3643. genitals: {
  3644. height: math.unit(2 / 3.367, "meter"),
  3645. name: "Genitals",
  3646. image: {
  3647. source: "./media/characters/elbial/genitals.svg"
  3648. }
  3649. },
  3650. },
  3651. [
  3652. {
  3653. name: "Large",
  3654. height: math.unit(100, "feet")
  3655. },
  3656. {
  3657. name: "Macro",
  3658. height: math.unit(500, "feet"),
  3659. default: true
  3660. },
  3661. {
  3662. name: "Megamacro",
  3663. height: math.unit(10, "miles")
  3664. },
  3665. {
  3666. name: "Gigamacro",
  3667. height: math.unit(25000, "miles")
  3668. },
  3669. {
  3670. name: "Full-Size",
  3671. height: math.unit(8000000, "gigaparsecs")
  3672. }
  3673. ]
  3674. ))
  3675. characterMakers.push(() => makeCharacter(
  3676. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3677. {
  3678. front: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(60, "kg"),
  3681. name: "Front",
  3682. image: {
  3683. source: "./media/characters/noah/front.svg"
  3684. }
  3685. },
  3686. talons: {
  3687. height: math.unit(0.315, "meter"),
  3688. name: "Talons",
  3689. image: {
  3690. source: "./media/characters/noah/talons.svg"
  3691. }
  3692. }
  3693. },
  3694. [
  3695. {
  3696. name: "Large",
  3697. height: math.unit(50, "feet")
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(750, "feet"),
  3702. default: true
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(50, "miles")
  3707. },
  3708. {
  3709. name: "Gigamacro",
  3710. height: math.unit(100000, "miles")
  3711. },
  3712. {
  3713. name: "Full-Size",
  3714. height: math.unit(3000000000, "miles")
  3715. }
  3716. ]
  3717. ))
  3718. characterMakers.push(() => makeCharacter(
  3719. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3720. {
  3721. front: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(80, "kg"),
  3724. name: "Front",
  3725. image: {
  3726. source: "./media/characters/natalya/front.svg"
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(80, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/natalya/back.svg"
  3735. }
  3736. }
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(150, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(5, "miles")
  3747. },
  3748. {
  3749. name: "Full-Size",
  3750. height: math.unit(600, "kiloparsecs")
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/erestrebah/front.svg",
  3763. extra: 1262/1162,
  3764. bottom: 96/1358
  3765. }
  3766. },
  3767. back: {
  3768. height: math.unit(2, "meter"),
  3769. weight: math.unit(50, "kg"),
  3770. name: "Back",
  3771. image: {
  3772. source: "./media/characters/erestrebah/back.svg",
  3773. extra: 1257/1139,
  3774. bottom: 13/1270
  3775. }
  3776. },
  3777. wing: {
  3778. height: math.unit(2, "meter"),
  3779. weight: math.unit(50, "kg"),
  3780. name: "Wing",
  3781. image: {
  3782. source: "./media/characters/erestrebah/wing.svg",
  3783. extra: 1262/1162,
  3784. bottom: 96/1358
  3785. }
  3786. },
  3787. mouth: {
  3788. height: math.unit(0.39, "feet"),
  3789. name: "Mouth",
  3790. image: {
  3791. source: "./media/characters/erestrebah/mouth.svg"
  3792. }
  3793. }
  3794. },
  3795. [
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(10, "feet")
  3799. },
  3800. {
  3801. name: "Large",
  3802. height: math.unit(50, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro",
  3807. height: math.unit(300, "feet")
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(750, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(3, "miles")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(80, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/jennifer/front.svg",
  3828. bottom: 0.11,
  3829. extra: 1.16
  3830. }
  3831. },
  3832. frontAlt: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(80, "kg"),
  3835. name: "Front (Alt)",
  3836. image: {
  3837. source: "./media/characters/jennifer/front-alt.svg"
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Canon Height",
  3844. height: math.unit(120, "feet"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Macro+",
  3849. height: math.unit(300, "feet")
  3850. },
  3851. {
  3852. name: "Megamacro",
  3853. height: math.unit(20000, "feet")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2, "meter"),
  3862. weight: math.unit(50, "kg"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/kalista/front.svg",
  3866. extra: 1314/1145,
  3867. bottom: 101/1415
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(50, "kg"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/kalista/back.svg",
  3876. extra: 1366 / 1156,
  3877. bottom: 33.9 / 1362.78
  3878. }
  3879. }
  3880. },
  3881. [
  3882. {
  3883. name: "Uncomfortably Small",
  3884. height: math.unit(10, "feet")
  3885. },
  3886. {
  3887. name: "Small",
  3888. height: math.unit(30, "feet")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(100, "feet"),
  3893. default: true
  3894. },
  3895. {
  3896. name: "Macro+",
  3897. height: math.unit(2000, "feet")
  3898. },
  3899. {
  3900. name: "True Form",
  3901. height: math.unit(8924, "miles")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(2, "meter"),
  3910. weight: math.unit(120, "kg"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/ggv/front.svg"
  3914. }
  3915. },
  3916. side: {
  3917. height: math.unit(2, "meter"),
  3918. weight: math.unit(120, "kg"),
  3919. name: "Side",
  3920. image: {
  3921. source: "./media/characters/ggv/side.svg"
  3922. }
  3923. }
  3924. },
  3925. [
  3926. {
  3927. name: "Extremely Puny",
  3928. height: math.unit(9 + 5 / 12, "feet")
  3929. },
  3930. {
  3931. name: "Horribly Small",
  3932. height: math.unit(47.7, "miles"),
  3933. default: true
  3934. },
  3935. {
  3936. name: "Reasonably Sized",
  3937. height: math.unit(25000, "parsecs")
  3938. },
  3939. {
  3940. name: "Slightly Uncompressed",
  3941. height: math.unit(7.77e31, "parsecs")
  3942. },
  3943. {
  3944. name: "Omniversal",
  3945. height: math.unit(1e300, "meters")
  3946. },
  3947. ]
  3948. ))
  3949. characterMakers.push(() => makeCharacter(
  3950. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3951. {
  3952. front: {
  3953. height: math.unit(2, "meter"),
  3954. weight: math.unit(75, "lb"),
  3955. name: "Front",
  3956. image: {
  3957. source: "./media/characters/napalm/front.svg"
  3958. }
  3959. },
  3960. back: {
  3961. height: math.unit(2, "meter"),
  3962. weight: math.unit(75, "lb"),
  3963. name: "Back",
  3964. image: {
  3965. source: "./media/characters/napalm/back.svg"
  3966. }
  3967. }
  3968. },
  3969. [
  3970. {
  3971. name: "Standard",
  3972. height: math.unit(55, "feet"),
  3973. default: true
  3974. }
  3975. ]
  3976. ))
  3977. characterMakers.push(() => makeCharacter(
  3978. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3979. {
  3980. front: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Front",
  3984. image: {
  3985. source: "./media/characters/asana/front.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(7 + 5 / 6, "feet"),
  3992. weight: math.unit(325, "lb"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/asana/back.svg",
  3996. extra: 1114 / 1043,
  3997. bottom: 5 / 1120
  3998. }
  3999. },
  4000. dressedDark: {
  4001. height: math.unit(7 + 5 / 6, "feet"),
  4002. weight: math.unit(325, "lb"),
  4003. name: "Dressed (Dark)",
  4004. image: {
  4005. source: "./media/characters/asana/dressed-dark.svg",
  4006. extra: 1133 / 1060,
  4007. bottom: 15.2 / 1148.6
  4008. }
  4009. },
  4010. dressedLight: {
  4011. height: math.unit(7 + 5 / 6, "feet"),
  4012. weight: math.unit(325, "lb"),
  4013. name: "Dressed (Light)",
  4014. image: {
  4015. source: "./media/characters/asana/dressed-light.svg",
  4016. extra: 1133 / 1060,
  4017. bottom: 15.2 / 1148.6
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Standard",
  4024. height: math.unit(7 + 5 / 6, "feet"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Large",
  4029. height: math.unit(10, "meters")
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(2500, "meters")
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(5e6, "meters")
  4038. },
  4039. {
  4040. name: "Examacro",
  4041. height: math.unit(5e12, "lightyears")
  4042. },
  4043. {
  4044. name: "Max Size",
  4045. height: math.unit(1e31, "lightyears")
  4046. }
  4047. ]
  4048. ))
  4049. characterMakers.push(() => makeCharacter(
  4050. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4051. {
  4052. front: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(60, "kg"),
  4055. name: "Front",
  4056. image: {
  4057. source: "./media/characters/ebony/front.svg",
  4058. bottom: 0.03,
  4059. extra: 1045 / 810 + 0.03
  4060. }
  4061. },
  4062. side: {
  4063. height: math.unit(2, "meter"),
  4064. weight: math.unit(60, "kg"),
  4065. name: "Side",
  4066. image: {
  4067. source: "./media/characters/ebony/side.svg",
  4068. bottom: 0.03,
  4069. extra: 1045 / 810 + 0.03
  4070. }
  4071. },
  4072. back: {
  4073. height: math.unit(2, "meter"),
  4074. weight: math.unit(60, "kg"),
  4075. name: "Back",
  4076. image: {
  4077. source: "./media/characters/ebony/back.svg",
  4078. bottom: 0.01,
  4079. extra: 1045 / 810 + 0.01
  4080. }
  4081. },
  4082. },
  4083. [
  4084. // TODO check why I did this lol
  4085. {
  4086. name: "Standard",
  4087. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Macro",
  4092. height: math.unit(200, "feet")
  4093. },
  4094. {
  4095. name: "Gigamacro",
  4096. height: math.unit(13000, "km")
  4097. }
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(6, "feet"),
  4105. weight: math.unit(175, "lb"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/mountain/front.svg",
  4109. extra: 972 / 955,
  4110. bottom: 64 / 1036.6
  4111. }
  4112. },
  4113. back: {
  4114. height: math.unit(6, "feet"),
  4115. weight: math.unit(175, "lb"),
  4116. name: "Back",
  4117. image: {
  4118. source: "./media/characters/mountain/back.svg",
  4119. extra: 970 / 950,
  4120. bottom: 28.25 / 999
  4121. }
  4122. },
  4123. },
  4124. [
  4125. {
  4126. name: "Large",
  4127. height: math.unit(20, "meters")
  4128. },
  4129. {
  4130. name: "Macro",
  4131. height: math.unit(300, "meters")
  4132. },
  4133. {
  4134. name: "Gigamacro",
  4135. height: math.unit(10000, "km"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Examacro",
  4140. height: math.unit(10e9, "lightyears")
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(8, "feet"),
  4149. weight: math.unit(500, "lb"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/rick/front.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(8, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Macro",
  4164. height: math.unit(5, "km")
  4165. }
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4170. {
  4171. front: {
  4172. height: math.unit(8, "feet"),
  4173. weight: math.unit(120, "lb"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/ona/front.svg"
  4177. }
  4178. },
  4179. frontAlt: {
  4180. height: math.unit(8, "feet"),
  4181. weight: math.unit(120, "lb"),
  4182. name: "Front (Alt)",
  4183. image: {
  4184. source: "./media/characters/ona/front-alt.svg"
  4185. }
  4186. },
  4187. back: {
  4188. height: math.unit(8, "feet"),
  4189. weight: math.unit(120, "lb"),
  4190. name: "Back",
  4191. image: {
  4192. source: "./media/characters/ona/back.svg"
  4193. }
  4194. },
  4195. foot: {
  4196. height: math.unit(1.1, "feet"),
  4197. name: "Foot",
  4198. image: {
  4199. source: "./media/characters/ona/foot.svg"
  4200. }
  4201. }
  4202. },
  4203. [
  4204. {
  4205. name: "Megamacro",
  4206. height: math.unit(70, "km"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Gigamacro",
  4211. height: math.unit(681818, "miles")
  4212. },
  4213. {
  4214. name: "Examacro",
  4215. height: math.unit(3800000, "lightyears")
  4216. },
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4221. {
  4222. front: {
  4223. height: math.unit(12, "feet"),
  4224. weight: math.unit(3000, "lb"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/mech/front.svg",
  4228. extra: 2900 / 2770,
  4229. bottom: 110 / 3010
  4230. }
  4231. },
  4232. back: {
  4233. height: math.unit(12, "feet"),
  4234. weight: math.unit(3000, "lb"),
  4235. name: "Back",
  4236. image: {
  4237. source: "./media/characters/mech/back.svg",
  4238. extra: 3011 / 2890,
  4239. bottom: 94 / 3105
  4240. }
  4241. },
  4242. maw: {
  4243. height: math.unit(3.07, "feet"),
  4244. name: "Maw",
  4245. image: {
  4246. source: "./media/characters/mech/maw.svg"
  4247. }
  4248. },
  4249. head: {
  4250. height: math.unit(2.82, "feet"),
  4251. name: "Head",
  4252. image: {
  4253. source: "./media/characters/mech/head.svg"
  4254. }
  4255. },
  4256. dick: {
  4257. height: math.unit(1.43, "feet"),
  4258. name: "Dick",
  4259. image: {
  4260. source: "./media/characters/mech/dick.svg"
  4261. }
  4262. },
  4263. },
  4264. [
  4265. {
  4266. name: "Normal",
  4267. height: math.unit(12, "feet")
  4268. },
  4269. {
  4270. name: "Macro",
  4271. height: math.unit(300, "feet"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Macro+",
  4276. height: math.unit(1500, "feet")
  4277. },
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(1.3, "meter"),
  4285. weight: math.unit(30, "kg"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/gregory/front.svg",
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(1.3, "meter"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Macro",
  4300. height: math.unit(20, "meter")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(2.8, "meter"),
  4309. weight: math.unit(200, "kg"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/elory/front.svg",
  4313. }
  4314. }
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(2.8, "meter"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(38, "meter")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(470, "feet"),
  4333. weight: math.unit(924, "tons"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/angelpatamon/front.svg",
  4337. }
  4338. }
  4339. },
  4340. [
  4341. {
  4342. name: "Normal",
  4343. height: math.unit(470, "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Deity Size I",
  4348. height: math.unit(28651.2, "km")
  4349. },
  4350. {
  4351. name: "Deity Size II",
  4352. height: math.unit(171907.2, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4358. {
  4359. side: {
  4360. height: math.unit(7.2, "meter"),
  4361. weight: math.unit(8.2, "tons"),
  4362. name: "Side",
  4363. image: {
  4364. source: "./media/characters/cryae/side.svg",
  4365. extra: 3500 / 1500
  4366. }
  4367. }
  4368. },
  4369. [
  4370. {
  4371. name: "Normal",
  4372. height: math.unit(7.2, "meter"),
  4373. default: true
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(175, "lb"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/xera/front.svg",
  4386. extra: 2377 / 1972,
  4387. bottom: 75.5 / 2452
  4388. }
  4389. },
  4390. side: {
  4391. height: math.unit(6, "feet"),
  4392. weight: math.unit(175, "lb"),
  4393. name: "Side",
  4394. image: {
  4395. source: "./media/characters/xera/side.svg",
  4396. extra: 2345 / 2019,
  4397. bottom: 39.7 / 2384
  4398. }
  4399. },
  4400. back: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Back",
  4404. image: {
  4405. source: "./media/characters/xera/back.svg",
  4406. extra: 2095 / 1984,
  4407. bottom: 67 / 2166
  4408. }
  4409. },
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(10, "feet")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Macro+",
  4423. height: math.unit(10, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(25000, "km")
  4428. },
  4429. {
  4430. name: "Teramacro",
  4431. height: math.unit(3e6, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(175, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/nebula/front.svg",
  4444. extra: 2566 / 2362,
  4445. bottom: 81 / 2644
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Small",
  4452. height: math.unit(4.5, "meters")
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(1500, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(150, "km")
  4462. },
  4463. {
  4464. name: "Gigamacro",
  4465. height: math.unit(27000, "km")
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4471. {
  4472. front: {
  4473. height: math.unit(6, "feet"),
  4474. weight: math.unit(225, "lb"),
  4475. name: "Front",
  4476. image: {
  4477. source: "./media/characters/abysgar/front.svg"
  4478. }
  4479. }
  4480. },
  4481. [
  4482. {
  4483. name: "Small",
  4484. height: math.unit(4.5, "meters")
  4485. },
  4486. {
  4487. name: "Macro",
  4488. height: math.unit(1250, "meters"),
  4489. default: true
  4490. },
  4491. {
  4492. name: "Megamacro",
  4493. height: math.unit(125, "km")
  4494. },
  4495. {
  4496. name: "Gigamacro",
  4497. height: math.unit(26000, "km")
  4498. }
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(180, "lb"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/yakuz/front.svg"
  4510. }
  4511. }
  4512. },
  4513. [
  4514. {
  4515. name: "Small",
  4516. height: math.unit(5, "meters")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(1500, "meters"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(200, "km")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(100000, "km")
  4530. }
  4531. ]
  4532. ))
  4533. characterMakers.push(() => makeCharacter(
  4534. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4535. {
  4536. front: {
  4537. height: math.unit(6, "feet"),
  4538. weight: math.unit(175, "lb"),
  4539. name: "Front",
  4540. image: {
  4541. source: "./media/characters/mirova/front.svg",
  4542. extra: 3334 / 3071,
  4543. bottom: 42 / 3375.6
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Small",
  4550. height: math.unit(5, "meters")
  4551. },
  4552. {
  4553. name: "Macro",
  4554. height: math.unit(900, "meters"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Megamacro",
  4559. height: math.unit(135, "km")
  4560. },
  4561. {
  4562. name: "Gigamacro",
  4563. height: math.unit(20000, "km")
  4564. }
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4569. {
  4570. side: {
  4571. height: math.unit(28.35, "feet"),
  4572. weight: math.unit(99.75, "tons"),
  4573. name: "Side",
  4574. image: {
  4575. source: "./media/characters/asana-mech/side.svg",
  4576. extra: 923 / 699,
  4577. bottom: 50 / 975
  4578. }
  4579. },
  4580. chaingun: {
  4581. height: math.unit(7, "feet"),
  4582. weight: math.unit(2400, "lb"),
  4583. name: "Chaingun",
  4584. image: {
  4585. source: "./media/characters/asana-mech/chaingun.svg"
  4586. }
  4587. },
  4588. laser: {
  4589. height: math.unit(7.12, "feet"),
  4590. weight: math.unit(2000, "lb"),
  4591. name: "Laser",
  4592. image: {
  4593. source: "./media/characters/asana-mech/laser.svg"
  4594. }
  4595. },
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(28.35, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Macro",
  4605. height: math.unit(2500, "feet")
  4606. },
  4607. {
  4608. name: "Megamacro",
  4609. height: math.unit(25, "miles")
  4610. },
  4611. {
  4612. name: "Examacro",
  4613. height: math.unit(6e8, "lightyears")
  4614. },
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/asche/front.svg",
  4626. extra: 1258 / 1190,
  4627. bottom: 47 / 1305
  4628. }
  4629. },
  4630. frontUnderwear: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Front (Underwear)",
  4634. image: {
  4635. source: "./media/characters/asche/front-underwear.svg",
  4636. extra: 1258 / 1190,
  4637. bottom: 47 / 1305
  4638. }
  4639. },
  4640. frontDressed: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Front (Dressed)",
  4644. image: {
  4645. source: "./media/characters/asche/front-dressed.svg",
  4646. extra: 1258 / 1190,
  4647. bottom: 47 / 1305
  4648. }
  4649. },
  4650. frontArmor: {
  4651. height: math.unit(5, "meters"),
  4652. weight: math.unit(1000, "kg"),
  4653. name: "Front (Armored)",
  4654. image: {
  4655. source: "./media/characters/asche/front-armored.svg",
  4656. extra: 1374 / 1308,
  4657. bottom: 23 / 1397
  4658. }
  4659. },
  4660. mp724: {
  4661. height: math.unit(0.96, "meters"),
  4662. weight: math.unit(38, "kg"),
  4663. name: "H&K MP724",
  4664. image: {
  4665. source: "./media/characters/asche/h&k-mp724.svg"
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(5, "meters"),
  4670. weight: math.unit(1000, "kg"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/asche/side.svg",
  4674. extra: 1717 / 1609,
  4675. bottom: 0.005
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(5, "meters"),
  4680. weight: math.unit(1000, "kg"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/asche/back.svg",
  4684. extra: 1570 / 1501
  4685. }
  4686. },
  4687. },
  4688. [
  4689. {
  4690. name: "DEFCON 5",
  4691. height: math.unit(5, "meters")
  4692. },
  4693. {
  4694. name: "DEFCON 4",
  4695. height: math.unit(500, "meters"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "DEFCON 3",
  4700. height: math.unit(5, "km")
  4701. },
  4702. {
  4703. name: "DEFCON 2",
  4704. height: math.unit(500, "km")
  4705. },
  4706. {
  4707. name: "DEFCON 1",
  4708. height: math.unit(500000, "km")
  4709. },
  4710. {
  4711. name: "DEFCON 0",
  4712. height: math.unit(3, "gigaparsecs")
  4713. },
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meters"),
  4721. weight: math.unit(76, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/gale/front.svg"
  4725. }
  4726. },
  4727. frontAlt1: {
  4728. height: math.unit(2, "meters"),
  4729. weight: math.unit(76, "kg"),
  4730. name: "Front (Alt 1)",
  4731. image: {
  4732. source: "./media/characters/gale/front-alt-1.svg"
  4733. }
  4734. },
  4735. frontAlt2: {
  4736. height: math.unit(2, "meters"),
  4737. weight: math.unit(76, "kg"),
  4738. name: "Front (Alt 2)",
  4739. image: {
  4740. source: "./media/characters/gale/front-alt-2.svg"
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(7, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(150, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(300, "feet")
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(5 + 10/12, "feet"),
  4765. weight: math.unit(67, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/draylen/front.svg",
  4769. extra: 832/777,
  4770. bottom: 85/917
  4771. }
  4772. }
  4773. },
  4774. [
  4775. {
  4776. name: "Normal",
  4777. height: math.unit(5 + 10/12, "feet")
  4778. },
  4779. {
  4780. name: "Macro",
  4781. height: math.unit(150, "feet"),
  4782. default: true
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4788. {
  4789. front: {
  4790. height: math.unit(7 + 9 / 12, "feet"),
  4791. weight: math.unit(379, "lbs"),
  4792. name: "Front",
  4793. image: {
  4794. source: "./media/characters/chez/front.svg"
  4795. }
  4796. },
  4797. side: {
  4798. height: math.unit(7 + 9 / 12, "feet"),
  4799. weight: math.unit(379, "lbs"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/chez/side.svg"
  4803. }
  4804. }
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(7 + 9 / 12, "feet"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "God King",
  4814. height: math.unit(9750000, "meters")
  4815. }
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4820. {
  4821. front: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(275, "lbs"),
  4824. name: "Front",
  4825. image: {
  4826. source: "./media/characters/kaylum/front.svg",
  4827. bottom: 0.01,
  4828. extra: 1166 / 1031
  4829. }
  4830. },
  4831. frontWingless: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(275, "lbs"),
  4834. name: "Front (Wingless)",
  4835. image: {
  4836. source: "./media/characters/kaylum/front-wingless.svg",
  4837. bottom: 0.01,
  4838. extra: 1117 / 1031
  4839. }
  4840. }
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(3.05, "meters")
  4846. },
  4847. {
  4848. name: "Master",
  4849. height: math.unit(5.5, "meters")
  4850. },
  4851. {
  4852. name: "Rampage",
  4853. height: math.unit(19, "meters")
  4854. },
  4855. {
  4856. name: "Macro Lite",
  4857. height: math.unit(37, "meters")
  4858. },
  4859. {
  4860. name: "Hyper Predator",
  4861. height: math.unit(61, "meters")
  4862. },
  4863. {
  4864. name: "Macro",
  4865. height: math.unit(138, "meters"),
  4866. default: true
  4867. }
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4872. {
  4873. front: {
  4874. height: math.unit(5 + 5 / 12, "feet"),
  4875. weight: math.unit(120, "lbs"),
  4876. name: "Front",
  4877. image: {
  4878. source: "./media/characters/geta/front.svg",
  4879. extra: 1003/933,
  4880. bottom: 21/1024
  4881. }
  4882. },
  4883. paw: {
  4884. height: math.unit(0.35, "feet"),
  4885. name: "Paw",
  4886. image: {
  4887. source: "./media/characters/geta/paw.svg"
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Micro",
  4894. height: math.unit(3, "inches"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Normal",
  4899. height: math.unit(5 + 5 / 12, "feet")
  4900. }
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(6, "feet"),
  4908. weight: math.unit(300, "lbs"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/tyrnn/front.svg"
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Main Height",
  4918. height: math.unit(355, "feet"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Fave. Height",
  4923. height: math.unit(2400, "feet")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(6, "feet"),
  4932. weight: math.unit(300, "lbs"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/appledectomy/front.svg"
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(2500, "feet")
  4943. },
  4944. {
  4945. name: "Megamacro",
  4946. height: math.unit(50, "miles"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Gigamacro",
  4951. height: math.unit(5000, "miles")
  4952. },
  4953. {
  4954. name: "Teramacro",
  4955. height: math.unit(250000, "miles")
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(200, "lbs"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/vulpes/front.svg",
  4968. extra: 573 / 543,
  4969. bottom: 0.033
  4970. }
  4971. },
  4972. side: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(200, "lbs"),
  4975. name: "Side",
  4976. image: {
  4977. source: "./media/characters/vulpes/side.svg",
  4978. extra: 577 / 549,
  4979. bottom: 11 / 588
  4980. }
  4981. },
  4982. back: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(200, "lbs"),
  4985. name: "Back",
  4986. image: {
  4987. source: "./media/characters/vulpes/back.svg",
  4988. extra: 573 / 549,
  4989. bottom: 20 / 593
  4990. }
  4991. },
  4992. feet: {
  4993. height: math.unit(1.276, "feet"),
  4994. name: "Feet",
  4995. image: {
  4996. source: "./media/characters/vulpes/feet.svg"
  4997. }
  4998. },
  4999. maw: {
  5000. height: math.unit(1.18, "feet"),
  5001. name: "Maw",
  5002. image: {
  5003. source: "./media/characters/vulpes/maw.svg"
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Micro",
  5010. height: math.unit(2, "inches")
  5011. },
  5012. {
  5013. name: "Normal",
  5014. height: math.unit(6.3, "feet")
  5015. },
  5016. {
  5017. name: "Macro",
  5018. height: math.unit(850, "feet")
  5019. },
  5020. {
  5021. name: "Megamacro",
  5022. height: math.unit(7500, "feet"),
  5023. default: true
  5024. },
  5025. {
  5026. name: "Gigamacro",
  5027. height: math.unit(570000, "miles")
  5028. }
  5029. ]
  5030. ))
  5031. characterMakers.push(() => makeCharacter(
  5032. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5033. {
  5034. front: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(210, "lbs"),
  5037. name: "Front",
  5038. image: {
  5039. source: "./media/characters/rain-fallen/front.svg"
  5040. }
  5041. },
  5042. side: {
  5043. height: math.unit(6, "feet"),
  5044. weight: math.unit(210, "lbs"),
  5045. name: "Side",
  5046. image: {
  5047. source: "./media/characters/rain-fallen/side.svg"
  5048. }
  5049. },
  5050. back: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(210, "lbs"),
  5053. name: "Back",
  5054. image: {
  5055. source: "./media/characters/rain-fallen/back.svg"
  5056. }
  5057. },
  5058. feral: {
  5059. height: math.unit(9, "feet"),
  5060. weight: math.unit(700, "lbs"),
  5061. name: "Feral",
  5062. image: {
  5063. source: "./media/characters/rain-fallen/feral.svg"
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Meddling with Mortals",
  5070. height: math.unit(8 + 8/12, "feet")
  5071. },
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(5, "meter")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(150, "meter"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Megamacro",
  5083. height: math.unit(278e6, "meter")
  5084. },
  5085. {
  5086. name: "Gigamacro",
  5087. height: math.unit(2e9, "meter")
  5088. },
  5089. {
  5090. name: "Teramacro",
  5091. height: math.unit(8e12, "meter")
  5092. },
  5093. {
  5094. name: "Devourer",
  5095. height: math.unit(14, "zettameters")
  5096. },
  5097. {
  5098. name: "Scarlet King",
  5099. height: math.unit(18, "yottameters")
  5100. },
  5101. {
  5102. name: "Void",
  5103. height: math.unit(1e88, "yottameters")
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5109. {
  5110. standing: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(180, "lbs"),
  5113. name: "Standing",
  5114. image: {
  5115. source: "./media/characters/zaakira/standing.svg",
  5116. extra: 1599/1504,
  5117. bottom: 39/1638
  5118. }
  5119. },
  5120. laying: {
  5121. height: math.unit(3, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Laying",
  5124. image: {
  5125. source: "./media/characters/zaakira/laying.svg"
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(12, "feet")
  5133. },
  5134. {
  5135. name: "Macro",
  5136. height: math.unit(279, "feet"),
  5137. default: true
  5138. }
  5139. ]
  5140. ))
  5141. characterMakers.push(() => makeCharacter(
  5142. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5143. {
  5144. femSfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Fem",
  5148. image: {
  5149. source: "./media/characters/sigvald/fem-sfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. femNsfw: {
  5155. height: math.unit(8, "feet"),
  5156. weight: math.unit(350, "lb"),
  5157. name: "Fem (NSFW)",
  5158. image: {
  5159. source: "./media/characters/sigvald/fem-nsfw.svg",
  5160. extra: 182 / 164,
  5161. bottom: 8.7 / 190.5
  5162. }
  5163. },
  5164. maleNsfw: {
  5165. height: math.unit(8, "feet"),
  5166. weight: math.unit(350, "lb"),
  5167. name: "Male (NSFW)",
  5168. image: {
  5169. source: "./media/characters/sigvald/male-nsfw.svg",
  5170. extra: 182 / 164,
  5171. bottom: 8.7 / 190.5
  5172. }
  5173. },
  5174. hermNsfw: {
  5175. height: math.unit(8, "feet"),
  5176. weight: math.unit(350, "lb"),
  5177. name: "Herm (NSFW)",
  5178. image: {
  5179. source: "./media/characters/sigvald/herm-nsfw.svg",
  5180. extra: 182 / 164,
  5181. bottom: 8.7 / 190.5
  5182. }
  5183. },
  5184. dick: {
  5185. height: math.unit(2.36, "feet"),
  5186. name: "Dick",
  5187. image: {
  5188. source: "./media/characters/sigvald/dick.svg"
  5189. }
  5190. },
  5191. eye: {
  5192. height: math.unit(0.31, "feet"),
  5193. name: "Eye",
  5194. image: {
  5195. source: "./media/characters/sigvald/eye.svg"
  5196. }
  5197. },
  5198. mouth: {
  5199. height: math.unit(0.92, "feet"),
  5200. name: "Mouth",
  5201. image: {
  5202. source: "./media/characters/sigvald/mouth.svg"
  5203. }
  5204. },
  5205. paws: {
  5206. height: math.unit(2.2, "feet"),
  5207. name: "Paws",
  5208. image: {
  5209. source: "./media/characters/sigvald/paws.svg"
  5210. }
  5211. }
  5212. },
  5213. [
  5214. {
  5215. name: "Normal",
  5216. height: math.unit(8, "feet")
  5217. },
  5218. {
  5219. name: "Large",
  5220. height: math.unit(12, "feet")
  5221. },
  5222. {
  5223. name: "Larger",
  5224. height: math.unit(20, "feet")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(150, "feet")
  5229. },
  5230. {
  5231. name: "Macro+",
  5232. height: math.unit(200, "feet"),
  5233. default: true
  5234. },
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5239. {
  5240. side: {
  5241. height: math.unit(12, "feet"),
  5242. weight: math.unit(2000, "kg"),
  5243. name: "Side",
  5244. image: {
  5245. source: "./media/characters/scott/side.svg",
  5246. extra: 754 / 724,
  5247. bottom: 0.069
  5248. }
  5249. },
  5250. upright: {
  5251. height: math.unit(12, "feet"),
  5252. weight: math.unit(2000, "kg"),
  5253. name: "Upright",
  5254. image: {
  5255. source: "./media/characters/scott/upright.svg",
  5256. extra: 3881 / 3722,
  5257. bottom: 0.05
  5258. }
  5259. },
  5260. },
  5261. [
  5262. {
  5263. name: "Normal",
  5264. height: math.unit(12, "feet"),
  5265. default: true
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5271. {
  5272. side: {
  5273. height: math.unit(8, "meters"),
  5274. weight: math.unit(84755, "lbs"),
  5275. name: "Side",
  5276. image: {
  5277. source: "./media/characters/tobias/side.svg",
  5278. extra: 1474 / 1096,
  5279. bottom: 38.9 / 1513.1235
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Normal",
  5286. height: math.unit(8, "meters"),
  5287. default: true
  5288. },
  5289. ]
  5290. ))
  5291. characterMakers.push(() => makeCharacter(
  5292. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5293. {
  5294. front: {
  5295. height: math.unit(5.5, "feet"),
  5296. weight: math.unit(400, "lbs"),
  5297. name: "Front",
  5298. image: {
  5299. source: "./media/characters/kieran/front.svg",
  5300. extra: 2694 / 2364,
  5301. bottom: 217 / 2908
  5302. }
  5303. },
  5304. side: {
  5305. height: math.unit(5.5, "feet"),
  5306. weight: math.unit(400, "lbs"),
  5307. name: "Side",
  5308. image: {
  5309. source: "./media/characters/kieran/side.svg",
  5310. extra: 875 / 777,
  5311. bottom: 84.6 / 959
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Normal",
  5318. height: math.unit(5.5, "feet"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5325. {
  5326. side: {
  5327. height: math.unit(2, "meters"),
  5328. weight: math.unit(70, "kg"),
  5329. name: "Side",
  5330. image: {
  5331. source: "./media/characters/sanya/side.svg",
  5332. bottom: 0.02,
  5333. extra: 1.02
  5334. }
  5335. },
  5336. },
  5337. [
  5338. {
  5339. name: "Small",
  5340. height: math.unit(2, "meters")
  5341. },
  5342. {
  5343. name: "Normal",
  5344. height: math.unit(3, "meters")
  5345. },
  5346. {
  5347. name: "Macro",
  5348. height: math.unit(16, "meters"),
  5349. default: true
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(2, "meters"),
  5358. weight: math.unit(120, "kg"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/miranda/front.svg",
  5362. extra: 195 / 185,
  5363. bottom: 10.9 / 206.5
  5364. }
  5365. },
  5366. back: {
  5367. height: math.unit(2, "meters"),
  5368. weight: math.unit(120, "kg"),
  5369. name: "Back",
  5370. image: {
  5371. source: "./media/characters/miranda/back.svg",
  5372. extra: 201 / 193,
  5373. bottom: 2.3 / 203.7
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(10, "feet"),
  5381. default: true
  5382. }
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "James", species: ["deer"], tags: ["anthro"] },
  5387. {
  5388. side: {
  5389. height: math.unit(2, "meters"),
  5390. weight: math.unit(100, "kg"),
  5391. name: "Front",
  5392. image: {
  5393. source: "./media/characters/james/front.svg",
  5394. extra: 10 / 8.5
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(8.5, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5408. {
  5409. side: {
  5410. height: math.unit(9.5, "feet"),
  5411. weight: math.unit(2500, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/heather/side.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(9.5, "feet"),
  5422. default: true
  5423. }
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5428. {
  5429. side: {
  5430. height: math.unit(6.5, "feet"),
  5431. weight: math.unit(400, "lbs"),
  5432. name: "Side",
  5433. image: {
  5434. source: "./media/characters/lukas/side.svg",
  5435. extra: 7.25 / 6.5
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(6.5, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5449. {
  5450. side: {
  5451. height: math.unit(5, "feet"),
  5452. weight: math.unit(3000, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/louise/side.svg"
  5456. }
  5457. },
  5458. },
  5459. [
  5460. {
  5461. name: "Normal",
  5462. height: math.unit(5, "feet"),
  5463. default: true
  5464. }
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5469. {
  5470. side: {
  5471. height: math.unit(6, "feet"),
  5472. weight: math.unit(150, "lbs"),
  5473. name: "Side",
  5474. image: {
  5475. source: "./media/characters/ramona/side.svg",
  5476. extra: 871/854,
  5477. bottom: 41/912
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5.3, "meters"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(20, "stories")
  5490. },
  5491. {
  5492. name: "Macro+",
  5493. height: math.unit(50, "stories")
  5494. },
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5499. {
  5500. standing: {
  5501. height: math.unit(5.75, "feet"),
  5502. weight: math.unit(160, "lbs"),
  5503. name: "Standing",
  5504. image: {
  5505. source: "./media/characters/deerpuff/standing.svg",
  5506. extra: 682 / 624
  5507. }
  5508. },
  5509. sitting: {
  5510. height: math.unit(5.75 / 1.79, "feet"),
  5511. weight: math.unit(160, "lbs"),
  5512. name: "Sitting",
  5513. image: {
  5514. source: "./media/characters/deerpuff/sitting.svg",
  5515. bottom: 44 / 400,
  5516. extra: 1
  5517. }
  5518. },
  5519. taurLaying: {
  5520. height: math.unit(6, "feet"),
  5521. weight: math.unit(400, "lbs"),
  5522. name: "Taur (Laying)",
  5523. image: {
  5524. source: "./media/characters/deerpuff/taur-laying.svg"
  5525. }
  5526. },
  5527. },
  5528. [
  5529. {
  5530. name: "Puffball",
  5531. height: math.unit(6, "inches")
  5532. },
  5533. {
  5534. name: "Normalpuff",
  5535. height: math.unit(5.75, "feet")
  5536. },
  5537. {
  5538. name: "Macropuff",
  5539. height: math.unit(1500, "feet"),
  5540. default: true
  5541. },
  5542. {
  5543. name: "Megapuff",
  5544. height: math.unit(500, "miles")
  5545. },
  5546. {
  5547. name: "Gigapuff",
  5548. height: math.unit(250000, "miles")
  5549. },
  5550. {
  5551. name: "Omegapuff",
  5552. height: math.unit(1000, "lightyears")
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5558. {
  5559. stomping: {
  5560. height: math.unit(6, "feet"),
  5561. weight: math.unit(170, "lbs"),
  5562. name: "Stomping",
  5563. image: {
  5564. source: "./media/characters/vivian/stomping.svg"
  5565. }
  5566. },
  5567. sitting: {
  5568. height: math.unit(6 / 1.75, "feet"),
  5569. weight: math.unit(170, "lbs"),
  5570. name: "Sitting",
  5571. image: {
  5572. source: "./media/characters/vivian/sitting.svg",
  5573. bottom: 1 / 6.4,
  5574. extra: 1,
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(7, "feet"),
  5582. default: true
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(10, "stories")
  5587. },
  5588. {
  5589. name: "Macro+",
  5590. height: math.unit(30, "stories")
  5591. },
  5592. {
  5593. name: "Megamacro",
  5594. height: math.unit(10, "miles")
  5595. },
  5596. {
  5597. name: "Megamacro+",
  5598. height: math.unit(2750000, "meters")
  5599. },
  5600. ]
  5601. ))
  5602. characterMakers.push(() => makeCharacter(
  5603. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5604. {
  5605. front: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(160, "lbs"),
  5608. name: "Front",
  5609. image: {
  5610. source: "./media/characters/prince/front.svg",
  5611. extra: 3400 / 3000
  5612. }
  5613. },
  5614. jumping: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(160, "lbs"),
  5617. name: "Jumping",
  5618. image: {
  5619. source: "./media/characters/prince/jump.svg",
  5620. extra: 2555 / 2134
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(7.75, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Not cute",
  5632. height: math.unit(17, "feet")
  5633. },
  5634. {
  5635. name: "I said NOT",
  5636. height: math.unit(91, "feet")
  5637. },
  5638. {
  5639. name: "Please stop",
  5640. height: math.unit(560, "feet")
  5641. },
  5642. {
  5643. name: "What have you done",
  5644. height: math.unit(2200, "feet")
  5645. },
  5646. {
  5647. name: "Deer God",
  5648. height: math.unit(3.6, "miles")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5654. {
  5655. standing: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(300, "lbs"),
  5658. name: "Standing",
  5659. image: {
  5660. source: "./media/characters/psymon/standing.svg",
  5661. extra: 1888 / 1810,
  5662. bottom: 0.05
  5663. }
  5664. },
  5665. slithering: {
  5666. height: math.unit(6, "feet"),
  5667. weight: math.unit(300, "lbs"),
  5668. name: "Slithering",
  5669. image: {
  5670. source: "./media/characters/psymon/slithering.svg",
  5671. extra: 1330 / 1224
  5672. }
  5673. },
  5674. slitheringAlt: {
  5675. height: math.unit(6, "feet"),
  5676. weight: math.unit(300, "lbs"),
  5677. name: "Slithering (Alt)",
  5678. image: {
  5679. source: "./media/characters/psymon/slithering-alt.svg",
  5680. extra: 1330 / 1224
  5681. }
  5682. },
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(11.25, "feet"),
  5688. default: true
  5689. },
  5690. {
  5691. name: "Large",
  5692. height: math.unit(27, "feet")
  5693. },
  5694. {
  5695. name: "Giant",
  5696. height: math.unit(87, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(365, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3, "miles")
  5705. },
  5706. {
  5707. name: "World Serpent",
  5708. height: math.unit(8000, "miles")
  5709. },
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(180, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/daimos/front.svg",
  5721. extra: 4160 / 3897,
  5722. bottom: 0.021
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(8, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Big Dog",
  5734. height: math.unit(22, "feet")
  5735. },
  5736. {
  5737. name: "Macro",
  5738. height: math.unit(127, "feet")
  5739. },
  5740. {
  5741. name: "Megamacro",
  5742. height: math.unit(3600, "feet")
  5743. },
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5748. {
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(180, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/blake/side.svg",
  5755. extra: 1212 / 1120,
  5756. bottom: 0.05
  5757. }
  5758. },
  5759. crouched: {
  5760. height: math.unit(6 * 0.57, "feet"),
  5761. weight: math.unit(180, "lbs"),
  5762. name: "Crouched",
  5763. image: {
  5764. source: "./media/characters/blake/crouched.svg",
  5765. extra: 840 / 587,
  5766. bottom: 0.04
  5767. }
  5768. },
  5769. bent: {
  5770. height: math.unit(6 * 0.75, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Bent",
  5773. image: {
  5774. source: "./media/characters/blake/bent.svg",
  5775. extra: 592 / 544,
  5776. bottom: 0.035
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(8 + 1 / 6, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Big Backside",
  5788. height: math.unit(37, "feet")
  5789. },
  5790. {
  5791. name: "Subway Shredder",
  5792. height: math.unit(72, "feet")
  5793. },
  5794. {
  5795. name: "City Carver",
  5796. height: math.unit(1675, "feet")
  5797. },
  5798. {
  5799. name: "Tectonic Tweaker",
  5800. height: math.unit(2300, "miles")
  5801. },
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(180, "lbs"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/guisetto/front.svg",
  5813. extra: 856 / 817,
  5814. bottom: 0.06
  5815. }
  5816. },
  5817. airborne: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Airborne",
  5821. image: {
  5822. source: "./media/characters/guisetto/airborne.svg",
  5823. extra: 584 / 525
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(10 + 11 / 12, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Large",
  5835. height: math.unit(35, "feet")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(475, "feet")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(180, "lbs"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/luxor/front.svg",
  5852. extra: 2940 / 2152
  5853. }
  5854. },
  5855. back: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(180, "lbs"),
  5858. name: "Back",
  5859. image: {
  5860. source: "./media/characters/luxor/back.svg",
  5861. extra: 1083 / 960
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(5 + 5 / 6, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Lamp",
  5873. height: math.unit(50, "feet")
  5874. },
  5875. {
  5876. name: "Lämp",
  5877. height: math.unit(300, "feet")
  5878. },
  5879. {
  5880. name: "The sun is a lamp",
  5881. height: math.unit(250000, "miles")
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(50, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/huoyan/front.svg"
  5894. }
  5895. },
  5896. side: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(180, "lbs"),
  5899. name: "Side",
  5900. image: {
  5901. source: "./media/characters/huoyan/side.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Chef",
  5908. height: math.unit(9, "feet")
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(65, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(780, "feet")
  5918. },
  5919. {
  5920. name: "Flaming Mountain",
  5921. height: math.unit(4.8, "miles")
  5922. },
  5923. {
  5924. name: "Celestial",
  5925. height: math.unit(765000, "miles")
  5926. },
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(5 + 3 / 4, "feet"),
  5934. weight: math.unit(120, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/tails/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5 + 3 / 4, "feet"),
  5945. default: true
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(4, "feet"),
  5954. weight: math.unit(50, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rainy/front.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Macro",
  5964. height: math.unit(800, "feet"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(150, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/rainier/front.svg"
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Micro",
  5984. height: math.unit(2, "mm"),
  5985. default: true
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5991. {
  5992. front: {
  5993. height: math.unit(8 + 4/12, "feet"),
  5994. weight: math.unit(450, "kilograms"),
  5995. volume: math.unit(5, "cups"),
  5996. name: "Front",
  5997. image: {
  5998. source: "./media/characters/andy-renard/front.svg",
  5999. extra: 1839/1726,
  6000. bottom: 134/1973
  6001. }
  6002. },
  6003. back: {
  6004. height: math.unit(8 + 4/12, "feet"),
  6005. weight: math.unit(450, "kilograms"),
  6006. volume: math.unit(5, "cups"),
  6007. name: "Back",
  6008. image: {
  6009. source: "./media/characters/andy-renard/back.svg",
  6010. extra: 1838/1710,
  6011. bottom: 105/1943
  6012. }
  6013. },
  6014. },
  6015. [
  6016. {
  6017. name: "Tall",
  6018. height: math.unit(8 + 4/12, "feet")
  6019. },
  6020. {
  6021. name: "Mini Macro",
  6022. height: math.unit(15, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Macro",
  6027. height: math.unit(100, "feet")
  6028. },
  6029. {
  6030. name: "Mega Macro",
  6031. height: math.unit(1000, "feet")
  6032. },
  6033. {
  6034. name: "Giga Macro",
  6035. height: math.unit(10, "miles")
  6036. },
  6037. {
  6038. name: "God Macro",
  6039. height: math.unit(1, "multiverse")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(210, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/cimmaron/front-sfw.svg",
  6052. extra: 701 / 676,
  6053. bottom: 0.046
  6054. }
  6055. },
  6056. back: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(210, "lbs"),
  6059. name: "Back",
  6060. image: {
  6061. source: "./media/characters/cimmaron/back-sfw.svg",
  6062. extra: 701 / 676,
  6063. bottom: 0.046
  6064. }
  6065. },
  6066. frontNsfw: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(210, "lbs"),
  6069. name: "Front (NSFW)",
  6070. image: {
  6071. source: "./media/characters/cimmaron/front-nsfw.svg",
  6072. extra: 701 / 676,
  6073. bottom: 0.046
  6074. }
  6075. },
  6076. backNsfw: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(210, "lbs"),
  6079. name: "Back (NSFW)",
  6080. image: {
  6081. source: "./media/characters/cimmaron/back-nsfw.svg",
  6082. extra: 701 / 676,
  6083. bottom: 0.046
  6084. }
  6085. },
  6086. dick: {
  6087. height: math.unit(1.714, "feet"),
  6088. name: "Dick",
  6089. image: {
  6090. source: "./media/characters/cimmaron/dick.svg"
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(6, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Macro Mayor",
  6102. height: math.unit(350, "meters")
  6103. },
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(200, "lbs"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/akari/front.svg",
  6115. extra: 962 / 901,
  6116. bottom: 0.04
  6117. }
  6118. }
  6119. },
  6120. [
  6121. {
  6122. name: "Micro",
  6123. height: math.unit(5, "inches"),
  6124. default: true
  6125. },
  6126. {
  6127. name: "Normal",
  6128. height: math.unit(7, "feet")
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(6, "feet"),
  6137. weight: math.unit(140, "lbs"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/cynosura/front.svg",
  6141. extra: 896 / 847
  6142. }
  6143. },
  6144. back: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(140, "lbs"),
  6147. name: "Back",
  6148. image: {
  6149. source: "./media/characters/cynosura/back.svg",
  6150. extra: 1365 / 1250
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Micro",
  6157. height: math.unit(4, "inches")
  6158. },
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(5.75, "feet"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Tall",
  6166. height: math.unit(10, "feet")
  6167. },
  6168. {
  6169. name: "Big",
  6170. height: math.unit(20, "feet")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(50, "feet")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(13 + 2/12, "feet"),
  6183. weight: math.unit(800, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/gin/front.svg",
  6187. extra: 1312/1191,
  6188. bottom: 45/1357
  6189. }
  6190. },
  6191. mouth: {
  6192. height: math.unit(2.39 * 1.8, "feet"),
  6193. name: "Mouth",
  6194. image: {
  6195. source: "./media/characters/gin/mouth.svg"
  6196. }
  6197. },
  6198. hand: {
  6199. height: math.unit(1.57 * 2.19, "feet"),
  6200. name: "Hand",
  6201. image: {
  6202. source: "./media/characters/gin/hand.svg"
  6203. }
  6204. },
  6205. foot: {
  6206. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6207. name: "Foot",
  6208. image: {
  6209. source: "./media/characters/gin/foot.svg"
  6210. }
  6211. },
  6212. sole: {
  6213. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6214. name: "Sole",
  6215. image: {
  6216. source: "./media/characters/gin/sole.svg"
  6217. }
  6218. },
  6219. },
  6220. [
  6221. {
  6222. name: "Very Small",
  6223. height: math.unit(13 + 2 / 12, "feet")
  6224. },
  6225. {
  6226. name: "Micro",
  6227. height: math.unit(600, "miles")
  6228. },
  6229. {
  6230. name: "Regular",
  6231. height: math.unit(20, "earths"),
  6232. default: true
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(2.2, "solarradii")
  6237. },
  6238. {
  6239. name: "Teramacro",
  6240. height: math.unit(1.2, "galaxies")
  6241. },
  6242. {
  6243. name: "Omegamacro",
  6244. height: math.unit(200, "universes")
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6 + 1 / 6, "feet"),
  6253. weight: math.unit(178, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/guy/front.svg"
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(6 + 1 / 6, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Large",
  6268. height: math.unit(25 + 7 / 12, "feet")
  6269. },
  6270. {
  6271. name: "Macro",
  6272. height: math.unit(60 + 9 / 12, "feet")
  6273. },
  6274. {
  6275. name: "Macro+",
  6276. height: math.unit(246, "feet")
  6277. },
  6278. {
  6279. name: "Macro++",
  6280. height: math.unit(878, "feet")
  6281. }
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(9, "feet"),
  6289. weight: math.unit(800, "lbs"),
  6290. name: "Front",
  6291. image: {
  6292. source: "./media/characters/tiberius/front.svg",
  6293. extra: 2295 / 2071
  6294. }
  6295. },
  6296. back: {
  6297. height: math.unit(9, "feet"),
  6298. weight: math.unit(800, "lbs"),
  6299. name: "Back",
  6300. image: {
  6301. source: "./media/characters/tiberius/back.svg",
  6302. extra: 2373 / 2160
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(9, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6316. {
  6317. front: {
  6318. height: math.unit(6, "feet"),
  6319. weight: math.unit(600, "lbs"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/surgo/front.svg",
  6323. extra: 3591 / 2227
  6324. }
  6325. },
  6326. back: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(600, "lbs"),
  6329. name: "Back",
  6330. image: {
  6331. source: "./media/characters/surgo/back.svg",
  6332. extra: 3557 / 2228
  6333. }
  6334. },
  6335. laying: {
  6336. height: math.unit(6 * 0.85, "feet"),
  6337. weight: math.unit(600, "lbs"),
  6338. name: "Laying",
  6339. image: {
  6340. source: "./media/characters/surgo/laying.svg"
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(6, "feet"),
  6348. default: true
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6354. {
  6355. side: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(150, "lbs"),
  6358. name: "Side",
  6359. image: {
  6360. source: "./media/characters/cibus/side.svg",
  6361. extra: 800 / 400
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(6, "feet"),
  6369. default: true
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(240, "lbs"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/nibbles/front.svg"
  6382. }
  6383. },
  6384. side: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(240, "lbs"),
  6387. name: "Side",
  6388. image: {
  6389. source: "./media/characters/nibbles/side.svg"
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(9, "feet"),
  6397. default: true
  6398. }
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6403. {
  6404. side: {
  6405. height: math.unit(5 + 1 / 6, "feet"),
  6406. weight: math.unit(130, "lbs"),
  6407. name: "Side",
  6408. image: {
  6409. source: "./media/characters/rikky/side.svg",
  6410. extra: 851 / 801
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Normal",
  6417. height: math.unit(5 + 1 / 6, "feet")
  6418. },
  6419. {
  6420. name: "Macro",
  6421. height: math.unit(152, "feet"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Megamacro",
  6426. height: math.unit(7, "miles")
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6432. {
  6433. side: {
  6434. height: math.unit(370, "cm"),
  6435. weight: math.unit(350, "lbs"),
  6436. name: "Side",
  6437. image: {
  6438. source: "./media/characters/malfressa/side.svg"
  6439. }
  6440. },
  6441. walking: {
  6442. height: math.unit(370, "cm"),
  6443. weight: math.unit(350, "lbs"),
  6444. name: "Walking",
  6445. image: {
  6446. source: "./media/characters/malfressa/walking.svg"
  6447. }
  6448. },
  6449. feral: {
  6450. height: math.unit(2500, "cm"),
  6451. weight: math.unit(100000, "lbs"),
  6452. name: "Feral",
  6453. image: {
  6454. source: "./media/characters/malfressa/feral.svg",
  6455. extra: 2108 / 837,
  6456. bottom: 0.02
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(370, "cm")
  6464. },
  6465. {
  6466. name: "Macro",
  6467. height: math.unit(300, "meters"),
  6468. default: true
  6469. }
  6470. ]
  6471. ))
  6472. characterMakers.push(() => makeCharacter(
  6473. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6474. {
  6475. front: {
  6476. height: math.unit(6, "feet"),
  6477. weight: math.unit(60, "kg"),
  6478. name: "Front",
  6479. image: {
  6480. source: "./media/characters/jaro/front.svg",
  6481. extra: 845/817,
  6482. bottom: 45/890
  6483. }
  6484. },
  6485. back: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(60, "kg"),
  6488. name: "Back",
  6489. image: {
  6490. source: "./media/characters/jaro/back.svg",
  6491. extra: 847/817,
  6492. bottom: 34/881
  6493. }
  6494. },
  6495. },
  6496. [
  6497. {
  6498. name: "Micro",
  6499. height: math.unit(7, "inches")
  6500. },
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(5.5, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Minimacro",
  6508. height: math.unit(20, "feet")
  6509. },
  6510. {
  6511. name: "Macro",
  6512. height: math.unit(200, "meters")
  6513. }
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6518. {
  6519. front: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(195, "lb"),
  6522. name: "Front",
  6523. image: {
  6524. source: "./media/characters/rogue/front.svg"
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(90, "feet"),
  6532. default: true
  6533. },
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6538. {
  6539. standing: {
  6540. height: math.unit(5 + 8 / 12, "feet"),
  6541. weight: math.unit(140, "lb"),
  6542. name: "Standing",
  6543. image: {
  6544. source: "./media/characters/piper/standing.svg",
  6545. extra: 1440/1284,
  6546. bottom: 66/1506
  6547. }
  6548. },
  6549. running: {
  6550. height: math.unit(5 + 8 / 12, "feet"),
  6551. weight: math.unit(140, "lb"),
  6552. name: "Running",
  6553. image: {
  6554. source: "./media/characters/piper/running.svg",
  6555. extra: 3948/3655,
  6556. bottom: 0/3948
  6557. }
  6558. },
  6559. sole: {
  6560. height: math.unit(0.81, "feet"),
  6561. weight: math.unit(2, "kg"),
  6562. name: "Sole",
  6563. image: {
  6564. source: "./media/characters/piper/sole.svg"
  6565. }
  6566. },
  6567. nipple: {
  6568. height: math.unit(0.25, "feet"),
  6569. weight: math.unit(1.5, "lb"),
  6570. name: "Nipple",
  6571. image: {
  6572. source: "./media/characters/piper/nipple.svg"
  6573. }
  6574. },
  6575. head: {
  6576. height: math.unit(1.1, "feet"),
  6577. name: "Head",
  6578. image: {
  6579. source: "./media/characters/piper/head.svg"
  6580. }
  6581. },
  6582. },
  6583. [
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(2, "inches")
  6587. },
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(5 + 8 / 12, "feet")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(250, "feet"),
  6595. default: true
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(7, "miles")
  6600. },
  6601. ]
  6602. ))
  6603. characterMakers.push(() => makeCharacter(
  6604. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6605. {
  6606. front: {
  6607. height: math.unit(6, "feet"),
  6608. weight: math.unit(220, "lb"),
  6609. name: "Front",
  6610. image: {
  6611. source: "./media/characters/gemini/front.svg"
  6612. }
  6613. },
  6614. back: {
  6615. height: math.unit(6, "feet"),
  6616. weight: math.unit(220, "lb"),
  6617. name: "Back",
  6618. image: {
  6619. source: "./media/characters/gemini/back.svg"
  6620. }
  6621. },
  6622. kneeling: {
  6623. height: math.unit(6 / 1.5, "feet"),
  6624. weight: math.unit(220, "lb"),
  6625. name: "Kneeling",
  6626. image: {
  6627. source: "./media/characters/gemini/kneeling.svg",
  6628. bottom: 0.02
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(300, "meters"),
  6636. default: true
  6637. },
  6638. {
  6639. name: "Megamacro",
  6640. height: math.unit(6900, "meters")
  6641. },
  6642. ]
  6643. ))
  6644. characterMakers.push(() => makeCharacter(
  6645. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6646. {
  6647. anthro: {
  6648. height: math.unit(2.35, "meters"),
  6649. weight: math.unit(73, "kg"),
  6650. name: "Anthro",
  6651. image: {
  6652. source: "./media/characters/alicia/anthro.svg",
  6653. extra: 2571 / 2385,
  6654. bottom: 75 / 2648
  6655. }
  6656. },
  6657. paw: {
  6658. height: math.unit(1.32, "feet"),
  6659. name: "Paw",
  6660. image: {
  6661. source: "./media/characters/alicia/paw.svg"
  6662. }
  6663. },
  6664. feral: {
  6665. height: math.unit(1.69, "meters"),
  6666. weight: math.unit(73, "kg"),
  6667. name: "Feral",
  6668. image: {
  6669. source: "./media/characters/alicia/feral.svg",
  6670. extra: 2123 / 1715,
  6671. bottom: 222 / 2349
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(2.35, "meters")
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(60, "meters"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Megamacro",
  6687. height: math.unit(10000, "kilometers")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(7, "feet"),
  6696. weight: math.unit(250, "lbs"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/archy/front.svg"
  6700. }
  6701. }
  6702. },
  6703. [
  6704. {
  6705. name: "Micro",
  6706. height: math.unit(1, "inch")
  6707. },
  6708. {
  6709. name: "Shorty",
  6710. height: math.unit(5, "feet")
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(7, "feet")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(600, "meters"),
  6719. default: true
  6720. },
  6721. {
  6722. name: "Megamacro",
  6723. height: math.unit(1, "mile")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.65, "meters"),
  6732. weight: math.unit(74, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/berri/front.svg",
  6736. extra: 857 / 837,
  6737. bottom: 18 / 877
  6738. }
  6739. },
  6740. bum: {
  6741. height: math.unit(1.46, "feet"),
  6742. name: "Bum",
  6743. image: {
  6744. source: "./media/characters/berri/bum.svg"
  6745. }
  6746. },
  6747. mouth: {
  6748. height: math.unit(0.44, "feet"),
  6749. name: "Mouth",
  6750. image: {
  6751. source: "./media/characters/berri/mouth.svg"
  6752. }
  6753. },
  6754. paw: {
  6755. height: math.unit(0.826, "feet"),
  6756. name: "Paw",
  6757. image: {
  6758. source: "./media/characters/berri/paw.svg"
  6759. }
  6760. },
  6761. },
  6762. [
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(1.65, "meters")
  6766. },
  6767. {
  6768. name: "Macro",
  6769. height: math.unit(60, "m"),
  6770. default: true
  6771. },
  6772. {
  6773. name: "Megamacro",
  6774. height: math.unit(9.213, "km")
  6775. },
  6776. {
  6777. name: "Planet Eater",
  6778. height: math.unit(489, "megameters")
  6779. },
  6780. {
  6781. name: "Teramacro",
  6782. height: math.unit(2471635000000, "meters")
  6783. },
  6784. {
  6785. name: "Examacro",
  6786. height: math.unit(8.0624e+26, "meters")
  6787. }
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(1.72, "meters"),
  6795. weight: math.unit(68, "kg"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/lexi/front.svg"
  6799. }
  6800. }
  6801. },
  6802. [
  6803. {
  6804. name: "Very Smol",
  6805. height: math.unit(10, "mm")
  6806. },
  6807. {
  6808. name: "Micro",
  6809. height: math.unit(6.8, "cm"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(1.72, "m")
  6815. }
  6816. ]
  6817. ))
  6818. characterMakers.push(() => makeCharacter(
  6819. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6820. {
  6821. front: {
  6822. height: math.unit(1.69, "meters"),
  6823. weight: math.unit(68, "kg"),
  6824. name: "Front",
  6825. image: {
  6826. source: "./media/characters/martin/front.svg",
  6827. extra: 596 / 581
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(6.85, "cm"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(1.69, "m")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(1.69, "meters"),
  6848. weight: math.unit(68, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/juno/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Micro",
  6858. height: math.unit(7, "cm")
  6859. },
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(1.89, "m")
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(353, "meters"),
  6867. default: true
  6868. }
  6869. ]
  6870. ))
  6871. characterMakers.push(() => makeCharacter(
  6872. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6873. {
  6874. front: {
  6875. height: math.unit(1.93, "meters"),
  6876. weight: math.unit(83, "kg"),
  6877. name: "Front",
  6878. image: {
  6879. source: "./media/characters/samantha/front.svg"
  6880. }
  6881. },
  6882. frontClothed: {
  6883. height: math.unit(1.93, "meters"),
  6884. weight: math.unit(83, "kg"),
  6885. name: "Front (Clothed)",
  6886. image: {
  6887. source: "./media/characters/samantha/front-clothed.svg"
  6888. }
  6889. },
  6890. back: {
  6891. height: math.unit(1.93, "meters"),
  6892. weight: math.unit(83, "kg"),
  6893. name: "Back",
  6894. image: {
  6895. source: "./media/characters/samantha/back.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.93, "m")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(74, "meters"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro+",
  6911. height: math.unit(223, "meters"),
  6912. },
  6913. {
  6914. name: "Megamacro",
  6915. height: math.unit(8381, "meters"),
  6916. },
  6917. {
  6918. name: "Megamacro+",
  6919. height: math.unit(12000, "kilometers")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(1.92, "meters"),
  6928. weight: math.unit(80, "kg"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/dr-clay/front.svg"
  6932. }
  6933. },
  6934. frontClothed: {
  6935. height: math.unit(1.92, "meters"),
  6936. weight: math.unit(80, "kg"),
  6937. name: "Front (Clothed)",
  6938. image: {
  6939. source: "./media/characters/dr-clay/front-clothed.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Normal",
  6946. height: math.unit(1.92, "m")
  6947. },
  6948. {
  6949. name: "Macro",
  6950. height: math.unit(214, "meters"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro+",
  6955. height: math.unit(12.237, "meters"),
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(557, "megameters"),
  6960. },
  6961. {
  6962. name: "Unimaginable",
  6963. height: math.unit(120e9, "lightyears")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(2, "meters"),
  6972. weight: math.unit(80, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6976. }
  6977. }
  6978. },
  6979. [
  6980. {
  6981. name: "Teramacro",
  6982. height: math.unit(500000, "lightyears"),
  6983. default: true
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6989. {
  6990. crux: {
  6991. height: math.unit(2, "meters"),
  6992. weight: math.unit(150, "kg"),
  6993. name: "Crux",
  6994. image: {
  6995. source: "./media/characters/vemus/crux.svg",
  6996. extra: 1074/936,
  6997. bottom: 23/1097
  6998. }
  6999. },
  7000. skunkTanuki: {
  7001. height: math.unit(2, "meters"),
  7002. weight: math.unit(150, "kg"),
  7003. name: "Skunk-Tanuki",
  7004. image: {
  7005. source: "./media/characters/vemus/skunk-tanuki.svg",
  7006. extra: 926/893,
  7007. bottom: 20/946
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Normal",
  7014. height: math.unit(3.75, "meters"),
  7015. default: true
  7016. },
  7017. {
  7018. name: "Big",
  7019. height: math.unit(8, "meters")
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(100, "meters")
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(1500, "meters")
  7028. },
  7029. {
  7030. name: "Stellar",
  7031. height: math.unit(14e8, "meters")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(2, "meters"),
  7040. weight: math.unit(70, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/beherit/front.svg",
  7044. extra: 1234/1109,
  7045. bottom: 55/1289
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(6, "feet")
  7053. },
  7054. {
  7055. name: "Lorg",
  7056. height: math.unit(25, "feet"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Lorger",
  7061. height: math.unit(75, "feet")
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(200, "meters")
  7066. },
  7067. ]
  7068. ))
  7069. characterMakers.push(() => makeCharacter(
  7070. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7071. {
  7072. front: {
  7073. height: math.unit(2, "meters"),
  7074. weight: math.unit(150, "kg"),
  7075. name: "Front",
  7076. image: {
  7077. source: "./media/characters/everett/front.svg",
  7078. extra: 1017/866,
  7079. bottom: 86/1103
  7080. }
  7081. },
  7082. paw: {
  7083. height: math.unit(2 / 3.6, "meters"),
  7084. name: "Paw",
  7085. image: {
  7086. source: "./media/characters/everett/paw.svg"
  7087. }
  7088. },
  7089. },
  7090. [
  7091. {
  7092. name: "Normal",
  7093. height: math.unit(15, "feet"),
  7094. default: true
  7095. },
  7096. {
  7097. name: "Lorg",
  7098. height: math.unit(70, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Lorger",
  7103. height: math.unit(250, "feet")
  7104. },
  7105. {
  7106. name: "Macro",
  7107. height: math.unit(500, "meters")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(2, "meters"),
  7116. weight: math.unit(86, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/rose/front.svg",
  7120. extra: 1785/1636,
  7121. bottom: 30/1815
  7122. },
  7123. form: "liom",
  7124. default: true
  7125. },
  7126. frontSporty: {
  7127. height: math.unit(2, "meters"),
  7128. weight: math.unit(86, "kg"),
  7129. name: "Front (Sporty)",
  7130. image: {
  7131. source: "./media/characters/rose/front-sporty.svg",
  7132. extra: 350/335,
  7133. bottom: 10/360
  7134. },
  7135. form: "liom"
  7136. },
  7137. frontAlt: {
  7138. height: math.unit(1.6, "meters"),
  7139. weight: math.unit(86, "kg"),
  7140. name: "Front (Alt)",
  7141. image: {
  7142. source: "./media/characters/rose/front-alt.svg",
  7143. extra: 299/283,
  7144. bottom: 3/302
  7145. },
  7146. form: "liom"
  7147. },
  7148. plush: {
  7149. height: math.unit(2, "meters"),
  7150. weight: math.unit(86/3, "kg"),
  7151. name: "Plush",
  7152. image: {
  7153. source: "./media/characters/rose/plush.svg",
  7154. extra: 361/337,
  7155. bottom: 11/372
  7156. },
  7157. form: "plush",
  7158. default: true
  7159. },
  7160. faeStanding: {
  7161. height: math.unit(10, "cm"),
  7162. weight: math.unit(10, "grams"),
  7163. name: "Standing",
  7164. image: {
  7165. source: "./media/characters/rose/fae-standing.svg",
  7166. extra: 1189/1060,
  7167. bottom: 27/1216
  7168. },
  7169. form: "fae",
  7170. default: true
  7171. },
  7172. faeSitting: {
  7173. height: math.unit(5, "cm"),
  7174. weight: math.unit(10, "grams"),
  7175. name: "Sitting",
  7176. image: {
  7177. source: "./media/characters/rose/fae-sitting.svg",
  7178. extra: 737/577,
  7179. bottom: 356/1093
  7180. },
  7181. form: "fae"
  7182. },
  7183. faePaw: {
  7184. height: math.unit(1.35, "cm"),
  7185. name: "Paw",
  7186. image: {
  7187. source: "./media/characters/rose/fae-paw.svg"
  7188. },
  7189. form: "fae"
  7190. },
  7191. },
  7192. [
  7193. {
  7194. name: "True Micro",
  7195. height: math.unit(9, "cm"),
  7196. form: "liom"
  7197. },
  7198. {
  7199. name: "Micro",
  7200. height: math.unit(16, "cm"),
  7201. form: "liom"
  7202. },
  7203. {
  7204. name: "Normal",
  7205. height: math.unit(1.85, "meters"),
  7206. default: true,
  7207. form: "liom"
  7208. },
  7209. {
  7210. name: "Mini-Macro",
  7211. height: math.unit(5, "meters"),
  7212. form: "liom"
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(15, "meters"),
  7217. form: "liom"
  7218. },
  7219. {
  7220. name: "True Macro",
  7221. height: math.unit(40, "meters"),
  7222. form: "liom"
  7223. },
  7224. {
  7225. name: "City Scale",
  7226. height: math.unit(1, "km"),
  7227. form: "liom"
  7228. },
  7229. {
  7230. name: "Plushie",
  7231. height: math.unit(9, "cm"),
  7232. form: "plush",
  7233. default: true
  7234. },
  7235. {
  7236. name: "Fae",
  7237. height: math.unit(10, "cm"),
  7238. form: "fae",
  7239. default: true
  7240. },
  7241. ],
  7242. {
  7243. "liom": {
  7244. name: "Liom"
  7245. },
  7246. "plush": {
  7247. name: "Plush"
  7248. },
  7249. "fae": {
  7250. name: "Fae Fox",
  7251. default: true
  7252. }
  7253. }
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(2, "meters"),
  7260. weight: math.unit(350, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/regal/front.svg"
  7264. }
  7265. },
  7266. back: {
  7267. height: math.unit(2, "meters"),
  7268. weight: math.unit(350, "lbs"),
  7269. name: "Back",
  7270. image: {
  7271. source: "./media/characters/regal/back.svg"
  7272. }
  7273. },
  7274. },
  7275. [
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(350, "feet"),
  7279. default: true
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(4 + 11 / 12, "feet"),
  7288. weight: math.unit(100, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/opal/front.svg"
  7292. }
  7293. },
  7294. frontAlt: {
  7295. height: math.unit(4 + 11 / 12, "feet"),
  7296. weight: math.unit(100, "lbs"),
  7297. name: "Front (Alt)",
  7298. image: {
  7299. source: "./media/characters/opal/front-alt.svg"
  7300. }
  7301. },
  7302. },
  7303. [
  7304. {
  7305. name: "Small",
  7306. height: math.unit(4 + 11 / 12, "feet")
  7307. },
  7308. {
  7309. name: "Normal",
  7310. height: math.unit(20, "feet"),
  7311. default: true
  7312. },
  7313. {
  7314. name: "Macro",
  7315. height: math.unit(120, "feet")
  7316. },
  7317. {
  7318. name: "Megamacro",
  7319. height: math.unit(80, "miles")
  7320. },
  7321. {
  7322. name: "True Size",
  7323. height: math.unit(100000, "lightyears")
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(200, "lbs"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/vector-wuff/front.svg"
  7336. }
  7337. }
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(2.8, "meters")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(450, "meters"),
  7347. default: true
  7348. },
  7349. {
  7350. name: "Megamacro",
  7351. height: math.unit(15, "kilometers")
  7352. }
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(256, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/dannik/front.svg"
  7364. }
  7365. }
  7366. },
  7367. [
  7368. {
  7369. name: "Macro",
  7370. height: math.unit(69.57, "meters"),
  7371. default: true
  7372. },
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7377. {
  7378. front: {
  7379. height: math.unit(6, "feet"),
  7380. weight: math.unit(120, "lbs"),
  7381. name: "Front",
  7382. image: {
  7383. source: "./media/characters/azura-saharah/front.svg"
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(120, "lbs"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/azura-saharah/back.svg"
  7392. }
  7393. },
  7394. },
  7395. [
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(100, "feet"),
  7399. default: true
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7405. {
  7406. side: {
  7407. height: math.unit(5 + 4 / 12, "feet"),
  7408. weight: math.unit(163, "lbs"),
  7409. name: "Side",
  7410. image: {
  7411. source: "./media/characters/kennedy/side.svg"
  7412. }
  7413. }
  7414. },
  7415. [
  7416. {
  7417. name: "Standard Doggo",
  7418. height: math.unit(5 + 4 / 12, "feet")
  7419. },
  7420. {
  7421. name: "Big Doggo",
  7422. height: math.unit(25 + 3 / 12, "feet"),
  7423. default: true
  7424. },
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(5 + 5/12, "feet"),
  7432. weight: math.unit(100, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/odios-de-lunar/front.svg",
  7436. extra: 1468/1323,
  7437. bottom: 22/1490
  7438. }
  7439. }
  7440. },
  7441. [
  7442. {
  7443. name: "Micro",
  7444. height: math.unit(3, "inches")
  7445. },
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(5.5, "feet"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(100, "feet")
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7459. {
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(220, "lbs"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/mandake/back.svg"
  7466. }
  7467. }
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(7, "feet"),
  7473. default: true
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(78, "feet")
  7478. },
  7479. {
  7480. name: "Macro+",
  7481. height: math.unit(300, "meters")
  7482. },
  7483. {
  7484. name: "Macro++",
  7485. height: math.unit(2400, "feet")
  7486. },
  7487. {
  7488. name: "Megamacro",
  7489. height: math.unit(5167, "meters")
  7490. },
  7491. {
  7492. name: "Gigamacro",
  7493. height: math.unit(41769, "miles")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(120, "lbs"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/yozey/front.svg"
  7506. }
  7507. },
  7508. frontAlt: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(120, "lbs"),
  7511. name: "Front (Alt)",
  7512. image: {
  7513. source: "./media/characters/yozey/front-alt.svg"
  7514. }
  7515. },
  7516. side: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(120, "lbs"),
  7519. name: "Side",
  7520. image: {
  7521. source: "./media/characters/yozey/side.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Micro",
  7528. height: math.unit(3, "inches"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(6, "feet")
  7534. }
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(103, "lbs"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/valeska-voss/front.svg"
  7546. }
  7547. }
  7548. },
  7549. [
  7550. {
  7551. name: "Mini-Sized Sub",
  7552. height: math.unit(3.1, "inches")
  7553. },
  7554. {
  7555. name: "Mid-Sized Sub",
  7556. height: math.unit(6.2, "inches")
  7557. },
  7558. {
  7559. name: "Full-Sized Sub",
  7560. height: math.unit(9.3, "inches")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 2 / 12, "foot"),
  7565. default: true
  7566. },
  7567. ]
  7568. ))
  7569. characterMakers.push(() => makeCharacter(
  7570. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7571. {
  7572. front: {
  7573. height: math.unit(6, "feet"),
  7574. weight: math.unit(160, "lbs"),
  7575. name: "Front",
  7576. image: {
  7577. source: "./media/characters/gene-zeta/front.svg",
  7578. extra: 3006 / 2826,
  7579. bottom: 182 / 3188
  7580. }
  7581. }
  7582. },
  7583. [
  7584. {
  7585. name: "Micro",
  7586. height: math.unit(6, "inches")
  7587. },
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(5 + 11 / 12, "foot"),
  7591. default: true
  7592. },
  7593. {
  7594. name: "Macro",
  7595. height: math.unit(140, "feet")
  7596. },
  7597. {
  7598. name: "Supercharged",
  7599. height: math.unit(2500, "feet")
  7600. },
  7601. ]
  7602. ))
  7603. characterMakers.push(() => makeCharacter(
  7604. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7605. {
  7606. front: {
  7607. height: math.unit(6, "feet"),
  7608. weight: math.unit(350, "lbs"),
  7609. name: "Front",
  7610. image: {
  7611. source: "./media/characters/razinox/front.svg",
  7612. extra: 1686 / 1548,
  7613. bottom: 28.2 / 1868
  7614. }
  7615. },
  7616. back: {
  7617. height: math.unit(6, "feet"),
  7618. weight: math.unit(350, "lbs"),
  7619. name: "Back",
  7620. image: {
  7621. source: "./media/characters/razinox/back.svg",
  7622. extra: 1660 / 1590,
  7623. bottom: 15 / 1665
  7624. }
  7625. },
  7626. },
  7627. [
  7628. {
  7629. name: "Normal",
  7630. height: math.unit(10 + 8 / 12, "foot")
  7631. },
  7632. {
  7633. name: "Minimacro",
  7634. height: math.unit(15, "foot")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "foot"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(5, "miles")
  7644. },
  7645. {
  7646. name: "Gigamacro",
  7647. height: math.unit(6000, "miles")
  7648. },
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(6, "feet"),
  7656. weight: math.unit(150, "lbs"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/cobalt/front.svg"
  7660. }
  7661. }
  7662. },
  7663. [
  7664. {
  7665. name: "Normal",
  7666. height: math.unit(8 + 1 / 12, "foot")
  7667. },
  7668. {
  7669. name: "Macro",
  7670. height: math.unit(111, "foot"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Supracosmic",
  7675. height: math.unit(1e42, "feet")
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(5, "inches"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/amanda/front.svg",
  7687. extra: 926/791,
  7688. bottom: 38/964
  7689. }
  7690. },
  7691. back: {
  7692. height: math.unit(5, "inches"),
  7693. name: "Back",
  7694. image: {
  7695. source: "./media/characters/amanda/back.svg",
  7696. extra: 909/805,
  7697. bottom: 43/952
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Micro",
  7704. height: math.unit(5, "inches"),
  7705. default: true
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(2.75, "meters"),
  7714. weight: math.unit(1200, "lb"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/teal/front.svg",
  7718. extra: 2463 / 2320,
  7719. bottom: 166 / 2629
  7720. }
  7721. },
  7722. back: {
  7723. height: math.unit(2.75, "meters"),
  7724. weight: math.unit(1200, "lb"),
  7725. name: "Back",
  7726. image: {
  7727. source: "./media/characters/teal/back.svg",
  7728. extra: 2580 / 2489,
  7729. bottom: 151 / 2731
  7730. }
  7731. },
  7732. sitting: {
  7733. height: math.unit(1.9, "meters"),
  7734. weight: math.unit(1200, "lb"),
  7735. name: "Sitting",
  7736. image: {
  7737. source: "./media/characters/teal/sitting.svg",
  7738. extra: 623 / 590,
  7739. bottom: 121 / 744
  7740. }
  7741. },
  7742. standing: {
  7743. height: math.unit(2.75, "meters"),
  7744. weight: math.unit(1200, "lb"),
  7745. name: "Standing",
  7746. image: {
  7747. source: "./media/characters/teal/standing.svg",
  7748. extra: 923 / 893,
  7749. bottom: 60 / 983
  7750. }
  7751. },
  7752. stretching: {
  7753. height: math.unit(3.65, "meters"),
  7754. weight: math.unit(1200, "lb"),
  7755. name: "Stretching",
  7756. image: {
  7757. source: "./media/characters/teal/stretching.svg",
  7758. extra: 1276 / 1244,
  7759. bottom: 0 / 1276
  7760. }
  7761. },
  7762. legged: {
  7763. height: math.unit(1.3, "meters"),
  7764. weight: math.unit(100, "lb"),
  7765. name: "Legged",
  7766. image: {
  7767. source: "./media/characters/teal/legged.svg",
  7768. extra: 462 / 437,
  7769. bottom: 24 / 486
  7770. }
  7771. },
  7772. naga: {
  7773. height: math.unit(5.4, "meters"),
  7774. weight: math.unit(4000, "lb"),
  7775. name: "Naga",
  7776. image: {
  7777. source: "./media/characters/teal/naga.svg",
  7778. extra: 1902 / 1858,
  7779. bottom: 0 / 1902
  7780. }
  7781. },
  7782. hand: {
  7783. height: math.unit(0.52, "meters"),
  7784. name: "Hand",
  7785. image: {
  7786. source: "./media/characters/teal/hand.svg"
  7787. }
  7788. },
  7789. maw: {
  7790. height: math.unit(0.43, "meters"),
  7791. name: "Maw",
  7792. image: {
  7793. source: "./media/characters/teal/maw.svg"
  7794. }
  7795. },
  7796. slit: {
  7797. height: math.unit(0.25, "meters"),
  7798. name: "Slit",
  7799. image: {
  7800. source: "./media/characters/teal/slit.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(2.75, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro",
  7812. height: math.unit(300, "feet")
  7813. },
  7814. {
  7815. name: "Macro+",
  7816. height: math.unit(2000, "feet")
  7817. },
  7818. ]
  7819. ))
  7820. characterMakers.push(() => makeCharacter(
  7821. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7822. {
  7823. frontCat: {
  7824. height: math.unit(6, "feet"),
  7825. weight: math.unit(180, "lbs"),
  7826. name: "Front (Cat)",
  7827. image: {
  7828. source: "./media/characters/ravin-amulet/front-cat.svg"
  7829. }
  7830. },
  7831. frontCatAlt: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(180, "lbs"),
  7834. name: "Front (Alt, Cat)",
  7835. image: {
  7836. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7837. }
  7838. },
  7839. frontWerewolf: {
  7840. height: math.unit(6 * 1.2, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Front (Werewolf)",
  7843. image: {
  7844. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7845. }
  7846. },
  7847. backWerewolf: {
  7848. height: math.unit(6 * 1.2, "feet"),
  7849. weight: math.unit(225, "lbs"),
  7850. name: "Back (Werewolf)",
  7851. image: {
  7852. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Nano",
  7859. height: math.unit(1, "micrometer")
  7860. },
  7861. {
  7862. name: "Micro",
  7863. height: math.unit(1, "inch")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(6, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(60, "feet")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(6, "feet"),
  7881. weight: math.unit(165, "lbs"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/fluoresce/front.svg"
  7885. }
  7886. }
  7887. },
  7888. [
  7889. {
  7890. name: "Micro",
  7891. height: math.unit(6, "cm")
  7892. },
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(5 + 7 / 12, "feet"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(56, "feet")
  7901. },
  7902. {
  7903. name: "Megamacro",
  7904. height: math.unit(1.9, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(9 + 6 / 12, "feet"),
  7913. weight: math.unit(523, "lbs"),
  7914. name: "Side",
  7915. image: {
  7916. source: "./media/characters/aurora/side.svg"
  7917. }
  7918. }
  7919. },
  7920. [
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(9 + 6 / 12, "feet")
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(96, "feet"),
  7928. default: true
  7929. },
  7930. {
  7931. name: "Macro+",
  7932. height: math.unit(243, "feet")
  7933. },
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(194, "cm"),
  7941. weight: math.unit(90, "kg"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/ranek/front.svg",
  7945. extra: 1862/1791,
  7946. bottom: 80/1942
  7947. }
  7948. },
  7949. back: {
  7950. height: math.unit(194, "cm"),
  7951. weight: math.unit(90, "kg"),
  7952. name: "Back",
  7953. image: {
  7954. source: "./media/characters/ranek/back.svg",
  7955. extra: 1853/1787,
  7956. bottom: 74/1927
  7957. }
  7958. },
  7959. feral: {
  7960. height: math.unit(30, "cm"),
  7961. weight: math.unit(1.6, "lbs"),
  7962. name: "Feral",
  7963. image: {
  7964. source: "./media/characters/ranek/feral.svg",
  7965. extra: 990/631,
  7966. bottom: 29/1019
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(194, "cm"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Macro",
  7978. height: math.unit(100, "meters")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(5 + 6 / 12, "feet"),
  7987. weight: math.unit(153, "lbs"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/andrew-cooper/front.svg"
  7991. }
  7992. },
  7993. },
  7994. [
  7995. {
  7996. name: "Nano",
  7997. height: math.unit(1, "mm")
  7998. },
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(2, "inches")
  8002. },
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(5 + 6 / 12, "feet"),
  8006. default: true
  8007. }
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(180, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/akane-sato/front.svg",
  8019. extra: 1219 / 1140
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(6, "feet"),
  8024. weight: math.unit(180, "lbs"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/akane-sato/back.svg",
  8028. extra: 1219 / 1170
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(2.5, "meters")
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(250, "meters"),
  8040. default: true
  8041. },
  8042. {
  8043. name: "Megamacro",
  8044. height: math.unit(25, "km")
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(65, "kg"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/rook/front.svg",
  8057. extra: 960 / 950
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Normal",
  8064. height: math.unit(8.8, "feet")
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(88, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Megamacro",
  8073. height: math.unit(8, "miles")
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(12 + 2 / 12, "feet"),
  8082. weight: math.unit(808, "lbs"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/prodigy/front.svg"
  8086. }
  8087. }
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(12 + 2 / 12, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(143, "feet")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(400, "feet")
  8102. },
  8103. ]
  8104. ))
  8105. characterMakers.push(() => makeCharacter(
  8106. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8107. {
  8108. front: {
  8109. height: math.unit(6, "feet"),
  8110. weight: math.unit(225, "lbs"),
  8111. name: "Front",
  8112. image: {
  8113. source: "./media/characters/daniel/front.svg"
  8114. }
  8115. },
  8116. leaning: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(225, "lbs"),
  8119. name: "Leaning",
  8120. image: {
  8121. source: "./media/characters/daniel/leaning.svg"
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(1000, "feet"),
  8129. default: true
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(6, "feet"),
  8138. weight: math.unit(88, "lbs"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/chiros/front.svg",
  8142. extra: 306 / 226
  8143. }
  8144. },
  8145. side: {
  8146. height: math.unit(6, "feet"),
  8147. weight: math.unit(88, "lbs"),
  8148. name: "Side",
  8149. image: {
  8150. source: "./media/characters/chiros/side.svg",
  8151. extra: 306 / 226
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "cm"),
  8159. default: true
  8160. },
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(100, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/selka/front.svg",
  8172. extra: 947 / 887
  8173. }
  8174. }
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(5, "cm"),
  8180. default: true
  8181. },
  8182. ]
  8183. ))
  8184. characterMakers.push(() => makeCharacter(
  8185. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8186. {
  8187. front: {
  8188. height: math.unit(8 + 3 / 12, "feet"),
  8189. weight: math.unit(424, "lbs"),
  8190. name: "Front",
  8191. image: {
  8192. source: "./media/characters/verin/front.svg",
  8193. extra: 1845 / 1550
  8194. }
  8195. },
  8196. frontArmored: {
  8197. height: math.unit(8 + 3 / 12, "feet"),
  8198. weight: math.unit(424, "lbs"),
  8199. name: "Front (Armored)",
  8200. image: {
  8201. source: "./media/characters/verin/front-armor.svg",
  8202. extra: 1845 / 1550,
  8203. bottom: 0.01
  8204. }
  8205. },
  8206. back: {
  8207. height: math.unit(8 + 3 / 12, "feet"),
  8208. weight: math.unit(424, "lbs"),
  8209. name: "Back",
  8210. image: {
  8211. source: "./media/characters/verin/back.svg",
  8212. bottom: 0.1,
  8213. extra: 1
  8214. }
  8215. },
  8216. foot: {
  8217. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8218. name: "Foot",
  8219. image: {
  8220. source: "./media/characters/verin/foot.svg"
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Normal",
  8227. height: math.unit(8 + 3 / 12, "feet")
  8228. },
  8229. {
  8230. name: "Minimacro",
  8231. height: math.unit(21, "feet"),
  8232. default: true
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(626, "feet")
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(2.718, "meters"),
  8245. weight: math.unit(150, "lbs"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/sovrim-terraquian/front.svg",
  8249. extra: 1752/1689,
  8250. bottom: 36/1788
  8251. }
  8252. },
  8253. back: {
  8254. height: math.unit(2.718, "meters"),
  8255. weight: math.unit(150, "lbs"),
  8256. name: "Back",
  8257. image: {
  8258. source: "./media/characters/sovrim-terraquian/back.svg",
  8259. extra: 1698/1657,
  8260. bottom: 58/1756
  8261. }
  8262. },
  8263. tongue: {
  8264. height: math.unit(2.865, "feet"),
  8265. name: "Tongue",
  8266. image: {
  8267. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8268. }
  8269. },
  8270. hand: {
  8271. height: math.unit(1.61, "feet"),
  8272. name: "Hand",
  8273. image: {
  8274. source: "./media/characters/sovrim-terraquian/hand.svg"
  8275. }
  8276. },
  8277. foot: {
  8278. height: math.unit(1.05, "feet"),
  8279. name: "Foot",
  8280. image: {
  8281. source: "./media/characters/sovrim-terraquian/foot.svg"
  8282. }
  8283. },
  8284. footAlt: {
  8285. height: math.unit(0.88, "feet"),
  8286. name: "Foot (Alt)",
  8287. image: {
  8288. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Micro",
  8295. height: math.unit(2, "inches")
  8296. },
  8297. {
  8298. name: "Small",
  8299. height: math.unit(1, "meter")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(Math.E, "meters"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(20, "meters")
  8309. },
  8310. {
  8311. name: "Macro+",
  8312. height: math.unit(400, "meters")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(7, "feet"),
  8321. weight: math.unit(489, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/reece-silvermane/front.svg",
  8325. bottom: 0.02,
  8326. extra: 1
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(1.5, "miles"),
  8334. default: true
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(78, "kg"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/kane/front.svg",
  8347. extra: 978 / 899
  8348. }
  8349. },
  8350. },
  8351. [
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(2.1, "m"),
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(1, "km"),
  8359. default: true
  8360. },
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(200, "kg"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/tegon/front.svg",
  8372. bottom: 0.01,
  8373. extra: 1
  8374. }
  8375. },
  8376. },
  8377. [
  8378. {
  8379. name: "Micro",
  8380. height: math.unit(1, "inch")
  8381. },
  8382. {
  8383. name: "Normal",
  8384. height: math.unit(6 + 3 / 12, "feet"),
  8385. default: true
  8386. },
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(300, "feet")
  8390. },
  8391. {
  8392. name: "Megamacro",
  8393. height: math.unit(69, "miles")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8399. {
  8400. side: {
  8401. height: math.unit(6, "feet"),
  8402. weight: math.unit(2304, "lbs"),
  8403. name: "Side",
  8404. image: {
  8405. source: "./media/characters/arcturax/side.svg",
  8406. extra: 790 / 376,
  8407. bottom: 0.01
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Micro",
  8414. height: math.unit(2, "inch")
  8415. },
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(6, "feet")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(39, "feet"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(7, "miles")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(50, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/sentri/front.svg",
  8440. extra: 1750 / 1570,
  8441. bottom: 0.025
  8442. }
  8443. },
  8444. frontAlt: {
  8445. height: math.unit(6, "feet"),
  8446. weight: math.unit(50, "lbs"),
  8447. name: "Front (Alt)",
  8448. image: {
  8449. source: "./media/characters/sentri/front-alt.svg",
  8450. extra: 1750 / 1570,
  8451. bottom: 0.025
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(15, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(2500, "feet")
  8464. }
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(5 + 8 / 12, "feet"),
  8472. weight: math.unit(130, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/corvin/front.svg",
  8476. extra: 1803 / 1629
  8477. }
  8478. },
  8479. frontShirt: {
  8480. height: math.unit(5 + 8 / 12, "feet"),
  8481. weight: math.unit(130, "lbs"),
  8482. name: "Front (Shirt)",
  8483. image: {
  8484. source: "./media/characters/corvin/front-shirt.svg",
  8485. extra: 1803 / 1629
  8486. }
  8487. },
  8488. frontPoncho: {
  8489. height: math.unit(5 + 8 / 12, "feet"),
  8490. weight: math.unit(130, "lbs"),
  8491. name: "Front (Poncho)",
  8492. image: {
  8493. source: "./media/characters/corvin/front-poncho.svg",
  8494. extra: 1803 / 1629
  8495. }
  8496. },
  8497. side: {
  8498. height: math.unit(5 + 8 / 12, "feet"),
  8499. weight: math.unit(130, "lbs"),
  8500. name: "Side",
  8501. image: {
  8502. source: "./media/characters/corvin/side.svg",
  8503. extra: 1012 / 945
  8504. }
  8505. },
  8506. back: {
  8507. height: math.unit(5 + 8 / 12, "feet"),
  8508. weight: math.unit(130, "lbs"),
  8509. name: "Back",
  8510. image: {
  8511. source: "./media/characters/corvin/back.svg",
  8512. extra: 1803 / 1629
  8513. }
  8514. },
  8515. },
  8516. [
  8517. {
  8518. name: "Micro",
  8519. height: math.unit(3, "inches")
  8520. },
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(5 + 8 / 12, "feet")
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(300, "feet"),
  8528. default: true
  8529. },
  8530. {
  8531. name: "Megamacro",
  8532. height: math.unit(500, "miles")
  8533. }
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(135, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/q/front.svg",
  8545. extra: 854 / 752,
  8546. bottom: 0.005
  8547. }
  8548. },
  8549. back: {
  8550. height: math.unit(6, "feet"),
  8551. weight: math.unit(130, "lbs"),
  8552. name: "Back",
  8553. image: {
  8554. source: "./media/characters/q/back.svg",
  8555. extra: 854 / 752
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(90, "feet"),
  8563. default: true
  8564. },
  8565. {
  8566. name: "Extra Macro",
  8567. height: math.unit(300, "feet"),
  8568. },
  8569. {
  8570. name: "BIG WALF",
  8571. height: math.unit(750, "feet"),
  8572. },
  8573. ]
  8574. ))
  8575. characterMakers.push(() => makeCharacter(
  8576. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8577. {
  8578. front: {
  8579. height: math.unit(6, "feet"),
  8580. weight: math.unit(150, "lbs"),
  8581. name: "Front",
  8582. image: {
  8583. source: "./media/characters/carley/front.svg",
  8584. extra: 3927 / 3540,
  8585. bottom: 29.2 / 735
  8586. }
  8587. }
  8588. },
  8589. [
  8590. {
  8591. name: "Normal",
  8592. height: math.unit(6 + 3 / 12, "feet")
  8593. },
  8594. {
  8595. name: "Macro",
  8596. height: math.unit(185, "feet"),
  8597. default: true
  8598. },
  8599. {
  8600. name: "Megamacro",
  8601. height: math.unit(8, "miles"),
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(3, "feet"),
  8610. weight: math.unit(28, "lbs"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/citrine/front.svg"
  8614. }
  8615. }
  8616. },
  8617. [
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(3, "feet"),
  8621. default: true
  8622. }
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8627. {
  8628. front: {
  8629. height: math.unit(14, "feet"),
  8630. weight: math.unit(1450, "kg"),
  8631. capacity: math.unit(15, "people"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/aura-starwind/front.svg",
  8635. extra: 1440/1327,
  8636. bottom: 11/1451
  8637. }
  8638. },
  8639. side: {
  8640. height: math.unit(14, "feet"),
  8641. weight: math.unit(1450, "kg"),
  8642. capacity: math.unit(15, "people"),
  8643. name: "Side",
  8644. image: {
  8645. source: "./media/characters/aura-starwind/side.svg",
  8646. extra: 1654 / 1497
  8647. }
  8648. },
  8649. taur: {
  8650. height: math.unit(18, "feet"),
  8651. weight: math.unit(5500, "kg"),
  8652. capacity: math.unit(50, "people"),
  8653. name: "Taur",
  8654. image: {
  8655. source: "./media/characters/aura-starwind/taur.svg",
  8656. extra: 1760 / 1650
  8657. }
  8658. },
  8659. feral: {
  8660. height: math.unit(46, "feet"),
  8661. weight: math.unit(25000, "kg"),
  8662. capacity: math.unit(120, "people"),
  8663. name: "Feral",
  8664. image: {
  8665. source: "./media/characters/aura-starwind/feral.svg"
  8666. }
  8667. },
  8668. },
  8669. [
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(14, "feet"),
  8673. default: true
  8674. },
  8675. {
  8676. name: "Macro",
  8677. height: math.unit(50, "meters")
  8678. },
  8679. {
  8680. name: "Megamacro",
  8681. height: math.unit(5000, "meters")
  8682. },
  8683. {
  8684. name: "Gigamacro",
  8685. height: math.unit(100000, "kilometers")
  8686. },
  8687. ]
  8688. ))
  8689. characterMakers.push(() => makeCharacter(
  8690. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8691. {
  8692. front: {
  8693. height: math.unit(2 + 7 / 12, "feet"),
  8694. weight: math.unit(32, "lbs"),
  8695. name: "Front",
  8696. image: {
  8697. source: "./media/characters/rivet/front.svg",
  8698. extra: 1716 / 1658,
  8699. bottom: 0.03
  8700. }
  8701. },
  8702. foot: {
  8703. height: math.unit(0.551, "feet"),
  8704. name: "Rivet's Foot",
  8705. image: {
  8706. source: "./media/characters/rivet/foot.svg"
  8707. },
  8708. rename: true
  8709. }
  8710. },
  8711. [
  8712. {
  8713. name: "Micro",
  8714. height: math.unit(1.5, "inches"),
  8715. },
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(2 + 7 / 12, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(85, "feet")
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(2.2, "km")
  8728. }
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(5 + 9 / 12, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/coffee/front.svg",
  8740. extra: 3666 / 3032,
  8741. bottom: 0.04
  8742. }
  8743. },
  8744. foot: {
  8745. height: math.unit(1.29, "feet"),
  8746. name: "Foot",
  8747. image: {
  8748. source: "./media/characters/coffee/foot.svg"
  8749. }
  8750. },
  8751. },
  8752. [
  8753. {
  8754. name: "Micro",
  8755. height: math.unit(2, "inches"),
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(5 + 9 / 12, "feet"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(800, "feet")
  8765. },
  8766. {
  8767. name: "Megamacro",
  8768. height: math.unit(25, "miles")
  8769. }
  8770. ]
  8771. ))
  8772. characterMakers.push(() => makeCharacter(
  8773. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8774. {
  8775. front: {
  8776. height: math.unit(6, "feet"),
  8777. weight: math.unit(200, "lbs"),
  8778. name: "Front",
  8779. image: {
  8780. source: "./media/characters/chari-gal/front.svg",
  8781. extra: 1568 / 1385,
  8782. bottom: 0.047
  8783. }
  8784. },
  8785. gigantamax: {
  8786. height: math.unit(6 * 16, "feet"),
  8787. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8788. name: "Gigantamax",
  8789. image: {
  8790. source: "./media/characters/chari-gal/gigantamax.svg",
  8791. extra: 1124 / 888,
  8792. bottom: 0.03
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(5 + 7 / 12, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(200, "feet"),
  8804. default: true
  8805. }
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(150, "lbs"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/nova/front.svg",
  8817. extra: 5000 / 4722,
  8818. bottom: 0.02
  8819. }
  8820. }
  8821. },
  8822. [
  8823. {
  8824. name: "Micro-",
  8825. height: math.unit(0.8, "inches")
  8826. },
  8827. {
  8828. name: "Micro",
  8829. height: math.unit(2, "inches"),
  8830. default: true
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(3 + 1 / 12, "feet"),
  8839. weight: math.unit(21.7, "lbs"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/argent/front.svg",
  8843. extra: 1471 / 1331,
  8844. bottom: 100.8 / 1575.5
  8845. }
  8846. }
  8847. },
  8848. [
  8849. {
  8850. name: "Micro",
  8851. height: math.unit(2, "inches")
  8852. },
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(3 + 1 / 12, "feet"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(120, "feet")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8866. {
  8867. lamp: {
  8868. height: math.unit(7 * 1559 / 989, "feet"),
  8869. name: "Magic Lamp",
  8870. image: {
  8871. source: "./media/characters/mira-al-cul/lamp.svg",
  8872. extra: 1617 / 1559
  8873. }
  8874. },
  8875. front: {
  8876. height: math.unit(7, "feet"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/mira-al-cul/front.svg",
  8880. extra: 1044 / 990
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Heavily Restricted",
  8887. height: math.unit(7 * 1559 / 989, "feet")
  8888. },
  8889. {
  8890. name: "Freshly Freed",
  8891. height: math.unit(50 * 1559 / 989, "feet")
  8892. },
  8893. {
  8894. name: "World Encompassing",
  8895. height: math.unit(10000 * 1559 / 989, "miles")
  8896. },
  8897. {
  8898. name: "Galactic",
  8899. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8900. },
  8901. {
  8902. name: "Palmed Universe",
  8903. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Multiversal Matriarch",
  8908. height: math.unit(8.87e10, "yottameters")
  8909. },
  8910. {
  8911. name: "Void Mother",
  8912. height: math.unit(3.14e110, "yottaparsecs")
  8913. },
  8914. {
  8915. name: "Toying with Transcendence",
  8916. height: math.unit(1e307, "meters")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8922. {
  8923. front: {
  8924. height: math.unit(17 + 1 / 12, "feet"),
  8925. weight: math.unit(476.2 * 5, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/kuro-shi-uchū/front.svg",
  8929. extra: 2329 / 1835,
  8930. bottom: 0.02
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(2, "inches")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(12, "meters")
  8942. },
  8943. {
  8944. name: "Planetary",
  8945. height: math.unit(0.00929, "AU"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Universal",
  8950. height: math.unit(20, "gigaparsecs")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(5 + 2 / 12, "feet"),
  8959. weight: math.unit(120, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/katherine/front.svg",
  8963. extra: 2075 / 1969
  8964. }
  8965. },
  8966. dress: {
  8967. height: math.unit(5 + 2 / 12, "feet"),
  8968. weight: math.unit(120, "lbs"),
  8969. name: "Dress",
  8970. image: {
  8971. source: "./media/characters/katherine/dress.svg",
  8972. extra: 2258 / 2064
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(1, "inches"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(5 + 2 / 12, "feet")
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(100, "meters")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(80, "miles")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(7 + 8 / 12, "feet"),
  9001. weight: math.unit(250, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/yevis/front.svg",
  9005. extra: 1938 / 1755
  9006. }
  9007. }
  9008. },
  9009. [
  9010. {
  9011. name: "Mortal",
  9012. height: math.unit(7 + 8 / 12, "feet")
  9013. },
  9014. {
  9015. name: "Battle",
  9016. height: math.unit(25 + 11 / 12, "feet")
  9017. },
  9018. {
  9019. name: "Wrath",
  9020. height: math.unit(1654 + 11 / 12, "feet")
  9021. },
  9022. {
  9023. name: "Planet Destroyer",
  9024. height: math.unit(12000, "miles")
  9025. },
  9026. {
  9027. name: "Galaxy Conqueror",
  9028. height: math.unit(1.45, "zettameters"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Universal War",
  9033. height: math.unit(184, "gigaparsecs")
  9034. },
  9035. {
  9036. name: "Eternity War",
  9037. height: math.unit(1.98e55, "yottaparsecs")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(5 + 8 / 12, "feet"),
  9046. weight: math.unit(63, "kg"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/xavier/front.svg",
  9050. extra: 944 / 883
  9051. }
  9052. },
  9053. frontStretch: {
  9054. height: math.unit(5 + 8 / 12, "feet"),
  9055. weight: math.unit(63, "kg"),
  9056. name: "Stretching",
  9057. image: {
  9058. source: "./media/characters/xavier/front-stretch.svg",
  9059. extra: 962 / 820
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(5 + 8 / 12, "feet")
  9067. },
  9068. {
  9069. name: "Macro",
  9070. height: math.unit(100, "meters"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "McLargeHuge",
  9075. height: math.unit(10, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(5 + 5 / 12, "feet"),
  9084. weight: math.unit(150, "lb"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/joshii/front.svg",
  9088. extra: 765 / 653,
  9089. bottom: 51 / 816
  9090. }
  9091. },
  9092. foot: {
  9093. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9094. name: "Foot",
  9095. image: {
  9096. source: "./media/characters/joshii/foot.svg"
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Micro",
  9103. height: math.unit(2, "inches"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(5 + 5 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Macro",
  9112. height: math.unit(785, "feet")
  9113. },
  9114. {
  9115. name: "Megamacro",
  9116. height: math.unit(24.5, "miles")
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(150, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/goddess-elizabeth/front.svg",
  9129. extra: 1800 / 1525,
  9130. bottom: 0.005
  9131. }
  9132. },
  9133. foot: {
  9134. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9135. name: "Foot",
  9136. image: {
  9137. source: "./media/characters/goddess-elizabeth/foot.svg"
  9138. }
  9139. },
  9140. mouth: {
  9141. height: math.unit(6, "feet"),
  9142. name: "Mouth",
  9143. image: {
  9144. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Micro",
  9151. height: math.unit(12, "feet")
  9152. },
  9153. {
  9154. name: "Normal",
  9155. height: math.unit(80, "miles"),
  9156. default: true
  9157. },
  9158. {
  9159. name: "Macro",
  9160. height: math.unit(15000, "parsecs")
  9161. },
  9162. ]
  9163. ))
  9164. characterMakers.push(() => makeCharacter(
  9165. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9166. {
  9167. front: {
  9168. height: math.unit(5 + 9 / 12, "feet"),
  9169. weight: math.unit(144, "lb"),
  9170. name: "Front",
  9171. image: {
  9172. source: "./media/characters/kara/front.svg"
  9173. }
  9174. },
  9175. feet: {
  9176. height: math.unit(6 / 6.765, "feet"),
  9177. name: "Kara's Feet",
  9178. rename: true,
  9179. image: {
  9180. source: "./media/characters/kara/feet.svg"
  9181. }
  9182. },
  9183. },
  9184. [
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(5 + 9 / 12, "feet")
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(174, "feet"),
  9192. default: true
  9193. },
  9194. ]
  9195. ))
  9196. characterMakers.push(() => makeCharacter(
  9197. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9198. {
  9199. front: {
  9200. height: math.unit(18, "feet"),
  9201. weight: math.unit(4050, "lb"),
  9202. name: "Front",
  9203. image: {
  9204. source: "./media/characters/tyrone/front.svg",
  9205. extra: 2405 / 2270,
  9206. bottom: 182 / 2587
  9207. }
  9208. },
  9209. },
  9210. [
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(18, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(300, "feet")
  9219. },
  9220. {
  9221. name: "Megamacro",
  9222. height: math.unit(15, "km")
  9223. },
  9224. {
  9225. name: "Gigamacro",
  9226. height: math.unit(500, "km")
  9227. },
  9228. {
  9229. name: "Teramacro",
  9230. height: math.unit(0.5, "gigameters")
  9231. },
  9232. {
  9233. name: "Omnimacro",
  9234. height: math.unit(1e252, "yottauniverse")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(7 + 8 / 12, "feet"),
  9243. weight: math.unit(120, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/danny/front.svg",
  9247. extra: 1490 / 1350
  9248. }
  9249. },
  9250. back: {
  9251. height: math.unit(7 + 8 / 12, "feet"),
  9252. weight: math.unit(120, "lb"),
  9253. name: "Back",
  9254. image: {
  9255. source: "./media/characters/danny/back.svg",
  9256. extra: 1490 / 1350
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Normal",
  9263. height: math.unit(7 + 8 / 12, "feet"),
  9264. default: true
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(3.5, "inches"),
  9273. weight: math.unit(19, "grams"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/mallow/front.svg",
  9277. extra: 471 / 431
  9278. }
  9279. },
  9280. back: {
  9281. height: math.unit(3.5, "inches"),
  9282. weight: math.unit(19, "grams"),
  9283. name: "Back",
  9284. image: {
  9285. source: "./media/characters/mallow/back.svg",
  9286. extra: 471 / 431
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(3.5, "inches"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(9, "feet"),
  9303. weight: math.unit(230, "kg"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/starry-aqua/front.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(9, "feet"),
  9311. weight: math.unit(230, "kg"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/starry-aqua/back.svg"
  9315. }
  9316. },
  9317. hand: {
  9318. height: math.unit(9 * 0.1168, "feet"),
  9319. name: "Hand",
  9320. image: {
  9321. source: "./media/characters/starry-aqua/hand.svg"
  9322. }
  9323. },
  9324. foot: {
  9325. height: math.unit(9 * 0.18, "feet"),
  9326. name: "Foot",
  9327. image: {
  9328. source: "./media/characters/starry-aqua/foot.svg"
  9329. }
  9330. }
  9331. },
  9332. [
  9333. {
  9334. name: "Micro",
  9335. height: math.unit(3, "inches")
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(9, "feet")
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(300, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(3200, "feet")
  9349. }
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(15, "feet"),
  9357. weight: math.unit(5026, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/luka-towers/front.svg",
  9361. extra: 1269/1133,
  9362. bottom: 51/1320
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(15, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Minimacro",
  9374. height: math.unit(25, "feet")
  9375. },
  9376. {
  9377. name: "Macro",
  9378. height: math.unit(320, "feet")
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(35000, "feet")
  9383. },
  9384. {
  9385. name: "Gigamacro",
  9386. height: math.unit(4000, "miles")
  9387. },
  9388. {
  9389. name: "Teramacro",
  9390. height: math.unit(15000, "miles")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/natalie-nightring/front.svg",
  9403. extra: 1,
  9404. bottom: 0.06
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Uh Oh",
  9411. height: math.unit(0.1, "mm")
  9412. },
  9413. {
  9414. name: "Small",
  9415. height: math.unit(3, "inches")
  9416. },
  9417. {
  9418. name: "Human Scale",
  9419. height: math.unit(6, "feet")
  9420. },
  9421. {
  9422. name: "Librarian",
  9423. height: math.unit(50, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Immense",
  9428. height: math.unit(200, "miles")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(180, "lbs"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/danni-rosie/front.svg",
  9441. extra: 1260 / 1128,
  9442. bottom: 0.022
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Micro",
  9449. height: math.unit(2, "inches"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(5 + 9 / 12, "feet"),
  9459. weight: math.unit(220, "lb"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/samantha-kruse/front.svg",
  9463. extra: (985 / 935),
  9464. bottom: 0.03
  9465. }
  9466. },
  9467. frontUndressed: {
  9468. height: math.unit(5 + 9 / 12, "feet"),
  9469. weight: math.unit(220, "lb"),
  9470. name: "Front (Undressed)",
  9471. image: {
  9472. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9473. extra: (973 / 923),
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. fat: {
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. weight: math.unit(900, "lb"),
  9480. name: "Front (Fat)",
  9481. image: {
  9482. source: "./media/characters/samantha-kruse/fat.svg",
  9483. extra: 2688 / 2561
  9484. }
  9485. },
  9486. },
  9487. [
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(5 + 9 / 12, "feet"),
  9491. default: true
  9492. }
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9497. {
  9498. back: {
  9499. height: math.unit(5 + 4 / 12, "feet"),
  9500. weight: math.unit(4963, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/amelia-rosie/back.svg",
  9504. extra: 1113 / 963,
  9505. bottom: 0.01
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Level 0",
  9512. height: math.unit(5 + 4 / 12, "feet")
  9513. },
  9514. {
  9515. name: "Level 1",
  9516. height: math.unit(164597, "feet"),
  9517. default: true
  9518. },
  9519. {
  9520. name: "Level 2",
  9521. height: math.unit(956243, "miles")
  9522. },
  9523. {
  9524. name: "Level 3",
  9525. height: math.unit(29421709423, "miles")
  9526. },
  9527. {
  9528. name: "Level 4",
  9529. height: math.unit(154, "lightyears")
  9530. },
  9531. {
  9532. name: "Level 5",
  9533. height: math.unit(4738272, "lightyears")
  9534. },
  9535. {
  9536. name: "Level 6",
  9537. height: math.unit(145787152896, "lightyears")
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(5 + 11 / 12, "feet"),
  9546. weight: math.unit(65, "kg"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/rook-kitara/front.svg",
  9550. extra: 1347 / 1274,
  9551. bottom: 0.005
  9552. }
  9553. },
  9554. },
  9555. [
  9556. {
  9557. name: "Totally Unfair",
  9558. height: math.unit(1.8, "mm")
  9559. },
  9560. {
  9561. name: "Lap Rookie",
  9562. height: math.unit(1.4, "feet")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 11 / 12, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "How Did This Happen",
  9571. height: math.unit(80, "miles")
  9572. }
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(7, "feet"),
  9580. weight: math.unit(300, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/pisces/front.svg",
  9584. extra: 2255 / 2115,
  9585. bottom: 0.03
  9586. }
  9587. },
  9588. back: {
  9589. height: math.unit(7, "feet"),
  9590. weight: math.unit(300, "lb"),
  9591. name: "Back",
  9592. image: {
  9593. source: "./media/characters/pisces/back.svg",
  9594. extra: 2146 / 2055,
  9595. bottom: 0.04
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(7, "feet"),
  9603. default: true
  9604. },
  9605. {
  9606. name: "Swimming Pool",
  9607. height: math.unit(12.2, "meters")
  9608. },
  9609. {
  9610. name: "Olympic Swimming Pool",
  9611. height: math.unit(56.3, "meters")
  9612. },
  9613. {
  9614. name: "Lake Superior",
  9615. height: math.unit(93900, "meters")
  9616. },
  9617. {
  9618. name: "Mediterranean Sea",
  9619. height: math.unit(644457, "meters")
  9620. },
  9621. {
  9622. name: "World's Oceans",
  9623. height: math.unit(4567491, "meters")
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(2.3, "meters"),
  9632. weight: math.unit(120, "kg"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/zelas/front.svg"
  9636. }
  9637. },
  9638. side: {
  9639. height: math.unit(2.3, "meters"),
  9640. weight: math.unit(120, "kg"),
  9641. name: "Side",
  9642. image: {
  9643. source: "./media/characters/zelas/side.svg"
  9644. }
  9645. },
  9646. back: {
  9647. height: math.unit(2.3, "meters"),
  9648. weight: math.unit(120, "kg"),
  9649. name: "Back",
  9650. image: {
  9651. source: "./media/characters/zelas/back.svg"
  9652. }
  9653. },
  9654. foot: {
  9655. height: math.unit(1.116, "feet"),
  9656. name: "Foot",
  9657. image: {
  9658. source: "./media/characters/zelas/foot.svg"
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(2.3, "meters")
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(30, "meters"),
  9670. default: true
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(1, "inch"),
  9679. weight: math.unit(0.21, "grams"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/talbot/front.svg",
  9683. extra: 594 / 544
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Micro",
  9690. height: math.unit(1, "inch"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9697. {
  9698. front: {
  9699. height: math.unit(3 + 3 / 12, "feet"),
  9700. weight: math.unit(51.8, "lb"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/fliss/front.svg",
  9704. extra: 840 / 640
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Teeny Tiny",
  9711. height: math.unit(1, "mm")
  9712. },
  9713. {
  9714. name: "Small",
  9715. height: math.unit(1, "inch"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Standard Sylveon",
  9720. height: math.unit(3 + 3 / 12, "feet")
  9721. },
  9722. {
  9723. name: "Large Nuisance",
  9724. height: math.unit(33, "feet")
  9725. },
  9726. {
  9727. name: "City Filler",
  9728. height: math.unit(3000, "feet")
  9729. },
  9730. {
  9731. name: "New Horizon",
  9732. height: math.unit(6000, "miles")
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9738. {
  9739. front: {
  9740. height: math.unit(5, "cm"),
  9741. weight: math.unit(1.94, "g"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/fleta/front.svg",
  9745. extra: 835 / 803
  9746. }
  9747. },
  9748. back: {
  9749. height: math.unit(5, "cm"),
  9750. weight: math.unit(1.94, "g"),
  9751. name: "Back",
  9752. image: {
  9753. source: "./media/characters/fleta/back.svg",
  9754. extra: 835 / 803
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Micro",
  9761. height: math.unit(5, "cm"),
  9762. default: true
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(6, "feet"),
  9771. weight: math.unit(225, "lb"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/dominic/front.svg",
  9775. extra: 1770 / 1620,
  9776. bottom: 0.025
  9777. }
  9778. },
  9779. back: {
  9780. height: math.unit(6, "feet"),
  9781. weight: math.unit(225, "lb"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/dominic/back.svg",
  9785. extra: 1745 / 1620,
  9786. bottom: 0.065
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Nano",
  9793. height: math.unit(0.1, "mm")
  9794. },
  9795. {
  9796. name: "Micro-",
  9797. height: math.unit(1, "mm")
  9798. },
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(4, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(6 + 4 / 12, "feet"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Macro",
  9810. height: math.unit(115, "feet")
  9811. },
  9812. {
  9813. name: "Macro+",
  9814. height: math.unit(955, "feet")
  9815. },
  9816. {
  9817. name: "Megamacro",
  9818. height: math.unit(8990, "feet")
  9819. },
  9820. {
  9821. name: "Gigmacro",
  9822. height: math.unit(9310, "miles")
  9823. },
  9824. {
  9825. name: "Teramacro",
  9826. height: math.unit(1567005010, "miles")
  9827. },
  9828. {
  9829. name: "Examacro",
  9830. height: math.unit(1425, "parsecs")
  9831. },
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(400, "feet"),
  9839. weight: math.unit(44444444, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/major-colonel/front.svg"
  9843. }
  9844. },
  9845. back: {
  9846. height: math.unit(400, "feet"),
  9847. weight: math.unit(44444444, "lb"),
  9848. name: "Back",
  9849. image: {
  9850. source: "./media/characters/major-colonel/back.svg"
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Macro",
  9857. height: math.unit(400, "feet"),
  9858. default: true
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9864. {
  9865. catFront: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(120, "lb"),
  9868. name: "Front (Cat Side)",
  9869. image: {
  9870. source: "./media/characters/axel-lycan/cat-front.svg",
  9871. extra: 430 / 402,
  9872. bottom: 43 / 472.35
  9873. }
  9874. },
  9875. catBack: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(120, "lb"),
  9878. name: "Back (Cat Side)",
  9879. image: {
  9880. source: "./media/characters/axel-lycan/cat-back.svg",
  9881. extra: 447 / 419,
  9882. bottom: 23.3 / 469
  9883. }
  9884. },
  9885. wolfFront: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(120, "lb"),
  9888. name: "Front (Wolf Side)",
  9889. image: {
  9890. source: "./media/characters/axel-lycan/wolf-front.svg",
  9891. extra: 485 / 456,
  9892. bottom: 19 / 504
  9893. }
  9894. },
  9895. wolfBack: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(120, "lb"),
  9898. name: "Back (Wolf Side)",
  9899. image: {
  9900. source: "./media/characters/axel-lycan/wolf-back.svg",
  9901. extra: 475 / 438,
  9902. bottom: 39.2 / 514
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Macro",
  9909. height: math.unit(1, "km"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(5 + 9 / 12, "feet"),
  9919. weight: math.unit(175, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/vanrel-hyena/front.svg",
  9923. extra: 1086 / 1010,
  9924. bottom: 0.04
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(5 + 9 / 12, "feet"),
  9932. default: true
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(103, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/abbott-absol/front.svg",
  9945. extra: 2010 / 1842
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Megamicro",
  9952. height: math.unit(0.1, "mm")
  9953. },
  9954. {
  9955. name: "Micro",
  9956. height: math.unit(1, "inch")
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(6, "feet"),
  9961. default: true
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(6, "feet"),
  9970. weight: math.unit(264, "lb"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/hector/front.svg",
  9974. extra: 2280 / 2130,
  9975. bottom: 0.07
  9976. }
  9977. },
  9978. },
  9979. [
  9980. {
  9981. name: "Normal",
  9982. height: math.unit(12.25, "foot"),
  9983. default: true
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(160, "feet")
  9988. },
  9989. ]
  9990. ))
  9991. characterMakers.push(() => makeCharacter(
  9992. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9993. {
  9994. front: {
  9995. height: math.unit(6, "feet"),
  9996. weight: math.unit(150, "lb"),
  9997. name: "Front",
  9998. image: {
  9999. source: "./media/characters/sal/front.svg",
  10000. extra: 1846 / 1699,
  10001. bottom: 0.04
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Megamacro",
  10008. height: math.unit(10, "miles"),
  10009. default: true
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10015. {
  10016. front: {
  10017. height: math.unit(3, "meters"),
  10018. weight: math.unit(450, "kg"),
  10019. name: "front",
  10020. image: {
  10021. source: "./media/characters/ranger/front.svg",
  10022. extra: 2401 / 2243,
  10023. bottom: 0.05
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(3, "meters"),
  10031. default: true
  10032. },
  10033. ]
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10037. {
  10038. front: {
  10039. height: math.unit(14, "feet"),
  10040. weight: math.unit(800, "kg"),
  10041. name: "Front",
  10042. image: {
  10043. source: "./media/characters/theresa/front.svg",
  10044. extra: 3575 / 3346,
  10045. bottom: 0.03
  10046. }
  10047. },
  10048. },
  10049. [
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(14, "feet"),
  10053. default: true
  10054. },
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10059. {
  10060. front: {
  10061. height: math.unit(6, "feet"),
  10062. weight: math.unit(3, "kg"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/ine/front.svg",
  10066. extra: 678 / 539,
  10067. bottom: 0.023
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(2.265, "feet"),
  10075. default: true
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(5, "feet"),
  10084. weight: math.unit(30, "kg"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/vial/front.svg",
  10088. extra: 1365 / 1277,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Normal",
  10096. height: math.unit(5, "feet"),
  10097. default: true
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10103. {
  10104. side: {
  10105. height: math.unit(3.4, "meters"),
  10106. weight: math.unit(1000, "lb"),
  10107. name: "Side",
  10108. image: {
  10109. source: "./media/characters/rovoska/side.svg",
  10110. extra: 4403 / 1515
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(3.4, "meters"),
  10118. default: true
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(8, "feet"),
  10127. weight: math.unit(315, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/gunner-rotthbauer/front.svg"
  10131. }
  10132. },
  10133. back: {
  10134. height: math.unit(8, "feet"),
  10135. weight: math.unit(315, "lb"),
  10136. name: "Back",
  10137. image: {
  10138. source: "./media/characters/gunner-rotthbauer/back.svg"
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(3.5, "inches")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(8, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(250, "feet")
  10155. },
  10156. {
  10157. name: "Megamacro",
  10158. height: math.unit(1, "AU")
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(5 + 5 / 12, "feet"),
  10167. weight: math.unit(140, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/allatia/front.svg",
  10171. extra: 1227 / 1180,
  10172. bottom: 0.027
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 5 / 12, "feet")
  10180. },
  10181. {
  10182. name: "Macro",
  10183. height: math.unit(250, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(8, "miles")
  10189. }
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6, "feet"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/tene/front.svg",
  10201. extra: 814/750,
  10202. bottom: 36/850
  10203. }
  10204. },
  10205. stomping: {
  10206. height: math.unit(2.025, "meters"),
  10207. weight: math.unit(120, "lb"),
  10208. name: "Stomping",
  10209. image: {
  10210. source: "./media/characters/tene/stomping.svg",
  10211. extra: 885/821,
  10212. bottom: 15/900
  10213. }
  10214. },
  10215. sitting: {
  10216. height: math.unit(1, "meter"),
  10217. weight: math.unit(120, "lb"),
  10218. name: "Sitting",
  10219. image: {
  10220. source: "./media/characters/tene/sitting.svg",
  10221. extra: 396/366,
  10222. bottom: 79/475
  10223. }
  10224. },
  10225. smiling: {
  10226. height: math.unit(1.2, "feet"),
  10227. name: "Smiling",
  10228. image: {
  10229. source: "./media/characters/tene/smiling.svg",
  10230. extra: 1364/1071,
  10231. bottom: 0/1364
  10232. }
  10233. },
  10234. smug: {
  10235. height: math.unit(1.3, "feet"),
  10236. name: "Smug",
  10237. image: {
  10238. source: "./media/characters/tene/smug.svg",
  10239. extra: 1323/1082,
  10240. bottom: 0/1323
  10241. }
  10242. },
  10243. feral: {
  10244. height: math.unit(3.9, "feet"),
  10245. weight: math.unit(250, "lb"),
  10246. name: "Feral",
  10247. image: {
  10248. source: "./media/characters/tene/feral.svg",
  10249. extra: 717 / 458,
  10250. bottom: 0.179
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(6, "feet")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(300, "feet"),
  10262. default: true
  10263. },
  10264. {
  10265. name: "Megamacro",
  10266. height: math.unit(5, "miles")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10272. {
  10273. side: {
  10274. height: math.unit(6, "feet"),
  10275. name: "Side",
  10276. image: {
  10277. source: "./media/characters/evander/side.svg",
  10278. extra: 877 / 477
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(0.83, "meters"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(12, "feet"),
  10295. weight: math.unit(1000, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10299. extra: 1762 / 1611
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(12, "feet"),
  10304. weight: math.unit(1000, "lb"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10308. extra: 1762 / 1611
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(12, "feet"),
  10316. default: true
  10317. },
  10318. {
  10319. name: "Kaiju",
  10320. height: math.unit(150, "feet")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/zero-alurus/front.svg"
  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/zero-alurus/back.svg"
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 10 / 12, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(60, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro+",
  10356. height: math.unit(450, "feet")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(200, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/mega-shi/front.svg",
  10369. extra: 1279 / 1250,
  10370. bottom: 0.02
  10371. }
  10372. },
  10373. back: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(200, "lb"),
  10376. name: "Back",
  10377. image: {
  10378. source: "./media/characters/mega-shi/back.svg",
  10379. extra: 1279 / 1250,
  10380. bottom: 0.02
  10381. }
  10382. },
  10383. },
  10384. [
  10385. {
  10386. name: "Micro",
  10387. height: math.unit(16 + 6 / 12, "feet")
  10388. },
  10389. {
  10390. name: "Third Dimension",
  10391. height: math.unit(40, "meters")
  10392. },
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(660, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Megamacro",
  10400. height: math.unit(10, "miles")
  10401. },
  10402. {
  10403. name: "Planetary Launch",
  10404. height: math.unit(500, "miles")
  10405. },
  10406. {
  10407. name: "Interstellar",
  10408. height: math.unit(1e9, "miles")
  10409. },
  10410. {
  10411. name: "Leaving the Universe",
  10412. height: math.unit(1, "gigaparsec")
  10413. },
  10414. {
  10415. name: "Travelling Universes",
  10416. height: math.unit(30e15, "parsecs")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(5 + 4/12, "feet"),
  10425. weight: math.unit(120, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/odyssey/front.svg",
  10429. extra: 1747/1571,
  10430. bottom: 47/1794
  10431. }
  10432. },
  10433. side: {
  10434. height: math.unit(5.1, "feet"),
  10435. weight: math.unit(120, "lb"),
  10436. name: "Side",
  10437. image: {
  10438. source: "./media/characters/odyssey/side.svg",
  10439. extra: 1847/1619,
  10440. bottom: 47/1894
  10441. }
  10442. },
  10443. lounging: {
  10444. height: math.unit(1.464, "feet"),
  10445. weight: math.unit(120, "lb"),
  10446. name: "Lounging",
  10447. image: {
  10448. source: "./media/characters/odyssey/lounging.svg",
  10449. extra: 1235/837,
  10450. bottom: 551/1786
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Normal",
  10457. height: math.unit(5 + 4 / 12, "feet")
  10458. },
  10459. {
  10460. name: "Macro",
  10461. height: math.unit(1, "km")
  10462. },
  10463. {
  10464. name: "Megamacro",
  10465. height: math.unit(3000, "km")
  10466. },
  10467. {
  10468. name: "Gigamacro",
  10469. height: math.unit(1, "AU"),
  10470. default: true
  10471. },
  10472. {
  10473. name: "Omniversal",
  10474. height: math.unit(100e14, "lightyears")
  10475. },
  10476. ]
  10477. ))
  10478. characterMakers.push(() => makeCharacter(
  10479. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10480. {
  10481. front: {
  10482. height: math.unit(6, "feet"),
  10483. weight: math.unit(300, "lb"),
  10484. name: "Front",
  10485. image: {
  10486. source: "./media/characters/mekuto/front.svg",
  10487. extra: 921 / 832,
  10488. bottom: 0.03
  10489. }
  10490. },
  10491. hand: {
  10492. height: math.unit(6 / 10.24, "feet"),
  10493. name: "Hand",
  10494. image: {
  10495. source: "./media/characters/mekuto/hand.svg"
  10496. }
  10497. },
  10498. foot: {
  10499. height: math.unit(6 / 5.05, "feet"),
  10500. name: "Foot",
  10501. image: {
  10502. source: "./media/characters/mekuto/foot.svg"
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Minimicro",
  10509. height: math.unit(0.2, "inches")
  10510. },
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(1.5, "inches")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(5 + 11 / 12, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Minimacro",
  10522. height: math.unit(17 + 9 / 12, "feet")
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(177.5, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(152, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6.5, "inches"),
  10539. weight: math.unit(13, "oz"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/dafydd-tomos/front.svg",
  10543. extra: 2990 / 2603,
  10544. bottom: 0.03
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(6.5, "inches"),
  10552. default: true
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/splinter/front.svg",
  10565. extra: 2990 / 2882,
  10566. bottom: 0.04
  10567. }
  10568. },
  10569. back: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Back",
  10573. image: {
  10574. source: "./media/characters/splinter/back.svg",
  10575. extra: 2990 / 2882,
  10576. bottom: 0.04
  10577. }
  10578. },
  10579. },
  10580. [
  10581. {
  10582. name: "Normal",
  10583. height: math.unit(6, "feet")
  10584. },
  10585. {
  10586. name: "Macro",
  10587. height: math.unit(230, "meters"),
  10588. default: true
  10589. },
  10590. ]
  10591. ))
  10592. characterMakers.push(() => makeCharacter(
  10593. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10594. {
  10595. front: {
  10596. height: math.unit(4 + 10 / 12, "feet"),
  10597. weight: math.unit(480, "lb"),
  10598. name: "Front",
  10599. image: {
  10600. source: "./media/characters/snow-gabumon/front.svg",
  10601. extra: 1140 / 963,
  10602. bottom: 0.058
  10603. }
  10604. },
  10605. back: {
  10606. height: math.unit(4 + 10 / 12, "feet"),
  10607. weight: math.unit(480, "lb"),
  10608. name: "Back",
  10609. image: {
  10610. source: "./media/characters/snow-gabumon/back.svg",
  10611. extra: 1115 / 962,
  10612. bottom: 0.041
  10613. }
  10614. },
  10615. frontUndresed: {
  10616. height: math.unit(4 + 10 / 12, "feet"),
  10617. weight: math.unit(480, "lb"),
  10618. name: "Front (Undressed)",
  10619. image: {
  10620. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10621. extra: 1061 / 960,
  10622. bottom: 0.045
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(1, "inch")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(4 + 10 / 12, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(200, "feet")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(120, "miles")
  10643. },
  10644. {
  10645. name: "Gigamacro",
  10646. height: math.unit(9800, "miles")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(1.7, "meters"),
  10655. weight: math.unit(140, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/moody/front.svg",
  10659. extra: 3226 / 3007,
  10660. bottom: 0.087
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Micro",
  10667. height: math.unit(1, "mm")
  10668. },
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(1.7, "meters"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(80, "meters")
  10677. },
  10678. {
  10679. name: "Macro+",
  10680. height: math.unit(500, "meters")
  10681. },
  10682. ]
  10683. ))
  10684. characterMakers.push(() => makeCharacter(
  10685. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10686. {
  10687. front: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(150, "lb"),
  10690. name: "Front",
  10691. image: {
  10692. source: "./media/characters/zyas/front.svg",
  10693. extra: 1180 / 1120,
  10694. bottom: 0.045
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(10, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(500, "feet")
  10707. },
  10708. {
  10709. name: "Megamacro",
  10710. height: math.unit(5, "miles")
  10711. },
  10712. {
  10713. name: "Teramacro",
  10714. height: math.unit(150000, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10720. {
  10721. front: {
  10722. height: math.unit(6, "feet"),
  10723. weight: math.unit(150, "lb"),
  10724. name: "Front",
  10725. image: {
  10726. source: "./media/characters/cuon/front.svg",
  10727. extra: 1390 / 1320,
  10728. bottom: 0.008
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Micro",
  10735. height: math.unit(3, "inches")
  10736. },
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(18 + 9 / 12, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Macro",
  10744. height: math.unit(360, "feet")
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(360, "miles")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(2.4, "meters"),
  10757. weight: math.unit(70, "kg"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/nyanuxk/front.svg",
  10761. extra: 1172 / 1084,
  10762. bottom: 0.065
  10763. }
  10764. },
  10765. side: {
  10766. height: math.unit(2.4, "meters"),
  10767. weight: math.unit(70, "kg"),
  10768. name: "Side",
  10769. image: {
  10770. source: "./media/characters/nyanuxk/side.svg",
  10771. extra: 1190 / 1132,
  10772. bottom: 0.007
  10773. }
  10774. },
  10775. back: {
  10776. height: math.unit(2.4, "meters"),
  10777. weight: math.unit(70, "kg"),
  10778. name: "Back",
  10779. image: {
  10780. source: "./media/characters/nyanuxk/back.svg",
  10781. extra: 1200 / 1141,
  10782. bottom: 0.015
  10783. }
  10784. },
  10785. foot: {
  10786. height: math.unit(0.52, "meters"),
  10787. name: "Foot",
  10788. image: {
  10789. source: "./media/characters/nyanuxk/foot.svg"
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Micro",
  10796. height: math.unit(2, "cm")
  10797. },
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(2.4, "meters"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Smaller Macro",
  10805. height: math.unit(120, "meters")
  10806. },
  10807. {
  10808. name: "Bigger Macro",
  10809. height: math.unit(1.2, "km")
  10810. },
  10811. {
  10812. name: "Megamacro",
  10813. height: math.unit(15, "kilometers")
  10814. },
  10815. {
  10816. name: "Gigamacro",
  10817. height: math.unit(2000, "km")
  10818. },
  10819. {
  10820. name: "Teramacro",
  10821. height: math.unit(500000, "km")
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10827. {
  10828. side: {
  10829. height: math.unit(6, "feet"),
  10830. name: "Side",
  10831. image: {
  10832. source: "./media/characters/ailbhe/side.svg",
  10833. extra: 757 / 464,
  10834. bottom: 0.041
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(1.07, "meters"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(120, "kg"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/zevulfius/front.svg",
  10855. extra: 965 / 903
  10856. }
  10857. },
  10858. side: {
  10859. height: math.unit(6, "feet"),
  10860. weight: math.unit(120, "kg"),
  10861. name: "Side",
  10862. image: {
  10863. source: "./media/characters/zevulfius/side.svg",
  10864. extra: 939 / 900
  10865. }
  10866. },
  10867. back: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(120, "kg"),
  10870. name: "Back",
  10871. image: {
  10872. source: "./media/characters/zevulfius/back.svg",
  10873. extra: 918 / 854,
  10874. bottom: 0.005
  10875. }
  10876. },
  10877. foot: {
  10878. height: math.unit(6 / 3.72, "feet"),
  10879. name: "Foot",
  10880. image: {
  10881. source: "./media/characters/zevulfius/foot.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Macro",
  10888. height: math.unit(750, "meters")
  10889. },
  10890. {
  10891. name: "Megamacro",
  10892. height: math.unit(20, "km"),
  10893. default: true
  10894. },
  10895. {
  10896. name: "Gigamacro",
  10897. height: math.unit(2000, "km")
  10898. },
  10899. {
  10900. name: "Teramacro",
  10901. height: math.unit(250000, "km")
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(100, "feet"),
  10910. weight: math.unit(350, "kg"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/rikes/front.svg",
  10914. extra: 1565 / 1483,
  10915. bottom: 0.017
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Macro",
  10922. height: math.unit(100, "feet"),
  10923. default: true
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10929. {
  10930. front: {
  10931. height: math.unit(8, "feet"),
  10932. weight: math.unit(356, "lb"),
  10933. name: "Front",
  10934. image: {
  10935. source: "./media/characters/adam-silver-mane/front.svg",
  10936. extra: 1036/937,
  10937. bottom: 63/1099
  10938. }
  10939. },
  10940. side: {
  10941. height: math.unit(8, "feet"),
  10942. weight: math.unit(356, "lb"),
  10943. name: "Side",
  10944. image: {
  10945. source: "./media/characters/adam-silver-mane/side.svg",
  10946. extra: 997/901,
  10947. bottom: 59/1056
  10948. }
  10949. },
  10950. frontNsfw: {
  10951. height: math.unit(8, "feet"),
  10952. weight: math.unit(356, "lb"),
  10953. name: "Front (NSFW)",
  10954. image: {
  10955. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10956. extra: 1036/937,
  10957. bottom: 63/1099
  10958. }
  10959. },
  10960. sideNsfw: {
  10961. height: math.unit(8, "feet"),
  10962. weight: math.unit(356, "lb"),
  10963. name: "Side (NSFW)",
  10964. image: {
  10965. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10966. extra: 997/901,
  10967. bottom: 59/1056
  10968. }
  10969. },
  10970. dick: {
  10971. height: math.unit(2.1, "feet"),
  10972. name: "Dick",
  10973. image: {
  10974. source: "./media/characters/adam-silver-mane/dick.svg"
  10975. }
  10976. },
  10977. taur: {
  10978. height: math.unit(16, "feet"),
  10979. weight: math.unit(1500, "kg"),
  10980. name: "Taur",
  10981. image: {
  10982. source: "./media/characters/adam-silver-mane/taur.svg",
  10983. extra: 1713 / 1571,
  10984. bottom: 0.01
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Normal",
  10991. height: math.unit(8, "feet")
  10992. },
  10993. {
  10994. name: "Minimacro",
  10995. height: math.unit(80, "feet")
  10996. },
  10997. {
  10998. name: "MDA",
  10999. height: math.unit(80, "meters")
  11000. },
  11001. {
  11002. name: "Macro",
  11003. height: math.unit(800, "feet"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Megamacro",
  11008. height: math.unit(8000, "feet")
  11009. },
  11010. {
  11011. name: "Gigamacro",
  11012. height: math.unit(800, "miles")
  11013. },
  11014. {
  11015. name: "Teramacro",
  11016. height: math.unit(80000, "miles")
  11017. },
  11018. {
  11019. name: "Celestial",
  11020. height: math.unit(8e6, "miles")
  11021. },
  11022. {
  11023. name: "Star Dragon",
  11024. height: math.unit(800000, "parsecs")
  11025. },
  11026. {
  11027. name: "Godly",
  11028. height: math.unit(800, "teraparsecs")
  11029. },
  11030. ]
  11031. ))
  11032. characterMakers.push(() => makeCharacter(
  11033. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11034. {
  11035. front: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(150, "lb"),
  11038. name: "Front",
  11039. image: {
  11040. source: "./media/characters/ky'owin/front.svg",
  11041. extra: 3888 / 3068,
  11042. bottom: 0.015
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(6 + 8 / 12, "feet")
  11050. },
  11051. {
  11052. name: "Large",
  11053. height: math.unit(68, "feet")
  11054. },
  11055. {
  11056. name: "Macro",
  11057. height: math.unit(132, "feet")
  11058. },
  11059. {
  11060. name: "Macro+",
  11061. height: math.unit(340, "feet")
  11062. },
  11063. {
  11064. name: "Macro++",
  11065. height: math.unit(680, "feet"),
  11066. default: true
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(1, "mile")
  11071. },
  11072. {
  11073. name: "Megamacro+",
  11074. height: math.unit(10, "miles")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(4, "feet"),
  11083. weight: math.unit(50, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/mal/front.svg",
  11087. extra: 785 / 724,
  11088. bottom: 0.07
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Micro",
  11095. height: math.unit(4, "inches")
  11096. },
  11097. {
  11098. name: "Normal",
  11099. height: math.unit(4, "feet"),
  11100. default: true
  11101. },
  11102. {
  11103. name: "Macro",
  11104. height: math.unit(200, "feet")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(150, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/jordan-deware/front.svg",
  11117. extra: 1191 / 1012
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Nano",
  11124. height: math.unit(0.01, "mm")
  11125. },
  11126. {
  11127. name: "Minimicro",
  11128. height: math.unit(1, "mm")
  11129. },
  11130. {
  11131. name: "Micro",
  11132. height: math.unit(0.5, "inches")
  11133. },
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(4, "feet"),
  11137. default: true
  11138. },
  11139. {
  11140. name: "Minimacro",
  11141. height: math.unit(40, "meters")
  11142. },
  11143. {
  11144. name: "Small Macro",
  11145. height: math.unit(400, "meters")
  11146. },
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(4, "miles")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(40, "miles")
  11154. },
  11155. {
  11156. name: "Megamacro+",
  11157. height: math.unit(400, "miles")
  11158. },
  11159. {
  11160. name: "Gigamacro",
  11161. height: math.unit(400000, "miles")
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11167. {
  11168. side: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Side",
  11172. image: {
  11173. source: "./media/characters/kimiko/side.svg",
  11174. extra: 600 / 358
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(15, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(220, "feet")
  11187. },
  11188. {
  11189. name: "Macro+",
  11190. height: math.unit(1450, "feet")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(11500, "feet")
  11195. },
  11196. {
  11197. name: "Gigamacro",
  11198. height: math.unit(9500, "miles")
  11199. },
  11200. {
  11201. name: "Teramacro",
  11202. height: math.unit(2208005005, "miles")
  11203. },
  11204. {
  11205. name: "Examacro",
  11206. height: math.unit(2750, "parsecs")
  11207. },
  11208. {
  11209. name: "Zettamacro",
  11210. height: math.unit(101500, "parsecs")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(70, "kg"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/andrew-sleepy/front.svg"
  11223. }
  11224. },
  11225. side: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(70, "kg"),
  11228. name: "Side",
  11229. image: {
  11230. source: "./media/characters/andrew-sleepy/side.svg"
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Micro",
  11237. height: math.unit(1, "mm"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11244. {
  11245. front: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(150, "lb"),
  11248. name: "Front",
  11249. image: {
  11250. source: "./media/characters/judio/front.svg",
  11251. extra: 1258 / 1110
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(5 + 6 / 12, "feet")
  11259. },
  11260. {
  11261. name: "Macro",
  11262. height: math.unit(1000, "feet"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Megamacro",
  11267. height: math.unit(10, "miles")
  11268. },
  11269. ]
  11270. ))
  11271. characterMakers.push(() => makeCharacter(
  11272. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11273. {
  11274. frontDressed: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(68, "kg"),
  11277. name: "Front (Dressed)",
  11278. image: {
  11279. source: "./media/characters/nomaxice/front-dressed.svg",
  11280. extra: 1137/824,
  11281. bottom: 74/1211
  11282. }
  11283. },
  11284. frontShorts: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(68, "kg"),
  11287. name: "Front (Shorts)",
  11288. image: {
  11289. source: "./media/characters/nomaxice/front-shorts.svg",
  11290. extra: 1137/824,
  11291. bottom: 74/1211
  11292. }
  11293. },
  11294. back: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(68, "kg"),
  11297. name: "Back",
  11298. image: {
  11299. source: "./media/characters/nomaxice/back.svg",
  11300. extra: 822/786,
  11301. bottom: 39/861
  11302. }
  11303. },
  11304. hand: {
  11305. height: math.unit(0.565, "feet"),
  11306. name: "Hand",
  11307. image: {
  11308. source: "./media/characters/nomaxice/hand.svg"
  11309. }
  11310. },
  11311. foot: {
  11312. height: math.unit(1, "feet"),
  11313. name: "Foot",
  11314. image: {
  11315. source: "./media/characters/nomaxice/foot.svg"
  11316. }
  11317. },
  11318. },
  11319. [
  11320. {
  11321. name: "Micro",
  11322. height: math.unit(8, "cm")
  11323. },
  11324. {
  11325. name: "Norm",
  11326. height: math.unit(1.82, "m")
  11327. },
  11328. {
  11329. name: "Norm+",
  11330. height: math.unit(8.8, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Big",
  11335. height: math.unit(8, "meters")
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(18, "meters")
  11340. },
  11341. {
  11342. name: "Macro+",
  11343. height: math.unit(88, "meters")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(12, "feet"),
  11352. weight: math.unit(1.5, "tons"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/dydros/front.svg",
  11356. extra: 863 / 800,
  11357. bottom: 0.015
  11358. }
  11359. },
  11360. back: {
  11361. height: math.unit(12, "feet"),
  11362. weight: math.unit(1.5, "tons"),
  11363. name: "Back",
  11364. image: {
  11365. source: "./media/characters/dydros/back.svg",
  11366. extra: 900 / 843,
  11367. bottom: 0.005
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(12, "feet"),
  11375. default: true
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(100, "kg"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/riggi/front.svg",
  11388. extra: 5787 / 5303
  11389. }
  11390. },
  11391. hyper: {
  11392. height: math.unit(6 * 5 / 3, "feet"),
  11393. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11394. name: "Hyper",
  11395. image: {
  11396. source: "./media/characters/riggi/hyper.svg",
  11397. extra: 3595 / 3485
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Small Macro",
  11404. height: math.unit(50, "feet")
  11405. },
  11406. {
  11407. name: "Default",
  11408. height: math.unit(200, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Loom",
  11413. height: math.unit(10000, "feet")
  11414. },
  11415. {
  11416. name: "Cruising Altitude",
  11417. height: math.unit(30000, "feet")
  11418. },
  11419. {
  11420. name: "Megamacro",
  11421. height: math.unit(100, "miles")
  11422. },
  11423. {
  11424. name: "Continent Sized",
  11425. height: math.unit(2800, "miles")
  11426. },
  11427. {
  11428. name: "Earth Sized",
  11429. height: math.unit(8000, "miles")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(250, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/alexi/front.svg",
  11442. extra: 3483 / 3291,
  11443. bottom: 0.04
  11444. }
  11445. },
  11446. back: {
  11447. height: math.unit(6, "feet"),
  11448. weight: math.unit(250, "lb"),
  11449. name: "Back",
  11450. image: {
  11451. source: "./media/characters/alexi/back.svg",
  11452. extra: 3533 / 3356,
  11453. bottom: 0.021
  11454. }
  11455. },
  11456. frontTransforming: {
  11457. height: math.unit(8.58, "feet"),
  11458. weight: math.unit(1300, "lb"),
  11459. name: "Transforming",
  11460. image: {
  11461. source: "./media/characters/alexi/front-transforming.svg",
  11462. extra: 437 / 409,
  11463. bottom: 19 / 458.66
  11464. }
  11465. },
  11466. frontTransformed: {
  11467. height: math.unit(12.5, "feet"),
  11468. weight: math.unit(4000, "lb"),
  11469. name: "Transformed",
  11470. image: {
  11471. source: "./media/characters/alexi/front-transformed.svg",
  11472. extra: 639 / 614,
  11473. bottom: 30.55 / 671
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(14, "feet"),
  11481. default: true
  11482. },
  11483. {
  11484. name: "Minimacro",
  11485. height: math.unit(30, "meters")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(500, "meters")
  11490. },
  11491. {
  11492. name: "Megamacro",
  11493. height: math.unit(9000, "km")
  11494. },
  11495. {
  11496. name: "Teramacro",
  11497. height: math.unit(384000, "km")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(150, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/kayroo/front.svg",
  11510. extra: 1153 / 1038,
  11511. bottom: 0.06
  11512. }
  11513. },
  11514. foot: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(150, "lb"),
  11517. name: "Foot",
  11518. image: {
  11519. source: "./media/characters/kayroo/foot.svg"
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(8, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Minimacro",
  11531. height: math.unit(250, "feet")
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(2800, "feet")
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(5200, "feet")
  11540. },
  11541. {
  11542. name: "Gigamacro",
  11543. height: math.unit(27000, "feet")
  11544. },
  11545. {
  11546. name: "Omega",
  11547. height: math.unit(45000, "feet")
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(18, "feet"),
  11556. weight: math.unit(5800, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/rhys/front.svg",
  11560. extra: 3386 / 3090,
  11561. bottom: 0.07
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(18, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Working Size",
  11573. height: math.unit(200, "feet")
  11574. },
  11575. {
  11576. name: "Demolition Size",
  11577. height: math.unit(2000, "feet")
  11578. },
  11579. {
  11580. name: "Maximum Licensed Size",
  11581. height: math.unit(5, "miles")
  11582. },
  11583. {
  11584. name: "Maximum Observed Size",
  11585. height: math.unit(10, "yottameters")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(250, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/toto/front.svg",
  11598. extra: 527 / 479,
  11599. bottom: 0.05
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Micro",
  11606. height: math.unit(3, "feet")
  11607. },
  11608. {
  11609. name: "Normal",
  11610. height: math.unit(10, "feet")
  11611. },
  11612. {
  11613. name: "Macro",
  11614. height: math.unit(150, "feet"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Megamacro",
  11619. height: math.unit(1200, "feet")
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "King", species: ["lion"], tags: ["anthro"] },
  11625. {
  11626. back: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Back",
  11630. image: {
  11631. source: "./media/characters/king/back.svg"
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(2, "inches")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(8, "feet")
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(200, "feet"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Megamacro",
  11651. height: math.unit(50, "miles")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11657. {
  11658. front: {
  11659. height: math.unit(11, "feet"),
  11660. weight: math.unit(1400, "lb"),
  11661. name: "Front",
  11662. image: {
  11663. source: "./media/characters/cordite/front.svg",
  11664. extra: 1919/1827,
  11665. bottom: 40/1959
  11666. }
  11667. },
  11668. side: {
  11669. height: math.unit(11, "feet"),
  11670. weight: math.unit(1400, "lb"),
  11671. name: "Side",
  11672. image: {
  11673. source: "./media/characters/cordite/side.svg",
  11674. extra: 1908/1793,
  11675. bottom: 38/1946
  11676. }
  11677. },
  11678. back: {
  11679. height: math.unit(11, "feet"),
  11680. weight: math.unit(1400, "lb"),
  11681. name: "Back",
  11682. image: {
  11683. source: "./media/characters/cordite/back.svg",
  11684. extra: 1938/1837,
  11685. bottom: 10/1948
  11686. }
  11687. },
  11688. feral: {
  11689. height: math.unit(2, "feet"),
  11690. weight: math.unit(90, "lb"),
  11691. name: "Feral",
  11692. image: {
  11693. source: "./media/characters/cordite/feral.svg",
  11694. extra: 1260 / 755,
  11695. bottom: 0.05
  11696. }
  11697. },
  11698. },
  11699. [
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(11, "feet"),
  11703. default: true
  11704. },
  11705. ]
  11706. ))
  11707. characterMakers.push(() => makeCharacter(
  11708. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11709. {
  11710. front: {
  11711. height: math.unit(6, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Front",
  11714. image: {
  11715. source: "./media/characters/pianostrong/front.svg",
  11716. extra: 6577 / 6254,
  11717. bottom: 0.02
  11718. }
  11719. },
  11720. side: {
  11721. height: math.unit(6, "feet"),
  11722. weight: math.unit(150, "lb"),
  11723. name: "Side",
  11724. image: {
  11725. source: "./media/characters/pianostrong/side.svg",
  11726. extra: 6106 / 5730
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/pianostrong/back.svg",
  11735. extra: 6085 / 5733,
  11736. bottom: 0.01
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Macro",
  11743. height: math.unit(100, "feet")
  11744. },
  11745. {
  11746. name: "Macro+",
  11747. height: math.unit(300, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro++",
  11752. height: math.unit(1000, "feet")
  11753. },
  11754. ]
  11755. ))
  11756. characterMakers.push(() => makeCharacter(
  11757. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11758. {
  11759. front: {
  11760. height: math.unit(6, "feet"),
  11761. weight: math.unit(150, "lb"),
  11762. name: "Front",
  11763. image: {
  11764. source: "./media/characters/kona/front.svg",
  11765. extra: 2960 / 2629,
  11766. bottom: 0.005
  11767. }
  11768. },
  11769. },
  11770. [
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(11 + 8 / 12, "feet")
  11774. },
  11775. {
  11776. name: "Macro",
  11777. height: math.unit(850, "feet"),
  11778. default: true
  11779. },
  11780. {
  11781. name: "Macro+",
  11782. height: math.unit(1.5, "km"),
  11783. default: true
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(80, "miles")
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(3500, "miles")
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11797. {
  11798. side: {
  11799. height: math.unit(1.9, "meters"),
  11800. weight: math.unit(326, "kg"),
  11801. name: "Side",
  11802. image: {
  11803. source: "./media/characters/levi/side.svg",
  11804. extra: 1704 / 1334,
  11805. bottom: 0.02
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(1.9, "meters"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(20, "meters")
  11818. },
  11819. {
  11820. name: "Macro+",
  11821. height: math.unit(200, "meters")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(2, "km")
  11826. },
  11827. {
  11828. name: "Megamacro+",
  11829. height: math.unit(20, "km")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(2500, "km")
  11834. },
  11835. {
  11836. name: "Gigamacro+",
  11837. height: math.unit(120000, "km")
  11838. },
  11839. {
  11840. name: "Teramacro",
  11841. height: math.unit(7.77e6, "km")
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(6 + 4/12, "feet"),
  11850. weight: math.unit(190, "lb"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/bmc/front.svg",
  11854. extra: 1626/1472,
  11855. bottom: 79/1705
  11856. }
  11857. },
  11858. back: {
  11859. height: math.unit(6 + 4/12, "feet"),
  11860. weight: math.unit(190, "lb"),
  11861. name: "Back",
  11862. image: {
  11863. source: "./media/characters/bmc/back.svg",
  11864. extra: 1640/1479,
  11865. bottom: 45/1685
  11866. }
  11867. },
  11868. frontArmor: {
  11869. height: math.unit(6 + 4/12, "feet"),
  11870. weight: math.unit(190, "lb"),
  11871. name: "Front-armor",
  11872. image: {
  11873. source: "./media/characters/bmc/front-armor.svg",
  11874. extra: 1538/1468,
  11875. bottom: 79/1617
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Human-sized",
  11882. height: math.unit(6 + 4 / 12, "feet")
  11883. },
  11884. {
  11885. name: "Interactive Size",
  11886. height: math.unit(25, "feet")
  11887. },
  11888. {
  11889. name: "Small",
  11890. height: math.unit(250, "feet")
  11891. },
  11892. {
  11893. name: "Normal",
  11894. height: math.unit(1250, "feet"),
  11895. default: true
  11896. },
  11897. {
  11898. name: "Good Day",
  11899. height: math.unit(88, "miles")
  11900. },
  11901. {
  11902. name: "Largest Measured Size",
  11903. height: math.unit(105.960, "galaxies")
  11904. },
  11905. ]
  11906. ))
  11907. characterMakers.push(() => makeCharacter(
  11908. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11909. {
  11910. front: {
  11911. height: math.unit(20, "feet"),
  11912. weight: math.unit(2016, "kg"),
  11913. name: "Front",
  11914. image: {
  11915. source: "./media/characters/sven-the-kaiju/front.svg",
  11916. extra: 1277/1250,
  11917. bottom: 35/1312
  11918. }
  11919. },
  11920. mouth: {
  11921. height: math.unit(1.85, "feet"),
  11922. name: "Mouth",
  11923. image: {
  11924. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Fairy",
  11931. height: math.unit(6, "inches")
  11932. },
  11933. {
  11934. name: "Normal",
  11935. height: math.unit(20, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Rampage",
  11940. height: math.unit(200, "feet")
  11941. },
  11942. {
  11943. name: "Archfey Forest Guardian",
  11944. height: math.unit(1, "mile")
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(4, "meters"),
  11953. weight: math.unit(2, "tons"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/marik/front.svg",
  11957. extra: 1057 / 1003,
  11958. bottom: 0.08
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(4, "meters"),
  11966. default: true
  11967. },
  11968. {
  11969. name: "Macro",
  11970. height: math.unit(20, "meters")
  11971. },
  11972. {
  11973. name: "Megamacro",
  11974. height: math.unit(50, "km")
  11975. },
  11976. {
  11977. name: "Gigamacro",
  11978. height: math.unit(100, "km")
  11979. },
  11980. {
  11981. name: "Alpha Macro",
  11982. height: math.unit(7.88e7, "yottameters")
  11983. },
  11984. ]
  11985. ))
  11986. characterMakers.push(() => makeCharacter(
  11987. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11988. {
  11989. front: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(110, "lb"),
  11992. name: "Front",
  11993. image: {
  11994. source: "./media/characters/mel/front.svg",
  11995. extra: 736 / 617,
  11996. bottom: 0.017
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Pico",
  12003. height: math.unit(3, "pm")
  12004. },
  12005. {
  12006. name: "Nano",
  12007. height: math.unit(3, "nm")
  12008. },
  12009. {
  12010. name: "Micro",
  12011. height: math.unit(0.3, "mm"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Micro+",
  12016. height: math.unit(3, "mm")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(5 + 10.5 / 12, "feet")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12026. {
  12027. kaiju: {
  12028. height: math.unit(1.75, "meters"),
  12029. weight: math.unit(55, "kg"),
  12030. name: "Kaiju",
  12031. image: {
  12032. source: "./media/characters/lykonous/kaiju.svg",
  12033. extra: 1055 / 946,
  12034. bottom: 0.135
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(2.5, "meters"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Kaiju Dragon",
  12046. height: math.unit(60, "meters")
  12047. },
  12048. {
  12049. name: "Mega Kaiju",
  12050. height: math.unit(120, "km")
  12051. },
  12052. {
  12053. name: "Giga Kaiju",
  12054. height: math.unit(200, "megameters")
  12055. },
  12056. {
  12057. name: "Terra Kaiju",
  12058. height: math.unit(400, "gigameters")
  12059. },
  12060. {
  12061. name: "Kaiju Dragon God",
  12062. height: math.unit(13000, "exaparsecs")
  12063. },
  12064. ]
  12065. ))
  12066. characterMakers.push(() => makeCharacter(
  12067. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12068. {
  12069. front: {
  12070. height: math.unit(6, "feet"),
  12071. weight: math.unit(150, "lb"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/blü/front.svg",
  12075. extra: 1883 / 1564,
  12076. bottom: 0.031
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(13, "feet"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Big Boi",
  12088. height: math.unit(150, "meters")
  12089. },
  12090. {
  12091. name: "Mini Stomper",
  12092. height: math.unit(300, "meters")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(1000, "meters")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(11000, "meters")
  12101. },
  12102. {
  12103. name: "Gigamacro",
  12104. height: math.unit(11000, "km")
  12105. },
  12106. {
  12107. name: "Teramacro",
  12108. height: math.unit(420000, "km")
  12109. },
  12110. {
  12111. name: "Examacro",
  12112. height: math.unit(120, "parsecs")
  12113. },
  12114. {
  12115. name: "God Tho",
  12116. height: math.unit(98000000000, "parsecs")
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12122. {
  12123. taurFront: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(200, "lb"),
  12126. name: "Taur (Front)",
  12127. image: {
  12128. source: "./media/characters/scales/taur-front.svg",
  12129. extra: 1,
  12130. bottom: 0.05
  12131. }
  12132. },
  12133. taurBack: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(200, "lb"),
  12136. name: "Taur (Back)",
  12137. image: {
  12138. source: "./media/characters/scales/taur-back.svg",
  12139. extra: 1,
  12140. bottom: 0.08
  12141. }
  12142. },
  12143. anthro: {
  12144. height: math.unit(6 * 7 / 12, "feet"),
  12145. weight: math.unit(100, "lb"),
  12146. name: "Anthro",
  12147. image: {
  12148. source: "./media/characters/scales/anthro.svg",
  12149. extra: 1,
  12150. bottom: 0.06
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Normal",
  12157. height: math.unit(12, "feet"),
  12158. default: true
  12159. },
  12160. ]
  12161. ))
  12162. characterMakers.push(() => makeCharacter(
  12163. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12164. {
  12165. front: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Front",
  12169. image: {
  12170. source: "./media/characters/koragos/front.svg",
  12171. extra: 841 / 794,
  12172. bottom: 0.035
  12173. }
  12174. },
  12175. back: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(150, "lb"),
  12178. name: "Back",
  12179. image: {
  12180. source: "./media/characters/koragos/back.svg",
  12181. extra: 841 / 810,
  12182. bottom: 0.022
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(6 + 11 / 12, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(490, "feet")
  12195. },
  12196. {
  12197. name: "Megamacro",
  12198. height: math.unit(10, "miles")
  12199. },
  12200. {
  12201. name: "Gigamacro",
  12202. height: math.unit(50, "miles")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(250, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/xylrem/front.svg",
  12215. extra: 3323 / 3050,
  12216. bottom: 0.065
  12217. }
  12218. },
  12219. },
  12220. [
  12221. {
  12222. name: "Micro",
  12223. height: math.unit(4, "feet")
  12224. },
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(16, "feet"),
  12228. default: true
  12229. },
  12230. {
  12231. name: "Macro",
  12232. height: math.unit(2720, "feet")
  12233. },
  12234. {
  12235. name: "Megamacro",
  12236. height: math.unit(25000, "miles")
  12237. },
  12238. ]
  12239. ))
  12240. characterMakers.push(() => makeCharacter(
  12241. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12242. {
  12243. front: {
  12244. height: math.unit(8, "feet"),
  12245. weight: math.unit(250, "kg"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/ikideru/front.svg",
  12249. extra: 930 / 870,
  12250. bottom: 0.087
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(8, "feet"),
  12255. weight: math.unit(250, "kg"),
  12256. name: "Back",
  12257. image: {
  12258. source: "./media/characters/ikideru/back.svg",
  12259. extra: 919 / 852,
  12260. bottom: 0.055
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Rare",
  12267. height: math.unit(8, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Playful Loom",
  12272. height: math.unit(80, "feet")
  12273. },
  12274. {
  12275. name: "City Leaner",
  12276. height: math.unit(230, "feet")
  12277. },
  12278. {
  12279. name: "Megamacro",
  12280. height: math.unit(2500, "feet")
  12281. },
  12282. {
  12283. name: "Gigamacro",
  12284. height: math.unit(26400, "feet")
  12285. },
  12286. {
  12287. name: "Tectonic Shifter",
  12288. height: math.unit(1.7, "megameters")
  12289. },
  12290. {
  12291. name: "Planet Carer",
  12292. height: math.unit(21, "megameters")
  12293. },
  12294. {
  12295. name: "God",
  12296. height: math.unit(11157.22, "parsecs")
  12297. },
  12298. ]
  12299. ))
  12300. characterMakers.push(() => makeCharacter(
  12301. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12302. {
  12303. front: {
  12304. height: math.unit(6, "feet"),
  12305. weight: math.unit(120, "lb"),
  12306. name: "Front",
  12307. image: {
  12308. source: "./media/characters/neo/front.svg"
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Micro",
  12315. height: math.unit(2, "inches"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Human Size",
  12320. height: math.unit(5 + 8 / 12, "feet")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(13 + 10 / 12, "feet"),
  12329. weight: math.unit(5320, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/chauncey-chantz/front.svg",
  12333. extra: 1587 / 1435,
  12334. bottom: 0.02
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Normal",
  12341. height: math.unit(13 + 10 / 12, "feet"),
  12342. default: true
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(45, "feet")
  12347. },
  12348. {
  12349. name: "Megamacro",
  12350. height: math.unit(250, "miles")
  12351. },
  12352. {
  12353. name: "Planetary",
  12354. height: math.unit(10000, "miles")
  12355. },
  12356. {
  12357. name: "Galactic",
  12358. height: math.unit(40000, "parsecs")
  12359. },
  12360. {
  12361. name: "Universal",
  12362. height: math.unit(1, "yottameter")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/epifox/front.svg",
  12375. extra: 1,
  12376. bottom: 0.075
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(6, "inches")
  12384. },
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(12, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(3810, "feet")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(500, "miles")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(1.8796, "m"),
  12405. weight: math.unit(230, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/colin-t/front.svg",
  12409. extra: 1272 / 1193,
  12410. bottom: 0.07
  12411. }
  12412. },
  12413. },
  12414. [
  12415. {
  12416. name: "Micro",
  12417. height: math.unit(0.571, "meters")
  12418. },
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(1.8796, "meters"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Tall",
  12426. height: math.unit(4, "meters")
  12427. },
  12428. {
  12429. name: "Macro",
  12430. height: math.unit(67.241, "meters")
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(371.856, "meters")
  12435. },
  12436. {
  12437. name: "Planetary",
  12438. height: math.unit(12631.5689, "km")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(1.85, "meters"),
  12447. weight: math.unit(80, "kg"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/matvei/front.svg",
  12451. extra: 614 / 594,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Normal",
  12459. height: math.unit(1.85, "meters"),
  12460. default: true
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(5 + 9 / 12, "feet"),
  12469. weight: math.unit(70, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/quincy/front.svg",
  12473. extra: 3041 / 2751
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(5 + 9 / 12, "feet"),
  12478. weight: math.unit(70, "lb"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/quincy/back.svg",
  12482. extra: 3041 / 2751
  12483. }
  12484. },
  12485. flying: {
  12486. height: math.unit(5 + 4 / 12, "feet"),
  12487. weight: math.unit(70, "lb"),
  12488. name: "Flying",
  12489. image: {
  12490. source: "./media/characters/quincy/flying.svg",
  12491. extra: 1044 / 930
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(3, "cm")
  12499. },
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(5 + 9 / 12, "feet")
  12503. },
  12504. {
  12505. name: "Macro",
  12506. height: math.unit(200, "meters"),
  12507. default: true
  12508. },
  12509. {
  12510. name: "Megamacro",
  12511. height: math.unit(1000, "meters")
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(3 + 11/12, "feet"),
  12520. weight: math.unit(50, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/vanrel/front.svg",
  12524. extra: 1104/949,
  12525. bottom: 52/1156
  12526. }
  12527. },
  12528. back: {
  12529. height: math.unit(3 + 11/12, "feet"),
  12530. weight: math.unit(50, "lb"),
  12531. name: "Back",
  12532. image: {
  12533. source: "./media/characters/vanrel/back.svg",
  12534. extra: 1119/976,
  12535. bottom: 37/1156
  12536. }
  12537. },
  12538. tome: {
  12539. height: math.unit(1.35, "feet"),
  12540. weight: math.unit(10, "lb"),
  12541. name: "Vanrel's Tome",
  12542. rename: true,
  12543. image: {
  12544. source: "./media/characters/vanrel/tome.svg"
  12545. }
  12546. },
  12547. beans: {
  12548. height: math.unit(0.89, "feet"),
  12549. name: "Beans",
  12550. image: {
  12551. source: "./media/characters/vanrel/beans.svg"
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Normal",
  12558. height: math.unit(3 + 11/12, "feet"),
  12559. default: true
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(7 + 5 / 12, "feet"),
  12568. name: "Front",
  12569. image: {
  12570. source: "./media/characters/kuiper-vanrel/front.svg",
  12571. extra: 1219/1169,
  12572. bottom: 69/1288
  12573. }
  12574. },
  12575. back: {
  12576. height: math.unit(7 + 5 / 12, "feet"),
  12577. name: "Back",
  12578. image: {
  12579. source: "./media/characters/kuiper-vanrel/back.svg",
  12580. extra: 1236/1193,
  12581. bottom: 27/1263
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(0.55, "meters"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/kuiper-vanrel/foot.svg",
  12589. }
  12590. },
  12591. battle: {
  12592. height: math.unit(6.824, "feet"),
  12593. name: "Battle",
  12594. image: {
  12595. source: "./media/characters/kuiper-vanrel/battle.svg",
  12596. extra: 1466 / 1327,
  12597. bottom: 29 / 1492.5
  12598. }
  12599. },
  12600. meerkui: {
  12601. height: math.unit(18, "inches"),
  12602. name: "Meerkui",
  12603. image: {
  12604. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12605. extra: 1354/1289,
  12606. bottom: 69/1423
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Normal",
  12613. height: math.unit(7 + 5 / 12, "feet"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(8 + 5 / 12, "feet"),
  12623. name: "Front",
  12624. image: {
  12625. source: "./media/characters/keset-vanrel/front.svg",
  12626. extra: 1231/1148,
  12627. bottom: 82/1313
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(8 + 5 / 12, "feet"),
  12632. name: "Back",
  12633. image: {
  12634. source: "./media/characters/keset-vanrel/back.svg",
  12635. extra: 1240/1174,
  12636. bottom: 33/1273
  12637. }
  12638. },
  12639. hand: {
  12640. height: math.unit(0.6, "meters"),
  12641. name: "Hand",
  12642. image: {
  12643. source: "./media/characters/keset-vanrel/hand.svg"
  12644. }
  12645. },
  12646. foot: {
  12647. height: math.unit(0.94978, "meters"),
  12648. name: "Foot",
  12649. image: {
  12650. source: "./media/characters/keset-vanrel/foot.svg"
  12651. }
  12652. },
  12653. battle: {
  12654. height: math.unit(7.408, "feet"),
  12655. name: "Battle",
  12656. image: {
  12657. source: "./media/characters/keset-vanrel/battle.svg",
  12658. extra: 1890 / 1386,
  12659. bottom: 73.28 / 1970
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(8 + 5 / 12, "feet"),
  12667. default: true
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(6, "feet"),
  12676. weight: math.unit(150, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/neos/front.svg",
  12680. extra: 1696 / 992,
  12681. bottom: 0.14
  12682. }
  12683. },
  12684. },
  12685. [
  12686. {
  12687. name: "Normal",
  12688. height: math.unit(54, "cm"),
  12689. default: true
  12690. },
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(100, "m")
  12694. },
  12695. {
  12696. name: "Megamacro",
  12697. height: math.unit(10, "km")
  12698. },
  12699. {
  12700. name: "Megamacro+",
  12701. height: math.unit(100, "km")
  12702. },
  12703. {
  12704. name: "Gigamacro",
  12705. height: math.unit(100, "Mm")
  12706. },
  12707. {
  12708. name: "Teramacro",
  12709. height: math.unit(100, "Gm")
  12710. },
  12711. {
  12712. name: "Examacro",
  12713. height: math.unit(100, "Em")
  12714. },
  12715. {
  12716. name: "Godly",
  12717. height: math.unit(10000, "Ym")
  12718. },
  12719. {
  12720. name: "Beyond Godly",
  12721. height: math.unit(25, "multiverses")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12727. {
  12728. feminine: {
  12729. height: math.unit(5, "feet"),
  12730. weight: math.unit(100, "lb"),
  12731. name: "Feminine",
  12732. image: {
  12733. source: "./media/characters/sammy-mouse/feminine.svg",
  12734. extra: 2526 / 2425,
  12735. bottom: 0.123
  12736. }
  12737. },
  12738. masculine: {
  12739. height: math.unit(5, "feet"),
  12740. weight: math.unit(100, "lb"),
  12741. name: "Masculine",
  12742. image: {
  12743. source: "./media/characters/sammy-mouse/masculine.svg",
  12744. extra: 2526 / 2425,
  12745. bottom: 0.123
  12746. }
  12747. },
  12748. },
  12749. [
  12750. {
  12751. name: "Micro",
  12752. height: math.unit(5, "inches")
  12753. },
  12754. {
  12755. name: "Normal",
  12756. height: math.unit(5, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Macro",
  12761. height: math.unit(60, "feet")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(4, "feet"),
  12770. weight: math.unit(50, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/kole/front.svg",
  12774. extra: 1423 / 1303,
  12775. bottom: 0.025
  12776. }
  12777. },
  12778. back: {
  12779. height: math.unit(4, "feet"),
  12780. weight: math.unit(50, "lb"),
  12781. name: "Back",
  12782. image: {
  12783. source: "./media/characters/kole/back.svg",
  12784. extra: 1426 / 1280,
  12785. bottom: 0.02
  12786. }
  12787. },
  12788. },
  12789. [
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(4, "feet"),
  12793. default: true
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(2.5, "feet"),
  12802. weight: math.unit(32, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/rufran/front.svg",
  12806. extra: 1313/885,
  12807. bottom: 94/1407
  12808. }
  12809. },
  12810. side: {
  12811. height: math.unit(2.5, "feet"),
  12812. weight: math.unit(32, "lb"),
  12813. name: "Side",
  12814. image: {
  12815. source: "./media/characters/rufran/side.svg",
  12816. extra: 1109/852,
  12817. bottom: 118/1227
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(2.5, "feet"),
  12822. weight: math.unit(32, "lb"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/rufran/back.svg",
  12826. extra: 1280/878,
  12827. bottom: 131/1411
  12828. }
  12829. },
  12830. mouth: {
  12831. height: math.unit(1.13, "feet"),
  12832. name: "Mouth",
  12833. image: {
  12834. source: "./media/characters/rufran/mouth.svg"
  12835. }
  12836. },
  12837. foot: {
  12838. height: math.unit(1.33, "feet"),
  12839. name: "Foot",
  12840. image: {
  12841. source: "./media/characters/rufran/foot.svg"
  12842. }
  12843. },
  12844. koboldFront: {
  12845. height: math.unit(2 + 6 / 12, "feet"),
  12846. weight: math.unit(20, "lb"),
  12847. name: "Front (Kobold)",
  12848. image: {
  12849. source: "./media/characters/rufran/kobold-front.svg",
  12850. extra: 2041 / 1839,
  12851. bottom: 0.055
  12852. }
  12853. },
  12854. koboldBack: {
  12855. height: math.unit(2 + 6 / 12, "feet"),
  12856. weight: math.unit(20, "lb"),
  12857. name: "Back (Kobold)",
  12858. image: {
  12859. source: "./media/characters/rufran/kobold-back.svg",
  12860. extra: 2054 / 1839,
  12861. bottom: 0.01
  12862. }
  12863. },
  12864. koboldHand: {
  12865. height: math.unit(0.2166, "meters"),
  12866. name: "Hand (Kobold)",
  12867. image: {
  12868. source: "./media/characters/rufran/kobold-hand.svg"
  12869. }
  12870. },
  12871. koboldFoot: {
  12872. height: math.unit(0.185, "meters"),
  12873. name: "Foot (Kobold)",
  12874. image: {
  12875. source: "./media/characters/rufran/kobold-foot.svg"
  12876. }
  12877. },
  12878. },
  12879. [
  12880. {
  12881. name: "Micro",
  12882. height: math.unit(1, "inch")
  12883. },
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(2 + 6 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Big",
  12891. height: math.unit(60, "feet")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(325, "feet")
  12896. },
  12897. ]
  12898. ))
  12899. characterMakers.push(() => makeCharacter(
  12900. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12901. {
  12902. front: {
  12903. height: math.unit(0.3, "meters"),
  12904. weight: math.unit(3.5, "kg"),
  12905. name: "Front",
  12906. image: {
  12907. source: "./media/characters/chip/front.svg",
  12908. extra: 748 / 674
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Micro",
  12915. height: math.unit(1, "inch"),
  12916. default: true
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12922. {
  12923. side: {
  12924. height: math.unit(2.3, "meters"),
  12925. weight: math.unit(3500, "lb"),
  12926. name: "Side",
  12927. image: {
  12928. source: "./media/characters/torvid/side.svg",
  12929. extra: 1972 / 722,
  12930. bottom: 0.035
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(2.3, "meters"),
  12938. default: true
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12944. {
  12945. front: {
  12946. height: math.unit(2, "meters"),
  12947. weight: math.unit(150.5, "kg"),
  12948. name: "Front",
  12949. image: {
  12950. source: "./media/characters/susan/front.svg",
  12951. extra: 693 / 635,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(505, "miles"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/raindrops/front.svg",
  12973. extra: 2655 / 2461,
  12974. bottom: 49 / 2705
  12975. }
  12976. },
  12977. back: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Back",
  12981. image: {
  12982. source: "./media/characters/raindrops/back.svg",
  12983. extra: 2574 / 2400,
  12984. bottom: 65 / 2634
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Micro",
  12991. height: math.unit(6, "inches")
  12992. },
  12993. {
  12994. name: "Normal",
  12995. height: math.unit(6 + 2 / 12, "feet")
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(131, "feet"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Megamacro",
  13004. height: math.unit(15, "miles")
  13005. },
  13006. {
  13007. name: "Gigamacro",
  13008. height: math.unit(4000, "miles")
  13009. },
  13010. {
  13011. name: "Teramacro",
  13012. height: math.unit(315000, "miles")
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(2.794, "meters"),
  13021. weight: math.unit(325, "kg"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/tezwa/front.svg",
  13025. extra: 2083 / 1906,
  13026. bottom: 0.031
  13027. }
  13028. },
  13029. foot: {
  13030. height: math.unit(0.687, "meters"),
  13031. name: "Foot",
  13032. image: {
  13033. source: "./media/characters/tezwa/foot.svg"
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(9 + 2 / 12, "feet"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(58, "feet"),
  13050. weight: math.unit(89000, "lb"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/typhus/front.svg",
  13054. extra: 816 / 800,
  13055. bottom: 0.065
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(58, "feet"),
  13063. default: true
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13069. {
  13070. front: {
  13071. height: math.unit(12, "feet"),
  13072. weight: math.unit(6, "tonnes"),
  13073. name: "Front",
  13074. image: {
  13075. source: "./media/characters/lyra-von-wulf/front.svg",
  13076. extra: 1,
  13077. bottom: 0.10
  13078. }
  13079. },
  13080. frontMecha: {
  13081. height: math.unit(12, "feet"),
  13082. weight: math.unit(12, "tonnes"),
  13083. name: "Front (Mecha)",
  13084. image: {
  13085. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13086. extra: 1,
  13087. bottom: 0.042
  13088. }
  13089. },
  13090. maw: {
  13091. height: math.unit(2.2, "feet"),
  13092. name: "Maw",
  13093. image: {
  13094. source: "./media/characters/lyra-von-wulf/maw.svg"
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(12, "feet"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Classic",
  13106. height: math.unit(50, "feet")
  13107. },
  13108. {
  13109. name: "Macro",
  13110. height: math.unit(500, "feet")
  13111. },
  13112. {
  13113. name: "Megamacro",
  13114. height: math.unit(1, "mile")
  13115. },
  13116. {
  13117. name: "Gigamacro",
  13118. height: math.unit(400, "miles")
  13119. },
  13120. {
  13121. name: "Teramacro",
  13122. height: math.unit(22000, "miles")
  13123. },
  13124. {
  13125. name: "Solarmacro",
  13126. height: math.unit(8600000, "miles")
  13127. },
  13128. {
  13129. name: "Galactic",
  13130. height: math.unit(1057000, "lightyears")
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(6 + 10 / 12, "feet"),
  13139. weight: math.unit(150, "lb"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/dixon/front.svg",
  13143. extra: 3361 / 3209,
  13144. bottom: 0.01
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(6 + 10 / 12, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Big",
  13156. height: math.unit(12, "meters")
  13157. },
  13158. {
  13159. name: "Macro",
  13160. height: math.unit(500, "meters")
  13161. },
  13162. {
  13163. name: "Megamacro",
  13164. height: math.unit(2, "km")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(185, "cm"),
  13173. weight: math.unit(68, "kg"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/kauko/front.svg",
  13177. extra: 1455 / 1421,
  13178. bottom: 0.03
  13179. }
  13180. },
  13181. back: {
  13182. height: math.unit(185, "cm"),
  13183. weight: math.unit(68, "kg"),
  13184. name: "Back",
  13185. image: {
  13186. source: "./media/characters/kauko/back.svg",
  13187. extra: 1455 / 1421,
  13188. bottom: 0.004
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(185, "cm"),
  13196. default: true
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "kg"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/varg/front.svg",
  13209. extra: 1108 / 1018,
  13210. bottom: 0.0375
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(5, "meters")
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(200, "meters")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(20, "kilometers")
  13226. },
  13227. {
  13228. name: "True Size",
  13229. height: math.unit(211, "km"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(1000, "km")
  13235. },
  13236. {
  13237. name: "Gigamacro+",
  13238. height: math.unit(8000, "km")
  13239. },
  13240. {
  13241. name: "Teramacro",
  13242. height: math.unit(1000000, "km")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(7 + 7 / 12, "feet"),
  13251. weight: math.unit(267, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/dayza/front.svg",
  13255. extra: 1262 / 1200,
  13256. bottom: 0.035
  13257. }
  13258. },
  13259. side: {
  13260. height: math.unit(7 + 7 / 12, "feet"),
  13261. weight: math.unit(267, "lb"),
  13262. name: "Side",
  13263. image: {
  13264. source: "./media/characters/dayza/side.svg",
  13265. extra: 1295 / 1245,
  13266. bottom: 0.05
  13267. }
  13268. },
  13269. back: {
  13270. height: math.unit(7 + 7 / 12, "feet"),
  13271. weight: math.unit(267, "lb"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/dayza/back.svg",
  13275. extra: 1241 / 1170
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(7 + 7 / 12, "feet"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(155, "feet")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6 + 5 / 12, "feet"),
  13296. weight: math.unit(160, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/xanthos/front.svg",
  13300. extra: 1,
  13301. bottom: 0.04
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6 + 5 / 12, "feet"),
  13306. weight: math.unit(160, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/xanthos/back.svg",
  13310. extra: 1,
  13311. bottom: 0.03
  13312. }
  13313. },
  13314. hand: {
  13315. height: math.unit(0.928, "feet"),
  13316. name: "Hand",
  13317. image: {
  13318. source: "./media/characters/xanthos/hand.svg"
  13319. }
  13320. },
  13321. foot: {
  13322. height: math.unit(1.286, "feet"),
  13323. name: "Foot",
  13324. image: {
  13325. source: "./media/characters/xanthos/foot.svg"
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(6 + 5 / 12, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Normal+",
  13337. height: math.unit(6, "meters")
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(40, "feet")
  13342. },
  13343. {
  13344. name: "Macro+",
  13345. height: math.unit(200, "meters")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(20, "km")
  13350. },
  13351. {
  13352. name: "Megamacro+",
  13353. height: math.unit(100, "km")
  13354. },
  13355. {
  13356. name: "Gigamacro",
  13357. height: math.unit(200, "megameters")
  13358. },
  13359. {
  13360. name: "Gigamacro+",
  13361. height: math.unit(1.5, "gigameters")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6 + 3 / 12, "feet"),
  13370. weight: math.unit(215, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/grynn/front.svg",
  13374. extra: 4627 / 4209,
  13375. bottom: 0.047
  13376. }
  13377. },
  13378. },
  13379. [
  13380. {
  13381. name: "Micro",
  13382. height: math.unit(6, "inches")
  13383. },
  13384. {
  13385. name: "Normal",
  13386. height: math.unit(6 + 3 / 12, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Big",
  13391. height: math.unit(104, "feet")
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(944, "feet")
  13396. },
  13397. {
  13398. name: "Macro+",
  13399. height: math.unit(9480, "feet")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(78752, "feet")
  13404. },
  13405. {
  13406. name: "Megamacro+",
  13407. height: math.unit(630128, "feet")
  13408. },
  13409. {
  13410. name: "Megamacro++",
  13411. height: math.unit(3150695, "feet")
  13412. },
  13413. ]
  13414. ))
  13415. characterMakers.push(() => makeCharacter(
  13416. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13417. {
  13418. front: {
  13419. height: math.unit(7 + 5 / 12, "feet"),
  13420. weight: math.unit(450, "lb"),
  13421. name: "Front",
  13422. image: {
  13423. source: "./media/characters/mocha-aura/front.svg",
  13424. extra: 1907 / 1817,
  13425. bottom: 0.04
  13426. }
  13427. },
  13428. back: {
  13429. height: math.unit(7 + 5 / 12, "feet"),
  13430. weight: math.unit(450, "lb"),
  13431. name: "Back",
  13432. image: {
  13433. source: "./media/characters/mocha-aura/back.svg",
  13434. extra: 1900 / 1825,
  13435. bottom: 0.045
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Nano",
  13442. height: math.unit(1, "nm")
  13443. },
  13444. {
  13445. name: "Megamicro",
  13446. height: math.unit(1, "mm")
  13447. },
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(3, "inches")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(7 + 5 / 12, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(30, "feet")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(3500, "feet")
  13464. },
  13465. {
  13466. name: "Teramacro",
  13467. height: math.unit(500000, "miles")
  13468. },
  13469. {
  13470. name: "Petamacro",
  13471. height: math.unit(50000000000000000, "parsecs")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/ilisha-devya/front.svg",
  13484. extra: 1053/1049,
  13485. bottom: 270/1323
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/ilisha-devya/back.svg",
  13494. extra: 1131/1128,
  13495. bottom: 39/1170
  13496. }
  13497. },
  13498. },
  13499. [
  13500. {
  13501. name: "Macro",
  13502. height: math.unit(500, "feet"),
  13503. default: true
  13504. },
  13505. {
  13506. name: "Megamacro",
  13507. height: math.unit(10, "miles")
  13508. },
  13509. {
  13510. name: "Gigamacro",
  13511. height: math.unit(100000, "miles")
  13512. },
  13513. {
  13514. name: "Examacro",
  13515. height: math.unit(1e9, "lightyears")
  13516. },
  13517. {
  13518. name: "Omniversal",
  13519. height: math.unit(1e33, "lightyears")
  13520. },
  13521. {
  13522. name: "Beyond Infinite",
  13523. height: math.unit(1e100, "lightyears")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13529. {
  13530. Side: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(150, "lb"),
  13533. name: "Side",
  13534. image: {
  13535. source: "./media/characters/mira/side.svg",
  13536. extra: 900 / 799,
  13537. bottom: 0.02
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Human Size",
  13544. height: math.unit(6, "feet")
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(100, "feet"),
  13549. default: true
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(10, "miles")
  13554. },
  13555. {
  13556. name: "Gigamacro",
  13557. height: math.unit(25000, "miles")
  13558. },
  13559. {
  13560. name: "Teramacro",
  13561. height: math.unit(300, "AU")
  13562. },
  13563. {
  13564. name: "Full Size",
  13565. height: math.unit(4.5e10, "lightyears")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/holly/front.svg",
  13578. extra: 639 / 606
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/holly/back.svg",
  13587. extra: 623 / 598
  13588. }
  13589. },
  13590. frontWorking: {
  13591. height: math.unit(6, "feet"),
  13592. weight: math.unit(150, "lb"),
  13593. name: "Front (Working)",
  13594. image: {
  13595. source: "./media/characters/holly/front-working.svg",
  13596. extra: 607 / 577,
  13597. bottom: 0.048
  13598. }
  13599. },
  13600. },
  13601. [
  13602. {
  13603. name: "Normal",
  13604. height: math.unit(12 + 3 / 12, "feet"),
  13605. default: true
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/porter/front.svg",
  13618. extra: 1,
  13619. bottom: 0.01
  13620. }
  13621. },
  13622. frontRobes: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(150, "lb"),
  13625. name: "Front (Robes)",
  13626. image: {
  13627. source: "./media/characters/porter/front-robes.svg",
  13628. extra: 1.01,
  13629. bottom: 0.01
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(11 + 9 / 12, "feet"),
  13637. default: true
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13643. {
  13644. legendary: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Legendary",
  13648. image: {
  13649. source: "./media/characters/lucy/legendary.svg",
  13650. extra: 1355 / 1100,
  13651. bottom: 0.045
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Legendary",
  13658. height: math.unit(86882 * 2, "miles"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/drusilla/front.svg",
  13672. extra: 678 / 635,
  13673. bottom: 0.03
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/drusilla/back.svg",
  13682. extra: 678 / 635,
  13683. bottom: 0.005
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(100, "feet")
  13691. },
  13692. {
  13693. name: "Canon Height",
  13694. height: math.unit(2000, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(180, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/renard-thatch/front.svg",
  13708. extra: 2411 / 2275,
  13709. bottom: 0.01
  13710. }
  13711. },
  13712. frontPosing: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(180, "lb"),
  13715. name: "Front (Posing)",
  13716. image: {
  13717. source: "./media/characters/renard-thatch/front-posing.svg",
  13718. extra: 2381 / 2261,
  13719. bottom: 0.01
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(180, "lb"),
  13725. name: "Back",
  13726. image: {
  13727. source: "./media/characters/renard-thatch/back.svg",
  13728. extra: 2428 / 2288
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Micro",
  13735. height: math.unit(3, "inches")
  13736. },
  13737. {
  13738. name: "Default",
  13739. height: math.unit(6, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(75, "feet")
  13745. },
  13746. ]
  13747. ))
  13748. characterMakers.push(() => makeCharacter(
  13749. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13750. {
  13751. front: {
  13752. height: math.unit(1450, "feet"),
  13753. weight: math.unit(1.21e6, "tons"),
  13754. name: "Front",
  13755. image: {
  13756. source: "./media/characters/sekvra/front.svg",
  13757. extra: 1193/1190,
  13758. bottom: 78/1271
  13759. }
  13760. },
  13761. side: {
  13762. height: math.unit(1450, "feet"),
  13763. weight: math.unit(1.21e6, "tons"),
  13764. name: "Side",
  13765. image: {
  13766. source: "./media/characters/sekvra/side.svg",
  13767. extra: 1193/1190,
  13768. bottom: 52/1245
  13769. }
  13770. },
  13771. back: {
  13772. height: math.unit(1450, "feet"),
  13773. weight: math.unit(1.21e6, "tons"),
  13774. name: "Back",
  13775. image: {
  13776. source: "./media/characters/sekvra/back.svg",
  13777. extra: 1219/1216,
  13778. bottom: 21/1240
  13779. }
  13780. },
  13781. frontClothed: {
  13782. height: math.unit(1450, "feet"),
  13783. weight: math.unit(1.21e6, "tons"),
  13784. name: "Front (Clothed)",
  13785. image: {
  13786. source: "./media/characters/sekvra/front-clothed.svg",
  13787. extra: 1192/1189,
  13788. bottom: 79/1271
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(1450, "feet"),
  13796. default: true
  13797. },
  13798. {
  13799. name: "Megamacro",
  13800. height: math.unit(15000, "feet")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13806. {
  13807. front: {
  13808. height: math.unit(6, "feet"),
  13809. weight: math.unit(150, "lb"),
  13810. name: "Front",
  13811. image: {
  13812. source: "./media/characters/carmine/front.svg",
  13813. extra: 1,
  13814. bottom: 0.035
  13815. }
  13816. },
  13817. frontArmor: {
  13818. height: math.unit(6, "feet"),
  13819. weight: math.unit(150, "lb"),
  13820. name: "Front (Armor)",
  13821. image: {
  13822. source: "./media/characters/carmine/front-armor.svg",
  13823. extra: 1,
  13824. bottom: 0.035
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Large",
  13831. height: math.unit(1, "mile")
  13832. },
  13833. {
  13834. name: "Huge",
  13835. height: math.unit(40, "miles"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Colossal",
  13840. height: math.unit(2500, "miles")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/elyssia/front.svg",
  13853. extra: 2201 / 2035,
  13854. bottom: 0.05
  13855. }
  13856. },
  13857. frontClothed: {
  13858. height: math.unit(6, "feet"),
  13859. weight: math.unit(150, "lb"),
  13860. name: "Front (Clothed)",
  13861. image: {
  13862. source: "./media/characters/elyssia/front-clothed.svg",
  13863. extra: 2201 / 2035,
  13864. bottom: 0.05
  13865. }
  13866. },
  13867. back: {
  13868. height: math.unit(6, "feet"),
  13869. weight: math.unit(150, "lb"),
  13870. name: "Back",
  13871. image: {
  13872. source: "./media/characters/elyssia/back.svg",
  13873. extra: 2201 / 2035,
  13874. bottom: 0.013
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Smaller",
  13881. height: math.unit(150, "feet")
  13882. },
  13883. {
  13884. name: "Standard",
  13885. height: math.unit(1400, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Distracted",
  13890. height: math.unit(15000, "feet")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(7 + 4/12, "feet"),
  13899. weight: math.unit(690, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/geno-maxwell/front.svg",
  13903. extra: 984/856,
  13904. bottom: 87/1071
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(7 + 4/12, "feet"),
  13909. weight: math.unit(690, "lb"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/geno-maxwell/back.svg",
  13913. extra: 981/854,
  13914. bottom: 57/1038
  13915. }
  13916. },
  13917. frontCostume: {
  13918. height: math.unit(7 + 4/12, "feet"),
  13919. weight: math.unit(690, "lb"),
  13920. name: "Front (Costume)",
  13921. image: {
  13922. source: "./media/characters/geno-maxwell/front-costume.svg",
  13923. extra: 984/856,
  13924. bottom: 87/1071
  13925. }
  13926. },
  13927. backcostume: {
  13928. height: math.unit(7 + 4/12, "feet"),
  13929. weight: math.unit(690, "lb"),
  13930. name: "Back (Costume)",
  13931. image: {
  13932. source: "./media/characters/geno-maxwell/back-costume.svg",
  13933. extra: 981/854,
  13934. bottom: 57/1038
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Micro",
  13941. height: math.unit(3, "inches")
  13942. },
  13943. {
  13944. name: "Normal",
  13945. height: math.unit(7 + 4 / 12, "feet"),
  13946. default: true
  13947. },
  13948. {
  13949. name: "Macro",
  13950. height: math.unit(220, "feet")
  13951. },
  13952. {
  13953. name: "Megamacro",
  13954. height: math.unit(11, "miles")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(7 + 4/12, "feet"),
  13963. weight: math.unit(750, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/regena-maxwell/front.svg",
  13967. extra: 984/856,
  13968. bottom: 87/1071
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(7 + 4/12, "feet"),
  13973. weight: math.unit(750, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/regena-maxwell/back.svg",
  13977. extra: 981/854,
  13978. bottom: 57/1038
  13979. }
  13980. },
  13981. frontCostume: {
  13982. height: math.unit(7 + 4/12, "feet"),
  13983. weight: math.unit(750, "lb"),
  13984. name: "Front (Costume)",
  13985. image: {
  13986. source: "./media/characters/regena-maxwell/front-costume.svg",
  13987. extra: 984/856,
  13988. bottom: 87/1071
  13989. }
  13990. },
  13991. backcostume: {
  13992. height: math.unit(7 + 4/12, "feet"),
  13993. weight: math.unit(750, "lb"),
  13994. name: "Back (Costume)",
  13995. image: {
  13996. source: "./media/characters/regena-maxwell/back-costume.svg",
  13997. extra: 981/854,
  13998. bottom: 57/1038
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(7 + 4 / 12, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(220, "feet")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(11, "miles")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(150, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14027. extra: 860 / 690,
  14028. bottom: 0.03
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Normal",
  14035. height: math.unit(1.7, "meters"),
  14036. default: true
  14037. },
  14038. ]
  14039. ))
  14040. characterMakers.push(() => makeCharacter(
  14041. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14042. {
  14043. front: {
  14044. height: math.unit(6, "feet"),
  14045. weight: math.unit(150, "lb"),
  14046. name: "Front",
  14047. image: {
  14048. source: "./media/characters/quilly/front.svg",
  14049. extra: 890 / 776
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Gigamacro",
  14056. height: math.unit(404090, "miles"),
  14057. default: true
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(7 + 8 / 12, "feet"),
  14066. weight: math.unit(350, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/tempest/front.svg",
  14070. extra: 1175 / 1086,
  14071. bottom: 0.02
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(7 + 8 / 12, "feet"),
  14079. default: true
  14080. },
  14081. ]
  14082. ))
  14083. characterMakers.push(() => makeCharacter(
  14084. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14085. {
  14086. side: {
  14087. height: math.unit(4 + 5 / 12, "feet"),
  14088. weight: math.unit(80, "lb"),
  14089. name: "Side",
  14090. image: {
  14091. source: "./media/characters/rodger/side.svg",
  14092. extra: 1235 / 1118
  14093. }
  14094. },
  14095. },
  14096. [
  14097. {
  14098. name: "Micro",
  14099. height: math.unit(1, "inch")
  14100. },
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(4 + 5 / 12, "feet"),
  14104. default: true
  14105. },
  14106. {
  14107. name: "Macro",
  14108. height: math.unit(120, "feet")
  14109. },
  14110. ]
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(6, "feet"),
  14117. weight: math.unit(150, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/danyel/front.svg",
  14121. extra: 1185 / 1123,
  14122. bottom: 0.05
  14123. }
  14124. },
  14125. },
  14126. [
  14127. {
  14128. name: "Shrunken",
  14129. height: math.unit(0.5, "mm")
  14130. },
  14131. {
  14132. name: "Micro",
  14133. height: math.unit(1, "mm"),
  14134. default: true
  14135. },
  14136. {
  14137. name: "Upsized",
  14138. height: math.unit(5 + 5 / 12, "feet")
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(5 + 6 / 12, "feet"),
  14147. weight: math.unit(200, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/vivian-bijoux/front.svg",
  14151. extra: 1217/1209,
  14152. bottom: 76/1293
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(5 + 6 / 12, "feet"),
  14157. weight: math.unit(200, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/vivian-bijoux/back.svg",
  14161. extra: 1214/1208,
  14162. bottom: 51/1265
  14163. }
  14164. },
  14165. dressed: {
  14166. height: math.unit(5 + 6 / 12, "feet"),
  14167. weight: math.unit(200, "lb"),
  14168. name: "Dressed",
  14169. image: {
  14170. source: "./media/characters/vivian-bijoux/dressed.svg",
  14171. extra: 1217/1209,
  14172. bottom: 76/1293
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(5 + 6 / 12, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Bad Dream",
  14184. height: math.unit(500, "feet")
  14185. },
  14186. {
  14187. name: "Nightmare",
  14188. height: math.unit(500, "miles")
  14189. },
  14190. ]
  14191. ))
  14192. characterMakers.push(() => makeCharacter(
  14193. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14194. {
  14195. front: {
  14196. height: math.unit(6 + 1 / 12, "feet"),
  14197. weight: math.unit(260, "lb"),
  14198. name: "Front",
  14199. image: {
  14200. source: "./media/characters/zeta/front.svg",
  14201. extra: 1968 / 1889,
  14202. bottom: 0.06
  14203. }
  14204. },
  14205. back: {
  14206. height: math.unit(6 + 1 / 12, "feet"),
  14207. weight: math.unit(260, "lb"),
  14208. name: "Back",
  14209. image: {
  14210. source: "./media/characters/zeta/back.svg",
  14211. extra: 1944 / 1858,
  14212. bottom: 0.03
  14213. }
  14214. },
  14215. hand: {
  14216. height: math.unit(1.112, "feet"),
  14217. name: "Hand",
  14218. image: {
  14219. source: "./media/characters/zeta/hand.svg"
  14220. }
  14221. },
  14222. foot: {
  14223. height: math.unit(1.48, "feet"),
  14224. name: "Foot",
  14225. image: {
  14226. source: "./media/characters/zeta/foot.svg"
  14227. }
  14228. },
  14229. },
  14230. [
  14231. {
  14232. name: "Micro",
  14233. height: math.unit(6, "inches")
  14234. },
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(6 + 1 / 12, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(20, "feet")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(6, "feet"),
  14251. weight: math.unit(150, "lb"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/jamie-larsen/front.svg",
  14255. extra: 962 / 933,
  14256. bottom: 0.02
  14257. }
  14258. },
  14259. back: {
  14260. height: math.unit(6, "feet"),
  14261. weight: math.unit(150, "lb"),
  14262. name: "Back",
  14263. image: {
  14264. source: "./media/characters/jamie-larsen/back.svg",
  14265. extra: 997 / 946
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Macro",
  14272. height: math.unit(28 + 7 / 12, "feet"),
  14273. default: true
  14274. },
  14275. {
  14276. name: "Macro+",
  14277. height: math.unit(180, "feet")
  14278. },
  14279. {
  14280. name: "Megamacro",
  14281. height: math.unit(10, "miles")
  14282. },
  14283. {
  14284. name: "Gigamacro",
  14285. height: math.unit(200000, "miles")
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(6, "feet"),
  14294. weight: math.unit(120, "lb"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/vance/front.svg",
  14298. extra: 1980 / 1890,
  14299. bottom: 0.09
  14300. }
  14301. },
  14302. back: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(120, "lb"),
  14305. name: "Back",
  14306. image: {
  14307. source: "./media/characters/vance/back.svg",
  14308. extra: 2081 / 1994,
  14309. bottom: 0.014
  14310. }
  14311. },
  14312. hand: {
  14313. height: math.unit(0.88, "feet"),
  14314. name: "Hand",
  14315. image: {
  14316. source: "./media/characters/vance/hand.svg"
  14317. }
  14318. },
  14319. foot: {
  14320. height: math.unit(0.64, "feet"),
  14321. name: "Foot",
  14322. image: {
  14323. source: "./media/characters/vance/foot.svg"
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Small",
  14330. height: math.unit(90, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(100, "meters")
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(15, "miles")
  14340. },
  14341. ]
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(6, "feet"),
  14348. weight: math.unit(180, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/xochitl/front.svg",
  14352. extra: 2297 / 2261,
  14353. bottom: 0.065
  14354. }
  14355. },
  14356. back: {
  14357. height: math.unit(6, "feet"),
  14358. weight: math.unit(180, "lb"),
  14359. name: "Back",
  14360. image: {
  14361. source: "./media/characters/xochitl/back.svg",
  14362. extra: 2386 / 2354,
  14363. bottom: 0.01
  14364. }
  14365. },
  14366. foot: {
  14367. height: math.unit(6 / 5 * 1.15, "feet"),
  14368. weight: math.unit(150, "lb"),
  14369. name: "Foot",
  14370. image: {
  14371. source: "./media/characters/xochitl/foot.svg"
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Macro",
  14378. height: math.unit(80, "feet")
  14379. },
  14380. {
  14381. name: "Macro+",
  14382. height: math.unit(400, "feet"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(80000, "miles")
  14388. },
  14389. {
  14390. name: "Gigamacro+",
  14391. height: math.unit(400000, "miles")
  14392. },
  14393. {
  14394. name: "Teramacro",
  14395. height: math.unit(300, "AU")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(6, "feet"),
  14404. weight: math.unit(150, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/vincent/front.svg",
  14408. extra: 1130 / 1080,
  14409. bottom: 0.055
  14410. }
  14411. },
  14412. beak: {
  14413. height: math.unit(6 * 0.1, "feet"),
  14414. name: "Beak",
  14415. image: {
  14416. source: "./media/characters/vincent/beak.svg"
  14417. }
  14418. },
  14419. hand: {
  14420. height: math.unit(6 * 0.85, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Hand",
  14423. image: {
  14424. source: "./media/characters/vincent/hand.svg"
  14425. }
  14426. },
  14427. foot: {
  14428. height: math.unit(6 * 0.19, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Foot",
  14431. image: {
  14432. source: "./media/characters/vincent/foot.svg"
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Base",
  14439. height: math.unit(6 + 5 / 12, "feet"),
  14440. default: true
  14441. },
  14442. {
  14443. name: "Macro",
  14444. height: math.unit(300, "feet")
  14445. },
  14446. {
  14447. name: "Megamacro",
  14448. height: math.unit(2, "miles")
  14449. },
  14450. {
  14451. name: "Gigamacro",
  14452. height: math.unit(1000, "miles")
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(2, "meters"),
  14461. weight: math.unit(500, "kg"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/coatl/front.svg",
  14465. extra: 3948 / 3500,
  14466. bottom: 0.082
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(4, "meters")
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(100, "meters"),
  14478. default: true
  14479. },
  14480. {
  14481. name: "Macro+",
  14482. height: math.unit(300, "meters")
  14483. },
  14484. {
  14485. name: "Megamacro",
  14486. height: math.unit(3, "gigameters")
  14487. },
  14488. {
  14489. name: "Megamacro+",
  14490. height: math.unit(300, "terameters")
  14491. },
  14492. {
  14493. name: "Megamacro++",
  14494. height: math.unit(3, "lightyears")
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(50, "kg"),
  14504. name: "front",
  14505. image: {
  14506. source: "./media/characters/shiroryu/front.svg",
  14507. extra: 1990 / 1935
  14508. }
  14509. },
  14510. },
  14511. [
  14512. {
  14513. name: "Mortal Mingling",
  14514. height: math.unit(3, "meters")
  14515. },
  14516. {
  14517. name: "Kaiju-ish",
  14518. height: math.unit(250, "meters")
  14519. },
  14520. {
  14521. name: "Somewhat Godly",
  14522. height: math.unit(400, "km"),
  14523. default: true
  14524. },
  14525. {
  14526. name: "Planetary",
  14527. height: math.unit(300, "megameters")
  14528. },
  14529. {
  14530. name: "Galaxy-dwarfing",
  14531. height: math.unit(450, "kiloparsecs")
  14532. },
  14533. {
  14534. name: "Universe Eater",
  14535. height: math.unit(150, "gigaparsecs")
  14536. },
  14537. {
  14538. name: "Almost Immeasurable",
  14539. height: math.unit(1.3e266, "yottaparsecs")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/umeko/front.svg",
  14552. extra: 1,
  14553. bottom: 0.019
  14554. }
  14555. },
  14556. frontArmored: {
  14557. height: math.unit(6, "feet"),
  14558. weight: math.unit(150, "lb"),
  14559. name: "Front (Armored)",
  14560. image: {
  14561. source: "./media/characters/umeko/front-armored.svg",
  14562. extra: 1,
  14563. bottom: 0.021
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(220, "feet"),
  14571. default: true
  14572. },
  14573. {
  14574. name: "Guardian Dragon",
  14575. height: math.unit(50, "miles")
  14576. },
  14577. {
  14578. name: "Cosmic",
  14579. height: math.unit(800000, "miles")
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(6, "feet"),
  14588. weight: math.unit(150, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/cassidy/front.svg",
  14592. extra: 810/808,
  14593. bottom: 41/851
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Canon Height",
  14600. height: math.unit(120, "feet"),
  14601. default: true
  14602. },
  14603. {
  14604. name: "Macro+",
  14605. height: math.unit(400, "feet")
  14606. },
  14607. {
  14608. name: "Macro++",
  14609. height: math.unit(4000, "feet")
  14610. },
  14611. {
  14612. name: "Megamacro",
  14613. height: math.unit(3, "miles")
  14614. },
  14615. ]
  14616. ))
  14617. characterMakers.push(() => makeCharacter(
  14618. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14619. {
  14620. front: {
  14621. height: math.unit(6, "feet"),
  14622. weight: math.unit(150, "lb"),
  14623. name: "Front",
  14624. image: {
  14625. source: "./media/characters/isaac/front.svg",
  14626. extra: 896 / 815,
  14627. bottom: 0.11
  14628. }
  14629. },
  14630. },
  14631. [
  14632. {
  14633. name: "Human Size",
  14634. height: math.unit(8, "feet"),
  14635. default: true
  14636. },
  14637. {
  14638. name: "Macro",
  14639. height: math.unit(400, "feet")
  14640. },
  14641. {
  14642. name: "Megamacro",
  14643. height: math.unit(50, "miles")
  14644. },
  14645. {
  14646. name: "Canon Height",
  14647. height: math.unit(200, "AU")
  14648. },
  14649. ]
  14650. ))
  14651. characterMakers.push(() => makeCharacter(
  14652. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14653. {
  14654. front: {
  14655. height: math.unit(6, "feet"),
  14656. weight: math.unit(72, "kg"),
  14657. name: "Front",
  14658. image: {
  14659. source: "./media/characters/sleekit/front.svg",
  14660. extra: 4693 / 4487,
  14661. bottom: 0.012
  14662. }
  14663. },
  14664. },
  14665. [
  14666. {
  14667. name: "Minimum Height",
  14668. height: math.unit(10, "meters")
  14669. },
  14670. {
  14671. name: "Smaller",
  14672. height: math.unit(25, "meters")
  14673. },
  14674. {
  14675. name: "Larger",
  14676. height: math.unit(38, "meters"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Maximum height",
  14681. height: math.unit(100, "meters")
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/nillia/front.svg",
  14694. extra: 2195 / 2037,
  14695. bottom: 0.005
  14696. }
  14697. },
  14698. back: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Back",
  14702. image: {
  14703. source: "./media/characters/nillia/back.svg",
  14704. extra: 2195 / 2037,
  14705. bottom: 0.005
  14706. }
  14707. },
  14708. },
  14709. [
  14710. {
  14711. name: "Canon Height",
  14712. height: math.unit(489, "feet"),
  14713. default: true
  14714. }
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(150, "lb"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/mesmyriza/front.svg",
  14726. extra: 2067 / 1784,
  14727. bottom: 0.035
  14728. }
  14729. },
  14730. foot: {
  14731. height: math.unit(6 / (250 / 35), "feet"),
  14732. name: "Foot",
  14733. image: {
  14734. source: "./media/characters/mesmyriza/foot.svg"
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(457, "meters"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Megamacro",
  14746. height: math.unit(8, "megameters")
  14747. },
  14748. ]
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(6, "feet"),
  14755. weight: math.unit(250, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/saudade/front.svg",
  14759. extra: 1172 / 1139,
  14760. bottom: 0.035
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Micro",
  14767. height: math.unit(3, "inches")
  14768. },
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(6, "feet"),
  14772. default: true
  14773. },
  14774. {
  14775. name: "Macro",
  14776. height: math.unit(50, "feet")
  14777. },
  14778. {
  14779. name: "Megamacro",
  14780. height: math.unit(2800, "feet")
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(5 + 4 / 12, "feet"),
  14789. weight: math.unit(100, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/keireer/front.svg",
  14793. extra: 716 / 666,
  14794. bottom: 0.05
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(5 + 4 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(90, "kg"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/mirja/front.svg",
  14815. extra: 1789 / 1683,
  14816. bottom: 0.05
  14817. }
  14818. },
  14819. frontDressed: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(90, "lb"),
  14822. name: "Front (Dressed)",
  14823. image: {
  14824. source: "./media/characters/mirja/front-dressed.svg",
  14825. extra: 1789 / 1683,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(90, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/mirja/back.svg",
  14835. extra: 953 / 917,
  14836. bottom: 0.017
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "\"Incognito\"",
  14843. height: math.unit(3, "meters")
  14844. },
  14845. {
  14846. name: "Strolling Size",
  14847. height: math.unit(15, "km")
  14848. },
  14849. {
  14850. name: "Larger Strolling Size",
  14851. height: math.unit(400, "km")
  14852. },
  14853. {
  14854. name: "Preferred Size",
  14855. height: math.unit(5000, "km")
  14856. },
  14857. {
  14858. name: "True Size",
  14859. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(15, "feet"),
  14869. weight: math.unit(880, "kg"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/nightraver/front.svg",
  14873. extra: 2444 / 2160,
  14874. bottom: 0.027
  14875. }
  14876. },
  14877. back: {
  14878. height: math.unit(15, "feet"),
  14879. weight: math.unit(880, "kg"),
  14880. name: "Back",
  14881. image: {
  14882. source: "./media/characters/nightraver/back.svg",
  14883. extra: 2309 / 2180,
  14884. bottom: 0.005
  14885. }
  14886. },
  14887. sole: {
  14888. height: math.unit(2.878, "feet"),
  14889. name: "Sole",
  14890. image: {
  14891. source: "./media/characters/nightraver/sole.svg"
  14892. }
  14893. },
  14894. foot: {
  14895. height: math.unit(2.285, "feet"),
  14896. name: "Foot",
  14897. image: {
  14898. source: "./media/characters/nightraver/foot.svg"
  14899. }
  14900. },
  14901. maw: {
  14902. height: math.unit(2.67, "feet"),
  14903. name: "Maw",
  14904. image: {
  14905. source: "./media/characters/nightraver/maw.svg"
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Micro",
  14912. height: math.unit(1, "cm")
  14913. },
  14914. {
  14915. name: "Normal",
  14916. height: math.unit(15, "feet"),
  14917. default: true
  14918. },
  14919. {
  14920. name: "Macro",
  14921. height: math.unit(300, "feet")
  14922. },
  14923. {
  14924. name: "Megamacro",
  14925. height: math.unit(300, "miles")
  14926. },
  14927. {
  14928. name: "Gigamacro",
  14929. height: math.unit(10000, "miles")
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14935. {
  14936. side: {
  14937. height: math.unit(2, "inches"),
  14938. weight: math.unit(5, "grams"),
  14939. name: "Side",
  14940. image: {
  14941. source: "./media/characters/arc/side.svg"
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Micro",
  14948. height: math.unit(2, "inches"),
  14949. default: true
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(1.1938, "meters"),
  14958. weight: math.unit(54, "kg"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/nebula-shahar/front.svg",
  14962. extra: 1642 / 1436,
  14963. bottom: 0.06
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Megamicro",
  14970. height: math.unit(0.3, "mm")
  14971. },
  14972. {
  14973. name: "Micro",
  14974. height: math.unit(3, "cm")
  14975. },
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(138, "cm"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro",
  14983. height: math.unit(30, "m")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(5.24, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/shayla/front.svg",
  14996. extra: 1512 / 1414,
  14997. bottom: 0.01
  14998. }
  14999. },
  15000. back: {
  15001. height: math.unit(5.24, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Back",
  15004. image: {
  15005. source: "./media/characters/shayla/back.svg",
  15006. extra: 1512 / 1414
  15007. }
  15008. },
  15009. hand: {
  15010. height: math.unit(0.7781496062992126, "feet"),
  15011. name: "Hand",
  15012. image: {
  15013. source: "./media/characters/shayla/hand.svg"
  15014. }
  15015. },
  15016. foot: {
  15017. height: math.unit(1.4206036745406823, "feet"),
  15018. name: "Foot",
  15019. image: {
  15020. source: "./media/characters/shayla/foot.svg"
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Micro",
  15027. height: math.unit(0.32, "feet")
  15028. },
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(5.24, "feet"),
  15032. default: true
  15033. },
  15034. {
  15035. name: "Macro",
  15036. height: math.unit(492.12, "feet")
  15037. },
  15038. {
  15039. name: "Megamacro",
  15040. height: math.unit(186.41, "miles")
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(2.2, "m"),
  15049. weight: math.unit(120, "kg"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/pia-jr/front.svg",
  15053. extra: 1000 / 970,
  15054. bottom: 0.035
  15055. }
  15056. },
  15057. hand: {
  15058. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15059. name: "Hand",
  15060. image: {
  15061. source: "./media/characters/pia-jr/hand.svg"
  15062. }
  15063. },
  15064. paw: {
  15065. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15066. name: "Paw",
  15067. image: {
  15068. source: "./media/characters/pia-jr/paw.svg"
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Micro",
  15075. height: math.unit(1.2, "cm")
  15076. },
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(2.2, "m"),
  15080. default: true
  15081. },
  15082. {
  15083. name: "Macro",
  15084. height: math.unit(180, "m")
  15085. },
  15086. {
  15087. name: "Megamacro",
  15088. height: math.unit(420, "km")
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(2, "m"),
  15097. weight: math.unit(115, "kg"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/pia-sr/front.svg",
  15101. extra: 760 / 730,
  15102. bottom: 0.015
  15103. }
  15104. },
  15105. back: {
  15106. height: math.unit(2, "m"),
  15107. weight: math.unit(115, "kg"),
  15108. name: "Back",
  15109. image: {
  15110. source: "./media/characters/pia-sr/back.svg",
  15111. extra: 760 / 730,
  15112. bottom: 0.01
  15113. }
  15114. },
  15115. hand: {
  15116. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15117. name: "Hand",
  15118. image: {
  15119. source: "./media/characters/pia-sr/hand.svg"
  15120. }
  15121. },
  15122. foot: {
  15123. height: math.unit(1.83, "feet"),
  15124. name: "Foot",
  15125. image: {
  15126. source: "./media/characters/pia-sr/foot.svg"
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Micro",
  15133. height: math.unit(88, "mm")
  15134. },
  15135. {
  15136. name: "Normal",
  15137. height: math.unit(2, "m"),
  15138. default: true
  15139. },
  15140. {
  15141. name: "Macro",
  15142. height: math.unit(200, "m")
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(420, "km")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(8 + 2 / 12, "feet"),
  15155. weight: math.unit(300, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/kibibyte/front.svg",
  15159. extra: 2221 / 2098,
  15160. bottom: 0.04
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(8 + 2 / 12, "feet"),
  15168. default: true
  15169. },
  15170. {
  15171. name: "Socialable Macro",
  15172. height: math.unit(50, "feet")
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(300, "feet")
  15177. },
  15178. {
  15179. name: "Megamacro",
  15180. height: math.unit(500, "miles")
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(150, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/felix/front.svg",
  15193. extra: 762 / 722,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. frontClothed: {
  15198. height: math.unit(6, "feet"),
  15199. weight: math.unit(150, "lb"),
  15200. name: "Front (Clothed)",
  15201. image: {
  15202. source: "./media/characters/felix/front-clothed.svg",
  15203. extra: 762 / 722,
  15204. bottom: 0.02
  15205. }
  15206. },
  15207. },
  15208. [
  15209. {
  15210. name: "Normal",
  15211. height: math.unit(6 + 8 / 12, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(2600, "feet")
  15217. },
  15218. {
  15219. name: "Megamacro",
  15220. height: math.unit(450, "miles")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6 + 1 / 12, "feet"),
  15229. weight: math.unit(250, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/tobo/front.svg",
  15233. extra: 608 / 586,
  15234. bottom: 0.023
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(6 + 1 / 12, "feet"),
  15239. weight: math.unit(250, "lb"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/tobo/back.svg",
  15243. extra: 608 / 586
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Nano",
  15250. height: math.unit(2, "nm")
  15251. },
  15252. {
  15253. name: "Megamicro",
  15254. height: math.unit(0.1, "mm")
  15255. },
  15256. {
  15257. name: "Micro",
  15258. height: math.unit(1, "inch"),
  15259. default: true
  15260. },
  15261. {
  15262. name: "Human-sized",
  15263. height: math.unit(6 + 1 / 12, "feet")
  15264. },
  15265. {
  15266. name: "Macro",
  15267. height: math.unit(250, "feet")
  15268. },
  15269. {
  15270. name: "Megamacro",
  15271. height: math.unit(75, "miles")
  15272. },
  15273. {
  15274. name: "Texas-sized",
  15275. height: math.unit(750, "miles")
  15276. },
  15277. {
  15278. name: "Teramacro",
  15279. height: math.unit(50000, "miles")
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(6, "feet"),
  15288. weight: math.unit(269, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/danny-kapowsky/front.svg",
  15292. extra: 766 / 736,
  15293. bottom: 0.044
  15294. }
  15295. },
  15296. back: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(269, "lb"),
  15299. name: "Back",
  15300. image: {
  15301. source: "./media/characters/danny-kapowsky/back.svg",
  15302. extra: 797 / 760,
  15303. bottom: 0.025
  15304. }
  15305. },
  15306. },
  15307. [
  15308. {
  15309. name: "Macro",
  15310. height: math.unit(150, "feet"),
  15311. default: true
  15312. },
  15313. {
  15314. name: "Macro+",
  15315. height: math.unit(200, "feet")
  15316. },
  15317. {
  15318. name: "Macro++",
  15319. height: math.unit(300, "feet")
  15320. },
  15321. {
  15322. name: "Macro+++",
  15323. height: math.unit(400, "feet")
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15329. {
  15330. side: {
  15331. height: math.unit(6, "feet"),
  15332. weight: math.unit(170, "lb"),
  15333. name: "Side",
  15334. image: {
  15335. source: "./media/characters/finn/side.svg",
  15336. extra: 1953 / 1807,
  15337. bottom: 0.057
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Megamacro",
  15344. height: math.unit(14445, "feet"),
  15345. default: true
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(5 + 6 / 12, "feet"),
  15354. weight: math.unit(125, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/roy/front.svg",
  15358. extra: 1,
  15359. bottom: 0.11
  15360. }
  15361. },
  15362. },
  15363. [
  15364. {
  15365. name: "Micro",
  15366. height: math.unit(3, "inches"),
  15367. default: true
  15368. },
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(5 + 6 / 12, "feet")
  15372. },
  15373. {
  15374. name: "Lesser Macro",
  15375. height: math.unit(60, "feet")
  15376. },
  15377. {
  15378. name: "Greater Macro",
  15379. height: math.unit(120, "feet")
  15380. },
  15381. ]
  15382. ))
  15383. characterMakers.push(() => makeCharacter(
  15384. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15385. {
  15386. front: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(100, "lb"),
  15389. name: "Front",
  15390. image: {
  15391. source: "./media/characters/aevsivs/front.svg",
  15392. extra: 1,
  15393. bottom: 0.03
  15394. }
  15395. },
  15396. back: {
  15397. height: math.unit(6, "feet"),
  15398. weight: math.unit(100, "lb"),
  15399. name: "Back",
  15400. image: {
  15401. source: "./media/characters/aevsivs/back.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Micro",
  15408. height: math.unit(2, "inches"),
  15409. default: true
  15410. },
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(5, "feet")
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(5 + 7 / 12, "feet"),
  15422. weight: math.unit(159, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/hildegard/front.svg",
  15426. extra: 289 / 269,
  15427. bottom: 7.63 / 297.8
  15428. }
  15429. },
  15430. back: {
  15431. height: math.unit(5 + 7 / 12, "feet"),
  15432. weight: math.unit(159, "lb"),
  15433. name: "Back",
  15434. image: {
  15435. source: "./media/characters/hildegard/back.svg",
  15436. extra: 280 / 260,
  15437. bottom: 2.3 / 282
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Normal",
  15444. height: math.unit(5 + 7 / 12, "feet"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15451. {
  15452. bernard: {
  15453. height: math.unit(2 + 7 / 12, "feet"),
  15454. weight: math.unit(66, "lb"),
  15455. name: "Bernard",
  15456. rename: true,
  15457. image: {
  15458. source: "./media/characters/bernard-wilder/bernard.svg",
  15459. extra: 192 / 128,
  15460. bottom: 0.05
  15461. }
  15462. },
  15463. wilder: {
  15464. height: math.unit(5 + 8 / 12, "feet"),
  15465. weight: math.unit(143, "lb"),
  15466. name: "Wilder",
  15467. rename: true,
  15468. image: {
  15469. source: "./media/characters/bernard-wilder/wilder.svg",
  15470. extra: 361 / 312,
  15471. bottom: 0.02
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(2 + 7 / 12, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15485. {
  15486. anthro: {
  15487. height: math.unit(6 + 1 / 12, "feet"),
  15488. weight: math.unit(155, "lb"),
  15489. name: "Anthro",
  15490. image: {
  15491. source: "./media/characters/hearth/anthro.svg",
  15492. extra: 1178/1136,
  15493. bottom: 28/1206
  15494. }
  15495. },
  15496. feral: {
  15497. height: math.unit(3.78, "feet"),
  15498. weight: math.unit(35, "kg"),
  15499. name: "Feral",
  15500. image: {
  15501. source: "./media/characters/hearth/feral.svg",
  15502. extra: 153 / 135,
  15503. bottom: 0.03
  15504. }
  15505. },
  15506. },
  15507. [
  15508. {
  15509. name: "Normal",
  15510. height: math.unit(6 + 1 / 12, "feet"),
  15511. default: true
  15512. },
  15513. ]
  15514. ))
  15515. characterMakers.push(() => makeCharacter(
  15516. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15517. {
  15518. front: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(182, "lb"),
  15521. name: "Front",
  15522. image: {
  15523. source: "./media/characters/ingrid/front.svg",
  15524. extra: 294 / 268,
  15525. bottom: 0.027
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Normal",
  15532. height: math.unit(6, "feet"),
  15533. default: true
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15539. {
  15540. eevee: {
  15541. height: math.unit(2 + 10 / 12, "feet"),
  15542. weight: math.unit(86, "lb"),
  15543. name: "Malgam",
  15544. image: {
  15545. source: "./media/characters/malgam/eevee.svg",
  15546. extra: 952/784,
  15547. bottom: 38/990
  15548. }
  15549. },
  15550. sylveon: {
  15551. height: math.unit(4, "feet"),
  15552. weight: math.unit(101, "lb"),
  15553. name: "Future Malgam",
  15554. rename: true,
  15555. image: {
  15556. source: "./media/characters/malgam/sylveon.svg",
  15557. extra: 371 / 325,
  15558. bottom: 0.015
  15559. }
  15560. },
  15561. gigantamax: {
  15562. height: math.unit(50, "feet"),
  15563. name: "Gigantamax Malgam",
  15564. rename: true,
  15565. image: {
  15566. source: "./media/characters/malgam/gigantamax.svg"
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Normal",
  15573. height: math.unit(2 + 10 / 12, "feet"),
  15574. default: true
  15575. },
  15576. ]
  15577. ))
  15578. characterMakers.push(() => makeCharacter(
  15579. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15580. {
  15581. front: {
  15582. height: math.unit(5 + 11 / 12, "feet"),
  15583. weight: math.unit(188, "lb"),
  15584. name: "Front",
  15585. image: {
  15586. source: "./media/characters/fleur/front.svg",
  15587. extra: 309 / 283,
  15588. bottom: 0.007
  15589. }
  15590. },
  15591. },
  15592. [
  15593. {
  15594. name: "Normal",
  15595. height: math.unit(5 + 11 / 12, "feet"),
  15596. default: true
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(5 + 4 / 12, "feet"),
  15605. weight: math.unit(122, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/jude/front.svg",
  15609. extra: 288 / 273,
  15610. bottom: 0.03
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(5 + 4 / 12, "feet"),
  15618. default: true
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(5 + 11 / 12, "feet"),
  15627. weight: math.unit(190, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/seara/front.svg",
  15631. extra: 1,
  15632. bottom: 0.05
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(5 + 11 / 12, "feet"),
  15640. default: true
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(16 + 5 / 12, "feet"),
  15649. weight: math.unit(524, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/caspian-lugia/front.svg",
  15653. extra: 1,
  15654. bottom: 0.04
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(16 + 5 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(5 + 7 / 12, "feet"),
  15671. weight: math.unit(170, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/mika/front.svg",
  15675. extra: 1,
  15676. bottom: 0.016
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(5 + 7 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6 + 2 / 12, "feet"),
  15693. weight: math.unit(268, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/sol/front.svg",
  15697. extra: 247 / 231,
  15698. bottom: 0.05
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(6 + 2 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15712. {
  15713. buizel: {
  15714. height: math.unit(2 + 5 / 12, "feet"),
  15715. weight: math.unit(87, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/umiko/buizel.svg",
  15719. extra: 172 / 157,
  15720. bottom: 0.01
  15721. },
  15722. form: "buizel",
  15723. default: true
  15724. },
  15725. floatzel: {
  15726. height: math.unit(5 + 9 / 12, "feet"),
  15727. weight: math.unit(250, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/umiko/floatzel.svg",
  15731. extra: 1076/1006,
  15732. bottom: 15/1091
  15733. },
  15734. form: "floatzel",
  15735. default: true
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(2 + 5 / 12, "feet"),
  15742. form: "buizel",
  15743. default: true
  15744. },
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(5 + 9 / 12, "feet"),
  15748. form: "floatzel",
  15749. default: true
  15750. },
  15751. ],
  15752. {
  15753. "buizel": {
  15754. name: "Buizel"
  15755. },
  15756. "floatzel": {
  15757. name: "Floatzel",
  15758. default: true
  15759. }
  15760. }
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(6 + 2 / 12, "feet"),
  15767. weight: math.unit(146, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/iliac/front.svg",
  15771. extra: 389 / 365,
  15772. bottom: 0.035
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(6 + 2 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(6, "feet"),
  15789. weight: math.unit(170, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/topaz/front.svg",
  15793. extra: 317 / 303,
  15794. bottom: 0.055
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(6, "feet"),
  15802. default: true
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5 + 11 / 12, "feet"),
  15811. weight: math.unit(144, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/gabriel/front.svg",
  15815. extra: 285 / 262,
  15816. bottom: 0.004
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(5 + 11 / 12, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15830. {
  15831. side: {
  15832. height: math.unit(6 + 5 / 12, "feet"),
  15833. weight: math.unit(300, "lb"),
  15834. name: "Side",
  15835. image: {
  15836. source: "./media/characters/tempest-suicune/side.svg",
  15837. extra: 195 / 154,
  15838. bottom: 0.04
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(6 + 5 / 12, "feet"),
  15846. default: true
  15847. },
  15848. ]
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(7 + 2 / 12, "feet"),
  15855. weight: math.unit(322, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/vulcan/front.svg",
  15859. extra: 154 / 147,
  15860. bottom: 0.04
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(7 + 2 / 12, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(5 + 10 / 12, "feet"),
  15877. weight: math.unit(264, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/gault/front.svg",
  15881. extra: 161 / 140,
  15882. bottom: 0.028
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(5 + 10 / 12, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(6, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/shard/front.svg",
  15903. extra: 273 / 238,
  15904. bottom: 0.02
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(3 + 6 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(5 + 11 / 12, "feet"),
  15921. weight: math.unit(146, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/ashe/front.svg",
  15925. extra: 400 / 373,
  15926. bottom: 0.01
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(5 + 11 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(5 + 5 / 12, "feet"),
  15943. weight: math.unit(135, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/beatrix/front.svg",
  15947. extra: 392 / 379,
  15948. bottom: 0.01
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(6, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(6 + 2/12, "feet"),
  15965. weight: math.unit(135, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/ignatius/front.svg",
  15969. extra: 1380/1259,
  15970. bottom: 27/1407
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(6 + 2/12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6 + 2 / 12, "feet"),
  15987. weight: math.unit(138, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/mei-li/front.svg",
  15991. extra: 237 / 229,
  15992. bottom: 0.03
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(6 + 2 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(2 + 4 / 12, "feet"),
  16009. weight: math.unit(62, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/puru/front.svg",
  16013. extra: 206 / 149,
  16014. bottom: 0.06
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(2 + 4 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16028. {
  16029. anthro: {
  16030. height: math.unit(5 + 8/12, "feet"),
  16031. weight: math.unit(200, "lb"),
  16032. energyNeed: math.unit(2000, "kcal"),
  16033. name: "Anthro",
  16034. image: {
  16035. source: "./media/characters/kee/anthro.svg",
  16036. extra: 3251/3184,
  16037. bottom: 250/3501
  16038. }
  16039. },
  16040. taur: {
  16041. height: math.unit(11, "feet"),
  16042. weight: math.unit(500, "lb"),
  16043. energyNeed: math.unit(5000, "kcal"),
  16044. name: "Taur",
  16045. image: {
  16046. source: "./media/characters/kee/taur.svg",
  16047. extra: 1362/1320,
  16048. bottom: 83/1445
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(5 + 8/12, "feet"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "Macro",
  16060. height: math.unit(35, "feet")
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16066. {
  16067. anthro: {
  16068. height: math.unit(7, "feet"),
  16069. weight: math.unit(190, "lb"),
  16070. name: "Anthro",
  16071. image: {
  16072. source: "./media/characters/cobalt-dracha/anthro.svg",
  16073. extra: 231 / 225,
  16074. bottom: 0.04
  16075. }
  16076. },
  16077. feral: {
  16078. height: math.unit(9 + 7 / 12, "feet"),
  16079. weight: math.unit(294, "lb"),
  16080. name: "Feral",
  16081. image: {
  16082. source: "./media/characters/cobalt-dracha/feral.svg",
  16083. extra: 692 / 633,
  16084. bottom: 0.05
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(7, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16098. {
  16099. fallen: {
  16100. height: math.unit(11 + 8 / 12, "feet"),
  16101. weight: math.unit(485, "lb"),
  16102. name: "Java (Fallen)",
  16103. rename: true,
  16104. image: {
  16105. source: "./media/characters/java/fallen.svg",
  16106. extra: 226 / 208,
  16107. bottom: 0.005
  16108. }
  16109. },
  16110. godkin: {
  16111. height: math.unit(10 + 6 / 12, "feet"),
  16112. weight: math.unit(328, "lb"),
  16113. name: "Java (Godkin)",
  16114. rename: true,
  16115. image: {
  16116. source: "./media/characters/java/godkin.svg",
  16117. extra: 1104/1068,
  16118. bottom: 36/1140
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(11 + 8 / 12, "feet"),
  16126. default: true
  16127. },
  16128. ]
  16129. ))
  16130. characterMakers.push(() => makeCharacter(
  16131. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16132. {
  16133. front: {
  16134. height: math.unit(5 + 9 / 12, "feet"),
  16135. weight: math.unit(170, "lb"),
  16136. name: "Front",
  16137. image: {
  16138. source: "./media/characters/purna/front.svg",
  16139. extra: 239 / 229,
  16140. bottom: 0.01
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Normal",
  16147. height: math.unit(5 + 9 / 12, "feet"),
  16148. default: true
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(5 + 9 / 12, "feet"),
  16157. weight: math.unit(142, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/kuva/front.svg",
  16161. extra: 281 / 271,
  16162. bottom: 0.006
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(5 + 9 / 12, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16176. {
  16177. anthro: {
  16178. height: math.unit(9 + 2 / 12, "feet"),
  16179. weight: math.unit(270, "lb"),
  16180. name: "Anthro",
  16181. image: {
  16182. source: "./media/characters/embra/anthro.svg",
  16183. extra: 200 / 187,
  16184. bottom: 0.02
  16185. }
  16186. },
  16187. feral: {
  16188. height: math.unit(18 + 8 / 12, "feet"),
  16189. weight: math.unit(576, "lb"),
  16190. name: "Feral",
  16191. image: {
  16192. source: "./media/characters/embra/feral.svg",
  16193. extra: 152 / 137,
  16194. bottom: 0.037
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(9 + 2 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16208. {
  16209. anthro: {
  16210. height: math.unit(10 + 9 / 12, "feet"),
  16211. weight: math.unit(224, "lb"),
  16212. name: "Anthro",
  16213. image: {
  16214. source: "./media/characters/grottos/anthro.svg",
  16215. extra: 350 / 332,
  16216. bottom: 0.045
  16217. }
  16218. },
  16219. feral: {
  16220. height: math.unit(20 + 7 / 12, "feet"),
  16221. weight: math.unit(629, "lb"),
  16222. name: "Feral",
  16223. image: {
  16224. source: "./media/characters/grottos/feral.svg",
  16225. extra: 207 / 190,
  16226. bottom: 0.05
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(10 + 9 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16240. {
  16241. anthro: {
  16242. height: math.unit(9 + 6 / 12, "feet"),
  16243. weight: math.unit(298, "lb"),
  16244. name: "Anthro",
  16245. image: {
  16246. source: "./media/characters/frifna/anthro.svg",
  16247. extra: 282 / 269,
  16248. bottom: 0.015
  16249. }
  16250. },
  16251. feral: {
  16252. height: math.unit(16 + 2 / 12, "feet"),
  16253. weight: math.unit(624, "lb"),
  16254. name: "Feral",
  16255. image: {
  16256. source: "./media/characters/frifna/feral.svg"
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(9 + 6 / 12, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6 + 2 / 12, "feet"),
  16273. weight: math.unit(168, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/elise/front.svg",
  16277. extra: 276 / 271
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(6 + 2 / 12, "feet"),
  16285. default: true
  16286. },
  16287. ]
  16288. ))
  16289. characterMakers.push(() => makeCharacter(
  16290. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16291. {
  16292. front: {
  16293. height: math.unit(5 + 10 / 12, "feet"),
  16294. weight: math.unit(210, "lb"),
  16295. name: "Front",
  16296. image: {
  16297. source: "./media/characters/glade/front.svg",
  16298. extra: 258 / 247,
  16299. bottom: 0.008
  16300. }
  16301. },
  16302. },
  16303. [
  16304. {
  16305. name: "Normal",
  16306. height: math.unit(5 + 10 / 12, "feet"),
  16307. default: true
  16308. },
  16309. ]
  16310. ))
  16311. characterMakers.push(() => makeCharacter(
  16312. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16313. {
  16314. front: {
  16315. height: math.unit(5 + 10 / 12, "feet"),
  16316. weight: math.unit(129, "lb"),
  16317. name: "Front",
  16318. image: {
  16319. source: "./media/characters/rina/front.svg",
  16320. extra: 266 / 255,
  16321. bottom: 0.005
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(5 + 10 / 12, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(6 + 1 / 12, "feet"),
  16338. weight: math.unit(192, "lb"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/veronica/front.svg",
  16342. extra: 319 / 309,
  16343. bottom: 0.005
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Normal",
  16350. height: math.unit(6 + 1 / 12, "feet"),
  16351. default: true
  16352. },
  16353. ]
  16354. ))
  16355. characterMakers.push(() => makeCharacter(
  16356. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16357. {
  16358. front: {
  16359. height: math.unit(9 + 3 / 12, "feet"),
  16360. weight: math.unit(1100, "lb"),
  16361. name: "Front",
  16362. image: {
  16363. source: "./media/characters/braxton/front.svg",
  16364. extra: 1057 / 984,
  16365. bottom: 0.05
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(9 + 3 / 12, "feet")
  16373. },
  16374. {
  16375. name: "Giant",
  16376. height: math.unit(300, "feet"),
  16377. default: true
  16378. },
  16379. {
  16380. name: "Macro",
  16381. height: math.unit(700, "feet")
  16382. },
  16383. {
  16384. name: "Megamacro",
  16385. height: math.unit(6000, "feet")
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(6 + 7 / 12, "feet"),
  16394. weight: math.unit(150, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/blue-feyonics/front.svg",
  16398. extra: 1403 / 1306,
  16399. bottom: 0.047
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(6 + 7 / 12, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16413. {
  16414. front: {
  16415. height: math.unit(1.8, "meters"),
  16416. weight: math.unit(60, "kg"),
  16417. name: "Front",
  16418. image: {
  16419. source: "./media/characters/maxwell/front.svg",
  16420. extra: 2060 / 1873
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Micro",
  16427. height: math.unit(1, "mm")
  16428. },
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(1.8, "meter"),
  16432. default: true
  16433. },
  16434. {
  16435. name: "Macro",
  16436. height: math.unit(30, "meters")
  16437. },
  16438. {
  16439. name: "Megamacro",
  16440. height: math.unit(10, "km")
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/jack/front.svg",
  16453. extra: 1754 / 1640,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(80000, "feet"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Max size",
  16466. height: math.unit(10, "lightyears")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16472. {
  16473. urban: {
  16474. height: math.unit(5, "feet"),
  16475. weight: math.unit(240, "lb"),
  16476. name: "Urban",
  16477. image: {
  16478. source: "./media/characters/cafat/urban.svg",
  16479. extra: 1223/1126,
  16480. bottom: 205/1428
  16481. }
  16482. },
  16483. summer: {
  16484. height: math.unit(5, "feet"),
  16485. weight: math.unit(240, "lb"),
  16486. name: "Summer",
  16487. image: {
  16488. source: "./media/characters/cafat/summer.svg",
  16489. extra: 1223/1126,
  16490. bottom: 205/1428
  16491. }
  16492. },
  16493. winter: {
  16494. height: math.unit(5, "feet"),
  16495. weight: math.unit(240, "lb"),
  16496. name: "Winter",
  16497. image: {
  16498. source: "./media/characters/cafat/winter.svg",
  16499. extra: 1223/1126,
  16500. bottom: 205/1428
  16501. }
  16502. },
  16503. lingerie: {
  16504. height: math.unit(5, "feet"),
  16505. weight: math.unit(240, "lb"),
  16506. name: "Lingerie",
  16507. image: {
  16508. source: "./media/characters/cafat/lingerie.svg",
  16509. extra: 1223/1126,
  16510. bottom: 205/1428
  16511. }
  16512. },
  16513. upright: {
  16514. height: math.unit(6.3, "feet"),
  16515. weight: math.unit(240, "lb"),
  16516. name: "Upright",
  16517. image: {
  16518. source: "./media/characters/cafat/upright.svg",
  16519. bottom: 0.01
  16520. }
  16521. },
  16522. uprightFull: {
  16523. height: math.unit(6.3, "feet"),
  16524. weight: math.unit(240, "lb"),
  16525. name: "Upright (Full)",
  16526. image: {
  16527. source: "./media/characters/cafat/upright-full.svg",
  16528. bottom: 0.01
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Small",
  16535. height: math.unit(5, "feet"),
  16536. default: true
  16537. },
  16538. {
  16539. name: "Large",
  16540. height: math.unit(13, "feet")
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(6, "feet"),
  16549. weight: math.unit(150, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/verin-raharra/front.svg",
  16553. extra: 5019 / 4835,
  16554. bottom: 0.023
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(7 + 5 / 12, "feet"),
  16562. default: true
  16563. },
  16564. {
  16565. name: "Upsized",
  16566. height: math.unit(20, "feet")
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(7, "feet"),
  16575. weight: math.unit(230, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/nakata/front.svg",
  16579. extra: 1.005,
  16580. bottom: 0.01
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(7, "feet"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "Big",
  16592. height: math.unit(14, "feet")
  16593. },
  16594. {
  16595. name: "Macro",
  16596. height: math.unit(400, "feet")
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(4.91, "feet"),
  16605. weight: math.unit(100, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/lily/front.svg",
  16609. extra: 1585 / 1415,
  16610. bottom: 0.02
  16611. }
  16612. },
  16613. },
  16614. [
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(4.91, "feet"),
  16618. default: true
  16619. },
  16620. ]
  16621. ))
  16622. characterMakers.push(() => makeCharacter(
  16623. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16624. {
  16625. laying: {
  16626. height: math.unit(4 + 4 / 12, "feet"),
  16627. weight: math.unit(600, "lb"),
  16628. name: "Laying",
  16629. image: {
  16630. source: "./media/characters/sheila/laying.svg",
  16631. extra: 1333 / 1265,
  16632. bottom: 0.16
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(4 + 4 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(6, "feet"),
  16649. weight: math.unit(190, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/sax/front.svg",
  16653. extra: 1187 / 973,
  16654. bottom: 0.042
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Micro",
  16661. height: math.unit(4, "inches"),
  16662. default: true
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(6, "feet"),
  16671. weight: math.unit(150, "lb"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/pandora/front.svg",
  16675. extra: 2720 / 2556,
  16676. bottom: 0.015
  16677. }
  16678. },
  16679. back: {
  16680. height: math.unit(6, "feet"),
  16681. weight: math.unit(150, "lb"),
  16682. name: "Back",
  16683. image: {
  16684. source: "./media/characters/pandora/back.svg",
  16685. extra: 2720 / 2556,
  16686. bottom: 0.01
  16687. }
  16688. },
  16689. beans: {
  16690. height: math.unit(6 / 8, "feet"),
  16691. name: "Beans",
  16692. image: {
  16693. source: "./media/characters/pandora/beans.svg"
  16694. }
  16695. },
  16696. collar: {
  16697. height: math.unit(0.31, "feet"),
  16698. name: "Collar",
  16699. image: {
  16700. source: "./media/characters/pandora/collar.svg"
  16701. }
  16702. },
  16703. skirt: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Skirt",
  16707. image: {
  16708. source: "./media/characters/pandora/skirt.svg",
  16709. extra: 1622 / 1525,
  16710. bottom: 0.015
  16711. }
  16712. },
  16713. hoodie: {
  16714. height: math.unit(6, "feet"),
  16715. weight: math.unit(150, "lb"),
  16716. name: "Hoodie",
  16717. image: {
  16718. source: "./media/characters/pandora/hoodie.svg",
  16719. extra: 1622 / 1525,
  16720. bottom: 0.015
  16721. }
  16722. },
  16723. casual: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(150, "lb"),
  16726. name: "Casual",
  16727. image: {
  16728. source: "./media/characters/pandora/casual.svg",
  16729. extra: 1622 / 1525,
  16730. bottom: 0.015
  16731. }
  16732. },
  16733. },
  16734. [
  16735. {
  16736. name: "Normal",
  16737. height: math.unit(6, "feet")
  16738. },
  16739. {
  16740. name: "Big Steppy",
  16741. height: math.unit(1, "km"),
  16742. default: true
  16743. },
  16744. {
  16745. name: "Galactic Steppy",
  16746. height: math.unit(2, "gigameters")
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16752. {
  16753. side: {
  16754. height: math.unit(10, "feet"),
  16755. weight: math.unit(800, "kg"),
  16756. name: "Side",
  16757. image: {
  16758. source: "./media/characters/venio-darcony/side.svg",
  16759. extra: 1373 / 1003,
  16760. bottom: 0.037
  16761. }
  16762. },
  16763. front: {
  16764. height: math.unit(19, "feet"),
  16765. weight: math.unit(800, "kg"),
  16766. name: "Front",
  16767. image: {
  16768. source: "./media/characters/venio-darcony/front.svg"
  16769. }
  16770. },
  16771. back: {
  16772. height: math.unit(19, "feet"),
  16773. weight: math.unit(800, "kg"),
  16774. name: "Back",
  16775. image: {
  16776. source: "./media/characters/venio-darcony/back.svg"
  16777. }
  16778. },
  16779. sideNsfw: {
  16780. height: math.unit(10, "feet"),
  16781. weight: math.unit(800, "kg"),
  16782. name: "Side (NSFW)",
  16783. image: {
  16784. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16785. extra: 1373 / 1003,
  16786. bottom: 0.037
  16787. }
  16788. },
  16789. frontNsfw: {
  16790. height: math.unit(19, "feet"),
  16791. weight: math.unit(800, "kg"),
  16792. name: "Front (NSFW)",
  16793. image: {
  16794. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16795. }
  16796. },
  16797. backNsfw: {
  16798. height: math.unit(19, "feet"),
  16799. weight: math.unit(800, "kg"),
  16800. name: "Back (NSFW)",
  16801. image: {
  16802. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16803. }
  16804. },
  16805. sideArmored: {
  16806. height: math.unit(10, "feet"),
  16807. weight: math.unit(800, "kg"),
  16808. name: "Side (Armored)",
  16809. image: {
  16810. source: "./media/characters/venio-darcony/side-armored.svg",
  16811. extra: 1373 / 1003,
  16812. bottom: 0.037
  16813. }
  16814. },
  16815. frontArmored: {
  16816. height: math.unit(19, "feet"),
  16817. weight: math.unit(900, "kg"),
  16818. name: "Front (Armored)",
  16819. image: {
  16820. source: "./media/characters/venio-darcony/front-armored.svg"
  16821. }
  16822. },
  16823. backArmored: {
  16824. height: math.unit(19, "feet"),
  16825. weight: math.unit(900, "kg"),
  16826. name: "Back (Armored)",
  16827. image: {
  16828. source: "./media/characters/venio-darcony/back-armored.svg"
  16829. }
  16830. },
  16831. sword: {
  16832. height: math.unit(10, "feet"),
  16833. weight: math.unit(50, "lb"),
  16834. name: "Sword",
  16835. image: {
  16836. source: "./media/characters/venio-darcony/sword.svg"
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(10, "feet")
  16844. },
  16845. {
  16846. name: "Macro",
  16847. height: math.unit(130, "feet"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Macro+",
  16852. height: math.unit(240, "feet")
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(6, "feet"),
  16861. weight: math.unit(150, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/veski/front.svg",
  16865. extra: 1299 / 1225,
  16866. bottom: 0.04
  16867. }
  16868. },
  16869. back: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(150, "lb"),
  16872. name: "Back",
  16873. image: {
  16874. source: "./media/characters/veski/back.svg",
  16875. extra: 1299 / 1225,
  16876. bottom: 0.008
  16877. }
  16878. },
  16879. maw: {
  16880. height: math.unit(1.5 * 1.21, "feet"),
  16881. name: "Maw",
  16882. image: {
  16883. source: "./media/characters/veski/maw.svg"
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Macro",
  16890. height: math.unit(2, "km"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(5 + 7 / 12, "feet"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/isabelle/front.svg",
  16903. extra: 2130 / 1976,
  16904. bottom: 0.05
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Supermicro",
  16911. height: math.unit(10, "micrometers")
  16912. },
  16913. {
  16914. name: "Micro",
  16915. height: math.unit(1, "inch")
  16916. },
  16917. {
  16918. name: "Tiny",
  16919. height: math.unit(5, "inches")
  16920. },
  16921. {
  16922. name: "Standard",
  16923. height: math.unit(5 + 7 / 12, "inches")
  16924. },
  16925. {
  16926. name: "Macro",
  16927. height: math.unit(80, "meters"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Megamacro",
  16932. height: math.unit(250, "meters")
  16933. },
  16934. {
  16935. name: "Gigamacro",
  16936. height: math.unit(5, "km")
  16937. },
  16938. {
  16939. name: "Cosmic",
  16940. height: math.unit(2.5e6, "miles")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/hanzo/front.svg",
  16953. extra: 374 / 344,
  16954. bottom: 0.02
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(8, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(7, "feet"),
  16971. weight: math.unit(130, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/anna/front.svg",
  16975. extra: 169 / 145,
  16976. bottom: 0.06
  16977. }
  16978. },
  16979. full: {
  16980. height: math.unit(4.96, "feet"),
  16981. weight: math.unit(220, "lb"),
  16982. name: "Full",
  16983. image: {
  16984. source: "./media/characters/anna/full.svg",
  16985. extra: 138 / 114,
  16986. bottom: 0.15
  16987. }
  16988. },
  16989. tongue: {
  16990. height: math.unit(2.53, "feet"),
  16991. name: "Tongue",
  16992. image: {
  16993. source: "./media/characters/anna/tongue.svg"
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(7, "feet"),
  17001. default: true
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(7, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/ian-corvid/front.svg",
  17014. extra: 150 / 142,
  17015. bottom: 0.02
  17016. }
  17017. },
  17018. back: {
  17019. height: math.unit(7, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Back",
  17022. image: {
  17023. source: "./media/characters/ian-corvid/back.svg",
  17024. extra: 150 / 143,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. stomping: {
  17029. height: math.unit(7, "feet"),
  17030. weight: math.unit(150, "lb"),
  17031. name: "Stomping",
  17032. image: {
  17033. source: "./media/characters/ian-corvid/stomping.svg",
  17034. extra: 76 / 72
  17035. }
  17036. },
  17037. sitting: {
  17038. height: math.unit(7 / 1.8, "feet"),
  17039. weight: math.unit(150, "lb"),
  17040. name: "Sitting",
  17041. image: {
  17042. source: "./media/characters/ian-corvid/sitting.svg",
  17043. extra: 1400 / 1269,
  17044. bottom: 0.15
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Tiny Microw",
  17051. height: math.unit(1, "inch")
  17052. },
  17053. {
  17054. name: "Microw",
  17055. height: math.unit(6, "inches")
  17056. },
  17057. {
  17058. name: "Crow",
  17059. height: math.unit(7 + 1 / 12, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Macrow",
  17064. height: math.unit(176, "feet")
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(5 + 7 / 12, "feet"),
  17073. weight: math.unit(147, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/natalie-kellon/front.svg",
  17077. extra: 1214 / 1141,
  17078. bottom: 0.02
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Micro",
  17085. height: math.unit(1 / 16, "inch")
  17086. },
  17087. {
  17088. name: "Tiny",
  17089. height: math.unit(4, "inches")
  17090. },
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 7 / 12, "feet"),
  17094. default: true
  17095. },
  17096. {
  17097. name: "Amazon",
  17098. height: math.unit(12, "feet")
  17099. },
  17100. {
  17101. name: "Giantess",
  17102. height: math.unit(160, "meters")
  17103. },
  17104. {
  17105. name: "Titaness",
  17106. height: math.unit(800, "meters")
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(150, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/alluria/front.svg",
  17119. extra: 806 / 738,
  17120. bottom: 0.01
  17121. }
  17122. },
  17123. side: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(150, "lb"),
  17126. name: "Side",
  17127. image: {
  17128. source: "./media/characters/alluria/side.svg",
  17129. extra: 800 / 750,
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(6, "feet"),
  17134. weight: math.unit(150, "lb"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/alluria/back.svg",
  17138. extra: 806 / 738,
  17139. }
  17140. },
  17141. frontMaid: {
  17142. height: math.unit(6, "feet"),
  17143. weight: math.unit(150, "lb"),
  17144. name: "Front (Maid)",
  17145. image: {
  17146. source: "./media/characters/alluria/front-maid.svg",
  17147. extra: 806 / 738,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. sideMaid: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Side (Maid)",
  17155. image: {
  17156. source: "./media/characters/alluria/side-maid.svg",
  17157. extra: 800 / 750,
  17158. bottom: 0.005
  17159. }
  17160. },
  17161. backMaid: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(150, "lb"),
  17164. name: "Back (Maid)",
  17165. image: {
  17166. source: "./media/characters/alluria/back-maid.svg",
  17167. extra: 806 / 738,
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Micro",
  17174. height: math.unit(6, "inches"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6, "feet"),
  17184. weight: math.unit(150, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/kyle/front.svg",
  17188. extra: 1069 / 962,
  17189. bottom: 77.228 / 1727.45
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Macro",
  17196. height: math.unit(150, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(300, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/duncan/front.svg",
  17210. extra: 1650 / 1482,
  17211. bottom: 0.05
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Macro",
  17218. height: math.unit(100, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(5 + 4 / 12, "feet"),
  17228. weight: math.unit(220, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/memory/front.svg",
  17232. extra: 3641 / 3545,
  17233. bottom: 0.03
  17234. }
  17235. },
  17236. back: {
  17237. height: math.unit(5 + 4 / 12, "feet"),
  17238. weight: math.unit(220, "lb"),
  17239. name: "Back",
  17240. image: {
  17241. source: "./media/characters/memory/back.svg",
  17242. extra: 3641 / 3545,
  17243. bottom: 0.025
  17244. }
  17245. },
  17246. frontSkirt: {
  17247. height: math.unit(5 + 4 / 12, "feet"),
  17248. weight: math.unit(220, "lb"),
  17249. name: "Front (Skirt)",
  17250. image: {
  17251. source: "./media/characters/memory/front-skirt.svg",
  17252. extra: 3641 / 3545,
  17253. bottom: 0.03
  17254. }
  17255. },
  17256. frontDress: {
  17257. height: math.unit(5 + 4 / 12, "feet"),
  17258. weight: math.unit(220, "lb"),
  17259. name: "Front (Dress)",
  17260. image: {
  17261. source: "./media/characters/memory/front-dress.svg",
  17262. extra: 3641 / 3545,
  17263. bottom: 0.03
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Micro",
  17270. height: math.unit(6, "inches"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(5 + 4 / 12, "feet")
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(4 + 11 / 12, "feet"),
  17284. weight: math.unit(100, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/luno/front.svg",
  17288. extra: 1535 / 1487,
  17289. bottom: 0.03
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Micro",
  17296. height: math.unit(3, "inches")
  17297. },
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(4 + 11 / 12, "feet"),
  17301. default: true
  17302. },
  17303. {
  17304. name: "Macro",
  17305. height: math.unit(300, "feet")
  17306. },
  17307. {
  17308. name: "Megamacro",
  17309. height: math.unit(700, "miles")
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(6 + 2 / 12, "feet"),
  17318. weight: math.unit(170, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/jamesy/front.svg",
  17322. extra: 440 / 382,
  17323. bottom: 0.005
  17324. }
  17325. },
  17326. },
  17327. [
  17328. {
  17329. name: "Micro",
  17330. height: math.unit(3, "inches")
  17331. },
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(6 + 2 / 12, "feet"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macro",
  17339. height: math.unit(300, "feet")
  17340. },
  17341. {
  17342. name: "Megamacro",
  17343. height: math.unit(700, "miles")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(160, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/mark/front.svg",
  17356. extra: 3300 / 3100,
  17357. bottom: 136.42 / 3440.47
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Macro",
  17364. height: math.unit(120, "meters")
  17365. },
  17366. {
  17367. name: "Bigger Macro",
  17368. height: math.unit(350, "meters")
  17369. },
  17370. {
  17371. name: "Megamacro",
  17372. height: math.unit(8, "km"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Continental",
  17377. height: math.unit(4550, "km")
  17378. },
  17379. {
  17380. name: "Planetary",
  17381. height: math.unit(65000, "km")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(400, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/mac/front.svg",
  17394. extra: 1048 / 987.7,
  17395. bottom: 60 / 1107.6,
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Macro",
  17402. height: math.unit(500, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17409. {
  17410. front: {
  17411. height: math.unit(5 + 2 / 12, "feet"),
  17412. weight: math.unit(190, "lb"),
  17413. name: "Front",
  17414. image: {
  17415. source: "./media/characters/bari/front.svg",
  17416. extra: 3156 / 2880,
  17417. bottom: 0.03
  17418. }
  17419. },
  17420. back: {
  17421. height: math.unit(5 + 2 / 12, "feet"),
  17422. weight: math.unit(190, "lb"),
  17423. name: "Back",
  17424. image: {
  17425. source: "./media/characters/bari/back.svg",
  17426. extra: 3260 / 2834,
  17427. bottom: 0.025
  17428. }
  17429. },
  17430. frontPlush: {
  17431. height: math.unit(5 + 2 / 12, "feet"),
  17432. weight: math.unit(190, "lb"),
  17433. name: "Front (Plush)",
  17434. image: {
  17435. source: "./media/characters/bari/front-plush.svg",
  17436. extra: 1112 / 1061,
  17437. bottom: 0.002
  17438. }
  17439. },
  17440. },
  17441. [
  17442. {
  17443. name: "Micro",
  17444. height: math.unit(3, "inches")
  17445. },
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(5 + 2 / 12, "feet"),
  17449. default: true
  17450. },
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(20, "feet")
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 1 / 12, "feet"),
  17462. weight: math.unit(275, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/hunter-misha-raven/front.svg"
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Mortal",
  17472. height: math.unit(6 + 1 / 12, "feet")
  17473. },
  17474. {
  17475. name: "Divine",
  17476. height: math.unit(1.12134e34, "parsecs"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6 + 3 / 12, "feet"),
  17486. weight: math.unit(220, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/max-calore/front.svg",
  17490. extra: 1700 / 1648,
  17491. bottom: 0.01
  17492. }
  17493. },
  17494. back: {
  17495. height: math.unit(6 + 3 / 12, "feet"),
  17496. weight: math.unit(220, "lb"),
  17497. name: "Back",
  17498. image: {
  17499. source: "./media/characters/max-calore/back.svg",
  17500. extra: 1700 / 1648,
  17501. bottom: 0.01
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(6 + 3 / 12, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17515. {
  17516. side: {
  17517. height: math.unit(2 + 8 / 12, "feet"),
  17518. weight: math.unit(99, "lb"),
  17519. name: "Side",
  17520. image: {
  17521. source: "./media/characters/aspen/side.svg",
  17522. extra: 152 / 138,
  17523. bottom: 0.032
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(2 + 8 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17537. {
  17538. side: {
  17539. height: math.unit(3 + 2 / 12, "feet"),
  17540. weight: math.unit(224, "lb"),
  17541. name: "Side",
  17542. image: {
  17543. source: "./media/characters/sheila-feral-wolf/side.svg",
  17544. extra: 179 / 166,
  17545. bottom: 0.03
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Normal",
  17552. height: math.unit(3 + 2 / 12, "feet"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17559. {
  17560. side: {
  17561. height: math.unit(1 + 9 / 12, "feet"),
  17562. weight: math.unit(38, "lb"),
  17563. name: "Side",
  17564. image: {
  17565. source: "./media/characters/michelle/side.svg",
  17566. extra: 147 / 136.7,
  17567. bottom: 0.03
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(1 + 9 / 12, "feet"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(1.54, "feet"),
  17584. weight: math.unit(50, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/nino/front.svg"
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(1.54, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(1.49, "feet"),
  17604. weight: math.unit(45, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/viola/front.svg"
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(1.49, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(6 + 5 / 12, "feet"),
  17624. weight: math.unit(580, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/atlas/front.svg",
  17628. extra: 298.5 / 290,
  17629. bottom: 0.015
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(6 + 5 / 12, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17643. {
  17644. side: {
  17645. height: math.unit(15.6, "inches"),
  17646. weight: math.unit(10, "lb"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/davy/side.svg",
  17650. extra: 200 / 170,
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(15.6, "inches"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17665. {
  17666. side: {
  17667. height: math.unit(4 + 8 / 12, "feet"),
  17668. weight: math.unit(166, "lb"),
  17669. name: "Side",
  17670. image: {
  17671. source: "./media/characters/fiona/side.svg",
  17672. extra: 232 / 220,
  17673. bottom: 0.03
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(4 + 8 / 12, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17687. {
  17688. front: {
  17689. height: math.unit(26, "inches"),
  17690. weight: math.unit(35, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/lyla/front.svg",
  17694. bottom: 0.1
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(3, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17708. {
  17709. side: {
  17710. height: math.unit(1.8, "feet"),
  17711. weight: math.unit(44, "lb"),
  17712. name: "Side",
  17713. image: {
  17714. source: "./media/characters/perseus/side.svg",
  17715. bottom: 0.21
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(1.8, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17729. {
  17730. side: {
  17731. height: math.unit(4 + 2 / 12, "feet"),
  17732. weight: math.unit(20, "lb"),
  17733. name: "Side",
  17734. image: {
  17735. source: "./media/characters/remus/side.svg"
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(4 + 2 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(4 + 11 / 12, "feet"),
  17752. weight: math.unit(114, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/raf/front.svg",
  17756. extra: 1504/1339,
  17757. bottom: 26/1530
  17758. }
  17759. },
  17760. side: {
  17761. height: math.unit(4 + 11 / 12, "feet"),
  17762. weight: math.unit(114, "lb"),
  17763. name: "Side",
  17764. image: {
  17765. source: "./media/characters/raf/side.svg",
  17766. extra: 1466/1316,
  17767. bottom: 29/1495
  17768. }
  17769. },
  17770. },
  17771. [
  17772. {
  17773. name: "Micro",
  17774. height: math.unit(2, "inches")
  17775. },
  17776. {
  17777. name: "Normal",
  17778. height: math.unit(4 + 11 / 12, "feet"),
  17779. default: true
  17780. },
  17781. {
  17782. name: "Macro",
  17783. height: math.unit(70, "feet")
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17789. {
  17790. front: {
  17791. height: math.unit(1.5, "meters"),
  17792. weight: math.unit(68, "kg"),
  17793. name: "Front",
  17794. image: {
  17795. source: "./media/characters/liam-einarr/front.svg",
  17796. extra: 2822 / 2666
  17797. }
  17798. },
  17799. back: {
  17800. height: math.unit(1.5, "meters"),
  17801. weight: math.unit(68, "kg"),
  17802. name: "Back",
  17803. image: {
  17804. source: "./media/characters/liam-einarr/back.svg",
  17805. extra: 2822 / 2666,
  17806. bottom: 0.015
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1.5, "meters"),
  17814. default: true
  17815. },
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(150, "meters")
  17819. },
  17820. {
  17821. name: "Megamacro",
  17822. height: math.unit(35, "km")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(6, "feet"),
  17831. weight: math.unit(75, "kg"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/linda/front.svg",
  17835. extra: 930 / 874,
  17836. bottom: 0.004
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(6, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6 + 8 / 12, "feet"),
  17853. weight: math.unit(220, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/caylex/front.svg",
  17857. extra: 821 / 772,
  17858. bottom: 0.07
  17859. }
  17860. },
  17861. back: {
  17862. height: math.unit(6 + 8 / 12, "feet"),
  17863. weight: math.unit(220, "lb"),
  17864. name: "Back",
  17865. image: {
  17866. source: "./media/characters/caylex/back.svg",
  17867. extra: 821 / 772,
  17868. bottom: 0.022
  17869. }
  17870. },
  17871. hand: {
  17872. height: math.unit(1.25, "feet"),
  17873. name: "Hand",
  17874. image: {
  17875. source: "./media/characters/caylex/hand.svg"
  17876. }
  17877. },
  17878. foot: {
  17879. height: math.unit(1.6, "feet"),
  17880. name: "Foot",
  17881. image: {
  17882. source: "./media/characters/caylex/foot.svg"
  17883. }
  17884. },
  17885. armored: {
  17886. height: math.unit(6 + 8 / 12, "feet"),
  17887. weight: math.unit(250, "lb"),
  17888. name: "Armored",
  17889. image: {
  17890. source: "./media/characters/caylex/armored.svg",
  17891. extra: 1420 / 1310,
  17892. bottom: 0.045
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(6 + 8 / 12, "feet"),
  17900. default: true
  17901. },
  17902. {
  17903. name: "Normal+",
  17904. height: math.unit(12, "feet")
  17905. },
  17906. ]
  17907. ))
  17908. characterMakers.push(() => makeCharacter(
  17909. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17910. {
  17911. front: {
  17912. height: math.unit(7 + 6 / 12, "feet"),
  17913. weight: math.unit(288, "lb"),
  17914. name: "Front",
  17915. image: {
  17916. source: "./media/characters/alana/front.svg",
  17917. extra: 679 / 653,
  17918. bottom: 22.5 / 701
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(7 + 6 / 12, "feet")
  17926. },
  17927. {
  17928. name: "Large",
  17929. height: math.unit(50, "feet")
  17930. },
  17931. {
  17932. name: "Macro",
  17933. height: math.unit(100, "feet"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Macro+",
  17938. height: math.unit(200, "feet")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17944. {
  17945. front: {
  17946. height: math.unit(6 + 1 / 12, "feet"),
  17947. weight: math.unit(210, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/hasani/front.svg",
  17951. extra: 244 / 232,
  17952. bottom: 0.01
  17953. }
  17954. },
  17955. back: {
  17956. height: math.unit(6 + 1 / 12, "feet"),
  17957. weight: math.unit(210, "lb"),
  17958. name: "Back",
  17959. image: {
  17960. source: "./media/characters/hasani/back.svg",
  17961. extra: 244 / 232,
  17962. bottom: 0.01
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(6 + 1 / 12, "feet")
  17970. },
  17971. {
  17972. name: "Macro",
  17973. height: math.unit(175, "feet"),
  17974. default: true
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(1.82, "meters"),
  17983. weight: math.unit(140, "lb"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/nita/front.svg",
  17987. extra: 2473 / 2363,
  17988. bottom: 0.01
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(1.82, "m")
  17996. },
  17997. {
  17998. name: "Macro",
  17999. height: math.unit(300, "m")
  18000. },
  18001. {
  18002. name: "Mistake Canon",
  18003. height: math.unit(0.5, "miles"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Big Mistake",
  18008. height: math.unit(13, "miles")
  18009. },
  18010. {
  18011. name: "Playing God",
  18012. height: math.unit(2450, "miles")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(4, "feet"),
  18021. weight: math.unit(120, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/shiriko/front.svg",
  18025. extra: 970/934,
  18026. bottom: 5/975
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(4, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6, "feet"),
  18043. name: "front",
  18044. image: {
  18045. source: "./media/characters/deja/front.svg",
  18046. extra: 926 / 840,
  18047. bottom: 0.07
  18048. }
  18049. },
  18050. },
  18051. [
  18052. {
  18053. name: "Planck Length",
  18054. height: math.unit(1.6e-35, "meters")
  18055. },
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(30.48, "meters"),
  18059. default: true
  18060. },
  18061. {
  18062. name: "Universal",
  18063. height: math.unit(8.8e26, "meters")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18069. {
  18070. side: {
  18071. height: math.unit(8, "feet"),
  18072. weight: math.unit(6300, "lb"),
  18073. name: "Side",
  18074. image: {
  18075. source: "./media/characters/anima/side.svg",
  18076. bottom: 0.035
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(8, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(8, "feet"),
  18093. weight: math.unit(350, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/bianca/front.svg",
  18097. extra: 234 / 225,
  18098. bottom: 0.03
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(8, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(150, "lb"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/adinia/front.svg",
  18119. extra: 1845 / 1672,
  18120. bottom: 0.02
  18121. }
  18122. },
  18123. back: {
  18124. height: math.unit(6, "feet"),
  18125. weight: math.unit(150, "lb"),
  18126. name: "Back",
  18127. image: {
  18128. source: "./media/characters/adinia/back.svg",
  18129. extra: 1845 / 1672,
  18130. bottom: 0.002
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Normal",
  18137. height: math.unit(11 + 5 / 12, "feet"),
  18138. default: true
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18144. {
  18145. front: {
  18146. height: math.unit(3, "meters"),
  18147. weight: math.unit(200, "kg"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/lykasa/front.svg",
  18151. extra: 1076 / 976,
  18152. bottom: 0.06
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(3, "meters")
  18160. },
  18161. {
  18162. name: "Kaiju",
  18163. height: math.unit(120, "meters"),
  18164. default: true
  18165. },
  18166. {
  18167. name: "Mega Kaiju",
  18168. height: math.unit(240, "km")
  18169. },
  18170. {
  18171. name: "Giga Kaiju",
  18172. height: math.unit(400, "megameters")
  18173. },
  18174. {
  18175. name: "Tera Kaiju",
  18176. height: math.unit(800, "gigameters")
  18177. },
  18178. {
  18179. name: "Kaiju Dragon Goddess",
  18180. height: math.unit(26, "zettaparsecs")
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18186. {
  18187. side: {
  18188. height: math.unit(283 / 124 * 6, "feet"),
  18189. weight: math.unit(35000, "lb"),
  18190. name: "Side",
  18191. image: {
  18192. source: "./media/characters/malfaren/side.svg",
  18193. extra: 1310/529,
  18194. bottom: 24/1334
  18195. }
  18196. },
  18197. front: {
  18198. height: math.unit(22.36, "feet"),
  18199. weight: math.unit(35000, "lb"),
  18200. name: "Front",
  18201. image: {
  18202. source: "./media/characters/malfaren/front.svg",
  18203. extra: 1237/1115,
  18204. bottom: 32/1269
  18205. }
  18206. },
  18207. maw: {
  18208. height: math.unit(6.9, "feet"),
  18209. name: "Maw",
  18210. image: {
  18211. source: "./media/characters/malfaren/maw.svg"
  18212. }
  18213. },
  18214. dick: {
  18215. height: math.unit(6.19, "feet"),
  18216. name: "Dick",
  18217. image: {
  18218. source: "./media/characters/malfaren/dick.svg"
  18219. }
  18220. },
  18221. eye: {
  18222. height: math.unit(0.69, "feet"),
  18223. name: "Eye",
  18224. image: {
  18225. source: "./media/characters/malfaren/eye.svg"
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Big",
  18232. height: math.unit(283 / 162 * 6, "feet"),
  18233. },
  18234. {
  18235. name: "Bigger",
  18236. height: math.unit(283 / 124 * 6, "feet")
  18237. },
  18238. {
  18239. name: "Massive",
  18240. height: math.unit(283 / 92 * 6, "feet"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "👀💦",
  18245. height: math.unit(283 / 73 * 6, "feet"),
  18246. },
  18247. ]
  18248. ))
  18249. characterMakers.push(() => makeCharacter(
  18250. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18251. {
  18252. front: {
  18253. height: math.unit(1.7, "m"),
  18254. weight: math.unit(70, "kg"),
  18255. name: "Front",
  18256. image: {
  18257. source: "./media/characters/kernel/front.svg",
  18258. extra: 222 / 210,
  18259. bottom: 0.007
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Nano",
  18266. height: math.unit(17, "micrometers")
  18267. },
  18268. {
  18269. name: "Micro",
  18270. height: math.unit(1.7, "mm")
  18271. },
  18272. {
  18273. name: "Small",
  18274. height: math.unit(1.7, "cm")
  18275. },
  18276. {
  18277. name: "Normal",
  18278. height: math.unit(1.7, "m"),
  18279. default: true
  18280. },
  18281. ]
  18282. ))
  18283. characterMakers.push(() => makeCharacter(
  18284. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18285. {
  18286. front: {
  18287. height: math.unit(1.75, "meters"),
  18288. weight: math.unit(65, "kg"),
  18289. name: "Front",
  18290. image: {
  18291. source: "./media/characters/jayne-folest/front.svg",
  18292. extra: 2115 / 2007,
  18293. bottom: 0.02
  18294. }
  18295. },
  18296. back: {
  18297. height: math.unit(1.75, "meters"),
  18298. weight: math.unit(65, "kg"),
  18299. name: "Back",
  18300. image: {
  18301. source: "./media/characters/jayne-folest/back.svg",
  18302. extra: 2115 / 2007,
  18303. bottom: 0.005
  18304. }
  18305. },
  18306. frontClothed: {
  18307. height: math.unit(1.75, "meters"),
  18308. weight: math.unit(65, "kg"),
  18309. name: "Front (Clothed)",
  18310. image: {
  18311. source: "./media/characters/jayne-folest/front-clothed.svg",
  18312. extra: 2115 / 2007,
  18313. bottom: 0.035
  18314. }
  18315. },
  18316. hand: {
  18317. height: math.unit(1 / 1.260, "feet"),
  18318. name: "Hand",
  18319. image: {
  18320. source: "./media/characters/jayne-folest/hand.svg"
  18321. }
  18322. },
  18323. foot: {
  18324. height: math.unit(1 / 0.918, "feet"),
  18325. name: "Foot",
  18326. image: {
  18327. source: "./media/characters/jayne-folest/foot.svg"
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Micro",
  18334. height: math.unit(4, "cm")
  18335. },
  18336. {
  18337. name: "Normal",
  18338. height: math.unit(1.75, "meters")
  18339. },
  18340. {
  18341. name: "Macro",
  18342. height: math.unit(47.5, "meters"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(180, "cm"),
  18352. weight: math.unit(70, "kg"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/algier/front.svg",
  18356. extra: 596 / 572,
  18357. bottom: 0.04
  18358. }
  18359. },
  18360. back: {
  18361. height: math.unit(180, "cm"),
  18362. weight: math.unit(70, "kg"),
  18363. name: "Back",
  18364. image: {
  18365. source: "./media/characters/algier/back.svg",
  18366. extra: 596 / 572,
  18367. bottom: 0.025
  18368. }
  18369. },
  18370. frontdressed: {
  18371. height: math.unit(180, "cm"),
  18372. weight: math.unit(150, "kg"),
  18373. name: "Front-dressed",
  18374. image: {
  18375. source: "./media/characters/algier/front-dressed.svg",
  18376. extra: 596 / 572,
  18377. bottom: 0.038
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Micro",
  18384. height: math.unit(5, "cm")
  18385. },
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(180, "cm"),
  18389. default: true
  18390. },
  18391. {
  18392. name: "Macro",
  18393. height: math.unit(64, "m")
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18399. {
  18400. upright: {
  18401. height: math.unit(7, "feet"),
  18402. weight: math.unit(300, "lb"),
  18403. name: "Upright",
  18404. image: {
  18405. source: "./media/characters/pretzel/upright.svg",
  18406. extra: 534 / 522,
  18407. bottom: 0.065
  18408. }
  18409. },
  18410. sprawling: {
  18411. height: math.unit(3.75, "feet"),
  18412. weight: math.unit(300, "lb"),
  18413. name: "Sprawling",
  18414. image: {
  18415. source: "./media/characters/pretzel/sprawling.svg",
  18416. extra: 314 / 281,
  18417. bottom: 0.1
  18418. }
  18419. },
  18420. tongue: {
  18421. height: math.unit(2, "feet"),
  18422. name: "Tongue",
  18423. image: {
  18424. source: "./media/characters/pretzel/tongue.svg"
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(7, "feet"),
  18432. default: true
  18433. },
  18434. {
  18435. name: "Oversized",
  18436. height: math.unit(15, "feet")
  18437. },
  18438. {
  18439. name: "Huge",
  18440. height: math.unit(30, "feet")
  18441. },
  18442. {
  18443. name: "Macro",
  18444. height: math.unit(250, "feet")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18450. {
  18451. sideFront: {
  18452. height: math.unit(5 + 2 / 12, "feet"),
  18453. weight: math.unit(120, "lb"),
  18454. name: "Front Side",
  18455. image: {
  18456. source: "./media/characters/roxi/side-front.svg",
  18457. extra: 2924 / 2717,
  18458. bottom: 0.08
  18459. }
  18460. },
  18461. sideBack: {
  18462. height: math.unit(5 + 2 / 12, "feet"),
  18463. weight: math.unit(120, "lb"),
  18464. name: "Back Side",
  18465. image: {
  18466. source: "./media/characters/roxi/side-back.svg",
  18467. extra: 2904 / 2693,
  18468. bottom: 0.06
  18469. }
  18470. },
  18471. front: {
  18472. height: math.unit(5 + 2 / 12, "feet"),
  18473. weight: math.unit(120, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/roxi/front.svg",
  18477. extra: 2028 / 1907,
  18478. bottom: 0.01
  18479. }
  18480. },
  18481. frontAlt: {
  18482. height: math.unit(5 + 2 / 12, "feet"),
  18483. weight: math.unit(120, "lb"),
  18484. name: "Front (Alt)",
  18485. image: {
  18486. source: "./media/characters/roxi/front-alt.svg",
  18487. extra: 1828 / 1798,
  18488. bottom: 0.01
  18489. }
  18490. },
  18491. sitting: {
  18492. height: math.unit(2.8, "feet"),
  18493. weight: math.unit(120, "lb"),
  18494. name: "Sitting",
  18495. image: {
  18496. source: "./media/characters/roxi/sitting.svg",
  18497. extra: 2660 / 2462,
  18498. bottom: 0.1
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(5 + 2 / 12, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18512. {
  18513. side: {
  18514. height: math.unit(55, "feet"),
  18515. weight: math.unit(153, "tons"),
  18516. name: "Side",
  18517. image: {
  18518. source: "./media/characters/shadow/side.svg",
  18519. extra: 701 / 628,
  18520. bottom: 0.02
  18521. }
  18522. },
  18523. flying: {
  18524. height: math.unit(145, "feet"),
  18525. weight: math.unit(153, "tons"),
  18526. name: "Flying",
  18527. image: {
  18528. source: "./media/characters/shadow/flying.svg"
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(55, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(6, "feet"),
  18545. weight: math.unit(200, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/marcie/front.svg",
  18549. extra: 960 / 876,
  18550. bottom: 58 / 1017.87
  18551. }
  18552. },
  18553. },
  18554. [
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(1, "mile"),
  18558. default: true
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(7, "feet"),
  18567. weight: math.unit(200, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/kachina/front.svg",
  18571. extra: 1290.68 / 1119,
  18572. bottom: 36.5 / 1327.18
  18573. }
  18574. },
  18575. },
  18576. [
  18577. {
  18578. name: "Normal",
  18579. height: math.unit(7, "feet"),
  18580. default: true
  18581. },
  18582. ]
  18583. ))
  18584. characterMakers.push(() => makeCharacter(
  18585. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18586. {
  18587. looking: {
  18588. height: math.unit(2, "meters"),
  18589. weight: math.unit(300, "kg"),
  18590. name: "Looking",
  18591. image: {
  18592. source: "./media/characters/kash/looking.svg",
  18593. extra: 474 / 344,
  18594. bottom: 0.03
  18595. }
  18596. },
  18597. side: {
  18598. height: math.unit(2, "meters"),
  18599. weight: math.unit(300, "kg"),
  18600. name: "Side",
  18601. image: {
  18602. source: "./media/characters/kash/side.svg",
  18603. extra: 302 / 251,
  18604. bottom: 0.03
  18605. }
  18606. },
  18607. front: {
  18608. height: math.unit(2, "meters"),
  18609. weight: math.unit(300, "kg"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/kash/front.svg",
  18613. extra: 495 / 360,
  18614. bottom: 0.015
  18615. }
  18616. },
  18617. },
  18618. [
  18619. {
  18620. name: "Normal",
  18621. height: math.unit(2, "meters"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Big",
  18626. height: math.unit(3, "meters")
  18627. },
  18628. {
  18629. name: "Large",
  18630. height: math.unit(5, "meters")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18636. {
  18637. feeding: {
  18638. height: math.unit(6.7, "feet"),
  18639. weight: math.unit(350, "lb"),
  18640. name: "Feeding",
  18641. image: {
  18642. source: "./media/characters/lalim/feeding.svg",
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(6.7, "feet"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(9.5, "feet"),
  18659. weight: math.unit(600, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/de'vout/front.svg",
  18663. extra: 1443 / 1328,
  18664. bottom: 0.025
  18665. }
  18666. },
  18667. back: {
  18668. height: math.unit(9.5, "feet"),
  18669. weight: math.unit(600, "lb"),
  18670. name: "Back",
  18671. image: {
  18672. source: "./media/characters/de'vout/back.svg",
  18673. extra: 1443 / 1328
  18674. }
  18675. },
  18676. frontDressed: {
  18677. height: math.unit(9.5, "feet"),
  18678. weight: math.unit(600, "lb"),
  18679. name: "Front (Dressed",
  18680. image: {
  18681. source: "./media/characters/de'vout/front-dressed.svg",
  18682. extra: 1443 / 1328,
  18683. bottom: 0.025
  18684. }
  18685. },
  18686. backDressed: {
  18687. height: math.unit(9.5, "feet"),
  18688. weight: math.unit(600, "lb"),
  18689. name: "Back (Dressed",
  18690. image: {
  18691. source: "./media/characters/de'vout/back-dressed.svg",
  18692. extra: 1443 / 1328
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(9.5, "feet"),
  18700. default: true
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18706. {
  18707. front: {
  18708. height: math.unit(8, "feet"),
  18709. weight: math.unit(225, "lb"),
  18710. name: "Front",
  18711. image: {
  18712. source: "./media/characters/talana/front.svg",
  18713. extra: 1410 / 1300,
  18714. bottom: 0.015
  18715. }
  18716. },
  18717. frontDressed: {
  18718. height: math.unit(8, "feet"),
  18719. weight: math.unit(225, "lb"),
  18720. name: "Front (Dressed",
  18721. image: {
  18722. source: "./media/characters/talana/front-dressed.svg",
  18723. extra: 1410 / 1300,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(8, "feet"),
  18732. default: true
  18733. },
  18734. ]
  18735. ))
  18736. characterMakers.push(() => makeCharacter(
  18737. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18738. {
  18739. side: {
  18740. height: math.unit(7.2, "feet"),
  18741. weight: math.unit(150, "lb"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/xeauvok/side.svg",
  18745. extra: 1975 / 1523,
  18746. bottom: 0.07
  18747. }
  18748. },
  18749. },
  18750. [
  18751. {
  18752. name: "Normal",
  18753. height: math.unit(7.2, "feet"),
  18754. default: true
  18755. },
  18756. ]
  18757. ))
  18758. characterMakers.push(() => makeCharacter(
  18759. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18760. {
  18761. side: {
  18762. height: math.unit(10, "feet"),
  18763. weight: math.unit(900, "kg"),
  18764. name: "Side",
  18765. image: {
  18766. source: "./media/characters/zara/side.svg",
  18767. extra: 504 / 498
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(10, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18781. {
  18782. side: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(150, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/richard-dragon/side.svg",
  18788. extra: 845 / 340,
  18789. bottom: 0.017
  18790. }
  18791. },
  18792. maw: {
  18793. height: math.unit(2.97, "feet"),
  18794. name: "Maw",
  18795. image: {
  18796. source: "./media/characters/richard-dragon/maw.svg"
  18797. }
  18798. },
  18799. },
  18800. [
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(4, "feet"),
  18808. weight: math.unit(100, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/richard-smeargle/front.svg",
  18812. extra: 2952 / 2820,
  18813. bottom: 0.028
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(4, "feet"),
  18821. default: true
  18822. },
  18823. {
  18824. name: "Dynamax",
  18825. height: math.unit(20, "meters")
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(110, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/klay/front.svg",
  18838. extra: 962 / 883,
  18839. bottom: 0.04
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(110, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/klay/back.svg",
  18848. extra: 962 / 883
  18849. }
  18850. },
  18851. beans: {
  18852. height: math.unit(1.15, "feet"),
  18853. name: "Beans",
  18854. image: {
  18855. source: "./media/characters/klay/beans.svg"
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(6, "inches")
  18863. },
  18864. {
  18865. name: "Mini",
  18866. height: math.unit(3, "feet")
  18867. },
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(6, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Big",
  18875. height: math.unit(25, "feet")
  18876. },
  18877. {
  18878. name: "Macro",
  18879. height: math.unit(100, "feet")
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(400, "feet")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6, "feet"),
  18892. weight: math.unit(160, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/marcus/front.svg",
  18896. extra: 734 / 676,
  18897. bottom: 0.03
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Little",
  18904. height: math.unit(6, "feet")
  18905. },
  18906. {
  18907. name: "Normal",
  18908. height: math.unit(110, "feet"),
  18909. default: true
  18910. },
  18911. {
  18912. name: "Macro",
  18913. height: math.unit(250, "feet")
  18914. },
  18915. {
  18916. name: "Megamacro",
  18917. height: math.unit(1000, "feet")
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18923. {
  18924. front: {
  18925. height: math.unit(7, "feet"),
  18926. weight: math.unit(275, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/claude-delroute/front.svg",
  18930. extra: 902/827,
  18931. bottom: 26/928
  18932. }
  18933. },
  18934. side: {
  18935. height: math.unit(7, "feet"),
  18936. weight: math.unit(275, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/claude-delroute/side.svg",
  18940. extra: 908/853,
  18941. bottom: 16/924
  18942. }
  18943. },
  18944. back: {
  18945. height: math.unit(7, "feet"),
  18946. weight: math.unit(275, "lb"),
  18947. name: "Back",
  18948. image: {
  18949. source: "./media/characters/claude-delroute/back.svg",
  18950. extra: 911/829,
  18951. bottom: 18/929
  18952. }
  18953. },
  18954. maw: {
  18955. height: math.unit(0.6407, "meters"),
  18956. name: "Maw",
  18957. image: {
  18958. source: "./media/characters/claude-delroute/maw.svg"
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(7, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Lorge",
  18970. height: math.unit(20, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(8 + 4 / 12, "feet"),
  18979. weight: math.unit(600, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/dragonien/front.svg",
  18983. extra: 100 / 94,
  18984. bottom: 3.3 / 103.3445
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(8 + 4 / 12, "feet"),
  18989. weight: math.unit(600, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/dragonien/back.svg",
  18993. extra: 776 / 746,
  18994. bottom: 6.4 / 782.0616
  18995. }
  18996. },
  18997. foot: {
  18998. height: math.unit(1.54, "feet"),
  18999. name: "Foot",
  19000. image: {
  19001. source: "./media/characters/dragonien/foot.svg",
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Normal",
  19008. height: math.unit(8 + 4 / 12, "feet"),
  19009. default: true
  19010. },
  19011. {
  19012. name: "Macro",
  19013. height: math.unit(200, "feet")
  19014. },
  19015. {
  19016. name: "Megamacro",
  19017. height: math.unit(1, "mile")
  19018. },
  19019. {
  19020. name: "Gigamacro",
  19021. height: math.unit(1000, "miles")
  19022. },
  19023. ]
  19024. ))
  19025. characterMakers.push(() => makeCharacter(
  19026. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19027. {
  19028. front: {
  19029. height: math.unit(5 + 2 / 12, "feet"),
  19030. weight: math.unit(110, "lb"),
  19031. name: "Front",
  19032. image: {
  19033. source: "./media/characters/desta/front.svg",
  19034. extra: 767 / 726,
  19035. bottom: 11.7 / 779
  19036. }
  19037. },
  19038. back: {
  19039. height: math.unit(5 + 2 / 12, "feet"),
  19040. weight: math.unit(110, "lb"),
  19041. name: "Back",
  19042. image: {
  19043. source: "./media/characters/desta/back.svg",
  19044. extra: 777 / 728,
  19045. bottom: 6 / 784
  19046. }
  19047. },
  19048. frontAlt: {
  19049. height: math.unit(5 + 2 / 12, "feet"),
  19050. weight: math.unit(110, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/desta/front-alt.svg",
  19054. extra: 1482 / 1417
  19055. }
  19056. },
  19057. side: {
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. weight: math.unit(110, "lb"),
  19060. name: "Side",
  19061. image: {
  19062. source: "./media/characters/desta/side.svg",
  19063. extra: 2579 / 2491,
  19064. bottom: 0.053
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Micro",
  19071. height: math.unit(6, "inches")
  19072. },
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(5 + 2 / 12, "feet"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Macro",
  19080. height: math.unit(62, "feet")
  19081. },
  19082. {
  19083. name: "Megamacro",
  19084. height: math.unit(1800, "feet")
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(10, "feet"),
  19093. weight: math.unit(700, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/storm-alystar/front.svg",
  19097. extra: 2112 / 1898,
  19098. bottom: 0.034
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Micro",
  19105. height: math.unit(3.5, "inches")
  19106. },
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(10, "feet"),
  19110. default: true
  19111. },
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(400, "feet")
  19115. },
  19116. {
  19117. name: "Deific",
  19118. height: math.unit(60, "miles")
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(2.35, "meters"),
  19127. weight: math.unit(119, "kg"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/ilia/front.svg",
  19131. extra: 1285 / 1255,
  19132. bottom: 0.06
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(2.35, "meters")
  19140. },
  19141. {
  19142. name: "Macro",
  19143. height: math.unit(140, "meters"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Megamacro",
  19148. height: math.unit(100, "miles")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(6 + 5 / 12, "feet"),
  19157. weight: math.unit(190, "lb"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/kingdead/front.svg",
  19161. extra: 1228 / 1177
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Micro",
  19168. height: math.unit(7, "inches")
  19169. },
  19170. {
  19171. name: "Normal",
  19172. height: math.unit(6 + 5 / 12, "feet")
  19173. },
  19174. {
  19175. name: "Macro",
  19176. height: math.unit(150, "feet"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Megamacro",
  19181. height: math.unit(200, "miles")
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(8, "feet"),
  19190. weight: math.unit(600, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/kyrehx/front.svg",
  19194. extra: 1195 / 1095,
  19195. bottom: 0.034
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Micro",
  19202. height: math.unit(2, "inches")
  19203. },
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(8, "feet"),
  19207. default: true
  19208. },
  19209. {
  19210. name: "Macro",
  19211. height: math.unit(255, "feet")
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19220. weight: math.unit(184, "lb"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/xang/front.svg",
  19224. extra: 845 / 755
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(0.935 * 146, "feet")
  19237. },
  19238. {
  19239. name: "Megamacro",
  19240. height: math.unit(0.935 * 3, "miles")
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19246. {
  19247. frontDressed: {
  19248. height: math.unit(5 + 7 / 12, "feet"),
  19249. weight: math.unit(140, "lb"),
  19250. name: "Front (Dressed)",
  19251. image: {
  19252. source: "./media/characters/doc-weardno/front-dressed.svg",
  19253. extra: 263 / 234
  19254. }
  19255. },
  19256. backDressed: {
  19257. height: math.unit(5 + 7 / 12, "feet"),
  19258. weight: math.unit(140, "lb"),
  19259. name: "Back (Dressed)",
  19260. image: {
  19261. source: "./media/characters/doc-weardno/back-dressed.svg",
  19262. extra: 266 / 238
  19263. }
  19264. },
  19265. front: {
  19266. height: math.unit(5 + 7 / 12, "feet"),
  19267. weight: math.unit(140, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/doc-weardno/front.svg",
  19271. extra: 254 / 233
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(3, "inches")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(5 + 7 / 12, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(25, "feet")
  19288. },
  19289. {
  19290. name: "Megamacro",
  19291. height: math.unit(2, "miles")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6 + 2 / 12, "feet"),
  19300. weight: math.unit(153, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/seth-whilst/front.svg",
  19304. bottom: 0.07
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Micro",
  19311. height: math.unit(5, "inches")
  19312. },
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(6 + 2 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(3, "inches"),
  19325. weight: math.unit(8, "grams"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/pocket-jabari/front.svg",
  19329. extra: 1024 / 974,
  19330. bottom: 0.039
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Minimicro",
  19337. height: math.unit(8, "mm")
  19338. },
  19339. {
  19340. name: "Micro",
  19341. height: math.unit(3, "inches"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Normal",
  19346. height: math.unit(3, "feet")
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19352. {
  19353. frontDressed: {
  19354. height: math.unit(15, "feet"),
  19355. weight: math.unit(3280, "lb"),
  19356. name: "Front (Dressed)",
  19357. image: {
  19358. source: "./media/characters/sapphy/front-dressed.svg",
  19359. extra: 1951/1654,
  19360. bottom: 194/2145
  19361. },
  19362. form: "anthro",
  19363. default: true
  19364. },
  19365. backDressed: {
  19366. height: math.unit(15, "feet"),
  19367. weight: math.unit(3280, "lb"),
  19368. name: "Back (Dressed)",
  19369. image: {
  19370. source: "./media/characters/sapphy/back-dressed.svg",
  19371. extra: 2058/1918,
  19372. bottom: 125/2183
  19373. },
  19374. form: "anthro"
  19375. },
  19376. frontNude: {
  19377. height: math.unit(15, "feet"),
  19378. weight: math.unit(3280, "lb"),
  19379. name: "Front (Nude)",
  19380. image: {
  19381. source: "./media/characters/sapphy/front-nude.svg",
  19382. extra: 1951/1654,
  19383. bottom: 194/2145
  19384. },
  19385. form: "anthro"
  19386. },
  19387. backNude: {
  19388. height: math.unit(15, "feet"),
  19389. weight: math.unit(3280, "lb"),
  19390. name: "Back (Nude)",
  19391. image: {
  19392. source: "./media/characters/sapphy/back-nude.svg",
  19393. extra: 2058/1918,
  19394. bottom: 125/2183
  19395. },
  19396. form: "anthro"
  19397. },
  19398. full: {
  19399. height: math.unit(15, "feet"),
  19400. weight: math.unit(3280, "lb"),
  19401. name: "Full",
  19402. image: {
  19403. source: "./media/characters/sapphy/full.svg",
  19404. extra: 1396/1317,
  19405. bottom: 44/1440
  19406. },
  19407. form: "anthro"
  19408. },
  19409. dick: {
  19410. height: math.unit(3.8, "feet"),
  19411. name: "Dick",
  19412. image: {
  19413. source: "./media/characters/sapphy/dick.svg"
  19414. },
  19415. form: "anthro"
  19416. },
  19417. feral: {
  19418. height: math.unit(35, "feet"),
  19419. weight: math.unit(160, "tons"),
  19420. name: "Feral",
  19421. image: {
  19422. source: "./media/characters/sapphy/feral.svg",
  19423. extra: 1050/573,
  19424. bottom: 60/1110
  19425. },
  19426. form: "feral",
  19427. default: true
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(15, "feet"),
  19434. form: "anthro"
  19435. },
  19436. {
  19437. name: "Casual Macro",
  19438. height: math.unit(120, "feet"),
  19439. form: "anthro"
  19440. },
  19441. {
  19442. name: "Macro",
  19443. height: math.unit(2150, "feet"),
  19444. default: true,
  19445. form: "anthro"
  19446. },
  19447. {
  19448. name: "Megamacro",
  19449. height: math.unit(8, "miles"),
  19450. form: "anthro"
  19451. },
  19452. {
  19453. name: "Galaxy Mom",
  19454. height: math.unit(6, "megalightyears"),
  19455. form: "anthro"
  19456. },
  19457. {
  19458. name: "Normal",
  19459. height: math.unit(35, "feet"),
  19460. form: "feral",
  19461. default: true
  19462. },
  19463. {
  19464. name: "Macro",
  19465. height: math.unit(300, "feet"),
  19466. form: "feral"
  19467. },
  19468. {
  19469. name: "Galaxy Mom",
  19470. height: math.unit(10, "megalightyears"),
  19471. form: "feral"
  19472. },
  19473. ],
  19474. {
  19475. "anthro": {
  19476. name: "Anthro",
  19477. default: true
  19478. },
  19479. "feral": {
  19480. name: "Feral"
  19481. }
  19482. }
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(6, "feet"),
  19489. weight: math.unit(170, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/kiro/front.svg",
  19493. extra: 1064 / 1012,
  19494. bottom: 0.052
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Micro",
  19501. height: math.unit(6, "inches")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(6, "feet"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Macro",
  19510. height: math.unit(72, "feet")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(5 + 9 / 12, "feet"),
  19519. weight: math.unit(175, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/irishfox/front.svg",
  19523. extra: 1912 / 1680,
  19524. bottom: 0.02
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Nano",
  19531. height: math.unit(1, "mm")
  19532. },
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(2, "inches")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(5 + 9 / 12, "feet"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro",
  19544. height: math.unit(45, "feet")
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(75, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/aronai-sieyes/front.svg",
  19557. extra: 1532/1450,
  19558. bottom: 42/1574
  19559. }
  19560. },
  19561. side: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(75, "lb"),
  19564. name: "Side",
  19565. image: {
  19566. source: "./media/characters/aronai-sieyes/side.svg",
  19567. extra: 1422/1365,
  19568. bottom: 148/1570
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(6 + 1 / 12, "feet"),
  19573. weight: math.unit(75, "lb"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/aronai-sieyes/back.svg",
  19577. extra: 1526/1464,
  19578. bottom: 51/1577
  19579. }
  19580. },
  19581. dressed: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(75, "lb"),
  19584. name: "Dressed",
  19585. image: {
  19586. source: "./media/characters/aronai-sieyes/dressed.svg",
  19587. extra: 1559/1483,
  19588. bottom: 39/1598
  19589. }
  19590. },
  19591. slit: {
  19592. height: math.unit(1.3, "feet"),
  19593. name: "Slit",
  19594. image: {
  19595. source: "./media/characters/aronai-sieyes/slit.svg"
  19596. }
  19597. },
  19598. slitSpread: {
  19599. height: math.unit(0.9, "feet"),
  19600. name: "Slit (Spread)",
  19601. image: {
  19602. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19603. }
  19604. },
  19605. rump: {
  19606. height: math.unit(1.3, "feet"),
  19607. name: "Rump",
  19608. image: {
  19609. source: "./media/characters/aronai-sieyes/rump.svg"
  19610. }
  19611. },
  19612. maw: {
  19613. height: math.unit(1.25, "feet"),
  19614. name: "Maw",
  19615. image: {
  19616. source: "./media/characters/aronai-sieyes/maw.svg"
  19617. }
  19618. },
  19619. feral: {
  19620. height: math.unit(18, "feet"),
  19621. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19622. name: "Feral",
  19623. image: {
  19624. source: "./media/characters/aronai-sieyes/feral.svg",
  19625. extra: 1530 / 1240,
  19626. bottom: 0.035
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Micro",
  19633. height: math.unit(2, "inches")
  19634. },
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(6 + 1 / 12, "feet"),
  19638. default: true
  19639. }
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(12, "feet"),
  19647. weight: math.unit(410, "kg"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/xuna/front.svg",
  19651. extra: 2184 / 1980
  19652. }
  19653. },
  19654. side: {
  19655. height: math.unit(12, "feet"),
  19656. weight: math.unit(410, "kg"),
  19657. name: "Side",
  19658. image: {
  19659. source: "./media/characters/xuna/side.svg",
  19660. extra: 2184 / 1980
  19661. }
  19662. },
  19663. back: {
  19664. height: math.unit(12, "feet"),
  19665. weight: math.unit(410, "kg"),
  19666. name: "Back",
  19667. image: {
  19668. source: "./media/characters/xuna/back.svg",
  19669. extra: 2184 / 1980
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Nano glow",
  19676. height: math.unit(10, "nm")
  19677. },
  19678. {
  19679. name: "Micro floof",
  19680. height: math.unit(0.3, "m")
  19681. },
  19682. {
  19683. name: "Huggable softy boi",
  19684. height: math.unit(3.6576, "m"),
  19685. default: true
  19686. },
  19687. {
  19688. name: "Admirable floof",
  19689. height: math.unit(80, "meters")
  19690. },
  19691. {
  19692. name: "Gentle macro",
  19693. height: math.unit(300, "meters")
  19694. },
  19695. {
  19696. name: "Very careful floof",
  19697. height: math.unit(3200, "meters")
  19698. },
  19699. {
  19700. name: "The mega floof",
  19701. height: math.unit(36000, "meters")
  19702. },
  19703. {
  19704. name: "Giga-fur-Wicker",
  19705. height: math.unit(4800000, "meters")
  19706. },
  19707. {
  19708. name: "Licky world",
  19709. height: math.unit(20000000, "meters")
  19710. },
  19711. {
  19712. name: "Floofy cyan sun",
  19713. height: math.unit(1500000000, "meters")
  19714. },
  19715. {
  19716. name: "Milky Wicker",
  19717. height: math.unit(1000000000000000000000, "meters")
  19718. },
  19719. {
  19720. name: "The observing Wicker",
  19721. height: math.unit(999999999999999999999999999, "meters")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(5 + 9 / 12, "feet"),
  19730. weight: math.unit(150, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/arokha-sieyes/front.svg",
  19734. extra: 1425 / 1284,
  19735. bottom: 0.05
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(5 + 9 / 12, "feet")
  19743. },
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(30, "meters"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(6, "feet"),
  19756. weight: math.unit(180, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/arokh-sieyes/front.svg",
  19760. extra: 1830 / 1769,
  19761. bottom: 0.01
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(6, "feet")
  19769. },
  19770. {
  19771. name: "Macro",
  19772. height: math.unit(30, "meters"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19779. {
  19780. side: {
  19781. height: math.unit(13 + 1 / 12, "feet"),
  19782. weight: math.unit(8.5, "tonnes"),
  19783. name: "Side",
  19784. image: {
  19785. source: "./media/characters/goldeneye/side.svg",
  19786. extra: 1182 / 778,
  19787. bottom: 0.067
  19788. }
  19789. },
  19790. paw: {
  19791. height: math.unit(3.4, "feet"),
  19792. name: "Paw",
  19793. image: {
  19794. source: "./media/characters/goldeneye/paw.svg"
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(13 + 1 / 12, "feet"),
  19802. default: true
  19803. },
  19804. ]
  19805. ))
  19806. characterMakers.push(() => makeCharacter(
  19807. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19808. {
  19809. front: {
  19810. height: math.unit(6 + 1 / 12, "feet"),
  19811. weight: math.unit(210, "lb"),
  19812. name: "Front",
  19813. image: {
  19814. source: "./media/characters/leonardo-lycheborne/front.svg",
  19815. extra: 776/723,
  19816. bottom: 34/810
  19817. }
  19818. },
  19819. side: {
  19820. height: math.unit(6 + 1 / 12, "feet"),
  19821. weight: math.unit(210, "lb"),
  19822. name: "Side",
  19823. image: {
  19824. source: "./media/characters/leonardo-lycheborne/side.svg",
  19825. extra: 780/728,
  19826. bottom: 12/792
  19827. }
  19828. },
  19829. back: {
  19830. height: math.unit(6 + 1 / 12, "feet"),
  19831. weight: math.unit(210, "lb"),
  19832. name: "Back",
  19833. image: {
  19834. source: "./media/characters/leonardo-lycheborne/back.svg",
  19835. extra: 775/721,
  19836. bottom: 17/792
  19837. }
  19838. },
  19839. hand: {
  19840. height: math.unit(1.08, "feet"),
  19841. name: "Hand",
  19842. image: {
  19843. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19844. }
  19845. },
  19846. foot: {
  19847. height: math.unit(1.32, "feet"),
  19848. name: "Foot",
  19849. image: {
  19850. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19851. }
  19852. },
  19853. maw: {
  19854. height: math.unit(1, "feet"),
  19855. name: "Maw",
  19856. image: {
  19857. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19858. }
  19859. },
  19860. were: {
  19861. height: math.unit(20, "feet"),
  19862. weight: math.unit(7800, "lb"),
  19863. name: "Were",
  19864. image: {
  19865. source: "./media/characters/leonardo-lycheborne/were.svg",
  19866. extra: 1224/1165,
  19867. bottom: 72/1296
  19868. }
  19869. },
  19870. feral: {
  19871. height: math.unit(7.5, "feet"),
  19872. weight: math.unit(600, "lb"),
  19873. name: "Feral",
  19874. image: {
  19875. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19876. extra: 797/702,
  19877. bottom: 139/936
  19878. }
  19879. },
  19880. taur: {
  19881. height: math.unit(11, "feet"),
  19882. weight: math.unit(3300, "lb"),
  19883. name: "Taur",
  19884. image: {
  19885. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19886. extra: 1271/1197,
  19887. bottom: 47/1318
  19888. }
  19889. },
  19890. barghest: {
  19891. height: math.unit(11, "feet"),
  19892. weight: math.unit(1300, "lb"),
  19893. name: "Barghest",
  19894. image: {
  19895. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19896. extra: 1291/1204,
  19897. bottom: 37/1328
  19898. }
  19899. },
  19900. dick: {
  19901. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19902. name: "Dick",
  19903. image: {
  19904. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19905. }
  19906. },
  19907. dickWere: {
  19908. height: math.unit((20) / 3.8, "feet"),
  19909. name: "Dick (Were)",
  19910. image: {
  19911. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Normal",
  19918. height: math.unit(6 + 1 / 12, "feet"),
  19919. default: true
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(10, "feet"),
  19928. weight: math.unit(350, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/jet/front.svg",
  19932. extra: 2050 / 1980,
  19933. bottom: 0.013
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(10, "feet"),
  19938. weight: math.unit(350, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/jet/back.svg",
  19942. extra: 2050 / 1980,
  19943. bottom: 0.013
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Micro",
  19950. height: math.unit(6, "inches")
  19951. },
  19952. {
  19953. name: "Normal",
  19954. height: math.unit(10, "feet"),
  19955. default: true
  19956. },
  19957. {
  19958. name: "Macro",
  19959. height: math.unit(100, "feet")
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(15, "feet"),
  19968. weight: math.unit(2800, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/tanarath/front.svg",
  19972. extra: 2392 / 2220,
  19973. bottom: 0.03
  19974. }
  19975. },
  19976. back: {
  19977. height: math.unit(15, "feet"),
  19978. weight: math.unit(2800, "lb"),
  19979. name: "Back",
  19980. image: {
  19981. source: "./media/characters/tanarath/back.svg",
  19982. extra: 2392 / 2220,
  19983. bottom: 0.03
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(15, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(7 + 1 / 12, "feet"),
  20000. weight: math.unit(175, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/patty-cattybatty/front.svg",
  20004. extra: 908 / 874,
  20005. bottom: 0.025
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Micro",
  20012. height: math.unit(1, "inch")
  20013. },
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(7 + 1 / 12, "feet")
  20017. },
  20018. {
  20019. name: "Mini Macro",
  20020. height: math.unit(155, "feet")
  20021. },
  20022. {
  20023. name: "Macro",
  20024. height: math.unit(1077, "feet")
  20025. },
  20026. {
  20027. name: "Mega Macro",
  20028. height: math.unit(47650, "feet"),
  20029. default: true
  20030. },
  20031. {
  20032. name: "Giga Macro",
  20033. height: math.unit(440, "miles")
  20034. },
  20035. {
  20036. name: "Tera Macro",
  20037. height: math.unit(8700, "miles")
  20038. },
  20039. {
  20040. name: "Planetary Macro",
  20041. height: math.unit(32700, "miles")
  20042. },
  20043. {
  20044. name: "Solar Macro",
  20045. height: math.unit(550000, "miles")
  20046. },
  20047. {
  20048. name: "Celestial Macro",
  20049. height: math.unit(2.5, "AU")
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(4 + 5 / 12, "feet"),
  20058. weight: math.unit(90, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/cappu/front.svg",
  20062. extra: 1247 / 1152,
  20063. bottom: 0.012
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(4 + 5 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20077. {
  20078. frontDressed: {
  20079. height: math.unit(70, "cm"),
  20080. weight: math.unit(6, "kg"),
  20081. name: "Front (Dressed)",
  20082. image: {
  20083. source: "./media/characters/sebi/front-dressed.svg",
  20084. extra: 713.5 / 686.5,
  20085. bottom: 0.003
  20086. }
  20087. },
  20088. front: {
  20089. height: math.unit(70, "cm"),
  20090. weight: math.unit(5, "kg"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/sebi/front.svg",
  20094. extra: 713.5 / 686.5,
  20095. bottom: 0.003
  20096. }
  20097. }
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(70, "cm"),
  20103. default: true
  20104. },
  20105. {
  20106. name: "Macro",
  20107. height: math.unit(8, "meters")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(6, "feet"),
  20116. weight: math.unit(150, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/typhek/front.svg",
  20120. extra: 1948 / 1929,
  20121. bottom: 0.025
  20122. }
  20123. },
  20124. side: {
  20125. height: math.unit(6, "feet"),
  20126. weight: math.unit(150, "lb"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/typhek/side.svg",
  20130. extra: 2034 / 2010,
  20131. bottom: 0.003
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(6, "feet"),
  20136. weight: math.unit(150, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/typhek/back.svg",
  20140. extra: 2005 / 1978,
  20141. bottom: 0.004
  20142. }
  20143. },
  20144. palm: {
  20145. height: math.unit(1.2, "feet"),
  20146. name: "Palm",
  20147. image: {
  20148. source: "./media/characters/typhek/palm.svg"
  20149. }
  20150. },
  20151. fist: {
  20152. height: math.unit(1.1, "feet"),
  20153. name: "Fist",
  20154. image: {
  20155. source: "./media/characters/typhek/fist.svg"
  20156. }
  20157. },
  20158. foot: {
  20159. height: math.unit(1.57, "feet"),
  20160. name: "Foot",
  20161. image: {
  20162. source: "./media/characters/typhek/foot.svg"
  20163. }
  20164. },
  20165. sole: {
  20166. height: math.unit(2.05, "feet"),
  20167. name: "Sole",
  20168. image: {
  20169. source: "./media/characters/typhek/sole.svg"
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Macro",
  20176. height: math.unit(40, "stories"),
  20177. default: true
  20178. },
  20179. {
  20180. name: "Megamacro",
  20181. height: math.unit(1, "mile")
  20182. },
  20183. {
  20184. name: "Gigamacro",
  20185. height: math.unit(4000, "solarradii")
  20186. },
  20187. {
  20188. name: "Universal",
  20189. height: math.unit(1.1, "universes")
  20190. }
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20195. {
  20196. side: {
  20197. height: math.unit(5 + 7 / 12, "feet"),
  20198. weight: math.unit(150, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/kassy/side.svg",
  20202. extra: 1280 / 1225,
  20203. bottom: 0.002
  20204. }
  20205. },
  20206. front: {
  20207. height: math.unit(5 + 7 / 12, "feet"),
  20208. weight: math.unit(150, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/kassy/front.svg",
  20212. extra: 1280 / 1225,
  20213. bottom: 0.025
  20214. }
  20215. },
  20216. back: {
  20217. height: math.unit(5 + 7 / 12, "feet"),
  20218. weight: math.unit(150, "lb"),
  20219. name: "Back",
  20220. image: {
  20221. source: "./media/characters/kassy/back.svg",
  20222. extra: 1280 / 1225,
  20223. bottom: 0.002
  20224. }
  20225. },
  20226. foot: {
  20227. height: math.unit(1.266, "feet"),
  20228. name: "Foot",
  20229. image: {
  20230. source: "./media/characters/kassy/foot.svg"
  20231. }
  20232. },
  20233. },
  20234. [
  20235. {
  20236. name: "Normal",
  20237. height: math.unit(5 + 7 / 12, "feet")
  20238. },
  20239. {
  20240. name: "Macro",
  20241. height: math.unit(137, "feet"),
  20242. default: true
  20243. },
  20244. {
  20245. name: "Megamacro",
  20246. height: math.unit(1, "mile")
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(6 + 1 / 12, "feet"),
  20255. weight: math.unit(200, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/neil/front.svg",
  20259. extra: 1326 / 1250,
  20260. bottom: 0.023
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(6 + 1 / 12, "feet"),
  20268. default: true
  20269. },
  20270. {
  20271. name: "Macro",
  20272. height: math.unit(200, "feet")
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(5 + 9 / 12, "feet"),
  20281. weight: math.unit(190, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/atticus/front.svg",
  20285. extra: 2934 / 2785,
  20286. bottom: 0.025
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(5 + 9 / 12, "feet"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(180, "feet")
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20304. {
  20305. side: {
  20306. height: math.unit(9, "feet"),
  20307. weight: math.unit(650, "lb"),
  20308. name: "Side",
  20309. image: {
  20310. source: "./media/characters/milo/side.svg",
  20311. extra: 2644 / 2310,
  20312. bottom: 0.032
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Normal",
  20319. height: math.unit(9, "feet"),
  20320. default: true
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(300, "feet")
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20330. {
  20331. side: {
  20332. height: math.unit(8, "meters"),
  20333. weight: math.unit(90000, "kg"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/ijzer/side.svg",
  20337. extra: 2756 / 1600,
  20338. bottom: 0.01
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Small",
  20345. height: math.unit(3, "meters")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(8, "meters"),
  20350. default: true
  20351. },
  20352. {
  20353. name: "Normal+",
  20354. height: math.unit(10, "meters")
  20355. },
  20356. {
  20357. name: "Bigger",
  20358. height: math.unit(24, "meters")
  20359. },
  20360. {
  20361. name: "Huge",
  20362. height: math.unit(80, "meters")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(6 + 2 / 12, "feet"),
  20371. weight: math.unit(153, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/luca-cervicum/front.svg",
  20375. extra: 370 / 327,
  20376. bottom: 0.015
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(6 + 2 / 12, "feet"),
  20381. weight: math.unit(153, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/luca-cervicum/back.svg",
  20385. extra: 367 / 333,
  20386. bottom: 0.005
  20387. }
  20388. },
  20389. frontGear: {
  20390. height: math.unit(6 + 2 / 12, "feet"),
  20391. weight: math.unit(173, "lb"),
  20392. name: "Front (Gear)",
  20393. image: {
  20394. source: "./media/characters/luca-cervicum/front-gear.svg",
  20395. extra: 377 / 333,
  20396. bottom: 0.006
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(6 + 2 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20410. {
  20411. front: {
  20412. height: math.unit(6 + 1 / 12, "feet"),
  20413. weight: math.unit(304, "lb"),
  20414. name: "Front",
  20415. image: {
  20416. source: "./media/characters/oliver/front.svg",
  20417. extra: 157 / 143,
  20418. bottom: 0.08
  20419. }
  20420. },
  20421. },
  20422. [
  20423. {
  20424. name: "Normal",
  20425. height: math.unit(6 + 1 / 12, "feet"),
  20426. default: true
  20427. },
  20428. ]
  20429. ))
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(5 + 7 / 12, "feet"),
  20435. weight: math.unit(140, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/shane/front.svg",
  20439. extra: 304 / 289,
  20440. bottom: 0.005
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 9 / 12, "feet"),
  20457. weight: math.unit(178, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/shin/front.svg",
  20461. extra: 159 / 151,
  20462. bottom: 0.015
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(5 + 9 / 12, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5 + 10 / 12, "feet"),
  20479. weight: math.unit(168, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/xerxes/front.svg",
  20483. extra: 282 / 260,
  20484. bottom: 0.045
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(5 + 10 / 12, "feet"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20498. {
  20499. front: {
  20500. height: math.unit(6 + 7 / 12, "feet"),
  20501. weight: math.unit(208, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/chaska/front.svg",
  20505. extra: 332 / 319,
  20506. bottom: 0.015
  20507. }
  20508. },
  20509. },
  20510. [
  20511. {
  20512. name: "Normal",
  20513. height: math.unit(6 + 7 / 12, "feet"),
  20514. default: true
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(5 + 8 / 12, "feet"),
  20523. weight: math.unit(208, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/enuk/front.svg",
  20527. extra: 437 / 406,
  20528. bottom: 0.02
  20529. }
  20530. },
  20531. },
  20532. [
  20533. {
  20534. name: "Normal",
  20535. height: math.unit(5 + 8 / 12, "feet"),
  20536. default: true
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20542. {
  20543. front: {
  20544. height: math.unit(5 + 10 / 12, "feet"),
  20545. weight: math.unit(252, "lb"),
  20546. name: "Front",
  20547. image: {
  20548. source: "./media/characters/bruun/front.svg",
  20549. extra: 197 / 187,
  20550. bottom: 0.012
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(5 + 10 / 12, "feet"),
  20558. default: true
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(6 + 10 / 12, "feet"),
  20567. weight: math.unit(255, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/alexeev/front.svg",
  20571. extra: 213 / 200,
  20572. bottom: 0.05
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(6 + 10 / 12, "feet"),
  20580. default: true
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(2 + 8 / 12, "feet"),
  20589. weight: math.unit(22, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/evelyn/front.svg",
  20593. extra: 208 / 180
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(2 + 8 / 12, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(5 + 9 / 12, "feet"),
  20610. weight: math.unit(139, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/inca/front.svg",
  20614. extra: 294 / 291,
  20615. bottom: 0.03
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 9 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(6 + 3 / 12, "feet"),
  20632. weight: math.unit(185, "lb"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/mera/front.svg",
  20636. extra: 291 / 277,
  20637. bottom: 0.03
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(6 + 3 / 12, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(6 + 7 / 12, "feet"),
  20654. weight: math.unit(160, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/ceres/front.svg",
  20658. extra: 1023 / 950,
  20659. bottom: 0.027
  20660. }
  20661. },
  20662. back: {
  20663. height: math.unit(6 + 7 / 12, "feet"),
  20664. weight: math.unit(160, "lb"),
  20665. name: "Back",
  20666. image: {
  20667. source: "./media/characters/ceres/back.svg",
  20668. extra: 1023 / 950
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(6 + 7 / 12, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(5 + 10 / 12, "feet"),
  20685. weight: math.unit(150, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/kris/front.svg",
  20689. extra: 885 / 803,
  20690. bottom: 0.03
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 10 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(7, "feet"),
  20707. weight: math.unit(120, "kg"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/taluthus/front.svg",
  20711. extra: 903 / 833,
  20712. bottom: 0.015
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(7, "feet"),
  20720. default: true
  20721. },
  20722. {
  20723. name: "Macro",
  20724. height: math.unit(300, "feet")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(5 + 9 / 12, "feet"),
  20733. weight: math.unit(145, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/dawn/front.svg",
  20737. extra: 2094 / 2016,
  20738. bottom: 0.025
  20739. }
  20740. },
  20741. back: {
  20742. height: math.unit(5 + 9 / 12, "feet"),
  20743. weight: math.unit(160, "lb"),
  20744. name: "Back",
  20745. image: {
  20746. source: "./media/characters/dawn/back.svg",
  20747. extra: 2112 / 2080,
  20748. bottom: 0.005
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(6 + 7 / 12, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20762. {
  20763. anthro: {
  20764. height: math.unit(8 + 3 / 12, "feet"),
  20765. weight: math.unit(450, "lb"),
  20766. name: "Anthro",
  20767. image: {
  20768. source: "./media/characters/arador/anthro.svg",
  20769. extra: 1835 / 1718,
  20770. bottom: 0.025
  20771. }
  20772. },
  20773. feral: {
  20774. height: math.unit(4, "feet"),
  20775. weight: math.unit(200, "lb"),
  20776. name: "Feral",
  20777. image: {
  20778. source: "./media/characters/arador/feral.svg",
  20779. extra: 1683 / 1514,
  20780. bottom: 0.07
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(8 + 3 / 12, "feet")
  20788. },
  20789. {
  20790. name: "Macro",
  20791. height: math.unit(82.5, "feet"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20798. {
  20799. front: {
  20800. height: math.unit(5 + 10 / 12, "feet"),
  20801. weight: math.unit(125, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/dharsi/front.svg",
  20805. extra: 716 / 630,
  20806. bottom: 0.035
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Nano",
  20813. height: math.unit(100, "nm")
  20814. },
  20815. {
  20816. name: "Micro",
  20817. height: math.unit(2, "inches")
  20818. },
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(5 + 10 / 12, "feet"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Macro",
  20826. height: math.unit(1000, "feet")
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(10, "miles")
  20831. },
  20832. {
  20833. name: "Gigamacro",
  20834. height: math.unit(3000, "miles")
  20835. },
  20836. {
  20837. name: "Teramacro",
  20838. height: math.unit(500000, "miles")
  20839. },
  20840. {
  20841. name: "Teramacro+",
  20842. height: math.unit(30, "galaxies")
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20848. {
  20849. front: {
  20850. height: math.unit(6, "feet"),
  20851. weight: math.unit(150, "lb"),
  20852. name: "Front",
  20853. image: {
  20854. source: "./media/characters/deathy/front.svg",
  20855. extra: 1552 / 1463,
  20856. bottom: 0.025
  20857. }
  20858. },
  20859. side: {
  20860. height: math.unit(6, "feet"),
  20861. weight: math.unit(150, "lb"),
  20862. name: "Side",
  20863. image: {
  20864. source: "./media/characters/deathy/side.svg",
  20865. extra: 1604 / 1455,
  20866. bottom: 0.025
  20867. }
  20868. },
  20869. back: {
  20870. height: math.unit(6, "feet"),
  20871. weight: math.unit(150, "lb"),
  20872. name: "Back",
  20873. image: {
  20874. source: "./media/characters/deathy/back.svg",
  20875. extra: 1580 / 1463,
  20876. bottom: 0.005
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Micro",
  20883. height: math.unit(5, "millimeters")
  20884. },
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(6 + 5 / 12, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20894. {
  20895. front: {
  20896. height: math.unit(16, "feet"),
  20897. weight: math.unit(4000, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/juniper/front.svg",
  20901. bottom: 0.04
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(16, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(6, "feet"),
  20918. weight: math.unit(150, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/hipster/front.svg",
  20922. extra: 1312 / 1209,
  20923. bottom: 0.025
  20924. }
  20925. },
  20926. back: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(150, "lb"),
  20929. name: "Back",
  20930. image: {
  20931. source: "./media/characters/hipster/back.svg",
  20932. extra: 1281 / 1196,
  20933. bottom: 0.01
  20934. }
  20935. },
  20936. },
  20937. [
  20938. {
  20939. name: "Micro",
  20940. height: math.unit(1, "mm")
  20941. },
  20942. {
  20943. name: "Normal",
  20944. height: math.unit(4, "inches"),
  20945. default: true
  20946. },
  20947. {
  20948. name: "Macro",
  20949. height: math.unit(500, "feet")
  20950. },
  20951. {
  20952. name: "Megamacro",
  20953. height: math.unit(1000, "miles")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(6, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/tendirmuldr/front.svg",
  20966. extra: 1878 / 1772,
  20967. bottom: 0.015
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Megamacro",
  20974. height: math.unit(1500, "miles"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20981. {
  20982. front: {
  20983. height: math.unit(14, "feet"),
  20984. weight: math.unit(12000, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/mort/front.svg",
  20988. extra: 365 / 318,
  20989. bottom: 0.01
  20990. }
  20991. },
  20992. side: {
  20993. height: math.unit(14, "feet"),
  20994. weight: math.unit(12000, "lb"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/mort/side.svg",
  20998. extra: 365 / 318,
  20999. bottom: 0.052
  21000. },
  21001. default: true
  21002. },
  21003. back: {
  21004. height: math.unit(14, "feet"),
  21005. weight: math.unit(12000, "lb"),
  21006. name: "Back",
  21007. image: {
  21008. source: "./media/characters/mort/back.svg",
  21009. extra: 371 / 332,
  21010. bottom: 0.18
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(14, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21024. {
  21025. front: {
  21026. height: math.unit(8, "feet"),
  21027. weight: math.unit(1, "ton"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/lycoa/front.svg",
  21031. extra: 1836/1728,
  21032. bottom: 81/1917
  21033. }
  21034. },
  21035. back: {
  21036. height: math.unit(8, "feet"),
  21037. weight: math.unit(1, "ton"),
  21038. name: "Back",
  21039. image: {
  21040. source: "./media/characters/lycoa/back.svg",
  21041. extra: 1785/1720,
  21042. bottom: 91/1876
  21043. }
  21044. },
  21045. head: {
  21046. height: math.unit(1.6243, "feet"),
  21047. name: "Head",
  21048. image: {
  21049. source: "./media/characters/lycoa/head.svg",
  21050. extra: 1011/782,
  21051. bottom: 0/1011
  21052. }
  21053. },
  21054. tailmaw: {
  21055. height: math.unit(1.9, "feet"),
  21056. name: "Tailmaw",
  21057. image: {
  21058. source: "./media/characters/lycoa/tailmaw.svg"
  21059. }
  21060. },
  21061. tentacles: {
  21062. height: math.unit(2.1, "feet"),
  21063. name: "Tentacles",
  21064. image: {
  21065. source: "./media/characters/lycoa/tentacles.svg"
  21066. }
  21067. },
  21068. dick: {
  21069. height: math.unit(1.73, "feet"),
  21070. name: "Dick",
  21071. image: {
  21072. source: "./media/characters/lycoa/dick.svg"
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(8, "feet"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(30, "feet")
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21090. {
  21091. front: {
  21092. height: math.unit(4 + 2 / 12, "feet"),
  21093. weight: math.unit(70, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/naldara/front.svg",
  21097. extra: 1664/1387,
  21098. bottom: 81/1745
  21099. },
  21100. form: "anthro",
  21101. default: true
  21102. },
  21103. naga: {
  21104. height: math.unit(20, "feet"),
  21105. weight: math.unit(15000, "kg"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/naldara/naga.svg",
  21109. extra: 1590/1396,
  21110. bottom: 285/1875
  21111. },
  21112. form: "naga",
  21113. default: true
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(4 + 2 / 12, "feet"),
  21120. form: "anthro",
  21121. default: true
  21122. },
  21123. {
  21124. name: "Normal",
  21125. height: math.unit(20, "feet"),
  21126. form: "naga",
  21127. default: true
  21128. },
  21129. ],
  21130. {
  21131. "anthro": {
  21132. name: "Anthro",
  21133. default: true
  21134. },
  21135. "naga": {
  21136. name: "Naga"
  21137. }
  21138. }
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(13 + 7 / 12, "feet"),
  21145. weight: math.unit(1500, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/briar/front.svg",
  21149. extra: 1223/1157,
  21150. bottom: 123/1346
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Normal",
  21157. height: math.unit(13 + 7 / 12, "feet"),
  21158. default: true
  21159. },
  21160. ]
  21161. ))
  21162. characterMakers.push(() => makeCharacter(
  21163. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21164. {
  21165. side: {
  21166. height: math.unit(16, "feet"),
  21167. weight: math.unit(500, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/vanguard/side.svg",
  21171. extra: 1022/914,
  21172. bottom: 30/1052
  21173. }
  21174. },
  21175. sideAlt: {
  21176. height: math.unit(10, "feet"),
  21177. weight: math.unit(500, "lb"),
  21178. name: "Side (Alt)",
  21179. image: {
  21180. source: "./media/characters/vanguard/side-alt.svg",
  21181. extra: 502 / 425,
  21182. bottom: 0.087
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(17.71, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(7.5, "feet"),
  21199. weight: math.unit(2, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/artemis/work-safe-front.svg",
  21203. extra: 1192 / 1075,
  21204. bottom: 0.07
  21205. },
  21206. form: "work-safe",
  21207. default: true
  21208. },
  21209. frontNsfw: {
  21210. height: math.unit(7.5, "feet"),
  21211. weight: math.unit(2, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/artemis/calibrating-front.svg",
  21215. extra: 1192 / 1075,
  21216. bottom: 0.07
  21217. },
  21218. form: "calibrating",
  21219. default: true
  21220. },
  21221. frontNsfwer: {
  21222. height: math.unit(7.5, "feet"),
  21223. weight: math.unit(2, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/artemis/oversize-load-front.svg",
  21227. extra: 1192 / 1075,
  21228. bottom: 0.07
  21229. },
  21230. form: "oversize-load",
  21231. default: true
  21232. },
  21233. side: {
  21234. height: math.unit(7.5, "feet"),
  21235. weight: math.unit(2, "lb"),
  21236. name: "Side",
  21237. image: {
  21238. source: "./media/characters/artemis/work-safe-side.svg",
  21239. extra: 1192 / 1075,
  21240. bottom: 0.07
  21241. },
  21242. form: "work-safe"
  21243. },
  21244. sideNsfw: {
  21245. height: math.unit(7.5, "feet"),
  21246. weight: math.unit(2, "lb"),
  21247. name: "Side",
  21248. image: {
  21249. source: "./media/characters/artemis/calibrating-side.svg",
  21250. extra: 1192 / 1075,
  21251. bottom: 0.07
  21252. },
  21253. form: "calibrating"
  21254. },
  21255. sideNsfwer: {
  21256. height: math.unit(7.5, "feet"),
  21257. weight: math.unit(2, "lb"),
  21258. name: "Side",
  21259. image: {
  21260. source: "./media/characters/artemis/oversize-load-side.svg",
  21261. extra: 1192 / 1075,
  21262. bottom: 0.07
  21263. },
  21264. form: "oversize-load"
  21265. },
  21266. maw: {
  21267. height: math.unit(1.1, "feet"),
  21268. name: "Maw",
  21269. image: {
  21270. source: "./media/characters/artemis/maw.svg"
  21271. },
  21272. form: "work-safe"
  21273. },
  21274. stomach: {
  21275. height: math.unit(0.95, "feet"),
  21276. name: "Stomach",
  21277. image: {
  21278. source: "./media/characters/artemis/stomach.svg"
  21279. },
  21280. form: "work-safe"
  21281. },
  21282. dickCanine: {
  21283. height: math.unit(1, "feet"),
  21284. name: "Dick (Canine)",
  21285. image: {
  21286. source: "./media/characters/artemis/dick-canine.svg"
  21287. },
  21288. form: "calibrating"
  21289. },
  21290. dickEquine: {
  21291. height: math.unit(0.85, "feet"),
  21292. name: "Dick (Equine)",
  21293. image: {
  21294. source: "./media/characters/artemis/dick-equine.svg"
  21295. },
  21296. form: "calibrating"
  21297. },
  21298. dickExotic: {
  21299. height: math.unit(0.85, "feet"),
  21300. name: "Dick (Exotic)",
  21301. image: {
  21302. source: "./media/characters/artemis/dick-exotic.svg"
  21303. },
  21304. form: "calibrating"
  21305. },
  21306. dickCanineBigger: {
  21307. height: math.unit(1 * 1.33, "feet"),
  21308. name: "Dick (Canine)",
  21309. image: {
  21310. source: "./media/characters/artemis/dick-canine.svg"
  21311. },
  21312. form: "oversize-load"
  21313. },
  21314. dickEquineBigger: {
  21315. height: math.unit(0.85 * 1.33, "feet"),
  21316. name: "Dick (Equine)",
  21317. image: {
  21318. source: "./media/characters/artemis/dick-equine.svg"
  21319. },
  21320. form: "oversize-load"
  21321. },
  21322. dickExoticBigger: {
  21323. height: math.unit(0.85 * 1.33, "feet"),
  21324. name: "Dick (Exotic)",
  21325. image: {
  21326. source: "./media/characters/artemis/dick-exotic.svg"
  21327. },
  21328. form: "oversize-load"
  21329. },
  21330. },
  21331. [
  21332. {
  21333. name: "Normal",
  21334. height: math.unit(7.5, "feet"),
  21335. form: "work-safe",
  21336. default: true
  21337. },
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(7.5, "feet"),
  21341. form: "calibrating",
  21342. default: true
  21343. },
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(7.5, "feet"),
  21347. form: "oversize-load",
  21348. default: true
  21349. },
  21350. {
  21351. name: "Enlarged",
  21352. height: math.unit(12, "feet"),
  21353. form: "work-safe",
  21354. },
  21355. {
  21356. name: "Enlarged",
  21357. height: math.unit(12, "feet"),
  21358. form: "calibrating",
  21359. },
  21360. {
  21361. name: "Enlarged",
  21362. height: math.unit(12, "feet"),
  21363. form: "oversize-load",
  21364. },
  21365. ],
  21366. {
  21367. "work-safe": {
  21368. name: "Work-Safe",
  21369. default: true
  21370. },
  21371. "calibrating": {
  21372. name: "Calibrating"
  21373. },
  21374. "oversize-load": {
  21375. name: "Oversize Load"
  21376. }
  21377. }
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(5 + 3 / 12, "feet"),
  21384. weight: math.unit(160, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/kira/front.svg",
  21388. extra: 906 / 786,
  21389. bottom: 0.01
  21390. }
  21391. },
  21392. back: {
  21393. height: math.unit(5 + 3 / 12, "feet"),
  21394. weight: math.unit(160, "lb"),
  21395. name: "Back",
  21396. image: {
  21397. source: "./media/characters/kira/back.svg",
  21398. extra: 882 / 757,
  21399. bottom: 0.005
  21400. }
  21401. },
  21402. frontDressed: {
  21403. height: math.unit(5 + 3 / 12, "feet"),
  21404. weight: math.unit(160, "lb"),
  21405. name: "Front (Dressed)",
  21406. image: {
  21407. source: "./media/characters/kira/front-dressed.svg",
  21408. extra: 906 / 786,
  21409. bottom: 0.01
  21410. }
  21411. },
  21412. beans: {
  21413. height: math.unit(0.92, "feet"),
  21414. name: "Beans",
  21415. image: {
  21416. source: "./media/characters/kira/beans.svg"
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(5 + 3 / 12, "feet"),
  21424. default: true
  21425. },
  21426. ]
  21427. ))
  21428. characterMakers.push(() => makeCharacter(
  21429. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21430. {
  21431. front: {
  21432. height: math.unit(5 + 4 / 12, "feet"),
  21433. weight: math.unit(145, "lb"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/scramble/front.svg",
  21437. extra: 763 / 727,
  21438. bottom: 0.05
  21439. }
  21440. },
  21441. back: {
  21442. height: math.unit(5 + 4 / 12, "feet"),
  21443. weight: math.unit(145, "lb"),
  21444. name: "Back",
  21445. image: {
  21446. source: "./media/characters/scramble/back.svg",
  21447. extra: 826 / 737,
  21448. bottom: 0.002
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Normal",
  21455. height: math.unit(5 + 4 / 12, "feet"),
  21456. default: true
  21457. },
  21458. ]
  21459. ))
  21460. characterMakers.push(() => makeCharacter(
  21461. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21462. {
  21463. side: {
  21464. height: math.unit(6 + 2 / 12, "feet"),
  21465. weight: math.unit(190, "lb"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/biscuit/side.svg",
  21469. extra: 858 / 791,
  21470. bottom: 0.044
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(6 + 2 / 12, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(5 + 2 / 12, "feet"),
  21487. weight: math.unit(120, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/poffin/front.svg",
  21491. extra: 786 / 680,
  21492. bottom: 0.005
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(5 + 2 / 12, "feet"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(6 + 3 / 12, "feet"),
  21509. weight: math.unit(519, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/dhari/front.svg",
  21513. extra: 1048 / 946,
  21514. bottom: 0.015
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(6 + 3 / 12, "feet"),
  21519. weight: math.unit(519, "lb"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/dhari/back.svg",
  21523. extra: 1048 / 931,
  21524. bottom: 0.005
  21525. }
  21526. },
  21527. frontDressed: {
  21528. height: math.unit(6 + 3 / 12, "feet"),
  21529. weight: math.unit(519, "lb"),
  21530. name: "Front (Dressed)",
  21531. image: {
  21532. source: "./media/characters/dhari/front-dressed.svg",
  21533. extra: 1713 / 1546,
  21534. bottom: 0.02
  21535. }
  21536. },
  21537. backDressed: {
  21538. height: math.unit(6 + 3 / 12, "feet"),
  21539. weight: math.unit(519, "lb"),
  21540. name: "Back (Dressed)",
  21541. image: {
  21542. source: "./media/characters/dhari/back-dressed.svg",
  21543. extra: 1699 / 1537,
  21544. bottom: 0.01
  21545. }
  21546. },
  21547. maw: {
  21548. height: math.unit(0.95, "feet"),
  21549. name: "Maw",
  21550. image: {
  21551. source: "./media/characters/dhari/maw.svg"
  21552. }
  21553. },
  21554. wereFront: {
  21555. height: math.unit(12 + 8 / 12, "feet"),
  21556. weight: math.unit(4000, "lb"),
  21557. name: "Front (Were)",
  21558. image: {
  21559. source: "./media/characters/dhari/were-front.svg",
  21560. extra: 1065 / 969,
  21561. bottom: 0.015
  21562. }
  21563. },
  21564. wereBack: {
  21565. height: math.unit(12 + 8 / 12, "feet"),
  21566. weight: math.unit(4000, "lb"),
  21567. name: "Back (Were)",
  21568. image: {
  21569. source: "./media/characters/dhari/were-back.svg",
  21570. extra: 1065 / 969,
  21571. bottom: 0.012
  21572. }
  21573. },
  21574. wereMaw: {
  21575. height: math.unit(0.625, "meters"),
  21576. name: "Maw (Were)",
  21577. image: {
  21578. source: "./media/characters/dhari/were-maw.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Normal",
  21585. height: math.unit(6 + 3 / 12, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21592. {
  21593. anthro: {
  21594. height: math.unit(5 + 7 / 12, "feet"),
  21595. weight: math.unit(175, "lb"),
  21596. name: "Anthro",
  21597. image: {
  21598. source: "./media/characters/rena-dyne/anthro.svg",
  21599. extra: 1849 / 1785,
  21600. bottom: 0.005
  21601. }
  21602. },
  21603. taur: {
  21604. height: math.unit(15 + 6 / 12, "feet"),
  21605. weight: math.unit(8000, "lb"),
  21606. name: "Taur",
  21607. image: {
  21608. source: "./media/characters/rena-dyne/taur.svg",
  21609. extra: 2315 / 2234,
  21610. bottom: 0.033
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(5 + 7 / 12, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(8, "feet"),
  21627. weight: math.unit(600, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/weremeep/front.svg",
  21631. extra: 967 / 862,
  21632. bottom: 0.01
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(8, "feet"),
  21640. default: true
  21641. },
  21642. {
  21643. name: "Lorg",
  21644. height: math.unit(12, "feet")
  21645. },
  21646. {
  21647. name: "Oh Lawd She Comin'",
  21648. height: math.unit(20, "feet")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21654. {
  21655. front: {
  21656. height: math.unit(4, "feet"),
  21657. weight: math.unit(90, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/reza/front.svg",
  21661. extra: 1183 / 1111,
  21662. bottom: 0.017
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(4, "feet"),
  21667. weight: math.unit(90, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/reza/back.svg",
  21671. extra: 1183 / 1111,
  21672. bottom: 0.01
  21673. }
  21674. },
  21675. drake: {
  21676. height: math.unit(30, "feet"),
  21677. weight: math.unit(246960, "lb"),
  21678. name: "Drake",
  21679. image: {
  21680. source: "./media/characters/reza/drake.svg",
  21681. extra: 2350 / 2024,
  21682. bottom: 60.7 / 2403
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(4, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21696. {
  21697. side: {
  21698. height: math.unit(15, "feet"),
  21699. weight: math.unit(14, "tons"),
  21700. name: "Side",
  21701. image: {
  21702. source: "./media/characters/athea/side.svg",
  21703. extra: 960 / 540,
  21704. bottom: 0.003
  21705. }
  21706. },
  21707. sitting: {
  21708. height: math.unit(6 * 2.85, "feet"),
  21709. weight: math.unit(14, "tons"),
  21710. name: "Sitting",
  21711. image: {
  21712. source: "./media/characters/athea/sitting.svg",
  21713. extra: 621 / 581,
  21714. bottom: 0.075
  21715. }
  21716. },
  21717. maw: {
  21718. height: math.unit(7.59498031496063, "feet"),
  21719. name: "Maw",
  21720. image: {
  21721. source: "./media/characters/athea/maw.svg"
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Lap Cat",
  21728. height: math.unit(2.5, "feet")
  21729. },
  21730. {
  21731. name: "Minimacro",
  21732. height: math.unit(15, "feet"),
  21733. default: true
  21734. },
  21735. {
  21736. name: "Macro",
  21737. height: math.unit(120, "feet")
  21738. },
  21739. {
  21740. name: "Macro+",
  21741. height: math.unit(640, "feet")
  21742. },
  21743. {
  21744. name: "Colossus",
  21745. height: math.unit(2.2, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(8 + 8 / 12, "feet"),
  21754. weight: math.unit(130, "kg"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/seroko/front.svg",
  21758. extra: 1385 / 1280,
  21759. bottom: 0.025
  21760. }
  21761. },
  21762. back: {
  21763. height: math.unit(8 + 8 / 12, "feet"),
  21764. weight: math.unit(130, "kg"),
  21765. name: "Back",
  21766. image: {
  21767. source: "./media/characters/seroko/back.svg",
  21768. extra: 1369 / 1238,
  21769. bottom: 0.018
  21770. }
  21771. },
  21772. frontDressed: {
  21773. height: math.unit(8 + 8 / 12, "feet"),
  21774. weight: math.unit(130, "kg"),
  21775. name: "Front (Dressed)",
  21776. image: {
  21777. source: "./media/characters/seroko/front-dressed.svg",
  21778. extra: 1366 / 1275,
  21779. bottom: 0.03
  21780. }
  21781. },
  21782. },
  21783. [
  21784. {
  21785. name: "Normal",
  21786. height: math.unit(8 + 8 / 12, "feet"),
  21787. default: true
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(5.5, "feet"),
  21796. weight: math.unit(160, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/quatzi/front.svg",
  21800. extra: 2346 / 2242,
  21801. bottom: 0.015
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(5.5, "feet"),
  21809. default: true
  21810. },
  21811. {
  21812. name: "Big",
  21813. height: math.unit(7.7, "feet")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(5 + 11 / 12, "feet"),
  21822. weight: math.unit(180, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/sen/front.svg",
  21826. extra: 1321 / 1254,
  21827. bottom: 0.015
  21828. }
  21829. },
  21830. side: {
  21831. height: math.unit(5 + 11 / 12, "feet"),
  21832. weight: math.unit(180, "lb"),
  21833. name: "Side",
  21834. image: {
  21835. source: "./media/characters/sen/side.svg",
  21836. extra: 1321 / 1254,
  21837. bottom: 0.007
  21838. }
  21839. },
  21840. back: {
  21841. height: math.unit(5 + 11 / 12, "feet"),
  21842. weight: math.unit(180, "lb"),
  21843. name: "Back",
  21844. image: {
  21845. source: "./media/characters/sen/back.svg",
  21846. extra: 1321 / 1254
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(5 + 11 / 12, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(166.6, "cm"),
  21863. weight: math.unit(66.6, "kg"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/fruity/front.svg",
  21867. extra: 1510 / 1386,
  21868. bottom: 0.04
  21869. }
  21870. },
  21871. back: {
  21872. height: math.unit(166.6, "cm"),
  21873. weight: math.unit(66.6, "lb"),
  21874. name: "Back",
  21875. image: {
  21876. source: "./media/characters/fruity/back.svg",
  21877. extra: 1563 / 1435,
  21878. bottom: 0.005
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(166.6, "cm"),
  21886. default: true
  21887. },
  21888. {
  21889. name: "Demonic",
  21890. height: math.unit(166.6, "feet")
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21896. {
  21897. side: {
  21898. height: math.unit(10, "feet"),
  21899. weight: math.unit(500, "lb"),
  21900. name: "Side",
  21901. image: {
  21902. source: "./media/characters/zost/side.svg",
  21903. extra: 2870/2533,
  21904. bottom: 252/3122
  21905. }
  21906. },
  21907. mawFront: {
  21908. height: math.unit(1.08, "meters"),
  21909. name: "Maw (Front)",
  21910. image: {
  21911. source: "./media/characters/zost/maw-front.svg"
  21912. }
  21913. },
  21914. mawSide: {
  21915. height: math.unit(2.66, "feet"),
  21916. name: "Maw (Side)",
  21917. image: {
  21918. source: "./media/characters/zost/maw-side.svg"
  21919. }
  21920. },
  21921. wingspan: {
  21922. height: math.unit(7.4, "feet"),
  21923. name: "Wingspan",
  21924. image: {
  21925. source: "./media/characters/zost/wingspan.svg"
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(10, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(5 + 4 / 12, "feet"),
  21942. weight: math.unit(120, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/luci/front.svg",
  21946. extra: 1985 / 1884,
  21947. bottom: 0.04
  21948. }
  21949. },
  21950. back: {
  21951. height: math.unit(5 + 4 / 12, "feet"),
  21952. weight: math.unit(120, "lb"),
  21953. name: "Back",
  21954. image: {
  21955. source: "./media/characters/luci/back.svg",
  21956. extra: 1892 / 1791,
  21957. bottom: 0.002
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 4 / 12, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(1500, "feet"),
  21974. weight: math.unit(3.8e6, "tons"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/2th/front.svg",
  21978. extra: 3489 / 3350,
  21979. bottom: 0.1
  21980. }
  21981. },
  21982. foot: {
  21983. height: math.unit(461, "feet"),
  21984. name: "Foot",
  21985. image: {
  21986. source: "./media/characters/2th/foot.svg"
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "\"Micro\"",
  21993. height: math.unit(15 + 7 / 12, "feet")
  21994. },
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(1500, "feet"),
  21998. default: true
  21999. },
  22000. {
  22001. name: "Macro",
  22002. height: math.unit(5000, "feet")
  22003. },
  22004. {
  22005. name: "Megamacro",
  22006. height: math.unit(15, "miles")
  22007. },
  22008. {
  22009. name: "Gigamacro",
  22010. height: math.unit(4000, "miles")
  22011. },
  22012. {
  22013. name: "Galactic",
  22014. height: math.unit(50, "AU")
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 6 / 12, "feet"),
  22023. weight: math.unit(220, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/amethyst/front.svg",
  22027. extra: 2078 / 2040,
  22028. bottom: 0.045
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(5 + 6 / 12, "feet"),
  22033. weight: math.unit(220, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/amethyst/back.svg",
  22037. extra: 2021 / 1989,
  22038. bottom: 0.02
  22039. }
  22040. },
  22041. },
  22042. [
  22043. {
  22044. name: "Normal",
  22045. height: math.unit(5 + 6 / 12, "feet"),
  22046. default: true
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22052. {
  22053. front: {
  22054. height: math.unit(4 + 11 / 12, "feet"),
  22055. weight: math.unit(120, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/yumi-akiyama/front.svg",
  22059. extra: 1327 / 1235,
  22060. bottom: 0.02
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(4 + 11 / 12, "feet"),
  22065. weight: math.unit(120, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/yumi-akiyama/back.svg",
  22069. extra: 1287 / 1245,
  22070. bottom: 0.002
  22071. }
  22072. },
  22073. },
  22074. [
  22075. {
  22076. name: "Galactic",
  22077. height: math.unit(50, "galaxies"),
  22078. default: true
  22079. },
  22080. {
  22081. name: "Universal",
  22082. height: math.unit(100, "universes")
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(8, "feet"),
  22091. weight: math.unit(500, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/rifter-yrmori/front.svg",
  22095. extra: 1180 / 1125,
  22096. bottom: 0.02
  22097. }
  22098. },
  22099. back: {
  22100. height: math.unit(8, "feet"),
  22101. weight: math.unit(500, "lb"),
  22102. name: "Back",
  22103. image: {
  22104. source: "./media/characters/rifter-yrmori/back.svg",
  22105. extra: 1190 / 1145,
  22106. bottom: 0.001
  22107. }
  22108. },
  22109. wings: {
  22110. height: math.unit(7.75, "feet"),
  22111. weight: math.unit(500, "lb"),
  22112. name: "Wings",
  22113. image: {
  22114. source: "./media/characters/rifter-yrmori/wings.svg",
  22115. extra: 1357 / 1285
  22116. }
  22117. },
  22118. maw: {
  22119. height: math.unit(0.8, "feet"),
  22120. name: "Maw",
  22121. image: {
  22122. source: "./media/characters/rifter-yrmori/maw.svg"
  22123. }
  22124. },
  22125. mawfront: {
  22126. height: math.unit(1.45, "feet"),
  22127. name: "Maw (Front)",
  22128. image: {
  22129. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Normal",
  22136. height: math.unit(8, "feet"),
  22137. default: true
  22138. },
  22139. {
  22140. name: "Macro",
  22141. height: math.unit(42, "meters")
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22147. {
  22148. were: {
  22149. height: math.unit(25 + 6 / 12, "feet"),
  22150. weight: math.unit(10000, "lb"),
  22151. name: "Were",
  22152. image: {
  22153. source: "./media/characters/tahajin/were.svg",
  22154. extra: 801 / 770,
  22155. bottom: 0.042
  22156. }
  22157. },
  22158. aquatic: {
  22159. height: math.unit(6 + 4 / 12, "feet"),
  22160. weight: math.unit(160, "lb"),
  22161. name: "Aquatic",
  22162. image: {
  22163. source: "./media/characters/tahajin/aquatic.svg",
  22164. extra: 572 / 542,
  22165. bottom: 0.04
  22166. }
  22167. },
  22168. chow: {
  22169. height: math.unit(8 + 11 / 12, "feet"),
  22170. weight: math.unit(450, "lb"),
  22171. name: "Chow",
  22172. image: {
  22173. source: "./media/characters/tahajin/chow.svg",
  22174. extra: 660 / 640,
  22175. bottom: 0.015
  22176. }
  22177. },
  22178. demiNaga: {
  22179. height: math.unit(6 + 8 / 12, "feet"),
  22180. weight: math.unit(300, "lb"),
  22181. name: "Demi Naga",
  22182. image: {
  22183. source: "./media/characters/tahajin/demi-naga.svg",
  22184. extra: 643 / 615,
  22185. bottom: 0.1
  22186. }
  22187. },
  22188. data: {
  22189. height: math.unit(5, "inches"),
  22190. weight: math.unit(0.1, "lb"),
  22191. name: "Data",
  22192. image: {
  22193. source: "./media/characters/tahajin/data.svg"
  22194. }
  22195. },
  22196. fluu: {
  22197. height: math.unit(5 + 7 / 12, "feet"),
  22198. weight: math.unit(140, "lb"),
  22199. name: "Fluu",
  22200. image: {
  22201. source: "./media/characters/tahajin/fluu.svg",
  22202. extra: 628 / 592,
  22203. bottom: 0.02
  22204. }
  22205. },
  22206. starWarrior: {
  22207. height: math.unit(4 + 5 / 12, "feet"),
  22208. weight: math.unit(50, "lb"),
  22209. name: "Star Warrior",
  22210. image: {
  22211. source: "./media/characters/tahajin/star-warrior.svg"
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(25 + 6 / 12, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22225. {
  22226. front: {
  22227. height: math.unit(8, "feet"),
  22228. weight: math.unit(350, "lb"),
  22229. name: "Front",
  22230. image: {
  22231. source: "./media/characters/gabira/front.svg",
  22232. extra: 608 / 580,
  22233. bottom: 0.03
  22234. }
  22235. },
  22236. back: {
  22237. height: math.unit(8, "feet"),
  22238. weight: math.unit(350, "lb"),
  22239. name: "Back",
  22240. image: {
  22241. source: "./media/characters/gabira/back.svg",
  22242. extra: 608 / 580,
  22243. bottom: 0.03
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(8, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(5 + 3 / 12, "feet"),
  22260. weight: math.unit(137, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/sasha-katraine/front.svg",
  22264. extra: 1745/1694,
  22265. bottom: 37/1782
  22266. }
  22267. },
  22268. back: {
  22269. height: math.unit(5 + 3 / 12, "feet"),
  22270. weight: math.unit(137, "lb"),
  22271. name: "Back",
  22272. image: {
  22273. source: "./media/characters/sasha-katraine/back.svg",
  22274. extra: 1776/1699,
  22275. bottom: 26/1802
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Micro",
  22282. height: math.unit(5, "inches")
  22283. },
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(5 + 3 / 12, "feet"),
  22287. default: true
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22293. {
  22294. side: {
  22295. height: math.unit(4, "inches"),
  22296. weight: math.unit(200, "grams"),
  22297. name: "Side",
  22298. image: {
  22299. source: "./media/characters/der/side.svg",
  22300. extra: 719 / 400,
  22301. bottom: 30.6 / 749.9187
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Micro",
  22308. height: math.unit(4, "inches"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22315. {
  22316. side: {
  22317. height: math.unit(30, "meters"),
  22318. weight: math.unit(700, "tonnes"),
  22319. name: "Side",
  22320. image: {
  22321. source: "./media/characters/fixerdragon/side.svg",
  22322. extra: (1293.0514 - 116.03) / 1106.86,
  22323. bottom: 116.03 / 1293.0514
  22324. }
  22325. },
  22326. },
  22327. [
  22328. {
  22329. name: "Planck",
  22330. height: math.unit(1.6e-35, "meters")
  22331. },
  22332. {
  22333. name: "Micro",
  22334. height: math.unit(0.4, "meters")
  22335. },
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(30, "meters"),
  22339. default: true
  22340. },
  22341. {
  22342. name: "Megamacro",
  22343. height: math.unit(1.2, "megameters")
  22344. },
  22345. {
  22346. name: "Teramacro",
  22347. height: math.unit(130, "terameters")
  22348. },
  22349. {
  22350. name: "Yottamacro",
  22351. height: math.unit(6200, "yottameters")
  22352. },
  22353. ]
  22354. ));
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(8, "feet"),
  22360. weight: math.unit(250, "lb"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/kite/front.svg",
  22364. extra: 2796 / 2659,
  22365. bottom: 0.002
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(8, "feet"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(360, "feet")
  22378. },
  22379. {
  22380. name: "Megamacro",
  22381. height: math.unit(1500, "feet")
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(5 + 11/12, "feet"),
  22390. weight: math.unit(170, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/poojawa-vynar/front.svg",
  22394. extra: 1735/1585,
  22395. bottom: 96/1831
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(5 + 11/12, "feet"),
  22400. weight: math.unit(170, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/poojawa-vynar/back.svg",
  22404. extra: 1749/1607,
  22405. bottom: 28/1777
  22406. }
  22407. },
  22408. male: {
  22409. height: math.unit(5 + 11/12, "feet"),
  22410. weight: math.unit(170, "lb"),
  22411. name: "Male",
  22412. image: {
  22413. source: "./media/characters/poojawa-vynar/male.svg",
  22414. extra: 1855/1713,
  22415. bottom: 63/1918
  22416. }
  22417. },
  22418. taur: {
  22419. height: math.unit(5 + 11/12, "feet"),
  22420. weight: math.unit(170, "lb"),
  22421. name: "Taur",
  22422. image: {
  22423. source: "./media/characters/poojawa-vynar/taur.svg",
  22424. extra: 1151/1059,
  22425. bottom: 356/1507
  22426. }
  22427. },
  22428. frontDressed: {
  22429. height: math.unit(5 + 11/12, "feet"),
  22430. weight: math.unit(170, "lb"),
  22431. name: "Front (Dressed)",
  22432. image: {
  22433. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22434. extra: 1735/1585,
  22435. bottom: 96/1831
  22436. }
  22437. },
  22438. backDressed: {
  22439. height: math.unit(5 + 11/12, "feet"),
  22440. weight: math.unit(170, "lb"),
  22441. name: "Back (Dressed)",
  22442. image: {
  22443. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22444. extra: 1749/1607,
  22445. bottom: 28/1777
  22446. }
  22447. },
  22448. maleDressed: {
  22449. height: math.unit(5 + 11/12, "feet"),
  22450. weight: math.unit(170, "lb"),
  22451. name: "Male (Dressed)",
  22452. image: {
  22453. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22454. extra: 1855/1713,
  22455. bottom: 63/1918
  22456. }
  22457. },
  22458. taurDressed: {
  22459. height: math.unit(5 + 11/12, "feet"),
  22460. weight: math.unit(170, "lb"),
  22461. name: "Taur (Dressed)",
  22462. image: {
  22463. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22464. extra: 1151/1059,
  22465. bottom: 356/1507
  22466. }
  22467. },
  22468. maw: {
  22469. height: math.unit(1.46, "feet"),
  22470. name: "Maw",
  22471. image: {
  22472. source: "./media/characters/poojawa-vynar/maw.svg"
  22473. }
  22474. },
  22475. head: {
  22476. height: math.unit(2.34, "feet"),
  22477. name: "Head",
  22478. image: {
  22479. source: "./media/characters/poojawa-vynar/head.svg"
  22480. }
  22481. },
  22482. paw: {
  22483. height: math.unit(1.61, "feet"),
  22484. name: "Paw",
  22485. image: {
  22486. source: "./media/characters/poojawa-vynar/paw.svg"
  22487. }
  22488. },
  22489. pawToering: {
  22490. height: math.unit(1.72, "feet"),
  22491. name: "Paw (Toering)",
  22492. image: {
  22493. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22494. }
  22495. },
  22496. toering: {
  22497. height: math.unit(2.9, "inches"),
  22498. name: "Toering",
  22499. image: {
  22500. source: "./media/characters/poojawa-vynar/toering.svg"
  22501. }
  22502. },
  22503. shaft: {
  22504. height: math.unit(0.625, "feet"),
  22505. name: "Shaft",
  22506. image: {
  22507. source: "./media/characters/poojawa-vynar/shaft.svg"
  22508. }
  22509. },
  22510. spade: {
  22511. height: math.unit(0.42, "feet"),
  22512. name: "Spade",
  22513. image: {
  22514. source: "./media/characters/poojawa-vynar/spade.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Shortstack",
  22521. height: math.unit(4, "feet")
  22522. },
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(5 + 11 / 12, "feet"),
  22526. default: true
  22527. },
  22528. {
  22529. name: "Tauric",
  22530. height: math.unit(4, "meters")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22536. {
  22537. front: {
  22538. height: math.unit(293, "meters"),
  22539. weight: math.unit(70400, "tons"),
  22540. name: "Front",
  22541. image: {
  22542. source: "./media/characters/violette/front.svg",
  22543. extra: 1227 / 1180,
  22544. bottom: 0.005
  22545. }
  22546. },
  22547. back: {
  22548. height: math.unit(293, "meters"),
  22549. weight: math.unit(70400, "tons"),
  22550. name: "Back",
  22551. image: {
  22552. source: "./media/characters/violette/back.svg",
  22553. extra: 1227 / 1180,
  22554. bottom: 0.005
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Macro",
  22561. height: math.unit(293, "meters"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(1050, "feet"),
  22571. weight: math.unit(200000, "tons"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/alessandra/front.svg",
  22575. extra: 960 / 912,
  22576. bottom: 0.06
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(1050, "feet")
  22584. },
  22585. {
  22586. name: "Macro+",
  22587. height: math.unit(900, "meters"),
  22588. default: true
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(5, "feet"),
  22597. weight: math.unit(187, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/person/front.svg",
  22601. extra: 3087 / 2945,
  22602. bottom: 91 / 3181
  22603. }
  22604. },
  22605. },
  22606. [
  22607. {
  22608. name: "Micro",
  22609. height: math.unit(3, "inches")
  22610. },
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5, "feet"),
  22614. default: true
  22615. },
  22616. {
  22617. name: "Macro",
  22618. height: math.unit(90, "feet")
  22619. },
  22620. {
  22621. name: "Max Size",
  22622. height: math.unit(280, "feet")
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(4.5, "meters"),
  22631. weight: math.unit(3200, "lb"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/ty/front.svg",
  22635. extra: 1038 / 960,
  22636. bottom: 31.156 / 1068
  22637. }
  22638. },
  22639. back: {
  22640. height: math.unit(4.5, "meters"),
  22641. weight: math.unit(3200, "lb"),
  22642. name: "Back",
  22643. image: {
  22644. source: "./media/characters/ty/back.svg",
  22645. extra: 1044 / 966,
  22646. bottom: 7.48 / 1049
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(4.5, "meters"),
  22654. default: true
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(5 + 4 / 12, "feet"),
  22663. weight: math.unit(115, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/rocky/front.svg",
  22667. extra: 1012 / 975,
  22668. bottom: 54 / 1066
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Normal",
  22675. height: math.unit(5 + 4 / 12, "feet"),
  22676. default: true
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22682. {
  22683. upright: {
  22684. height: math.unit(6, "meters"),
  22685. weight: math.unit(4000, "kg"),
  22686. name: "Upright",
  22687. image: {
  22688. source: "./media/characters/ruin/upright.svg",
  22689. extra: 668 / 661,
  22690. bottom: 42 / 799.8396
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Normal",
  22697. height: math.unit(6, "meters"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(5, "feet"),
  22707. weight: math.unit(106, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/robin/front.svg",
  22711. extra: 862 / 799,
  22712. bottom: 42.4 / 914.8856
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(5, "feet"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22726. {
  22727. side: {
  22728. height: math.unit(3, "feet"),
  22729. weight: math.unit(225, "lb"),
  22730. name: "Side",
  22731. image: {
  22732. source: "./media/characters/saian/side.svg",
  22733. extra: 566 / 356,
  22734. bottom: 79.7 / 643
  22735. }
  22736. },
  22737. maw: {
  22738. height: math.unit(2.85, "feet"),
  22739. name: "Maw",
  22740. image: {
  22741. source: "./media/characters/saian/maw.svg"
  22742. }
  22743. },
  22744. },
  22745. [
  22746. {
  22747. name: "Normal",
  22748. height: math.unit(3, "feet"),
  22749. default: true
  22750. },
  22751. ]
  22752. ))
  22753. characterMakers.push(() => makeCharacter(
  22754. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22755. {
  22756. side: {
  22757. height: math.unit(8, "feet"),
  22758. weight: math.unit(300, "lb"),
  22759. name: "Side",
  22760. image: {
  22761. source: "./media/characters/equus-silvermane/side.svg",
  22762. extra: 2176 / 2050,
  22763. bottom: 65.7 / 2245
  22764. }
  22765. },
  22766. front: {
  22767. height: math.unit(8, "feet"),
  22768. weight: math.unit(300, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/equus-silvermane/front.svg",
  22772. extra: 4633 / 4400,
  22773. bottom: 71.3 / 4706.915
  22774. }
  22775. },
  22776. sideStepping: {
  22777. height: math.unit(8, "feet"),
  22778. weight: math.unit(300, "lb"),
  22779. name: "Side (Stepping)",
  22780. image: {
  22781. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22782. extra: 1968 / 1860,
  22783. bottom: 16.4 / 1989
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(8, "feet")
  22791. },
  22792. {
  22793. name: "Minimacro",
  22794. height: math.unit(75, "feet"),
  22795. default: true
  22796. },
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(150, "feet")
  22800. },
  22801. {
  22802. name: "Macro+",
  22803. height: math.unit(1000, "feet")
  22804. },
  22805. {
  22806. name: "Megamacro",
  22807. height: math.unit(1, "mile")
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22813. {
  22814. side: {
  22815. height: math.unit(20, "feet"),
  22816. weight: math.unit(30000, "kg"),
  22817. name: "Side",
  22818. image: {
  22819. source: "./media/characters/windar/side.svg",
  22820. extra: 1491 / 1248,
  22821. bottom: 82.56 / 1568
  22822. }
  22823. },
  22824. },
  22825. [
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(20, "feet"),
  22829. default: true
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22835. {
  22836. side: {
  22837. height: math.unit(15.66, "feet"),
  22838. weight: math.unit(150, "lb"),
  22839. name: "Side",
  22840. image: {
  22841. source: "./media/characters/melody/side.svg",
  22842. extra: 1097 / 944,
  22843. bottom: 11.8 / 1109
  22844. }
  22845. },
  22846. sideOutfit: {
  22847. height: math.unit(15.66, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Side (Outfit)",
  22850. image: {
  22851. source: "./media/characters/melody/side-outfit.svg",
  22852. extra: 1097 / 944,
  22853. bottom: 11.8 / 1109
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(15.66, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(8, "feet"),
  22870. weight: math.unit(325, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/windera/front.svg",
  22874. extra: 3180 / 2845,
  22875. bottom: 178 / 3365
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(8, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22889. {
  22890. front: {
  22891. height: math.unit(28.75, "feet"),
  22892. weight: math.unit(2000, "kg"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/sonear/front.svg",
  22896. extra: 1041.1 / 964.9,
  22897. bottom: 53.7 / 1096.6
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(28.75, "feet"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22911. {
  22912. side: {
  22913. height: math.unit(25.5, "feet"),
  22914. weight: math.unit(23000, "kg"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/kanara/side.svg"
  22918. }
  22919. },
  22920. },
  22921. [
  22922. {
  22923. name: "Normal",
  22924. height: math.unit(25.5, "feet"),
  22925. default: true
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22931. {
  22932. side: {
  22933. height: math.unit(10, "feet"),
  22934. weight: math.unit(1000, "kg"),
  22935. name: "Side",
  22936. image: {
  22937. source: "./media/characters/ereus/side.svg",
  22938. extra: 1157 / 959,
  22939. bottom: 153 / 1312.5
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Normal",
  22946. height: math.unit(10, "feet"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22953. {
  22954. side: {
  22955. height: math.unit(4.5, "feet"),
  22956. weight: math.unit(500, "lb"),
  22957. name: "Side",
  22958. image: {
  22959. source: "./media/characters/e-ter/side.svg",
  22960. extra: 1550 / 1248,
  22961. bottom: 146 / 1694
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(4.5, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(9.7, "feet"),
  22978. weight: math.unit(4000, "kg"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/yamie/side.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Normal",
  22988. height: math.unit(9.7, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(50, "feet"),
  22998. weight: math.unit(50000, "kg"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/anders/front.svg",
  23002. extra: 570 / 539,
  23003. bottom: 14.7 / 586.7
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Large",
  23010. height: math.unit(50, "feet")
  23011. },
  23012. {
  23013. name: "Macro",
  23014. height: math.unit(2000, "feet"),
  23015. default: true
  23016. },
  23017. {
  23018. name: "Megamacro",
  23019. height: math.unit(12, "miles")
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(7 + 2 / 12, "feet"),
  23028. weight: math.unit(300, "lb"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/reban/front.svg",
  23032. extra: 1287/1212,
  23033. bottom: 148/1435
  23034. }
  23035. },
  23036. head: {
  23037. height: math.unit(1.95, "feet"),
  23038. name: "Head",
  23039. image: {
  23040. source: "./media/characters/reban/head.svg"
  23041. }
  23042. },
  23043. maw: {
  23044. height: math.unit(0.95, "feet"),
  23045. name: "Maw",
  23046. image: {
  23047. source: "./media/characters/reban/maw.svg"
  23048. }
  23049. },
  23050. foot: {
  23051. height: math.unit(1.65, "feet"),
  23052. name: "Foot",
  23053. image: {
  23054. source: "./media/characters/reban/foot.svg"
  23055. }
  23056. },
  23057. dick: {
  23058. height: math.unit(7 / 5, "feet"),
  23059. name: "Dick",
  23060. image: {
  23061. source: "./media/characters/reban/dick.svg"
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Natural Height",
  23068. height: math.unit(7 + 2 / 12, "feet")
  23069. },
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(500, "feet"),
  23073. default: true
  23074. },
  23075. {
  23076. name: "Canon Height",
  23077. height: math.unit(50, "AU")
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/terrance-keayes/front.svg",
  23090. extra: 1.005,
  23091. bottom: 151 / 1615
  23092. }
  23093. },
  23094. side: {
  23095. height: math.unit(6, "feet"),
  23096. weight: math.unit(150, "lb"),
  23097. name: "Side",
  23098. image: {
  23099. source: "./media/characters/terrance-keayes/side.svg",
  23100. extra: 1.005,
  23101. bottom: 129.4 / 1544
  23102. }
  23103. },
  23104. back: {
  23105. height: math.unit(6, "feet"),
  23106. weight: math.unit(150, "lb"),
  23107. name: "Back",
  23108. image: {
  23109. source: "./media/characters/terrance-keayes/back.svg",
  23110. extra: 1.005,
  23111. bottom: 58.4 / 1557.3
  23112. }
  23113. },
  23114. dick: {
  23115. height: math.unit(6 * 0.208, "feet"),
  23116. name: "Dick",
  23117. image: {
  23118. source: "./media/characters/terrance-keayes/dick.svg"
  23119. }
  23120. },
  23121. },
  23122. [
  23123. {
  23124. name: "Canon Height",
  23125. height: math.unit(35, "miles"),
  23126. default: true
  23127. },
  23128. ]
  23129. ))
  23130. characterMakers.push(() => makeCharacter(
  23131. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23132. {
  23133. front: {
  23134. height: math.unit(6, "feet"),
  23135. weight: math.unit(150, "lb"),
  23136. name: "Front",
  23137. image: {
  23138. source: "./media/characters/ofelia/front.svg",
  23139. extra: 1130/1117,
  23140. bottom: 91/1221
  23141. }
  23142. },
  23143. back: {
  23144. height: math.unit(6, "feet"),
  23145. weight: math.unit(150, "lb"),
  23146. name: "Back",
  23147. image: {
  23148. source: "./media/characters/ofelia/back.svg",
  23149. extra: 1172/1159,
  23150. bottom: 28/1200
  23151. }
  23152. },
  23153. maw: {
  23154. height: math.unit(1, "feet"),
  23155. name: "Maw",
  23156. image: {
  23157. source: "./media/characters/ofelia/maw.svg"
  23158. }
  23159. },
  23160. foot: {
  23161. height: math.unit(1.949, "feet"),
  23162. name: "Foot",
  23163. image: {
  23164. source: "./media/characters/ofelia/foot.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Canon Height",
  23171. height: math.unit(2000, "miles"),
  23172. default: true
  23173. },
  23174. ]
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(6, "feet"),
  23181. weight: math.unit(150, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/samuel/front.svg",
  23185. extra: 265 / 258,
  23186. bottom: 2 / 266.1566
  23187. }
  23188. },
  23189. },
  23190. [
  23191. {
  23192. name: "Macro",
  23193. height: math.unit(100, "feet"),
  23194. default: true
  23195. },
  23196. {
  23197. name: "Full Size",
  23198. height: math.unit(1000, "miles")
  23199. },
  23200. ]
  23201. ))
  23202. characterMakers.push(() => makeCharacter(
  23203. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23204. {
  23205. front: {
  23206. height: math.unit(6, "feet"),
  23207. weight: math.unit(300, "lb"),
  23208. name: "Front",
  23209. image: {
  23210. source: "./media/characters/beishir-kiel/front.svg",
  23211. extra: 569 / 547,
  23212. bottom: 41.9 / 609
  23213. }
  23214. },
  23215. maw: {
  23216. height: math.unit(6 * 0.202, "feet"),
  23217. name: "Maw",
  23218. image: {
  23219. source: "./media/characters/beishir-kiel/maw.svg"
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(300, "feet"),
  23227. default: true
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(5 + 7/12, "feet"),
  23236. weight: math.unit(120, "lb"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/logan-grey/front.svg",
  23240. extra: 1836/1738,
  23241. bottom: 108/1944
  23242. }
  23243. },
  23244. back: {
  23245. height: math.unit(5 + 7/12, "feet"),
  23246. weight: math.unit(120, "lb"),
  23247. name: "Back",
  23248. image: {
  23249. source: "./media/characters/logan-grey/back.svg",
  23250. extra: 1880/1794,
  23251. bottom: 24/1904
  23252. }
  23253. },
  23254. frontSfw: {
  23255. height: math.unit(5 + 7/12, "feet"),
  23256. weight: math.unit(120, "lb"),
  23257. name: "Front (SFW)",
  23258. image: {
  23259. source: "./media/characters/logan-grey/front-sfw.svg",
  23260. extra: 1836/1738,
  23261. bottom: 108/1944
  23262. }
  23263. },
  23264. backSfw: {
  23265. height: math.unit(5 + 7/12, "feet"),
  23266. weight: math.unit(120, "lb"),
  23267. name: "Back (SFW)",
  23268. image: {
  23269. source: "./media/characters/logan-grey/back-sfw.svg",
  23270. extra: 1880/1794,
  23271. bottom: 24/1904
  23272. }
  23273. },
  23274. hands: {
  23275. height: math.unit(0.84, "feet"),
  23276. name: "Hands",
  23277. image: {
  23278. source: "./media/characters/logan-grey/hands.svg"
  23279. }
  23280. },
  23281. paws: {
  23282. height: math.unit(0.72, "feet"),
  23283. name: "Paws",
  23284. image: {
  23285. source: "./media/characters/logan-grey/paws.svg"
  23286. }
  23287. },
  23288. cock: {
  23289. height: math.unit(1.45, "feet"),
  23290. name: "Cock",
  23291. image: {
  23292. source: "./media/characters/logan-grey/cock.svg"
  23293. }
  23294. },
  23295. cockAlt: {
  23296. height: math.unit(1.437, "feet"),
  23297. name: "Cock (alt)",
  23298. image: {
  23299. source: "./media/characters/logan-grey/cock-alt.svg"
  23300. }
  23301. },
  23302. },
  23303. [
  23304. {
  23305. name: "Normal",
  23306. height: math.unit(5 + 8 / 12, "feet")
  23307. },
  23308. {
  23309. name: "The 500 Foot Femboy",
  23310. height: math.unit(500, "feet"),
  23311. default: true
  23312. },
  23313. {
  23314. name: "Megmacro",
  23315. height: math.unit(20, "miles")
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(8 + 2 / 12, "feet"),
  23324. weight: math.unit(275, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/draganta/front.svg",
  23328. extra: 1177 / 1135,
  23329. bottom: 33.46 / 1212.1
  23330. }
  23331. },
  23332. },
  23333. [
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(8 + 6 / 12, "feet"),
  23337. default: true
  23338. },
  23339. {
  23340. name: "Macro",
  23341. height: math.unit(150, "feet")
  23342. },
  23343. {
  23344. name: "Megamacro",
  23345. height: math.unit(1000, "miles")
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(1.72, "m"),
  23354. weight: math.unit(80, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/voski/front.svg",
  23358. extra: 2076.22 / 2022.4,
  23359. bottom: 102.7 / 2177.3866
  23360. }
  23361. },
  23362. frontFlaccid: {
  23363. height: math.unit(1.72, "m"),
  23364. weight: math.unit(80, "lb"),
  23365. name: "Front (Flaccid)",
  23366. image: {
  23367. source: "./media/characters/voski/front-flaccid.svg",
  23368. extra: 2076.22 / 2022.4,
  23369. bottom: 102.7 / 2177.3866
  23370. }
  23371. },
  23372. frontErect: {
  23373. height: math.unit(1.72, "m"),
  23374. weight: math.unit(80, "lb"),
  23375. name: "Front (Erect)",
  23376. image: {
  23377. source: "./media/characters/voski/front-erect.svg",
  23378. extra: 2076.22 / 2022.4,
  23379. bottom: 102.7 / 2177.3866
  23380. }
  23381. },
  23382. back: {
  23383. height: math.unit(1.72, "m"),
  23384. weight: math.unit(80, "lb"),
  23385. name: "Back",
  23386. image: {
  23387. source: "./media/characters/voski/back.svg",
  23388. extra: 2104 / 2051,
  23389. bottom: 10.45 / 2113.63
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(1.72, "m")
  23397. },
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(55, "m"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Macro+",
  23405. height: math.unit(300, "m")
  23406. },
  23407. {
  23408. name: "Macro++",
  23409. height: math.unit(700, "m")
  23410. },
  23411. {
  23412. name: "Macro+++",
  23413. height: math.unit(4500, "m")
  23414. },
  23415. {
  23416. name: "Macro++++",
  23417. height: math.unit(45, "km")
  23418. },
  23419. {
  23420. name: "Macro+++++",
  23421. height: math.unit(1220, "km")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(2.3, "m"),
  23430. weight: math.unit(304, "kg"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/icowom-lee/front.svg",
  23434. extra: 985 / 955,
  23435. bottom: 25.4 / 1012
  23436. }
  23437. },
  23438. fronttentacles: {
  23439. height: math.unit(2.3, "m"),
  23440. weight: math.unit(304, "kg"),
  23441. name: "Front-tentacles",
  23442. image: {
  23443. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23444. extra: 985 / 955,
  23445. bottom: 25.4 / 1012
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(2.3, "m"),
  23450. weight: math.unit(304, "kg"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/icowom-lee/back.svg",
  23454. extra: 975 / 954,
  23455. bottom: 9.5 / 985
  23456. }
  23457. },
  23458. backtentacles: {
  23459. height: math.unit(2.3, "m"),
  23460. weight: math.unit(304, "kg"),
  23461. name: "Back-tentacles",
  23462. image: {
  23463. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23464. extra: 975 / 954,
  23465. bottom: 9.5 / 985
  23466. }
  23467. },
  23468. frontDressed: {
  23469. height: math.unit(2.3, "m"),
  23470. weight: math.unit(304, "kg"),
  23471. name: "Front (Dressed)",
  23472. image: {
  23473. source: "./media/characters/icowom-lee/front-dressed.svg",
  23474. extra: 3076 / 2933,
  23475. bottom: 51.4 / 3125.1889
  23476. }
  23477. },
  23478. rump: {
  23479. height: math.unit(0.776, "meters"),
  23480. name: "Rump",
  23481. image: {
  23482. source: "./media/characters/icowom-lee/rump.svg"
  23483. }
  23484. },
  23485. genitals: {
  23486. height: math.unit(0.78, "meters"),
  23487. name: "Genitals",
  23488. image: {
  23489. source: "./media/characters/icowom-lee/genitals.svg"
  23490. }
  23491. },
  23492. },
  23493. [
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(2.3, "meters"),
  23497. default: true
  23498. },
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(94, "meters"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(22, "meters"),
  23511. weight: math.unit(21000, "kg"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/shock-diamond/front.svg",
  23515. extra: 2204 / 2053,
  23516. bottom: 65 / 2239.47
  23517. }
  23518. },
  23519. frontNude: {
  23520. height: math.unit(22, "meters"),
  23521. weight: math.unit(21000, "kg"),
  23522. name: "Front (Nude)",
  23523. image: {
  23524. source: "./media/characters/shock-diamond/front-nude.svg",
  23525. extra: 2514 / 2285,
  23526. bottom: 13 / 2527.56
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(3, "meters")
  23534. },
  23535. {
  23536. name: "Macro",
  23537. height: math.unit(22, "meters"),
  23538. default: true
  23539. },
  23540. ]
  23541. ))
  23542. characterMakers.push(() => makeCharacter(
  23543. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23544. {
  23545. front: {
  23546. height: math.unit(5 + 4 / 12, "feet"),
  23547. weight: math.unit(120, "lb"),
  23548. name: "Front",
  23549. image: {
  23550. source: "./media/characters/rory/front.svg",
  23551. extra: 1318/1241,
  23552. bottom: 42/1360
  23553. }
  23554. },
  23555. back: {
  23556. height: math.unit(5 + 4 / 12, "feet"),
  23557. weight: math.unit(120, "lb"),
  23558. name: "Back",
  23559. image: {
  23560. source: "./media/characters/rory/back.svg",
  23561. extra: 1318/1241,
  23562. bottom: 42/1360
  23563. }
  23564. },
  23565. butt: {
  23566. height: math.unit(1.74, "feet"),
  23567. name: "Butt",
  23568. image: {
  23569. source: "./media/characters/rory/butt.svg"
  23570. }
  23571. },
  23572. dick: {
  23573. height: math.unit(1.02, "feet"),
  23574. name: "Dick",
  23575. image: {
  23576. source: "./media/characters/rory/dick.svg"
  23577. }
  23578. },
  23579. paws: {
  23580. height: math.unit(1, "feet"),
  23581. name: "Paws",
  23582. image: {
  23583. source: "./media/characters/rory/paws.svg"
  23584. }
  23585. },
  23586. frontAlt: {
  23587. height: math.unit(5 + 4 / 12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front (Alt)",
  23590. image: {
  23591. source: "./media/characters/rory/front-alt.svg",
  23592. extra: 589 / 556,
  23593. bottom: 45.7 / 635.76
  23594. }
  23595. },
  23596. frontAltNude: {
  23597. height: math.unit(5 + 4 / 12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Front (Alt, Nude)",
  23600. image: {
  23601. source: "./media/characters/rory/front-alt-nude.svg",
  23602. extra: 589 / 556,
  23603. bottom: 45.7 / 635.76
  23604. }
  23605. },
  23606. side: {
  23607. height: math.unit(5 + 4 / 12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Side",
  23610. image: {
  23611. source: "./media/characters/rory/side.svg",
  23612. extra: 597 / 564,
  23613. bottom: 55 / 653
  23614. }
  23615. },
  23616. backAlt: {
  23617. height: math.unit(5 + 4 / 12, "feet"),
  23618. weight: math.unit(120, "lb"),
  23619. name: "Back (Alt)",
  23620. image: {
  23621. source: "./media/characters/rory/back-alt.svg",
  23622. extra: 620 / 585,
  23623. bottom: 8.86 / 630.43
  23624. }
  23625. },
  23626. dickAlt: {
  23627. height: math.unit(0.86, "feet"),
  23628. name: "Dick (Alt)",
  23629. image: {
  23630. source: "./media/characters/rory/dick-alt.svg"
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Normal",
  23637. height: math.unit(5 + 4 / 12, "feet"),
  23638. default: true
  23639. },
  23640. {
  23641. name: "Macro",
  23642. height: math.unit(100, "feet")
  23643. },
  23644. {
  23645. name: "Macro+",
  23646. height: math.unit(140, "feet")
  23647. },
  23648. {
  23649. name: "Macro++",
  23650. height: math.unit(300, "feet")
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(5 + 9 / 12, "feet"),
  23659. weight: math.unit(190, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/sprisk/front.svg",
  23663. extra: 1225 / 1180,
  23664. bottom: 42.7 / 1266.4
  23665. }
  23666. },
  23667. frontNsfw: {
  23668. height: math.unit(5 + 9 / 12, "feet"),
  23669. weight: math.unit(190, "lb"),
  23670. name: "Front (NSFW)",
  23671. image: {
  23672. source: "./media/characters/sprisk/front-nsfw.svg",
  23673. extra: 1225 / 1180,
  23674. bottom: 42.7 / 1266.4
  23675. }
  23676. },
  23677. back: {
  23678. height: math.unit(5 + 9 / 12, "feet"),
  23679. weight: math.unit(190, "lb"),
  23680. name: "Back",
  23681. image: {
  23682. source: "./media/characters/sprisk/back.svg",
  23683. extra: 1247 / 1200,
  23684. bottom: 5.6 / 1253.04
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Tiny",
  23691. height: math.unit(2, "inches")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5 + 9 / 12, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Mini Macro",
  23700. height: math.unit(18, "feet")
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(100, "feet")
  23705. },
  23706. {
  23707. name: "MACRO",
  23708. height: math.unit(50, "miles")
  23709. },
  23710. {
  23711. name: "M A C R O",
  23712. height: math.unit(300, "miles")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23718. {
  23719. side: {
  23720. height: math.unit(15.6, "meters"),
  23721. weight: math.unit(700000, "kg"),
  23722. name: "Side",
  23723. image: {
  23724. source: "./media/characters/bunsen/side.svg",
  23725. extra: 1644 / 358
  23726. }
  23727. },
  23728. foot: {
  23729. height: math.unit(1.611 * 1644 / 358, "meter"),
  23730. name: "Foot",
  23731. image: {
  23732. source: "./media/characters/bunsen/foot.svg"
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Small",
  23739. height: math.unit(10, "feet")
  23740. },
  23741. {
  23742. name: "Normal",
  23743. height: math.unit(15.6, "meters"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(4 + 11 / 12, "feet"),
  23753. weight: math.unit(140, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/sesh/front.svg",
  23757. extra: 3420 / 3231,
  23758. bottom: 72 / 3949.5
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(4 + 11 / 12, "feet")
  23766. },
  23767. {
  23768. name: "Grown",
  23769. height: math.unit(15, "feet"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Macro",
  23774. height: math.unit(1500, "feet")
  23775. },
  23776. {
  23777. name: "Megamacro",
  23778. height: math.unit(30, "miles")
  23779. },
  23780. {
  23781. name: "Continental",
  23782. height: math.unit(3000, "miles")
  23783. },
  23784. {
  23785. name: "Gravity Mass",
  23786. height: math.unit(300000, "miles")
  23787. },
  23788. {
  23789. name: "Planet Buster",
  23790. height: math.unit(30000000, "miles")
  23791. },
  23792. {
  23793. name: "Big",
  23794. height: math.unit(3000000000, "miles")
  23795. },
  23796. ]
  23797. ))
  23798. characterMakers.push(() => makeCharacter(
  23799. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23800. {
  23801. front: {
  23802. height: math.unit(9, "feet"),
  23803. weight: math.unit(350, "lb"),
  23804. name: "Front",
  23805. image: {
  23806. source: "./media/characters/pepper/front.svg",
  23807. extra: 1448 / 1312,
  23808. bottom: 9.4 / 1457.88
  23809. }
  23810. },
  23811. back: {
  23812. height: math.unit(9, "feet"),
  23813. weight: math.unit(350, "lb"),
  23814. name: "Back",
  23815. image: {
  23816. source: "./media/characters/pepper/back.svg",
  23817. extra: 1423 / 1300,
  23818. bottom: 4.6 / 1429
  23819. }
  23820. },
  23821. maw: {
  23822. height: math.unit(0.932, "feet"),
  23823. name: "Maw",
  23824. image: {
  23825. source: "./media/characters/pepper/maw.svg"
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(9, "feet"),
  23833. default: true
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(6, "feet"),
  23842. weight: math.unit(150, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/maelstrom/front.svg",
  23846. extra: 2100 / 1883,
  23847. bottom: 94 / 2196.7
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Less Kaiju",
  23854. height: math.unit(200, "feet")
  23855. },
  23856. {
  23857. name: "Kaiju",
  23858. height: math.unit(400, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Kaiju-er",
  23863. height: math.unit(600, "feet")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(6 + 5 / 12, "feet"),
  23872. weight: math.unit(180, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/lexir/front.svg",
  23876. extra: 180 / 172,
  23877. bottom: 12 / 192
  23878. }
  23879. },
  23880. back: {
  23881. height: math.unit(6 + 5 / 12, "feet"),
  23882. weight: math.unit(180, "lb"),
  23883. name: "Back",
  23884. image: {
  23885. source: "./media/characters/lexir/back.svg",
  23886. extra: 1273/1201,
  23887. bottom: 39/1312
  23888. }
  23889. },
  23890. },
  23891. [
  23892. {
  23893. name: "Very Smal",
  23894. height: math.unit(1, "nm")
  23895. },
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(6 + 5 / 12, "feet"),
  23899. default: true
  23900. },
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(1, "mile")
  23904. },
  23905. {
  23906. name: "Megamacro",
  23907. height: math.unit(50, "miles")
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(1.5, "meters"),
  23916. weight: math.unit(100, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/maksio/front.svg",
  23920. extra: 1549 / 1531,
  23921. bottom: 123.7 / 1674.5429
  23922. }
  23923. },
  23924. back: {
  23925. height: math.unit(1.5, "meters"),
  23926. weight: math.unit(100, "lb"),
  23927. name: "Back",
  23928. image: {
  23929. source: "./media/characters/maksio/back.svg",
  23930. extra: 1541 / 1509,
  23931. bottom: 97 / 1639
  23932. }
  23933. },
  23934. hand: {
  23935. height: math.unit(0.621, "feet"),
  23936. name: "Hand",
  23937. image: {
  23938. source: "./media/characters/maksio/hand.svg"
  23939. }
  23940. },
  23941. foot: {
  23942. height: math.unit(1.611, "feet"),
  23943. name: "Foot",
  23944. image: {
  23945. source: "./media/characters/maksio/foot.svg"
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Shrunken",
  23952. height: math.unit(10, "cm")
  23953. },
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(150, "cm"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23963. {
  23964. front: {
  23965. height: math.unit(100, "feet"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/erza-bear/front.svg",
  23969. extra: 2449 / 2390,
  23970. bottom: 46 / 2494
  23971. }
  23972. },
  23973. back: {
  23974. height: math.unit(100, "feet"),
  23975. name: "Back",
  23976. image: {
  23977. source: "./media/characters/erza-bear/back.svg",
  23978. extra: 2489 / 2430,
  23979. bottom: 85.4 / 2480
  23980. }
  23981. },
  23982. tail: {
  23983. height: math.unit(42, "feet"),
  23984. name: "Tail",
  23985. image: {
  23986. source: "./media/characters/erza-bear/tail.svg"
  23987. }
  23988. },
  23989. tongue: {
  23990. height: math.unit(8, "feet"),
  23991. name: "Tongue",
  23992. image: {
  23993. source: "./media/characters/erza-bear/tongue.svg"
  23994. }
  23995. },
  23996. dick: {
  23997. height: math.unit(10.5, "feet"),
  23998. name: "Dick",
  23999. image: {
  24000. source: "./media/characters/erza-bear/dick.svg"
  24001. }
  24002. },
  24003. dickVertical: {
  24004. height: math.unit(16.9, "feet"),
  24005. name: "Dick (Vertical)",
  24006. image: {
  24007. source: "./media/characters/erza-bear/dick-vertical.svg"
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(100, "feet"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24021. {
  24022. front: {
  24023. height: math.unit(172, "cm"),
  24024. weight: math.unit(73, "kg"),
  24025. name: "Front",
  24026. image: {
  24027. source: "./media/characters/violet-flor/front.svg",
  24028. extra: 1530 / 1442,
  24029. bottom: 61.9 / 1588.8
  24030. }
  24031. },
  24032. back: {
  24033. height: math.unit(180, "cm"),
  24034. weight: math.unit(73, "kg"),
  24035. name: "Back",
  24036. image: {
  24037. source: "./media/characters/violet-flor/back.svg",
  24038. extra: 1692 / 1630,
  24039. bottom: 20 / 1712
  24040. }
  24041. },
  24042. },
  24043. [
  24044. {
  24045. name: "Normal",
  24046. height: math.unit(172, "cm"),
  24047. default: true
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24053. {
  24054. front: {
  24055. height: math.unit(6, "feet"),
  24056. weight: math.unit(220, "lb"),
  24057. name: "Front",
  24058. image: {
  24059. source: "./media/characters/lynn-rhea/front.svg",
  24060. extra: 310 / 273
  24061. }
  24062. },
  24063. back: {
  24064. height: math.unit(6, "feet"),
  24065. weight: math.unit(220, "lb"),
  24066. name: "Back",
  24067. image: {
  24068. source: "./media/characters/lynn-rhea/back.svg",
  24069. extra: 310 / 273
  24070. }
  24071. },
  24072. dicks: {
  24073. height: math.unit(0.9, "feet"),
  24074. name: "Dicks",
  24075. image: {
  24076. source: "./media/characters/lynn-rhea/dicks.svg"
  24077. }
  24078. },
  24079. slit: {
  24080. height: math.unit(0.4, "feet"),
  24081. name: "Slit",
  24082. image: {
  24083. source: "./media/characters/lynn-rhea/slit.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Micro",
  24090. height: math.unit(1, "inch")
  24091. },
  24092. {
  24093. name: "Macro",
  24094. height: math.unit(60, "feet"),
  24095. default: true
  24096. },
  24097. {
  24098. name: "Megamacro",
  24099. height: math.unit(2, "miles")
  24100. },
  24101. {
  24102. name: "Gigamacro",
  24103. height: math.unit(3, "earths")
  24104. },
  24105. {
  24106. name: "Galactic",
  24107. height: math.unit(0.8, "galaxies")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24113. {
  24114. front: {
  24115. height: math.unit(1600, "feet"),
  24116. weight: math.unit(85758785169, "kg"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/valathos/front.svg",
  24120. extra: 1451 / 1339
  24121. }
  24122. },
  24123. },
  24124. [
  24125. {
  24126. name: "Macro",
  24127. height: math.unit(1600, "feet"),
  24128. default: true
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24134. {
  24135. front: {
  24136. height: math.unit(7 + 5 / 12, "feet"),
  24137. weight: math.unit(300, "lb"),
  24138. name: "Front",
  24139. image: {
  24140. source: "./media/characters/azula/front.svg",
  24141. extra: 3208 / 2880,
  24142. bottom: 80.2 / 3277
  24143. }
  24144. },
  24145. back: {
  24146. height: math.unit(7 + 5 / 12, "feet"),
  24147. weight: math.unit(300, "lb"),
  24148. name: "Back",
  24149. image: {
  24150. source: "./media/characters/azula/back.svg",
  24151. extra: 3169 / 2822,
  24152. bottom: 150.6 / 3321
  24153. }
  24154. },
  24155. },
  24156. [
  24157. {
  24158. name: "Normal",
  24159. height: math.unit(7 + 5 / 12, "feet"),
  24160. default: true
  24161. },
  24162. {
  24163. name: "Big",
  24164. height: math.unit(20, "feet")
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(5 + 1 / 12, "feet"),
  24173. weight: math.unit(110, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/rupert/front.svg",
  24177. extra: 1549 / 1495,
  24178. bottom: 54.2 / 1604.4
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Normal",
  24185. height: math.unit(5 + 1 / 12, "feet"),
  24186. default: true
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24192. {
  24193. front: {
  24194. height: math.unit(8 + 4 / 12, "feet"),
  24195. weight: math.unit(350, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/sheera-castellar/front.svg",
  24199. extra: 1957 / 1894,
  24200. bottom: 26.97 / 1975.017
  24201. }
  24202. },
  24203. side: {
  24204. height: math.unit(8 + 4 / 12, "feet"),
  24205. weight: math.unit(350, "lb"),
  24206. name: "Side",
  24207. image: {
  24208. source: "./media/characters/sheera-castellar/side.svg",
  24209. extra: 1957 / 1894
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(8 + 4 / 12, "feet"),
  24214. weight: math.unit(350, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/sheera-castellar/back.svg",
  24218. extra: 1957 / 1894
  24219. }
  24220. },
  24221. angled: {
  24222. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24223. weight: math.unit(350, "lb"),
  24224. name: "Angled",
  24225. image: {
  24226. source: "./media/characters/sheera-castellar/angled.svg",
  24227. extra: 1807 / 1707,
  24228. bottom: 68 / 1875
  24229. }
  24230. },
  24231. genitals: {
  24232. height: math.unit(2.2, "feet"),
  24233. name: "Genitals",
  24234. image: {
  24235. source: "./media/characters/sheera-castellar/genitals.svg"
  24236. }
  24237. },
  24238. taur: {
  24239. height: math.unit(10 + 6/12, "feet"),
  24240. name: "Taur",
  24241. image: {
  24242. source: "./media/characters/sheera-castellar/taur.svg",
  24243. extra: 2017/1909,
  24244. bottom: 185/2202
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Normal",
  24251. height: math.unit(8 + 4 / 12, "feet")
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(150, "feet"),
  24256. default: true
  24257. },
  24258. {
  24259. name: "Macro+",
  24260. height: math.unit(800, "feet")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(6, "feet"),
  24269. weight: math.unit(150, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/jaipur/front.svg",
  24273. extra: 3860 / 3731,
  24274. bottom: 287 / 4140
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(6, "feet"),
  24279. weight: math.unit(150, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/jaipur/back.svg",
  24283. extra: 1637/1561,
  24284. bottom: 154/1791
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(1.85, "meters"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Macro",
  24296. height: math.unit(150, "meters")
  24297. },
  24298. {
  24299. name: "Macro+",
  24300. height: math.unit(0.5, "miles")
  24301. },
  24302. {
  24303. name: "Macro++",
  24304. height: math.unit(2.5, "miles")
  24305. },
  24306. {
  24307. name: "Macro+++",
  24308. height: math.unit(12, "miles")
  24309. },
  24310. {
  24311. name: "Macro++++",
  24312. height: math.unit(120, "miles")
  24313. },
  24314. {
  24315. name: "Macro+++++",
  24316. height: math.unit(1200, "miles")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(6, "feet"),
  24325. weight: math.unit(150, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/sheila-wolf/front.svg",
  24329. extra: 1931 / 1808,
  24330. bottom: 29.5 / 1960
  24331. }
  24332. },
  24333. dick: {
  24334. height: math.unit(1.464, "feet"),
  24335. name: "Dick",
  24336. image: {
  24337. source: "./media/characters/sheila-wolf/dick.svg"
  24338. }
  24339. },
  24340. muzzle: {
  24341. height: math.unit(0.513, "feet"),
  24342. name: "Muzzle",
  24343. image: {
  24344. source: "./media/characters/sheila-wolf/muzzle.svg"
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Macro",
  24351. height: math.unit(70, "feet"),
  24352. default: true
  24353. },
  24354. ]
  24355. ))
  24356. characterMakers.push(() => makeCharacter(
  24357. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24358. {
  24359. front: {
  24360. height: math.unit(32, "meters"),
  24361. weight: math.unit(300000, "kg"),
  24362. name: "Front",
  24363. image: {
  24364. source: "./media/characters/almor/front.svg",
  24365. extra: 1408 / 1322,
  24366. bottom: 94.6 / 1506.5
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Macro",
  24373. height: math.unit(32, "meters"),
  24374. default: true
  24375. },
  24376. ]
  24377. ))
  24378. characterMakers.push(() => makeCharacter(
  24379. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24380. {
  24381. front: {
  24382. height: math.unit(7, "feet"),
  24383. weight: math.unit(200, "lb"),
  24384. name: "Front",
  24385. image: {
  24386. source: "./media/characters/silver/front.svg",
  24387. extra: 472.1 / 450.5,
  24388. bottom: 26.5 / 499.424
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(7, "feet"),
  24396. default: true
  24397. },
  24398. {
  24399. name: "Macro",
  24400. height: math.unit(800, "feet")
  24401. },
  24402. {
  24403. name: "Megamacro",
  24404. height: math.unit(250, "miles")
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24410. {
  24411. front: {
  24412. height: math.unit(6, "feet"),
  24413. weight: math.unit(150, "lb"),
  24414. name: "Front",
  24415. image: {
  24416. source: "./media/characters/pliskin/front.svg",
  24417. extra: 1469 / 1359,
  24418. bottom: 70 / 1540
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Micro",
  24425. height: math.unit(3, "inches")
  24426. },
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(5 + 11 / 12, "feet"),
  24430. default: true
  24431. },
  24432. {
  24433. name: "Macro",
  24434. height: math.unit(120, "feet")
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(6, "feet"),
  24443. weight: math.unit(150, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/sammy/front.svg",
  24447. extra: 1193 / 1089,
  24448. bottom: 30.5 / 1226
  24449. }
  24450. },
  24451. },
  24452. [
  24453. {
  24454. name: "Macro",
  24455. height: math.unit(1700, "feet"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Examacro",
  24460. height: math.unit(2.5e9, "lightyears")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(21, "meters"),
  24469. weight: math.unit(12, "tonnes"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/kuru/front.svg",
  24473. extra: 4301 / 3785,
  24474. bottom: 371.3 / 4691
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Macro",
  24481. height: math.unit(21, "meters"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(23, "meters"),
  24491. weight: math.unit(12.2, "tonnes"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/rakka/front.svg",
  24495. extra: 4670 / 4169,
  24496. bottom: 301 / 4968.7
  24497. }
  24498. },
  24499. },
  24500. [
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(23, "meters"),
  24504. default: true
  24505. },
  24506. ]
  24507. ))
  24508. characterMakers.push(() => makeCharacter(
  24509. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24510. {
  24511. front: {
  24512. height: math.unit(6, "feet"),
  24513. weight: math.unit(150, "lb"),
  24514. name: "Front",
  24515. image: {
  24516. source: "./media/characters/rhys-feline/front.svg",
  24517. extra: 2488 / 2308,
  24518. bottom: 35.67 / 2519.19
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Really Small",
  24525. height: math.unit(1, "nm")
  24526. },
  24527. {
  24528. name: "Micro",
  24529. height: math.unit(4, "inches")
  24530. },
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(4 + 10 / 12, "feet"),
  24534. default: true
  24535. },
  24536. {
  24537. name: "Macro",
  24538. height: math.unit(100, "feet")
  24539. },
  24540. {
  24541. name: "Megamacto",
  24542. height: math.unit(50, "miles")
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24548. {
  24549. side: {
  24550. height: math.unit(30, "feet"),
  24551. weight: math.unit(35000, "kg"),
  24552. name: "Side",
  24553. image: {
  24554. source: "./media/characters/alydar/side.svg",
  24555. extra: 234 / 222,
  24556. bottom: 6.5 / 241
  24557. }
  24558. },
  24559. front: {
  24560. height: math.unit(30, "feet"),
  24561. weight: math.unit(35000, "kg"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/alydar/front.svg",
  24565. extra: 223.37 / 210.2,
  24566. bottom: 22.3 / 246.76
  24567. }
  24568. },
  24569. top: {
  24570. height: math.unit(64.54, "feet"),
  24571. weight: math.unit(35000, "kg"),
  24572. name: "Top",
  24573. image: {
  24574. source: "./media/characters/alydar/top.svg"
  24575. }
  24576. },
  24577. anthro: {
  24578. height: math.unit(30, "feet"),
  24579. weight: math.unit(9000, "kg"),
  24580. name: "Anthro",
  24581. image: {
  24582. source: "./media/characters/alydar/anthro.svg",
  24583. extra: 432 / 421,
  24584. bottom: 7.18 / 440
  24585. }
  24586. },
  24587. maw: {
  24588. height: math.unit(11.693, "feet"),
  24589. name: "Maw",
  24590. image: {
  24591. source: "./media/characters/alydar/maw.svg"
  24592. }
  24593. },
  24594. head: {
  24595. height: math.unit(11.693, "feet"),
  24596. name: "Head",
  24597. image: {
  24598. source: "./media/characters/alydar/head.svg"
  24599. }
  24600. },
  24601. headAlt: {
  24602. height: math.unit(12.861, "feet"),
  24603. name: "Head (Alt)",
  24604. image: {
  24605. source: "./media/characters/alydar/head-alt.svg"
  24606. }
  24607. },
  24608. wing: {
  24609. height: math.unit(20.712, "feet"),
  24610. name: "Wing",
  24611. image: {
  24612. source: "./media/characters/alydar/wing.svg"
  24613. }
  24614. },
  24615. wingFeather: {
  24616. height: math.unit(9.662, "feet"),
  24617. name: "Wing Feather",
  24618. image: {
  24619. source: "./media/characters/alydar/wing-feather.svg"
  24620. }
  24621. },
  24622. countourFeather: {
  24623. height: math.unit(4.154, "feet"),
  24624. name: "Contour Feather",
  24625. image: {
  24626. source: "./media/characters/alydar/contour-feather.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Diplomatic",
  24633. height: math.unit(13, "feet"),
  24634. default: true
  24635. },
  24636. {
  24637. name: "Small",
  24638. height: math.unit(30, "feet")
  24639. },
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(95, "feet"),
  24643. default: true
  24644. },
  24645. {
  24646. name: "Large",
  24647. height: math.unit(285, "feet")
  24648. },
  24649. {
  24650. name: "Incomprehensible",
  24651. height: math.unit(450, "megameters")
  24652. },
  24653. ]
  24654. ))
  24655. characterMakers.push(() => makeCharacter(
  24656. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24657. {
  24658. side: {
  24659. height: math.unit(11, "feet"),
  24660. weight: math.unit(1750, "kg"),
  24661. name: "Side",
  24662. image: {
  24663. source: "./media/characters/selicia/side.svg",
  24664. extra: 440 / 396,
  24665. bottom: 24.8 / 465.979
  24666. }
  24667. },
  24668. maw: {
  24669. height: math.unit(4.665, "feet"),
  24670. name: "Maw",
  24671. image: {
  24672. source: "./media/characters/selicia/maw.svg"
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(11, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24686. {
  24687. side: {
  24688. height: math.unit(2 + 6 / 12, "feet"),
  24689. weight: math.unit(30, "lb"),
  24690. name: "Side",
  24691. image: {
  24692. source: "./media/characters/layla/side.svg",
  24693. extra: 244 / 188,
  24694. bottom: 18.2 / 262.1
  24695. }
  24696. },
  24697. back: {
  24698. height: math.unit(2 + 6 / 12, "feet"),
  24699. weight: math.unit(30, "lb"),
  24700. name: "Back",
  24701. image: {
  24702. source: "./media/characters/layla/back.svg",
  24703. extra: 308 / 241.5,
  24704. bottom: 8.9 / 316.8
  24705. }
  24706. },
  24707. cumming: {
  24708. height: math.unit(2 + 6 / 12, "feet"),
  24709. weight: math.unit(30, "lb"),
  24710. name: "Cumming",
  24711. image: {
  24712. source: "./media/characters/layla/cumming.svg",
  24713. extra: 342 / 279,
  24714. bottom: 595 / 938
  24715. }
  24716. },
  24717. dickFlaccid: {
  24718. height: math.unit(2.595, "feet"),
  24719. name: "Flaccid Genitals",
  24720. image: {
  24721. source: "./media/characters/layla/dick-flaccid.svg"
  24722. }
  24723. },
  24724. dickErect: {
  24725. height: math.unit(2.359, "feet"),
  24726. name: "Erect Genitals",
  24727. image: {
  24728. source: "./media/characters/layla/dick-erect.svg"
  24729. }
  24730. },
  24731. dragon: {
  24732. height: math.unit(40, "feet"),
  24733. name: "Dragon",
  24734. image: {
  24735. source: "./media/characters/layla/dragon.svg",
  24736. extra: 610/535,
  24737. bottom: 367/977
  24738. }
  24739. },
  24740. taur: {
  24741. height: math.unit(30, "feet"),
  24742. name: "Taur",
  24743. image: {
  24744. source: "./media/characters/layla/taur.svg",
  24745. extra: 1268/1199,
  24746. bottom: 112/1380
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Micro",
  24753. height: math.unit(1, "inch")
  24754. },
  24755. {
  24756. name: "Small",
  24757. height: math.unit(1, "foot")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(2 + 6 / 12, "feet"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(200, "feet")
  24767. },
  24768. {
  24769. name: "Megamacro",
  24770. height: math.unit(1000, "miles")
  24771. },
  24772. {
  24773. name: "Planetary",
  24774. height: math.unit(8000, "miles")
  24775. },
  24776. {
  24777. name: "True Layla",
  24778. height: math.unit(200000 * 7, "multiverses")
  24779. },
  24780. ]
  24781. ))
  24782. characterMakers.push(() => makeCharacter(
  24783. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24784. {
  24785. back: {
  24786. height: math.unit(10.5, "feet"),
  24787. weight: math.unit(800, "lb"),
  24788. name: "Back",
  24789. image: {
  24790. source: "./media/characters/knox/back.svg",
  24791. extra: 1486 / 1089,
  24792. bottom: 107 / 1601.4
  24793. }
  24794. },
  24795. side: {
  24796. height: math.unit(10.5, "feet"),
  24797. weight: math.unit(800, "lb"),
  24798. name: "Side",
  24799. image: {
  24800. source: "./media/characters/knox/side.svg",
  24801. extra: 244 / 218,
  24802. bottom: 14 / 260
  24803. }
  24804. },
  24805. },
  24806. [
  24807. {
  24808. name: "Compact",
  24809. height: math.unit(10.5, "feet"),
  24810. default: true
  24811. },
  24812. {
  24813. name: "Dynamax",
  24814. height: math.unit(210, "feet")
  24815. },
  24816. {
  24817. name: "Full Macro",
  24818. height: math.unit(850, "feet")
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(28, "feet"),
  24827. weight: math.unit(10500, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/kayda/front.svg",
  24831. extra: 1536 / 1428,
  24832. bottom: 68.7 / 1603
  24833. }
  24834. },
  24835. back: {
  24836. height: math.unit(28, "feet"),
  24837. weight: math.unit(10500, "lb"),
  24838. name: "Back",
  24839. image: {
  24840. source: "./media/characters/kayda/back.svg",
  24841. extra: 1557 / 1464,
  24842. bottom: 39.5 / 1597.49
  24843. }
  24844. },
  24845. dick: {
  24846. height: math.unit(3.858, "feet"),
  24847. name: "Dick",
  24848. image: {
  24849. source: "./media/characters/kayda/dick.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(28, "feet"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24863. {
  24864. front: {
  24865. height: math.unit(10 + 11 / 12, "feet"),
  24866. weight: math.unit(1400, "lb"),
  24867. name: "Front",
  24868. image: {
  24869. source: "./media/characters/brian/front.svg",
  24870. extra: 737 / 692,
  24871. bottom: 55.4 / 785
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(10 + 11 / 12, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(5 + 8 / 12, "feet"),
  24888. weight: math.unit(140, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/khemri/front.svg",
  24892. extra: 4780 / 4059,
  24893. bottom: 80.1 / 4859.25
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Micro",
  24900. height: math.unit(6, "inches")
  24901. },
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(5 + 8 / 12, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24911. {
  24912. front: {
  24913. height: math.unit(13, "feet"),
  24914. weight: math.unit(1700, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/felix-braveheart/front.svg",
  24918. extra: 1222 / 1157,
  24919. bottom: 53.2 / 1280
  24920. }
  24921. },
  24922. back: {
  24923. height: math.unit(13, "feet"),
  24924. weight: math.unit(1700, "lb"),
  24925. name: "Back",
  24926. image: {
  24927. source: "./media/characters/felix-braveheart/back.svg",
  24928. extra: 1277 / 1203,
  24929. bottom: 50.2 / 1327
  24930. }
  24931. },
  24932. feral: {
  24933. height: math.unit(6, "feet"),
  24934. weight: math.unit(400, "lb"),
  24935. name: "Feral",
  24936. image: {
  24937. source: "./media/characters/felix-braveheart/feral.svg",
  24938. extra: 682 / 625,
  24939. bottom: 6.9 / 688
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(13, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24953. {
  24954. side: {
  24955. height: math.unit(5 + 11 / 12, "feet"),
  24956. weight: math.unit(1400, "lb"),
  24957. name: "Side",
  24958. image: {
  24959. source: "./media/characters/shadow-blade/side.svg",
  24960. extra: 1726 / 1267,
  24961. bottom: 58.4 / 1785
  24962. }
  24963. },
  24964. },
  24965. [
  24966. {
  24967. name: "Normal",
  24968. height: math.unit(5 + 11 / 12, "feet"),
  24969. default: true
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(1 + 6 / 12, "feet"),
  24978. weight: math.unit(25, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/karla-halldor/front.svg",
  24982. extra: 1459 / 1383,
  24983. bottom: 12 / 1472
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(1 + 6 / 12, "feet"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24997. {
  24998. front: {
  24999. height: math.unit(6 + 2 / 12, "feet"),
  25000. weight: math.unit(160, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/ariam/front.svg",
  25004. extra: 1073/976,
  25005. bottom: 52/1125
  25006. }
  25007. },
  25008. back: {
  25009. height: math.unit(6 + 2/12, "feet"),
  25010. weight: math.unit(160, "lb"),
  25011. name: "Back",
  25012. image: {
  25013. source: "./media/characters/ariam/back.svg",
  25014. extra: 1103/1023,
  25015. bottom: 9/1112
  25016. }
  25017. },
  25018. dressed: {
  25019. height: math.unit(6 + 2/12, "feet"),
  25020. weight: math.unit(160, "lb"),
  25021. name: "Dressed",
  25022. image: {
  25023. source: "./media/characters/ariam/dressed.svg",
  25024. extra: 1099/1009,
  25025. bottom: 25/1124
  25026. }
  25027. },
  25028. squatting: {
  25029. height: math.unit(4.1, "feet"),
  25030. weight: math.unit(160, "lb"),
  25031. name: "Squatting",
  25032. image: {
  25033. source: "./media/characters/ariam/squatting.svg",
  25034. extra: 2617 / 2112,
  25035. bottom: 61.2 / 2681,
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "Normal",
  25042. height: math.unit(6 + 2 / 12, "feet"),
  25043. default: true
  25044. },
  25045. {
  25046. name: "Normal+",
  25047. height: math.unit(4, "meters")
  25048. },
  25049. {
  25050. name: "Macro",
  25051. height: math.unit(50, "meters")
  25052. },
  25053. {
  25054. name: "Macro+",
  25055. height: math.unit(100, "meters")
  25056. },
  25057. {
  25058. name: "Megamacro",
  25059. height: math.unit(20, "km")
  25060. },
  25061. {
  25062. name: "Caretaker",
  25063. height: math.unit(444, "megameters")
  25064. },
  25065. ]
  25066. ))
  25067. characterMakers.push(() => makeCharacter(
  25068. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25069. {
  25070. front: {
  25071. height: math.unit(1.67, "meters"),
  25072. weight: math.unit(140, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25076. extra: 438 / 410,
  25077. bottom: 0.75 / 439
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Shrunken",
  25084. height: math.unit(7.6, "cm")
  25085. },
  25086. {
  25087. name: "Human Scale",
  25088. height: math.unit(1.67, "meters")
  25089. },
  25090. {
  25091. name: "Wolxi Scale",
  25092. height: math.unit(36.7, "meters"),
  25093. default: true
  25094. },
  25095. ]
  25096. ))
  25097. characterMakers.push(() => makeCharacter(
  25098. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25099. {
  25100. front: {
  25101. height: math.unit(1.73, "meters"),
  25102. weight: math.unit(240, "lb"),
  25103. name: "Front",
  25104. image: {
  25105. source: "./media/characters/izue-two-mothers/front.svg",
  25106. extra: 469 / 437,
  25107. bottom: 1.24 / 470.6
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Shrunken",
  25114. height: math.unit(7.86, "cm")
  25115. },
  25116. {
  25117. name: "Human Scale",
  25118. height: math.unit(1.73, "meters")
  25119. },
  25120. {
  25121. name: "Wolxi Scale",
  25122. height: math.unit(38, "meters"),
  25123. default: true
  25124. },
  25125. ]
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(1.55, "meters"),
  25132. weight: math.unit(120, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/teeku-love-shack/front.svg",
  25136. extra: 387 / 362,
  25137. bottom: 1.51 / 388
  25138. }
  25139. },
  25140. },
  25141. [
  25142. {
  25143. name: "Shrunken",
  25144. height: math.unit(7, "cm")
  25145. },
  25146. {
  25147. name: "Human Scale",
  25148. height: math.unit(1.55, "meters")
  25149. },
  25150. {
  25151. name: "Wolxi Scale",
  25152. height: math.unit(34.1, "meters"),
  25153. default: true
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(1.83, "meters"),
  25162. weight: math.unit(135, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/dejma-the-red/front.svg",
  25166. extra: 480 / 458,
  25167. bottom: 1.8 / 482
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Shrunken",
  25174. height: math.unit(8.3, "cm")
  25175. },
  25176. {
  25177. name: "Human Scale",
  25178. height: math.unit(1.83, "meters")
  25179. },
  25180. {
  25181. name: "Wolxi Scale",
  25182. height: math.unit(40, "meters"),
  25183. default: true
  25184. },
  25185. ]
  25186. ))
  25187. characterMakers.push(() => makeCharacter(
  25188. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25189. {
  25190. front: {
  25191. height: math.unit(1.78, "meters"),
  25192. weight: math.unit(65, "kg"),
  25193. name: "Front",
  25194. image: {
  25195. source: "./media/characters/aki/front.svg",
  25196. extra: 452 / 415
  25197. }
  25198. },
  25199. frontNsfw: {
  25200. height: math.unit(1.78, "meters"),
  25201. weight: math.unit(65, "kg"),
  25202. name: "Front (NSFW)",
  25203. image: {
  25204. source: "./media/characters/aki/front-nsfw.svg",
  25205. extra: 452 / 415
  25206. }
  25207. },
  25208. back: {
  25209. height: math.unit(1.78, "meters"),
  25210. weight: math.unit(65, "kg"),
  25211. name: "Back",
  25212. image: {
  25213. source: "./media/characters/aki/back.svg",
  25214. extra: 452 / 415
  25215. }
  25216. },
  25217. rump: {
  25218. height: math.unit(2.05, "feet"),
  25219. name: "Rump",
  25220. image: {
  25221. source: "./media/characters/aki/rump.svg"
  25222. }
  25223. },
  25224. dick: {
  25225. height: math.unit(0.95, "feet"),
  25226. name: "Dick",
  25227. image: {
  25228. source: "./media/characters/aki/dick.svg"
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Micro",
  25235. height: math.unit(15, "cm")
  25236. },
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(178, "cm"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(214, "m")
  25245. },
  25246. {
  25247. name: "Macro+",
  25248. height: math.unit(534, "m")
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(5 + 5 / 12, "feet"),
  25257. weight: math.unit(120, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/ari/front.svg",
  25261. extra: 1550/1471,
  25262. bottom: 39/1589
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(5 + 5 / 12, "feet")
  25270. },
  25271. {
  25272. name: "Macro",
  25273. height: math.unit(100, "feet"),
  25274. default: true
  25275. },
  25276. {
  25277. name: "Megamacro",
  25278. height: math.unit(100, "miles")
  25279. },
  25280. {
  25281. name: "Gigamacro",
  25282. height: math.unit(80000, "miles")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25288. {
  25289. side: {
  25290. height: math.unit(9, "feet"),
  25291. weight: math.unit(400, "kg"),
  25292. name: "Side",
  25293. image: {
  25294. source: "./media/characters/bolt/side.svg",
  25295. extra: 1126 / 896,
  25296. bottom: 60 / 1187.3,
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Micro",
  25303. height: math.unit(5, "inches")
  25304. },
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(9, "feet"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Macro",
  25312. height: math.unit(700, "feet")
  25313. },
  25314. {
  25315. name: "Max Size",
  25316. height: math.unit(1.52e22, "yottameters")
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(4.3, "meters"),
  25325. weight: math.unit(3, "tons"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/draekon-sylviar/front.svg",
  25329. extra: 2072/1512,
  25330. bottom: 74/2146
  25331. }
  25332. },
  25333. back: {
  25334. height: math.unit(4.3, "meters"),
  25335. weight: math.unit(3, "tons"),
  25336. name: "Back",
  25337. image: {
  25338. source: "./media/characters/draekon-sylviar/back.svg",
  25339. extra: 1639/1483,
  25340. bottom: 41/1680
  25341. }
  25342. },
  25343. feral: {
  25344. height: math.unit(1.15, "meters"),
  25345. weight: math.unit(3, "tons"),
  25346. name: "Feral",
  25347. image: {
  25348. source: "./media/characters/draekon-sylviar/feral.svg",
  25349. extra: 1033/395,
  25350. bottom: 130/1163
  25351. }
  25352. },
  25353. maw: {
  25354. height: math.unit(1.3, "meters"),
  25355. name: "Maw",
  25356. image: {
  25357. source: "./media/characters/draekon-sylviar/maw.svg"
  25358. }
  25359. },
  25360. mawSeparated: {
  25361. height: math.unit(1.53, "meters"),
  25362. name: "Separated Maw",
  25363. image: {
  25364. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25365. }
  25366. },
  25367. tail: {
  25368. height: math.unit(1.15, "meters"),
  25369. name: "Tail",
  25370. image: {
  25371. source: "./media/characters/draekon-sylviar/tail.svg"
  25372. }
  25373. },
  25374. tailDick: {
  25375. height: math.unit(1.15, "meters"),
  25376. name: "Tail (Dick)",
  25377. image: {
  25378. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25379. }
  25380. },
  25381. tailDickSeparated: {
  25382. height: math.unit(1.19, "meters"),
  25383. name: "Tail (Separated Dick)",
  25384. image: {
  25385. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25386. }
  25387. },
  25388. slit: {
  25389. height: math.unit(1, "meters"),
  25390. name: "Slit",
  25391. image: {
  25392. source: "./media/characters/draekon-sylviar/slit.svg"
  25393. }
  25394. },
  25395. dick: {
  25396. height: math.unit(1.15, "meters"),
  25397. name: "Dick",
  25398. image: {
  25399. source: "./media/characters/draekon-sylviar/dick.svg"
  25400. }
  25401. },
  25402. dickSeparated: {
  25403. height: math.unit(1.1, "meters"),
  25404. name: "Separated Dick",
  25405. image: {
  25406. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25407. }
  25408. },
  25409. sheath: {
  25410. height: math.unit(1.15, "meters"),
  25411. name: "Sheath",
  25412. image: {
  25413. source: "./media/characters/draekon-sylviar/sheath.svg"
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Small",
  25420. height: math.unit(4.53 / 2, "meters"),
  25421. default: true
  25422. },
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(4.53, "meters"),
  25426. default: true
  25427. },
  25428. {
  25429. name: "Large",
  25430. height: math.unit(4.53 * 2, "meters"),
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(6 + 2 / 12, "feet"),
  25439. weight: math.unit(180, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/brawler/front.svg",
  25443. extra: 3301 / 3027,
  25444. bottom: 138 / 3439
  25445. }
  25446. },
  25447. },
  25448. [
  25449. {
  25450. name: "Normal",
  25451. height: math.unit(6 + 2 / 12, "feet"),
  25452. default: true
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25458. {
  25459. front: {
  25460. height: math.unit(11, "feet"),
  25461. weight: math.unit(1000, "lb"),
  25462. name: "Front",
  25463. image: {
  25464. source: "./media/characters/alex/front.svg",
  25465. bottom: 44.5 / 620
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Micro",
  25472. height: math.unit(5, "inches")
  25473. },
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(11, "feet"),
  25477. default: true
  25478. },
  25479. {
  25480. name: "Macro",
  25481. height: math.unit(9.5e9, "feet")
  25482. },
  25483. {
  25484. name: "Max Size",
  25485. height: math.unit(1.4e283, "yottameters")
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25491. {
  25492. female: {
  25493. height: math.unit(29.9, "m"),
  25494. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25495. name: "Female",
  25496. image: {
  25497. source: "./media/characters/zenari/female.svg",
  25498. extra: 3281.6 / 3217,
  25499. bottom: 72.2 / 3353
  25500. }
  25501. },
  25502. male: {
  25503. height: math.unit(27.7, "m"),
  25504. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25505. name: "Male",
  25506. image: {
  25507. source: "./media/characters/zenari/male.svg",
  25508. extra: 3008 / 2991,
  25509. bottom: 54.6 / 3069
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(29.7, "meters"),
  25517. default: true
  25518. },
  25519. ]
  25520. ))
  25521. characterMakers.push(() => makeCharacter(
  25522. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25523. {
  25524. female: {
  25525. height: math.unit(23.8, "m"),
  25526. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25527. name: "Female",
  25528. image: {
  25529. source: "./media/characters/mactarian/female.svg",
  25530. extra: 2662 / 2569,
  25531. bottom: 73 / 2736
  25532. }
  25533. },
  25534. male: {
  25535. height: math.unit(23.8, "m"),
  25536. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25537. name: "Male",
  25538. image: {
  25539. source: "./media/characters/mactarian/male.svg",
  25540. extra: 2673 / 2600,
  25541. bottom: 76 / 2750
  25542. }
  25543. },
  25544. },
  25545. [
  25546. {
  25547. name: "Macro",
  25548. height: math.unit(23.8, "meters"),
  25549. default: true
  25550. },
  25551. ]
  25552. ))
  25553. characterMakers.push(() => makeCharacter(
  25554. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25555. {
  25556. female: {
  25557. height: math.unit(19.3, "m"),
  25558. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25559. name: "Female",
  25560. image: {
  25561. source: "./media/characters/umok/female.svg",
  25562. extra: 2186 / 2078,
  25563. bottom: 87 / 2277
  25564. }
  25565. },
  25566. male: {
  25567. height: math.unit(19.5, "m"),
  25568. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25569. name: "Male",
  25570. image: {
  25571. source: "./media/characters/umok/male.svg",
  25572. extra: 2233 / 2140,
  25573. bottom: 24.4 / 2258
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(19.3, "meters"),
  25581. default: true
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25587. {
  25588. female: {
  25589. height: math.unit(26.15, "m"),
  25590. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25591. name: "Female",
  25592. image: {
  25593. source: "./media/characters/joraxian/female.svg",
  25594. extra: 2912 / 2824,
  25595. bottom: 36 / 2956
  25596. }
  25597. },
  25598. male: {
  25599. height: math.unit(25.4, "m"),
  25600. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25601. name: "Male",
  25602. image: {
  25603. source: "./media/characters/joraxian/male.svg",
  25604. extra: 2877 / 2721,
  25605. bottom: 82 / 2967
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(26.15, "meters"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25619. {
  25620. female: {
  25621. height: math.unit(21.6, "m"),
  25622. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25623. name: "Female",
  25624. image: {
  25625. source: "./media/characters/sthara/female.svg",
  25626. extra: 2516 / 2347,
  25627. bottom: 21.5 / 2537
  25628. }
  25629. },
  25630. male: {
  25631. height: math.unit(24, "m"),
  25632. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25633. name: "Male",
  25634. image: {
  25635. source: "./media/characters/sthara/male.svg",
  25636. extra: 2732 / 2607,
  25637. bottom: 23 / 2732
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(21.6, "meters"),
  25645. default: true
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(6 + 4 / 12, "feet"),
  25654. weight: math.unit(175, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/luka-bryzant/front.svg",
  25658. extra: 311 / 289,
  25659. bottom: 4 / 315
  25660. }
  25661. },
  25662. back: {
  25663. height: math.unit(6 + 4 / 12, "feet"),
  25664. weight: math.unit(175, "lb"),
  25665. name: "Back",
  25666. image: {
  25667. source: "./media/characters/luka-bryzant/back.svg",
  25668. extra: 311 / 289,
  25669. bottom: 3.8 / 313.7
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Micro",
  25676. height: math.unit(10, "inches")
  25677. },
  25678. {
  25679. name: "Normal",
  25680. height: math.unit(6 + 4 / 12, "feet"),
  25681. default: true
  25682. },
  25683. {
  25684. name: "Large",
  25685. height: math.unit(12, "feet")
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(5 + 7 / 12, "feet"),
  25694. weight: math.unit(185, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/aman-aquila/front.svg",
  25698. extra: 1013 / 976,
  25699. bottom: 45.6 / 1057
  25700. }
  25701. },
  25702. side: {
  25703. height: math.unit(5 + 7 / 12, "feet"),
  25704. weight: math.unit(185, "lb"),
  25705. name: "Side",
  25706. image: {
  25707. source: "./media/characters/aman-aquila/side.svg",
  25708. extra: 1054 / 1011,
  25709. bottom: 15 / 1070
  25710. }
  25711. },
  25712. back: {
  25713. height: math.unit(5 + 7 / 12, "feet"),
  25714. weight: math.unit(185, "lb"),
  25715. name: "Back",
  25716. image: {
  25717. source: "./media/characters/aman-aquila/back.svg",
  25718. extra: 1026 / 970,
  25719. bottom: 12 / 1039
  25720. }
  25721. },
  25722. head: {
  25723. height: math.unit(1.211, "feet"),
  25724. name: "Head",
  25725. image: {
  25726. source: "./media/characters/aman-aquila/head.svg",
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Minimicro",
  25733. height: math.unit(0.057, "inches")
  25734. },
  25735. {
  25736. name: "Micro",
  25737. height: math.unit(7, "inches")
  25738. },
  25739. {
  25740. name: "Mini",
  25741. height: math.unit(3 + 7 / 12, "feet")
  25742. },
  25743. {
  25744. name: "Normal",
  25745. height: math.unit(5 + 7 / 12, "feet"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(157 + 7 / 12, "feet")
  25751. },
  25752. {
  25753. name: "Megamacro",
  25754. height: math.unit(1557 + 7 / 12, "feet")
  25755. },
  25756. {
  25757. name: "Gigamacro",
  25758. height: math.unit(15557 + 7 / 12, "feet")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25764. {
  25765. front: {
  25766. height: math.unit(3 + 2 / 12, "inches"),
  25767. weight: math.unit(0.3, "ounces"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/hiphae/front.svg",
  25771. extra: 1931 / 1683,
  25772. bottom: 24 / 1955
  25773. }
  25774. },
  25775. },
  25776. [
  25777. {
  25778. name: "Normal",
  25779. height: math.unit(3 + 1 / 2, "inches"),
  25780. default: true
  25781. },
  25782. ]
  25783. ))
  25784. characterMakers.push(() => makeCharacter(
  25785. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25786. {
  25787. front: {
  25788. height: math.unit(5 + 10 / 12, "feet"),
  25789. weight: math.unit(165, "lb"),
  25790. name: "Front",
  25791. image: {
  25792. source: "./media/characters/nicky/front.svg",
  25793. extra: 3144 / 2886,
  25794. bottom: 45.6 / 3192
  25795. }
  25796. },
  25797. back: {
  25798. height: math.unit(5 + 10 / 12, "feet"),
  25799. weight: math.unit(165, "lb"),
  25800. name: "Back",
  25801. image: {
  25802. source: "./media/characters/nicky/back.svg",
  25803. extra: 3055 / 2804,
  25804. bottom: 28.4 / 3087
  25805. }
  25806. },
  25807. frontclothed: {
  25808. height: math.unit(5 + 10 / 12, "feet"),
  25809. weight: math.unit(165, "lb"),
  25810. name: "Front-clothed",
  25811. image: {
  25812. source: "./media/characters/nicky/front-clothed.svg",
  25813. extra: 3184.9 / 2926.9,
  25814. bottom: 86.5 / 3239.9
  25815. }
  25816. },
  25817. foot: {
  25818. height: math.unit(1.16, "feet"),
  25819. name: "Foot",
  25820. image: {
  25821. source: "./media/characters/nicky/foot.svg"
  25822. }
  25823. },
  25824. feet: {
  25825. height: math.unit(1.34, "feet"),
  25826. name: "Feet",
  25827. image: {
  25828. source: "./media/characters/nicky/feet.svg"
  25829. }
  25830. },
  25831. maw: {
  25832. height: math.unit(0.9, "feet"),
  25833. name: "Maw",
  25834. image: {
  25835. source: "./media/characters/nicky/maw.svg"
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Normal",
  25842. height: math.unit(5 + 10 / 12, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro",
  25847. height: math.unit(60, "feet")
  25848. },
  25849. {
  25850. name: "Megamacro",
  25851. height: math.unit(1, "mile")
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25857. {
  25858. side: {
  25859. height: math.unit(10, "feet"),
  25860. weight: math.unit(600, "lb"),
  25861. name: "Side",
  25862. image: {
  25863. source: "./media/characters/blair/side.svg",
  25864. bottom: 16.6 / 475,
  25865. extra: 458 / 431
  25866. }
  25867. },
  25868. },
  25869. [
  25870. {
  25871. name: "Micro",
  25872. height: math.unit(8, "inches")
  25873. },
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(10, "feet"),
  25877. default: true
  25878. },
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(180, "feet")
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25887. {
  25888. front: {
  25889. height: math.unit(5 + 4 / 12, "feet"),
  25890. weight: math.unit(125, "lb"),
  25891. name: "Front",
  25892. image: {
  25893. source: "./media/characters/fisher/front.svg",
  25894. extra: 444 / 390,
  25895. bottom: 2 / 444.8
  25896. }
  25897. },
  25898. },
  25899. [
  25900. {
  25901. name: "Micro",
  25902. height: math.unit(4, "inches")
  25903. },
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(5 + 4 / 12, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Macro",
  25911. height: math.unit(100, "feet")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(6.71, "feet"),
  25920. weight: math.unit(200, "lb"),
  25921. capacity: math.unit(1000000, "people"),
  25922. name: "Front",
  25923. image: {
  25924. source: "./media/characters/gliss/front.svg",
  25925. extra: 2347 / 2231,
  25926. bottom: 113 / 2462
  25927. }
  25928. },
  25929. hammerspaceSize: {
  25930. height: math.unit(6.71 * 717, "feet"),
  25931. weight: math.unit(200, "lb"),
  25932. capacity: math.unit(1000000, "people"),
  25933. name: "Hammerspace Size",
  25934. image: {
  25935. source: "./media/characters/gliss/front.svg",
  25936. extra: 2347 / 2231,
  25937. bottom: 113 / 2462
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(6.71, "feet"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25951. {
  25952. side: {
  25953. height: math.unit(1.44, "m"),
  25954. weight: math.unit(80, "kg"),
  25955. name: "Side",
  25956. image: {
  25957. source: "./media/characters/dune-anderson/side.svg",
  25958. bottom: 49 / 1426
  25959. }
  25960. },
  25961. },
  25962. [
  25963. {
  25964. name: "Wolf-sized",
  25965. height: math.unit(1.44, "meters")
  25966. },
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(5.05, "meters"),
  25970. default: true
  25971. },
  25972. {
  25973. name: "Big",
  25974. height: math.unit(14.4, "meters")
  25975. },
  25976. {
  25977. name: "Huge",
  25978. height: math.unit(144, "meters")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(7, "feet"),
  25987. weight: math.unit(425, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/hind/front.svg",
  25991. extra: 2091 / 1860,
  25992. bottom: 129 / 2220
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(7, "feet"),
  25997. weight: math.unit(425, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/hind/back.svg",
  26001. extra: 2091 / 1860,
  26002. bottom: 24.6 / 2309
  26003. }
  26004. },
  26005. tail: {
  26006. height: math.unit(2.8, "feet"),
  26007. name: "Tail",
  26008. image: {
  26009. source: "./media/characters/hind/tail.svg"
  26010. }
  26011. },
  26012. head: {
  26013. height: math.unit(2.55, "feet"),
  26014. name: "Head",
  26015. image: {
  26016. source: "./media/characters/hind/head.svg"
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "XS",
  26023. height: math.unit(0.7, "feet")
  26024. },
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(7, "feet"),
  26028. default: true
  26029. },
  26030. {
  26031. name: "XL",
  26032. height: math.unit(70, "feet")
  26033. },
  26034. ]
  26035. ))
  26036. characterMakers.push(() => makeCharacter(
  26037. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26038. {
  26039. front: {
  26040. height: math.unit(2.1, "meters"),
  26041. weight: math.unit(150, "lb"),
  26042. name: "Front",
  26043. image: {
  26044. source: "./media/characters/tharquench-sizestealer/front.svg",
  26045. extra: 1605/1470,
  26046. bottom: 36/1641
  26047. }
  26048. },
  26049. frontAlt: {
  26050. height: math.unit(2.1, "meters"),
  26051. weight: math.unit(150, "lb"),
  26052. name: "Front (Alt)",
  26053. image: {
  26054. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26055. extra: 2318 / 2063,
  26056. bottom: 93.4 / 2410
  26057. }
  26058. },
  26059. },
  26060. [
  26061. {
  26062. name: "Nano",
  26063. height: math.unit(1, "mm")
  26064. },
  26065. {
  26066. name: "Micro",
  26067. height: math.unit(1, "cm")
  26068. },
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(2.1, "meters"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(7 + 5 / 12, "feet"),
  26081. weight: math.unit(357, "lb"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/solex-draconov/front.svg",
  26085. extra: 1993 / 1865,
  26086. bottom: 117 / 2111
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Natural Height",
  26093. height: math.unit(7 + 5 / 12, "feet"),
  26094. default: true
  26095. },
  26096. {
  26097. name: "Macro",
  26098. height: math.unit(350, "feet")
  26099. },
  26100. {
  26101. name: "Macro+",
  26102. height: math.unit(1000, "feet")
  26103. },
  26104. {
  26105. name: "Megamacro",
  26106. height: math.unit(20, "km")
  26107. },
  26108. {
  26109. name: "Megamacro+",
  26110. height: math.unit(1000, "km")
  26111. },
  26112. {
  26113. name: "Gigamacro",
  26114. height: math.unit(2.5, "Gm")
  26115. },
  26116. {
  26117. name: "Teramacro",
  26118. height: math.unit(15, "Tm")
  26119. },
  26120. {
  26121. name: "Galactic",
  26122. height: math.unit(30, "Zm")
  26123. },
  26124. {
  26125. name: "Universal",
  26126. height: math.unit(21000, "Ym")
  26127. },
  26128. {
  26129. name: "Omniversal",
  26130. height: math.unit(9.861e50, "Ym")
  26131. },
  26132. {
  26133. name: "Existential",
  26134. height: math.unit(1e300, "meters")
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26140. {
  26141. side: {
  26142. height: math.unit(25, "feet"),
  26143. weight: math.unit(90000, "lb"),
  26144. name: "Side",
  26145. image: {
  26146. source: "./media/characters/mandarax/side.svg",
  26147. extra: 614 / 332,
  26148. bottom: 55 / 630
  26149. }
  26150. },
  26151. lounging: {
  26152. height: math.unit(15.4, "feet"),
  26153. weight: math.unit(90000, "lb"),
  26154. name: "Lounging",
  26155. image: {
  26156. source: "./media/characters/mandarax/lounging.svg",
  26157. extra: 817/609,
  26158. bottom: 685/1502
  26159. }
  26160. },
  26161. head: {
  26162. height: math.unit(11.4, "feet"),
  26163. name: "Head",
  26164. image: {
  26165. source: "./media/characters/mandarax/head.svg"
  26166. }
  26167. },
  26168. belly: {
  26169. height: math.unit(33, "feet"),
  26170. name: "Belly",
  26171. capacity: math.unit(500, "people"),
  26172. image: {
  26173. source: "./media/characters/mandarax/belly.svg"
  26174. }
  26175. },
  26176. dick: {
  26177. height: math.unit(8.46, "feet"),
  26178. name: "Dick",
  26179. image: {
  26180. source: "./media/characters/mandarax/dick.svg"
  26181. }
  26182. },
  26183. top: {
  26184. height: math.unit(28, "meters"),
  26185. name: "Top",
  26186. image: {
  26187. source: "./media/characters/mandarax/top.svg"
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(25, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(5, "feet"),
  26204. weight: math.unit(90, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/pixil/front.svg",
  26208. extra: 2000 / 1618,
  26209. bottom: 12.3 / 2011
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(5, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Megamacro",
  26221. height: math.unit(10, "miles"),
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(7 + 2 / 12, "feet"),
  26230. weight: math.unit(200, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/angel/front.svg",
  26234. extra: 1830 / 1737,
  26235. bottom: 22.6 / 1854,
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(7 + 2 / 12, "feet"),
  26243. default: true
  26244. },
  26245. {
  26246. name: "Macro",
  26247. height: math.unit(1000, "feet")
  26248. },
  26249. {
  26250. name: "Megamacro",
  26251. height: math.unit(2, "miles")
  26252. },
  26253. {
  26254. name: "Gigamacro",
  26255. height: math.unit(20, "earths")
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(5, "feet"),
  26264. weight: math.unit(180, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/mekana/front.svg",
  26268. extra: 1671 / 1605,
  26269. bottom: 3.5 / 1691
  26270. }
  26271. },
  26272. side: {
  26273. height: math.unit(5, "feet"),
  26274. weight: math.unit(180, "lb"),
  26275. name: "Side",
  26276. image: {
  26277. source: "./media/characters/mekana/side.svg",
  26278. extra: 1671 / 1605,
  26279. bottom: 3.5 / 1691
  26280. }
  26281. },
  26282. back: {
  26283. height: math.unit(5, "feet"),
  26284. weight: math.unit(180, "lb"),
  26285. name: "Back",
  26286. image: {
  26287. source: "./media/characters/mekana/back.svg",
  26288. extra: 1671 / 1605,
  26289. bottom: 3.5 / 1691
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(5, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(4 + 6 / 12, "feet"),
  26306. weight: math.unit(80, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/pixie/front.svg",
  26310. extra: 1924 / 1825,
  26311. bottom: 22.4 / 1946
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(4 + 6 / 12, "feet"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Macro",
  26323. height: math.unit(40, "feet")
  26324. },
  26325. ]
  26326. ))
  26327. characterMakers.push(() => makeCharacter(
  26328. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26329. {
  26330. front: {
  26331. height: math.unit(2.1, "meters"),
  26332. weight: math.unit(200, "lb"),
  26333. name: "Front",
  26334. image: {
  26335. source: "./media/characters/the-lascivious/front.svg",
  26336. extra: 1 / 0.893,
  26337. bottom: 3.5 / 573.7
  26338. }
  26339. },
  26340. },
  26341. [
  26342. {
  26343. name: "Human Scale",
  26344. height: math.unit(2.1, "meters")
  26345. },
  26346. {
  26347. name: "Wolxi Scale",
  26348. height: math.unit(46.2, "m"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Boinker of Buildings",
  26353. height: math.unit(10, "km")
  26354. },
  26355. {
  26356. name: "Shagger of Skyscrapers",
  26357. height: math.unit(40, "km")
  26358. },
  26359. {
  26360. name: "Banger of Boroughs",
  26361. height: math.unit(4000, "km")
  26362. },
  26363. {
  26364. name: "Screwer of States",
  26365. height: math.unit(100000, "km")
  26366. },
  26367. {
  26368. name: "Pounder of Planets",
  26369. height: math.unit(2000000, "km")
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26375. {
  26376. front: {
  26377. height: math.unit(6, "feet"),
  26378. weight: math.unit(150, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/aj/front.svg",
  26382. extra: 2039 / 1562,
  26383. bottom: 40 / 2079
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(11 + 6 / 12, "feet"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Megamacro",
  26395. height: math.unit(60, "megameters")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26401. {
  26402. side: {
  26403. height: math.unit(31 + 8 / 12, "feet"),
  26404. weight: math.unit(75000, "kg"),
  26405. name: "Side",
  26406. image: {
  26407. source: "./media/characters/koros/side.svg",
  26408. extra: 1442 / 1297,
  26409. bottom: 122.7 / 1562
  26410. }
  26411. },
  26412. dicksKingsCrown: {
  26413. height: math.unit(6, "feet"),
  26414. name: "Dicks (King's Crown)",
  26415. image: {
  26416. source: "./media/characters/koros/dicks-kings-crown.svg"
  26417. }
  26418. },
  26419. dicksTailSet: {
  26420. height: math.unit(3, "feet"),
  26421. name: "Dicks (Tail Set)",
  26422. image: {
  26423. source: "./media/characters/koros/dicks-tail-set.svg"
  26424. }
  26425. },
  26426. dickCumming: {
  26427. height: math.unit(7.98, "feet"),
  26428. name: "Dick (Cumming)",
  26429. image: {
  26430. source: "./media/characters/koros/dick-cumming.svg"
  26431. }
  26432. },
  26433. dicksBack: {
  26434. height: math.unit(5.9, "feet"),
  26435. name: "Dicks (Back)",
  26436. image: {
  26437. source: "./media/characters/koros/dicks-back.svg"
  26438. }
  26439. },
  26440. dicksFront: {
  26441. height: math.unit(3.72, "feet"),
  26442. name: "Dicks (Front)",
  26443. image: {
  26444. source: "./media/characters/koros/dicks-front.svg"
  26445. }
  26446. },
  26447. dicksPeeking: {
  26448. height: math.unit(3.0, "feet"),
  26449. name: "Dicks (Peeking)",
  26450. image: {
  26451. source: "./media/characters/koros/dicks-peeking.svg"
  26452. }
  26453. },
  26454. eye: {
  26455. height: math.unit(1.7, "feet"),
  26456. name: "Eye",
  26457. image: {
  26458. source: "./media/characters/koros/eye.svg"
  26459. }
  26460. },
  26461. headFront: {
  26462. height: math.unit(11.69, "feet"),
  26463. name: "Head (Front)",
  26464. image: {
  26465. source: "./media/characters/koros/head-front.svg"
  26466. }
  26467. },
  26468. headSide: {
  26469. height: math.unit(14, "feet"),
  26470. name: "Head (Side)",
  26471. image: {
  26472. source: "./media/characters/koros/head-side.svg"
  26473. }
  26474. },
  26475. leg: {
  26476. height: math.unit(17, "feet"),
  26477. name: "Leg",
  26478. image: {
  26479. source: "./media/characters/koros/leg.svg"
  26480. }
  26481. },
  26482. mawSide: {
  26483. height: math.unit(12.8, "feet"),
  26484. name: "Maw (Side)",
  26485. image: {
  26486. source: "./media/characters/koros/maw-side.svg"
  26487. }
  26488. },
  26489. mawSpitting: {
  26490. height: math.unit(17, "feet"),
  26491. name: "Maw (Spitting)",
  26492. image: {
  26493. source: "./media/characters/koros/maw-spitting.svg"
  26494. }
  26495. },
  26496. slit: {
  26497. height: math.unit(2.8, "feet"),
  26498. name: "Slit",
  26499. image: {
  26500. source: "./media/characters/koros/slit.svg"
  26501. }
  26502. },
  26503. stomach: {
  26504. height: math.unit(6.8, "feet"),
  26505. capacity: math.unit(20, "people"),
  26506. name: "Stomach",
  26507. image: {
  26508. source: "./media/characters/koros/stomach.svg"
  26509. }
  26510. },
  26511. wingspanBottom: {
  26512. height: math.unit(114, "feet"),
  26513. name: "Wingspan (Bottom)",
  26514. image: {
  26515. source: "./media/characters/koros/wingspan-bottom.svg"
  26516. }
  26517. },
  26518. wingspanTop: {
  26519. height: math.unit(104, "feet"),
  26520. name: "Wingspan (Top)",
  26521. image: {
  26522. source: "./media/characters/koros/wingspan-top.svg"
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(31 + 8 / 12, "feet"),
  26530. default: true
  26531. },
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26536. {
  26537. front: {
  26538. height: math.unit(18 + 5 / 12, "feet"),
  26539. weight: math.unit(3750, "kg"),
  26540. name: "Front",
  26541. image: {
  26542. source: "./media/characters/vexx/front.svg",
  26543. extra: 426 / 396,
  26544. bottom: 31.5 / 458
  26545. }
  26546. },
  26547. maw: {
  26548. height: math.unit(6, "feet"),
  26549. name: "Maw",
  26550. image: {
  26551. source: "./media/characters/vexx/maw.svg"
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(18 + 5 / 12, "feet"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26565. {
  26566. front: {
  26567. height: math.unit(17 + 6 / 12, "feet"),
  26568. weight: math.unit(150, "lb"),
  26569. name: "Front",
  26570. image: {
  26571. source: "./media/characters/baadra/front.svg",
  26572. extra: 1694/1553,
  26573. bottom: 179/1873
  26574. }
  26575. },
  26576. frontAlt: {
  26577. height: math.unit(17 + 6 / 12, "feet"),
  26578. weight: math.unit(150, "lb"),
  26579. name: "Front (Alt)",
  26580. image: {
  26581. source: "./media/characters/baadra/front-alt.svg",
  26582. extra: 3137 / 2890,
  26583. bottom: 168.4 / 3305
  26584. }
  26585. },
  26586. back: {
  26587. height: math.unit(17 + 6 / 12, "feet"),
  26588. weight: math.unit(150, "lb"),
  26589. name: "Back",
  26590. image: {
  26591. source: "./media/characters/baadra/back.svg",
  26592. extra: 3142 / 2890,
  26593. bottom: 220 / 3371
  26594. }
  26595. },
  26596. head: {
  26597. height: math.unit(5.45, "feet"),
  26598. name: "Head",
  26599. image: {
  26600. source: "./media/characters/baadra/head.svg"
  26601. }
  26602. },
  26603. headAngry: {
  26604. height: math.unit(4.95, "feet"),
  26605. name: "Head (Angry)",
  26606. image: {
  26607. source: "./media/characters/baadra/head-angry.svg"
  26608. }
  26609. },
  26610. headOpen: {
  26611. height: math.unit(6, "feet"),
  26612. name: "Head (Open)",
  26613. image: {
  26614. source: "./media/characters/baadra/head-open.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(17 + 6 / 12, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(7 + 3 / 12, "feet"),
  26631. weight: math.unit(180, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/juri/front.svg",
  26635. extra: 1401 / 1237,
  26636. bottom: 18.5 / 1418
  26637. }
  26638. },
  26639. side: {
  26640. height: math.unit(7 + 3 / 12, "feet"),
  26641. weight: math.unit(180, "lb"),
  26642. name: "Side",
  26643. image: {
  26644. source: "./media/characters/juri/side.svg",
  26645. extra: 1424 / 1242,
  26646. bottom: 18.5 / 1447
  26647. }
  26648. },
  26649. sitting: {
  26650. height: math.unit(6, "feet"),
  26651. weight: math.unit(180, "lb"),
  26652. name: "Sitting",
  26653. image: {
  26654. source: "./media/characters/juri/sitting.svg",
  26655. extra: 1270 / 1143,
  26656. bottom: 100 / 1343
  26657. }
  26658. },
  26659. back: {
  26660. height: math.unit(7 + 3 / 12, "feet"),
  26661. weight: math.unit(180, "lb"),
  26662. name: "Back",
  26663. image: {
  26664. source: "./media/characters/juri/back.svg",
  26665. extra: 1377 / 1240,
  26666. bottom: 23.7 / 1405
  26667. }
  26668. },
  26669. maw: {
  26670. height: math.unit(2.8, "feet"),
  26671. name: "Maw",
  26672. image: {
  26673. source: "./media/characters/juri/maw.svg"
  26674. }
  26675. },
  26676. stomach: {
  26677. height: math.unit(0.89, "feet"),
  26678. capacity: math.unit(4, "liters"),
  26679. name: "Stomach",
  26680. image: {
  26681. source: "./media/characters/juri/stomach.svg"
  26682. }
  26683. },
  26684. },
  26685. [
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(7 + 3 / 12, "feet"),
  26689. default: true
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26695. {
  26696. fox: {
  26697. height: math.unit(5 + 6 / 12, "feet"),
  26698. weight: math.unit(140, "lb"),
  26699. name: "Fox",
  26700. image: {
  26701. source: "./media/characters/maxene-sita/fox.svg",
  26702. extra: 146 / 138,
  26703. bottom: 2.1 / 148.19
  26704. }
  26705. },
  26706. foxLaying: {
  26707. height: math.unit(1.70, "feet"),
  26708. weight: math.unit(140, "lb"),
  26709. name: "Fox (Laying)",
  26710. image: {
  26711. source: "./media/characters/maxene-sita/fox-laying.svg",
  26712. extra: 910 / 572,
  26713. bottom: 71 / 981
  26714. }
  26715. },
  26716. kitsune: {
  26717. height: math.unit(10, "feet"),
  26718. weight: math.unit(800, "lb"),
  26719. name: "Kitsune",
  26720. image: {
  26721. source: "./media/characters/maxene-sita/kitsune.svg",
  26722. extra: 185 / 176,
  26723. bottom: 4.7 / 189.9
  26724. }
  26725. },
  26726. hellhound: {
  26727. height: math.unit(10, "feet"),
  26728. weight: math.unit(700, "lb"),
  26729. name: "Hellhound",
  26730. image: {
  26731. source: "./media/characters/maxene-sita/hellhound.svg",
  26732. extra: 1600 / 1545,
  26733. bottom: 81 / 1681
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(5 + 6 / 12, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26747. {
  26748. front: {
  26749. height: math.unit(3 + 4 / 12, "feet"),
  26750. weight: math.unit(70, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/maia/front.svg",
  26754. extra: 227 / 219.5,
  26755. bottom: 40 / 267
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(3 + 4 / 12, "feet"),
  26760. weight: math.unit(70, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/maia/back.svg",
  26764. extra: 237 / 225
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Normal",
  26771. height: math.unit(3 + 4 / 12, "feet"),
  26772. default: true
  26773. },
  26774. ]
  26775. ))
  26776. characterMakers.push(() => makeCharacter(
  26777. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26778. {
  26779. front: {
  26780. height: math.unit(5 + 10 / 12, "feet"),
  26781. weight: math.unit(197, "lb"),
  26782. name: "Front",
  26783. image: {
  26784. source: "./media/characters/jabaro/front.svg",
  26785. extra: 225 / 216,
  26786. bottom: 5.06 / 230
  26787. }
  26788. },
  26789. back: {
  26790. height: math.unit(5 + 10 / 12, "feet"),
  26791. weight: math.unit(197, "lb"),
  26792. name: "Back",
  26793. image: {
  26794. source: "./media/characters/jabaro/back.svg",
  26795. extra: 225 / 219,
  26796. bottom: 1.9 / 227
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Normal",
  26803. height: math.unit(5 + 10 / 12, "feet"),
  26804. default: true
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(5 + 8 / 12, "feet"),
  26813. weight: math.unit(139, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/risa/front.svg",
  26817. extra: 270 / 260,
  26818. bottom: 11.2 / 282
  26819. }
  26820. },
  26821. back: {
  26822. height: math.unit(5 + 8 / 12, "feet"),
  26823. weight: math.unit(139, "lb"),
  26824. name: "Back",
  26825. image: {
  26826. source: "./media/characters/risa/back.svg",
  26827. extra: 264 / 255,
  26828. bottom: 4 / 268
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(5 + 8 / 12, "feet"),
  26836. default: true
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26842. {
  26843. front: {
  26844. height: math.unit(2 + 11 / 12, "feet"),
  26845. weight: math.unit(30, "lb"),
  26846. name: "Front",
  26847. image: {
  26848. source: "./media/characters/weatley/front.svg",
  26849. bottom: 10.7 / 414,
  26850. extra: 403.5 / 362
  26851. }
  26852. },
  26853. back: {
  26854. height: math.unit(2 + 11 / 12, "feet"),
  26855. weight: math.unit(30, "lb"),
  26856. name: "Back",
  26857. image: {
  26858. source: "./media/characters/weatley/back.svg",
  26859. bottom: 10.7 / 414,
  26860. extra: 403.5 / 362
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(2 + 11 / 12, "feet"),
  26868. default: true
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26874. {
  26875. front: {
  26876. height: math.unit(5 + 2 / 12, "feet"),
  26877. weight: math.unit(50, "kg"),
  26878. name: "Front",
  26879. image: {
  26880. source: "./media/characters/mercury-crescent/front.svg",
  26881. extra: 1088 / 1033,
  26882. bottom: 18.9 / 1109
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(5 + 2 / 12, "feet"),
  26890. default: true
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(2, "feet"),
  26899. weight: math.unit(15, "kg"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/diamond-jones/front.svg",
  26903. extra: 727/723,
  26904. bottom: 46/773
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(2, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(3, "feet"),
  26921. weight: math.unit(30, "kg"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/sweet-bit/front.svg",
  26925. extra: 675 / 567,
  26926. bottom: 27.7 / 703
  26927. }
  26928. },
  26929. },
  26930. [
  26931. {
  26932. name: "Normal",
  26933. height: math.unit(3, "feet"),
  26934. default: true
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26940. {
  26941. side: {
  26942. height: math.unit(9.178, "feet"),
  26943. weight: math.unit(500, "lb"),
  26944. name: "Side",
  26945. image: {
  26946. source: "./media/characters/umbrazen/side.svg",
  26947. extra: 1730 / 1473,
  26948. bottom: 34.6 / 1765
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(9.178, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(10, "feet"),
  26965. weight: math.unit(750, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/arlist/front.svg",
  26969. extra: 961 / 778,
  26970. bottom: 6.2 / 986
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(10, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(5 + 1 / 12, "feet"),
  26987. weight: math.unit(110, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/aradel/front.svg",
  26991. extra: 324 / 303,
  26992. bottom: 3.6 / 329.4
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Normal",
  26999. height: math.unit(5 + 1 / 12, "feet"),
  27000. default: true
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27006. {
  27007. dressed: {
  27008. height: math.unit(3 + 8 / 12, "feet"),
  27009. weight: math.unit(50, "lb"),
  27010. name: "Dressed",
  27011. image: {
  27012. source: "./media/characters/serryn/dressed.svg",
  27013. extra: 1792 / 1656,
  27014. bottom: 43.5 / 1840
  27015. }
  27016. },
  27017. nude: {
  27018. height: math.unit(3 + 8 / 12, "feet"),
  27019. weight: math.unit(50, "lb"),
  27020. name: "Nude",
  27021. image: {
  27022. source: "./media/characters/serryn/nude.svg",
  27023. extra: 1792 / 1656,
  27024. bottom: 43.5 / 1840
  27025. }
  27026. },
  27027. },
  27028. [
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(3 + 8 / 12, "feet"),
  27032. default: true
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(7 + 10 / 12, "feet"),
  27041. weight: math.unit(255, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/xavier-thyme/front.svg",
  27045. extra: 3733 / 3642,
  27046. bottom: 131 / 3869
  27047. }
  27048. },
  27049. frontRaven: {
  27050. height: math.unit(7 + 10 / 12, "feet"),
  27051. weight: math.unit(255, "lb"),
  27052. name: "Front (Raven)",
  27053. image: {
  27054. source: "./media/characters/xavier-thyme/front-raven.svg",
  27055. extra: 4385 / 3642,
  27056. bottom: 131 / 4517
  27057. }
  27058. },
  27059. },
  27060. [
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(7 + 10 / 12, "feet"),
  27064. default: true
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(1.6, "m"),
  27073. weight: math.unit(50, "kg"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/kiki/front.svg",
  27077. extra: 4682 / 3610,
  27078. bottom: 115 / 4777
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(1.6, "meters"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(50, "m"),
  27095. weight: math.unit(500, "tonnes"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/ryoko/front.svg",
  27099. extra: 4632 / 3926,
  27100. bottom: 193 / 4823
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(50, "meters"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27114. {
  27115. front: {
  27116. height: math.unit(30, "m"),
  27117. weight: math.unit(22, "tonnes"),
  27118. name: "Front",
  27119. image: {
  27120. source: "./media/characters/elio/front.svg",
  27121. extra: 4582 / 3720,
  27122. bottom: 236 / 4828
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(30, "meters"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(6 + 3 / 12, "feet"),
  27139. weight: math.unit(120, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/azura/front.svg",
  27143. extra: 1149 / 1135,
  27144. bottom: 45 / 1194
  27145. }
  27146. },
  27147. frontClothed: {
  27148. height: math.unit(6 + 3 / 12, "feet"),
  27149. weight: math.unit(120, "lb"),
  27150. name: "Front (Clothed)",
  27151. image: {
  27152. source: "./media/characters/azura/front-clothed.svg",
  27153. extra: 1149 / 1135,
  27154. bottom: 45 / 1194
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(6 + 3 / 12, "feet"),
  27162. default: true
  27163. },
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(20 + 6 / 12, "feet")
  27167. },
  27168. {
  27169. name: "Megamacro",
  27170. height: math.unit(12, "miles")
  27171. },
  27172. {
  27173. name: "Gigamacro",
  27174. height: math.unit(10000, "miles")
  27175. },
  27176. {
  27177. name: "Teramacro",
  27178. height: math.unit(900000, "miles")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(12, "feet"),
  27187. weight: math.unit(1, "ton"),
  27188. capacity: math.unit(660000, "gallons"),
  27189. name: "Front",
  27190. image: {
  27191. source: "./media/characters/zeus/front.svg",
  27192. extra: 5005 / 4717,
  27193. bottom: 363 / 5388
  27194. }
  27195. },
  27196. },
  27197. [
  27198. {
  27199. name: "Normal",
  27200. height: math.unit(12, "feet")
  27201. },
  27202. {
  27203. name: "Preferred Size",
  27204. height: math.unit(0.5, "miles"),
  27205. default: true
  27206. },
  27207. {
  27208. name: "Giga Horse",
  27209. height: math.unit(300, "miles")
  27210. },
  27211. {
  27212. name: "Riding Planets",
  27213. height: math.unit(30, "megameters")
  27214. },
  27215. {
  27216. name: "Cosmic Giant",
  27217. height: math.unit(3, "zettameters")
  27218. },
  27219. {
  27220. name: "Breeding God",
  27221. height: math.unit(9.92e22, "yottameters")
  27222. },
  27223. ]
  27224. ))
  27225. characterMakers.push(() => makeCharacter(
  27226. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27227. {
  27228. side: {
  27229. height: math.unit(9, "feet"),
  27230. weight: math.unit(1500, "kg"),
  27231. name: "Side",
  27232. image: {
  27233. source: "./media/characters/fang/side.svg",
  27234. extra: 924 / 866,
  27235. bottom: 47.5 / 972.3
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Normal",
  27242. height: math.unit(9, "feet"),
  27243. default: true
  27244. },
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(75 + 6 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Teramacro",
  27251. height: math.unit(50000, "miles")
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(10, "feet"),
  27260. weight: math.unit(2, "tons"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/rekhit/front.svg",
  27264. extra: 2796 / 2590,
  27265. bottom: 225 / 3022
  27266. }
  27267. },
  27268. },
  27269. [
  27270. {
  27271. name: "Normal",
  27272. height: math.unit(10, "feet"),
  27273. default: true
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(500, "feet")
  27278. },
  27279. ]
  27280. ))
  27281. characterMakers.push(() => makeCharacter(
  27282. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27283. {
  27284. front: {
  27285. height: math.unit(7 + 6.451 / 12, "feet"),
  27286. weight: math.unit(310, "lb"),
  27287. name: "Front",
  27288. image: {
  27289. source: "./media/characters/dahlia-verrick/front.svg",
  27290. extra: 1488 / 1365,
  27291. bottom: 6.2 / 1495
  27292. }
  27293. },
  27294. back: {
  27295. height: math.unit(7 + 6.451 / 12, "feet"),
  27296. weight: math.unit(310, "lb"),
  27297. name: "Back",
  27298. image: {
  27299. source: "./media/characters/dahlia-verrick/back.svg",
  27300. extra: 1472 / 1351,
  27301. bottom: 5.28 / 1477
  27302. }
  27303. },
  27304. frontBusiness: {
  27305. height: math.unit(7 + 6.451 / 12, "feet"),
  27306. weight: math.unit(200, "lb"),
  27307. name: "Front (Business)",
  27308. image: {
  27309. source: "./media/characters/dahlia-verrick/front-business.svg",
  27310. extra: 1478 / 1381,
  27311. bottom: 5.5 / 1484
  27312. }
  27313. },
  27314. frontCasual: {
  27315. height: math.unit(7 + 6.451 / 12, "feet"),
  27316. weight: math.unit(200, "lb"),
  27317. name: "Front (Casual)",
  27318. image: {
  27319. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27320. extra: 1478 / 1381,
  27321. bottom: 5.5 / 1484
  27322. }
  27323. },
  27324. },
  27325. [
  27326. {
  27327. name: "Travel-Sized",
  27328. height: math.unit(7.45, "inches")
  27329. },
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(7 + 6.451 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Hitting the Town",
  27337. height: math.unit(37 + 8 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Stomp in the Suburbs",
  27341. height: math.unit(964 + 9.728 / 12, "feet")
  27342. },
  27343. {
  27344. name: "Sit on the City",
  27345. height: math.unit(61747 + 10.592 / 12, "feet")
  27346. },
  27347. {
  27348. name: "Glomp the Globe",
  27349. height: math.unit(252919327 + 4.832 / 12, "feet")
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(6 + 4 / 12, "feet"),
  27358. weight: math.unit(320, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/balina-mahigan/front.svg",
  27362. extra: 447 / 428,
  27363. bottom: 18 / 466
  27364. }
  27365. },
  27366. back: {
  27367. height: math.unit(6 + 4 / 12, "feet"),
  27368. weight: math.unit(320, "lb"),
  27369. name: "Back",
  27370. image: {
  27371. source: "./media/characters/balina-mahigan/back.svg",
  27372. extra: 445 / 428,
  27373. bottom: 4.07 / 448
  27374. }
  27375. },
  27376. arm: {
  27377. height: math.unit(1.88, "feet"),
  27378. name: "Arm",
  27379. image: {
  27380. source: "./media/characters/balina-mahigan/arm.svg"
  27381. }
  27382. },
  27383. backPort: {
  27384. height: math.unit(0.685, "feet"),
  27385. name: "Back Port",
  27386. image: {
  27387. source: "./media/characters/balina-mahigan/back-port.svg"
  27388. }
  27389. },
  27390. hoofpaw: {
  27391. height: math.unit(1.41, "feet"),
  27392. name: "Hoofpaw",
  27393. image: {
  27394. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27395. }
  27396. },
  27397. leftHandBack: {
  27398. height: math.unit(0.938, "feet"),
  27399. name: "Left Hand (Back)",
  27400. image: {
  27401. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27402. }
  27403. },
  27404. leftHandFront: {
  27405. height: math.unit(0.938, "feet"),
  27406. name: "Left Hand (Front)",
  27407. image: {
  27408. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27409. }
  27410. },
  27411. rightHandBack: {
  27412. height: math.unit(0.95, "feet"),
  27413. name: "Right Hand (Back)",
  27414. image: {
  27415. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27416. }
  27417. },
  27418. rightHandFront: {
  27419. height: math.unit(0.95, "feet"),
  27420. name: "Right Hand (Front)",
  27421. image: {
  27422. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6 + 4 / 12, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(6, "feet"),
  27439. weight: math.unit(320, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/balina-mejeri/front.svg",
  27443. extra: 517 / 488,
  27444. bottom: 44.2 / 561
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Normal",
  27451. height: math.unit(6 + 4 / 12, "feet")
  27452. },
  27453. {
  27454. name: "Business",
  27455. height: math.unit(155, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27462. {
  27463. kneeling: {
  27464. height: math.unit(6 + 4 / 12, "feet"),
  27465. weight: math.unit(300 * 20, "lb"),
  27466. name: "Kneeling",
  27467. image: {
  27468. source: "./media/characters/balbarian/kneeling.svg",
  27469. extra: 922 / 862,
  27470. bottom: 42.4 / 965
  27471. }
  27472. },
  27473. },
  27474. [
  27475. {
  27476. name: "Normal",
  27477. height: math.unit(6 + 4 / 12, "feet")
  27478. },
  27479. {
  27480. name: "Treasured",
  27481. height: math.unit(18 + 9 / 12, "feet"),
  27482. default: true
  27483. },
  27484. {
  27485. name: "Macro",
  27486. height: math.unit(900, "feet")
  27487. },
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27492. {
  27493. front: {
  27494. height: math.unit(6 + 4 / 12, "feet"),
  27495. weight: math.unit(325, "lb"),
  27496. name: "Front",
  27497. image: {
  27498. source: "./media/characters/balina-amarini/front.svg",
  27499. extra: 415 / 403,
  27500. bottom: 19 / 433.4
  27501. }
  27502. },
  27503. back: {
  27504. height: math.unit(6 + 4 / 12, "feet"),
  27505. weight: math.unit(325, "lb"),
  27506. name: "Back",
  27507. image: {
  27508. source: "./media/characters/balina-amarini/back.svg",
  27509. extra: 415 / 403,
  27510. bottom: 13.5 / 432
  27511. }
  27512. },
  27513. overdrive: {
  27514. height: math.unit(6 + 4 / 12, "feet"),
  27515. weight: math.unit(400, "lb"),
  27516. name: "Overdrive",
  27517. image: {
  27518. source: "./media/characters/balina-amarini/overdrive.svg",
  27519. extra: 269 / 259,
  27520. bottom: 12 / 282
  27521. }
  27522. },
  27523. },
  27524. [
  27525. {
  27526. name: "Boom",
  27527. height: math.unit(9 + 10 / 12, "feet"),
  27528. default: true
  27529. },
  27530. {
  27531. name: "Macro",
  27532. height: math.unit(280, "feet")
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27538. {
  27539. goddess: {
  27540. height: math.unit(600, "feet"),
  27541. weight: math.unit(2000000, "tons"),
  27542. name: "Goddess",
  27543. image: {
  27544. source: "./media/characters/lady-kubwa/goddess.svg",
  27545. extra: 1240.5 / 1223,
  27546. bottom: 22 / 1263
  27547. }
  27548. },
  27549. goddesser: {
  27550. height: math.unit(900, "feet"),
  27551. weight: math.unit(20000000, "lb"),
  27552. name: "Goddess-er",
  27553. image: {
  27554. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27555. extra: 899 / 888,
  27556. bottom: 12.6 / 912
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Macro",
  27563. height: math.unit(600, "feet"),
  27564. default: true
  27565. },
  27566. {
  27567. name: "Megamacro",
  27568. height: math.unit(250, "miles")
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27574. {
  27575. front: {
  27576. height: math.unit(7 + 7 / 12, "feet"),
  27577. weight: math.unit(250, "lb"),
  27578. name: "Front",
  27579. image: {
  27580. source: "./media/characters/tala-grovehorn/front.svg",
  27581. extra: 2636 / 2525,
  27582. bottom: 147 / 2781
  27583. }
  27584. },
  27585. back: {
  27586. height: math.unit(7 + 7 / 12, "feet"),
  27587. weight: math.unit(250, "lb"),
  27588. name: "Back",
  27589. image: {
  27590. source: "./media/characters/tala-grovehorn/back.svg",
  27591. extra: 2635 / 2539,
  27592. bottom: 100 / 2732.8
  27593. }
  27594. },
  27595. mouth: {
  27596. height: math.unit(1.15, "feet"),
  27597. name: "Mouth",
  27598. image: {
  27599. source: "./media/characters/tala-grovehorn/mouth.svg"
  27600. }
  27601. },
  27602. dick: {
  27603. height: math.unit(2.36, "feet"),
  27604. name: "Dick",
  27605. image: {
  27606. source: "./media/characters/tala-grovehorn/dick.svg"
  27607. }
  27608. },
  27609. slit: {
  27610. height: math.unit(0.61, "feet"),
  27611. name: "Slit",
  27612. image: {
  27613. source: "./media/characters/tala-grovehorn/slit.svg"
  27614. }
  27615. },
  27616. },
  27617. [
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27622. {
  27623. front: {
  27624. height: math.unit(7 + 7 / 12, "feet"),
  27625. weight: math.unit(225, "lb"),
  27626. name: "Front",
  27627. image: {
  27628. source: "./media/characters/epona/front.svg",
  27629. extra: 2445 / 2290,
  27630. bottom: 251 / 2696
  27631. }
  27632. },
  27633. back: {
  27634. height: math.unit(7 + 7 / 12, "feet"),
  27635. weight: math.unit(225, "lb"),
  27636. name: "Back",
  27637. image: {
  27638. source: "./media/characters/epona/back.svg",
  27639. extra: 2546 / 2408,
  27640. bottom: 44 / 2589
  27641. }
  27642. },
  27643. genitals: {
  27644. height: math.unit(1.5, "feet"),
  27645. name: "Genitals",
  27646. image: {
  27647. source: "./media/characters/epona/genitals.svg"
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(7 + 7 / 12, "feet"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27661. {
  27662. front: {
  27663. height: math.unit(7, "feet"),
  27664. weight: math.unit(518, "lb"),
  27665. name: "Front",
  27666. image: {
  27667. source: "./media/characters/avia-bloodbourn/front.svg",
  27668. extra: 1466 / 1350,
  27669. bottom: 65 / 1527
  27670. }
  27671. },
  27672. },
  27673. [
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(9.35, "feet"),
  27681. weight: math.unit(600, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/amera/front.svg",
  27685. extra: 891 / 818,
  27686. bottom: 30 / 922.7
  27687. }
  27688. },
  27689. back: {
  27690. height: math.unit(9.35, "feet"),
  27691. weight: math.unit(600, "lb"),
  27692. name: "Back",
  27693. image: {
  27694. source: "./media/characters/amera/back.svg",
  27695. extra: 876 / 824,
  27696. bottom: 6.8 / 884
  27697. }
  27698. },
  27699. dick: {
  27700. height: math.unit(2.14, "feet"),
  27701. name: "Dick",
  27702. image: {
  27703. source: "./media/characters/amera/dick.svg"
  27704. }
  27705. },
  27706. },
  27707. [
  27708. {
  27709. name: "Normal",
  27710. height: math.unit(9.35, "feet"),
  27711. default: true
  27712. },
  27713. ]
  27714. ))
  27715. characterMakers.push(() => makeCharacter(
  27716. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27717. {
  27718. kneeling: {
  27719. height: math.unit(3 + 4 / 12, "feet"),
  27720. weight: math.unit(90, "lb"),
  27721. name: "Kneeling",
  27722. image: {
  27723. source: "./media/characters/rosewen/kneeling.svg",
  27724. extra: 1835 / 1571,
  27725. bottom: 27.7 / 1862
  27726. }
  27727. },
  27728. },
  27729. [
  27730. {
  27731. name: "Normal",
  27732. height: math.unit(3 + 4 / 12, "feet"),
  27733. default: true
  27734. },
  27735. ]
  27736. ))
  27737. characterMakers.push(() => makeCharacter(
  27738. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27739. {
  27740. front: {
  27741. height: math.unit(5 + 10 / 12, "feet"),
  27742. weight: math.unit(200, "lb"),
  27743. name: "Front",
  27744. image: {
  27745. source: "./media/characters/sabah/front.svg",
  27746. extra: 849 / 763,
  27747. bottom: 33.9 / 881
  27748. }
  27749. },
  27750. },
  27751. [
  27752. {
  27753. name: "Normal",
  27754. height: math.unit(5 + 10 / 12, "feet"),
  27755. default: true
  27756. },
  27757. ]
  27758. ))
  27759. characterMakers.push(() => makeCharacter(
  27760. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27761. {
  27762. front: {
  27763. height: math.unit(3 + 5 / 12, "feet"),
  27764. weight: math.unit(40, "kg"),
  27765. name: "Front",
  27766. image: {
  27767. source: "./media/characters/purple-flame/front.svg",
  27768. extra: 1577 / 1412,
  27769. bottom: 97 / 1694
  27770. }
  27771. },
  27772. frontDressed: {
  27773. height: math.unit(3 + 5 / 12, "feet"),
  27774. weight: math.unit(40, "kg"),
  27775. name: "Front (Dressed)",
  27776. image: {
  27777. source: "./media/characters/purple-flame/front-dressed.svg",
  27778. extra: 1577 / 1412,
  27779. bottom: 97 / 1694
  27780. }
  27781. },
  27782. headphones: {
  27783. height: math.unit(0.85, "feet"),
  27784. name: "Headphones",
  27785. image: {
  27786. source: "./media/characters/purple-flame/headphones.svg"
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Really Small",
  27793. height: math.unit(5, "cm")
  27794. },
  27795. {
  27796. name: "Micro",
  27797. height: math.unit(1 + 5 / 12, "feet")
  27798. },
  27799. {
  27800. name: "Normal",
  27801. height: math.unit(3 + 5 / 12, "feet"),
  27802. default: true
  27803. },
  27804. {
  27805. name: "Minimacro",
  27806. height: math.unit(125, "feet")
  27807. },
  27808. {
  27809. name: "Macro",
  27810. height: math.unit(0.5, "miles")
  27811. },
  27812. {
  27813. name: "Megamacro",
  27814. height: math.unit(50, "miles")
  27815. },
  27816. {
  27817. name: "Gigantic",
  27818. height: math.unit(750, "miles")
  27819. },
  27820. {
  27821. name: "Planetary",
  27822. height: math.unit(15000, "miles")
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(14, "feet"),
  27831. weight: math.unit(959, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/arsenal/front.svg",
  27835. extra: 2357 / 2157,
  27836. bottom: 93 / 2458
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(14, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(6, "feet"),
  27853. weight: math.unit(150, "lb"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/adira/front.svg",
  27857. extra: 1078 / 1029,
  27858. bottom: 87 / 1166
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Micro",
  27865. height: math.unit(4, "inches"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(50, "feet")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(16, "feet"),
  27879. weight: math.unit(1000, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/grim/front.svg",
  27883. extra: 622 / 614,
  27884. bottom: 18.1 / 642
  27885. }
  27886. },
  27887. back: {
  27888. height: math.unit(16, "feet"),
  27889. weight: math.unit(1000, "lb"),
  27890. name: "Back",
  27891. image: {
  27892. source: "./media/characters/grim/back.svg",
  27893. extra: 610.6 / 602,
  27894. bottom: 40.8 / 652
  27895. }
  27896. },
  27897. hunched: {
  27898. height: math.unit(9.75, "feet"),
  27899. weight: math.unit(1000, "lb"),
  27900. name: "Hunched",
  27901. image: {
  27902. source: "./media/characters/grim/hunched.svg",
  27903. extra: 304 / 297,
  27904. bottom: 35.4 / 394
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(16, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27918. {
  27919. front: {
  27920. height: math.unit(2.3, "meters"),
  27921. weight: math.unit(300, "lb"),
  27922. name: "Front",
  27923. image: {
  27924. source: "./media/characters/sinja/front-sfw.svg",
  27925. extra: 1393 / 1294,
  27926. bottom: 70 / 1463
  27927. }
  27928. },
  27929. frontNsfw: {
  27930. height: math.unit(2.3, "meters"),
  27931. weight: math.unit(300, "lb"),
  27932. name: "Front (NSFW)",
  27933. image: {
  27934. source: "./media/characters/sinja/front-nsfw.svg",
  27935. extra: 1393 / 1294,
  27936. bottom: 70 / 1463
  27937. }
  27938. },
  27939. back: {
  27940. height: math.unit(2.3, "meters"),
  27941. weight: math.unit(300, "lb"),
  27942. name: "Back",
  27943. image: {
  27944. source: "./media/characters/sinja/back.svg",
  27945. extra: 1393 / 1294,
  27946. bottom: 70 / 1463
  27947. }
  27948. },
  27949. head: {
  27950. height: math.unit(1.771, "feet"),
  27951. name: "Head",
  27952. image: {
  27953. source: "./media/characters/sinja/head.svg"
  27954. }
  27955. },
  27956. slit: {
  27957. height: math.unit(0.8, "feet"),
  27958. name: "Slit",
  27959. image: {
  27960. source: "./media/characters/sinja/slit.svg"
  27961. }
  27962. },
  27963. },
  27964. [
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(2.3, "meters")
  27968. },
  27969. {
  27970. name: "Macro",
  27971. height: math.unit(91, "meters"),
  27972. default: true
  27973. },
  27974. {
  27975. name: "Megamacro",
  27976. height: math.unit(91440, "meters")
  27977. },
  27978. {
  27979. name: "Gigamacro",
  27980. height: math.unit(60960000, "meters")
  27981. },
  27982. {
  27983. name: "Teramacro",
  27984. height: math.unit(9144000000, "meters")
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(1.7, "meters"),
  27993. weight: math.unit(130, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/kyu/front.svg",
  27997. extra: 415 / 395,
  27998. bottom: 5 / 420
  27999. }
  28000. },
  28001. head: {
  28002. height: math.unit(1.75, "feet"),
  28003. name: "Head",
  28004. image: {
  28005. source: "./media/characters/kyu/head.svg"
  28006. }
  28007. },
  28008. foot: {
  28009. height: math.unit(0.81, "feet"),
  28010. name: "Foot",
  28011. image: {
  28012. source: "./media/characters/kyu/foot.svg"
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(1.7, "meters")
  28020. },
  28021. {
  28022. name: "Macro",
  28023. height: math.unit(131, "feet"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Megamacro",
  28028. height: math.unit(91440, "meters")
  28029. },
  28030. {
  28031. name: "Gigamacro",
  28032. height: math.unit(60960000, "meters")
  28033. },
  28034. {
  28035. name: "Teramacro",
  28036. height: math.unit(9144000000, "meters")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(7 + 1 / 12, "feet"),
  28045. weight: math.unit(250, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/joey/front.svg",
  28049. extra: 1791 / 1537,
  28050. bottom: 28 / 1816
  28051. }
  28052. },
  28053. },
  28054. [
  28055. {
  28056. name: "Micro",
  28057. height: math.unit(3, "inches")
  28058. },
  28059. {
  28060. name: "Normal",
  28061. height: math.unit(7 + 1 / 12, "feet"),
  28062. default: true
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(165, "cm"),
  28071. weight: math.unit(140, "lb"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/sam-evans/front.svg",
  28075. extra: 3417 / 3230,
  28076. bottom: 41.3 / 3417
  28077. }
  28078. },
  28079. frontSixTails: {
  28080. height: math.unit(165, "cm"),
  28081. weight: math.unit(140, "lb"),
  28082. name: "Front-six-tails",
  28083. image: {
  28084. source: "./media/characters/sam-evans/front-six-tails.svg",
  28085. extra: 3417 / 3230,
  28086. bottom: 41.3 / 3417
  28087. }
  28088. },
  28089. back: {
  28090. height: math.unit(165, "cm"),
  28091. weight: math.unit(140, "lb"),
  28092. name: "Back",
  28093. image: {
  28094. source: "./media/characters/sam-evans/back.svg",
  28095. extra: 3227 / 3032,
  28096. bottom: 6.8 / 3234
  28097. }
  28098. },
  28099. face: {
  28100. height: math.unit(0.68, "feet"),
  28101. name: "Face",
  28102. image: {
  28103. source: "./media/characters/sam-evans/face.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(165, "cm"),
  28111. default: true
  28112. },
  28113. {
  28114. name: "Macro",
  28115. height: math.unit(100, "meters")
  28116. },
  28117. {
  28118. name: "Macro+",
  28119. height: math.unit(800, "meters")
  28120. },
  28121. {
  28122. name: "Macro++",
  28123. height: math.unit(3, "km")
  28124. },
  28125. {
  28126. name: "Macro+++",
  28127. height: math.unit(30, "km")
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(10, "feet"),
  28136. weight: math.unit(750, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/juliet-a/front.svg",
  28140. extra: 1766 / 1720,
  28141. bottom: 43 / 1809
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(10, "feet"),
  28146. weight: math.unit(750, "lb"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/juliet-a/back.svg",
  28150. extra: 1781 / 1734,
  28151. bottom: 35 / 1810,
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(10, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Dragon Form",
  28163. height: math.unit(250, "feet")
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(1000, "feet")
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(10000, "feet")
  28172. }
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28177. {
  28178. regular: {
  28179. height: math.unit(7 + 3 / 12, "feet"),
  28180. weight: math.unit(260, "lb"),
  28181. name: "Regular",
  28182. image: {
  28183. source: "./media/characters/wild/regular.svg",
  28184. extra: 97.45 / 92,
  28185. bottom: 6.8 / 104.3
  28186. }
  28187. },
  28188. biggums: {
  28189. height: math.unit(8 + 6 / 12, "feet"),
  28190. weight: math.unit(425, "lb"),
  28191. name: "Biggums",
  28192. image: {
  28193. source: "./media/characters/wild/biggums.svg",
  28194. extra: 97.45 / 92,
  28195. bottom: 7.5 / 132.34
  28196. }
  28197. },
  28198. mawRegular: {
  28199. height: math.unit(1.24, "feet"),
  28200. name: "Maw (Regular)",
  28201. image: {
  28202. source: "./media/characters/wild/maw.svg"
  28203. }
  28204. },
  28205. mawBiggums: {
  28206. height: math.unit(1.47, "feet"),
  28207. name: "Maw (Biggums)",
  28208. image: {
  28209. source: "./media/characters/wild/maw.svg"
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(7 + 3 / 12, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28223. {
  28224. front: {
  28225. height: math.unit(2.5, "meters"),
  28226. weight: math.unit(200, "kg"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/vidar/front.svg",
  28230. extra: 2994 / 2795,
  28231. bottom: 56 / 3061
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(2.5, "meters"),
  28236. weight: math.unit(200, "kg"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/vidar/back.svg",
  28240. extra: 3131 / 2928,
  28241. bottom: 13.5 / 3141.5
  28242. }
  28243. },
  28244. feral: {
  28245. height: math.unit(2.5, "meters"),
  28246. weight: math.unit(2000, "kg"),
  28247. name: "Feral",
  28248. image: {
  28249. source: "./media/characters/vidar/feral.svg",
  28250. extra: 2790 / 1765,
  28251. bottom: 6 / 2796
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(2.5, "meters"),
  28259. default: true
  28260. },
  28261. {
  28262. name: "Macro",
  28263. height: math.unit(100, "meters")
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(5 + 9 / 12, "feet"),
  28272. weight: math.unit(120, "lb"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/ash/front.svg",
  28276. extra: 2189 / 1961,
  28277. bottom: 5.2 / 2194
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(5 + 9 / 12, "feet"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(9, "feet"),
  28294. weight: math.unit(10000, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/gygabite/front.svg",
  28298. bottom: 31.7 / 537.8,
  28299. extra: 505 / 370
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(9, "feet"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(12, "feet"),
  28316. weight: math.unit(35000, "lb"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/p0tat0/front.svg",
  28320. extra: 1065 / 921,
  28321. bottom: 55.7 / 1121.25
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28335. {
  28336. side: {
  28337. height: math.unit(6.5, "feet"),
  28338. weight: math.unit(800, "lb"),
  28339. name: "Side",
  28340. image: {
  28341. source: "./media/characters/dusk/side.svg",
  28342. extra: 615 / 373,
  28343. bottom: 53 / 664
  28344. }
  28345. },
  28346. sitting: {
  28347. height: math.unit(7, "feet"),
  28348. weight: math.unit(800, "lb"),
  28349. name: "Sitting",
  28350. image: {
  28351. source: "./media/characters/dusk/sitting.svg",
  28352. extra: 753 / 425,
  28353. bottom: 33 / 774
  28354. }
  28355. },
  28356. head: {
  28357. height: math.unit(6.1, "feet"),
  28358. name: "Head",
  28359. image: {
  28360. source: "./media/characters/dusk/head.svg"
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(7, "feet"),
  28368. default: true
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(15, "feet"),
  28377. weight: math.unit(7000, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/jay-direwolf/front.svg",
  28381. extra: 1810 / 1732,
  28382. bottom: 66 / 1892
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(15, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(4 + 9 / 12, "feet"),
  28399. weight: math.unit(130, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/anchovie/front.svg",
  28403. extra: 382 / 350,
  28404. bottom: 25 / 409
  28405. }
  28406. },
  28407. back: {
  28408. height: math.unit(4 + 9 / 12, "feet"),
  28409. weight: math.unit(130, "lb"),
  28410. name: "Back",
  28411. image: {
  28412. source: "./media/characters/anchovie/back.svg",
  28413. extra: 385 / 352,
  28414. bottom: 16.6 / 402
  28415. }
  28416. },
  28417. frontDressed: {
  28418. height: math.unit(4 + 9 / 12, "feet"),
  28419. weight: math.unit(130, "lb"),
  28420. name: "Front (Dressed)",
  28421. image: {
  28422. source: "./media/characters/anchovie/front-dressed.svg",
  28423. extra: 382 / 350,
  28424. bottom: 25 / 409
  28425. }
  28426. },
  28427. backDressed: {
  28428. height: math.unit(4 + 9 / 12, "feet"),
  28429. weight: math.unit(130, "lb"),
  28430. name: "Back (Dressed)",
  28431. image: {
  28432. source: "./media/characters/anchovie/back-dressed.svg",
  28433. extra: 385 / 352,
  28434. bottom: 16.6 / 402
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Micro",
  28441. height: math.unit(6.4, "inches")
  28442. },
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(4 + 9 / 12, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(2, "meters"),
  28455. weight: math.unit(180, "lb"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/acidrenamon/front.svg",
  28459. extra: 987 / 890,
  28460. bottom: 22.8 / 1009
  28461. }
  28462. },
  28463. back: {
  28464. height: math.unit(2, "meters"),
  28465. weight: math.unit(180, "lb"),
  28466. name: "Back",
  28467. image: {
  28468. source: "./media/characters/acidrenamon/back.svg",
  28469. extra: 983 / 891,
  28470. bottom: 8.4 / 992
  28471. }
  28472. },
  28473. head: {
  28474. height: math.unit(1.92, "feet"),
  28475. name: "Head",
  28476. image: {
  28477. source: "./media/characters/acidrenamon/head.svg"
  28478. }
  28479. },
  28480. rump: {
  28481. height: math.unit(1.72, "feet"),
  28482. name: "Rump",
  28483. image: {
  28484. source: "./media/characters/acidrenamon/rump.svg"
  28485. }
  28486. },
  28487. tail: {
  28488. height: math.unit(4.2, "feet"),
  28489. name: "Tail",
  28490. image: {
  28491. source: "./media/characters/acidrenamon/tail.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(2, "meters"),
  28499. default: true
  28500. },
  28501. {
  28502. name: "Minimacro",
  28503. height: math.unit(7, "meters")
  28504. },
  28505. {
  28506. name: "Macro",
  28507. height: math.unit(200, "meters")
  28508. },
  28509. {
  28510. name: "Gigamacro",
  28511. height: math.unit(0.2, "earths")
  28512. },
  28513. ]
  28514. ))
  28515. characterMakers.push(() => makeCharacter(
  28516. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28517. {
  28518. front: {
  28519. height: math.unit(152, "feet"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/kenzie-lee/front.svg",
  28523. extra: 1869/1774,
  28524. bottom: 128/1997
  28525. }
  28526. },
  28527. side: {
  28528. height: math.unit(86, "feet"),
  28529. name: "Side",
  28530. image: {
  28531. source: "./media/characters/kenzie-lee/side.svg",
  28532. extra: 930/815,
  28533. bottom: 177/1107
  28534. }
  28535. },
  28536. paw: {
  28537. height: math.unit(15, "feet"),
  28538. name: "Paw",
  28539. image: {
  28540. source: "./media/characters/kenzie-lee/paw.svg"
  28541. }
  28542. },
  28543. },
  28544. [
  28545. {
  28546. name: "Kenzie Flea",
  28547. height: math.unit(2, "mm"),
  28548. default: true
  28549. },
  28550. {
  28551. name: "Micro",
  28552. height: math.unit(2, "inches")
  28553. },
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(152, "feet")
  28557. },
  28558. {
  28559. name: "Megamacro",
  28560. height: math.unit(7, "miles")
  28561. },
  28562. {
  28563. name: "Gigamacro",
  28564. height: math.unit(8000, "miles")
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(6, "feet"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/withers/front.svg",
  28576. extra: 1935/1760,
  28577. bottom: 72/2007
  28578. }
  28579. },
  28580. back: {
  28581. height: math.unit(6, "feet"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/withers/back.svg",
  28585. extra: 1944/1792,
  28586. bottom: 12/1956
  28587. }
  28588. },
  28589. dressed: {
  28590. height: math.unit(6, "feet"),
  28591. name: "Dressed",
  28592. image: {
  28593. source: "./media/characters/withers/dressed.svg",
  28594. extra: 1937/1765,
  28595. bottom: 73/2010
  28596. }
  28597. },
  28598. phase1: {
  28599. height: math.unit(1.1, "feet"),
  28600. name: "Phase 1",
  28601. image: {
  28602. source: "./media/characters/withers/phase-1.svg",
  28603. extra: 1885/1232,
  28604. bottom: 0/1885
  28605. }
  28606. },
  28607. phase2: {
  28608. height: math.unit(1.05, "feet"),
  28609. name: "Phase 2",
  28610. image: {
  28611. source: "./media/characters/withers/phase-2.svg",
  28612. extra: 1792/1090,
  28613. bottom: 0/1792
  28614. }
  28615. },
  28616. partyWipe: {
  28617. height: math.unit(1.1, "feet"),
  28618. name: "Party Wipe",
  28619. image: {
  28620. source: "./media/characters/withers/party-wipe.svg",
  28621. extra: 1864/1207,
  28622. bottom: 0/1864
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Macro",
  28629. height: math.unit(167, "feet"),
  28630. default: true
  28631. },
  28632. {
  28633. name: "Megamacro",
  28634. height: math.unit(15, "miles")
  28635. }
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(6 + 7 / 12, "feet"),
  28643. weight: math.unit(250, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/nemoskii/front.svg",
  28647. extra: 2270 / 1734,
  28648. bottom: 86 / 2354
  28649. }
  28650. },
  28651. back: {
  28652. height: math.unit(6 + 7 / 12, "feet"),
  28653. weight: math.unit(250, "lb"),
  28654. name: "Back",
  28655. image: {
  28656. source: "./media/characters/nemoskii/back.svg",
  28657. extra: 1845 / 1788,
  28658. bottom: 10.5 / 1852
  28659. }
  28660. },
  28661. head: {
  28662. height: math.unit(1.31, "feet"),
  28663. name: "Head",
  28664. image: {
  28665. source: "./media/characters/nemoskii/head.svg"
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Micro",
  28672. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28673. },
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(6 + 7 / 12, "feet"),
  28677. default: true
  28678. },
  28679. {
  28680. name: "Macro",
  28681. height: math.unit((6 + 7 / 12) * 150, "feet")
  28682. },
  28683. {
  28684. name: "Macro+",
  28685. height: math.unit((6 + 7 / 12) * 500, "feet")
  28686. },
  28687. {
  28688. name: "Megamacro",
  28689. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28695. {
  28696. front: {
  28697. height: math.unit(1, "mile"),
  28698. weight: math.unit(265261.9, "lb"),
  28699. name: "Front",
  28700. image: {
  28701. source: "./media/characters/shui/front.svg",
  28702. extra: 1633 / 1564,
  28703. bottom: 91.5 / 1726
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Macro",
  28710. height: math.unit(1, "mile"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(12 + 6 / 12, "feet"),
  28720. weight: math.unit(1342, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/arokh-takakura/front.svg",
  28724. extra: 1089 / 1043,
  28725. bottom: 77.4 / 1176.7
  28726. }
  28727. },
  28728. back: {
  28729. height: math.unit(12 + 6 / 12, "feet"),
  28730. weight: math.unit(1342, "lb"),
  28731. name: "Back",
  28732. image: {
  28733. source: "./media/characters/arokh-takakura/back.svg",
  28734. extra: 1046 / 1019,
  28735. bottom: 102 / 1150
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Big",
  28742. height: math.unit(12 + 6 / 12, "feet"),
  28743. default: true
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(5 + 6 / 12, "feet"),
  28752. weight: math.unit(150, "lb"),
  28753. name: "Front",
  28754. image: {
  28755. source: "./media/characters/theo/front.svg",
  28756. extra: 1184 / 1131,
  28757. bottom: 7.4 / 1191
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Micro",
  28764. height: math.unit(5, "inches")
  28765. },
  28766. {
  28767. name: "Normal",
  28768. height: math.unit(5 + 6 / 12, "feet"),
  28769. default: true
  28770. },
  28771. ]
  28772. ))
  28773. characterMakers.push(() => makeCharacter(
  28774. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28775. {
  28776. front: {
  28777. height: math.unit(5 + 9 / 12, "feet"),
  28778. weight: math.unit(130, "lb"),
  28779. name: "Front",
  28780. image: {
  28781. source: "./media/characters/cecelia-swift/front.svg",
  28782. extra: 502 / 484,
  28783. bottom: 23 / 523
  28784. }
  28785. },
  28786. back: {
  28787. height: math.unit(5 + 9 / 12, "feet"),
  28788. weight: math.unit(130, "lb"),
  28789. name: "Back",
  28790. image: {
  28791. source: "./media/characters/cecelia-swift/back.svg",
  28792. extra: 499 / 485,
  28793. bottom: 12 / 511
  28794. }
  28795. },
  28796. head: {
  28797. height: math.unit(0.90, "feet"),
  28798. name: "Head",
  28799. image: {
  28800. source: "./media/characters/cecelia-swift/head.svg"
  28801. }
  28802. },
  28803. rump: {
  28804. height: math.unit(1.75, "feet"),
  28805. name: "Rump",
  28806. image: {
  28807. source: "./media/characters/cecelia-swift/rump.svg"
  28808. }
  28809. },
  28810. },
  28811. [
  28812. {
  28813. name: "Normal",
  28814. height: math.unit(5 + 9 / 12, "feet"),
  28815. default: true
  28816. },
  28817. {
  28818. name: "Big",
  28819. height: math.unit(50, "feet")
  28820. },
  28821. {
  28822. name: "Macro",
  28823. height: math.unit(100, "feet")
  28824. },
  28825. {
  28826. name: "Macro+",
  28827. height: math.unit(500, "feet")
  28828. },
  28829. {
  28830. name: "Macro++",
  28831. height: math.unit(1000, "feet")
  28832. },
  28833. ]
  28834. ))
  28835. characterMakers.push(() => makeCharacter(
  28836. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28837. {
  28838. front: {
  28839. height: math.unit(6, "feet"),
  28840. weight: math.unit(150, "lb"),
  28841. name: "Front",
  28842. image: {
  28843. source: "./media/characters/kaunan/front.svg",
  28844. extra: 2890 / 2523,
  28845. bottom: 49 / 2939
  28846. }
  28847. },
  28848. },
  28849. [
  28850. {
  28851. name: "Macro",
  28852. height: math.unit(150, "feet"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(175, "cm"),
  28862. weight: math.unit(60, "kg"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/fei/front.svg",
  28866. extra: 1873/1723,
  28867. bottom: 53/1926
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Mortal",
  28874. height: math.unit(175, "cm")
  28875. },
  28876. {
  28877. name: "Normal",
  28878. height: math.unit(3500, "m"),
  28879. default: true
  28880. },
  28881. {
  28882. name: "Stroll",
  28883. height: math.unit(17.5, "km")
  28884. },
  28885. {
  28886. name: "Showoff",
  28887. height: math.unit(175, "km")
  28888. },
  28889. ]
  28890. ))
  28891. characterMakers.push(() => makeCharacter(
  28892. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28893. {
  28894. front: {
  28895. height: math.unit(7, "feet"),
  28896. weight: math.unit(1000, "kg"),
  28897. name: "Front",
  28898. image: {
  28899. source: "./media/characters/edrax/front.svg",
  28900. extra: 2838 / 2550,
  28901. bottom: 130 / 2968
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Small",
  28908. height: math.unit(7, "feet")
  28909. },
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(1500, "meters")
  28913. },
  28914. {
  28915. name: "Mega",
  28916. height: math.unit(12000000, "km"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Megamacro",
  28921. height: math.unit(10600000, "lightyears")
  28922. },
  28923. {
  28924. name: "Hypermacro",
  28925. height: math.unit(256, "yottameters")
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(10, "feet"),
  28934. weight: math.unit(750, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/clove/front.svg",
  28938. extra: 1918/1751,
  28939. bottom: 52/1970
  28940. }
  28941. },
  28942. back: {
  28943. height: math.unit(10, "feet"),
  28944. weight: math.unit(750, "lb"),
  28945. name: "Back",
  28946. image: {
  28947. source: "./media/characters/clove/back.svg",
  28948. extra: 1912/1747,
  28949. bottom: 50/1962
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(10, "feet"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(4, "feet"),
  28966. weight: math.unit(50, "lb"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/alex-rabbit/front.svg",
  28970. extra: 507 / 458,
  28971. bottom: 18.5 / 527
  28972. }
  28973. },
  28974. back: {
  28975. height: math.unit(4, "feet"),
  28976. weight: math.unit(50, "lb"),
  28977. name: "Back",
  28978. image: {
  28979. source: "./media/characters/alex-rabbit/back.svg",
  28980. extra: 502 / 460,
  28981. bottom: 18.9 / 521
  28982. }
  28983. },
  28984. },
  28985. [
  28986. {
  28987. name: "Normal",
  28988. height: math.unit(4, "feet"),
  28989. default: true
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(1 + 3 / 12, "feet"),
  28998. weight: math.unit(80, "lb"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/zander-rose/front.svg",
  29002. extra: 916 / 797,
  29003. bottom: 17 / 933
  29004. }
  29005. },
  29006. back: {
  29007. height: math.unit(1 + 3 / 12, "feet"),
  29008. weight: math.unit(80, "lb"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/zander-rose/back.svg",
  29012. extra: 903 / 779,
  29013. bottom: 31 / 934
  29014. }
  29015. },
  29016. },
  29017. [
  29018. {
  29019. name: "Normal",
  29020. height: math.unit(1 + 3 / 12, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29027. {
  29028. anthro: {
  29029. height: math.unit(6, "feet"),
  29030. weight: math.unit(150, "lb"),
  29031. name: "Anthro",
  29032. image: {
  29033. source: "./media/characters/razz/anthro.svg",
  29034. extra: 1437 / 1343,
  29035. bottom: 48 / 1485
  29036. }
  29037. },
  29038. feral: {
  29039. height: math.unit(6, "feet"),
  29040. weight: math.unit(150, "lb"),
  29041. name: "Feral",
  29042. image: {
  29043. source: "./media/characters/razz/feral.svg",
  29044. extra: 2569 / 1385,
  29045. bottom: 95 / 2664
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Normal",
  29052. height: math.unit(6, "feet"),
  29053. default: true
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(9 + 4 / 12, "feet"),
  29062. weight: math.unit(500, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/morrigan/front.svg",
  29066. extra: 2707 / 2579,
  29067. bottom: 156 / 2863
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(9 + 4 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(5, "stories"),
  29084. weight: math.unit(4000, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/jenene/front.svg",
  29088. extra: 1780 / 1710,
  29089. bottom: 57 / 1837
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(5, "stories"),
  29097. default: true
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29103. {
  29104. taurSfw: {
  29105. height: math.unit(10, "meters"),
  29106. weight: math.unit(17500, "kg"),
  29107. name: "Taur",
  29108. image: {
  29109. source: "./media/characters/faey/taur-sfw.svg",
  29110. extra: 1200 / 968,
  29111. bottom: 41 / 1241
  29112. }
  29113. },
  29114. chestmaw: {
  29115. height: math.unit(2.01, "meters"),
  29116. name: "Chestmaw",
  29117. image: {
  29118. source: "./media/characters/faey/chestmaw.svg"
  29119. }
  29120. },
  29121. foot: {
  29122. height: math.unit(2.43, "meters"),
  29123. name: "Foot",
  29124. image: {
  29125. source: "./media/characters/faey/foot.svg"
  29126. }
  29127. },
  29128. jaws: {
  29129. height: math.unit(1.66, "meters"),
  29130. name: "Jaws",
  29131. image: {
  29132. source: "./media/characters/faey/jaws.svg"
  29133. }
  29134. },
  29135. tongues: {
  29136. height: math.unit(2.01, "meters"),
  29137. name: "Tongues",
  29138. image: {
  29139. source: "./media/characters/faey/tongues.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Small",
  29146. height: math.unit(10, "meters"),
  29147. default: true
  29148. },
  29149. {
  29150. name: "Big",
  29151. height: math.unit(500000, "km")
  29152. },
  29153. ]
  29154. ))
  29155. characterMakers.push(() => makeCharacter(
  29156. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29157. {
  29158. front: {
  29159. height: math.unit(7, "feet"),
  29160. weight: math.unit(275, "lb"),
  29161. name: "Front",
  29162. image: {
  29163. source: "./media/characters/roku/front.svg",
  29164. extra: 903 / 878,
  29165. bottom: 37 / 940
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Normal",
  29172. height: math.unit(7, "feet"),
  29173. default: true
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(500, "feet")
  29178. },
  29179. {
  29180. name: "Megamacro",
  29181. height: math.unit(200, "miles")
  29182. },
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(6 + 2 / 12, "feet"),
  29190. weight: math.unit(150, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/lira/front.svg",
  29194. extra: 1727 / 1605,
  29195. bottom: 26 / 1753
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(6 + 2 / 12, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/lira/back.svg",
  29204. extra: 1713/1621,
  29205. bottom: 20/1733
  29206. }
  29207. },
  29208. hand: {
  29209. height: math.unit(0.75, "feet"),
  29210. name: "Hand",
  29211. image: {
  29212. source: "./media/characters/lira/hand.svg"
  29213. }
  29214. },
  29215. maw: {
  29216. height: math.unit(0.65, "feet"),
  29217. name: "Maw",
  29218. image: {
  29219. source: "./media/characters/lira/maw.svg"
  29220. }
  29221. },
  29222. pawDigi: {
  29223. height: math.unit(1.6, "feet"),
  29224. name: "Paw Digi",
  29225. image: {
  29226. source: "./media/characters/lira/paw-digi.svg"
  29227. }
  29228. },
  29229. pawPlanti: {
  29230. height: math.unit(1.4, "feet"),
  29231. name: "Paw Planti",
  29232. image: {
  29233. source: "./media/characters/lira/paw-planti.svg"
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(6 + 2 / 12, "feet"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(100, "feet")
  29246. },
  29247. {
  29248. name: "Macro²",
  29249. height: math.unit(1600, "feet")
  29250. },
  29251. {
  29252. name: "Planetary",
  29253. height: math.unit(20, "earths")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(6, "feet"),
  29262. weight: math.unit(150, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/hadjet/front.svg",
  29266. extra: 1480 / 1346,
  29267. bottom: 26 / 1506
  29268. }
  29269. },
  29270. frontNsfw: {
  29271. height: math.unit(6, "feet"),
  29272. weight: math.unit(150, "lb"),
  29273. name: "Front (NSFW)",
  29274. image: {
  29275. source: "./media/characters/hadjet/front-nsfw.svg",
  29276. extra: 1440 / 1358,
  29277. bottom: 52 / 1492
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Macro",
  29284. height: math.unit(10, "stories"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Megamacro",
  29289. height: math.unit(1.5, "miles")
  29290. },
  29291. {
  29292. name: "Megamacro+",
  29293. height: math.unit(5, "miles")
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29299. {
  29300. side: {
  29301. height: math.unit(106, "feet"),
  29302. weight: math.unit(500, "tonnes"),
  29303. name: "Side",
  29304. image: {
  29305. source: "./media/characters/kodran/side.svg",
  29306. extra: 553 / 480,
  29307. bottom: 33 / 586
  29308. }
  29309. },
  29310. front: {
  29311. height: math.unit(132, "feet"),
  29312. weight: math.unit(500, "tonnes"),
  29313. name: "Front",
  29314. image: {
  29315. source: "./media/characters/kodran/front.svg",
  29316. extra: 667 / 643,
  29317. bottom: 42 / 709
  29318. }
  29319. },
  29320. flying: {
  29321. height: math.unit(350, "feet"),
  29322. weight: math.unit(500, "tonnes"),
  29323. name: "Flying",
  29324. image: {
  29325. source: "./media/characters/kodran/flying.svg"
  29326. }
  29327. },
  29328. foot: {
  29329. height: math.unit(33, "feet"),
  29330. name: "Foot",
  29331. image: {
  29332. source: "./media/characters/kodran/foot.svg"
  29333. }
  29334. },
  29335. footFront: {
  29336. height: math.unit(19, "feet"),
  29337. name: "Foot (Front)",
  29338. image: {
  29339. source: "./media/characters/kodran/foot-front.svg",
  29340. extra: 261 / 261,
  29341. bottom: 91 / 352
  29342. }
  29343. },
  29344. headFront: {
  29345. height: math.unit(53, "feet"),
  29346. name: "Head (Front)",
  29347. image: {
  29348. source: "./media/characters/kodran/head-front.svg"
  29349. }
  29350. },
  29351. headSide: {
  29352. height: math.unit(65, "feet"),
  29353. name: "Head (Side)",
  29354. image: {
  29355. source: "./media/characters/kodran/head-side.svg"
  29356. }
  29357. },
  29358. throat: {
  29359. height: math.unit(79, "feet"),
  29360. name: "Throat",
  29361. image: {
  29362. source: "./media/characters/kodran/throat.svg"
  29363. }
  29364. },
  29365. },
  29366. [
  29367. {
  29368. name: "Large",
  29369. height: math.unit(106, "feet"),
  29370. default: true
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29376. {
  29377. side: {
  29378. height: math.unit(11, "feet"),
  29379. weight: math.unit(150, "lb"),
  29380. name: "Side",
  29381. image: {
  29382. source: "./media/characters/pyxaron/side.svg",
  29383. extra: 305 / 195,
  29384. bottom: 17 / 322
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(11, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(6, "feet"),
  29401. weight: math.unit(150, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/meep/front.svg",
  29405. extra: 88 / 80,
  29406. bottom: 6 / 94
  29407. }
  29408. },
  29409. },
  29410. [
  29411. {
  29412. name: "Fun Sized",
  29413. height: math.unit(2, "inches"),
  29414. default: true
  29415. },
  29416. {
  29417. name: "Friend Sized",
  29418. height: math.unit(8, "inches")
  29419. },
  29420. ]
  29421. ))
  29422. characterMakers.push(() => makeCharacter(
  29423. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29424. {
  29425. front: {
  29426. height: math.unit(15, "feet"),
  29427. weight: math.unit(2500, "lb"),
  29428. name: "Front",
  29429. image: {
  29430. source: "./media/characters/holly-rabbit/front.svg",
  29431. extra: 1433 / 1233,
  29432. bottom: 125 / 1558
  29433. }
  29434. },
  29435. dick: {
  29436. height: math.unit(4.6, "feet"),
  29437. name: "Dick",
  29438. image: {
  29439. source: "./media/characters/holly-rabbit/dick.svg"
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(15, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Macro",
  29451. height: math.unit(250, "feet")
  29452. },
  29453. {
  29454. name: "Macro+",
  29455. height: math.unit(2500, "feet")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(3.02, "meters"),
  29464. weight: math.unit(500, "kg"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/drena/front.svg",
  29468. extra: 282 / 243,
  29469. bottom: 8 / 290
  29470. }
  29471. },
  29472. side: {
  29473. height: math.unit(3.02, "meters"),
  29474. weight: math.unit(500, "kg"),
  29475. name: "Side",
  29476. image: {
  29477. source: "./media/characters/drena/side.svg",
  29478. extra: 280 / 245,
  29479. bottom: 10 / 290
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(3.02, "meters"),
  29484. weight: math.unit(500, "kg"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/drena/back.svg",
  29488. extra: 278 / 243,
  29489. bottom: 2 / 280
  29490. }
  29491. },
  29492. foot: {
  29493. height: math.unit(0.75, "meters"),
  29494. name: "Foot",
  29495. image: {
  29496. source: "./media/characters/drena/foot.svg"
  29497. }
  29498. },
  29499. maw: {
  29500. height: math.unit(0.82, "meters"),
  29501. name: "Maw",
  29502. image: {
  29503. source: "./media/characters/drena/maw.svg"
  29504. }
  29505. },
  29506. eating: {
  29507. height: math.unit(0.75, "meters"),
  29508. name: "Eating",
  29509. image: {
  29510. source: "./media/characters/drena/eating.svg"
  29511. }
  29512. },
  29513. rump: {
  29514. height: math.unit(0.93, "meters"),
  29515. name: "Rump",
  29516. image: {
  29517. source: "./media/characters/drena/rump.svg"
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Normal",
  29524. height: math.unit(3.02, "meters"),
  29525. default: true
  29526. },
  29527. ]
  29528. ))
  29529. characterMakers.push(() => makeCharacter(
  29530. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29531. {
  29532. front: {
  29533. height: math.unit(6 + 4 / 12, "feet"),
  29534. weight: math.unit(250, "lb"),
  29535. name: "Front",
  29536. image: {
  29537. source: "./media/characters/remmyzilla/front.svg",
  29538. extra: 4033 / 3588,
  29539. bottom: 123 / 4156
  29540. }
  29541. },
  29542. back: {
  29543. height: math.unit(6 + 4 / 12, "feet"),
  29544. weight: math.unit(250, "lb"),
  29545. name: "Back",
  29546. image: {
  29547. source: "./media/characters/remmyzilla/back.svg",
  29548. extra: 2687 / 2555,
  29549. bottom: 48 / 2735
  29550. }
  29551. },
  29552. paw: {
  29553. height: math.unit(1.73, "feet"),
  29554. name: "Paw",
  29555. image: {
  29556. source: "./media/characters/remmyzilla/paw.svg"
  29557. }
  29558. },
  29559. maw: {
  29560. height: math.unit(1.73, "feet"),
  29561. name: "Maw",
  29562. image: {
  29563. source: "./media/characters/remmyzilla/maw.svg"
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(6 + 4 / 12, "feet")
  29571. },
  29572. {
  29573. name: "Minimacro",
  29574. height: math.unit(12 + 8 / 12, "feet")
  29575. },
  29576. {
  29577. name: "Normal",
  29578. height: math.unit(640, "feet"),
  29579. default: true
  29580. },
  29581. {
  29582. name: "Megamacro",
  29583. height: math.unit(6400, "feet")
  29584. },
  29585. {
  29586. name: "Gigamacro",
  29587. height: math.unit(64000, "miles")
  29588. },
  29589. ]
  29590. ))
  29591. characterMakers.push(() => makeCharacter(
  29592. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29593. {
  29594. front: {
  29595. height: math.unit(2.5, "meters"),
  29596. weight: math.unit(300, "lb"),
  29597. name: "Front",
  29598. image: {
  29599. source: "./media/characters/lawrence/front.svg",
  29600. extra: 357 / 335,
  29601. bottom: 30 / 387
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(2.5, "meters"),
  29606. weight: math.unit(300, "lb"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/lawrence/back.svg",
  29610. extra: 357 / 338,
  29611. bottom: 16 / 373
  29612. }
  29613. },
  29614. head: {
  29615. height: math.unit(0.9, "meter"),
  29616. name: "Head",
  29617. image: {
  29618. source: "./media/characters/lawrence/head.svg"
  29619. }
  29620. },
  29621. maw: {
  29622. height: math.unit(0.7, "meter"),
  29623. name: "Maw",
  29624. image: {
  29625. source: "./media/characters/lawrence/maw.svg"
  29626. }
  29627. },
  29628. footBottom: {
  29629. height: math.unit(0.5, "meter"),
  29630. name: "Foot (Bottom)",
  29631. image: {
  29632. source: "./media/characters/lawrence/foot-bottom.svg"
  29633. }
  29634. },
  29635. footTop: {
  29636. height: math.unit(0.5, "meter"),
  29637. name: "Foot (Top)",
  29638. image: {
  29639. source: "./media/characters/lawrence/foot-top.svg"
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(2.5, "meters"),
  29647. default: true
  29648. },
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(95, "meters")
  29652. },
  29653. {
  29654. name: "Megamacro",
  29655. height: math.unit(150, "km")
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29661. {
  29662. front: {
  29663. height: math.unit(4.2, "meters"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/sydney/front.svg",
  29667. extra: 1323 / 1277,
  29668. bottom: 111 / 1434
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(4.2, "meters"),
  29676. default: true
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29682. {
  29683. back: {
  29684. height: math.unit(201, "feet"),
  29685. name: "Back",
  29686. image: {
  29687. source: "./media/characters/jessica/back.svg",
  29688. extra: 273 / 259,
  29689. bottom: 7 / 280
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(201, "feet"),
  29697. default: true
  29698. },
  29699. {
  29700. name: "Megamacro",
  29701. height: math.unit(8, "miles")
  29702. },
  29703. ]
  29704. ))
  29705. characterMakers.push(() => makeCharacter(
  29706. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29707. {
  29708. side: {
  29709. height: math.unit(5.6, "m"),
  29710. weight: math.unit(8000, "kg"),
  29711. name: "Side",
  29712. image: {
  29713. source: "./media/characters/victoria/side.svg",
  29714. extra: 1542/1229,
  29715. bottom: 124/1666
  29716. }
  29717. },
  29718. maw: {
  29719. height: math.unit(7.14, "feet"),
  29720. name: "Maw",
  29721. image: {
  29722. source: "./media/characters/victoria/maw.svg"
  29723. }
  29724. },
  29725. },
  29726. [
  29727. {
  29728. name: "Normal",
  29729. height: math.unit(5.6, "m"),
  29730. default: true
  29731. },
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29736. {
  29737. front: {
  29738. height: math.unit(5 + 6 / 12, "feet"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/cat/front.svg",
  29742. extra: 1449/1295,
  29743. bottom: 34/1483
  29744. },
  29745. form: "cat",
  29746. default: true
  29747. },
  29748. back: {
  29749. height: math.unit(5 + 6 / 12, "feet"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/cat/back.svg",
  29753. extra: 1466/1301,
  29754. bottom: 19/1485
  29755. },
  29756. form: "cat"
  29757. },
  29758. taur: {
  29759. height: math.unit(7, "feet"),
  29760. name: "Taur",
  29761. image: {
  29762. source: "./media/characters/cat/taur.svg",
  29763. extra: 1389/1233,
  29764. bottom: 83/1472
  29765. },
  29766. form: "taur",
  29767. default: true
  29768. },
  29769. lucarioFront: {
  29770. height: math.unit(4, "feet"),
  29771. name: "Lucario (Front)",
  29772. image: {
  29773. source: "./media/characters/cat/lucario-front.svg",
  29774. extra: 1149/1019,
  29775. bottom: 84/1233
  29776. },
  29777. form: "lucario",
  29778. default: true
  29779. },
  29780. lucarioBack: {
  29781. height: math.unit(4, "feet"),
  29782. name: "Lucario (Back)",
  29783. image: {
  29784. source: "./media/characters/cat/lucario-back.svg",
  29785. extra: 1190/1059,
  29786. bottom: 33/1223
  29787. },
  29788. form: "lucario"
  29789. },
  29790. megaLucario: {
  29791. height: math.unit(4, "feet"),
  29792. name: "Mega Lucario",
  29793. image: {
  29794. source: "./media/characters/cat/mega-lucario.svg",
  29795. extra: 1515 / 1319,
  29796. bottom: 63 / 1578
  29797. },
  29798. form: "lucario"
  29799. },
  29800. nickit: {
  29801. height: math.unit(2, "feet"),
  29802. name: "Nickit",
  29803. image: {
  29804. source: "./media/characters/cat/nickit.svg",
  29805. extra: 1980 / 1585,
  29806. bottom: 102 / 2082
  29807. },
  29808. form: "nickit",
  29809. default: true
  29810. },
  29811. lopunnyFront: {
  29812. height: math.unit(5, "feet"),
  29813. name: "Lopunny (Front)",
  29814. image: {
  29815. source: "./media/characters/cat/lopunny-front.svg",
  29816. extra: 1782 / 1469,
  29817. bottom: 38 / 1820
  29818. },
  29819. form: "lopunny",
  29820. default: true
  29821. },
  29822. lopunnyBack: {
  29823. height: math.unit(5, "feet"),
  29824. name: "Lopunny (Back)",
  29825. image: {
  29826. source: "./media/characters/cat/lopunny-back.svg",
  29827. extra: 1660 / 1490,
  29828. bottom: 25 / 1685
  29829. },
  29830. form: "lopunny"
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Really small",
  29836. height: math.unit(1, "nm")
  29837. },
  29838. {
  29839. name: "Micro",
  29840. height: math.unit(5, "inches")
  29841. },
  29842. {
  29843. name: "Normal",
  29844. height: math.unit(5 + 6 / 12, "feet"),
  29845. default: true
  29846. },
  29847. {
  29848. name: "Macro",
  29849. height: math.unit(50, "feet")
  29850. },
  29851. {
  29852. name: "Macro+",
  29853. height: math.unit(150, "feet")
  29854. },
  29855. {
  29856. name: "Megamacro",
  29857. height: math.unit(100, "miles")
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29863. {
  29864. front: {
  29865. height: math.unit(63.4, "meters"),
  29866. weight: math.unit(3.28349e+6, "kilograms"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/kirina-violet/front.svg",
  29870. extra: 2812 / 2725,
  29871. bottom: 0 / 2812
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(63.4, "meters"),
  29876. weight: math.unit(3.28349e+6, "kilograms"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/kirina-violet/back.svg",
  29880. extra: 2812 / 2725,
  29881. bottom: 0 / 2812
  29882. }
  29883. },
  29884. mouth: {
  29885. height: math.unit(4.35, "meters"),
  29886. name: "Mouth",
  29887. image: {
  29888. source: "./media/characters/kirina-violet/mouth.svg"
  29889. }
  29890. },
  29891. paw: {
  29892. height: math.unit(5.6, "meters"),
  29893. name: "Paw",
  29894. image: {
  29895. source: "./media/characters/kirina-violet/paw.svg"
  29896. }
  29897. },
  29898. tail: {
  29899. height: math.unit(18, "meters"),
  29900. name: "Tail",
  29901. image: {
  29902. source: "./media/characters/kirina-violet/tail.svg"
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Macro",
  29909. height: math.unit(63.4, "meters"),
  29910. default: true
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(75, "feet"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/cat-gigachu/front.svg",
  29922. extra: 1239/1027,
  29923. bottom: 32/1271
  29924. }
  29925. },
  29926. back: {
  29927. height: math.unit(75, "feet"),
  29928. name: "Back",
  29929. image: {
  29930. source: "./media/characters/cat-gigachu/back.svg",
  29931. extra: 1229/1030,
  29932. bottom: 9/1238
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Dynamax",
  29939. height: math.unit(75, "feet"),
  29940. default: true
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(6, "feet"),
  29949. weight: math.unit(150, "lb"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/sfaiyan/front.svg",
  29953. extra: 999 / 978,
  29954. bottom: 5 / 1004
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(1.82, "meters")
  29962. },
  29963. {
  29964. name: "Giant",
  29965. height: math.unit(2.27, "km"),
  29966. default: true
  29967. },
  29968. ]
  29969. ))
  29970. characterMakers.push(() => makeCharacter(
  29971. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29972. {
  29973. front: {
  29974. height: math.unit(179, "cm"),
  29975. weight: math.unit(100, "kg"),
  29976. name: "Front",
  29977. image: {
  29978. source: "./media/characters/raunehkeli/front.svg",
  29979. extra: 1934 / 1926,
  29980. bottom: 0 / 1934
  29981. }
  29982. },
  29983. },
  29984. [
  29985. {
  29986. name: "Normal",
  29987. height: math.unit(179, "cm")
  29988. },
  29989. {
  29990. name: "Maximum",
  29991. height: math.unit(575, "meters"),
  29992. default: true
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(6, "feet"),
  30001. weight: math.unit(150, "lb"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30005. extra: 2625 / 2518,
  30006. bottom: 60 / 2685
  30007. }
  30008. },
  30009. },
  30010. [
  30011. {
  30012. name: "Normal",
  30013. height: math.unit(6 + 2 / 12, "feet")
  30014. },
  30015. {
  30016. name: "Macro",
  30017. height: math.unit(1180, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(5 + 6 / 12, "feet"),
  30027. weight: math.unit(108, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/lilith-zott/front.svg",
  30031. extra: 2510 / 2238,
  30032. bottom: 100 / 2610
  30033. }
  30034. },
  30035. frontDressed: {
  30036. height: math.unit(5 + 6 / 12, "feet"),
  30037. weight: math.unit(108, "lb"),
  30038. name: "Front (Dressed)",
  30039. image: {
  30040. source: "./media/characters/lilith-zott/front-dressed.svg",
  30041. extra: 2510 / 2238,
  30042. bottom: 100 / 2610
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Normal",
  30049. height: math.unit(5 + 6 / 12, "feet")
  30050. },
  30051. {
  30052. name: "Macro",
  30053. height: math.unit(1030, "feet"),
  30054. default: true
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30060. {
  30061. front: {
  30062. height: math.unit(6, "feet"),
  30063. weight: math.unit(150, "lb"),
  30064. name: "Front",
  30065. image: {
  30066. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30067. extra: 2567 / 2435,
  30068. bottom: 39 / 2606
  30069. }
  30070. },
  30071. frontSuper: {
  30072. height: math.unit(6, "feet"),
  30073. name: "Front (Super)",
  30074. image: {
  30075. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30076. extra: 2567 / 2435,
  30077. bottom: 39 / 2606
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(5 + 10 / 12, "feet")
  30085. },
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(1100, "feet"),
  30089. default: true
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(100, "miles"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/sona/front.svg",
  30101. extra: 2433 / 2201,
  30102. bottom: 53 / 2486
  30103. }
  30104. },
  30105. foot: {
  30106. height: math.unit(16.1, "miles"),
  30107. name: "Foot",
  30108. image: {
  30109. source: "./media/characters/sona/foot.svg"
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(100, "miles"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/bailey/front.svg",
  30130. extra: 1778 / 1724,
  30131. bottom: 30 / 1808
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Micro",
  30138. height: math.unit(4, "inches")
  30139. },
  30140. {
  30141. name: "Normal",
  30142. height: math.unit(5 + 5 / 12, "feet"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(250, "feet")
  30148. },
  30149. {
  30150. name: "Megamacro",
  30151. height: math.unit(100, "miles")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(5 + 2 / 12, "feet"),
  30160. weight: math.unit(120, "lb"),
  30161. name: "Front",
  30162. image: {
  30163. source: "./media/characters/snaps/front.svg",
  30164. extra: 2370 / 2177,
  30165. bottom: 48 / 2418
  30166. }
  30167. },
  30168. back: {
  30169. height: math.unit(5 + 2 / 12, "feet"),
  30170. weight: math.unit(120, "lb"),
  30171. name: "Back",
  30172. image: {
  30173. source: "./media/characters/snaps/back.svg",
  30174. extra: 2408 / 2258,
  30175. bottom: 15 / 2423
  30176. }
  30177. },
  30178. },
  30179. [
  30180. {
  30181. name: "Micro",
  30182. height: math.unit(9, "inches")
  30183. },
  30184. {
  30185. name: "Normal",
  30186. height: math.unit(5 + 2 / 12, "feet"),
  30187. default: true
  30188. },
  30189. {
  30190. name: "Mini Macro",
  30191. height: math.unit(10, "feet")
  30192. },
  30193. ]
  30194. ))
  30195. characterMakers.push(() => makeCharacter(
  30196. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30197. {
  30198. front: {
  30199. height: math.unit(1.8, "meters"),
  30200. weight: math.unit(85, "kg"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/azteck/front.svg",
  30204. extra: 2815 / 2625,
  30205. bottom: 89 / 2904
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(1.8, "meters"),
  30210. weight: math.unit(85, "kg"),
  30211. name: "Back",
  30212. image: {
  30213. source: "./media/characters/azteck/back.svg",
  30214. extra: 2856 / 2648,
  30215. bottom: 85 / 2941
  30216. }
  30217. },
  30218. frontDressed: {
  30219. height: math.unit(1.8, "meters"),
  30220. weight: math.unit(85, "kg"),
  30221. name: "Front (Dressed)",
  30222. image: {
  30223. source: "./media/characters/azteck/front-dressed.svg",
  30224. extra: 2147 / 2003,
  30225. bottom: 68 / 2215
  30226. }
  30227. },
  30228. head: {
  30229. height: math.unit(0.47, "meters"),
  30230. weight: math.unit(85, "kg"),
  30231. name: "Head",
  30232. image: {
  30233. source: "./media/characters/azteck/head.svg"
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Bite sized",
  30240. height: math.unit(16, "cm")
  30241. },
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(1.8, "meters"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/pidge/front.svg",
  30258. extra: 1936/1820,
  30259. bottom: 0/1936
  30260. }
  30261. },
  30262. back: {
  30263. height: math.unit(6, "feet"),
  30264. weight: math.unit(150, "lb"),
  30265. name: "Back",
  30266. image: {
  30267. source: "./media/characters/pidge/back.svg",
  30268. extra: 1938/1843,
  30269. bottom: 0/1938
  30270. }
  30271. },
  30272. casual: {
  30273. height: math.unit(6, "feet"),
  30274. weight: math.unit(150, "lb"),
  30275. name: "Casual",
  30276. image: {
  30277. source: "./media/characters/pidge/casual.svg",
  30278. extra: 1936/1820,
  30279. bottom: 0/1936
  30280. }
  30281. },
  30282. tech: {
  30283. height: math.unit(6, "feet"),
  30284. weight: math.unit(150, "lb"),
  30285. name: "Tech",
  30286. image: {
  30287. source: "./media/characters/pidge/tech.svg",
  30288. extra: 1802/1682,
  30289. bottom: 0/1802
  30290. }
  30291. },
  30292. head: {
  30293. height: math.unit(1.61, "feet"),
  30294. name: "Head",
  30295. image: {
  30296. source: "./media/characters/pidge/head.svg"
  30297. }
  30298. },
  30299. collar: {
  30300. height: math.unit(0.82, "feet"),
  30301. name: "Collar",
  30302. image: {
  30303. source: "./media/characters/pidge/collar.svg"
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Macro",
  30310. height: math.unit(2, "mile"),
  30311. default: true
  30312. },
  30313. {
  30314. name: "PUPPY",
  30315. height: math.unit(20, "miles")
  30316. },
  30317. ]
  30318. ))
  30319. characterMakers.push(() => makeCharacter(
  30320. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30321. {
  30322. front: {
  30323. height: math.unit(6, "feet"),
  30324. weight: math.unit(150, "lb"),
  30325. name: "Front",
  30326. image: {
  30327. source: "./media/characters/en/front.svg",
  30328. extra: 1697 / 1563,
  30329. bottom: 103 / 1800
  30330. }
  30331. },
  30332. back: {
  30333. height: math.unit(6, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Back",
  30336. image: {
  30337. source: "./media/characters/en/back.svg",
  30338. extra: 1700 / 1570,
  30339. bottom: 51 / 1751
  30340. }
  30341. },
  30342. frontDressed: {
  30343. height: math.unit(6, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Front (Dressed)",
  30346. image: {
  30347. source: "./media/characters/en/front-dressed.svg",
  30348. extra: 1697 / 1563,
  30349. bottom: 103 / 1800
  30350. }
  30351. },
  30352. backDressed: {
  30353. height: math.unit(6, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Back (Dressed)",
  30356. image: {
  30357. source: "./media/characters/en/back-dressed.svg",
  30358. extra: 1700 / 1570,
  30359. bottom: 51 / 1751
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(210, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30373. {
  30374. front: {
  30375. height: math.unit(6, "feet"),
  30376. weight: math.unit(150, "lb"),
  30377. name: "Front",
  30378. image: {
  30379. source: "./media/characters/haze-orris/front.svg",
  30380. extra: 3975 / 3525,
  30381. bottom: 137 / 4112
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Micro",
  30388. height: math.unit(150, "mm"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Casselene Yaro", species: ["fox"], 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/casselene-yaro/front.svg",
  30402. extra: 4721 / 4541,
  30403. bottom: 82 / 4803
  30404. }
  30405. },
  30406. back: {
  30407. height: math.unit(6, "feet"),
  30408. weight: math.unit(150, "lb"),
  30409. name: "Back",
  30410. image: {
  30411. source: "./media/characters/casselene-yaro/back.svg",
  30412. extra: 4569 / 4377,
  30413. bottom: 69 / 4638
  30414. }
  30415. },
  30416. dressed: {
  30417. height: math.unit(6, "feet"),
  30418. weight: math.unit(150, "lb"),
  30419. name: "Dressed",
  30420. image: {
  30421. source: "./media/characters/casselene-yaro/dressed.svg",
  30422. extra: 4721 / 4541,
  30423. bottom: 82 / 4803
  30424. }
  30425. },
  30426. maw: {
  30427. height: math.unit(1, "feet"),
  30428. name: "Maw",
  30429. image: {
  30430. source: "./media/characters/casselene-yaro/maw.svg"
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Macro",
  30437. height: math.unit(190, "feet"),
  30438. default: true
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30444. {
  30445. front: {
  30446. height: math.unit(10, "feet"),
  30447. weight: math.unit(15015, "lb"),
  30448. name: "Front",
  30449. image: {
  30450. source: "./media/characters/platine/front.svg",
  30451. extra: 1428/1353,
  30452. bottom: 31/1459
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(10, "feet"),
  30460. default: true
  30461. },
  30462. {
  30463. name: "Macro",
  30464. height: math.unit(100, "feet")
  30465. },
  30466. {
  30467. name: "Megamacro",
  30468. height: math.unit(1000, "feet")
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(15 + 5 / 12, "feet"),
  30477. weight: math.unit(4600, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/neapolitan-ananassa/front.svg",
  30481. extra: 2903 / 2736,
  30482. bottom: 0 / 2903
  30483. }
  30484. },
  30485. side: {
  30486. height: math.unit(15 + 5 / 12, "feet"),
  30487. weight: math.unit(4600, "lb"),
  30488. name: "Side",
  30489. image: {
  30490. source: "./media/characters/neapolitan-ananassa/side.svg",
  30491. extra: 2925 / 2719,
  30492. bottom: 0 / 2925
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(15 + 5 / 12, "feet"),
  30497. weight: math.unit(4600, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/neapolitan-ananassa/back.svg",
  30501. extra: 2903 / 2736,
  30502. bottom: 0 / 2903
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Normal",
  30509. height: math.unit(15 + 5 / 12, "feet"),
  30510. default: true
  30511. },
  30512. {
  30513. name: "Post-Millenium",
  30514. height: math.unit(35 + 5 / 12, "feet")
  30515. },
  30516. {
  30517. name: "Post-Era",
  30518. height: math.unit(450 + 5 / 12, "feet")
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30524. {
  30525. front: {
  30526. height: math.unit(300, "meters"),
  30527. weight: math.unit(125000, "tonnes"),
  30528. name: "Front",
  30529. image: {
  30530. source: "./media/characters/pazuzu/front.svg",
  30531. extra: 877 / 794,
  30532. bottom: 47 / 924
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Macro",
  30539. height: math.unit(300, "meters"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30546. {
  30547. side: {
  30548. height: math.unit(10 + 7 / 12, "feet"),
  30549. weight: math.unit(2.5, "tons"),
  30550. name: "Side",
  30551. image: {
  30552. source: "./media/characters/aasha/side.svg",
  30553. extra: 1345 / 1245,
  30554. bottom: 111 / 1456
  30555. }
  30556. },
  30557. back: {
  30558. height: math.unit(10 + 7 / 12, "feet"),
  30559. weight: math.unit(2.5, "tons"),
  30560. name: "Back",
  30561. image: {
  30562. source: "./media/characters/aasha/back.svg",
  30563. extra: 1133 / 1057,
  30564. bottom: 257 / 1390
  30565. }
  30566. },
  30567. },
  30568. [
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(10 + 7 / 12, "feet"),
  30572. default: true
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(6 + 3 / 12, "feet"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/nevan/front.svg",
  30584. extra: 704 / 704,
  30585. bottom: 28 / 732
  30586. }
  30587. },
  30588. back: {
  30589. height: math.unit(6 + 3 / 12, "feet"),
  30590. name: "Back",
  30591. image: {
  30592. source: "./media/characters/nevan/back.svg",
  30593. extra: 714 / 714,
  30594. bottom: 21 / 735
  30595. }
  30596. },
  30597. frontFlaccid: {
  30598. height: math.unit(6 + 3 / 12, "feet"),
  30599. name: "Front (Flaccid)",
  30600. image: {
  30601. source: "./media/characters/nevan/front-flaccid.svg",
  30602. extra: 704 / 704,
  30603. bottom: 28 / 732
  30604. }
  30605. },
  30606. frontErect: {
  30607. height: math.unit(6 + 3 / 12, "feet"),
  30608. name: "Front (Erect)",
  30609. image: {
  30610. source: "./media/characters/nevan/front-erect.svg",
  30611. extra: 704 / 704,
  30612. bottom: 28 / 732
  30613. }
  30614. },
  30615. backFlaccid: {
  30616. height: math.unit(6 + 3 / 12, "feet"),
  30617. name: "Back (Flaccid)",
  30618. image: {
  30619. source: "./media/characters/nevan/back-flaccid.svg",
  30620. extra: 714 / 714,
  30621. bottom: 21 / 735
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(6 + 3 / 12, "feet"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30635. {
  30636. front: {
  30637. height: math.unit(4, "feet"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/arhan/front.svg",
  30641. extra: 3368 / 3133,
  30642. bottom: 0 / 3368
  30643. }
  30644. },
  30645. side: {
  30646. height: math.unit(4, "feet"),
  30647. name: "Side",
  30648. image: {
  30649. source: "./media/characters/arhan/side.svg",
  30650. extra: 3347 / 3105,
  30651. bottom: 0 / 3347
  30652. }
  30653. },
  30654. tongue: {
  30655. height: math.unit(1.42, "feet"),
  30656. name: "Tongue",
  30657. image: {
  30658. source: "./media/characters/arhan/tongue.svg"
  30659. }
  30660. },
  30661. head: {
  30662. height: math.unit(0.85, "feet"),
  30663. name: "Head",
  30664. image: {
  30665. source: "./media/characters/arhan/head.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(4, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30679. {
  30680. front: {
  30681. height: math.unit(5 + 7.5 / 12, "feet"),
  30682. weight: math.unit(120, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/digi-duncan/front.svg",
  30686. extra: 330 / 326,
  30687. bottom: 16 / 346
  30688. }
  30689. },
  30690. side: {
  30691. height: math.unit(5 + 7.5 / 12, "feet"),
  30692. weight: math.unit(120, "lb"),
  30693. name: "Side",
  30694. image: {
  30695. source: "./media/characters/digi-duncan/side.svg",
  30696. extra: 341 / 337,
  30697. bottom: 1 / 342
  30698. }
  30699. },
  30700. back: {
  30701. height: math.unit(5 + 7.5 / 12, "feet"),
  30702. weight: math.unit(120, "lb"),
  30703. name: "Back",
  30704. image: {
  30705. source: "./media/characters/digi-duncan/back.svg",
  30706. extra: 330 / 326,
  30707. bottom: 12 / 342
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Speck",
  30714. height: math.unit(0.25, "mm")
  30715. },
  30716. {
  30717. name: "Micro",
  30718. height: math.unit(5, "mm")
  30719. },
  30720. {
  30721. name: "Tiny",
  30722. height: math.unit(0.5, "inches"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Human",
  30727. height: math.unit(5 + 7.5 / 12, "feet")
  30728. },
  30729. {
  30730. name: "Minigiant",
  30731. height: math.unit(8 + 5.25, "feet")
  30732. },
  30733. {
  30734. name: "Giant",
  30735. height: math.unit(2000, "feet")
  30736. },
  30737. {
  30738. name: "Mega",
  30739. height: math.unit(371.1, "miles")
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30745. {
  30746. front: {
  30747. height: math.unit(2, "meters"),
  30748. weight: math.unit(350, "kg"),
  30749. name: "Front",
  30750. image: {
  30751. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30752. extra: 898 / 838,
  30753. bottom: 9 / 907
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Micro",
  30760. height: math.unit(8, "meters")
  30761. },
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(50, "meters"),
  30765. default: true
  30766. },
  30767. {
  30768. name: "Macro",
  30769. height: math.unit(500, "meters")
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(6 + 6 / 12, "feet"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/khardesh/front.svg",
  30781. extra: 1788/1596,
  30782. bottom: 66/1854
  30783. }
  30784. },
  30785. back: {
  30786. height: math.unit(6 + 6 / 12, "feet"),
  30787. name: "Back",
  30788. image: {
  30789. source: "./media/characters/khardesh/back.svg",
  30790. extra: 1781/1584,
  30791. bottom: 68/1849
  30792. }
  30793. },
  30794. },
  30795. [
  30796. {
  30797. name: "Normal",
  30798. height: math.unit(6 + 6 / 12, "feet"),
  30799. default: true
  30800. },
  30801. {
  30802. name: "Normal+",
  30803. height: math.unit(4, "meters")
  30804. },
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(50, "meters")
  30808. },
  30809. {
  30810. name: "Macro+",
  30811. height: math.unit(100, "meters")
  30812. },
  30813. {
  30814. name: "Megamacro",
  30815. height: math.unit(20, "km")
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(6, "feet"),
  30824. weight: math.unit(150, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/kosho/front.svg",
  30828. extra: 1847 / 1847,
  30829. bottom: 86 / 1933
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Second-stage micro",
  30836. height: math.unit(0.5, "inches")
  30837. },
  30838. {
  30839. name: "First-stage micro",
  30840. height: math.unit(6, "inches")
  30841. },
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(6, "feet"),
  30845. default: true
  30846. },
  30847. {
  30848. name: "First-stage macro",
  30849. height: math.unit(72, "feet")
  30850. },
  30851. {
  30852. name: "Second-stage macro",
  30853. height: math.unit(864, "feet")
  30854. },
  30855. ]
  30856. ))
  30857. characterMakers.push(() => makeCharacter(
  30858. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30859. {
  30860. normal: {
  30861. height: math.unit(4 + 6 / 12, "feet"),
  30862. name: "Normal",
  30863. image: {
  30864. source: "./media/characters/hydra/normal.svg",
  30865. extra: 2833 / 2634,
  30866. bottom: 68 / 2901
  30867. }
  30868. },
  30869. smol: {
  30870. height: math.unit(0.705, "inches"),
  30871. name: "Smol",
  30872. image: {
  30873. source: "./media/characters/hydra/smol.svg",
  30874. extra: 2715 / 2540,
  30875. bottom: 0 / 2715
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(4 + 6 / 12, "feet"),
  30883. default: true
  30884. }
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(0.6, "cm"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/daz/front.svg",
  30895. extra: 1682 / 1164,
  30896. bottom: 42 / 1724
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Normal",
  30903. height: math.unit(0.6, "cm"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(235, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/theo-pangolin/front.svg",
  30917. extra: 1996 / 1969,
  30918. bottom: 115 / 2111
  30919. }
  30920. },
  30921. back: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(235, "lb"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/theo-pangolin/back.svg",
  30927. extra: 1979 / 1979,
  30928. bottom: 40 / 2019
  30929. }
  30930. },
  30931. feral: {
  30932. height: math.unit(2, "feet"),
  30933. weight: math.unit(30, "lb"),
  30934. name: "Feral",
  30935. image: {
  30936. source: "./media/characters/theo-pangolin/feral.svg",
  30937. extra: 803 / 791,
  30938. bottom: 181 / 984
  30939. }
  30940. },
  30941. footFive: {
  30942. height: math.unit(1.43, "feet"),
  30943. name: "Foot (Five Toes)",
  30944. image: {
  30945. source: "./media/characters/theo-pangolin/foot-five.svg"
  30946. }
  30947. },
  30948. footFour: {
  30949. height: math.unit(1.43, "feet"),
  30950. name: "Foot (Four Toes)",
  30951. image: {
  30952. source: "./media/characters/theo-pangolin/foot-four.svg"
  30953. }
  30954. },
  30955. handFour: {
  30956. height: math.unit(0.81, "feet"),
  30957. name: "Hand (Four Fingers)",
  30958. image: {
  30959. source: "./media/characters/theo-pangolin/hand-four.svg"
  30960. }
  30961. },
  30962. handThree: {
  30963. height: math.unit(0.81, "feet"),
  30964. name: "Hand (Three Fingers)",
  30965. image: {
  30966. source: "./media/characters/theo-pangolin/hand-three.svg"
  30967. }
  30968. },
  30969. headFront: {
  30970. height: math.unit(1.37, "feet"),
  30971. name: "Head (Front)",
  30972. image: {
  30973. source: "./media/characters/theo-pangolin/head-front.svg"
  30974. }
  30975. },
  30976. headSide: {
  30977. height: math.unit(1.43, "feet"),
  30978. name: "Head (Side)",
  30979. image: {
  30980. source: "./media/characters/theo-pangolin/head-side.svg"
  30981. }
  30982. },
  30983. tongue: {
  30984. height: math.unit(2.29, "feet"),
  30985. name: "Tongue",
  30986. image: {
  30987. source: "./media/characters/theo-pangolin/tongue.svg"
  30988. }
  30989. },
  30990. },
  30991. [
  30992. {
  30993. name: "Normal",
  30994. height: math.unit(6, "feet")
  30995. },
  30996. {
  30997. name: "Macro",
  30998. height: math.unit(400, "feet"),
  30999. default: true
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(6, "inches"),
  31008. weight: math.unit(0.036, "kg"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/renée/front.svg",
  31012. extra: 900 / 886,
  31013. bottom: 8 / 908
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Nano",
  31020. height: math.unit(1, "nm")
  31021. },
  31022. {
  31023. name: "Micro",
  31024. height: math.unit(1, "mm")
  31025. },
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(6, "inches")
  31029. },
  31030. {
  31031. name: "Macro",
  31032. height: math.unit(2000, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Megamacro",
  31037. height: math.unit(2, "km")
  31038. },
  31039. {
  31040. name: "Gigamacro",
  31041. height: math.unit(2000, "km")
  31042. },
  31043. {
  31044. name: "Teramacro",
  31045. height: math.unit(250000, "km")
  31046. },
  31047. ]
  31048. ))
  31049. characterMakers.push(() => makeCharacter(
  31050. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31051. {
  31052. front: {
  31053. height: math.unit(4, "meters"),
  31054. weight: math.unit(150, "kg"),
  31055. name: "Front",
  31056. image: {
  31057. source: "./media/characters/caledvwlch/front.svg",
  31058. extra: 1760 / 1551,
  31059. bottom: 28 / 1788
  31060. }
  31061. },
  31062. side: {
  31063. height: math.unit(4, "meters"),
  31064. weight: math.unit(150, "kg"),
  31065. name: "Side",
  31066. image: {
  31067. source: "./media/characters/caledvwlch/side.svg",
  31068. extra: 1605 / 1536,
  31069. bottom: 31 / 1636
  31070. }
  31071. },
  31072. back: {
  31073. height: math.unit(4, "meters"),
  31074. weight: math.unit(150, "kg"),
  31075. name: "Back",
  31076. image: {
  31077. source: "./media/characters/caledvwlch/back.svg",
  31078. extra: 1635 / 1565,
  31079. bottom: 27 / 1662
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "\"Incognito\"",
  31086. height: math.unit(4, "meters")
  31087. },
  31088. {
  31089. name: "Small rampage",
  31090. height: math.unit(600, "meters")
  31091. },
  31092. {
  31093. name: "Mega",
  31094. height: math.unit(30, "km")
  31095. },
  31096. {
  31097. name: "Home-size",
  31098. height: math.unit(50, "km"),
  31099. default: true
  31100. },
  31101. {
  31102. name: "Giga",
  31103. height: math.unit(300, "km")
  31104. },
  31105. {
  31106. name: "Lounging",
  31107. height: math.unit(11000, "km")
  31108. },
  31109. {
  31110. name: "Planet snacking",
  31111. height: math.unit(2000000, "km")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(6, "feet"),
  31120. weight: math.unit(215, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/sapphire-svell/front.svg",
  31124. extra: 495 / 455,
  31125. bottom: 20 / 515
  31126. }
  31127. },
  31128. back: {
  31129. height: math.unit(6, "feet"),
  31130. weight: math.unit(216, "lb"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/sapphire-svell/back.svg",
  31134. extra: 497 / 477,
  31135. bottom: 7 / 504
  31136. }
  31137. },
  31138. maw: {
  31139. height: math.unit(1.57, "feet"),
  31140. name: "Maw",
  31141. image: {
  31142. source: "./media/characters/sapphire-svell/maw.svg"
  31143. }
  31144. },
  31145. foot: {
  31146. height: math.unit(1.07, "feet"),
  31147. name: "Foot",
  31148. image: {
  31149. source: "./media/characters/sapphire-svell/foot.svg"
  31150. }
  31151. },
  31152. toering: {
  31153. height: math.unit(1.7, "inch"),
  31154. name: "Toering",
  31155. image: {
  31156. source: "./media/characters/sapphire-svell/toering.svg"
  31157. }
  31158. },
  31159. },
  31160. [
  31161. {
  31162. name: "Normal",
  31163. height: math.unit(300, "feet"),
  31164. default: true
  31165. },
  31166. {
  31167. name: "Augmented",
  31168. height: math.unit(1250, "feet")
  31169. },
  31170. {
  31171. name: "Unleashed",
  31172. height: math.unit(3000, "feet")
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31178. {
  31179. side: {
  31180. height: math.unit(2 + 3 / 12, "feet"),
  31181. weight: math.unit(110, "lb"),
  31182. name: "Side",
  31183. image: {
  31184. source: "./media/characters/glitch-flux/side.svg",
  31185. extra: 997 / 805,
  31186. bottom: 20 / 1017
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(2 + 3 / 12, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(4, "meters"),
  31203. name: "Front",
  31204. image: {
  31205. source: "./media/characters/mid/front.svg",
  31206. extra: 507 / 476,
  31207. bottom: 17 / 524
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(4, "meters"),
  31212. name: "Back",
  31213. image: {
  31214. source: "./media/characters/mid/back.svg",
  31215. extra: 519 / 487,
  31216. bottom: 7 / 526
  31217. }
  31218. },
  31219. stuck: {
  31220. height: math.unit(2.2, "meters"),
  31221. name: "Stuck",
  31222. image: {
  31223. source: "./media/characters/mid/stuck.svg",
  31224. extra: 1951 / 1869,
  31225. bottom: 88 / 2039
  31226. }
  31227. }
  31228. },
  31229. [
  31230. {
  31231. name: "Normal",
  31232. height: math.unit(4, "meters"),
  31233. default: true
  31234. },
  31235. {
  31236. name: "Big",
  31237. height: math.unit(10, "meters")
  31238. },
  31239. {
  31240. name: "Macro",
  31241. height: math.unit(800, "meters")
  31242. },
  31243. {
  31244. name: "Megamacro",
  31245. height: math.unit(100, "km")
  31246. },
  31247. {
  31248. name: "Overgrown",
  31249. height: math.unit(1, "parsec")
  31250. },
  31251. ]
  31252. ))
  31253. characterMakers.push(() => makeCharacter(
  31254. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31255. {
  31256. front: {
  31257. height: math.unit(2.5, "meters"),
  31258. weight: math.unit(225, "kg"),
  31259. name: "Front",
  31260. image: {
  31261. source: "./media/characters/iris/front.svg",
  31262. extra: 3348 / 3251,
  31263. bottom: 205 / 3553
  31264. }
  31265. },
  31266. maw: {
  31267. height: math.unit(0.56, "meter"),
  31268. name: "Maw",
  31269. image: {
  31270. source: "./media/characters/iris/maw.svg"
  31271. }
  31272. },
  31273. },
  31274. [
  31275. {
  31276. name: "Mewter cat",
  31277. height: math.unit(1.2, "meters")
  31278. },
  31279. {
  31280. name: "Minimacro",
  31281. height: math.unit(2.5, "meters"),
  31282. default: true
  31283. },
  31284. {
  31285. name: "Macro",
  31286. height: math.unit(180, "meters")
  31287. },
  31288. {
  31289. name: "Megamacro",
  31290. height: math.unit(2746, "meters")
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31296. {
  31297. front: {
  31298. height: math.unit(6, "feet"),
  31299. weight: math.unit(135, "lb"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/axel/front.svg",
  31303. extra: 908 / 908,
  31304. bottom: 58 / 966
  31305. }
  31306. },
  31307. side: {
  31308. height: math.unit(6, "feet"),
  31309. weight: math.unit(135, "lb"),
  31310. name: "Side",
  31311. image: {
  31312. source: "./media/characters/axel/side.svg",
  31313. extra: 958 / 958,
  31314. bottom: 11 / 969
  31315. }
  31316. },
  31317. back: {
  31318. height: math.unit(6, "feet"),
  31319. weight: math.unit(135, "lb"),
  31320. name: "Back",
  31321. image: {
  31322. source: "./media/characters/axel/back.svg",
  31323. extra: 887 / 887,
  31324. bottom: 34 / 921
  31325. }
  31326. },
  31327. head: {
  31328. height: math.unit(1.07, "feet"),
  31329. name: "Head",
  31330. image: {
  31331. source: "./media/characters/axel/head.svg"
  31332. }
  31333. },
  31334. beak: {
  31335. height: math.unit(1.4, "feet"),
  31336. name: "Beak",
  31337. image: {
  31338. source: "./media/characters/axel/beak.svg"
  31339. }
  31340. },
  31341. beakSide: {
  31342. height: math.unit(1.4, "feet"),
  31343. name: "Beak Side",
  31344. image: {
  31345. source: "./media/characters/axel/beak-side.svg"
  31346. }
  31347. },
  31348. sheath: {
  31349. height: math.unit(0.5, "feet"),
  31350. name: "Sheath",
  31351. image: {
  31352. source: "./media/characters/axel/sheath.svg"
  31353. }
  31354. },
  31355. dick: {
  31356. height: math.unit(0.98, "feet"),
  31357. name: "Dick",
  31358. image: {
  31359. source: "./media/characters/axel/dick.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Macro",
  31366. height: math.unit(68, "meters"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(3.5, "meters"),
  31376. weight: math.unit(1200, "kg"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/joanna/front.svg",
  31380. extra: 1596 / 1488,
  31381. bottom: 29 / 1625
  31382. }
  31383. },
  31384. back: {
  31385. height: math.unit(3.5, "meters"),
  31386. weight: math.unit(1200, "kg"),
  31387. name: "Back",
  31388. image: {
  31389. source: "./media/characters/joanna/back.svg",
  31390. extra: 1594 / 1495,
  31391. bottom: 26 / 1620
  31392. }
  31393. },
  31394. frontShorts: {
  31395. height: math.unit(3.5, "meters"),
  31396. weight: math.unit(1200, "kg"),
  31397. name: "Front (Shorts)",
  31398. image: {
  31399. source: "./media/characters/joanna/front-shorts.svg",
  31400. extra: 1596 / 1488,
  31401. bottom: 29 / 1625
  31402. }
  31403. },
  31404. frontBiker: {
  31405. height: math.unit(3.5, "meters"),
  31406. weight: math.unit(1200, "kg"),
  31407. name: "Front (Biker)",
  31408. image: {
  31409. source: "./media/characters/joanna/front-biker.svg",
  31410. extra: 1596 / 1488,
  31411. bottom: 29 / 1625
  31412. }
  31413. },
  31414. backBiker: {
  31415. height: math.unit(3.5, "meters"),
  31416. weight: math.unit(1200, "kg"),
  31417. name: "Back (Biker)",
  31418. image: {
  31419. source: "./media/characters/joanna/back-biker.svg",
  31420. extra: 1594 / 1495,
  31421. bottom: 88 / 1682
  31422. }
  31423. },
  31424. bikeLeft: {
  31425. height: math.unit(2.4, "meters"),
  31426. weight: math.unit(1600, "kg"),
  31427. name: "Bike (Left)",
  31428. image: {
  31429. source: "./media/characters/joanna/bike-left.svg",
  31430. extra: 720 / 720,
  31431. bottom: 8 / 728
  31432. }
  31433. },
  31434. bikeRight: {
  31435. height: math.unit(2.4, "meters"),
  31436. weight: math.unit(1600, "kg"),
  31437. name: "Bike (Right)",
  31438. image: {
  31439. source: "./media/characters/joanna/bike-right.svg",
  31440. extra: 720 / 720,
  31441. bottom: 8 / 728
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Incognito",
  31448. height: math.unit(3.5, "meters")
  31449. },
  31450. {
  31451. name: "Casual Big",
  31452. height: math.unit(200, "meters")
  31453. },
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(600, "meters")
  31457. },
  31458. {
  31459. name: "Original",
  31460. height: math.unit(20, "km"),
  31461. default: true
  31462. },
  31463. {
  31464. name: "Giga",
  31465. height: math.unit(400, "km")
  31466. },
  31467. {
  31468. name: "Lounging",
  31469. height: math.unit(1500, "km")
  31470. },
  31471. {
  31472. name: "Planetary",
  31473. height: math.unit(200000, "km")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(6, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/hugo-sigil/front.svg",
  31486. extra: 522 / 500,
  31487. bottom: 2 / 524
  31488. }
  31489. },
  31490. back: {
  31491. height: math.unit(6, "feet"),
  31492. weight: math.unit(150, "lb"),
  31493. name: "Back",
  31494. image: {
  31495. source: "./media/characters/hugo-sigil/back.svg",
  31496. extra: 519 / 495,
  31497. bottom: 5 / 524
  31498. }
  31499. },
  31500. maw: {
  31501. height: math.unit(1.4, "feet"),
  31502. weight: math.unit(150, "lb"),
  31503. name: "Maw",
  31504. image: {
  31505. source: "./media/characters/hugo-sigil/maw.svg"
  31506. }
  31507. },
  31508. feet: {
  31509. height: math.unit(1.56, "feet"),
  31510. weight: math.unit(150, "lb"),
  31511. name: "Feet",
  31512. image: {
  31513. source: "./media/characters/hugo-sigil/feet.svg",
  31514. extra: 177 / 177,
  31515. bottom: 12 / 189
  31516. }
  31517. },
  31518. },
  31519. [
  31520. {
  31521. name: "Normal",
  31522. height: math.unit(6, "feet")
  31523. },
  31524. {
  31525. name: "Macro",
  31526. height: math.unit(200, "feet"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(6, "feet"),
  31536. weight: math.unit(150, "lb"),
  31537. name: "Front",
  31538. image: {
  31539. source: "./media/characters/peri/front.svg",
  31540. extra: 2354 / 2233,
  31541. bottom: 49 / 2403
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Really Small",
  31548. height: math.unit(1, "nm")
  31549. },
  31550. {
  31551. name: "Micro",
  31552. height: math.unit(4, "inches")
  31553. },
  31554. {
  31555. name: "Normal",
  31556. height: math.unit(7, "inches"),
  31557. default: true
  31558. },
  31559. {
  31560. name: "Macro",
  31561. height: math.unit(400, "feet")
  31562. },
  31563. {
  31564. name: "Megamacro",
  31565. height: math.unit(100, "miles")
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31571. {
  31572. frontSlim: {
  31573. height: math.unit(7, "feet"),
  31574. name: "Front (Slim)",
  31575. image: {
  31576. source: "./media/characters/issilora/front-slim.svg",
  31577. extra: 529 / 449,
  31578. bottom: 53 / 582
  31579. }
  31580. },
  31581. sideSlim: {
  31582. height: math.unit(7, "feet"),
  31583. name: "Side (Slim)",
  31584. image: {
  31585. source: "./media/characters/issilora/side-slim.svg",
  31586. extra: 570 / 480,
  31587. bottom: 30 / 600
  31588. }
  31589. },
  31590. backSlim: {
  31591. height: math.unit(7, "feet"),
  31592. name: "Back (Slim)",
  31593. image: {
  31594. source: "./media/characters/issilora/back-slim.svg",
  31595. extra: 537 / 455,
  31596. bottom: 46 / 583
  31597. }
  31598. },
  31599. frontBuff: {
  31600. height: math.unit(7, "feet"),
  31601. name: "Front (Buff)",
  31602. image: {
  31603. source: "./media/characters/issilora/front-buff.svg",
  31604. extra: 2310 / 2035,
  31605. bottom: 335 / 2645
  31606. }
  31607. },
  31608. head: {
  31609. height: math.unit(1.94, "feet"),
  31610. name: "Head",
  31611. image: {
  31612. source: "./media/characters/issilora/head.svg"
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Minimum",
  31619. height: math.unit(7, "feet")
  31620. },
  31621. {
  31622. name: "Comfortable",
  31623. height: math.unit(17, "feet")
  31624. },
  31625. {
  31626. name: "Fun Size",
  31627. height: math.unit(47, "feet")
  31628. },
  31629. {
  31630. name: "Natural Macro",
  31631. height: math.unit(137, "feet"),
  31632. default: true
  31633. },
  31634. {
  31635. name: "Maximum Kaiju",
  31636. height: math.unit(397, "feet")
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31642. {
  31643. front: {
  31644. height: math.unit(50 + 9/12, "feet"),
  31645. weight: math.unit(32.8, "tons"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/irb'iiritaahn/front.svg",
  31649. extra: 1878/1826,
  31650. bottom: 326/2204
  31651. }
  31652. },
  31653. back: {
  31654. height: math.unit(50 + 9/12, "feet"),
  31655. weight: math.unit(32.8, "tons"),
  31656. name: "Back",
  31657. image: {
  31658. source: "./media/characters/irb'iiritaahn/back.svg",
  31659. extra: 2052/2018,
  31660. bottom: 152/2204
  31661. }
  31662. },
  31663. head: {
  31664. height: math.unit(12.86, "feet"),
  31665. name: "Head",
  31666. image: {
  31667. source: "./media/characters/irb'iiritaahn/head.svg"
  31668. }
  31669. },
  31670. maw: {
  31671. height: math.unit(9.66, "feet"),
  31672. name: "Maw",
  31673. image: {
  31674. source: "./media/characters/irb'iiritaahn/maw.svg"
  31675. }
  31676. },
  31677. frontDick: {
  31678. height: math.unit(8.78461, "feet"),
  31679. name: "Front Dick",
  31680. image: {
  31681. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31682. }
  31683. },
  31684. rearDick: {
  31685. height: math.unit(8.78461, "feet"),
  31686. name: "Rear Dick",
  31687. image: {
  31688. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31689. }
  31690. },
  31691. rearDickUnfolded: {
  31692. height: math.unit(8.78, "feet"),
  31693. name: "Rear Dick (Unfolded)",
  31694. image: {
  31695. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31696. }
  31697. },
  31698. wings: {
  31699. height: math.unit(43, "feet"),
  31700. name: "Wings",
  31701. image: {
  31702. source: "./media/characters/irb'iiritaahn/wings.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Macro",
  31709. height: math.unit(50 + 9/12, "feet"),
  31710. default: true
  31711. },
  31712. ]
  31713. ))
  31714. characterMakers.push(() => makeCharacter(
  31715. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31716. {
  31717. front: {
  31718. height: math.unit(205, "cm"),
  31719. weight: math.unit(102, "kg"),
  31720. name: "Front",
  31721. image: {
  31722. source: "./media/characters/irbisgreif/front.svg",
  31723. extra: 785/706,
  31724. bottom: 13/798
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(205, "cm"),
  31729. weight: math.unit(102, "kg"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/irbisgreif/back.svg",
  31733. extra: 713/701,
  31734. bottom: 26/739
  31735. }
  31736. },
  31737. frontDressed: {
  31738. height: math.unit(216, "cm"),
  31739. weight: math.unit(102, "kg"),
  31740. name: "Front-dressed",
  31741. image: {
  31742. source: "./media/characters/irbisgreif/front-dressed.svg",
  31743. extra: 902/776,
  31744. bottom: 14/916
  31745. }
  31746. },
  31747. sideDressed: {
  31748. height: math.unit(195, "cm"),
  31749. weight: math.unit(102, "kg"),
  31750. name: "Side-dressed",
  31751. image: {
  31752. source: "./media/characters/irbisgreif/side-dressed.svg",
  31753. extra: 788/688,
  31754. bottom: 21/809
  31755. }
  31756. },
  31757. backDressed: {
  31758. height: math.unit(216, "cm"),
  31759. weight: math.unit(102, "kg"),
  31760. name: "Back-dressed",
  31761. image: {
  31762. source: "./media/characters/irbisgreif/back-dressed.svg",
  31763. extra: 901/783,
  31764. bottom: 10/911
  31765. }
  31766. },
  31767. dick: {
  31768. height: math.unit(0.49, "feet"),
  31769. name: "Dick",
  31770. image: {
  31771. source: "./media/characters/irbisgreif/dick.svg"
  31772. }
  31773. },
  31774. wingTop: {
  31775. height: math.unit(1.93 , "feet"),
  31776. name: "Wing-top",
  31777. image: {
  31778. source: "./media/characters/irbisgreif/wing-top.svg"
  31779. }
  31780. },
  31781. wingBottom: {
  31782. height: math.unit(1.93 , "feet"),
  31783. name: "Wing-bottom",
  31784. image: {
  31785. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(216, "cm"),
  31793. default: true
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31799. {
  31800. front: {
  31801. height: math.unit(6, "feet"),
  31802. weight: math.unit(150, "lb"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/pride/front.svg",
  31806. extra: 1299/1230,
  31807. bottom: 18/1317
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(7, "feet")
  31815. },
  31816. {
  31817. name: "Mini-macro",
  31818. height: math.unit(11, "feet")
  31819. },
  31820. {
  31821. name: "Macro",
  31822. height: math.unit(15, "meters"),
  31823. default: true
  31824. },
  31825. {
  31826. name: "Macro+",
  31827. height: math.unit(40, "meters")
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31833. {
  31834. front: {
  31835. height: math.unit(4 + 2 / 12, "feet"),
  31836. weight: math.unit(95, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/vaelophis-nyx/front.svg",
  31840. extra: 2532/2330,
  31841. bottom: 0/2532
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(4 + 2 / 12, "feet"),
  31846. weight: math.unit(95, "lb"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/vaelophis-nyx/back.svg",
  31850. extra: 2484/2361,
  31851. bottom: 0/2484
  31852. }
  31853. },
  31854. feralSide: {
  31855. height: math.unit(2 + 1/12, "feet"),
  31856. weight: math.unit(20, "lb"),
  31857. name: "Feral (Side)",
  31858. image: {
  31859. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31860. extra: 1721/1581,
  31861. bottom: 70/1791
  31862. }
  31863. },
  31864. feralLazing: {
  31865. height: math.unit(1.08, "feet"),
  31866. weight: math.unit(20, "lb"),
  31867. name: "Feral (Lazing)",
  31868. image: {
  31869. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31870. extra: 822/822,
  31871. bottom: 248/1070
  31872. }
  31873. },
  31874. ear: {
  31875. height: math.unit(0.416, "feet"),
  31876. name: "Ear",
  31877. image: {
  31878. source: "./media/characters/vaelophis-nyx/ear.svg"
  31879. }
  31880. },
  31881. eye: {
  31882. height: math.unit(0.0748, "feet"),
  31883. name: "Eye",
  31884. image: {
  31885. source: "./media/characters/vaelophis-nyx/eye.svg"
  31886. }
  31887. },
  31888. mouth: {
  31889. height: math.unit(0.378, "feet"),
  31890. name: "Mouth",
  31891. image: {
  31892. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31893. }
  31894. },
  31895. spade: {
  31896. height: math.unit(0.55, "feet"),
  31897. name: "Spade",
  31898. image: {
  31899. source: "./media/characters/vaelophis-nyx/spade.svg"
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(4 + 2/12, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31913. {
  31914. front: {
  31915. height: math.unit(7, "feet"),
  31916. weight: math.unit(231, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/flux/front.svg",
  31920. extra: 919/871,
  31921. bottom: 0/919
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(7, "feet"),
  31926. weight: math.unit(231, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/flux/back.svg",
  31930. extra: 1040/992,
  31931. bottom: 0/1040
  31932. }
  31933. },
  31934. frontDressed: {
  31935. height: math.unit(7, "feet"),
  31936. weight: math.unit(231, "lb"),
  31937. name: "Front (Dressed)",
  31938. image: {
  31939. source: "./media/characters/flux/front-dressed.svg",
  31940. extra: 919/871,
  31941. bottom: 0/919
  31942. }
  31943. },
  31944. feralSide: {
  31945. height: math.unit(5, "feet"),
  31946. weight: math.unit(150, "lb"),
  31947. name: "Feral (Side)",
  31948. image: {
  31949. source: "./media/characters/flux/feral-side.svg",
  31950. extra: 598/528,
  31951. bottom: 28/626
  31952. }
  31953. },
  31954. head: {
  31955. height: math.unit(1.585, "feet"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/flux/head.svg"
  31959. }
  31960. },
  31961. headSide: {
  31962. height: math.unit(1.74, "feet"),
  31963. name: "Head (Side)",
  31964. image: {
  31965. source: "./media/characters/flux/head-side.svg"
  31966. }
  31967. },
  31968. headSideFire: {
  31969. height: math.unit(1.76, "feet"),
  31970. name: "Head (Side, Fire)",
  31971. image: {
  31972. source: "./media/characters/flux/head-side-fire.svg"
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Normal",
  31979. height: math.unit(7, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(9, "feet"),
  31989. weight: math.unit(1012, "lb"),
  31990. name: "Front",
  31991. image: {
  31992. source: "./media/characters/ulfra-lupae/front.svg",
  31993. extra: 1083/1011,
  31994. bottom: 67/1150
  31995. }
  31996. },
  31997. },
  31998. [
  31999. {
  32000. name: "Micro",
  32001. height: math.unit(6, "inches")
  32002. },
  32003. {
  32004. name: "Socializing",
  32005. height: math.unit(6 + 5/12, "feet")
  32006. },
  32007. {
  32008. name: "Normal",
  32009. height: math.unit(9, "feet"),
  32010. default: true
  32011. },
  32012. {
  32013. name: "Macro",
  32014. height: math.unit(150, "feet")
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(5 + 2/12, "feet"),
  32023. weight: math.unit(120, "lb"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/timber/front.svg",
  32027. extra: 2814/2705,
  32028. bottom: 181/2995
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(5 + 2/12, "feet"),
  32036. default: true
  32037. },
  32038. ]
  32039. ))
  32040. characterMakers.push(() => makeCharacter(
  32041. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32042. {
  32043. front: {
  32044. height: math.unit(9, "feet"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/nicki/front.svg",
  32048. extra: 1240/990,
  32049. bottom: 45/1285
  32050. },
  32051. form: "anthro",
  32052. default: true
  32053. },
  32054. side: {
  32055. height: math.unit(9, "feet"),
  32056. name: "Side",
  32057. image: {
  32058. source: "./media/characters/nicki/side.svg",
  32059. extra: 1047/973,
  32060. bottom: 61/1108
  32061. },
  32062. form: "anthro"
  32063. },
  32064. back: {
  32065. height: math.unit(9, "feet"),
  32066. name: "Back",
  32067. image: {
  32068. source: "./media/characters/nicki/back.svg",
  32069. extra: 1006/965,
  32070. bottom: 39/1045
  32071. },
  32072. form: "anthro"
  32073. },
  32074. taur: {
  32075. height: math.unit(15, "feet"),
  32076. name: "Taur",
  32077. image: {
  32078. source: "./media/characters/nicki/taur.svg",
  32079. extra: 1592/1347,
  32080. bottom: 0/1592
  32081. },
  32082. form: "taur",
  32083. default: true
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Normal",
  32089. height: math.unit(9, "feet"),
  32090. form: "anthro",
  32091. default: true
  32092. },
  32093. {
  32094. name: "Normal",
  32095. height: math.unit(15, "feet"),
  32096. form: "taur",
  32097. default: true
  32098. }
  32099. ],
  32100. {
  32101. "anthro": {
  32102. name: "Anthro",
  32103. default: true
  32104. },
  32105. "taur": {
  32106. name: "Taur"
  32107. }
  32108. }
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(7 + 10/12, "feet"),
  32115. weight: math.unit(3.5, "tons"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/lee/front.svg",
  32119. extra: 1773/1615,
  32120. bottom: 86/1859
  32121. }
  32122. },
  32123. hand: {
  32124. height: math.unit(1.78, "feet"),
  32125. name: "Hand",
  32126. image: {
  32127. source: "./media/characters/lee/hand.svg"
  32128. }
  32129. },
  32130. maw: {
  32131. height: math.unit(1.18, "feet"),
  32132. name: "Maw",
  32133. image: {
  32134. source: "./media/characters/lee/maw.svg"
  32135. }
  32136. },
  32137. },
  32138. [
  32139. {
  32140. name: "Normal",
  32141. height: math.unit(7 + 10/12, "feet"),
  32142. default: true
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32148. {
  32149. front: {
  32150. height: math.unit(9, "feet"),
  32151. name: "Front",
  32152. image: {
  32153. source: "./media/characters/guti/front.svg",
  32154. extra: 4551/4355,
  32155. bottom: 123/4674
  32156. }
  32157. },
  32158. tongue: {
  32159. height: math.unit(1, "feet"),
  32160. name: "Tongue",
  32161. image: {
  32162. source: "./media/characters/guti/tongue.svg"
  32163. }
  32164. },
  32165. paw: {
  32166. height: math.unit(1.18, "feet"),
  32167. name: "Paw",
  32168. image: {
  32169. source: "./media/characters/guti/paw.svg"
  32170. }
  32171. },
  32172. },
  32173. [
  32174. {
  32175. name: "Normal",
  32176. height: math.unit(9, "feet"),
  32177. default: true
  32178. },
  32179. ]
  32180. ))
  32181. characterMakers.push(() => makeCharacter(
  32182. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32183. {
  32184. side: {
  32185. height: math.unit(5, "meters"),
  32186. name: "Side",
  32187. image: {
  32188. source: "./media/characters/vesper/side.svg",
  32189. extra: 1605/1518,
  32190. bottom: 0/1605
  32191. }
  32192. },
  32193. },
  32194. [
  32195. {
  32196. name: "Small",
  32197. height: math.unit(5, "meters")
  32198. },
  32199. {
  32200. name: "Sage",
  32201. height: math.unit(100, "meters"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Fun Size",
  32206. height: math.unit(600, "meters")
  32207. },
  32208. {
  32209. name: "Goddess",
  32210. height: math.unit(20000, "km")
  32211. },
  32212. {
  32213. name: "Maximum",
  32214. height: math.unit(5, "galaxies")
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32220. {
  32221. front: {
  32222. height: math.unit(6 + 3/12, "feet"),
  32223. weight: math.unit(190, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/gawain/front.svg",
  32227. extra: 2222/2139,
  32228. bottom: 90/2312
  32229. }
  32230. },
  32231. back: {
  32232. height: math.unit(6 + 3/12, "feet"),
  32233. weight: math.unit(190, "lb"),
  32234. name: "Back",
  32235. image: {
  32236. source: "./media/characters/gawain/back.svg",
  32237. extra: 2199/2111,
  32238. bottom: 73/2272
  32239. }
  32240. },
  32241. },
  32242. [
  32243. {
  32244. name: "Normal",
  32245. height: math.unit(6 + 3/12, "feet"),
  32246. default: true
  32247. },
  32248. ]
  32249. ))
  32250. characterMakers.push(() => makeCharacter(
  32251. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32252. {
  32253. side: {
  32254. height: math.unit(3.5, "meters"),
  32255. weight: math.unit(16000, "lb"),
  32256. name: "Side",
  32257. image: {
  32258. source: "./media/characters/dascalti/side.svg",
  32259. extra: 392/273,
  32260. bottom: 47/439
  32261. }
  32262. },
  32263. breath: {
  32264. height: math.unit(7.4, "feet"),
  32265. name: "Breath",
  32266. image: {
  32267. source: "./media/characters/dascalti/breath.svg"
  32268. }
  32269. },
  32270. fed: {
  32271. height: math.unit(3.6, "meters"),
  32272. weight: math.unit(16000, "lb"),
  32273. name: "Fed",
  32274. image: {
  32275. source: "./media/characters/dascalti/fed.svg",
  32276. extra: 1419/820,
  32277. bottom: 95/1514
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(3.5, "meters"),
  32285. default: true
  32286. },
  32287. ]
  32288. ))
  32289. characterMakers.push(() => makeCharacter(
  32290. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32291. {
  32292. front: {
  32293. height: math.unit(3 + 5/12, "feet"),
  32294. name: "Front",
  32295. image: {
  32296. source: "./media/characters/mauve/front.svg",
  32297. extra: 1126/1033,
  32298. bottom: 65/1191
  32299. }
  32300. },
  32301. side: {
  32302. height: math.unit(3 + 5/12, "feet"),
  32303. name: "Side",
  32304. image: {
  32305. source: "./media/characters/mauve/side.svg",
  32306. extra: 1089/1001,
  32307. bottom: 29/1118
  32308. }
  32309. },
  32310. back: {
  32311. height: math.unit(3 + 5/12, "feet"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/mauve/back.svg",
  32315. extra: 1173/1053,
  32316. bottom: 109/1282
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(3 + 5/12, "feet"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6 + 3/12, "feet"),
  32333. weight: math.unit(430, "lb"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/carlos/front.svg",
  32337. extra: 1964/1913,
  32338. bottom: 70/2034
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(6 + 3/12, "feet"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32352. {
  32353. back: {
  32354. height: math.unit(5 + 10/12, "feet"),
  32355. weight: math.unit(200, "lb"),
  32356. name: "Back",
  32357. image: {
  32358. source: "./media/characters/jax/back.svg",
  32359. extra: 764/739,
  32360. bottom: 25/789
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(5 + 10/12, "feet"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(8, "feet"),
  32377. weight: math.unit(250, "lb"),
  32378. name: "Front",
  32379. image: {
  32380. source: "./media/characters/eikthynir/front.svg",
  32381. extra: 1332/1166,
  32382. bottom: 82/1414
  32383. }
  32384. },
  32385. back: {
  32386. height: math.unit(8, "feet"),
  32387. weight: math.unit(250, "lb"),
  32388. name: "Back",
  32389. image: {
  32390. source: "./media/characters/eikthynir/back.svg",
  32391. extra: 1342/1190,
  32392. bottom: 19/1361
  32393. }
  32394. },
  32395. dick: {
  32396. height: math.unit(2.35, "feet"),
  32397. name: "Dick",
  32398. image: {
  32399. source: "./media/characters/eikthynir/dick.svg"
  32400. }
  32401. },
  32402. },
  32403. [
  32404. {
  32405. name: "Normal",
  32406. height: math.unit(8, "feet"),
  32407. default: true
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(99, "meters"),
  32416. weight: math.unit(13000, "tons"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/zlmos/front.svg",
  32420. extra: 2202/1992,
  32421. bottom: 315/2517
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Macro",
  32428. height: math.unit(99, "meters"),
  32429. default: true
  32430. },
  32431. ]
  32432. ))
  32433. characterMakers.push(() => makeCharacter(
  32434. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32435. {
  32436. front: {
  32437. height: math.unit(6 + 5/12, "feet"),
  32438. name: "Front",
  32439. image: {
  32440. source: "./media/characters/purri/front.svg",
  32441. extra: 1698/1610,
  32442. bottom: 32/1730
  32443. }
  32444. },
  32445. frontAlt: {
  32446. height: math.unit(6 + 5/12, "feet"),
  32447. name: "Front (Alt)",
  32448. image: {
  32449. source: "./media/characters/purri/front-alt.svg",
  32450. extra: 450/420,
  32451. bottom: 26/476
  32452. }
  32453. },
  32454. boots: {
  32455. height: math.unit(5.5, "feet"),
  32456. name: "Boots",
  32457. image: {
  32458. source: "./media/characters/purri/boots.svg",
  32459. extra: 905/853,
  32460. bottom: 18/923
  32461. }
  32462. },
  32463. lying: {
  32464. height: math.unit(2, "feet"),
  32465. name: "Lying",
  32466. image: {
  32467. source: "./media/characters/purri/lying.svg",
  32468. extra: 940/843,
  32469. bottom: 146/1086
  32470. }
  32471. },
  32472. devious: {
  32473. height: math.unit(1.77, "feet"),
  32474. name: "Devious",
  32475. image: {
  32476. source: "./media/characters/purri/devious.svg",
  32477. extra: 1440/1155,
  32478. bottom: 147/1587
  32479. }
  32480. },
  32481. bean: {
  32482. height: math.unit(1.94, "feet"),
  32483. name: "Bean",
  32484. image: {
  32485. source: "./media/characters/purri/bean.svg"
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Micro",
  32492. height: math.unit(1, "mm")
  32493. },
  32494. {
  32495. name: "Normal",
  32496. height: math.unit(6 + 5/12, "feet"),
  32497. default: true
  32498. },
  32499. {
  32500. name: "Macro :3c",
  32501. height: math.unit(2, "miles")
  32502. },
  32503. ]
  32504. ))
  32505. characterMakers.push(() => makeCharacter(
  32506. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32507. {
  32508. front: {
  32509. height: math.unit(6 + 2/12, "feet"),
  32510. weight: math.unit(250, "lb"),
  32511. name: "Front",
  32512. image: {
  32513. source: "./media/characters/moonlight/front.svg",
  32514. extra: 1044/908,
  32515. bottom: 56/1100
  32516. }
  32517. },
  32518. feral: {
  32519. height: math.unit(3 + 1/12, "feet"),
  32520. weight: math.unit(50, "kg"),
  32521. name: "Feral",
  32522. image: {
  32523. source: "./media/characters/moonlight/feral.svg",
  32524. extra: 3705/2791,
  32525. bottom: 145/3850
  32526. }
  32527. },
  32528. paw: {
  32529. height: math.unit(1, "feet"),
  32530. name: "Paw",
  32531. image: {
  32532. source: "./media/characters/moonlight/paw.svg"
  32533. }
  32534. },
  32535. paws: {
  32536. height: math.unit(0.98, "feet"),
  32537. name: "Paws",
  32538. image: {
  32539. source: "./media/characters/moonlight/paws.svg",
  32540. extra: 939/939,
  32541. bottom: 50/989
  32542. }
  32543. },
  32544. mouth: {
  32545. height: math.unit(0.48, "feet"),
  32546. name: "Mouth",
  32547. image: {
  32548. source: "./media/characters/moonlight/mouth.svg"
  32549. }
  32550. },
  32551. dick: {
  32552. height: math.unit(1.46, "feet"),
  32553. name: "Dick",
  32554. image: {
  32555. source: "./media/characters/moonlight/dick.svg"
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Normal",
  32562. height: math.unit(6 + 2/12, "feet"),
  32563. default: true
  32564. },
  32565. {
  32566. name: "Macro",
  32567. height: math.unit(300, "feet")
  32568. },
  32569. {
  32570. name: "Macro+",
  32571. height: math.unit(1, "mile")
  32572. },
  32573. {
  32574. name: "Mt. Moon",
  32575. height: math.unit(5, "miles")
  32576. },
  32577. {
  32578. name: "Megamacro",
  32579. height: math.unit(15, "miles")
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32585. {
  32586. back: {
  32587. height: math.unit(6, "feet"),
  32588. weight: math.unit(150, "lb"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/sylen/back.svg",
  32592. extra: 1335/1273,
  32593. bottom: 107/1442
  32594. }
  32595. },
  32596. },
  32597. [
  32598. {
  32599. name: "Normal",
  32600. height: math.unit(5 + 5/12, "feet")
  32601. },
  32602. {
  32603. name: "Megamacro",
  32604. height: math.unit(3, "miles"),
  32605. default: true
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(6, "feet"),
  32614. weight: math.unit(190, "lb"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/huttser/front.svg",
  32618. extra: 1152/1058,
  32619. bottom: 23/1175
  32620. }
  32621. },
  32622. side: {
  32623. height: math.unit(6, "feet"),
  32624. weight: math.unit(190, "lb"),
  32625. name: "Side",
  32626. image: {
  32627. source: "./media/characters/huttser/side.svg",
  32628. extra: 1174/1065,
  32629. bottom: 18/1192
  32630. }
  32631. },
  32632. back: {
  32633. height: math.unit(6, "feet"),
  32634. weight: math.unit(190, "lb"),
  32635. name: "Back",
  32636. image: {
  32637. source: "./media/characters/huttser/back.svg",
  32638. extra: 1158/1056,
  32639. bottom: 12/1170
  32640. }
  32641. },
  32642. },
  32643. [
  32644. ]
  32645. ))
  32646. characterMakers.push(() => makeCharacter(
  32647. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32648. {
  32649. side: {
  32650. height: math.unit(12 + 9/12, "feet"),
  32651. weight: math.unit(15000, "lb"),
  32652. name: "Side",
  32653. image: {
  32654. source: "./media/characters/faan/side.svg",
  32655. extra: 2747/2697,
  32656. bottom: 0/2747
  32657. }
  32658. },
  32659. front: {
  32660. height: math.unit(12 + 9/12, "feet"),
  32661. weight: math.unit(15000, "lb"),
  32662. name: "Front",
  32663. image: {
  32664. source: "./media/characters/faan/front.svg",
  32665. extra: 607/571,
  32666. bottom: 24/631
  32667. }
  32668. },
  32669. head: {
  32670. height: math.unit(2.85, "feet"),
  32671. name: "Head",
  32672. image: {
  32673. source: "./media/characters/faan/head.svg"
  32674. }
  32675. },
  32676. headAlt: {
  32677. height: math.unit(3.13, "feet"),
  32678. name: "Head-alt",
  32679. image: {
  32680. source: "./media/characters/faan/head-alt.svg"
  32681. }
  32682. },
  32683. },
  32684. [
  32685. {
  32686. name: "Normal",
  32687. height: math.unit(12 + 9/12, "feet"),
  32688. default: true
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(6, "feet"),
  32697. weight: math.unit(300, "lb"),
  32698. name: "Front",
  32699. image: {
  32700. source: "./media/characters/tanio/front.svg",
  32701. extra: 711/673,
  32702. bottom: 25/736
  32703. }
  32704. },
  32705. },
  32706. [
  32707. {
  32708. name: "Normal",
  32709. height: math.unit(6, "feet"),
  32710. default: true
  32711. },
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32716. {
  32717. front: {
  32718. height: math.unit(3, "inches"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/noboru/front.svg",
  32722. extra: 1039/932,
  32723. bottom: 18/1057
  32724. }
  32725. },
  32726. },
  32727. [
  32728. {
  32729. name: "Micro",
  32730. height: math.unit(3, "inches"),
  32731. default: true
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(1.85, "meters"),
  32740. weight: math.unit(80, "kg"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/daniel-barrett/front.svg",
  32744. extra: 355/337,
  32745. bottom: 9/364
  32746. }
  32747. },
  32748. },
  32749. [
  32750. {
  32751. name: "Pico",
  32752. height: math.unit(0.0433, "mm")
  32753. },
  32754. {
  32755. name: "Nano",
  32756. height: math.unit(1.5, "mm")
  32757. },
  32758. {
  32759. name: "Micro",
  32760. height: math.unit(5.3, "cm"),
  32761. default: true
  32762. },
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(1.85, "meters")
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(64.7, "meters")
  32770. },
  32771. {
  32772. name: "Megamacro",
  32773. height: math.unit(2.26, "km")
  32774. },
  32775. {
  32776. name: "Gigamacro",
  32777. height: math.unit(79, "km")
  32778. },
  32779. {
  32780. name: "Teramacro",
  32781. height: math.unit(2765, "km")
  32782. },
  32783. {
  32784. name: "Petamacro",
  32785. height: math.unit(96678, "km")
  32786. },
  32787. ]
  32788. ))
  32789. characterMakers.push(() => makeCharacter(
  32790. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32791. {
  32792. front: {
  32793. height: math.unit(30, "meters"),
  32794. weight: math.unit(400, "tons"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/zeel/front.svg",
  32798. extra: 2599/2599,
  32799. bottom: 226/2825
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Macro",
  32806. height: math.unit(30, "meters"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32813. {
  32814. front: {
  32815. height: math.unit(6 + 7/12, "feet"),
  32816. weight: math.unit(210, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/tarn/front.svg",
  32820. extra: 3517/3220,
  32821. bottom: 91/3608
  32822. }
  32823. },
  32824. back: {
  32825. height: math.unit(6 + 7/12, "feet"),
  32826. weight: math.unit(210, "lb"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/tarn/back.svg",
  32830. extra: 3566/3241,
  32831. bottom: 34/3600
  32832. }
  32833. },
  32834. dick: {
  32835. height: math.unit(1.65, "feet"),
  32836. name: "Dick",
  32837. image: {
  32838. source: "./media/characters/tarn/dick.svg"
  32839. }
  32840. },
  32841. paw: {
  32842. height: math.unit(1.80, "feet"),
  32843. name: "Paw",
  32844. image: {
  32845. source: "./media/characters/tarn/paw.svg"
  32846. }
  32847. },
  32848. tongue: {
  32849. height: math.unit(0.97, "feet"),
  32850. name: "Tongue",
  32851. image: {
  32852. source: "./media/characters/tarn/tongue.svg"
  32853. }
  32854. },
  32855. },
  32856. [
  32857. {
  32858. name: "Micro",
  32859. height: math.unit(4, "inches")
  32860. },
  32861. {
  32862. name: "Normal",
  32863. height: math.unit(6 + 7/12, "feet"),
  32864. default: true
  32865. },
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(300, "feet")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32874. {
  32875. front: {
  32876. height: math.unit(5 + 7/12, "feet"),
  32877. weight: math.unit(80, "kg"),
  32878. name: "Front",
  32879. image: {
  32880. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32881. extra: 3023/2865,
  32882. bottom: 33/3056
  32883. }
  32884. },
  32885. back: {
  32886. height: math.unit(5 + 7/12, "feet"),
  32887. weight: math.unit(80, "kg"),
  32888. name: "Back",
  32889. image: {
  32890. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32891. extra: 3020/2886,
  32892. bottom: 30/3050
  32893. }
  32894. },
  32895. dick: {
  32896. height: math.unit(0.98, "feet"),
  32897. name: "Dick",
  32898. image: {
  32899. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32900. }
  32901. },
  32902. anatomy: {
  32903. height: math.unit(2.86, "feet"),
  32904. name: "Anatomy",
  32905. image: {
  32906. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Really Small",
  32913. height: math.unit(2, "inches")
  32914. },
  32915. {
  32916. name: "Micro",
  32917. height: math.unit(5.583, "inches")
  32918. },
  32919. {
  32920. name: "Normal",
  32921. height: math.unit(5 + 7/12, "feet"),
  32922. default: true
  32923. },
  32924. {
  32925. name: "Macro",
  32926. height: math.unit(67, "feet")
  32927. },
  32928. {
  32929. name: "Megamacro",
  32930. height: math.unit(134, "feet")
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(9, "feet"),
  32939. weight: math.unit(120, "lb"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/sally/front.svg",
  32943. extra: 1506/1349,
  32944. bottom: 66/1572
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(9, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(8, "feet"),
  32961. weight: math.unit(900, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/owen/front.svg",
  32965. extra: 1761/1657,
  32966. bottom: 74/1835
  32967. }
  32968. },
  32969. side: {
  32970. height: math.unit(8, "feet"),
  32971. weight: math.unit(900, "lb"),
  32972. name: "Side",
  32973. image: {
  32974. source: "./media/characters/owen/side.svg",
  32975. extra: 1797/1734,
  32976. bottom: 30/1827
  32977. }
  32978. },
  32979. back: {
  32980. height: math.unit(8, "feet"),
  32981. weight: math.unit(900, "lb"),
  32982. name: "Back",
  32983. image: {
  32984. source: "./media/characters/owen/back.svg",
  32985. extra: 1796/1706,
  32986. bottom: 59/1855
  32987. }
  32988. },
  32989. maw: {
  32990. height: math.unit(1.76, "feet"),
  32991. name: "Maw",
  32992. image: {
  32993. source: "./media/characters/owen/maw.svg"
  32994. }
  32995. },
  32996. },
  32997. [
  32998. {
  32999. name: "Normal",
  33000. height: math.unit(8, "feet"),
  33001. default: true
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33007. {
  33008. front: {
  33009. height: math.unit(4, "feet"),
  33010. weight: math.unit(400, "lb"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/ryth/front.svg",
  33014. extra: 1920/1748,
  33015. bottom: 42/1962
  33016. }
  33017. },
  33018. back: {
  33019. height: math.unit(4, "feet"),
  33020. weight: math.unit(400, "lb"),
  33021. name: "Back",
  33022. image: {
  33023. source: "./media/characters/ryth/back.svg",
  33024. extra: 1897/1690,
  33025. bottom: 89/1986
  33026. }
  33027. },
  33028. mouth: {
  33029. height: math.unit(1.39, "feet"),
  33030. name: "Mouth",
  33031. image: {
  33032. source: "./media/characters/ryth/mouth.svg"
  33033. }
  33034. },
  33035. tailmaw: {
  33036. height: math.unit(1.23, "feet"),
  33037. name: "Tailmaw",
  33038. image: {
  33039. source: "./media/characters/ryth/tailmaw.svg"
  33040. }
  33041. },
  33042. goia: {
  33043. height: math.unit(4, "meters"),
  33044. weight: math.unit(10800, "lb"),
  33045. name: "Goia",
  33046. image: {
  33047. source: "./media/characters/ryth/goia.svg",
  33048. extra: 745/640,
  33049. bottom: 107/852
  33050. }
  33051. },
  33052. goiaFront: {
  33053. height: math.unit(4, "meters"),
  33054. weight: math.unit(10800, "lb"),
  33055. name: "Goia (Front)",
  33056. image: {
  33057. source: "./media/characters/ryth/goia-front.svg",
  33058. extra: 750/586,
  33059. bottom: 114/864
  33060. }
  33061. },
  33062. goiaMaw: {
  33063. height: math.unit(5.55, "feet"),
  33064. name: "Goia Maw",
  33065. image: {
  33066. source: "./media/characters/ryth/goia-maw.svg"
  33067. }
  33068. },
  33069. goiaForepaw: {
  33070. height: math.unit(3.5, "feet"),
  33071. name: "Goia Forepaw",
  33072. image: {
  33073. source: "./media/characters/ryth/goia-forepaw.svg"
  33074. }
  33075. },
  33076. goiaHindpaw: {
  33077. height: math.unit(5.55, "feet"),
  33078. name: "Goia Hindpaw",
  33079. image: {
  33080. source: "./media/characters/ryth/goia-hindpaw.svg"
  33081. }
  33082. },
  33083. },
  33084. [
  33085. {
  33086. name: "Normal",
  33087. height: math.unit(4, "feet"),
  33088. default: true
  33089. },
  33090. ]
  33091. ))
  33092. characterMakers.push(() => makeCharacter(
  33093. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33094. {
  33095. front: {
  33096. height: math.unit(7, "feet"),
  33097. weight: math.unit(180, "lb"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/necrolance/front.svg",
  33101. extra: 1062/947,
  33102. bottom: 41/1103
  33103. }
  33104. },
  33105. back: {
  33106. height: math.unit(7, "feet"),
  33107. weight: math.unit(180, "lb"),
  33108. name: "Back",
  33109. image: {
  33110. source: "./media/characters/necrolance/back.svg",
  33111. extra: 1045/984,
  33112. bottom: 14/1059
  33113. }
  33114. },
  33115. wing: {
  33116. height: math.unit(2.67, "feet"),
  33117. name: "Wing",
  33118. image: {
  33119. source: "./media/characters/necrolance/wing.svg"
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(7, "feet"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33133. {
  33134. front: {
  33135. height: math.unit(76, "meters"),
  33136. weight: math.unit(30000, "tons"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/tyler/front.svg",
  33140. extra: 1640/1640,
  33141. bottom: 114/1754
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Macro",
  33148. height: math.unit(76, "meters"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33155. {
  33156. front: {
  33157. height: math.unit(4 + 11/12, "feet"),
  33158. weight: math.unit(132, "lb"),
  33159. name: "Front",
  33160. image: {
  33161. source: "./media/characters/icey/front.svg",
  33162. extra: 2750/2550,
  33163. bottom: 33/2783
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(4 + 11/12, "feet"),
  33168. weight: math.unit(132, "lb"),
  33169. name: "Back",
  33170. image: {
  33171. source: "./media/characters/icey/back.svg",
  33172. extra: 2624/2481,
  33173. bottom: 35/2659
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "Normal",
  33180. height: math.unit(4 + 11/12, "feet"),
  33181. default: true
  33182. },
  33183. ]
  33184. ))
  33185. characterMakers.push(() => makeCharacter(
  33186. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33187. {
  33188. front: {
  33189. height: math.unit(100, "feet"),
  33190. weight: math.unit(0, "lb"),
  33191. name: "Front",
  33192. image: {
  33193. source: "./media/characters/smile/front.svg",
  33194. extra: 2983/2912,
  33195. bottom: 162/3145
  33196. }
  33197. },
  33198. back: {
  33199. height: math.unit(100, "feet"),
  33200. weight: math.unit(0, "lb"),
  33201. name: "Back",
  33202. image: {
  33203. source: "./media/characters/smile/back.svg",
  33204. extra: 3143/3031,
  33205. bottom: 91/3234
  33206. }
  33207. },
  33208. head: {
  33209. height: math.unit(26.3, "feet"),
  33210. weight: math.unit(0, "lb"),
  33211. name: "Head",
  33212. image: {
  33213. source: "./media/characters/smile/head.svg"
  33214. }
  33215. },
  33216. collar: {
  33217. height: math.unit(5.3, "feet"),
  33218. weight: math.unit(0, "lb"),
  33219. name: "Collar",
  33220. image: {
  33221. source: "./media/characters/smile/collar.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Macro",
  33228. height: math.unit(100, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33235. {
  33236. dragon: {
  33237. height: math.unit(26, "feet"),
  33238. weight: math.unit(36, "tons"),
  33239. name: "Dragon",
  33240. image: {
  33241. source: "./media/characters/arimphae/dragon.svg",
  33242. extra: 1574/983,
  33243. bottom: 357/1931
  33244. }
  33245. },
  33246. drake: {
  33247. height: math.unit(9, "feet"),
  33248. weight: math.unit(1.5, "tons"),
  33249. name: "Drake",
  33250. image: {
  33251. source: "./media/characters/arimphae/drake.svg",
  33252. extra: 1120/925,
  33253. bottom: 435/1555
  33254. }
  33255. },
  33256. },
  33257. [
  33258. {
  33259. name: "Small",
  33260. height: math.unit(26*5/9, "feet")
  33261. },
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(26, "feet"),
  33265. default: true
  33266. },
  33267. ]
  33268. ))
  33269. characterMakers.push(() => makeCharacter(
  33270. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33271. {
  33272. front: {
  33273. height: math.unit(8 + 9/12, "feet"),
  33274. name: "Front",
  33275. image: {
  33276. source: "./media/characters/xander/front.svg",
  33277. extra: 1237/974,
  33278. bottom: 94/1331
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Normal",
  33285. height: math.unit(8 + 9/12, "feet"),
  33286. default: true
  33287. },
  33288. {
  33289. name: "Gaze Grabber",
  33290. height: math.unit(13 + 8/12, "feet")
  33291. },
  33292. {
  33293. name: "Jaw Dropper",
  33294. height: math.unit(27, "feet")
  33295. },
  33296. {
  33297. name: "Show Stopper",
  33298. height: math.unit(136, "feet")
  33299. },
  33300. {
  33301. name: "Superstar",
  33302. height: math.unit(1.9e6, "miles")
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33308. {
  33309. side: {
  33310. height: math.unit(2100, "feet"),
  33311. name: "Side",
  33312. image: {
  33313. source: "./media/characters/osiris/side.svg",
  33314. extra: 1105/939,
  33315. bottom: 167/1272
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Macro",
  33322. height: math.unit(2100, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6 + 8/12, "feet"),
  33332. weight: math.unit(225, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/rhys-londe/front.svg",
  33336. extra: 2258/2141,
  33337. bottom: 188/2446
  33338. }
  33339. },
  33340. back: {
  33341. height: math.unit(6 + 8/12, "feet"),
  33342. weight: math.unit(225, "lb"),
  33343. name: "Back",
  33344. image: {
  33345. source: "./media/characters/rhys-londe/back.svg",
  33346. extra: 2237/2137,
  33347. bottom: 63/2300
  33348. }
  33349. },
  33350. frontNsfw: {
  33351. height: math.unit(6 + 8/12, "feet"),
  33352. weight: math.unit(225, "lb"),
  33353. name: "Front (NSFW)",
  33354. image: {
  33355. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33356. extra: 2258/2141,
  33357. bottom: 188/2446
  33358. }
  33359. },
  33360. backNsfw: {
  33361. height: math.unit(6 + 8/12, "feet"),
  33362. weight: math.unit(225, "lb"),
  33363. name: "Back (NSFW)",
  33364. image: {
  33365. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33366. extra: 2237/2137,
  33367. bottom: 63/2300
  33368. }
  33369. },
  33370. dick: {
  33371. height: math.unit(30, "inches"),
  33372. name: "Dick",
  33373. image: {
  33374. source: "./media/characters/rhys-londe/dick.svg"
  33375. }
  33376. },
  33377. maw: {
  33378. height: math.unit(1.6, "feet"),
  33379. name: "Maw",
  33380. image: {
  33381. source: "./media/characters/rhys-londe/maw.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(6 + 8/12, "feet"),
  33389. default: true
  33390. },
  33391. ]
  33392. ))
  33393. characterMakers.push(() => makeCharacter(
  33394. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33395. {
  33396. front: {
  33397. height: math.unit(3 + 10/12, "feet"),
  33398. weight: math.unit(90, "lb"),
  33399. name: "Front",
  33400. image: {
  33401. source: "./media/characters/taivas-ensim/front.svg",
  33402. extra: 1327/1216,
  33403. bottom: 96/1423
  33404. }
  33405. },
  33406. back: {
  33407. height: math.unit(3 + 10/12, "feet"),
  33408. weight: math.unit(90, "lb"),
  33409. name: "Back",
  33410. image: {
  33411. source: "./media/characters/taivas-ensim/back.svg",
  33412. extra: 1355/1247,
  33413. bottom: 11/1366
  33414. }
  33415. },
  33416. frontNsfw: {
  33417. height: math.unit(3 + 10/12, "feet"),
  33418. weight: math.unit(90, "lb"),
  33419. name: "Front (NSFW)",
  33420. image: {
  33421. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33422. extra: 1327/1216,
  33423. bottom: 96/1423
  33424. }
  33425. },
  33426. backNsfw: {
  33427. height: math.unit(3 + 10/12, "feet"),
  33428. weight: math.unit(90, "lb"),
  33429. name: "Back (NSFW)",
  33430. image: {
  33431. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33432. extra: 1355/1247,
  33433. bottom: 11/1366
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(3 + 10/12, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(9 + 6/12, "feet"),
  33450. weight: math.unit(940, "lb"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/byliss/front.svg",
  33454. extra: 1327/1290,
  33455. bottom: 82/1409
  33456. }
  33457. },
  33458. back: {
  33459. height: math.unit(9 + 6/12, "feet"),
  33460. weight: math.unit(940, "lb"),
  33461. name: "Back",
  33462. image: {
  33463. source: "./media/characters/byliss/back.svg",
  33464. extra: 1376/1349,
  33465. bottom: 9/1385
  33466. }
  33467. },
  33468. frontNsfw: {
  33469. height: math.unit(9 + 6/12, "feet"),
  33470. weight: math.unit(940, "lb"),
  33471. name: "Front (NSFW)",
  33472. image: {
  33473. source: "./media/characters/byliss/front-nsfw.svg",
  33474. extra: 1327/1290,
  33475. bottom: 82/1409
  33476. }
  33477. },
  33478. backNsfw: {
  33479. height: math.unit(9 + 6/12, "feet"),
  33480. weight: math.unit(940, "lb"),
  33481. name: "Back (NSFW)",
  33482. image: {
  33483. source: "./media/characters/byliss/back-nsfw.svg",
  33484. extra: 1376/1349,
  33485. bottom: 9/1385
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(9 + 6/12, "feet"),
  33493. default: true
  33494. },
  33495. ]
  33496. ))
  33497. characterMakers.push(() => makeCharacter(
  33498. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33499. {
  33500. front: {
  33501. height: math.unit(5 + 2/12, "feet"),
  33502. weight: math.unit(200, "lb"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/noraly/front.svg",
  33506. extra: 4985/4773,
  33507. bottom: 150/5135
  33508. }
  33509. },
  33510. full: {
  33511. height: math.unit(5 + 2/12, "feet"),
  33512. weight: math.unit(164, "lb"),
  33513. name: "Full",
  33514. image: {
  33515. source: "./media/characters/noraly/full.svg",
  33516. extra: 1114/1059,
  33517. bottom: 35/1149
  33518. }
  33519. },
  33520. fuller: {
  33521. height: math.unit(5 + 2/12, "feet"),
  33522. weight: math.unit(230, "lb"),
  33523. name: "Fuller",
  33524. image: {
  33525. source: "./media/characters/noraly/fuller.svg",
  33526. extra: 1114/1059,
  33527. bottom: 35/1149
  33528. }
  33529. },
  33530. fullest: {
  33531. height: math.unit(5 + 2/12, "feet"),
  33532. weight: math.unit(300, "lb"),
  33533. name: "Fullest",
  33534. image: {
  33535. source: "./media/characters/noraly/fullest.svg",
  33536. extra: 1114/1059,
  33537. bottom: 35/1149
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(5 + 2/12, "feet"),
  33545. default: true
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33551. {
  33552. front: {
  33553. height: math.unit(5 + 2/12, "feet"),
  33554. weight: math.unit(210, "lb"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/pera/front.svg",
  33558. extra: 1560/1531,
  33559. bottom: 165/1725
  33560. }
  33561. },
  33562. back: {
  33563. height: math.unit(5 + 2/12, "feet"),
  33564. weight: math.unit(210, "lb"),
  33565. name: "Back",
  33566. image: {
  33567. source: "./media/characters/pera/back.svg",
  33568. extra: 1523/1493,
  33569. bottom: 152/1675
  33570. }
  33571. },
  33572. dick: {
  33573. height: math.unit(2.4, "feet"),
  33574. name: "Dick",
  33575. image: {
  33576. source: "./media/characters/pera/dick.svg"
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(5 + 2/12, "feet"),
  33584. default: true
  33585. },
  33586. ]
  33587. ))
  33588. characterMakers.push(() => makeCharacter(
  33589. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33590. {
  33591. front: {
  33592. height: math.unit(12, "feet"),
  33593. weight: math.unit(3200, "lb"),
  33594. name: "Front",
  33595. image: {
  33596. source: "./media/characters/julian/front.svg",
  33597. extra: 2962/2701,
  33598. bottom: 184/3146
  33599. }
  33600. },
  33601. maw: {
  33602. height: math.unit(5.35, "feet"),
  33603. name: "Maw",
  33604. image: {
  33605. source: "./media/characters/julian/maw.svg"
  33606. }
  33607. },
  33608. paw: {
  33609. height: math.unit(3.07, "feet"),
  33610. name: "Paw",
  33611. image: {
  33612. source: "./media/characters/julian/paw.svg"
  33613. }
  33614. },
  33615. },
  33616. [
  33617. {
  33618. name: "Default",
  33619. height: math.unit(12, "feet"),
  33620. default: true
  33621. },
  33622. {
  33623. name: "Big",
  33624. height: math.unit(50, "feet")
  33625. },
  33626. {
  33627. name: "Really Big",
  33628. height: math.unit(1, "mile")
  33629. },
  33630. {
  33631. name: "Extremely Big",
  33632. height: math.unit(100, "miles")
  33633. },
  33634. {
  33635. name: "Planet Hugger",
  33636. height: math.unit(200, "megameters")
  33637. },
  33638. {
  33639. name: "Unreasonably Big",
  33640. height: math.unit(1e300, "meters")
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33646. {
  33647. solgooleo: {
  33648. height: math.unit(4, "meters"),
  33649. weight: math.unit(6000*1.5, "kg"),
  33650. volume: math.unit(6000, "liters"),
  33651. name: "Solgooleo",
  33652. image: {
  33653. source: "./media/characters/pi/solgooleo.svg",
  33654. extra: 388/331,
  33655. bottom: 29/417
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Normal",
  33662. height: math.unit(4, "meters"),
  33663. default: true
  33664. },
  33665. ]
  33666. ))
  33667. characterMakers.push(() => makeCharacter(
  33668. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33669. {
  33670. front: {
  33671. height: math.unit(8, "feet"),
  33672. weight: math.unit(4, "tons"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/shaun/front.svg",
  33676. extra: 503/495,
  33677. bottom: 20/523
  33678. }
  33679. },
  33680. back: {
  33681. height: math.unit(8, "feet"),
  33682. weight: math.unit(4, "tons"),
  33683. name: "Back",
  33684. image: {
  33685. source: "./media/characters/shaun/back.svg",
  33686. extra: 487/480,
  33687. bottom: 20/507
  33688. }
  33689. },
  33690. },
  33691. [
  33692. {
  33693. name: "Lorg",
  33694. height: math.unit(8, "feet"),
  33695. default: true
  33696. },
  33697. ]
  33698. ))
  33699. characterMakers.push(() => makeCharacter(
  33700. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33701. {
  33702. frontAnthro: {
  33703. height: math.unit(7, "feet"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/sini/front-anthro.svg",
  33707. extra: 726/678,
  33708. bottom: 35/761
  33709. },
  33710. form: "anthro",
  33711. default: true
  33712. },
  33713. backAnthro: {
  33714. height: math.unit(7, "feet"),
  33715. name: "Back",
  33716. image: {
  33717. source: "./media/characters/sini/back-anthro.svg",
  33718. extra: 743/701,
  33719. bottom: 12/755
  33720. },
  33721. form: "anthro",
  33722. },
  33723. frontAnthroNsfw: {
  33724. height: math.unit(7, "feet"),
  33725. name: "Front (NSFW)",
  33726. image: {
  33727. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33728. extra: 726/678,
  33729. bottom: 35/761
  33730. },
  33731. form: "anthro"
  33732. },
  33733. backAnthroNsfw: {
  33734. height: math.unit(7, "feet"),
  33735. name: "Back (NSFW)",
  33736. image: {
  33737. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33738. extra: 743/701,
  33739. bottom: 12/755
  33740. },
  33741. form: "anthro",
  33742. },
  33743. mawAnthro: {
  33744. height: math.unit(2.14, "feet"),
  33745. name: "Maw",
  33746. image: {
  33747. source: "./media/characters/sini/maw-anthro.svg"
  33748. },
  33749. form: "anthro"
  33750. },
  33751. dick: {
  33752. height: math.unit(1.45, "feet"),
  33753. name: "Dick",
  33754. image: {
  33755. source: "./media/characters/sini/dick-anthro.svg"
  33756. },
  33757. form: "anthro"
  33758. },
  33759. feral: {
  33760. height: math.unit(16, "feet"),
  33761. name: "Feral",
  33762. image: {
  33763. source: "./media/characters/sini/feral.svg",
  33764. extra: 814/605,
  33765. bottom: 11/825
  33766. },
  33767. form: "feral",
  33768. default: true
  33769. },
  33770. feralNsfw: {
  33771. height: math.unit(16, "feet"),
  33772. name: "Feral (NSFW)",
  33773. image: {
  33774. source: "./media/characters/sini/feral-nsfw.svg",
  33775. extra: 814/605,
  33776. bottom: 11/825
  33777. },
  33778. form: "feral"
  33779. },
  33780. mawFeral: {
  33781. height: math.unit(5.66, "feet"),
  33782. name: "Maw",
  33783. image: {
  33784. source: "./media/characters/sini/maw-feral.svg"
  33785. },
  33786. form: "feral",
  33787. },
  33788. pawFeral: {
  33789. height: math.unit(5.17, "feet"),
  33790. name: "Paw",
  33791. image: {
  33792. source: "./media/characters/sini/paw-feral.svg"
  33793. },
  33794. form: "feral",
  33795. },
  33796. rumpFeral: {
  33797. height: math.unit(13.11, "feet"),
  33798. name: "Rump",
  33799. image: {
  33800. source: "./media/characters/sini/rump-feral.svg"
  33801. },
  33802. form: "feral",
  33803. },
  33804. dickFeral: {
  33805. height: math.unit(1, "feet"),
  33806. name: "Dick",
  33807. image: {
  33808. source: "./media/characters/sini/dick-feral.svg"
  33809. },
  33810. form: "feral",
  33811. },
  33812. eyeFeral: {
  33813. height: math.unit(1.23, "feet"),
  33814. name: "Eye",
  33815. image: {
  33816. source: "./media/characters/sini/eye-feral.svg"
  33817. },
  33818. form: "feral",
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(7, "feet"),
  33825. default: true,
  33826. form: "anthro"
  33827. },
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(16, "feet"),
  33831. default: true,
  33832. form: "feral"
  33833. },
  33834. ],
  33835. {
  33836. "anthro": {
  33837. name: "Anthro",
  33838. default: true
  33839. },
  33840. "feral": {
  33841. name: "Feral",
  33842. }
  33843. }
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33847. {
  33848. side: {
  33849. height: math.unit(13, "meters"),
  33850. weight: math.unit(9072, "kg"),
  33851. name: "Side",
  33852. image: {
  33853. source: "./media/characters/raylldo/side.svg",
  33854. extra: 403/344,
  33855. bottom: 42/445
  33856. }
  33857. },
  33858. leaping: {
  33859. height: math.unit(12.3, "meters"),
  33860. weight: math.unit(9072, "kg"),
  33861. name: "Leaping",
  33862. image: {
  33863. source: "./media/characters/raylldo/leaping.svg",
  33864. extra: 470/249,
  33865. bottom: 13/483
  33866. }
  33867. },
  33868. flying: {
  33869. height: math.unit(18, "meters"),
  33870. weight: math.unit(9072, "kg"),
  33871. name: "Flying",
  33872. image: {
  33873. source: "./media/characters/raylldo/flying.svg"
  33874. }
  33875. },
  33876. head: {
  33877. height: math.unit(5.85, "meters"),
  33878. name: "Head",
  33879. image: {
  33880. source: "./media/characters/raylldo/head.svg"
  33881. }
  33882. },
  33883. maw: {
  33884. height: math.unit(5.32, "meters"),
  33885. name: "Maw",
  33886. image: {
  33887. source: "./media/characters/raylldo/maw.svg"
  33888. }
  33889. },
  33890. eye: {
  33891. height: math.unit(0.54, "meters"),
  33892. name: "Eye",
  33893. image: {
  33894. source: "./media/characters/raylldo/eye.svg"
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(13, "meters"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33908. {
  33909. anthroFront: {
  33910. height: math.unit(9, "feet"),
  33911. weight: math.unit(600, "lb"),
  33912. name: "Anthro (Front)",
  33913. image: {
  33914. source: "./media/characters/glint/anthro-front.svg",
  33915. extra: 1097/1018,
  33916. bottom: 28/1125
  33917. }
  33918. },
  33919. anthroBack: {
  33920. height: math.unit(9, "feet"),
  33921. weight: math.unit(600, "lb"),
  33922. name: "Anthro (Back)",
  33923. image: {
  33924. source: "./media/characters/glint/anthro-back.svg",
  33925. extra: 1154/997,
  33926. bottom: 36/1190
  33927. }
  33928. },
  33929. feral: {
  33930. height: math.unit(11, "feet"),
  33931. weight: math.unit(50000, "lb"),
  33932. name: "Feral",
  33933. image: {
  33934. source: "./media/characters/glint/feral.svg",
  33935. extra: 3035/1585,
  33936. bottom: 1169/4204
  33937. }
  33938. },
  33939. dickAnthro: {
  33940. height: math.unit(0.7, "meters"),
  33941. name: "Dick (Anthro)",
  33942. image: {
  33943. source: "./media/characters/glint/dick-anthro.svg"
  33944. }
  33945. },
  33946. dickFeral: {
  33947. height: math.unit(2.65, "meters"),
  33948. name: "Dick (Feral)",
  33949. image: {
  33950. source: "./media/characters/glint/dick-feral.svg"
  33951. }
  33952. },
  33953. slitHidden: {
  33954. height: math.unit(5.85, "meters"),
  33955. name: "Slit (Hidden)",
  33956. image: {
  33957. source: "./media/characters/glint/slit-hidden.svg"
  33958. }
  33959. },
  33960. slitErect: {
  33961. height: math.unit(5.85, "meters"),
  33962. name: "Slit (Erect)",
  33963. image: {
  33964. source: "./media/characters/glint/slit-erect.svg"
  33965. }
  33966. },
  33967. mawAnthro: {
  33968. height: math.unit(0.63, "meters"),
  33969. name: "Maw (Anthro)",
  33970. image: {
  33971. source: "./media/characters/glint/maw.svg"
  33972. }
  33973. },
  33974. mawFeral: {
  33975. height: math.unit(2.89, "meters"),
  33976. name: "Maw (Feral)",
  33977. image: {
  33978. source: "./media/characters/glint/maw.svg"
  33979. }
  33980. },
  33981. },
  33982. [
  33983. {
  33984. name: "Normal",
  33985. height: math.unit(9, "feet"),
  33986. default: true
  33987. },
  33988. ]
  33989. ))
  33990. characterMakers.push(() => makeCharacter(
  33991. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33992. {
  33993. side: {
  33994. height: math.unit(15, "feet"),
  33995. weight: math.unit(5000, "kg"),
  33996. name: "Side",
  33997. image: {
  33998. source: "./media/characters/kairne/side.svg",
  33999. extra: 979/811,
  34000. bottom: 13/992
  34001. }
  34002. },
  34003. front: {
  34004. height: math.unit(15, "feet"),
  34005. weight: math.unit(5000, "kg"),
  34006. name: "Front",
  34007. image: {
  34008. source: "./media/characters/kairne/front.svg",
  34009. extra: 908/814,
  34010. bottom: 26/934
  34011. }
  34012. },
  34013. sideNsfw: {
  34014. height: math.unit(15, "feet"),
  34015. weight: math.unit(5000, "kg"),
  34016. name: "Side (NSFW)",
  34017. image: {
  34018. source: "./media/characters/kairne/side-nsfw.svg",
  34019. extra: 979/811,
  34020. bottom: 13/992
  34021. }
  34022. },
  34023. frontNsfw: {
  34024. height: math.unit(15, "feet"),
  34025. weight: math.unit(5000, "kg"),
  34026. name: "Front (NSFW)",
  34027. image: {
  34028. source: "./media/characters/kairne/front-nsfw.svg",
  34029. extra: 908/814,
  34030. bottom: 26/934
  34031. }
  34032. },
  34033. dickCaged: {
  34034. height: math.unit(0.65, "meters"),
  34035. name: "Dick-caged",
  34036. image: {
  34037. source: "./media/characters/kairne/dick-caged.svg"
  34038. }
  34039. },
  34040. dick: {
  34041. height: math.unit(0.79, "meters"),
  34042. name: "Dick",
  34043. image: {
  34044. source: "./media/characters/kairne/dick.svg"
  34045. }
  34046. },
  34047. genitals: {
  34048. height: math.unit(1.29, "meters"),
  34049. name: "Genitals",
  34050. image: {
  34051. source: "./media/characters/kairne/genitals.svg"
  34052. }
  34053. },
  34054. maw: {
  34055. height: math.unit(1.73, "meters"),
  34056. name: "Maw",
  34057. image: {
  34058. source: "./media/characters/kairne/maw.svg"
  34059. }
  34060. },
  34061. },
  34062. [
  34063. {
  34064. name: "Normal",
  34065. height: math.unit(15, "feet"),
  34066. default: true
  34067. },
  34068. ]
  34069. ))
  34070. characterMakers.push(() => makeCharacter(
  34071. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34072. {
  34073. front: {
  34074. height: math.unit(5 + 8/12, "feet"),
  34075. weight: math.unit(139, "lb"),
  34076. name: "Front",
  34077. image: {
  34078. source: "./media/characters/biscuit-jackal/front.svg",
  34079. extra: 2106/1961,
  34080. bottom: 58/2164
  34081. }
  34082. },
  34083. back: {
  34084. height: math.unit(5 + 8/12, "feet"),
  34085. weight: math.unit(139, "lb"),
  34086. name: "Back",
  34087. image: {
  34088. source: "./media/characters/biscuit-jackal/back.svg",
  34089. extra: 2132/1976,
  34090. bottom: 57/2189
  34091. }
  34092. },
  34093. werejackal: {
  34094. height: math.unit(6 + 3/12, "feet"),
  34095. weight: math.unit(188, "lb"),
  34096. name: "Werejackal",
  34097. image: {
  34098. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34099. extra: 2373/2178,
  34100. bottom: 53/2426
  34101. }
  34102. },
  34103. },
  34104. [
  34105. {
  34106. name: "Normal",
  34107. height: math.unit(5 + 8/12, "feet"),
  34108. default: true
  34109. },
  34110. ]
  34111. ))
  34112. characterMakers.push(() => makeCharacter(
  34113. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34114. {
  34115. front: {
  34116. height: math.unit(140, "cm"),
  34117. weight: math.unit(45, "kg"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/tayra-white/front.svg",
  34121. extra: 2229/2192,
  34122. bottom: 75/2304
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Normal",
  34129. height: math.unit(140, "cm"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34136. {
  34137. front: {
  34138. height: math.unit(4 + 5/12, "feet"),
  34139. name: "Front",
  34140. image: {
  34141. source: "./media/characters/scoop/front.svg",
  34142. extra: 1257/1136,
  34143. bottom: 69/1326
  34144. }
  34145. },
  34146. back: {
  34147. height: math.unit(4 + 5/12, "feet"),
  34148. name: "Back",
  34149. image: {
  34150. source: "./media/characters/scoop/back.svg",
  34151. extra: 1321/1152,
  34152. bottom: 32/1353
  34153. }
  34154. },
  34155. maw: {
  34156. height: math.unit(0.68, "feet"),
  34157. name: "Maw",
  34158. image: {
  34159. source: "./media/characters/scoop/maw.svg"
  34160. }
  34161. },
  34162. },
  34163. [
  34164. {
  34165. name: "Really Small",
  34166. height: math.unit(1, "mm")
  34167. },
  34168. {
  34169. name: "Micro",
  34170. height: math.unit(1, "inch")
  34171. },
  34172. {
  34173. name: "Normal",
  34174. height: math.unit(4 + 5/12, "feet"),
  34175. default: true
  34176. },
  34177. {
  34178. name: "Macro",
  34179. height: math.unit(200, "feet")
  34180. },
  34181. {
  34182. name: "Megamacro",
  34183. height: math.unit(3240, "feet")
  34184. },
  34185. {
  34186. name: "Teramacro",
  34187. height: math.unit(2500, "miles")
  34188. },
  34189. ]
  34190. ))
  34191. characterMakers.push(() => makeCharacter(
  34192. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34193. {
  34194. front: {
  34195. height: math.unit(15 + 7/12, "feet"),
  34196. weight: math.unit(1150, "tons"),
  34197. name: "Front",
  34198. image: {
  34199. source: "./media/characters/saphinara/front.svg",
  34200. extra: 1837/1643,
  34201. bottom: 84/1921
  34202. },
  34203. form: "normal",
  34204. default: true
  34205. },
  34206. side: {
  34207. height: math.unit(15 + 7/12, "feet"),
  34208. weight: math.unit(1150, "tons"),
  34209. name: "Side",
  34210. image: {
  34211. source: "./media/characters/saphinara/side.svg",
  34212. extra: 605/547,
  34213. bottom: 6/611
  34214. },
  34215. form: "normal"
  34216. },
  34217. back: {
  34218. height: math.unit(15 + 7/12, "feet"),
  34219. weight: math.unit(1150, "tons"),
  34220. name: "Back",
  34221. image: {
  34222. source: "./media/characters/saphinara/back.svg",
  34223. extra: 591/531,
  34224. bottom: 13/604
  34225. },
  34226. form: "normal"
  34227. },
  34228. frontTail: {
  34229. height: math.unit(15 + 7/12, "feet"),
  34230. weight: math.unit(1150, "tons"),
  34231. name: "Front (Full Tail)",
  34232. image: {
  34233. source: "./media/characters/saphinara/front-tail.svg",
  34234. extra: 2256/1630,
  34235. bottom: 261/2517
  34236. },
  34237. form: "normal"
  34238. },
  34239. insides: {
  34240. height: math.unit(11.92, "feet"),
  34241. name: "Insides",
  34242. image: {
  34243. source: "./media/characters/saphinara/insides.svg"
  34244. },
  34245. form: "normal"
  34246. },
  34247. head: {
  34248. height: math.unit(4.17, "feet"),
  34249. name: "Head",
  34250. image: {
  34251. source: "./media/characters/saphinara/head.svg"
  34252. },
  34253. form: "normal"
  34254. },
  34255. tongue: {
  34256. height: math.unit(4.60, "feet"),
  34257. name: "Tongue",
  34258. image: {
  34259. source: "./media/characters/saphinara/tongue.svg"
  34260. },
  34261. form: "normal"
  34262. },
  34263. headEnraged: {
  34264. height: math.unit(5.55, "feet"),
  34265. name: "Head (Enraged)",
  34266. image: {
  34267. source: "./media/characters/saphinara/head-enraged.svg"
  34268. },
  34269. form: "normal"
  34270. },
  34271. wings: {
  34272. height: math.unit(11.95, "feet"),
  34273. name: "Wings",
  34274. image: {
  34275. source: "./media/characters/saphinara/wings.svg"
  34276. },
  34277. form: "normal"
  34278. },
  34279. feathers: {
  34280. height: math.unit(8.92, "feet"),
  34281. name: "Feathers",
  34282. image: {
  34283. source: "./media/characters/saphinara/feathers.svg"
  34284. },
  34285. form: "normal"
  34286. },
  34287. shackles: {
  34288. height: math.unit(2, "feet"),
  34289. name: "Shackles",
  34290. image: {
  34291. source: "./media/characters/saphinara/shackles.svg"
  34292. },
  34293. form: "normal"
  34294. },
  34295. eyes: {
  34296. height: math.unit(1.331, "feet"),
  34297. name: "Eyes",
  34298. image: {
  34299. source: "./media/characters/saphinara/eyes.svg"
  34300. },
  34301. form: "normal"
  34302. },
  34303. eyesEnraged: {
  34304. height: math.unit(1.331, "feet"),
  34305. name: "Eyes (Enraged)",
  34306. image: {
  34307. source: "./media/characters/saphinara/eyes-enraged.svg"
  34308. },
  34309. form: "normal"
  34310. },
  34311. trueFormSide: {
  34312. height: math.unit(200, "feet"),
  34313. weight: math.unit(1e7, "tons"),
  34314. name: "Side",
  34315. image: {
  34316. source: "./media/characters/saphinara/true-form-side.svg",
  34317. extra: 1399/770,
  34318. bottom: 97/1496
  34319. },
  34320. form: "true-form",
  34321. default: true
  34322. },
  34323. trueFormMaw: {
  34324. height: math.unit(71.5, "feet"),
  34325. name: "Maw",
  34326. image: {
  34327. source: "./media/characters/saphinara/true-form-maw.svg",
  34328. extra: 2302/1453,
  34329. bottom: 0/2302
  34330. },
  34331. form: "true-form"
  34332. },
  34333. },
  34334. [
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(15 + 7/12, "feet"),
  34338. default: true,
  34339. form: "normal"
  34340. },
  34341. {
  34342. name: "Angry",
  34343. height: math.unit(30 + 6/12, "feet"),
  34344. form: "normal"
  34345. },
  34346. {
  34347. name: "Enraged",
  34348. height: math.unit(102 + 1/12, "feet"),
  34349. form: "normal"
  34350. },
  34351. {
  34352. name: "True",
  34353. height: math.unit(200, "feet"),
  34354. default: true,
  34355. form: "true-form"
  34356. }
  34357. ],
  34358. {
  34359. "normal": {
  34360. name: "Normal",
  34361. default: true
  34362. },
  34363. "true-form": {
  34364. name: "True Form"
  34365. }
  34366. }
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34370. {
  34371. front: {
  34372. height: math.unit(6 + 8/12, "feet"),
  34373. weight: math.unit(300, "lb"),
  34374. name: "Front",
  34375. image: {
  34376. source: "./media/characters/jrain/front.svg",
  34377. extra: 3039/2865,
  34378. bottom: 399/3438
  34379. }
  34380. },
  34381. back: {
  34382. height: math.unit(6 + 8/12, "feet"),
  34383. weight: math.unit(300, "lb"),
  34384. name: "Back",
  34385. image: {
  34386. source: "./media/characters/jrain/back.svg",
  34387. extra: 3089/2938,
  34388. bottom: 172/3261
  34389. }
  34390. },
  34391. head: {
  34392. height: math.unit(2.14, "feet"),
  34393. name: "Head",
  34394. image: {
  34395. source: "./media/characters/jrain/head.svg"
  34396. }
  34397. },
  34398. maw: {
  34399. height: math.unit(1.77, "feet"),
  34400. name: "Maw",
  34401. image: {
  34402. source: "./media/characters/jrain/maw.svg"
  34403. }
  34404. },
  34405. leftHand: {
  34406. height: math.unit(1.1, "feet"),
  34407. name: "Left Hand",
  34408. image: {
  34409. source: "./media/characters/jrain/left-hand.svg"
  34410. }
  34411. },
  34412. rightHand: {
  34413. height: math.unit(1.1, "feet"),
  34414. name: "Right Hand",
  34415. image: {
  34416. source: "./media/characters/jrain/right-hand.svg"
  34417. }
  34418. },
  34419. eye: {
  34420. height: math.unit(0.35, "feet"),
  34421. name: "Eye",
  34422. image: {
  34423. source: "./media/characters/jrain/eye.svg"
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(6 + 8/12, "feet"),
  34431. default: true
  34432. },
  34433. {
  34434. name: "Casually Large",
  34435. height: math.unit(25, "feet")
  34436. },
  34437. {
  34438. name: "Giant",
  34439. height: math.unit(100, "feet")
  34440. },
  34441. {
  34442. name: "Kaiju",
  34443. height: math.unit(300, "feet")
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34449. {
  34450. dragon: {
  34451. height: math.unit(5, "meters"),
  34452. name: "Dragon",
  34453. image: {
  34454. source: "./media/characters/sabrina/dragon.svg",
  34455. extra: 3670 / 2365,
  34456. bottom: 333 / 4003
  34457. }
  34458. },
  34459. gryphon: {
  34460. height: math.unit(3, "meters"),
  34461. name: "Gryphon",
  34462. image: {
  34463. source: "./media/characters/sabrina/gryphon.svg",
  34464. extra: 1576 / 945,
  34465. bottom: 71 / 1647
  34466. }
  34467. },
  34468. snake: {
  34469. height: math.unit(12, "meters"),
  34470. name: "Snake",
  34471. image: {
  34472. source: "./media/characters/sabrina/snake.svg",
  34473. extra: 1758 / 1320,
  34474. bottom: 186 / 1944
  34475. }
  34476. },
  34477. collar: {
  34478. height: math.unit(1.86, "meters"),
  34479. name: "Collar",
  34480. image: {
  34481. source: "./media/characters/sabrina/collar.svg"
  34482. }
  34483. },
  34484. eye: {
  34485. height: math.unit(0.53, "meters"),
  34486. name: "Eye",
  34487. image: {
  34488. source: "./media/characters/sabrina/eye.svg"
  34489. }
  34490. },
  34491. foot: {
  34492. height: math.unit(1.86, "meters"),
  34493. name: "Foot",
  34494. image: {
  34495. source: "./media/characters/sabrina/foot.svg"
  34496. }
  34497. },
  34498. hand: {
  34499. height: math.unit(1.32, "meters"),
  34500. name: "Hand",
  34501. image: {
  34502. source: "./media/characters/sabrina/hand.svg"
  34503. }
  34504. },
  34505. head: {
  34506. height: math.unit(2.44, "meters"),
  34507. name: "Head",
  34508. image: {
  34509. source: "./media/characters/sabrina/head.svg"
  34510. }
  34511. },
  34512. headAngry: {
  34513. height: math.unit(2.44, "meters"),
  34514. name: "Head (Angry))",
  34515. image: {
  34516. source: "./media/characters/sabrina/head-angry.svg"
  34517. }
  34518. },
  34519. maw: {
  34520. height: math.unit(1.65, "meters"),
  34521. name: "Maw",
  34522. image: {
  34523. source: "./media/characters/sabrina/maw.svg"
  34524. }
  34525. },
  34526. spikes: {
  34527. height: math.unit(1.69, "meters"),
  34528. name: "Spikes",
  34529. image: {
  34530. source: "./media/characters/sabrina/spikes.svg"
  34531. }
  34532. },
  34533. stomach: {
  34534. height: math.unit(1.15, "meters"),
  34535. name: "Stomach",
  34536. image: {
  34537. source: "./media/characters/sabrina/stomach.svg"
  34538. }
  34539. },
  34540. tongue: {
  34541. height: math.unit(1.27, "meters"),
  34542. name: "Tongue",
  34543. image: {
  34544. source: "./media/characters/sabrina/tongue.svg"
  34545. }
  34546. },
  34547. wingDorsal: {
  34548. height: math.unit(4.85, "meters"),
  34549. name: "Wing (Dorsal)",
  34550. image: {
  34551. source: "./media/characters/sabrina/wing-dorsal.svg"
  34552. }
  34553. },
  34554. wingVentral: {
  34555. height: math.unit(4.85, "meters"),
  34556. name: "Wing (Ventral)",
  34557. image: {
  34558. source: "./media/characters/sabrina/wing-ventral.svg"
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(5, "meters"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34572. {
  34573. frontMaid: {
  34574. height: math.unit(5 + 5/12, "feet"),
  34575. weight: math.unit(130, "lb"),
  34576. name: "Front (Maid)",
  34577. image: {
  34578. source: "./media/characters/midnight-tales/front-maid.svg",
  34579. extra: 489/454,
  34580. bottom: 61/550
  34581. }
  34582. },
  34583. frontFormal: {
  34584. height: math.unit(5 + 5/12, "feet"),
  34585. weight: math.unit(130, "lb"),
  34586. name: "Front (Formal)",
  34587. image: {
  34588. source: "./media/characters/midnight-tales/front-formal.svg",
  34589. extra: 489/454,
  34590. bottom: 61/550
  34591. }
  34592. },
  34593. back: {
  34594. height: math.unit(5 + 5/12, "feet"),
  34595. weight: math.unit(130, "lb"),
  34596. name: "Back",
  34597. image: {
  34598. source: "./media/characters/midnight-tales/back.svg",
  34599. extra: 498/456,
  34600. bottom: 33/531
  34601. }
  34602. },
  34603. frontBeast: {
  34604. height: math.unit(40, "feet"),
  34605. weight: math.unit(64000, "lb"),
  34606. name: "Front (Beast)",
  34607. image: {
  34608. source: "./media/characters/midnight-tales/front-beast.svg",
  34609. extra: 927/860,
  34610. bottom: 53/980
  34611. }
  34612. },
  34613. backBeast: {
  34614. height: math.unit(40, "feet"),
  34615. weight: math.unit(64000, "lb"),
  34616. name: "Back (Beast)",
  34617. image: {
  34618. source: "./media/characters/midnight-tales/back-beast.svg",
  34619. extra: 929/855,
  34620. bottom: 16/945
  34621. }
  34622. },
  34623. footBeast: {
  34624. height: math.unit(6.7, "feet"),
  34625. name: "Foot (Beast)",
  34626. image: {
  34627. source: "./media/characters/midnight-tales/foot-beast.svg"
  34628. }
  34629. },
  34630. headBeast: {
  34631. height: math.unit(8, "feet"),
  34632. name: "Head (Beast)",
  34633. image: {
  34634. source: "./media/characters/midnight-tales/head-beast.svg"
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(5 + 5 / 12, "feet"),
  34642. default: true
  34643. },
  34644. {
  34645. name: "Macro",
  34646. height: math.unit(25, "feet")
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(5 + 10/12, "feet"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/argon/front.svg",
  34658. extra: 2009/1935,
  34659. bottom: 118/2127
  34660. }
  34661. },
  34662. back: {
  34663. height: math.unit(5 + 10/12, "feet"),
  34664. name: "Back",
  34665. image: {
  34666. source: "./media/characters/argon/back.svg",
  34667. extra: 2047/1992,
  34668. bottom: 20/2067
  34669. }
  34670. },
  34671. frontDressed: {
  34672. height: math.unit(5 + 10/12, "feet"),
  34673. name: "Front (Dressed)",
  34674. image: {
  34675. source: "./media/characters/argon/front-dressed.svg",
  34676. extra: 2009/1935,
  34677. bottom: 118/2127
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(5 + 10/12, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(8 + 6/12, "feet"),
  34694. weight: math.unit(1150, "lb"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/kichi/front.svg",
  34698. extra: 1267/1164,
  34699. bottom: 61/1328
  34700. }
  34701. },
  34702. back: {
  34703. height: math.unit(8 + 6/12, "feet"),
  34704. weight: math.unit(1150, "lb"),
  34705. name: "Back",
  34706. image: {
  34707. source: "./media/characters/kichi/back.svg",
  34708. extra: 1273/1166,
  34709. bottom: 33/1306
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(8 + 6/12, "feet"),
  34717. default: true
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34723. {
  34724. front: {
  34725. height: math.unit(6, "feet"),
  34726. weight: math.unit(210, "lb"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/manetel-greyscale/front.svg",
  34730. extra: 350/312,
  34731. bottom: 8/358
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Micro",
  34738. height: math.unit(2, "inches")
  34739. },
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(6, "feet"),
  34743. default: true
  34744. },
  34745. {
  34746. name: "Minimacro",
  34747. height: math.unit(17, "feet")
  34748. },
  34749. {
  34750. name: "Macro",
  34751. height: math.unit(117, "feet")
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34757. {
  34758. side: {
  34759. height: math.unit(5 + 1/12, "feet"),
  34760. weight: math.unit(418, "lb"),
  34761. name: "Side",
  34762. image: {
  34763. source: "./media/characters/softpurr/side.svg",
  34764. extra: 1993/1945,
  34765. bottom: 134/2127
  34766. }
  34767. },
  34768. front: {
  34769. height: math.unit(5 + 1/12, "feet"),
  34770. weight: math.unit(418, "lb"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/softpurr/front.svg",
  34774. extra: 1950/1856,
  34775. bottom: 174/2124
  34776. }
  34777. },
  34778. paw: {
  34779. height: math.unit(1, "feet"),
  34780. name: "Paw",
  34781. image: {
  34782. source: "./media/characters/softpurr/paw.svg"
  34783. }
  34784. },
  34785. },
  34786. [
  34787. {
  34788. name: "Normal",
  34789. height: math.unit(5 + 1/12, "feet"),
  34790. default: true
  34791. },
  34792. ]
  34793. ))
  34794. characterMakers.push(() => makeCharacter(
  34795. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34796. {
  34797. front: {
  34798. height: math.unit(260, "meters"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/anahita/front.svg",
  34802. extra: 665/635,
  34803. bottom: 89/754
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Macro",
  34810. height: math.unit(260, "meters"),
  34811. default: true
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(4 + 10/12, "feet"),
  34820. weight: math.unit(160, "lb"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/chip-mouse/front.svg",
  34824. extra: 3528/3408,
  34825. bottom: 0/3528
  34826. }
  34827. },
  34828. frontNsfw: {
  34829. height: math.unit(4 + 10/12, "feet"),
  34830. weight: math.unit(160, "lb"),
  34831. name: "Front (NSFW)",
  34832. image: {
  34833. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34834. extra: 3528/3408,
  34835. bottom: 0/3528
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(4 + 10/12, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34849. {
  34850. side: {
  34851. height: math.unit(10, "feet"),
  34852. weight: math.unit(14000, "lb"),
  34853. name: "Side",
  34854. image: {
  34855. source: "./media/characters/kremm/side.svg",
  34856. extra: 1390/1053,
  34857. bottom: 90/1480
  34858. }
  34859. },
  34860. gut: {
  34861. height: math.unit(5.8, "feet"),
  34862. name: "Gut",
  34863. image: {
  34864. source: "./media/characters/kremm/gut.svg"
  34865. }
  34866. },
  34867. ass: {
  34868. height: math.unit(6.1, "feet"),
  34869. name: "Ass",
  34870. image: {
  34871. source: "./media/characters/kremm/ass.svg"
  34872. }
  34873. },
  34874. jaws: {
  34875. height: math.unit(2.2, "feet"),
  34876. name: "Jaws",
  34877. image: {
  34878. source: "./media/characters/kremm/jaws.svg"
  34879. }
  34880. },
  34881. dick: {
  34882. height: math.unit(4.26, "feet"),
  34883. name: "Dick",
  34884. image: {
  34885. source: "./media/characters/kremm/dick.svg"
  34886. }
  34887. },
  34888. },
  34889. [
  34890. {
  34891. name: "Normal",
  34892. height: math.unit(10, "feet"),
  34893. default: true
  34894. },
  34895. ]
  34896. ))
  34897. characterMakers.push(() => makeCharacter(
  34898. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34899. {
  34900. front: {
  34901. height: math.unit(30, "stories"),
  34902. name: "Front",
  34903. image: {
  34904. source: "./media/characters/kai/front.svg",
  34905. extra: 1892/1718,
  34906. bottom: 162/2054
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Macro",
  34913. height: math.unit(30, "stories"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(6 + 4/12, "feet"),
  34923. weight: math.unit(145, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/sykes/front.svg",
  34927. extra: 1321 / 1187,
  34928. bottom: 66 / 1387
  34929. }
  34930. },
  34931. back: {
  34932. height: math.unit(6 + 4/12, "feet"),
  34933. weight: math.unit(145, "lb"),
  34934. name: "Back",
  34935. image: {
  34936. source: "./media/characters/sykes/back.svg",
  34937. extra: 1326/1181,
  34938. bottom: 31/1357
  34939. }
  34940. },
  34941. traditionalOutfit: {
  34942. height: math.unit(6 + 4/12, "feet"),
  34943. weight: math.unit(145, "lb"),
  34944. name: "Traditional Outfit",
  34945. image: {
  34946. source: "./media/characters/sykes/traditional-outfit.svg",
  34947. extra: 1321 / 1187,
  34948. bottom: 66 / 1387
  34949. }
  34950. },
  34951. adventureOutfit: {
  34952. height: math.unit(6 + 4/12, "feet"),
  34953. weight: math.unit(145, "lb"),
  34954. name: "Adventure Outfit",
  34955. image: {
  34956. source: "./media/characters/sykes/adventure-outfit.svg",
  34957. extra: 1321 / 1187,
  34958. bottom: 66 / 1387
  34959. }
  34960. },
  34961. handLeft: {
  34962. height: math.unit(0.9, "feet"),
  34963. name: "Hand (Left)",
  34964. image: {
  34965. source: "./media/characters/sykes/hand-left.svg"
  34966. }
  34967. },
  34968. handRight: {
  34969. height: math.unit(0.839, "feet"),
  34970. name: "Hand (Right)",
  34971. image: {
  34972. source: "./media/characters/sykes/hand-right.svg"
  34973. }
  34974. },
  34975. leftFoot: {
  34976. height: math.unit(1.2, "feet"),
  34977. name: "Foot (Left)",
  34978. image: {
  34979. source: "./media/characters/sykes/foot-left.svg"
  34980. }
  34981. },
  34982. rightFoot: {
  34983. height: math.unit(1.2, "feet"),
  34984. name: "Foot (Right)",
  34985. image: {
  34986. source: "./media/characters/sykes/foot-right.svg"
  34987. }
  34988. },
  34989. maw: {
  34990. height: math.unit(1.93, "feet"),
  34991. name: "Maw",
  34992. image: {
  34993. source: "./media/characters/sykes/maw.svg"
  34994. }
  34995. },
  34996. teeth: {
  34997. height: math.unit(0.51, "feet"),
  34998. name: "Teeth",
  34999. image: {
  35000. source: "./media/characters/sykes/teeth.svg"
  35001. }
  35002. },
  35003. tongue: {
  35004. height: math.unit(2.13, "feet"),
  35005. name: "Tongue",
  35006. image: {
  35007. source: "./media/characters/sykes/tongue.svg"
  35008. }
  35009. },
  35010. uvula: {
  35011. height: math.unit(0.16, "feet"),
  35012. name: "Uvula",
  35013. image: {
  35014. source: "./media/characters/sykes/uvula.svg"
  35015. }
  35016. },
  35017. collar: {
  35018. height: math.unit(0.287, "feet"),
  35019. name: "Collar",
  35020. image: {
  35021. source: "./media/characters/sykes/collar.svg"
  35022. }
  35023. },
  35024. tail: {
  35025. height: math.unit(3.8, "feet"),
  35026. name: "Tail",
  35027. image: {
  35028. source: "./media/characters/sykes/tail.svg"
  35029. }
  35030. },
  35031. },
  35032. [
  35033. {
  35034. name: "Shrunken",
  35035. height: math.unit(5, "inches")
  35036. },
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(6 + 4 / 12, "feet"),
  35040. default: true
  35041. },
  35042. {
  35043. name: "Big",
  35044. height: math.unit(15, "feet")
  35045. },
  35046. ]
  35047. ))
  35048. characterMakers.push(() => makeCharacter(
  35049. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35050. {
  35051. front: {
  35052. height: math.unit(5 + 8/12, "feet"),
  35053. weight: math.unit(190, "lb"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/oven-otter/front.svg",
  35057. extra: 1809/1740,
  35058. bottom: 181/1990
  35059. }
  35060. },
  35061. back: {
  35062. height: math.unit(5 + 8/12, "feet"),
  35063. weight: math.unit(190, "lb"),
  35064. name: "Back",
  35065. image: {
  35066. source: "./media/characters/oven-otter/back.svg",
  35067. extra: 1709/1635,
  35068. bottom: 118/1827
  35069. }
  35070. },
  35071. hand: {
  35072. height: math.unit(1.07, "feet"),
  35073. name: "Hand",
  35074. image: {
  35075. source: "./media/characters/oven-otter/hand.svg"
  35076. }
  35077. },
  35078. beans: {
  35079. height: math.unit(1.74, "feet"),
  35080. name: "Beans",
  35081. image: {
  35082. source: "./media/characters/oven-otter/beans.svg"
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Micro",
  35089. height: math.unit(0.5, "inches")
  35090. },
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(5 + 8/12, "feet"),
  35094. default: true
  35095. },
  35096. {
  35097. name: "Macro",
  35098. height: math.unit(250, "feet")
  35099. },
  35100. {
  35101. name: "Really High",
  35102. height: math.unit(420, "feet")
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35108. {
  35109. front: {
  35110. height: math.unit(5, "meters"),
  35111. weight: math.unit(292000000000000, "kg"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/devourer/front.svg",
  35115. extra: 1800/1733,
  35116. bottom: 211/2011
  35117. }
  35118. },
  35119. maw: {
  35120. height: math.unit(1.1, "meter"),
  35121. name: "Maw",
  35122. image: {
  35123. source: "./media/characters/devourer/maw.svg"
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Small",
  35130. height: math.unit(3, "meters")
  35131. },
  35132. {
  35133. name: "Large",
  35134. height: math.unit(5, "meters"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35141. {
  35142. front: {
  35143. height: math.unit(6, "feet"),
  35144. weight: math.unit(400, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/ellarby/front.svg",
  35148. extra: 1909/1763,
  35149. bottom: 80/1989
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(6, "feet"),
  35154. weight: math.unit(400, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/ellarby/back.svg",
  35158. extra: 1914/1784,
  35159. bottom: 172/2086
  35160. }
  35161. },
  35162. },
  35163. [
  35164. {
  35165. name: "Mischief",
  35166. height: math.unit(18, "inches")
  35167. },
  35168. {
  35169. name: "Trouble",
  35170. height: math.unit(12, "feet")
  35171. },
  35172. {
  35173. name: "Havoc",
  35174. height: math.unit(200, "feet"),
  35175. default: true
  35176. },
  35177. {
  35178. name: "Pandemonium",
  35179. height: math.unit(1, "mile")
  35180. },
  35181. {
  35182. name: "Catastrophe",
  35183. height: math.unit(100, "miles")
  35184. },
  35185. ]
  35186. ))
  35187. characterMakers.push(() => makeCharacter(
  35188. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35189. {
  35190. front: {
  35191. height: math.unit(4.7, "meters"),
  35192. weight: math.unit(6500, "kg"),
  35193. name: "Front",
  35194. image: {
  35195. source: "./media/characters/vex/front.svg",
  35196. extra: 1288/1140,
  35197. bottom: 100/1388
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Normal",
  35204. height: math.unit(4.7, "meters"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35211. {
  35212. normal: {
  35213. height: math.unit(6, "feet"),
  35214. weight: math.unit(350, "lb"),
  35215. name: "Normal",
  35216. image: {
  35217. source: "./media/characters/teshy/normal.svg",
  35218. extra: 1795/1735,
  35219. bottom: 16/1811
  35220. }
  35221. },
  35222. monsterFront: {
  35223. height: math.unit(12, "feet"),
  35224. weight: math.unit(4700, "lb"),
  35225. name: "Monster (Front)",
  35226. image: {
  35227. source: "./media/characters/teshy/monster-front.svg",
  35228. extra: 2042/2034,
  35229. bottom: 128/2170
  35230. }
  35231. },
  35232. monsterSide: {
  35233. height: math.unit(12, "feet"),
  35234. weight: math.unit(4700, "lb"),
  35235. name: "Monster (Side)",
  35236. image: {
  35237. source: "./media/characters/teshy/monster-side.svg",
  35238. extra: 2067/2056,
  35239. bottom: 70/2137
  35240. }
  35241. },
  35242. monsterBack: {
  35243. height: math.unit(12, "feet"),
  35244. weight: math.unit(4700, "lb"),
  35245. name: "Monster (Back)",
  35246. image: {
  35247. source: "./media/characters/teshy/monster-back.svg",
  35248. extra: 1921/1914,
  35249. bottom: 171/2092
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Normal",
  35256. height: math.unit(6, "feet"),
  35257. default: true
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35263. {
  35264. front: {
  35265. height: math.unit(6, "feet"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/ramey/front.svg",
  35269. extra: 790/787,
  35270. bottom: 27/817
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(6, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(5 + 5/12, "feet"),
  35287. weight: math.unit(120, "lb"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/phirae/front.svg",
  35291. extra: 2491/2436,
  35292. bottom: 38/2529
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(5 + 5/12, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35306. {
  35307. front: {
  35308. height: math.unit(5 + 3/12, "feet"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/stagglas/front.svg",
  35312. extra: 962/882,
  35313. bottom: 53/1015
  35314. }
  35315. },
  35316. feral: {
  35317. height: math.unit(335, "cm"),
  35318. name: "Feral",
  35319. image: {
  35320. source: "./media/characters/stagglas/feral.svg",
  35321. extra: 1732/1090,
  35322. bottom: 48/1780
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Normal",
  35329. height: math.unit(5 + 3/12, "feet"),
  35330. default: true
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35336. {
  35337. front: {
  35338. height: math.unit(5 + 4/12, "feet"),
  35339. weight: math.unit(145, "lb"),
  35340. name: "Front",
  35341. image: {
  35342. source: "./media/characters/starra/front.svg",
  35343. extra: 1790/1691,
  35344. bottom: 91/1881
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(5 + 4/12, "feet"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(2.2, "meters"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35364. extra: 1194/1005,
  35365. bottom: 25/1219
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(2.2, "meters"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35379. {
  35380. side: {
  35381. height: math.unit(8 + 2/12, "feet"),
  35382. weight: math.unit(1240, "lb"),
  35383. name: "Side",
  35384. image: {
  35385. source: "./media/characters/mika-valentine/side.svg",
  35386. extra: 2670/2501,
  35387. bottom: 250/2920
  35388. }
  35389. },
  35390. },
  35391. [
  35392. {
  35393. name: "Normal",
  35394. height: math.unit(8 + 2/12, "feet"),
  35395. default: true
  35396. },
  35397. ]
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35401. {
  35402. front: {
  35403. height: math.unit(7 + 2/12, "feet"),
  35404. name: "Front",
  35405. image: {
  35406. source: "./media/characters/xoltol/front.svg",
  35407. extra: 2212/2124,
  35408. bottom: 84/2296
  35409. }
  35410. },
  35411. side: {
  35412. height: math.unit(7 + 2/12, "feet"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/xoltol/side.svg",
  35416. extra: 2273/2197,
  35417. bottom: 26/2299
  35418. }
  35419. },
  35420. hand: {
  35421. height: math.unit(2.5, "feet"),
  35422. name: "Hand",
  35423. image: {
  35424. source: "./media/characters/xoltol/hand.svg"
  35425. }
  35426. },
  35427. },
  35428. [
  35429. {
  35430. name: "Small-ish",
  35431. height: math.unit(5 + 11/12, "feet")
  35432. },
  35433. {
  35434. name: "Normal",
  35435. height: math.unit(7 + 2/12, "feet")
  35436. },
  35437. {
  35438. name: "\"Macro\"",
  35439. height: math.unit(14 + 9/12, "feet"),
  35440. default: true
  35441. },
  35442. {
  35443. name: "Alternate Height",
  35444. height: math.unit(20, "feet")
  35445. },
  35446. {
  35447. name: "Actually Macro",
  35448. height: math.unit(100, "feet")
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35454. {
  35455. front: {
  35456. height: math.unit(5 + 2/12, "feet"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/kotetsu-redwood/front.svg",
  35460. extra: 1053/942,
  35461. bottom: 60/1113
  35462. }
  35463. },
  35464. },
  35465. [
  35466. {
  35467. name: "Normal",
  35468. height: math.unit(5 + 2/12, "feet"),
  35469. default: true
  35470. },
  35471. ]
  35472. ))
  35473. characterMakers.push(() => makeCharacter(
  35474. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35475. {
  35476. front: {
  35477. height: math.unit(2.4, "meters"),
  35478. weight: math.unit(125, "kg"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/lilith/front.svg",
  35482. extra: 1590/1513,
  35483. bottom: 203/1793
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Humanoid",
  35490. height: math.unit(2.4, "meters")
  35491. },
  35492. {
  35493. name: "Normal",
  35494. height: math.unit(6, "meters"),
  35495. default: true
  35496. },
  35497. {
  35498. name: "Largest",
  35499. height: math.unit(55, "meters")
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(8 + 4/12, "feet"),
  35508. weight: math.unit(535, "lb"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/beh'kah-bolger/front.svg",
  35512. extra: 1660/1603,
  35513. bottom: 37/1697
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(8 + 4/12, "feet"),
  35521. default: true
  35522. },
  35523. {
  35524. name: "Kaiju",
  35525. height: math.unit(250, "feet")
  35526. },
  35527. {
  35528. name: "Still Growing",
  35529. height: math.unit(10, "miles")
  35530. },
  35531. {
  35532. name: "Continental",
  35533. height: math.unit(5000, "miles")
  35534. },
  35535. {
  35536. name: "Final Form",
  35537. height: math.unit(2500000, "miles")
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35543. {
  35544. front: {
  35545. height: math.unit(7 + 2/12, "feet"),
  35546. weight: math.unit(230, "kg"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/tatyana-milewska/front.svg",
  35550. extra: 1199/1150,
  35551. bottom: 86/1285
  35552. }
  35553. },
  35554. },
  35555. [
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(7 + 2/12, "feet"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Big",
  35563. height: math.unit(12, "feet")
  35564. },
  35565. {
  35566. name: "Minimacro",
  35567. height: math.unit(20, "feet")
  35568. },
  35569. {
  35570. name: "Macro",
  35571. height: math.unit(120, "feet")
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35577. {
  35578. front: {
  35579. height: math.unit(7 + 8/12, "feet"),
  35580. weight: math.unit(152, "kg"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/helen-arri/front.svg",
  35584. extra: 440/423,
  35585. bottom: 14/454
  35586. }
  35587. },
  35588. back: {
  35589. height: math.unit(7 + 8/12, "feet"),
  35590. weight: math.unit(152, "kg"),
  35591. name: "Back",
  35592. image: {
  35593. source: "./media/characters/helen-arri/back.svg",
  35594. extra: 443/426,
  35595. bottom: 8/451
  35596. }
  35597. },
  35598. },
  35599. [
  35600. {
  35601. name: "Normal",
  35602. height: math.unit(7 + 8/12, "feet"),
  35603. default: true
  35604. },
  35605. {
  35606. name: "Big",
  35607. height: math.unit(14, "feet")
  35608. },
  35609. {
  35610. name: "Minimacro",
  35611. height: math.unit(24, "feet")
  35612. },
  35613. {
  35614. name: "Macro",
  35615. height: math.unit(140, "feet")
  35616. },
  35617. ]
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(6, "meters"),
  35624. name: "Front",
  35625. image: {
  35626. source: "./media/characters/ehanu-rehu/front.svg",
  35627. extra: 1800/1800,
  35628. bottom: 59/1859
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(6, "meters"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(7 + 3/12, "feet"),
  35645. name: "Front",
  35646. image: {
  35647. source: "./media/characters/renholder/front.svg",
  35648. extra: 3096/2960,
  35649. bottom: 250/3346
  35650. }
  35651. },
  35652. },
  35653. [
  35654. {
  35655. name: "Normal Bat",
  35656. height: math.unit(7 + 3/12, "feet"),
  35657. default: true
  35658. },
  35659. {
  35660. name: "Slightly Tall Bat",
  35661. height: math.unit(100, "feet")
  35662. },
  35663. {
  35664. name: "Big Bat",
  35665. height: math.unit(1000, "feet")
  35666. },
  35667. {
  35668. name: "City-Sized Bat",
  35669. height: math.unit(200000, "feet")
  35670. },
  35671. {
  35672. name: "Bigger Bat",
  35673. height: math.unit(10000, "miles")
  35674. },
  35675. {
  35676. name: "Solar Sized Bat",
  35677. height: math.unit(100, "AU")
  35678. },
  35679. {
  35680. name: "Galactic Bat",
  35681. height: math.unit(200000, "lightyears")
  35682. },
  35683. {
  35684. name: "Universally Known Bat",
  35685. height: math.unit(1, "universe")
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(6 + 11/12, "feet"),
  35694. weight: math.unit(250, "lb"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/cookiecat/front.svg",
  35698. extra: 893/827,
  35699. bottom: 14/907
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Micro",
  35706. height: math.unit(3, "inches")
  35707. },
  35708. {
  35709. name: "Normal",
  35710. height: math.unit(6 + 11/12, "feet"),
  35711. default: true
  35712. },
  35713. {
  35714. name: "Macro",
  35715. height: math.unit(100, "feet")
  35716. },
  35717. {
  35718. name: "Macro+",
  35719. height: math.unit(404, "feet")
  35720. },
  35721. {
  35722. name: "Megamacro",
  35723. height: math.unit(165, "miles")
  35724. },
  35725. {
  35726. name: "Planetary",
  35727. height: math.unit(4600, "miles")
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35733. {
  35734. front: {
  35735. height: math.unit(10 + 3/12, "feet"),
  35736. weight: math.unit(1500, "lb"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/tux-kusanagi/front.svg",
  35740. extra: 944/840,
  35741. bottom: 39/983
  35742. }
  35743. },
  35744. back: {
  35745. height: math.unit(10 + 3/12, "feet"),
  35746. weight: math.unit(1500, "lb"),
  35747. name: "Back",
  35748. image: {
  35749. source: "./media/characters/tux-kusanagi/back.svg",
  35750. extra: 941/842,
  35751. bottom: 28/969
  35752. }
  35753. },
  35754. rump: {
  35755. height: math.unit(5.25, "feet"),
  35756. name: "Rump",
  35757. image: {
  35758. source: "./media/characters/tux-kusanagi/rump.svg"
  35759. }
  35760. },
  35761. beak: {
  35762. height: math.unit(1.54, "feet"),
  35763. name: "Beak",
  35764. image: {
  35765. source: "./media/characters/tux-kusanagi/beak.svg"
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(10 + 3/12, "feet"),
  35773. default: true
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35779. {
  35780. front: {
  35781. height: math.unit(58, "feet"),
  35782. weight: math.unit(200, "tons"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/uzarmazari/front.svg",
  35786. extra: 1575/1455,
  35787. bottom: 152/1727
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(58, "feet"),
  35792. weight: math.unit(200, "tons"),
  35793. name: "Back",
  35794. image: {
  35795. source: "./media/characters/uzarmazari/back.svg",
  35796. extra: 1585/1510,
  35797. bottom: 157/1742
  35798. }
  35799. },
  35800. head: {
  35801. height: math.unit(26, "feet"),
  35802. name: "Head",
  35803. image: {
  35804. source: "./media/characters/uzarmazari/head.svg"
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Normal",
  35811. height: math.unit(58, "feet"),
  35812. default: true
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35818. {
  35819. side: {
  35820. height: math.unit(15, "feet"),
  35821. name: "Side",
  35822. image: {
  35823. source: "./media/characters/akitu/side.svg",
  35824. extra: 1421/1321,
  35825. bottom: 157/1578
  35826. }
  35827. },
  35828. front: {
  35829. height: math.unit(15, "feet"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/akitu/front.svg",
  35833. extra: 1435/1326,
  35834. bottom: 232/1667
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(15, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(10 + 8/12, "feet"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/azalie-croixland/front.svg",
  35854. extra: 1972/1856,
  35855. bottom: 31/2003
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Original Height",
  35862. height: math.unit(5 + 4/12, "feet")
  35863. },
  35864. {
  35865. name: "Normal Height",
  35866. height: math.unit(10 + 8/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35873. {
  35874. side: {
  35875. height: math.unit(7 + 1/12, "feet"),
  35876. weight: math.unit(245, "lb"),
  35877. name: "Side",
  35878. image: {
  35879. source: "./media/characters/kavus-kazian/side.svg",
  35880. extra: 349/342,
  35881. bottom: 15/364
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(7 + 1/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35895. {
  35896. normalFront: {
  35897. height: math.unit(5 + 11/12, "feet"),
  35898. name: "Front",
  35899. image: {
  35900. source: "./media/characters/moonlight-rose/normal-front.svg",
  35901. extra: 1980/1825,
  35902. bottom: 18/1998
  35903. },
  35904. form: "normal",
  35905. default: true
  35906. },
  35907. normalBack: {
  35908. height: math.unit(5 + 11/12, "feet"),
  35909. name: "Back",
  35910. image: {
  35911. source: "./media/characters/moonlight-rose/normal-back.svg",
  35912. extra: 2010/1839,
  35913. bottom: 10/2020
  35914. },
  35915. form: "normal"
  35916. },
  35917. demonFront: {
  35918. height: math.unit(1.5, "earths"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/moonlight-rose/demon.svg",
  35922. extra: 1400/1294,
  35923. bottom: 45/1445
  35924. },
  35925. form: "demon",
  35926. default: true
  35927. },
  35928. terraFront: {
  35929. height: math.unit(1.5, "earths"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/moonlight-rose/terra.svg"
  35933. },
  35934. form: "terra",
  35935. default: true
  35936. },
  35937. jupiterFront: {
  35938. height: math.unit(69911*2, "km"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35942. extra: 1367/1286,
  35943. bottom: 55/1422
  35944. },
  35945. form: "jupiter",
  35946. default: true
  35947. },
  35948. neptuneFront: {
  35949. height: math.unit(24622*2, "feet"),
  35950. name: "Front",
  35951. image: {
  35952. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35953. extra: 1851/1712,
  35954. bottom: 0/1851
  35955. },
  35956. form: "neptune",
  35957. default: true
  35958. },
  35959. },
  35960. [
  35961. {
  35962. name: "\"Natural\" Height",
  35963. height: math.unit(5 + 11/12, "feet"),
  35964. form: "normal"
  35965. },
  35966. {
  35967. name: "Smallest comfortable size",
  35968. height: math.unit(40, "meters"),
  35969. form: "normal"
  35970. },
  35971. {
  35972. name: "Common size",
  35973. height: math.unit(50, "km"),
  35974. form: "normal",
  35975. default: true
  35976. },
  35977. {
  35978. name: "Normal",
  35979. height: math.unit(1.5, "earths"),
  35980. form: "demon",
  35981. default: true
  35982. },
  35983. {
  35984. name: "Universal",
  35985. height: math.unit(15, "universes"),
  35986. form: "demon"
  35987. },
  35988. {
  35989. name: "Earth",
  35990. height: math.unit(1.5, "earths"),
  35991. form: "terra",
  35992. default: true
  35993. },
  35994. {
  35995. name: "Super Earth",
  35996. height: math.unit(67.5, "earths"),
  35997. form: "terra"
  35998. },
  35999. {
  36000. name: "Doesn't fit in a solar system...",
  36001. height: math.unit(1, "galaxy"),
  36002. form: "terra"
  36003. },
  36004. {
  36005. name: "Saturn",
  36006. height: math.unit(58232*2, "km"),
  36007. form: "jupiter"
  36008. },
  36009. {
  36010. name: "Jupiter",
  36011. height: math.unit(69911*2, "km"),
  36012. form: "jupiter",
  36013. default: true
  36014. },
  36015. {
  36016. name: "HD 100546 b",
  36017. height: math.unit(482938, "km"),
  36018. form: "jupiter"
  36019. },
  36020. {
  36021. name: "Enceladus",
  36022. height: math.unit(513*2, "km"),
  36023. form: "neptune"
  36024. },
  36025. {
  36026. name: "Europe",
  36027. height: math.unit(1560*2, "km"),
  36028. form: "neptune"
  36029. },
  36030. {
  36031. name: "Neptune",
  36032. height: math.unit(24622*2, "km"),
  36033. form: "neptune",
  36034. default: true
  36035. },
  36036. {
  36037. name: "CoRoT-9b",
  36038. height: math.unit(75067*2, "km"),
  36039. form: "neptune"
  36040. },
  36041. ],
  36042. {
  36043. "normal": {
  36044. name: "Normal",
  36045. default: true
  36046. },
  36047. "demon": {
  36048. name: "Demon"
  36049. },
  36050. "terra": {
  36051. name: "Terra"
  36052. },
  36053. "jupiter": {
  36054. name: "Jupiter"
  36055. },
  36056. "neptune": {
  36057. name: "Neptune"
  36058. }
  36059. }
  36060. ))
  36061. characterMakers.push(() => makeCharacter(
  36062. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36063. {
  36064. front: {
  36065. height: math.unit(16, "feet"),
  36066. weight: math.unit(610, "kg"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/huckle/front.svg",
  36070. extra: 1731/1625,
  36071. bottom: 33/1764
  36072. }
  36073. },
  36074. back: {
  36075. height: math.unit(16, "feet"),
  36076. weight: math.unit(610, "kg"),
  36077. name: "Back",
  36078. image: {
  36079. source: "./media/characters/huckle/back.svg",
  36080. extra: 1738/1651,
  36081. bottom: 37/1775
  36082. }
  36083. },
  36084. laughing: {
  36085. height: math.unit(3.75, "feet"),
  36086. name: "Laughing",
  36087. image: {
  36088. source: "./media/characters/huckle/laughing.svg"
  36089. }
  36090. },
  36091. angry: {
  36092. height: math.unit(4.15, "feet"),
  36093. name: "Angry",
  36094. image: {
  36095. source: "./media/characters/huckle/angry.svg"
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(16, "feet"),
  36103. default: true
  36104. },
  36105. {
  36106. name: "Mini Macro",
  36107. height: math.unit(463, "feet")
  36108. },
  36109. {
  36110. name: "Macro",
  36111. height: math.unit(1680, "meters")
  36112. },
  36113. {
  36114. name: "Mega Macro",
  36115. height: math.unit(175, "km")
  36116. },
  36117. {
  36118. name: "Terra Macro",
  36119. height: math.unit(32, "gigameters")
  36120. },
  36121. {
  36122. name: "Multiverse+",
  36123. height: math.unit(2.56e23, "yottameters")
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(6 + 9/12, "feet"),
  36132. weight: math.unit(280, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/candy/front.svg",
  36136. extra: 234/217,
  36137. bottom: 11/245
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Really Small",
  36144. height: math.unit(0.1, "nm")
  36145. },
  36146. {
  36147. name: "Micro",
  36148. height: math.unit(2, "inches")
  36149. },
  36150. {
  36151. name: "Normal",
  36152. height: math.unit(6 + 9/12, "feet"),
  36153. default: true
  36154. },
  36155. {
  36156. name: "Small Macro",
  36157. height: math.unit(69, "feet")
  36158. },
  36159. {
  36160. name: "Macro",
  36161. height: math.unit(160, "feet")
  36162. },
  36163. {
  36164. name: "Megamacro",
  36165. height: math.unit(22000, "miles")
  36166. },
  36167. {
  36168. name: "Gigamacro",
  36169. height: math.unit(50000, "miles")
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(4, "feet"),
  36178. weight: math.unit(90, "lb"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/joey-mcdonald/front.svg",
  36182. extra: 1059/852,
  36183. bottom: 33/1092
  36184. }
  36185. },
  36186. back: {
  36187. height: math.unit(4, "feet"),
  36188. weight: math.unit(90, "lb"),
  36189. name: "Back",
  36190. image: {
  36191. source: "./media/characters/joey-mcdonald/back.svg",
  36192. extra: 1077/879,
  36193. bottom: 5/1082
  36194. }
  36195. },
  36196. frontKobold: {
  36197. height: math.unit(4, "feet"),
  36198. weight: math.unit(100, "lb"),
  36199. name: "Front-kobold",
  36200. image: {
  36201. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36202. extra: 1480/1367,
  36203. bottom: 0/1480
  36204. }
  36205. },
  36206. backKobold: {
  36207. height: math.unit(4, "feet"),
  36208. weight: math.unit(100, "lb"),
  36209. name: "Back-kobold",
  36210. image: {
  36211. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36212. extra: 1449/1361,
  36213. bottom: 0/1449
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Normal",
  36220. height: math.unit(4, "feet"),
  36221. default: true
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(12 + 6/12, "feet"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/kass-lockheed/front.svg",
  36233. extra: 354/343,
  36234. bottom: 9/363
  36235. }
  36236. },
  36237. back: {
  36238. height: math.unit(12 + 6/12, "feet"),
  36239. name: "Back",
  36240. image: {
  36241. source: "./media/characters/kass-lockheed/back.svg",
  36242. extra: 364/352,
  36243. bottom: 3/367
  36244. }
  36245. },
  36246. dick: {
  36247. height: math.unit(3.12, "feet"),
  36248. name: "Dick",
  36249. image: {
  36250. source: "./media/characters/kass-lockheed/dick.svg"
  36251. }
  36252. },
  36253. head: {
  36254. height: math.unit(2.6, "feet"),
  36255. name: "Head",
  36256. image: {
  36257. source: "./media/characters/kass-lockheed/head.svg"
  36258. }
  36259. },
  36260. bleh: {
  36261. height: math.unit(2.85, "feet"),
  36262. name: "Bleh",
  36263. image: {
  36264. source: "./media/characters/kass-lockheed/bleh.svg"
  36265. }
  36266. },
  36267. smug: {
  36268. height: math.unit(2.85, "feet"),
  36269. name: "Smug",
  36270. image: {
  36271. source: "./media/characters/kass-lockheed/smug.svg"
  36272. }
  36273. },
  36274. },
  36275. [
  36276. {
  36277. name: "Normal",
  36278. height: math.unit(12 + 6/12, "feet"),
  36279. default: true
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36285. {
  36286. front: {
  36287. height: math.unit(6 + 2/12, "feet"),
  36288. name: "Front",
  36289. image: {
  36290. source: "./media/characters/taylor/front.svg",
  36291. extra: 639/495,
  36292. bottom: 12/651
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(6 + 2/12, "feet"),
  36300. default: true
  36301. },
  36302. {
  36303. name: "Big",
  36304. height: math.unit(15, "feet")
  36305. },
  36306. {
  36307. name: "Lorg",
  36308. height: math.unit(80, "feet")
  36309. },
  36310. {
  36311. name: "Too Lorg",
  36312. height: math.unit(120, "feet")
  36313. },
  36314. ]
  36315. ))
  36316. characterMakers.push(() => makeCharacter(
  36317. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36318. {
  36319. front: {
  36320. height: math.unit(15, "feet"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/kaizer/front.svg",
  36324. extra: 1612/1436,
  36325. bottom: 43/1655
  36326. }
  36327. },
  36328. },
  36329. [
  36330. {
  36331. name: "Normal",
  36332. height: math.unit(15, "feet"),
  36333. default: true
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(2, "feet"),
  36342. weight: math.unit(30, "lb"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/sandy/front.svg",
  36346. extra: 1439/1307,
  36347. bottom: 194/1633
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(2, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(3, "feet"),
  36364. name: "Front",
  36365. image: {
  36366. source: "./media/characters/mellvi/front.svg",
  36367. extra: 1831/1630,
  36368. bottom: 58/1889
  36369. }
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "Normal",
  36375. height: math.unit(3, "feet"),
  36376. default: true
  36377. },
  36378. ]
  36379. ))
  36380. characterMakers.push(() => makeCharacter(
  36381. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36382. {
  36383. front: {
  36384. height: math.unit(5 + 11/12, "feet"),
  36385. weight: math.unit(200, "lb"),
  36386. name: "Front",
  36387. image: {
  36388. source: "./media/characters/shirou/front.svg",
  36389. extra: 2491/2383,
  36390. bottom: 189/2680
  36391. }
  36392. },
  36393. back: {
  36394. height: math.unit(5 + 11/12, "feet"),
  36395. weight: math.unit(200, "lb"),
  36396. name: "Back",
  36397. image: {
  36398. source: "./media/characters/shirou/back.svg",
  36399. extra: 2554/2450,
  36400. bottom: 76/2630
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(5 + 11/12, "feet"),
  36408. default: true
  36409. },
  36410. ]
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36414. {
  36415. front: {
  36416. height: math.unit(6 + 3/12, "feet"),
  36417. weight: math.unit(177, "lb"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/noryu/front.svg",
  36421. extra: 973/885,
  36422. bottom: 10/983
  36423. }
  36424. },
  36425. },
  36426. [
  36427. {
  36428. name: "Normal",
  36429. height: math.unit(6 + 3/12, "feet"),
  36430. default: true
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(5 + 6/12, "feet"),
  36439. weight: math.unit(170, "lb"),
  36440. name: "Front",
  36441. image: {
  36442. source: "./media/characters/mevolas-rubenido/front.svg",
  36443. extra: 2109/1901,
  36444. bottom: 96/2205
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(5 + 6/12, "feet"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36458. {
  36459. front: {
  36460. height: math.unit(100, "feet"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/dee/front.svg",
  36464. extra: 2153/2036,
  36465. bottom: 59/2212
  36466. }
  36467. },
  36468. back: {
  36469. height: math.unit(100, "feet"),
  36470. name: "Back",
  36471. image: {
  36472. source: "./media/characters/dee/back.svg",
  36473. extra: 2183/2058,
  36474. bottom: 75/2258
  36475. }
  36476. },
  36477. foot: {
  36478. height: math.unit(19.43, "feet"),
  36479. name: "Foot",
  36480. image: {
  36481. source: "./media/characters/dee/foot.svg"
  36482. }
  36483. },
  36484. hoof: {
  36485. height: math.unit(20.6, "feet"),
  36486. name: "Hoof",
  36487. image: {
  36488. source: "./media/characters/dee/hoof.svg"
  36489. }
  36490. },
  36491. },
  36492. [
  36493. {
  36494. name: "Macro",
  36495. height: math.unit(100, "feet"),
  36496. default: true
  36497. },
  36498. ]
  36499. ))
  36500. characterMakers.push(() => makeCharacter(
  36501. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36502. {
  36503. front: {
  36504. height: math.unit(5 + 6/12, "feet"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/teh/front.svg",
  36508. extra: 1002/847,
  36509. bottom: 62/1064
  36510. }
  36511. },
  36512. },
  36513. [
  36514. {
  36515. name: "Normal",
  36516. height: math.unit(5 + 6/12, "feet"),
  36517. default: true
  36518. },
  36519. ]
  36520. ))
  36521. characterMakers.push(() => makeCharacter(
  36522. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36523. {
  36524. side: {
  36525. height: math.unit(6 + 1/12, "feet"),
  36526. weight: math.unit(204, "lb"),
  36527. name: "Side",
  36528. image: {
  36529. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36530. extra: 974/775,
  36531. bottom: 169/1143
  36532. }
  36533. },
  36534. sitting: {
  36535. height: math.unit(6 + 2/12, "feet"),
  36536. weight: math.unit(204, "lb"),
  36537. name: "Sitting",
  36538. image: {
  36539. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36540. extra: 1175/964,
  36541. bottom: 378/1553
  36542. }
  36543. },
  36544. },
  36545. [
  36546. {
  36547. name: "Normal",
  36548. height: math.unit(6 + 1/12, "feet"),
  36549. default: true
  36550. },
  36551. ]
  36552. ))
  36553. characterMakers.push(() => makeCharacter(
  36554. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36555. {
  36556. front: {
  36557. height: math.unit(6, "inches"),
  36558. name: "Front",
  36559. image: {
  36560. source: "./media/characters/tululi/front.svg",
  36561. extra: 1997/1876,
  36562. bottom: 20/2017
  36563. }
  36564. },
  36565. },
  36566. [
  36567. {
  36568. name: "Normal",
  36569. height: math.unit(6, "inches"),
  36570. default: true
  36571. },
  36572. ]
  36573. ))
  36574. characterMakers.push(() => makeCharacter(
  36575. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36576. {
  36577. front: {
  36578. height: math.unit(4 + 1/12, "feet"),
  36579. name: "Front",
  36580. image: {
  36581. source: "./media/characters/star/front.svg",
  36582. extra: 1493/1189,
  36583. bottom: 48/1541
  36584. }
  36585. },
  36586. },
  36587. [
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(4 + 1/12, "feet"),
  36591. default: true
  36592. },
  36593. ]
  36594. ))
  36595. characterMakers.push(() => makeCharacter(
  36596. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36597. {
  36598. front: {
  36599. height: math.unit(6 + 3/12, "feet"),
  36600. name: "Front",
  36601. image: {
  36602. source: "./media/characters/comet/front.svg",
  36603. extra: 1681/1462,
  36604. bottom: 26/1707
  36605. }
  36606. },
  36607. },
  36608. [
  36609. {
  36610. name: "Normal",
  36611. height: math.unit(6 + 3/12, "feet"),
  36612. default: true
  36613. },
  36614. ]
  36615. ))
  36616. characterMakers.push(() => makeCharacter(
  36617. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36618. {
  36619. front: {
  36620. height: math.unit(950, "feet"),
  36621. name: "Front",
  36622. image: {
  36623. source: "./media/characters/vortex/front.svg",
  36624. extra: 1497/1434,
  36625. bottom: 56/1553
  36626. }
  36627. },
  36628. maw: {
  36629. height: math.unit(285, "feet"),
  36630. name: "Maw",
  36631. image: {
  36632. source: "./media/characters/vortex/maw.svg"
  36633. }
  36634. },
  36635. },
  36636. [
  36637. {
  36638. name: "Macro",
  36639. height: math.unit(950, "feet"),
  36640. default: true
  36641. },
  36642. ]
  36643. ))
  36644. characterMakers.push(() => makeCharacter(
  36645. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36646. {
  36647. front: {
  36648. height: math.unit(600, "feet"),
  36649. weight: math.unit(0.02, "grams"),
  36650. name: "Front",
  36651. image: {
  36652. source: "./media/characters/doodle/front.svg",
  36653. extra: 1578/1413,
  36654. bottom: 37/1615
  36655. }
  36656. },
  36657. },
  36658. [
  36659. {
  36660. name: "Macro",
  36661. height: math.unit(600, "feet"),
  36662. default: true
  36663. },
  36664. ]
  36665. ))
  36666. characterMakers.push(() => makeCharacter(
  36667. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36668. {
  36669. front: {
  36670. height: math.unit(6 + 6/12, "feet"),
  36671. name: "Front",
  36672. image: {
  36673. source: "./media/characters/jai/front.svg",
  36674. extra: 1645/1534,
  36675. bottom: 115/1760
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Normal",
  36682. height: math.unit(6 + 6/12, "feet"),
  36683. default: true
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36689. {
  36690. front: {
  36691. height: math.unit(6 + 8/12, "feet"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/pixel/front.svg",
  36695. extra: 1900/1735,
  36696. bottom: 63/1963
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(6 + 8/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36710. {
  36711. back: {
  36712. height: math.unit(4 + 1/12, "feet"),
  36713. weight: math.unit(75, "lb"),
  36714. name: "Back",
  36715. image: {
  36716. source: "./media/characters/rhett/back.svg",
  36717. extra: 930/878,
  36718. bottom: 25/955
  36719. }
  36720. },
  36721. front: {
  36722. height: math.unit(4 + 1/12, "feet"),
  36723. weight: math.unit(75, "lb"),
  36724. name: "Front",
  36725. image: {
  36726. source: "./media/characters/rhett/front.svg",
  36727. extra: 1682/1586,
  36728. bottom: 92/1774
  36729. }
  36730. },
  36731. },
  36732. [
  36733. {
  36734. name: "Micro",
  36735. height: math.unit(8, "inches")
  36736. },
  36737. {
  36738. name: "Tiny",
  36739. height: math.unit(2, "feet")
  36740. },
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(4 + 1/12, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(3 + 3/12, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/penny/front.svg",
  36756. extra: 1406/1311,
  36757. bottom: 26/1432
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(3 + 3/12, "feet"),
  36765. default: true
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36771. {
  36772. front: {
  36773. height: math.unit(4 + 11/12, "feet"),
  36774. name: "Front",
  36775. image: {
  36776. source: "./media/characters/monty/front.svg",
  36777. extra: 1479/1209,
  36778. bottom: 0/1479
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(4 + 11/12, "feet"),
  36786. default: true
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36792. {
  36793. front: {
  36794. height: math.unit(8 + 4/12, "feet"),
  36795. name: "Front",
  36796. image: {
  36797. source: "./media/characters/sterling/front.svg",
  36798. extra: 1420/1236,
  36799. bottom: 27/1447
  36800. }
  36801. },
  36802. },
  36803. [
  36804. {
  36805. name: "Normal",
  36806. height: math.unit(8 + 4/12, "feet"),
  36807. default: true
  36808. },
  36809. ]
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(15, "feet"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/marble/front.svg",
  36819. extra: 973/937,
  36820. bottom: 32/1005
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(15, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36834. {
  36835. front: {
  36836. height: math.unit(3, "inches"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/powder/front.svg",
  36840. extra: 1504/1334,
  36841. bottom: 518/2022
  36842. }
  36843. },
  36844. },
  36845. [
  36846. {
  36847. name: "Normal",
  36848. height: math.unit(3, "inches"),
  36849. default: true
  36850. },
  36851. ]
  36852. ))
  36853. characterMakers.push(() => makeCharacter(
  36854. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36855. {
  36856. front: {
  36857. height: math.unit(4 + 5/12, "feet"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/joey-raccoon/front.svg",
  36861. extra: 1273/1197,
  36862. bottom: 0/1273
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(4 + 5/12, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(8 + 4/12, "feet"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/vick/front.svg",
  36882. extra: 2187/2118,
  36883. bottom: 47/2234
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(8 + 4/12, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(5 + 5/12, "feet"),
  36900. name: "Front",
  36901. image: {
  36902. source: "./media/characters/mitsy/front.svg",
  36903. extra: 1842/1695,
  36904. bottom: 0/1842
  36905. }
  36906. },
  36907. },
  36908. [
  36909. {
  36910. name: "Normal",
  36911. height: math.unit(5 + 5/12, "feet"),
  36912. default: true
  36913. },
  36914. ]
  36915. ))
  36916. characterMakers.push(() => makeCharacter(
  36917. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36918. {
  36919. front: {
  36920. height: math.unit(6 + 3/12, "feet"),
  36921. name: "Front",
  36922. image: {
  36923. source: "./media/characters/silvy/front.svg",
  36924. extra: 1995/1836,
  36925. bottom: 225/2220
  36926. }
  36927. },
  36928. },
  36929. [
  36930. {
  36931. name: "Normal",
  36932. height: math.unit(6 + 3/12, "feet"),
  36933. default: true
  36934. },
  36935. ]
  36936. ))
  36937. characterMakers.push(() => makeCharacter(
  36938. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36939. {
  36940. front: {
  36941. height: math.unit(3 + 8/12, "feet"),
  36942. name: "Front",
  36943. image: {
  36944. source: "./media/characters/rodney/front.svg",
  36945. extra: 1956/1747,
  36946. bottom: 31/1987
  36947. }
  36948. },
  36949. frontDressed: {
  36950. height: math.unit(2.9, "feet"),
  36951. name: "Front (Dressed)",
  36952. image: {
  36953. source: "./media/characters/rodney/front-dressed.svg",
  36954. extra: 1382/1241,
  36955. bottom: 385/1767
  36956. }
  36957. },
  36958. },
  36959. [
  36960. {
  36961. name: "Normal",
  36962. height: math.unit(3 + 8/12, "feet"),
  36963. default: true
  36964. },
  36965. ]
  36966. ))
  36967. characterMakers.push(() => makeCharacter(
  36968. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36969. {
  36970. front: {
  36971. height: math.unit(5 + 9/12, "feet"),
  36972. weight: math.unit(194, "lbs"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/zakail-sudekai/front.svg",
  36976. extra: 2696/2533,
  36977. bottom: 248/2944
  36978. }
  36979. },
  36980. maw: {
  36981. height: math.unit(1.35, "feet"),
  36982. name: "Maw",
  36983. image: {
  36984. source: "./media/characters/zakail-sudekai/maw.svg"
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(5 + 9/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(8 + 4/12, "feet"),
  37001. weight: math.unit(1200, "lb"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/eleanor/front.svg",
  37005. extra: 1226/1192,
  37006. bottom: 52/1278
  37007. }
  37008. },
  37009. back: {
  37010. height: math.unit(8 + 4/12, "feet"),
  37011. weight: math.unit(1200, "lb"),
  37012. name: "Back",
  37013. image: {
  37014. source: "./media/characters/eleanor/back.svg",
  37015. extra: 1242/1184,
  37016. bottom: 60/1302
  37017. }
  37018. },
  37019. head: {
  37020. height: math.unit(2.62, "feet"),
  37021. name: "Head",
  37022. image: {
  37023. source: "./media/characters/eleanor/head.svg"
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(8 + 4/12, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(8 + 4/12, "feet"),
  37040. weight: math.unit(750, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/tanya/front.svg",
  37044. extra: 1749/1615,
  37045. bottom: 33/1782
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(8 + 4/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(5, "feet"),
  37062. weight: math.unit(225, "lb"),
  37063. name: "Front",
  37064. image: {
  37065. source: "./media/characters/cindy/front.svg",
  37066. extra: 1320/1250,
  37067. bottom: 42/1362
  37068. }
  37069. },
  37070. frontDressed: {
  37071. height: math.unit(5, "feet"),
  37072. weight: math.unit(225, "lb"),
  37073. name: "Front (Dressed)",
  37074. image: {
  37075. source: "./media/characters/cindy/front-dressed.svg",
  37076. extra: 1320/1250,
  37077. bottom: 42/1362
  37078. }
  37079. },
  37080. back: {
  37081. height: math.unit(5, "feet"),
  37082. weight: math.unit(225, "lb"),
  37083. name: "Back",
  37084. image: {
  37085. source: "./media/characters/cindy/back.svg",
  37086. extra: 1384/1346,
  37087. bottom: 14/1398
  37088. }
  37089. },
  37090. },
  37091. [
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(5, "feet"),
  37095. default: true
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37101. {
  37102. front: {
  37103. height: math.unit(6 + 9/12, "feet"),
  37104. weight: math.unit(440, "lb"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/wilbur-owen/front.svg",
  37108. extra: 1575/1448,
  37109. bottom: 72/1647
  37110. }
  37111. },
  37112. back: {
  37113. height: math.unit(6 + 9/12, "feet"),
  37114. weight: math.unit(440, "lb"),
  37115. name: "Back",
  37116. image: {
  37117. source: "./media/characters/wilbur-owen/back.svg",
  37118. extra: 1578/1445,
  37119. bottom: 36/1614
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(6 + 9/12, "feet"),
  37127. default: true
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(6 + 5/12, "feet"),
  37136. weight: math.unit(650, "lb"),
  37137. name: "Front",
  37138. image: {
  37139. source: "./media/characters/keegan/front.svg",
  37140. extra: 2387/2198,
  37141. bottom: 33/2420
  37142. }
  37143. },
  37144. side: {
  37145. height: math.unit(6 + 5/12, "feet"),
  37146. weight: math.unit(650, "lb"),
  37147. name: "Side",
  37148. image: {
  37149. source: "./media/characters/keegan/side.svg",
  37150. extra: 2390/2202,
  37151. bottom: 47/2437
  37152. }
  37153. },
  37154. back: {
  37155. height: math.unit(6 + 5/12, "feet"),
  37156. weight: math.unit(650, "lb"),
  37157. name: "Back",
  37158. image: {
  37159. source: "./media/characters/keegan/back.svg",
  37160. extra: 2418/2268,
  37161. bottom: 15/2433
  37162. }
  37163. },
  37164. frontSfw: {
  37165. height: math.unit(6 + 5/12, "feet"),
  37166. weight: math.unit(650, "lb"),
  37167. name: "Front (SFW)",
  37168. image: {
  37169. source: "./media/characters/keegan/front-sfw.svg",
  37170. extra: 2387/2198,
  37171. bottom: 33/2420
  37172. }
  37173. },
  37174. beans: {
  37175. height: math.unit(1.85, "feet"),
  37176. name: "Beans",
  37177. image: {
  37178. source: "./media/characters/keegan/beans.svg"
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(6 + 5/12, "feet"),
  37186. default: true
  37187. },
  37188. ]
  37189. ))
  37190. characterMakers.push(() => makeCharacter(
  37191. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37192. {
  37193. front: {
  37194. height: math.unit(9, "feet"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/colton/front.svg",
  37198. extra: 1589/1326,
  37199. bottom: 139/1728
  37200. }
  37201. },
  37202. },
  37203. [
  37204. {
  37205. name: "Normal",
  37206. height: math.unit(9, "feet"),
  37207. default: true
  37208. },
  37209. ]
  37210. ))
  37211. characterMakers.push(() => makeCharacter(
  37212. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37213. {
  37214. front: {
  37215. height: math.unit(2 + 9/12, "feet"),
  37216. name: "Front",
  37217. image: {
  37218. source: "./media/characters/bora/front.svg",
  37219. extra: 1265/1250,
  37220. bottom: 24/1289
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Normal",
  37227. height: math.unit(2 + 9/12, "feet"),
  37228. default: true
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(8, "feet"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/myu-myu/front.svg",
  37240. extra: 1949/1857,
  37241. bottom: 90/2039
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(8, "feet"),
  37249. default: true
  37250. },
  37251. {
  37252. name: "Big",
  37253. height: math.unit(15, "feet")
  37254. },
  37255. {
  37256. name: "BIG",
  37257. height: math.unit(25, "feet")
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37263. {
  37264. side: {
  37265. height: math.unit(7 + 5/12, "feet"),
  37266. weight: math.unit(2800, "lb"),
  37267. name: "Side",
  37268. image: {
  37269. source: "./media/characters/haloren/side.svg",
  37270. extra: 1793/409,
  37271. bottom: 59/1852
  37272. }
  37273. },
  37274. frontPaw: {
  37275. height: math.unit(2.36, "feet"),
  37276. name: "Front paw",
  37277. image: {
  37278. source: "./media/characters/haloren/front-paw.svg"
  37279. }
  37280. },
  37281. hindPaw: {
  37282. height: math.unit(3.18, "feet"),
  37283. name: "Hind paw",
  37284. image: {
  37285. source: "./media/characters/haloren/hind-paw.svg"
  37286. }
  37287. },
  37288. maw: {
  37289. height: math.unit(5.05, "feet"),
  37290. name: "Maw",
  37291. image: {
  37292. source: "./media/characters/haloren/maw.svg"
  37293. }
  37294. },
  37295. dick: {
  37296. height: math.unit(2.90, "feet"),
  37297. name: "Dick",
  37298. image: {
  37299. source: "./media/characters/haloren/dick.svg"
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(7 + 5/12, "feet"),
  37307. default: true
  37308. },
  37309. {
  37310. name: "Enhanced",
  37311. height: math.unit(14 + 3/12, "feet")
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(171, "cm"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/kimmy/front.svg",
  37323. extra: 1491/1435,
  37324. bottom: 53/1544
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Small",
  37331. height: math.unit(9, "cm")
  37332. },
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(171, "cm"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37342. {
  37343. front: {
  37344. height: math.unit(8, "feet"),
  37345. weight: math.unit(300, "lb"),
  37346. name: "Front",
  37347. image: {
  37348. source: "./media/characters/galeboomer/front.svg",
  37349. extra: 4651/4415,
  37350. bottom: 162/4813
  37351. }
  37352. },
  37353. back: {
  37354. height: math.unit(8, "feet"),
  37355. weight: math.unit(300, "lb"),
  37356. name: "Back",
  37357. image: {
  37358. source: "./media/characters/galeboomer/back.svg",
  37359. extra: 4544/4314,
  37360. bottom: 16/4560
  37361. }
  37362. },
  37363. frontAlt: {
  37364. height: math.unit(8, "feet"),
  37365. weight: math.unit(300, "lb"),
  37366. name: "Front (Alt)",
  37367. image: {
  37368. source: "./media/characters/galeboomer/front-alt.svg",
  37369. extra: 4458/4228,
  37370. bottom: 68/4526
  37371. }
  37372. },
  37373. maw: {
  37374. height: math.unit(1.2, "feet"),
  37375. name: "Maw",
  37376. image: {
  37377. source: "./media/characters/galeboomer/maw.svg"
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(8, "feet"),
  37385. default: true
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(5 + 9/12, "feet"),
  37394. weight: math.unit(120, "lb"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/chyr/front.svg",
  37398. extra: 1323/1254,
  37399. bottom: 63/1386
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(5 + 9/12, "feet"),
  37404. weight: math.unit(120, "lb"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/chyr/back.svg",
  37408. extra: 1323/1252,
  37409. bottom: 48/1371
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(5 + 9/12, "feet"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37423. {
  37424. front: {
  37425. height: math.unit(7, "feet"),
  37426. weight: math.unit(310, "lb"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/solarus/front.svg",
  37430. extra: 2415/2021,
  37431. bottom: 103/2518
  37432. }
  37433. },
  37434. back: {
  37435. height: math.unit(7, "feet"),
  37436. weight: math.unit(310, "lb"),
  37437. name: "Back",
  37438. image: {
  37439. source: "./media/characters/solarus/back.svg",
  37440. extra: 2463/2089,
  37441. bottom: 79/2542
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(7, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(16, "feet"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37461. extra: 1844/1780,
  37462. bottom: 58/1902
  37463. }
  37464. },
  37465. winterCoat: {
  37466. height: math.unit(16, "feet"),
  37467. name: "Winter Coat",
  37468. image: {
  37469. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37470. extra: 1807/1775,
  37471. bottom: 69/1876
  37472. }
  37473. },
  37474. },
  37475. [
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(16, "feet"),
  37479. default: true
  37480. },
  37481. {
  37482. name: "Chicago Size",
  37483. height: math.unit(560, "feet")
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(11 + 6/12, "feet"),
  37492. weight: math.unit(1366, "lb"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/lexor/front.svg",
  37496. extra: 1560/1481,
  37497. bottom: 211/1771
  37498. }
  37499. },
  37500. back: {
  37501. height: math.unit(11 + 6/12, "feet"),
  37502. weight: math.unit(1366, "lb"),
  37503. name: "Back",
  37504. image: {
  37505. source: "./media/characters/lexor/back.svg",
  37506. extra: 1614/1533,
  37507. bottom: 76/1690
  37508. }
  37509. },
  37510. maw: {
  37511. height: math.unit(3, "feet"),
  37512. name: "Maw",
  37513. image: {
  37514. source: "./media/characters/lexor/maw.svg"
  37515. }
  37516. },
  37517. dick: {
  37518. height: math.unit(2.59, "feet"),
  37519. name: "Dick",
  37520. image: {
  37521. source: "./media/characters/lexor/dick.svg"
  37522. }
  37523. },
  37524. },
  37525. [
  37526. {
  37527. name: "Normal",
  37528. height: math.unit(11 + 6/12, "feet"),
  37529. default: true
  37530. },
  37531. ]
  37532. ))
  37533. characterMakers.push(() => makeCharacter(
  37534. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37535. {
  37536. front: {
  37537. height: math.unit(5 + 8/12, "feet"),
  37538. name: "Front",
  37539. image: {
  37540. source: "./media/characters/magnum/front.svg",
  37541. extra: 942/855,
  37542. bottom: 26/968
  37543. }
  37544. },
  37545. },
  37546. [
  37547. {
  37548. name: "Normal",
  37549. height: math.unit(5 + 8/12, "feet"),
  37550. default: true
  37551. },
  37552. ]
  37553. ))
  37554. characterMakers.push(() => makeCharacter(
  37555. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37556. {
  37557. front: {
  37558. height: math.unit(18 + 4/12, "feet"),
  37559. weight: math.unit(1500, "kg"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/solas-sharpsman/front.svg",
  37563. extra: 1698/1589,
  37564. bottom: 0/1698
  37565. }
  37566. },
  37567. },
  37568. [
  37569. {
  37570. name: "Normal",
  37571. height: math.unit(18 + 4/12, "feet"),
  37572. default: true
  37573. },
  37574. ]
  37575. ))
  37576. characterMakers.push(() => makeCharacter(
  37577. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37578. {
  37579. front: {
  37580. height: math.unit(5 + 5/12, "feet"),
  37581. weight: math.unit(180, "lb"),
  37582. name: "Front",
  37583. image: {
  37584. source: "./media/characters/october/front.svg",
  37585. extra: 1800/1650,
  37586. bottom: 0/1800
  37587. }
  37588. },
  37589. frontNsfw: {
  37590. height: math.unit(5 + 5/12, "feet"),
  37591. weight: math.unit(180, "lb"),
  37592. name: "Front (NSFW)",
  37593. image: {
  37594. source: "./media/characters/october/front-nsfw.svg",
  37595. extra: 1392/1307,
  37596. bottom: 42/1434
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Normal",
  37603. height: math.unit(5 + 5/12, "feet"),
  37604. default: true
  37605. },
  37606. ]
  37607. ))
  37608. characterMakers.push(() => makeCharacter(
  37609. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37610. {
  37611. front: {
  37612. height: math.unit(8 + 6/12, "feet"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/essynkardi/front.svg",
  37616. extra: 1914/1846,
  37617. bottom: 22/1936
  37618. }
  37619. },
  37620. },
  37621. [
  37622. {
  37623. name: "Normal",
  37624. height: math.unit(8 + 6/12, "feet"),
  37625. default: true
  37626. },
  37627. ]
  37628. ))
  37629. characterMakers.push(() => makeCharacter(
  37630. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37631. {
  37632. front: {
  37633. height: math.unit(6 + 6/12, "feet"),
  37634. weight: math.unit(7, "lb"),
  37635. name: "Front",
  37636. image: {
  37637. source: "./media/characters/icky/front.svg",
  37638. extra: 813/782,
  37639. bottom: 66/879
  37640. }
  37641. },
  37642. back: {
  37643. height: math.unit(6 + 6/12, "feet"),
  37644. weight: math.unit(7, "lb"),
  37645. name: "Back",
  37646. image: {
  37647. source: "./media/characters/icky/back.svg",
  37648. extra: 754/735,
  37649. bottom: 56/810
  37650. }
  37651. },
  37652. },
  37653. [
  37654. {
  37655. name: "Normal",
  37656. height: math.unit(6 + 6/12, "feet"),
  37657. default: true
  37658. },
  37659. ]
  37660. ))
  37661. characterMakers.push(() => makeCharacter(
  37662. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37663. {
  37664. front: {
  37665. height: math.unit(15, "feet"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/rojas/front.svg",
  37669. extra: 1462/1408,
  37670. bottom: 95/1557
  37671. }
  37672. },
  37673. back: {
  37674. height: math.unit(15, "feet"),
  37675. name: "Back",
  37676. image: {
  37677. source: "./media/characters/rojas/back.svg",
  37678. extra: 1023/954,
  37679. bottom: 28/1051
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(15, "feet"),
  37687. default: true
  37688. },
  37689. ]
  37690. ))
  37691. characterMakers.push(() => makeCharacter(
  37692. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37693. {
  37694. frontHuman: {
  37695. height: math.unit(5 + 7/12, "feet"),
  37696. name: "Front (Human)",
  37697. image: {
  37698. source: "./media/characters/alek-dryagan/front-human.svg",
  37699. extra: 1687/1667,
  37700. bottom: 69/1756
  37701. }
  37702. },
  37703. backHuman: {
  37704. height: math.unit(5 + 7/12, "feet"),
  37705. name: "Back (Human)",
  37706. image: {
  37707. source: "./media/characters/alek-dryagan/back-human.svg",
  37708. extra: 1670/1649,
  37709. bottom: 65/1735
  37710. }
  37711. },
  37712. frontDemi: {
  37713. height: math.unit(65, "feet"),
  37714. name: "Front (Demi)",
  37715. image: {
  37716. source: "./media/characters/alek-dryagan/front-demi.svg",
  37717. extra: 1669/1642,
  37718. bottom: 49/1718
  37719. }
  37720. },
  37721. backDemi: {
  37722. height: math.unit(65, "feet"),
  37723. name: "Back (Demi)",
  37724. image: {
  37725. source: "./media/characters/alek-dryagan/back-demi.svg",
  37726. extra: 1658/1637,
  37727. bottom: 40/1698
  37728. }
  37729. },
  37730. mawHuman: {
  37731. height: math.unit(0.3, "feet"),
  37732. name: "Maw (Human)",
  37733. image: {
  37734. source: "./media/characters/alek-dryagan/maw-human.svg"
  37735. }
  37736. },
  37737. mawDemi: {
  37738. height: math.unit(3.8, "feet"),
  37739. name: "Maw (Demi)",
  37740. image: {
  37741. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37742. }
  37743. },
  37744. },
  37745. [
  37746. {
  37747. name: "Normal",
  37748. height: math.unit(5 + 7/12, "feet"),
  37749. default: true
  37750. },
  37751. ]
  37752. ))
  37753. characterMakers.push(() => makeCharacter(
  37754. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37755. {
  37756. frontHuman: {
  37757. height: math.unit(5 + 2/12, "feet"),
  37758. name: "Front (Human)",
  37759. image: {
  37760. source: "./media/characters/gen/front-human.svg",
  37761. extra: 1627/1538,
  37762. bottom: 71/1698
  37763. }
  37764. },
  37765. backHuman: {
  37766. height: math.unit(5 + 2/12, "feet"),
  37767. name: "Back (Human)",
  37768. image: {
  37769. source: "./media/characters/gen/back-human.svg",
  37770. extra: 1638/1548,
  37771. bottom: 69/1707
  37772. }
  37773. },
  37774. frontDemi: {
  37775. height: math.unit(5 + 2/12, "feet"),
  37776. name: "Front (Demi)",
  37777. image: {
  37778. source: "./media/characters/gen/front-demi.svg",
  37779. extra: 1627/1538,
  37780. bottom: 71/1698
  37781. }
  37782. },
  37783. backDemi: {
  37784. height: math.unit(5 + 2/12, "feet"),
  37785. name: "Back (Demi)",
  37786. image: {
  37787. source: "./media/characters/gen/back-demi.svg",
  37788. extra: 1638/1548,
  37789. bottom: 69/1707
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(5 + 2/12, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37803. {
  37804. frontImp: {
  37805. height: math.unit(1 + 11/12, "feet"),
  37806. name: "Front (Imp)",
  37807. image: {
  37808. source: "./media/characters/max-kobold/front-imp.svg",
  37809. extra: 1238/1134,
  37810. bottom: 81/1319
  37811. }
  37812. },
  37813. backImp: {
  37814. height: math.unit(1 + 11/12, "feet"),
  37815. name: "Back (Imp)",
  37816. image: {
  37817. source: "./media/characters/max-kobold/back-imp.svg",
  37818. extra: 1334/1175,
  37819. bottom: 34/1368
  37820. }
  37821. },
  37822. frontDemi: {
  37823. height: math.unit(5 + 9/12, "feet"),
  37824. name: "Front (Demi)",
  37825. image: {
  37826. source: "./media/characters/max-kobold/front-demi.svg",
  37827. extra: 1715/1685,
  37828. bottom: 54/1769
  37829. }
  37830. },
  37831. backDemi: {
  37832. height: math.unit(5 + 9/12, "feet"),
  37833. name: "Back (Demi)",
  37834. image: {
  37835. source: "./media/characters/max-kobold/back-demi.svg",
  37836. extra: 1752/1729,
  37837. bottom: 41/1793
  37838. }
  37839. },
  37840. handImp: {
  37841. height: math.unit(0.45, "feet"),
  37842. name: "Hand (Imp)",
  37843. image: {
  37844. source: "./media/characters/max-kobold/hand.svg"
  37845. }
  37846. },
  37847. pawImp: {
  37848. height: math.unit(0.46, "feet"),
  37849. name: "Paw (Imp)",
  37850. image: {
  37851. source: "./media/characters/max-kobold/paw.svg"
  37852. }
  37853. },
  37854. handDemi: {
  37855. height: math.unit(0.80, "feet"),
  37856. name: "Hand (Demi)",
  37857. image: {
  37858. source: "./media/characters/max-kobold/hand.svg"
  37859. }
  37860. },
  37861. pawDemi: {
  37862. height: math.unit(1.1, "feet"),
  37863. name: "Paw (Demi)",
  37864. image: {
  37865. source: "./media/characters/max-kobold/paw.svg"
  37866. }
  37867. },
  37868. headImp: {
  37869. height: math.unit(1.33, "feet"),
  37870. name: "Head (Imp)",
  37871. image: {
  37872. source: "./media/characters/max-kobold/head-imp.svg"
  37873. }
  37874. },
  37875. mawImp: {
  37876. height: math.unit(0.75, "feet"),
  37877. name: "Maw (Imp)",
  37878. image: {
  37879. source: "./media/characters/max-kobold/maw-imp.svg"
  37880. }
  37881. },
  37882. mawDemi: {
  37883. height: math.unit(0.42, "feet"),
  37884. name: "Maw (Demi)",
  37885. image: {
  37886. source: "./media/characters/max-kobold/maw-demi.svg"
  37887. }
  37888. },
  37889. },
  37890. [
  37891. {
  37892. name: "Normal",
  37893. height: math.unit(1 + 11/12, "feet"),
  37894. default: true
  37895. },
  37896. ]
  37897. ))
  37898. characterMakers.push(() => makeCharacter(
  37899. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37900. {
  37901. front: {
  37902. height: math.unit(7 + 5/12, "feet"),
  37903. name: "Front",
  37904. image: {
  37905. source: "./media/characters/carbon/front.svg",
  37906. extra: 1754/1689,
  37907. bottom: 65/1819
  37908. }
  37909. },
  37910. back: {
  37911. height: math.unit(7 + 5/12, "feet"),
  37912. name: "Back",
  37913. image: {
  37914. source: "./media/characters/carbon/back.svg",
  37915. extra: 1762/1695,
  37916. bottom: 24/1786
  37917. }
  37918. },
  37919. frontGigantamax: {
  37920. height: math.unit(150, "feet"),
  37921. name: "Front (Gigantamax)",
  37922. image: {
  37923. source: "./media/characters/carbon/front-gigantamax.svg",
  37924. extra: 1826/1669,
  37925. bottom: 59/1885
  37926. }
  37927. },
  37928. backGigantamax: {
  37929. height: math.unit(150, "feet"),
  37930. name: "Back (Gigantamax)",
  37931. image: {
  37932. source: "./media/characters/carbon/back-gigantamax.svg",
  37933. extra: 1796/1653,
  37934. bottom: 53/1849
  37935. }
  37936. },
  37937. maw: {
  37938. height: math.unit(0.48, "feet"),
  37939. name: "Maw",
  37940. image: {
  37941. source: "./media/characters/carbon/maw.svg"
  37942. }
  37943. },
  37944. mawGigantamax: {
  37945. height: math.unit(7.5, "feet"),
  37946. name: "Maw (Gigantamax)",
  37947. image: {
  37948. source: "./media/characters/carbon/maw-gigantamax.svg"
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Normal",
  37955. height: math.unit(7 + 5/12, "feet"),
  37956. default: true
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37962. {
  37963. front: {
  37964. height: math.unit(6, "feet"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/maverick/front.svg",
  37968. extra: 1672/1661,
  37969. bottom: 85/1757
  37970. }
  37971. },
  37972. back: {
  37973. height: math.unit(6, "feet"),
  37974. name: "Back",
  37975. image: {
  37976. source: "./media/characters/maverick/back.svg",
  37977. extra: 1642/1631,
  37978. bottom: 38/1680
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(6, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(15, "feet"),
  37995. weight: math.unit(615, "lb"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/grockle/front.svg",
  37999. extra: 1535/1427,
  38000. bottom: 56/1591
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(15, "feet"),
  38008. default: true
  38009. },
  38010. {
  38011. name: "Large",
  38012. height: math.unit(150, "feet")
  38013. },
  38014. {
  38015. name: "Macro",
  38016. height: math.unit(1876, "feet")
  38017. },
  38018. {
  38019. name: "Mega Macro",
  38020. height: math.unit(121940, "feet")
  38021. },
  38022. {
  38023. name: "Giga Macro",
  38024. height: math.unit(750, "km")
  38025. },
  38026. {
  38027. name: "Tera Macro",
  38028. height: math.unit(750000, "km")
  38029. },
  38030. {
  38031. name: "Galactic",
  38032. height: math.unit(1.4e5, "km")
  38033. },
  38034. {
  38035. name: "Godlike",
  38036. height: math.unit(9.8e280, "galaxies")
  38037. },
  38038. ]
  38039. ))
  38040. characterMakers.push(() => makeCharacter(
  38041. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38042. {
  38043. front: {
  38044. height: math.unit(11, "meters"),
  38045. weight: math.unit(20, "tonnes"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/alistair/front.svg",
  38049. extra: 1265/1009,
  38050. bottom: 93/1358
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(11, "meters"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(5 + 8/12, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/haruka/front.svg",
  38070. extra: 2012/1952,
  38071. bottom: 0/2012
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(5 + 8/12, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38085. {
  38086. back: {
  38087. height: math.unit(9, "feet"),
  38088. name: "Back",
  38089. image: {
  38090. source: "./media/characters/vivian-sylveon/back.svg",
  38091. extra: 1853/1714,
  38092. bottom: 0/1853
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(9, "feet"),
  38100. default: true
  38101. },
  38102. {
  38103. name: "Macro",
  38104. height: math.unit(500, "feet")
  38105. },
  38106. {
  38107. name: "Megamacro",
  38108. height: math.unit(600, "miles")
  38109. },
  38110. {
  38111. name: "Gigamacro",
  38112. height: math.unit(30000, "miles")
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38118. {
  38119. anthro: {
  38120. height: math.unit(5 + 10/12, "feet"),
  38121. weight: math.unit(100, "lb"),
  38122. name: "Anthro",
  38123. image: {
  38124. source: "./media/characters/daiki/anthro.svg",
  38125. extra: 1115/1027,
  38126. bottom: 69/1184
  38127. }
  38128. },
  38129. feral: {
  38130. height: math.unit(200, "feet"),
  38131. name: "Feral",
  38132. image: {
  38133. source: "./media/characters/daiki/feral.svg",
  38134. extra: 1256/313,
  38135. bottom: 39/1295
  38136. }
  38137. },
  38138. feralHead: {
  38139. height: math.unit(171, "feet"),
  38140. name: "Feral Head",
  38141. image: {
  38142. source: "./media/characters/daiki/feral-head.svg"
  38143. }
  38144. },
  38145. manaDragon: {
  38146. height: math.unit(170, "meters"),
  38147. name: "Mana-dragon",
  38148. image: {
  38149. source: "./media/characters/daiki/mana-dragon.svg",
  38150. extra: 763/420,
  38151. bottom: 97/860
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(5 + 10/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38165. {
  38166. fullyEquippedFront: {
  38167. height: math.unit(3 + 1/12, "feet"),
  38168. weight: math.unit(24, "lb"),
  38169. name: "Fully Equipped (Front)",
  38170. image: {
  38171. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38172. extra: 687/605,
  38173. bottom: 18/705
  38174. }
  38175. },
  38176. fullyEquippedBack: {
  38177. height: math.unit(3 + 1/12, "feet"),
  38178. weight: math.unit(24, "lb"),
  38179. name: "Fully Equipped (Back)",
  38180. image: {
  38181. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38182. extra: 689/590,
  38183. bottom: 18/707
  38184. }
  38185. },
  38186. dailyWear: {
  38187. height: math.unit(3 + 1/12, "feet"),
  38188. weight: math.unit(24, "lb"),
  38189. name: "Daily Wear",
  38190. image: {
  38191. source: "./media/characters/tea-spot/daily-wear.svg",
  38192. extra: 701/620,
  38193. bottom: 21/722
  38194. }
  38195. },
  38196. maidWork: {
  38197. height: math.unit(3 + 1/12, "feet"),
  38198. weight: math.unit(24, "lb"),
  38199. name: "Maid Work",
  38200. image: {
  38201. source: "./media/characters/tea-spot/maid-work.svg",
  38202. extra: 693/609,
  38203. bottom: 15/708
  38204. }
  38205. },
  38206. },
  38207. [
  38208. {
  38209. name: "Normal",
  38210. height: math.unit(3 + 1/12, "feet"),
  38211. default: true
  38212. },
  38213. ]
  38214. ))
  38215. characterMakers.push(() => makeCharacter(
  38216. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38217. {
  38218. front: {
  38219. height: math.unit(175, "cm"),
  38220. weight: math.unit(75, "kg"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/chee/front.svg",
  38224. extra: 1796/1740,
  38225. bottom: 40/1836
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Micro-Micro",
  38232. height: math.unit(1, "nm")
  38233. },
  38234. {
  38235. name: "Micro-erst",
  38236. height: math.unit(1, "micrometer")
  38237. },
  38238. {
  38239. name: "Micro-er",
  38240. height: math.unit(1, "cm")
  38241. },
  38242. {
  38243. name: "Normal",
  38244. height: math.unit(175, "cm"),
  38245. default: true
  38246. },
  38247. {
  38248. name: "Macro",
  38249. height: math.unit(100, "m")
  38250. },
  38251. {
  38252. name: "Macro-er",
  38253. height: math.unit(1, "km")
  38254. },
  38255. {
  38256. name: "Macro-erst",
  38257. height: math.unit(10, "km")
  38258. },
  38259. {
  38260. name: "Macro-Macro",
  38261. height: math.unit(100, "km")
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38267. {
  38268. front: {
  38269. height: math.unit(11 + 9/12, "feet"),
  38270. weight: math.unit(935, "lb"),
  38271. name: "Front",
  38272. image: {
  38273. source: "./media/characters/kingsley/front.svg",
  38274. extra: 1803/1674,
  38275. bottom: 127/1930
  38276. }
  38277. },
  38278. frontNude: {
  38279. height: math.unit(11 + 9/12, "feet"),
  38280. weight: math.unit(935, "lb"),
  38281. name: "Front (Nude)",
  38282. image: {
  38283. source: "./media/characters/kingsley/front-nude.svg",
  38284. extra: 1803/1674,
  38285. bottom: 127/1930
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(11 + 9/12, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38299. {
  38300. side: {
  38301. height: math.unit(9, "feet"),
  38302. name: "Side",
  38303. image: {
  38304. source: "./media/characters/rymel/side.svg",
  38305. extra: 792/469,
  38306. bottom: 121/913
  38307. }
  38308. },
  38309. maw: {
  38310. height: math.unit(2.4, "meters"),
  38311. name: "Maw",
  38312. image: {
  38313. source: "./media/characters/rymel/maw.svg"
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "House Drake",
  38320. height: math.unit(2, "feet")
  38321. },
  38322. {
  38323. name: "Reduced",
  38324. height: math.unit(4.5, "feet")
  38325. },
  38326. {
  38327. name: "Normal",
  38328. height: math.unit(9, "feet"),
  38329. default: true
  38330. },
  38331. ]
  38332. ))
  38333. characterMakers.push(() => makeCharacter(
  38334. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38335. {
  38336. front: {
  38337. height: math.unit(1.74, "meters"),
  38338. weight: math.unit(55, "kg"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/rubus/front.svg",
  38342. extra: 1894/1742,
  38343. bottom: 44/1938
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(1.74, "meters"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38357. {
  38358. front: {
  38359. height: math.unit(5 + 2/12, "feet"),
  38360. weight: math.unit(112, "lb"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/cassie-kingston/front.svg",
  38364. extra: 1438/1390,
  38365. bottom: 47/1485
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(5 + 2/12, "feet"),
  38373. default: true
  38374. },
  38375. {
  38376. name: "Macro",
  38377. height: math.unit(128, "feet")
  38378. },
  38379. {
  38380. name: "Megamacro",
  38381. height: math.unit(2.56, "miles")
  38382. },
  38383. ]
  38384. ))
  38385. characterMakers.push(() => makeCharacter(
  38386. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38387. {
  38388. front: {
  38389. height: math.unit(7, "feet"),
  38390. name: "Front",
  38391. image: {
  38392. source: "./media/characters/fox/front.svg",
  38393. extra: 1798/1703,
  38394. bottom: 55/1853
  38395. }
  38396. },
  38397. back: {
  38398. height: math.unit(7, "feet"),
  38399. name: "Back",
  38400. image: {
  38401. source: "./media/characters/fox/back.svg",
  38402. extra: 1748/1649,
  38403. bottom: 32/1780
  38404. }
  38405. },
  38406. head: {
  38407. height: math.unit(1.95, "feet"),
  38408. name: "Head",
  38409. image: {
  38410. source: "./media/characters/fox/head.svg"
  38411. }
  38412. },
  38413. dick: {
  38414. height: math.unit(1.33, "feet"),
  38415. name: "Dick",
  38416. image: {
  38417. source: "./media/characters/fox/dick.svg"
  38418. }
  38419. },
  38420. foot: {
  38421. height: math.unit(1, "feet"),
  38422. name: "Foot",
  38423. image: {
  38424. source: "./media/characters/fox/foot.svg"
  38425. }
  38426. },
  38427. paw: {
  38428. height: math.unit(0.92, "feet"),
  38429. name: "Paw",
  38430. image: {
  38431. source: "./media/characters/fox/paw.svg"
  38432. }
  38433. },
  38434. },
  38435. [
  38436. {
  38437. name: "Small",
  38438. height: math.unit(3, "inches")
  38439. },
  38440. {
  38441. name: "\"Realistic\"",
  38442. height: math.unit(7, "feet")
  38443. },
  38444. {
  38445. name: "Normal",
  38446. height: math.unit(150, "feet"),
  38447. default: true
  38448. },
  38449. {
  38450. name: "BIG",
  38451. height: math.unit(1200, "feet")
  38452. },
  38453. {
  38454. name: "👀",
  38455. height: math.unit(5, "miles")
  38456. },
  38457. {
  38458. name: "👀👀👀",
  38459. height: math.unit(64, "miles")
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(625, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/asonja-rossa/front.svg",
  38471. extra: 1833/1686,
  38472. bottom: 24/1857
  38473. }
  38474. },
  38475. back: {
  38476. height: math.unit(625, "feet"),
  38477. name: "Back",
  38478. image: {
  38479. source: "./media/characters/asonja-rossa/back.svg",
  38480. extra: 1852/1753,
  38481. bottom: 26/1878
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Macro",
  38488. height: math.unit(625, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38495. {
  38496. side: {
  38497. height: math.unit(8, "feet"),
  38498. name: "Side",
  38499. image: {
  38500. source: "./media/characters/rezukii/side.svg",
  38501. extra: 979/542,
  38502. bottom: 87/1066
  38503. }
  38504. },
  38505. sitting: {
  38506. height: math.unit(14.6, "feet"),
  38507. name: "Sitting",
  38508. image: {
  38509. source: "./media/characters/rezukii/sitting.svg",
  38510. extra: 1023/813,
  38511. bottom: 45/1068
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Tiny",
  38518. height: math.unit(2, "feet")
  38519. },
  38520. {
  38521. name: "Smol",
  38522. height: math.unit(4, "feet")
  38523. },
  38524. {
  38525. name: "Normal",
  38526. height: math.unit(8, "feet"),
  38527. default: true
  38528. },
  38529. {
  38530. name: "Big",
  38531. height: math.unit(12, "feet")
  38532. },
  38533. {
  38534. name: "Macro",
  38535. height: math.unit(30, "feet")
  38536. },
  38537. ]
  38538. ))
  38539. characterMakers.push(() => makeCharacter(
  38540. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38541. {
  38542. front: {
  38543. height: math.unit(14, "feet"),
  38544. weight: math.unit(9.5, "tonnes"),
  38545. name: "Front",
  38546. image: {
  38547. source: "./media/characters/dawnheart/front.svg",
  38548. extra: 2792/2675,
  38549. bottom: 64/2856
  38550. }
  38551. },
  38552. },
  38553. [
  38554. {
  38555. name: "Normal",
  38556. height: math.unit(14, "feet"),
  38557. default: true
  38558. },
  38559. ]
  38560. ))
  38561. characterMakers.push(() => makeCharacter(
  38562. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38563. {
  38564. front: {
  38565. height: math.unit(1.7, "m"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/gladi/front.svg",
  38569. extra: 1460/1362,
  38570. bottom: 19/1479
  38571. }
  38572. },
  38573. back: {
  38574. height: math.unit(1.7, "m"),
  38575. name: "Back",
  38576. image: {
  38577. source: "./media/characters/gladi/back.svg",
  38578. extra: 1459/1357,
  38579. bottom: 12/1471
  38580. }
  38581. },
  38582. feral: {
  38583. height: math.unit(2.05, "m"),
  38584. name: "Feral",
  38585. image: {
  38586. source: "./media/characters/gladi/feral.svg",
  38587. extra: 821/557,
  38588. bottom: 91/912
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Shortest",
  38595. height: math.unit(70, "cm")
  38596. },
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(1.7, "m")
  38600. },
  38601. {
  38602. name: "Macro",
  38603. height: math.unit(10, "m"),
  38604. default: true
  38605. },
  38606. {
  38607. name: "Tallest",
  38608. height: math.unit(200, "m")
  38609. },
  38610. ]
  38611. ))
  38612. characterMakers.push(() => makeCharacter(
  38613. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38614. {
  38615. front: {
  38616. height: math.unit(5 + 7/12, "feet"),
  38617. weight: math.unit(2, "tons"),
  38618. name: "Front",
  38619. image: {
  38620. source: "./media/characters/erdno/front.svg",
  38621. extra: 1234/1129,
  38622. bottom: 35/1269
  38623. }
  38624. },
  38625. angled: {
  38626. height: math.unit(5 + 7/12, "feet"),
  38627. weight: math.unit(2, "tons"),
  38628. name: "Angled",
  38629. image: {
  38630. source: "./media/characters/erdno/angled.svg",
  38631. extra: 1185/1139,
  38632. bottom: 36/1221
  38633. }
  38634. },
  38635. side: {
  38636. height: math.unit(5 + 7/12, "feet"),
  38637. weight: math.unit(2, "tons"),
  38638. name: "Side",
  38639. image: {
  38640. source: "./media/characters/erdno/side.svg",
  38641. extra: 1191/1144,
  38642. bottom: 40/1231
  38643. }
  38644. },
  38645. back: {
  38646. height: math.unit(5 + 7/12, "feet"),
  38647. weight: math.unit(2, "tons"),
  38648. name: "Back",
  38649. image: {
  38650. source: "./media/characters/erdno/back.svg",
  38651. extra: 1202/1146,
  38652. bottom: 17/1219
  38653. }
  38654. },
  38655. frontNsfw: {
  38656. height: math.unit(5 + 7/12, "feet"),
  38657. weight: math.unit(2, "tons"),
  38658. name: "Front (NSFW)",
  38659. image: {
  38660. source: "./media/characters/erdno/front-nsfw.svg",
  38661. extra: 1234/1129,
  38662. bottom: 35/1269
  38663. }
  38664. },
  38665. angledNsfw: {
  38666. height: math.unit(5 + 7/12, "feet"),
  38667. weight: math.unit(2, "tons"),
  38668. name: "Angled (NSFW)",
  38669. image: {
  38670. source: "./media/characters/erdno/angled-nsfw.svg",
  38671. extra: 1185/1139,
  38672. bottom: 36/1221
  38673. }
  38674. },
  38675. sideNsfw: {
  38676. height: math.unit(5 + 7/12, "feet"),
  38677. weight: math.unit(2, "tons"),
  38678. name: "Side (NSFW)",
  38679. image: {
  38680. source: "./media/characters/erdno/side-nsfw.svg",
  38681. extra: 1191/1144,
  38682. bottom: 40/1231
  38683. }
  38684. },
  38685. backNsfw: {
  38686. height: math.unit(5 + 7/12, "feet"),
  38687. weight: math.unit(2, "tons"),
  38688. name: "Back (NSFW)",
  38689. image: {
  38690. source: "./media/characters/erdno/back-nsfw.svg",
  38691. extra: 1202/1146,
  38692. bottom: 17/1219
  38693. }
  38694. },
  38695. frontHyper: {
  38696. height: math.unit(5 + 7/12, "feet"),
  38697. weight: math.unit(2, "tons"),
  38698. name: "Front (Hyper)",
  38699. image: {
  38700. source: "./media/characters/erdno/front-hyper.svg",
  38701. extra: 1298/1136,
  38702. bottom: 35/1333
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(5 + 7/12, "feet"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Big",
  38714. height: math.unit(5.7, "meters")
  38715. },
  38716. {
  38717. name: "Macro",
  38718. height: math.unit(5.7, "kilometers")
  38719. },
  38720. {
  38721. name: "Megamacro",
  38722. height: math.unit(5.7, "earths")
  38723. },
  38724. ]
  38725. ))
  38726. characterMakers.push(() => makeCharacter(
  38727. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38728. {
  38729. front: {
  38730. height: math.unit(5 + 10/12, "feet"),
  38731. weight: math.unit(150, "lb"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/jamie/front.svg",
  38735. extra: 1908/1768,
  38736. bottom: 19/1927
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Minimum",
  38743. height: math.unit(2, "cm")
  38744. },
  38745. {
  38746. name: "Micro",
  38747. height: math.unit(3, "inches")
  38748. },
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(5 + 10/12, "feet"),
  38752. default: true
  38753. },
  38754. {
  38755. name: "Macro",
  38756. height: math.unit(150, "feet")
  38757. },
  38758. {
  38759. name: "Megamacro",
  38760. height: math.unit(10000, "m")
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(2, "meters"),
  38769. weight: math.unit(100, "kg"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/shiron/front.svg",
  38773. extra: 2103/1985,
  38774. bottom: 98/2201
  38775. }
  38776. },
  38777. back: {
  38778. height: math.unit(2, "meters"),
  38779. weight: math.unit(100, "kg"),
  38780. name: "Back",
  38781. image: {
  38782. source: "./media/characters/shiron/back.svg",
  38783. extra: 2110/2015,
  38784. bottom: 89/2199
  38785. }
  38786. },
  38787. hand: {
  38788. height: math.unit(0.96, "feet"),
  38789. name: "Hand",
  38790. image: {
  38791. source: "./media/characters/shiron/hand.svg"
  38792. }
  38793. },
  38794. foot: {
  38795. height: math.unit(1.464, "feet"),
  38796. name: "Foot",
  38797. image: {
  38798. source: "./media/characters/shiron/foot.svg"
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Normal",
  38805. height: math.unit(2, "meters")
  38806. },
  38807. {
  38808. name: "Macro",
  38809. height: math.unit(500, "meters"),
  38810. default: true
  38811. },
  38812. {
  38813. name: "Megamacro",
  38814. height: math.unit(20, "km")
  38815. },
  38816. ]
  38817. ))
  38818. characterMakers.push(() => makeCharacter(
  38819. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38820. {
  38821. front: {
  38822. height: math.unit(6, "feet"),
  38823. name: "Front",
  38824. image: {
  38825. source: "./media/characters/sam/front.svg",
  38826. extra: 849/826,
  38827. bottom: 19/868
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(6, "feet"),
  38835. default: true
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(8 + 4/12, "feet"),
  38844. weight: math.unit(122, "kg"),
  38845. name: "Front",
  38846. image: {
  38847. source: "./media/characters/namori-kurogawa/front.svg",
  38848. extra: 1894/1576,
  38849. bottom: 34/1928
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(8 + 4/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(9, "feet"),
  38866. weight: math.unit(621, "lb"),
  38867. name: "Front",
  38868. image: {
  38869. source: "./media/characters/unmru/front.svg",
  38870. extra: 1853/1747,
  38871. bottom: 73/1926
  38872. }
  38873. },
  38874. side: {
  38875. height: math.unit(9, "feet"),
  38876. weight: math.unit(621, "lb"),
  38877. name: "Side",
  38878. image: {
  38879. source: "./media/characters/unmru/side.svg",
  38880. extra: 1781/1671,
  38881. bottom: 127/1908
  38882. }
  38883. },
  38884. back: {
  38885. height: math.unit(9, "feet"),
  38886. weight: math.unit(621, "lb"),
  38887. name: "Back",
  38888. image: {
  38889. source: "./media/characters/unmru/back.svg",
  38890. extra: 1894/1765,
  38891. bottom: 75/1969
  38892. }
  38893. },
  38894. dick: {
  38895. height: math.unit(3, "feet"),
  38896. weight: math.unit(35, "lb"),
  38897. name: "Dick",
  38898. image: {
  38899. source: "./media/characters/unmru/dick.svg"
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(9, "feet")
  38907. },
  38908. {
  38909. name: "Natural",
  38910. height: math.unit(27, "feet"),
  38911. default: true
  38912. },
  38913. {
  38914. name: "Giant",
  38915. height: math.unit(90, "feet")
  38916. },
  38917. {
  38918. name: "Kaiju",
  38919. height: math.unit(270, "feet")
  38920. },
  38921. {
  38922. name: "Macro",
  38923. height: math.unit(900, "feet")
  38924. },
  38925. {
  38926. name: "Macro+",
  38927. height: math.unit(2700, "feet")
  38928. },
  38929. {
  38930. name: "Megamacro",
  38931. height: math.unit(9000, "feet")
  38932. },
  38933. {
  38934. name: "City-Crushing",
  38935. height: math.unit(27000, "feet")
  38936. },
  38937. {
  38938. name: "Mountain-Mashing",
  38939. height: math.unit(90000, "feet")
  38940. },
  38941. {
  38942. name: "Earth-Eclipsing",
  38943. height: math.unit(2.7e8, "feet")
  38944. },
  38945. {
  38946. name: "Sol-Swallowing",
  38947. height: math.unit(9e10, "feet")
  38948. },
  38949. {
  38950. name: "Majoris-Munching",
  38951. height: math.unit(2.7e13, "feet")
  38952. },
  38953. ]
  38954. ))
  38955. characterMakers.push(() => makeCharacter(
  38956. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38957. {
  38958. front: {
  38959. height: math.unit(1, "inch"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/squeaks-mouse/front.svg",
  38963. extra: 352/308,
  38964. bottom: 25/377
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Micro",
  38971. height: math.unit(1, "inch"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38978. {
  38979. side: {
  38980. height: math.unit(35, "feet"),
  38981. name: "Side",
  38982. image: {
  38983. source: "./media/characters/sayko/side.svg",
  38984. extra: 1697/1021,
  38985. bottom: 82/1779
  38986. }
  38987. },
  38988. head: {
  38989. height: math.unit(16, "feet"),
  38990. name: "Head",
  38991. image: {
  38992. source: "./media/characters/sayko/head.svg"
  38993. }
  38994. },
  38995. forepaw: {
  38996. height: math.unit(7.85, "feet"),
  38997. name: "Forepaw",
  38998. image: {
  38999. source: "./media/characters/sayko/forepaw.svg"
  39000. }
  39001. },
  39002. hindpaw: {
  39003. height: math.unit(8.8, "feet"),
  39004. name: "Hindpaw",
  39005. image: {
  39006. source: "./media/characters/sayko/hindpaw.svg"
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(35, "feet"),
  39014. default: true
  39015. },
  39016. {
  39017. name: "Colossus",
  39018. height: math.unit(100, "meters")
  39019. },
  39020. {
  39021. name: "\"Small\" Deity",
  39022. height: math.unit(1, "km")
  39023. },
  39024. {
  39025. name: "\"Large\" Deity",
  39026. height: math.unit(15, "km")
  39027. },
  39028. ]
  39029. ))
  39030. characterMakers.push(() => makeCharacter(
  39031. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39032. {
  39033. front: {
  39034. height: math.unit(6, "feet"),
  39035. weight: math.unit(250, "lb"),
  39036. name: "Front",
  39037. image: {
  39038. source: "./media/characters/mukiro/front.svg",
  39039. extra: 1368/1310,
  39040. bottom: 34/1402
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(6, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39054. {
  39055. front: {
  39056. height: math.unit(12 + 4/12, "feet"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39060. extra: 1346/1311,
  39061. bottom: 65/1411
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Base",
  39068. height: math.unit(12 + 4/12, "feet"),
  39069. default: true
  39070. },
  39071. {
  39072. name: "Macro",
  39073. height: math.unit(150, "feet")
  39074. },
  39075. {
  39076. name: "Mega",
  39077. height: math.unit(2, "miles")
  39078. },
  39079. {
  39080. name: "Demi God",
  39081. height: math.unit(4, "AU")
  39082. },
  39083. {
  39084. name: "God Size",
  39085. height: math.unit(1, "universe")
  39086. },
  39087. ]
  39088. ))
  39089. characterMakers.push(() => makeCharacter(
  39090. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39091. {
  39092. front: {
  39093. height: math.unit(3 + 3/12, "feet"),
  39094. weight: math.unit(88, "lb"),
  39095. name: "Front",
  39096. image: {
  39097. source: "./media/characters/trey/front.svg",
  39098. extra: 1815/1509,
  39099. bottom: 60/1875
  39100. }
  39101. },
  39102. },
  39103. [
  39104. {
  39105. name: "Normal",
  39106. height: math.unit(3 + 3/12, "feet"),
  39107. default: true
  39108. },
  39109. ]
  39110. ))
  39111. characterMakers.push(() => makeCharacter(
  39112. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39113. {
  39114. front: {
  39115. height: math.unit(4, "meters"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/adelonda/front.svg",
  39119. extra: 1077/982,
  39120. bottom: 39/1116
  39121. }
  39122. },
  39123. back: {
  39124. height: math.unit(4, "meters"),
  39125. name: "Back",
  39126. image: {
  39127. source: "./media/characters/adelonda/back.svg",
  39128. extra: 1105/1003,
  39129. bottom: 25/1130
  39130. }
  39131. },
  39132. feral: {
  39133. height: math.unit(40/1.5, "meters"),
  39134. name: "Feral",
  39135. image: {
  39136. source: "./media/characters/adelonda/feral.svg",
  39137. extra: 597/271,
  39138. bottom: 387/984
  39139. }
  39140. },
  39141. },
  39142. [
  39143. {
  39144. name: "Normal",
  39145. height: math.unit(4, "meters"),
  39146. default: true
  39147. },
  39148. ]
  39149. ))
  39150. characterMakers.push(() => makeCharacter(
  39151. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39152. {
  39153. front: {
  39154. height: math.unit(8 + 4/12, "feet"),
  39155. weight: math.unit(670, "lb"),
  39156. name: "Front",
  39157. image: {
  39158. source: "./media/characters/acadiel/front.svg",
  39159. extra: 1901/1595,
  39160. bottom: 142/2043
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(8 + 4/12, "feet"),
  39168. default: true
  39169. },
  39170. {
  39171. name: "Macro",
  39172. height: math.unit(200, "feet")
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(6 + 2/12, "feet"),
  39181. weight: math.unit(185, "lb"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/kayne-ein/front.svg",
  39185. extra: 1780/1560,
  39186. bottom: 81/1861
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(6 + 2/12, "feet"),
  39194. default: true
  39195. },
  39196. {
  39197. name: "Transformation Stage",
  39198. height: math.unit(15, "feet")
  39199. },
  39200. {
  39201. name: "Macro",
  39202. height: math.unit(150, "feet")
  39203. },
  39204. {
  39205. name: "Earth's Shadow",
  39206. height: math.unit(6200, "miles")
  39207. },
  39208. {
  39209. name: "Universal Demon",
  39210. height: math.unit(28e9, "parsecs")
  39211. },
  39212. {
  39213. name: "Multiverse God",
  39214. height: math.unit(3, "multiverses")
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(5 + 5/12, "feet"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/fawn/front.svg",
  39226. extra: 1873/1731,
  39227. bottom: 95/1968
  39228. }
  39229. },
  39230. back: {
  39231. height: math.unit(5 + 5/12, "feet"),
  39232. name: "Back",
  39233. image: {
  39234. source: "./media/characters/fawn/back.svg",
  39235. extra: 1813/1700,
  39236. bottom: 14/1827
  39237. }
  39238. },
  39239. hoof: {
  39240. height: math.unit(1.45, "feet"),
  39241. name: "Hoof",
  39242. image: {
  39243. source: "./media/characters/fawn/hoof.svg"
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(5 + 5/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(2 + 5/12, "feet"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/orion/front.svg",
  39263. extra: 1366/1304,
  39264. bottom: 43/1409
  39265. }
  39266. },
  39267. paw: {
  39268. height: math.unit(0.52, "feet"),
  39269. name: "Paw",
  39270. image: {
  39271. source: "./media/characters/orion/paw.svg"
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(2 + 5/12, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(5 + 10/12, "feet"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/vera/front.svg",
  39291. extra: 1680/1575,
  39292. bottom: 49/1729
  39293. }
  39294. },
  39295. back: {
  39296. height: math.unit(5 + 10/12, "feet"),
  39297. name: "Back",
  39298. image: {
  39299. source: "./media/characters/vera/back.svg",
  39300. extra: 1700/1588,
  39301. bottom: 18/1718
  39302. }
  39303. },
  39304. arcanine: {
  39305. height: math.unit(6 + 8/12, "feet"),
  39306. name: "Arcanine",
  39307. image: {
  39308. source: "./media/characters/vera/arcanine.svg",
  39309. extra: 1590/1511,
  39310. bottom: 71/1661
  39311. }
  39312. },
  39313. maw: {
  39314. height: math.unit(0.82, "feet"),
  39315. name: "Maw",
  39316. image: {
  39317. source: "./media/characters/vera/maw.svg"
  39318. }
  39319. },
  39320. mawArcanine: {
  39321. height: math.unit(0.97, "feet"),
  39322. name: "Maw (Arcanine)",
  39323. image: {
  39324. source: "./media/characters/vera/maw-arcanine.svg"
  39325. }
  39326. },
  39327. paw: {
  39328. height: math.unit(0.75, "feet"),
  39329. name: "Paw",
  39330. image: {
  39331. source: "./media/characters/vera/paw.svg"
  39332. }
  39333. },
  39334. pawprint: {
  39335. height: math.unit(0.52, "feet"),
  39336. name: "Pawprint",
  39337. image: {
  39338. source: "./media/characters/vera/pawprint.svg"
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(5 + 10/12, "feet"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(75, "feet")
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(4, "feet"),
  39359. weight: math.unit(40, "lb"),
  39360. name: "Front",
  39361. image: {
  39362. source: "./media/characters/orvan-rabbit/front.svg",
  39363. extra: 1896/1642,
  39364. bottom: 29/1925
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(4, "feet"),
  39372. default: true
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39378. {
  39379. front: {
  39380. height: math.unit(6, "feet"),
  39381. weight: math.unit(168, "lb"),
  39382. name: "Front",
  39383. image: {
  39384. source: "./media/characters/lisa/front.svg",
  39385. extra: 2065/1867,
  39386. bottom: 46/2111
  39387. }
  39388. },
  39389. back: {
  39390. height: math.unit(6, "feet"),
  39391. weight: math.unit(168, "lb"),
  39392. name: "Back",
  39393. image: {
  39394. source: "./media/characters/lisa/back.svg",
  39395. extra: 1982/1838,
  39396. bottom: 29/2011
  39397. }
  39398. },
  39399. maw: {
  39400. height: math.unit(0.81, "feet"),
  39401. name: "Maw",
  39402. image: {
  39403. source: "./media/characters/lisa/maw.svg"
  39404. }
  39405. },
  39406. paw: {
  39407. height: math.unit(0.9, "feet"),
  39408. name: "Paw",
  39409. image: {
  39410. source: "./media/characters/lisa/paw.svg"
  39411. }
  39412. },
  39413. caribousune: {
  39414. height: math.unit(7 + 2/12, "feet"),
  39415. weight: math.unit(268, "lb"),
  39416. name: "Caribousune",
  39417. image: {
  39418. source: "./media/characters/lisa/caribousune.svg",
  39419. extra: 1843/1633,
  39420. bottom: 29/1872
  39421. }
  39422. },
  39423. frontCaribousune: {
  39424. height: math.unit(7 + 2/12, "feet"),
  39425. weight: math.unit(268, "lb"),
  39426. name: "Front (Caribousune)",
  39427. image: {
  39428. source: "./media/characters/lisa/front-caribousune.svg",
  39429. extra: 1818/1638,
  39430. bottom: 52/1870
  39431. }
  39432. },
  39433. sideCaribousune: {
  39434. height: math.unit(7 + 2/12, "feet"),
  39435. weight: math.unit(268, "lb"),
  39436. name: "Side (Caribousune)",
  39437. image: {
  39438. source: "./media/characters/lisa/side-caribousune.svg",
  39439. extra: 1851/1635,
  39440. bottom: 16/1867
  39441. }
  39442. },
  39443. backCaribousune: {
  39444. height: math.unit(7 + 2/12, "feet"),
  39445. weight: math.unit(268, "lb"),
  39446. name: "Back (Caribousune)",
  39447. image: {
  39448. source: "./media/characters/lisa/back-caribousune.svg",
  39449. extra: 1801/1604,
  39450. bottom: 44/1845
  39451. }
  39452. },
  39453. caribou: {
  39454. height: math.unit(7 + 2/12, "feet"),
  39455. weight: math.unit(268, "lb"),
  39456. name: "Caribou",
  39457. image: {
  39458. source: "./media/characters/lisa/caribou.svg",
  39459. extra: 1843/1633,
  39460. bottom: 29/1872
  39461. }
  39462. },
  39463. frontCaribou: {
  39464. height: math.unit(7 + 2/12, "feet"),
  39465. weight: math.unit(268, "lb"),
  39466. name: "Front (Caribou)",
  39467. image: {
  39468. source: "./media/characters/lisa/front-caribou.svg",
  39469. extra: 1818/1638,
  39470. bottom: 52/1870
  39471. }
  39472. },
  39473. sideCaribou: {
  39474. height: math.unit(7 + 2/12, "feet"),
  39475. weight: math.unit(268, "lb"),
  39476. name: "Side (Caribou)",
  39477. image: {
  39478. source: "./media/characters/lisa/side-caribou.svg",
  39479. extra: 1851/1635,
  39480. bottom: 16/1867
  39481. }
  39482. },
  39483. backCaribou: {
  39484. height: math.unit(7 + 2/12, "feet"),
  39485. weight: math.unit(268, "lb"),
  39486. name: "Back (Caribou)",
  39487. image: {
  39488. source: "./media/characters/lisa/back-caribou.svg",
  39489. extra: 1801/1604,
  39490. bottom: 44/1845
  39491. }
  39492. },
  39493. mawCaribou: {
  39494. height: math.unit(1.45, "feet"),
  39495. name: "Maw (Caribou)",
  39496. image: {
  39497. source: "./media/characters/lisa/maw-caribou.svg"
  39498. }
  39499. },
  39500. mawCaribousune: {
  39501. height: math.unit(1.45, "feet"),
  39502. name: "Maw (Caribousune)",
  39503. image: {
  39504. source: "./media/characters/lisa/maw-caribousune.svg"
  39505. }
  39506. },
  39507. pawCaribousune: {
  39508. height: math.unit(1.61, "feet"),
  39509. name: "Paw (Caribou)",
  39510. image: {
  39511. source: "./media/characters/lisa/paw-caribousune.svg"
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(6, "feet")
  39519. },
  39520. {
  39521. name: "God Size",
  39522. height: math.unit(72, "feet"),
  39523. default: true
  39524. },
  39525. {
  39526. name: "Towering",
  39527. height: math.unit(288, "feet")
  39528. },
  39529. {
  39530. name: "City Size",
  39531. height: math.unit(48384, "feet")
  39532. },
  39533. {
  39534. name: "Continental",
  39535. height: math.unit(4200, "miles")
  39536. },
  39537. {
  39538. name: "Planet Eater",
  39539. height: math.unit(42, "earths")
  39540. },
  39541. {
  39542. name: "Star Swallower",
  39543. height: math.unit(42, "solarradii")
  39544. },
  39545. {
  39546. name: "System Swallower",
  39547. height: math.unit(84000, "AU")
  39548. },
  39549. {
  39550. name: "Galaxy Gobbler",
  39551. height: math.unit(42, "galaxies")
  39552. },
  39553. {
  39554. name: "Universe Devourer",
  39555. height: math.unit(42, "universes")
  39556. },
  39557. {
  39558. name: "Multiverse Muncher",
  39559. height: math.unit(42, "multiverses")
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39565. {
  39566. front: {
  39567. height: math.unit(36, "feet"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/shadow-rat/front.svg",
  39571. extra: 1845/1758,
  39572. bottom: 83/1928
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Macro",
  39579. height: math.unit(36, "feet"),
  39580. default: true
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39586. {
  39587. side: {
  39588. height: math.unit(8, "feet"),
  39589. weight: math.unit(2630, "lb"),
  39590. name: "Side",
  39591. image: {
  39592. source: "./media/characters/torallia/side.svg",
  39593. extra: 2164/2021,
  39594. bottom: 371/2535
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Mortal Interaction",
  39601. height: math.unit(8, "feet")
  39602. },
  39603. {
  39604. name: "Natural",
  39605. height: math.unit(24, "feet"),
  39606. default: true
  39607. },
  39608. {
  39609. name: "Giant",
  39610. height: math.unit(80, "feet")
  39611. },
  39612. {
  39613. name: "Kaiju",
  39614. height: math.unit(240, "feet")
  39615. },
  39616. {
  39617. name: "Macro",
  39618. height: math.unit(800, "feet")
  39619. },
  39620. {
  39621. name: "Macro+",
  39622. height: math.unit(2400, "feet")
  39623. },
  39624. {
  39625. name: "Macro++",
  39626. height: math.unit(8000, "feet")
  39627. },
  39628. {
  39629. name: "City-Crushing",
  39630. height: math.unit(24000, "feet")
  39631. },
  39632. {
  39633. name: "Mountain-Mashing",
  39634. height: math.unit(80000, "feet")
  39635. },
  39636. {
  39637. name: "District Demolisher",
  39638. height: math.unit(240000, "feet")
  39639. },
  39640. {
  39641. name: "Tri-County Terror",
  39642. height: math.unit(800000, "feet")
  39643. },
  39644. {
  39645. name: "State Smasher",
  39646. height: math.unit(2.4e6, "feet")
  39647. },
  39648. {
  39649. name: "Nation Nemesis",
  39650. height: math.unit(8e6, "feet")
  39651. },
  39652. {
  39653. name: "Continent Cracker",
  39654. height: math.unit(2.4e7, "feet")
  39655. },
  39656. {
  39657. name: "Planet-Pillaging",
  39658. height: math.unit(8e7, "feet")
  39659. },
  39660. {
  39661. name: "Earth-Eclipsing",
  39662. height: math.unit(2.4e8, "feet")
  39663. },
  39664. {
  39665. name: "Jovian-Jostling",
  39666. height: math.unit(8e8, "feet")
  39667. },
  39668. {
  39669. name: "Gas Giant Gulper",
  39670. height: math.unit(2.4e9, "feet")
  39671. },
  39672. {
  39673. name: "Astral Annihilator",
  39674. height: math.unit(8e9, "feet")
  39675. },
  39676. {
  39677. name: "Celestial Conqueror",
  39678. height: math.unit(2.4e10, "feet")
  39679. },
  39680. {
  39681. name: "Sol-Swallowing",
  39682. height: math.unit(8e10, "feet")
  39683. },
  39684. {
  39685. name: "Hunter of the Heavens",
  39686. height: math.unit(2.4e13, "feet")
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(6 + 8/12, "feet"),
  39695. weight: math.unit(250, "kilograms"),
  39696. volume: math.unit(28, "liters"),
  39697. name: "Front",
  39698. image: {
  39699. source: "./media/characters/rebecca-pawlson/front.svg",
  39700. extra: 1737/1596,
  39701. bottom: 107/1844
  39702. }
  39703. },
  39704. back: {
  39705. height: math.unit(6 + 8/12, "feet"),
  39706. weight: math.unit(250, "kilograms"),
  39707. volume: math.unit(28, "liters"),
  39708. name: "Back",
  39709. image: {
  39710. source: "./media/characters/rebecca-pawlson/back.svg",
  39711. extra: 1702/1523,
  39712. bottom: 86/1788
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Normal",
  39719. height: math.unit(6 + 8/12, "feet")
  39720. },
  39721. {
  39722. name: "Mini Macro",
  39723. height: math.unit(10, "feet"),
  39724. default: true
  39725. },
  39726. {
  39727. name: "Macro",
  39728. height: math.unit(100, "feet")
  39729. },
  39730. {
  39731. name: "Mega Macro",
  39732. height: math.unit(2500, "feet")
  39733. },
  39734. {
  39735. name: "Giga Macro",
  39736. height: math.unit(50, "miles")
  39737. },
  39738. ]
  39739. ))
  39740. characterMakers.push(() => makeCharacter(
  39741. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39742. {
  39743. front: {
  39744. height: math.unit(7 + 6/12, "feet"),
  39745. weight: math.unit(600, "lb"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/moxie-nova/front.svg",
  39749. extra: 1734/1652,
  39750. bottom: 41/1775
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(7 + 6/12, "feet"),
  39758. default: true
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39764. {
  39765. goat: {
  39766. height: math.unit(4, "feet"),
  39767. weight: math.unit(180, "lb"),
  39768. name: "Goat",
  39769. image: {
  39770. source: "./media/characters/tiffany/goat.svg",
  39771. extra: 1845/1595,
  39772. bottom: 106/1951
  39773. }
  39774. },
  39775. front: {
  39776. height: math.unit(5, "feet"),
  39777. weight: math.unit(150, "lb"),
  39778. name: "Foxcoon",
  39779. image: {
  39780. source: "./media/characters/tiffany/foxcoon.svg",
  39781. extra: 1941/1845,
  39782. bottom: 58/1999
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Normal",
  39789. height: math.unit(5, "feet"),
  39790. default: true
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(8, "feet"),
  39799. weight: math.unit(300, "lb"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/raxinath/front.svg",
  39803. extra: 1407/1309,
  39804. bottom: 39/1446
  39805. }
  39806. },
  39807. back: {
  39808. height: math.unit(8, "feet"),
  39809. weight: math.unit(300, "lb"),
  39810. name: "Back",
  39811. image: {
  39812. source: "./media/characters/raxinath/back.svg",
  39813. extra: 1405/1315,
  39814. bottom: 9/1414
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Speck",
  39821. height: math.unit(0.5, "nm")
  39822. },
  39823. {
  39824. name: "Micro",
  39825. height: math.unit(3, "inches")
  39826. },
  39827. {
  39828. name: "Kobold",
  39829. height: math.unit(3, "feet")
  39830. },
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(8, "feet"),
  39834. default: true
  39835. },
  39836. {
  39837. name: "Giant",
  39838. height: math.unit(50, "feet")
  39839. },
  39840. {
  39841. name: "Macro",
  39842. height: math.unit(1000, "feet")
  39843. },
  39844. {
  39845. name: "Megamacro",
  39846. height: math.unit(1, "mile")
  39847. },
  39848. ]
  39849. ))
  39850. characterMakers.push(() => makeCharacter(
  39851. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39852. {
  39853. front: {
  39854. height: math.unit(10, "feet"),
  39855. weight: math.unit(1442, "lb"),
  39856. name: "Front",
  39857. image: {
  39858. source: "./media/characters/mal-dragon/front.svg",
  39859. extra: 1515/1444,
  39860. bottom: 113/1628
  39861. }
  39862. },
  39863. back: {
  39864. height: math.unit(10, "feet"),
  39865. weight: math.unit(1442, "lb"),
  39866. name: "Back",
  39867. image: {
  39868. source: "./media/characters/mal-dragon/back.svg",
  39869. extra: 1527/1434,
  39870. bottom: 25/1552
  39871. }
  39872. },
  39873. },
  39874. [
  39875. {
  39876. name: "Mortal Interaction",
  39877. height: math.unit(10, "feet"),
  39878. default: true
  39879. },
  39880. {
  39881. name: "Large",
  39882. height: math.unit(30, "feet")
  39883. },
  39884. {
  39885. name: "Kaiju",
  39886. height: math.unit(300, "feet")
  39887. },
  39888. {
  39889. name: "Megamacro",
  39890. height: math.unit(10000, "feet")
  39891. },
  39892. {
  39893. name: "Continent Cracker",
  39894. height: math.unit(30000000, "feet")
  39895. },
  39896. {
  39897. name: "Sol-Swallowing",
  39898. height: math.unit(1e11, "feet")
  39899. },
  39900. {
  39901. name: "Light Universal",
  39902. height: math.unit(5, "universes")
  39903. },
  39904. {
  39905. name: "Universe Atoms",
  39906. height: math.unit(1.829e9, "universes")
  39907. },
  39908. {
  39909. name: "Light Multiversal",
  39910. height: math.unit(5, "multiverses")
  39911. },
  39912. {
  39913. name: "Multiverse Atoms",
  39914. height: math.unit(1.829e9, "multiverses")
  39915. },
  39916. {
  39917. name: "Fabric of Time",
  39918. height: math.unit(1e262, "multiverses")
  39919. },
  39920. ]
  39921. ))
  39922. characterMakers.push(() => makeCharacter(
  39923. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39924. {
  39925. front: {
  39926. height: math.unit(9, "feet"),
  39927. weight: math.unit(1050, "lb"),
  39928. name: "Front",
  39929. image: {
  39930. source: "./media/characters/tabitha/front.svg",
  39931. extra: 2083/1994,
  39932. bottom: 68/2151
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Baseline",
  39939. height: math.unit(9, "feet"),
  39940. default: true
  39941. },
  39942. {
  39943. name: "Giant",
  39944. height: math.unit(90, "feet")
  39945. },
  39946. {
  39947. name: "Macro",
  39948. height: math.unit(900, "feet")
  39949. },
  39950. {
  39951. name: "Megamacro",
  39952. height: math.unit(9000, "feet")
  39953. },
  39954. {
  39955. name: "City-Crushing",
  39956. height: math.unit(27000, "feet")
  39957. },
  39958. {
  39959. name: "Mountain-Mashing",
  39960. height: math.unit(90000, "feet")
  39961. },
  39962. {
  39963. name: "Nation Nemesis",
  39964. height: math.unit(9e6, "feet")
  39965. },
  39966. {
  39967. name: "Continent Cracker",
  39968. height: math.unit(27e6, "feet")
  39969. },
  39970. {
  39971. name: "Earth-Eclipsing",
  39972. height: math.unit(2.7e8, "feet")
  39973. },
  39974. {
  39975. name: "Gas Giant Gulper",
  39976. height: math.unit(2.7e9, "feet")
  39977. },
  39978. {
  39979. name: "Sol-Swallowing",
  39980. height: math.unit(9e10, "feet")
  39981. },
  39982. {
  39983. name: "Galaxy Gulper",
  39984. height: math.unit(9, "galaxies")
  39985. },
  39986. {
  39987. name: "Cosmos Churner",
  39988. height: math.unit(9, "universes")
  39989. },
  39990. ]
  39991. ))
  39992. characterMakers.push(() => makeCharacter(
  39993. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39994. {
  39995. front: {
  39996. height: math.unit(160, "cm"),
  39997. weight: math.unit(55, "kg"),
  39998. name: "Front",
  39999. image: {
  40000. source: "./media/characters/tow/front.svg",
  40001. extra: 1751/1722,
  40002. bottom: 74/1825
  40003. }
  40004. },
  40005. },
  40006. [
  40007. {
  40008. name: "Norm",
  40009. height: math.unit(160, "cm")
  40010. },
  40011. {
  40012. name: "Casual",
  40013. height: math.unit(3200, "m"),
  40014. default: true
  40015. },
  40016. {
  40017. name: "Show-Off",
  40018. height: math.unit(160, "km")
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40024. {
  40025. front: {
  40026. height: math.unit(7 + 11/12, "feet"),
  40027. weight: math.unit(342.8, "lb"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/vivian-orca-dragon/front.svg",
  40031. extra: 1890/1865,
  40032. bottom: 28/1918
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Micro",
  40039. height: math.unit(5, "inches")
  40040. },
  40041. {
  40042. name: "Normal",
  40043. height: math.unit(7 + 11/12, "feet"),
  40044. default: true
  40045. },
  40046. {
  40047. name: "Macro",
  40048. height: math.unit(395 + 7/12, "feet")
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40054. {
  40055. side: {
  40056. height: math.unit(10, "feet"),
  40057. weight: math.unit(1442, "lb"),
  40058. name: "Side",
  40059. image: {
  40060. source: "./media/characters/lotherakon/side.svg",
  40061. extra: 1604/1497,
  40062. bottom: 89/1693
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Mortal Interaction",
  40069. height: math.unit(10, "feet")
  40070. },
  40071. {
  40072. name: "Large",
  40073. height: math.unit(30, "feet"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Giant",
  40078. height: math.unit(100, "feet")
  40079. },
  40080. {
  40081. name: "Kaiju",
  40082. height: math.unit(300, "feet")
  40083. },
  40084. {
  40085. name: "Macro",
  40086. height: math.unit(1000, "feet")
  40087. },
  40088. {
  40089. name: "Macro+",
  40090. height: math.unit(3000, "feet")
  40091. },
  40092. {
  40093. name: "Megamacro",
  40094. height: math.unit(10000, "feet")
  40095. },
  40096. {
  40097. name: "City-Crushing",
  40098. height: math.unit(30000, "feet")
  40099. },
  40100. {
  40101. name: "Continent Cracker",
  40102. height: math.unit(30e6, "feet")
  40103. },
  40104. {
  40105. name: "Earth Eclipsing",
  40106. height: math.unit(3e8, "feet")
  40107. },
  40108. {
  40109. name: "Gas Giant Gulper",
  40110. height: math.unit(3e9, "feet")
  40111. },
  40112. {
  40113. name: "Sol-Swallowing",
  40114. height: math.unit(1e11, "feet")
  40115. },
  40116. {
  40117. name: "System Swallower",
  40118. height: math.unit(3e14, "feet")
  40119. },
  40120. {
  40121. name: "Galaxy Gulper",
  40122. height: math.unit(10, "galaxies")
  40123. },
  40124. {
  40125. name: "Light Universal",
  40126. height: math.unit(5, "universes")
  40127. },
  40128. {
  40129. name: "Universe Palm",
  40130. height: math.unit(20, "universes")
  40131. },
  40132. {
  40133. name: "Light Multiversal",
  40134. height: math.unit(5, "multiverses")
  40135. },
  40136. {
  40137. name: "Multiverse Palm",
  40138. height: math.unit(20, "multiverses")
  40139. },
  40140. {
  40141. name: "Inferno Incarnate",
  40142. height: math.unit(1e7, "multiverses")
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40148. {
  40149. front: {
  40150. height: math.unit(8, "feet"),
  40151. weight: math.unit(1200, "lb"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/malithee/front.svg",
  40155. extra: 1675/1640,
  40156. bottom: 162/1837
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Mortal Interaction",
  40163. height: math.unit(8, "feet"),
  40164. default: true
  40165. },
  40166. {
  40167. name: "Large",
  40168. height: math.unit(24, "feet")
  40169. },
  40170. {
  40171. name: "Kaiju",
  40172. height: math.unit(240, "feet")
  40173. },
  40174. {
  40175. name: "Megamacro",
  40176. height: math.unit(8000, "feet")
  40177. },
  40178. {
  40179. name: "Continent Cracker",
  40180. height: math.unit(24e6, "feet")
  40181. },
  40182. {
  40183. name: "Earth-Eclipsing",
  40184. height: math.unit(2.4e8, "feet")
  40185. },
  40186. {
  40187. name: "Sol-Swallowing",
  40188. height: math.unit(8e10, "feet")
  40189. },
  40190. {
  40191. name: "Galaxy Gulper",
  40192. height: math.unit(8, "galaxies")
  40193. },
  40194. {
  40195. name: "Light Universal",
  40196. height: math.unit(4, "universes")
  40197. },
  40198. {
  40199. name: "Universe Atoms",
  40200. height: math.unit(1.829e9, "universes")
  40201. },
  40202. {
  40203. name: "Light Multiversal",
  40204. height: math.unit(4, "multiverses")
  40205. },
  40206. {
  40207. name: "Multiverse Atoms",
  40208. height: math.unit(1.829e9, "multiverses")
  40209. },
  40210. {
  40211. name: "Nigh-Omnipresence",
  40212. height: math.unit(8e261, "multiverses")
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40218. {
  40219. front: {
  40220. height: math.unit(10, "feet"),
  40221. weight: math.unit(1500, "lb"),
  40222. name: "Front",
  40223. image: {
  40224. source: "./media/characters/miles-thestia/front.svg",
  40225. extra: 1812/1727,
  40226. bottom: 86/1898
  40227. }
  40228. },
  40229. back: {
  40230. height: math.unit(10, "feet"),
  40231. weight: math.unit(1500, "lb"),
  40232. name: "Back",
  40233. image: {
  40234. source: "./media/characters/miles-thestia/back.svg",
  40235. extra: 1799/1690,
  40236. bottom: 47/1846
  40237. }
  40238. },
  40239. frontNsfw: {
  40240. height: math.unit(10, "feet"),
  40241. weight: math.unit(1500, "lb"),
  40242. name: "Front (NSFW)",
  40243. image: {
  40244. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40245. extra: 1812/1727,
  40246. bottom: 86/1898
  40247. }
  40248. },
  40249. },
  40250. [
  40251. {
  40252. name: "Mini-Macro",
  40253. height: math.unit(10, "feet"),
  40254. default: true
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(25, "feet"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/titan-s-wulf/front.svg",
  40266. extra: 1560/1484,
  40267. bottom: 76/1636
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Smallest",
  40274. height: math.unit(25, "feet"),
  40275. default: true
  40276. },
  40277. {
  40278. name: "Normal",
  40279. height: math.unit(200, "feet")
  40280. },
  40281. {
  40282. name: "Macro",
  40283. height: math.unit(200000, "feet")
  40284. },
  40285. {
  40286. name: "Multiversal Original",
  40287. height: math.unit(10000, "multiverses")
  40288. },
  40289. ]
  40290. ))
  40291. characterMakers.push(() => makeCharacter(
  40292. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40293. {
  40294. front: {
  40295. height: math.unit(8, "feet"),
  40296. weight: math.unit(553, "lb"),
  40297. name: "Front",
  40298. image: {
  40299. source: "./media/characters/tawendeh/front.svg",
  40300. extra: 2365/2268,
  40301. bottom: 83/2448
  40302. }
  40303. },
  40304. frontClothed: {
  40305. height: math.unit(8, "feet"),
  40306. weight: math.unit(553, "lb"),
  40307. name: "Front (Clothed)",
  40308. image: {
  40309. source: "./media/characters/tawendeh/front-clothed.svg",
  40310. extra: 2365/2268,
  40311. bottom: 83/2448
  40312. }
  40313. },
  40314. back: {
  40315. height: math.unit(8, "feet"),
  40316. weight: math.unit(553, "lb"),
  40317. name: "Back",
  40318. image: {
  40319. source: "./media/characters/tawendeh/back.svg",
  40320. extra: 2397/2294,
  40321. bottom: 42/2439
  40322. }
  40323. },
  40324. },
  40325. [
  40326. {
  40327. name: "Mortal Interaction",
  40328. height: math.unit(8, "feet"),
  40329. default: true
  40330. },
  40331. {
  40332. name: "Giant",
  40333. height: math.unit(80, "feet")
  40334. },
  40335. {
  40336. name: "Macro",
  40337. height: math.unit(800, "feet")
  40338. },
  40339. {
  40340. name: "Megamacro",
  40341. height: math.unit(8000, "feet")
  40342. },
  40343. {
  40344. name: "City-Crushing",
  40345. height: math.unit(24000, "feet")
  40346. },
  40347. {
  40348. name: "Mountain-Mashing",
  40349. height: math.unit(80000, "feet")
  40350. },
  40351. {
  40352. name: "Nation Nemesis",
  40353. height: math.unit(8e6, "feet")
  40354. },
  40355. {
  40356. name: "Continent Cracker",
  40357. height: math.unit(24e6, "feet")
  40358. },
  40359. {
  40360. name: "Earth-Eclipsing",
  40361. height: math.unit(2.4e8, "feet")
  40362. },
  40363. {
  40364. name: "Gas Giant Gulper",
  40365. height: math.unit(2.4e9, "feet")
  40366. },
  40367. {
  40368. name: "Sol-Swallowing",
  40369. height: math.unit(8e10, "feet")
  40370. },
  40371. {
  40372. name: "Galaxy Gulper",
  40373. height: math.unit(8, "galaxies")
  40374. },
  40375. {
  40376. name: "Cosmos Churner",
  40377. height: math.unit(8, "universes")
  40378. },
  40379. {
  40380. name: "Omnipotent Otter",
  40381. height: math.unit(80, "universes")
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(2.6, "meters"),
  40390. weight: math.unit(900, "kg"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/neesha/front.svg",
  40394. extra: 1803/1653,
  40395. bottom: 128/1931
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(2.6, "meters"),
  40403. default: true
  40404. },
  40405. {
  40406. name: "Macro",
  40407. height: math.unit(50, "meters")
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(5, "feet"),
  40416. weight: math.unit(185, "lb"),
  40417. name: "Front",
  40418. image: {
  40419. source: "./media/characters/kyera/front.svg",
  40420. extra: 1875/1790,
  40421. bottom: 96/1971
  40422. }
  40423. },
  40424. },
  40425. [
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(5, "feet"),
  40429. default: true
  40430. },
  40431. ]
  40432. ))
  40433. characterMakers.push(() => makeCharacter(
  40434. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40435. {
  40436. front: {
  40437. height: math.unit(7 + 6/12, "feet"),
  40438. weight: math.unit(540, "lb"),
  40439. name: "Front",
  40440. image: {
  40441. source: "./media/characters/yuko/front.svg",
  40442. extra: 1282/1222,
  40443. bottom: 101/1383
  40444. }
  40445. },
  40446. frontClothed: {
  40447. height: math.unit(7 + 6/12, "feet"),
  40448. weight: math.unit(540, "lb"),
  40449. name: "Front (Clothed)",
  40450. image: {
  40451. source: "./media/characters/yuko/front-clothed.svg",
  40452. extra: 1282/1222,
  40453. bottom: 101/1383
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Normal",
  40460. height: math.unit(7 + 6/12, "feet"),
  40461. default: true
  40462. },
  40463. {
  40464. name: "Macro",
  40465. height: math.unit(26 + 9/12, "feet")
  40466. },
  40467. {
  40468. name: "Megamacro",
  40469. height: math.unit(300, "feet")
  40470. },
  40471. {
  40472. name: "Gigamacro",
  40473. height: math.unit(5000, "feet")
  40474. },
  40475. {
  40476. name: "Planetary",
  40477. height: math.unit(10000, "miles")
  40478. },
  40479. ]
  40480. ))
  40481. characterMakers.push(() => makeCharacter(
  40482. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40483. {
  40484. front: {
  40485. height: math.unit(8 + 2/12, "feet"),
  40486. weight: math.unit(600, "lb"),
  40487. name: "Front",
  40488. image: {
  40489. source: "./media/characters/deam-nitrel/front.svg",
  40490. extra: 1308/1234,
  40491. bottom: 125/1433
  40492. }
  40493. },
  40494. },
  40495. [
  40496. {
  40497. name: "Normal",
  40498. height: math.unit(8 + 2/12, "feet"),
  40499. default: true
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(6.1, "feet"),
  40508. weight: math.unit(180, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/skyress/front.svg",
  40512. extra: 1045/915,
  40513. bottom: 28/1073
  40514. }
  40515. },
  40516. maw: {
  40517. height: math.unit(1, "feet"),
  40518. name: "Maw",
  40519. image: {
  40520. source: "./media/characters/skyress/maw.svg"
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Normal",
  40527. height: math.unit(6.1, "feet"),
  40528. default: true
  40529. },
  40530. {
  40531. name: "Macro",
  40532. height: math.unit(200, "feet")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(4 + 2/12, "feet"),
  40541. weight: math.unit(40, "kg"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/amethyst-jones/front.svg",
  40545. extra: 1220/1150,
  40546. bottom: 101/1321
  40547. }
  40548. },
  40549. },
  40550. [
  40551. {
  40552. name: "Normal",
  40553. height: math.unit(4 + 2/12, "feet"),
  40554. default: true
  40555. },
  40556. ]
  40557. ))
  40558. characterMakers.push(() => makeCharacter(
  40559. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40560. {
  40561. front: {
  40562. height: math.unit(1.7, "m"),
  40563. weight: math.unit(135, "lb"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/jade/front.svg",
  40567. extra: 1818/1767,
  40568. bottom: 32/1850
  40569. }
  40570. },
  40571. back: {
  40572. height: math.unit(1.7, "m"),
  40573. weight: math.unit(135, "lb"),
  40574. name: "Back",
  40575. image: {
  40576. source: "./media/characters/jade/back.svg",
  40577. extra: 1869/1809,
  40578. bottom: 35/1904
  40579. }
  40580. },
  40581. hand: {
  40582. height: math.unit(0.24, "m"),
  40583. name: "Hand",
  40584. image: {
  40585. source: "./media/characters/jade/hand.svg"
  40586. }
  40587. },
  40588. foot: {
  40589. height: math.unit(0.263, "m"),
  40590. name: "Foot",
  40591. image: {
  40592. source: "./media/characters/jade/foot.svg"
  40593. }
  40594. },
  40595. dick: {
  40596. height: math.unit(0.47, "m"),
  40597. name: "Dick",
  40598. image: {
  40599. source: "./media/characters/jade/dick.svg"
  40600. }
  40601. },
  40602. },
  40603. [
  40604. {
  40605. name: "Micro",
  40606. height: math.unit(22, "cm")
  40607. },
  40608. {
  40609. name: "Normal",
  40610. height: math.unit(1.7, "m"),
  40611. default: true
  40612. },
  40613. {
  40614. name: "Macro",
  40615. height: math.unit(152, "m")
  40616. },
  40617. ]
  40618. ))
  40619. characterMakers.push(() => makeCharacter(
  40620. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40621. {
  40622. front: {
  40623. height: math.unit(100, "miles"),
  40624. weight: math.unit(20000, "tons"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/cookie/front.svg",
  40628. extra: 1125/1070,
  40629. bottom: 30/1155
  40630. }
  40631. },
  40632. },
  40633. [
  40634. {
  40635. name: "Big",
  40636. height: math.unit(50, "feet")
  40637. },
  40638. {
  40639. name: "Macro",
  40640. height: math.unit(100, "miles"),
  40641. default: true
  40642. },
  40643. {
  40644. name: "Megamacro",
  40645. height: math.unit(90000, "miles")
  40646. },
  40647. ]
  40648. ))
  40649. characterMakers.push(() => makeCharacter(
  40650. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40651. {
  40652. front: {
  40653. height: math.unit(6, "feet"),
  40654. weight: math.unit(145, "lb"),
  40655. name: "Front",
  40656. image: {
  40657. source: "./media/characters/farzian/front.svg",
  40658. extra: 1902/1693,
  40659. bottom: 108/2010
  40660. }
  40661. },
  40662. },
  40663. [
  40664. {
  40665. name: "Macro",
  40666. height: math.unit(500, "feet"),
  40667. default: true
  40668. },
  40669. ]
  40670. ))
  40671. characterMakers.push(() => makeCharacter(
  40672. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40673. {
  40674. front: {
  40675. height: math.unit(3 + 6/12, "feet"),
  40676. weight: math.unit(50, "lb"),
  40677. name: "Front",
  40678. image: {
  40679. source: "./media/characters/kimberly-tilson/front.svg",
  40680. extra: 1400/1322,
  40681. bottom: 36/1436
  40682. }
  40683. },
  40684. back: {
  40685. height: math.unit(3 + 6/12, "feet"),
  40686. weight: math.unit(50, "lb"),
  40687. name: "Back",
  40688. image: {
  40689. source: "./media/characters/kimberly-tilson/back.svg",
  40690. extra: 1370/1307,
  40691. bottom: 20/1390
  40692. }
  40693. },
  40694. },
  40695. [
  40696. {
  40697. name: "Normal",
  40698. height: math.unit(3 + 6/12, "feet"),
  40699. default: true
  40700. },
  40701. ]
  40702. ))
  40703. characterMakers.push(() => makeCharacter(
  40704. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40705. {
  40706. front: {
  40707. height: math.unit(1148, "feet"),
  40708. weight: math.unit(34057, "lb"),
  40709. name: "Front",
  40710. image: {
  40711. source: "./media/characters/harthos/front.svg",
  40712. extra: 1391/1339,
  40713. bottom: 13/1404
  40714. }
  40715. },
  40716. },
  40717. [
  40718. {
  40719. name: "Macro",
  40720. height: math.unit(1148, "feet"),
  40721. default: true
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40727. {
  40728. front: {
  40729. height: math.unit(15, "feet"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/hypatia/front.svg",
  40733. extra: 1653/1591,
  40734. bottom: 79/1732
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(15, "feet")
  40742. },
  40743. {
  40744. name: "Small",
  40745. height: math.unit(300, "feet")
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(2500, "feet"),
  40750. default: true
  40751. },
  40752. {
  40753. name: "Mega Macro",
  40754. height: math.unit(1500, "miles")
  40755. },
  40756. {
  40757. name: "Giga Macro",
  40758. height: math.unit(1.5e6, "miles")
  40759. },
  40760. ]
  40761. ))
  40762. characterMakers.push(() => makeCharacter(
  40763. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40764. {
  40765. front: {
  40766. height: math.unit(6, "feet"),
  40767. weight: math.unit(200, "lb"),
  40768. name: "Front",
  40769. image: {
  40770. source: "./media/characters/wulver/front.svg",
  40771. extra: 1724/1632,
  40772. bottom: 130/1854
  40773. }
  40774. },
  40775. frontNsfw: {
  40776. height: math.unit(6, "feet"),
  40777. weight: math.unit(200, "lb"),
  40778. name: "Front (NSFW)",
  40779. image: {
  40780. source: "./media/characters/wulver/front-nsfw.svg",
  40781. extra: 1724/1632,
  40782. bottom: 130/1854
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Human-Sized",
  40789. height: math.unit(6, "feet")
  40790. },
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(4, "meters"),
  40794. default: true
  40795. },
  40796. {
  40797. name: "Large",
  40798. height: math.unit(6, "m")
  40799. },
  40800. ]
  40801. ))
  40802. characterMakers.push(() => makeCharacter(
  40803. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40804. {
  40805. front: {
  40806. height: math.unit(7, "feet"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/maru/front.svg",
  40810. extra: 1595/1570,
  40811. bottom: 0/1595
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(7, "feet"),
  40819. default: true
  40820. },
  40821. {
  40822. name: "Macro",
  40823. height: math.unit(700, "feet")
  40824. },
  40825. {
  40826. name: "Mega Macro",
  40827. height: math.unit(25, "miles")
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(6, "feet"),
  40836. weight: math.unit(170, "lb"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/xenon/front.svg",
  40840. extra: 1376/1305,
  40841. bottom: 56/1432
  40842. }
  40843. },
  40844. back: {
  40845. height: math.unit(6, "feet"),
  40846. weight: math.unit(170, "lb"),
  40847. name: "Back",
  40848. image: {
  40849. source: "./media/characters/xenon/back.svg",
  40850. extra: 1328/1259,
  40851. bottom: 95/1423
  40852. }
  40853. },
  40854. maw: {
  40855. height: math.unit(0.52, "feet"),
  40856. name: "Maw",
  40857. image: {
  40858. source: "./media/characters/xenon/maw.svg"
  40859. }
  40860. },
  40861. hand: {
  40862. height: math.unit(0.82, "feet"),
  40863. name: "Hand",
  40864. image: {
  40865. source: "./media/characters/xenon/hand.svg"
  40866. }
  40867. },
  40868. foot: {
  40869. height: math.unit(1.13, "feet"),
  40870. name: "Foot",
  40871. image: {
  40872. source: "./media/characters/xenon/foot.svg"
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Micro",
  40879. height: math.unit(0.8, "inches")
  40880. },
  40881. {
  40882. name: "Normal",
  40883. height: math.unit(6, "feet")
  40884. },
  40885. {
  40886. name: "Macro",
  40887. height: math.unit(50, "feet"),
  40888. default: true
  40889. },
  40890. {
  40891. name: "Macro+",
  40892. height: math.unit(250, "feet")
  40893. },
  40894. {
  40895. name: "Megamacro",
  40896. height: math.unit(1500, "feet")
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(7 + 5/12, "feet"),
  40905. name: "Front",
  40906. image: {
  40907. source: "./media/characters/zane/front.svg",
  40908. extra: 1260/1203,
  40909. bottom: 94/1354
  40910. }
  40911. },
  40912. back: {
  40913. height: math.unit(5.05, "feet"),
  40914. name: "Back",
  40915. image: {
  40916. source: "./media/characters/zane/back.svg",
  40917. extra: 893/829,
  40918. bottom: 30/923
  40919. }
  40920. },
  40921. werewolf: {
  40922. height: math.unit(11, "feet"),
  40923. name: "Werewolf",
  40924. image: {
  40925. source: "./media/characters/zane/werewolf.svg",
  40926. extra: 1383/1323,
  40927. bottom: 89/1472
  40928. }
  40929. },
  40930. foot: {
  40931. height: math.unit(1.46, "feet"),
  40932. name: "Foot",
  40933. image: {
  40934. source: "./media/characters/zane/foot.svg"
  40935. }
  40936. },
  40937. footFront: {
  40938. height: math.unit(0.784, "feet"),
  40939. name: "Foot (Front)",
  40940. image: {
  40941. source: "./media/characters/zane/foot-front.svg"
  40942. }
  40943. },
  40944. dick: {
  40945. height: math.unit(1.95, "feet"),
  40946. name: "Dick",
  40947. image: {
  40948. source: "./media/characters/zane/dick.svg"
  40949. }
  40950. },
  40951. dickWerewolf: {
  40952. height: math.unit(3.77, "feet"),
  40953. name: "Dick (Werewolf)",
  40954. image: {
  40955. source: "./media/characters/zane/dick.svg"
  40956. }
  40957. },
  40958. },
  40959. [
  40960. {
  40961. name: "Normal",
  40962. height: math.unit(7 + 5/12, "feet"),
  40963. default: true
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(6 + 2/12, "feet"),
  40972. weight: math.unit(284, "lb"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/benni-desparque/front.svg",
  40976. extra: 1353/1126,
  40977. bottom: 69/1422
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Civilian",
  40984. height: math.unit(6 + 2/12, "feet")
  40985. },
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(98, "feet"),
  40989. default: true
  40990. },
  40991. {
  40992. name: "Kaiju Fighter",
  40993. height: math.unit(268, "feet")
  40994. },
  40995. ]
  40996. ))
  40997. characterMakers.push(() => makeCharacter(
  40998. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40999. {
  41000. front: {
  41001. height: math.unit(5, "feet"),
  41002. weight: math.unit(105, "lb"),
  41003. name: "Front",
  41004. image: {
  41005. source: "./media/characters/maxine/front.svg",
  41006. extra: 1386/1250,
  41007. bottom: 71/1457
  41008. }
  41009. },
  41010. },
  41011. [
  41012. {
  41013. name: "Normal",
  41014. height: math.unit(5, "feet"),
  41015. default: true
  41016. },
  41017. ]
  41018. ))
  41019. characterMakers.push(() => makeCharacter(
  41020. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41021. {
  41022. front: {
  41023. height: math.unit(11 + 7/12, "feet"),
  41024. weight: math.unit(9576, "lb"),
  41025. name: "Front",
  41026. image: {
  41027. source: "./media/characters/scaly/front.svg",
  41028. extra: 888/867,
  41029. bottom: 36/924
  41030. }
  41031. },
  41032. },
  41033. [
  41034. {
  41035. name: "Normal",
  41036. height: math.unit(11 + 7/12, "feet"),
  41037. default: true
  41038. },
  41039. ]
  41040. ))
  41041. characterMakers.push(() => makeCharacter(
  41042. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41043. {
  41044. front: {
  41045. height: math.unit(6 + 3/12, "feet"),
  41046. name: "Front",
  41047. image: {
  41048. source: "./media/characters/saelria/front.svg",
  41049. extra: 1243/1138,
  41050. bottom: 46/1289
  41051. }
  41052. },
  41053. },
  41054. [
  41055. {
  41056. name: "Micro",
  41057. height: math.unit(6, "inches"),
  41058. },
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(6 + 3/12, "feet"),
  41062. default: true
  41063. },
  41064. {
  41065. name: "Macro",
  41066. height: math.unit(25, "feet")
  41067. },
  41068. ]
  41069. ))
  41070. characterMakers.push(() => makeCharacter(
  41071. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41072. {
  41073. front: {
  41074. height: math.unit(80, "meters"),
  41075. weight: math.unit(7000, "tonnes"),
  41076. name: "Front",
  41077. image: {
  41078. source: "./media/characters/tef/front.svg",
  41079. extra: 2036/1991,
  41080. bottom: 54/2090
  41081. }
  41082. },
  41083. back: {
  41084. height: math.unit(80, "meters"),
  41085. weight: math.unit(7000, "tonnes"),
  41086. name: "Back",
  41087. image: {
  41088. source: "./media/characters/tef/back.svg",
  41089. extra: 2036/1991,
  41090. bottom: 54/2090
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Macro",
  41097. height: math.unit(80, "meters"),
  41098. default: true
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41104. {
  41105. front: {
  41106. height: math.unit(13, "feet"),
  41107. weight: math.unit(6, "tons"),
  41108. name: "Front",
  41109. image: {
  41110. source: "./media/characters/rover/front.svg",
  41111. extra: 1233/1156,
  41112. bottom: 50/1283
  41113. }
  41114. },
  41115. back: {
  41116. height: math.unit(13, "feet"),
  41117. weight: math.unit(6, "tons"),
  41118. name: "Back",
  41119. image: {
  41120. source: "./media/characters/rover/back.svg",
  41121. extra: 1327/1258,
  41122. bottom: 39/1366
  41123. }
  41124. },
  41125. },
  41126. [
  41127. {
  41128. name: "Normal",
  41129. height: math.unit(13, "feet"),
  41130. default: true
  41131. },
  41132. {
  41133. name: "Macro",
  41134. height: math.unit(1300, "feet")
  41135. },
  41136. {
  41137. name: "Megamacro",
  41138. height: math.unit(1300, "miles")
  41139. },
  41140. {
  41141. name: "Gigamacro",
  41142. height: math.unit(1300000, "miles")
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41148. {
  41149. front: {
  41150. height: math.unit(6, "feet"),
  41151. weight: math.unit(150, "lb"),
  41152. name: "Front",
  41153. image: {
  41154. source: "./media/characters/ariz/front.svg",
  41155. extra: 1401/1346,
  41156. bottom: 5/1406
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Normal",
  41163. height: math.unit(10, "feet"),
  41164. default: true
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(6, "feet"),
  41173. weight: math.unit(140, "lb"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/sigrun/front.svg",
  41177. extra: 1418/1359,
  41178. bottom: 27/1445
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Macro",
  41185. height: math.unit(35, "feet"),
  41186. default: true
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(6, "feet"),
  41195. weight: math.unit(150, "lb"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/numin/front.svg",
  41199. extra: 1433/1388,
  41200. bottom: 12/1445
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Macro",
  41207. height: math.unit(21.5, "km"),
  41208. default: true
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(6, "feet"),
  41217. weight: math.unit(463, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/melwa/front.svg",
  41221. extra: 1307/1248,
  41222. bottom: 93/1400
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(50, "meters"),
  41230. default: true
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(325, "feet"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/zorkaiju/front.svg",
  41242. extra: 1955/1814,
  41243. bottom: 40/1995
  41244. }
  41245. },
  41246. frontExtended: {
  41247. height: math.unit(325, "feet"),
  41248. name: "Front (Extended)",
  41249. image: {
  41250. source: "./media/characters/zorkaiju/front-extended.svg",
  41251. extra: 1955/1814,
  41252. bottom: 40/1995
  41253. }
  41254. },
  41255. side: {
  41256. height: math.unit(325, "feet"),
  41257. name: "Side",
  41258. image: {
  41259. source: "./media/characters/zorkaiju/side.svg",
  41260. extra: 1495/1396,
  41261. bottom: 17/1512
  41262. }
  41263. },
  41264. sideExtended: {
  41265. height: math.unit(325, "feet"),
  41266. name: "Side (Extended)",
  41267. image: {
  41268. source: "./media/characters/zorkaiju/side-extended.svg",
  41269. extra: 1495/1396,
  41270. bottom: 17/1512
  41271. }
  41272. },
  41273. back: {
  41274. height: math.unit(325, "feet"),
  41275. name: "Back",
  41276. image: {
  41277. source: "./media/characters/zorkaiju/back.svg",
  41278. extra: 1959/1821,
  41279. bottom: 31/1990
  41280. }
  41281. },
  41282. backExtended: {
  41283. height: math.unit(325, "feet"),
  41284. name: "Back (Extended)",
  41285. image: {
  41286. source: "./media/characters/zorkaiju/back-extended.svg",
  41287. extra: 1959/1821,
  41288. bottom: 31/1990
  41289. }
  41290. },
  41291. hand: {
  41292. height: math.unit(58.4, "feet"),
  41293. name: "Hand",
  41294. image: {
  41295. source: "./media/characters/zorkaiju/hand.svg"
  41296. }
  41297. },
  41298. handExtended: {
  41299. height: math.unit(61.4, "feet"),
  41300. name: "Hand (Extended)",
  41301. image: {
  41302. source: "./media/characters/zorkaiju/hand-extended.svg"
  41303. }
  41304. },
  41305. foot: {
  41306. height: math.unit(95, "feet"),
  41307. name: "Foot",
  41308. image: {
  41309. source: "./media/characters/zorkaiju/foot.svg"
  41310. }
  41311. },
  41312. leftArm: {
  41313. height: math.unit(59, "feet"),
  41314. name: "Left Arm",
  41315. image: {
  41316. source: "./media/characters/zorkaiju/left-arm.svg"
  41317. }
  41318. },
  41319. rightArm: {
  41320. height: math.unit(59, "feet"),
  41321. name: "Right Arm",
  41322. image: {
  41323. source: "./media/characters/zorkaiju/right-arm.svg"
  41324. }
  41325. },
  41326. tail: {
  41327. height: math.unit(104, "feet"),
  41328. name: "Tail",
  41329. image: {
  41330. source: "./media/characters/zorkaiju/tail.svg"
  41331. }
  41332. },
  41333. tailExtended: {
  41334. height: math.unit(104, "feet"),
  41335. name: "Tail (Extended)",
  41336. image: {
  41337. source: "./media/characters/zorkaiju/tail-extended.svg"
  41338. }
  41339. },
  41340. tailBottom: {
  41341. height: math.unit(104, "feet"),
  41342. name: "Tail Bottom",
  41343. image: {
  41344. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41345. }
  41346. },
  41347. crystal: {
  41348. height: math.unit(27.54, "feet"),
  41349. name: "Crystal",
  41350. image: {
  41351. source: "./media/characters/zorkaiju/crystal.svg"
  41352. }
  41353. },
  41354. },
  41355. [
  41356. {
  41357. name: "Kaiju",
  41358. height: math.unit(325, "feet"),
  41359. default: true
  41360. },
  41361. ]
  41362. ))
  41363. characterMakers.push(() => makeCharacter(
  41364. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41365. {
  41366. front: {
  41367. height: math.unit(6 + 1/12, "feet"),
  41368. weight: math.unit(115, "lb"),
  41369. name: "Front",
  41370. image: {
  41371. source: "./media/characters/bailey-belfry/front.svg",
  41372. extra: 1240/1121,
  41373. bottom: 101/1341
  41374. }
  41375. },
  41376. },
  41377. [
  41378. {
  41379. name: "Normal",
  41380. height: math.unit(6 + 1/12, "feet"),
  41381. default: true
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41387. {
  41388. side: {
  41389. height: math.unit(4, "meters"),
  41390. weight: math.unit(250, "kg"),
  41391. name: "Side",
  41392. image: {
  41393. source: "./media/characters/blacky/side.svg",
  41394. extra: 1027/919,
  41395. bottom: 43/1070
  41396. }
  41397. },
  41398. maw: {
  41399. height: math.unit(1, "meters"),
  41400. name: "Maw",
  41401. image: {
  41402. source: "./media/characters/blacky/maw.svg"
  41403. }
  41404. },
  41405. paw: {
  41406. height: math.unit(1, "meters"),
  41407. name: "Paw",
  41408. image: {
  41409. source: "./media/characters/blacky/paw.svg"
  41410. }
  41411. },
  41412. },
  41413. [
  41414. {
  41415. name: "Normal",
  41416. height: math.unit(4, "meters"),
  41417. default: true
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(170, "cm"),
  41426. weight: math.unit(66, "kg"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/thux-ei/front.svg",
  41430. extra: 1109/1011,
  41431. bottom: 8/1117
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(170, "cm"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(5, "feet"),
  41448. weight: math.unit(120, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/roxanne-voltaire/front.svg",
  41452. extra: 1901/1779,
  41453. bottom: 53/1954
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(5, "feet"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Giant",
  41465. height: math.unit(50, "feet")
  41466. },
  41467. {
  41468. name: "Titan",
  41469. height: math.unit(500, "feet")
  41470. },
  41471. {
  41472. name: "Macro",
  41473. height: math.unit(5000, "feet")
  41474. },
  41475. {
  41476. name: "Megamacro",
  41477. height: math.unit(50000, "feet")
  41478. },
  41479. {
  41480. name: "Gigamacro",
  41481. height: math.unit(500000, "feet")
  41482. },
  41483. {
  41484. name: "Teramacro",
  41485. height: math.unit(5e6, "feet")
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(6 + 2/12, "feet"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/squeaks/front.svg",
  41497. extra: 1823/1768,
  41498. bottom: 138/1961
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Micro",
  41505. height: math.unit(0.5, "inches")
  41506. },
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(6 + 2/12, "feet"),
  41510. default: true
  41511. },
  41512. {
  41513. name: "Macro",
  41514. height: math.unit(600, "feet")
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(1.72, "meters"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/archinger/front.svg",
  41526. extra: 1861/1675,
  41527. bottom: 125/1986
  41528. }
  41529. },
  41530. back: {
  41531. height: math.unit(1.72, "meters"),
  41532. name: "Back",
  41533. image: {
  41534. source: "./media/characters/archinger/back.svg",
  41535. extra: 1844/1701,
  41536. bottom: 104/1948
  41537. }
  41538. },
  41539. cock: {
  41540. height: math.unit(0.59, "feet"),
  41541. name: "Cock",
  41542. image: {
  41543. source: "./media/characters/archinger/cock.svg"
  41544. }
  41545. },
  41546. },
  41547. [
  41548. {
  41549. name: "Normal",
  41550. height: math.unit(1.72, "meters"),
  41551. default: true
  41552. },
  41553. {
  41554. name: "Macro",
  41555. height: math.unit(84, "meters")
  41556. },
  41557. {
  41558. name: "Macro+",
  41559. height: math.unit(112, "meters")
  41560. },
  41561. {
  41562. name: "Macro++",
  41563. height: math.unit(960, "meters")
  41564. },
  41565. {
  41566. name: "Macro+++",
  41567. height: math.unit(4, "km")
  41568. },
  41569. {
  41570. name: "Macro++++",
  41571. height: math.unit(48, "km")
  41572. },
  41573. {
  41574. name: "Macro+++++",
  41575. height: math.unit(4500, "km")
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41581. {
  41582. front: {
  41583. height: math.unit(5 + 5/12, "feet"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/alsnapz/front.svg",
  41587. extra: 1157/1065,
  41588. bottom: 42/1199
  41589. }
  41590. },
  41591. },
  41592. [
  41593. {
  41594. name: "Normal",
  41595. height: math.unit(5 + 5/12, "feet"),
  41596. default: true
  41597. },
  41598. ]
  41599. ))
  41600. characterMakers.push(() => makeCharacter(
  41601. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41602. {
  41603. side: {
  41604. height: math.unit(3.2, "earths"),
  41605. name: "Side",
  41606. image: {
  41607. source: "./media/characters/mag/side.svg",
  41608. extra: 1331/1008,
  41609. bottom: 52/1383
  41610. }
  41611. },
  41612. wing: {
  41613. height: math.unit(1.94, "earths"),
  41614. name: "Wing",
  41615. image: {
  41616. source: "./media/characters/mag/wing.svg"
  41617. }
  41618. },
  41619. dick: {
  41620. height: math.unit(1.8, "earths"),
  41621. name: "Dick",
  41622. image: {
  41623. source: "./media/characters/mag/dick.svg"
  41624. }
  41625. },
  41626. ass: {
  41627. height: math.unit(1.33, "earths"),
  41628. name: "Ass",
  41629. image: {
  41630. source: "./media/characters/mag/ass.svg"
  41631. }
  41632. },
  41633. head: {
  41634. height: math.unit(1.1, "earths"),
  41635. name: "Head",
  41636. image: {
  41637. source: "./media/characters/mag/head.svg"
  41638. }
  41639. },
  41640. maw: {
  41641. height: math.unit(1.62, "earths"),
  41642. name: "Maw",
  41643. image: {
  41644. source: "./media/characters/mag/maw.svg"
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Small",
  41651. height: math.unit(162, "feet")
  41652. },
  41653. {
  41654. name: "Normal",
  41655. height: math.unit(3.2, "earths"),
  41656. default: true
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41662. {
  41663. front: {
  41664. height: math.unit(512, "feet"),
  41665. weight: math.unit(63509, "tonnes"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/vorrel-harroc/front.svg",
  41669. extra: 1075/1063,
  41670. bottom: 62/1137
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(10, "feet")
  41678. },
  41679. {
  41680. name: "Macro",
  41681. height: math.unit(512, "feet"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Megamacro",
  41686. height: math.unit(256, "miles")
  41687. },
  41688. {
  41689. name: "Gigamacro",
  41690. height: math.unit(4096, "miles")
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41696. {
  41697. side: {
  41698. height: math.unit(50, "feet"),
  41699. name: "Side",
  41700. image: {
  41701. source: "./media/characters/froimar/side.svg",
  41702. extra: 855/638,
  41703. bottom: 99/954
  41704. }
  41705. },
  41706. },
  41707. [
  41708. {
  41709. name: "Macro",
  41710. height: math.unit(50, "feet"),
  41711. default: true
  41712. },
  41713. ]
  41714. ))
  41715. characterMakers.push(() => makeCharacter(
  41716. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41717. {
  41718. front: {
  41719. height: math.unit(210, "miles"),
  41720. name: "Front",
  41721. image: {
  41722. source: "./media/characters/timothy/front.svg",
  41723. extra: 1007/943,
  41724. bottom: 62/1069
  41725. }
  41726. },
  41727. frontSkirt: {
  41728. height: math.unit(210, "miles"),
  41729. name: "Front (Skirt)",
  41730. image: {
  41731. source: "./media/characters/timothy/front-skirt.svg",
  41732. extra: 1007/943,
  41733. bottom: 62/1069
  41734. }
  41735. },
  41736. frontCoat: {
  41737. height: math.unit(210, "miles"),
  41738. name: "Front (Coat)",
  41739. image: {
  41740. source: "./media/characters/timothy/front-coat.svg",
  41741. extra: 1007/943,
  41742. bottom: 62/1069
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Macro",
  41749. height: math.unit(210, "miles"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Megamacro",
  41754. height: math.unit(210000, "miles")
  41755. },
  41756. ]
  41757. ))
  41758. characterMakers.push(() => makeCharacter(
  41759. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41760. {
  41761. front: {
  41762. height: math.unit(188, "feet"),
  41763. name: "Front",
  41764. image: {
  41765. source: "./media/characters/pyotr/front.svg",
  41766. extra: 1912/1826,
  41767. bottom: 18/1930
  41768. }
  41769. },
  41770. },
  41771. [
  41772. {
  41773. name: "Macro",
  41774. height: math.unit(188, "feet"),
  41775. default: true
  41776. },
  41777. {
  41778. name: "Megamacro",
  41779. height: math.unit(8, "miles")
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41785. {
  41786. side: {
  41787. height: math.unit(10, "feet"),
  41788. weight: math.unit(4500, "lb"),
  41789. name: "Side",
  41790. image: {
  41791. source: "./media/characters/ackart/side.svg",
  41792. extra: 1776/1668,
  41793. bottom: 116/1892
  41794. }
  41795. },
  41796. },
  41797. [
  41798. {
  41799. name: "Normal",
  41800. height: math.unit(10, "feet"),
  41801. default: true
  41802. },
  41803. ]
  41804. ))
  41805. characterMakers.push(() => makeCharacter(
  41806. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41807. {
  41808. side: {
  41809. height: math.unit(21, "feet"),
  41810. name: "Side",
  41811. image: {
  41812. source: "./media/characters/nolow/side.svg",
  41813. extra: 1484/1434,
  41814. bottom: 85/1569
  41815. }
  41816. },
  41817. sideErect: {
  41818. height: math.unit(21, "feet"),
  41819. name: "Side-erect",
  41820. image: {
  41821. source: "./media/characters/nolow/side-erect.svg",
  41822. extra: 1484/1434,
  41823. bottom: 85/1569
  41824. }
  41825. },
  41826. },
  41827. [
  41828. {
  41829. name: "Regular",
  41830. height: math.unit(12, "feet")
  41831. },
  41832. {
  41833. name: "Big Chee",
  41834. height: math.unit(21, "feet"),
  41835. default: true
  41836. },
  41837. ]
  41838. ))
  41839. characterMakers.push(() => makeCharacter(
  41840. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41841. {
  41842. front: {
  41843. height: math.unit(7, "feet"),
  41844. weight: math.unit(250, "lb"),
  41845. name: "Front",
  41846. image: {
  41847. source: "./media/characters/nines/front.svg",
  41848. extra: 1741/1607,
  41849. bottom: 41/1782
  41850. }
  41851. },
  41852. side: {
  41853. height: math.unit(7, "feet"),
  41854. weight: math.unit(250, "lb"),
  41855. name: "Side",
  41856. image: {
  41857. source: "./media/characters/nines/side.svg",
  41858. extra: 1854/1735,
  41859. bottom: 93/1947
  41860. }
  41861. },
  41862. back: {
  41863. height: math.unit(7, "feet"),
  41864. weight: math.unit(250, "lb"),
  41865. name: "Back",
  41866. image: {
  41867. source: "./media/characters/nines/back.svg",
  41868. extra: 1748/1615,
  41869. bottom: 20/1768
  41870. }
  41871. },
  41872. },
  41873. [
  41874. {
  41875. name: "Megamacro",
  41876. height: math.unit(99, "km"),
  41877. default: true
  41878. },
  41879. ]
  41880. ))
  41881. characterMakers.push(() => makeCharacter(
  41882. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41883. {
  41884. front: {
  41885. height: math.unit(5 + 10/12, "feet"),
  41886. weight: math.unit(210, "lb"),
  41887. name: "Front",
  41888. image: {
  41889. source: "./media/characters/zenith/front.svg",
  41890. extra: 1531/1452,
  41891. bottom: 198/1729
  41892. }
  41893. },
  41894. back: {
  41895. height: math.unit(5 + 10/12, "feet"),
  41896. weight: math.unit(210, "lb"),
  41897. name: "Back",
  41898. image: {
  41899. source: "./media/characters/zenith/back.svg",
  41900. extra: 1571/1487,
  41901. bottom: 75/1646
  41902. }
  41903. },
  41904. },
  41905. [
  41906. {
  41907. name: "Normal",
  41908. height: math.unit(5 + 10/12, "feet"),
  41909. default: true
  41910. }
  41911. ]
  41912. ))
  41913. characterMakers.push(() => makeCharacter(
  41914. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41915. {
  41916. front: {
  41917. height: math.unit(4, "feet"),
  41918. weight: math.unit(60, "lb"),
  41919. name: "Front",
  41920. image: {
  41921. source: "./media/characters/jasper/front.svg",
  41922. extra: 1450/1379,
  41923. bottom: 19/1469
  41924. }
  41925. },
  41926. },
  41927. [
  41928. {
  41929. name: "Normal",
  41930. height: math.unit(4, "feet"),
  41931. default: true
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(6 + 5/12, "feet"),
  41940. weight: math.unit(290, "lb"),
  41941. name: "Front",
  41942. image: {
  41943. source: "./media/characters/tiberius-thyben/front.svg",
  41944. extra: 757/739,
  41945. bottom: 39/796
  41946. }
  41947. },
  41948. },
  41949. [
  41950. {
  41951. name: "Micro",
  41952. height: math.unit(1.5, "inches")
  41953. },
  41954. {
  41955. name: "Normal",
  41956. height: math.unit(6 + 5/12, "feet"),
  41957. default: true
  41958. },
  41959. {
  41960. name: "Macro",
  41961. height: math.unit(300, "feet")
  41962. },
  41963. ]
  41964. ))
  41965. characterMakers.push(() => makeCharacter(
  41966. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41967. {
  41968. front: {
  41969. height: math.unit(5 + 6/12, "feet"),
  41970. weight: math.unit(60, "kg"),
  41971. name: "Front",
  41972. image: {
  41973. source: "./media/characters/sabre/front.svg",
  41974. extra: 738/671,
  41975. bottom: 27/765
  41976. }
  41977. },
  41978. },
  41979. [
  41980. {
  41981. name: "Teeny",
  41982. height: math.unit(2, "inches")
  41983. },
  41984. {
  41985. name: "Smol",
  41986. height: math.unit(8, "inches")
  41987. },
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(5 + 6/12, "feet"),
  41991. default: true
  41992. },
  41993. {
  41994. name: "Mini-Macro",
  41995. height: math.unit(15, "feet")
  41996. },
  41997. {
  41998. name: "Macro",
  41999. height: math.unit(50, "feet")
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42005. {
  42006. front: {
  42007. height: math.unit(6 + 4/12, "feet"),
  42008. weight: math.unit(170, "lb"),
  42009. name: "Front",
  42010. image: {
  42011. source: "./media/characters/charlie/front.svg",
  42012. extra: 1348/1228,
  42013. bottom: 15/1363
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Macro",
  42020. height: math.unit(1700, "meters"),
  42021. default: true
  42022. },
  42023. {
  42024. name: "MegaMacro",
  42025. height: math.unit(20400, "meters")
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(6 + 3/12, "feet"),
  42034. weight: math.unit(185, "lb"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/susan-grant/front.svg",
  42038. extra: 1351/1327,
  42039. bottom: 26/1377
  42040. }
  42041. },
  42042. },
  42043. [
  42044. {
  42045. name: "Normal",
  42046. height: math.unit(6 + 3/12, "feet"),
  42047. default: true
  42048. },
  42049. {
  42050. name: "Macro",
  42051. height: math.unit(225, "feet")
  42052. },
  42053. {
  42054. name: "Macro+",
  42055. height: math.unit(900, "feet")
  42056. },
  42057. {
  42058. name: "MegaMacro",
  42059. height: math.unit(14400, "feet")
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(5 + 4/12, "feet"),
  42068. weight: math.unit(110, "lb"),
  42069. name: "Front",
  42070. image: {
  42071. source: "./media/characters/axel-isanov/front.svg",
  42072. extra: 1096/1065,
  42073. bottom: 13/1109
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(5 + 4/12, "feet"),
  42081. default: true
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(9, "feet"),
  42090. weight: math.unit(467, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/necahual/front.svg",
  42094. extra: 920/873,
  42095. bottom: 26/946
  42096. }
  42097. },
  42098. back: {
  42099. height: math.unit(9, "feet"),
  42100. weight: math.unit(467, "lb"),
  42101. name: "Back",
  42102. image: {
  42103. source: "./media/characters/necahual/back.svg",
  42104. extra: 930/884,
  42105. bottom: 16/946
  42106. }
  42107. },
  42108. frontUnderwear: {
  42109. height: math.unit(9, "feet"),
  42110. weight: math.unit(467, "lb"),
  42111. name: "Front (Underwear)",
  42112. image: {
  42113. source: "./media/characters/necahual/front-underwear.svg",
  42114. extra: 920/873,
  42115. bottom: 26/946
  42116. }
  42117. },
  42118. frontDressed: {
  42119. height: math.unit(9, "feet"),
  42120. weight: math.unit(467, "lb"),
  42121. name: "Front (Dressed)",
  42122. image: {
  42123. source: "./media/characters/necahual/front-dressed.svg",
  42124. extra: 920/873,
  42125. bottom: 26/946
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Comprsesed",
  42132. height: math.unit(9, "feet")
  42133. },
  42134. {
  42135. name: "Natural",
  42136. height: math.unit(15, "feet"),
  42137. default: true
  42138. },
  42139. {
  42140. name: "Boosted",
  42141. height: math.unit(50, "feet")
  42142. },
  42143. {
  42144. name: "Boosted+",
  42145. height: math.unit(150, "feet")
  42146. },
  42147. {
  42148. name: "Max",
  42149. height: math.unit(500, "feet")
  42150. },
  42151. ]
  42152. ))
  42153. characterMakers.push(() => makeCharacter(
  42154. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42155. {
  42156. front: {
  42157. height: math.unit(22 + 1/12, "feet"),
  42158. weight: math.unit(3200, "lb"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/theo-acacia/front.svg",
  42162. extra: 1796/1741,
  42163. bottom: 83/1879
  42164. }
  42165. },
  42166. frontUnderwear: {
  42167. height: math.unit(22 + 1/12, "feet"),
  42168. weight: math.unit(3200, "lb"),
  42169. name: "Front (Underwear)",
  42170. image: {
  42171. source: "./media/characters/theo-acacia/front-underwear.svg",
  42172. extra: 1796/1741,
  42173. bottom: 83/1879
  42174. }
  42175. },
  42176. frontNude: {
  42177. height: math.unit(22 + 1/12, "feet"),
  42178. weight: math.unit(3200, "lb"),
  42179. name: "Front (Nude)",
  42180. image: {
  42181. source: "./media/characters/theo-acacia/front-nude.svg",
  42182. extra: 1796/1741,
  42183. bottom: 83/1879
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(22 + 1/12, "feet"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(20, "feet"),
  42200. name: "Front",
  42201. image: {
  42202. source: "./media/characters/astra/front.svg",
  42203. extra: 1850/1714,
  42204. bottom: 106/1956
  42205. }
  42206. },
  42207. frontUndressed: {
  42208. height: math.unit(20, "feet"),
  42209. name: "Front (Undressed)",
  42210. image: {
  42211. source: "./media/characters/astra/front-undressed.svg",
  42212. extra: 1926/1749,
  42213. bottom: 0/1926
  42214. }
  42215. },
  42216. hand: {
  42217. height: math.unit(1.53, "feet"),
  42218. name: "Hand",
  42219. image: {
  42220. source: "./media/characters/astra/hand.svg"
  42221. }
  42222. },
  42223. paw: {
  42224. height: math.unit(1.53, "feet"),
  42225. name: "Paw",
  42226. image: {
  42227. source: "./media/characters/astra/paw.svg"
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Smallest",
  42234. height: math.unit(20, "feet")
  42235. },
  42236. {
  42237. name: "Normal",
  42238. height: math.unit(1e9, "miles"),
  42239. default: true
  42240. },
  42241. {
  42242. name: "Larger",
  42243. height: math.unit(5, "multiverses")
  42244. },
  42245. {
  42246. name: "Largest",
  42247. height: math.unit(1e9, "multiverses")
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42253. {
  42254. front: {
  42255. height: math.unit(8, "feet"),
  42256. name: "Front",
  42257. image: {
  42258. source: "./media/characters/breanna/front.svg",
  42259. extra: 1912/1632,
  42260. bottom: 33/1945
  42261. }
  42262. },
  42263. },
  42264. [
  42265. {
  42266. name: "Smallest",
  42267. height: math.unit(8, "feet")
  42268. },
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(1, "mile"),
  42272. default: true
  42273. },
  42274. {
  42275. name: "Maximum",
  42276. height: math.unit(1500000000000, "lightyears")
  42277. },
  42278. ]
  42279. ))
  42280. characterMakers.push(() => makeCharacter(
  42281. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42282. {
  42283. front: {
  42284. height: math.unit(5 + 11/12, "feet"),
  42285. weight: math.unit(155, "lb"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/cai/front.svg",
  42289. extra: 1823/1702,
  42290. bottom: 32/1855
  42291. }
  42292. },
  42293. back: {
  42294. height: math.unit(5 + 11/12, "feet"),
  42295. weight: math.unit(155, "lb"),
  42296. name: "Back",
  42297. image: {
  42298. source: "./media/characters/cai/back.svg",
  42299. extra: 1809/1708,
  42300. bottom: 31/1840
  42301. }
  42302. },
  42303. },
  42304. [
  42305. {
  42306. name: "Normal",
  42307. height: math.unit(5 + 11/12, "feet"),
  42308. default: true
  42309. },
  42310. {
  42311. name: "Big",
  42312. height: math.unit(15, "feet")
  42313. },
  42314. {
  42315. name: "Macro",
  42316. height: math.unit(200, "feet")
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(5 + 6/12, "feet"),
  42325. weight: math.unit(160, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42329. extra: 1227/1174,
  42330. bottom: 37/1264
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Macro",
  42337. height: math.unit(444, "meters"),
  42338. default: true
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(18 + 7/12, "feet"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/rex/front.svg",
  42350. extra: 1941/1807,
  42351. bottom: 66/2007
  42352. }
  42353. },
  42354. back: {
  42355. height: math.unit(18 + 7/12, "feet"),
  42356. name: "Back",
  42357. image: {
  42358. source: "./media/characters/rex/back.svg",
  42359. extra: 1937/1822,
  42360. bottom: 42/1979
  42361. }
  42362. },
  42363. boot: {
  42364. height: math.unit(3.45, "feet"),
  42365. name: "Boot",
  42366. image: {
  42367. source: "./media/characters/rex/boot.svg"
  42368. }
  42369. },
  42370. paw: {
  42371. height: math.unit(4.17, "feet"),
  42372. name: "Paw",
  42373. image: {
  42374. source: "./media/characters/rex/paw.svg"
  42375. }
  42376. },
  42377. head: {
  42378. height: math.unit(6.728, "feet"),
  42379. name: "Head",
  42380. image: {
  42381. source: "./media/characters/rex/head.svg"
  42382. }
  42383. },
  42384. },
  42385. [
  42386. {
  42387. name: "Nano",
  42388. height: math.unit(18 + 7/12, "feet")
  42389. },
  42390. {
  42391. name: "Micro",
  42392. height: math.unit(1.5, "megameters")
  42393. },
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(440, "megameters"),
  42397. default: true
  42398. },
  42399. {
  42400. name: "Macro",
  42401. height: math.unit(2.5, "gigameters")
  42402. },
  42403. {
  42404. name: "Gigamacro",
  42405. height: math.unit(2, "galaxies")
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42411. {
  42412. side: {
  42413. height: math.unit(32, "feet"),
  42414. weight: math.unit(250000, "lb"),
  42415. name: "Side",
  42416. image: {
  42417. source: "./media/characters/silverwing/side.svg",
  42418. extra: 1100/1019,
  42419. bottom: 204/1304
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Normal",
  42426. height: math.unit(32, "feet"),
  42427. default: true
  42428. },
  42429. ]
  42430. ))
  42431. characterMakers.push(() => makeCharacter(
  42432. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42433. {
  42434. front: {
  42435. height: math.unit(6 + 6/12, "feet"),
  42436. weight: math.unit(350, "lb"),
  42437. name: "Front",
  42438. image: {
  42439. source: "./media/characters/tristan-hawthorne/front.svg",
  42440. extra: 1159/1124,
  42441. bottom: 37/1196
  42442. },
  42443. form: "labrador",
  42444. default: true
  42445. },
  42446. skunkFront: {
  42447. height: math.unit(4 + 6/12, "feet"),
  42448. weight: math.unit(120, "lb"),
  42449. name: "Front",
  42450. image: {
  42451. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42452. extra: 1609/1551,
  42453. bottom: 169/1778
  42454. },
  42455. form: "skunk",
  42456. default: true
  42457. },
  42458. },
  42459. [
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(6 + 6/12, "feet"),
  42463. form: "labrador",
  42464. default: true
  42465. },
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(4 + 6/12, "feet"),
  42469. form: "skunk",
  42470. default: true
  42471. },
  42472. ],
  42473. {
  42474. "labrador": {
  42475. name: "Labrador",
  42476. default: true
  42477. },
  42478. "skunk": {
  42479. name: "Skunk"
  42480. }
  42481. }
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(5 + 11/12, "feet"),
  42488. weight: math.unit(190, "lb"),
  42489. name: "Front",
  42490. image: {
  42491. source: "./media/characters/mizu/front.svg",
  42492. extra: 1988/1788,
  42493. bottom: 14/2002
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(5 + 11/12, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(1.7, "feet"),
  42510. weight: math.unit(50, "lb"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/dechroma/front.svg",
  42514. extra: 1095/859,
  42515. bottom: 64/1159
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Normal",
  42522. height: math.unit(1.7, "feet"),
  42523. default: true
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42529. {
  42530. side: {
  42531. height: math.unit(30, "feet"),
  42532. name: "Side",
  42533. image: {
  42534. source: "./media/characters/veluren-thanazel/side.svg",
  42535. extra: 1611/633,
  42536. bottom: 118/1729
  42537. }
  42538. },
  42539. front: {
  42540. height: math.unit(30, "feet"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/veluren-thanazel/front.svg",
  42544. extra: 1486/636,
  42545. bottom: 238/1724
  42546. }
  42547. },
  42548. head: {
  42549. height: math.unit(21.4, "feet"),
  42550. name: "Head",
  42551. image: {
  42552. source: "./media/characters/veluren-thanazel/head.svg"
  42553. }
  42554. },
  42555. genitals: {
  42556. height: math.unit(19.4, "feet"),
  42557. name: "Genitals",
  42558. image: {
  42559. source: "./media/characters/veluren-thanazel/genitals.svg"
  42560. }
  42561. },
  42562. },
  42563. [
  42564. {
  42565. name: "Social",
  42566. height: math.unit(6, "feet")
  42567. },
  42568. {
  42569. name: "Play",
  42570. height: math.unit(12, "feet")
  42571. },
  42572. {
  42573. name: "True",
  42574. height: math.unit(30, "feet"),
  42575. default: true
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(7 + 6/12, "feet"),
  42584. weight: math.unit(500, "kg"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/arcturas/front.svg",
  42588. extra: 1700/1500,
  42589. bottom: 145/1845
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Normal",
  42596. height: math.unit(7 + 6/12, "feet"),
  42597. default: true
  42598. },
  42599. ]
  42600. ))
  42601. characterMakers.push(() => makeCharacter(
  42602. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42603. {
  42604. side: {
  42605. height: math.unit(6, "feet"),
  42606. weight: math.unit(2, "tons"),
  42607. name: "Side",
  42608. image: {
  42609. source: "./media/characters/vitaen/side.svg",
  42610. extra: 1157/617,
  42611. bottom: 122/1279
  42612. }
  42613. },
  42614. },
  42615. [
  42616. {
  42617. name: "Normal",
  42618. height: math.unit(6, "feet"),
  42619. default: true
  42620. },
  42621. ]
  42622. ))
  42623. characterMakers.push(() => makeCharacter(
  42624. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42625. {
  42626. front: {
  42627. height: math.unit(19, "feet"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/fia-dreamweaver/front.svg",
  42631. extra: 1630/1504,
  42632. bottom: 25/1655
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Normal",
  42639. height: math.unit(19, "feet"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42646. {
  42647. front: {
  42648. height: math.unit(5 + 4/12, "feet"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/artan/front.svg",
  42652. extra: 1618/1535,
  42653. bottom: 46/1664
  42654. }
  42655. },
  42656. back: {
  42657. height: math.unit(5 + 4/12, "feet"),
  42658. name: "Back",
  42659. image: {
  42660. source: "./media/characters/artan/back.svg",
  42661. extra: 1618/1543,
  42662. bottom: 31/1649
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(5 + 4/12, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42676. {
  42677. side: {
  42678. height: math.unit(182, "cm"),
  42679. weight: math.unit(1000, "lb"),
  42680. name: "Side",
  42681. image: {
  42682. source: "./media/characters/silver-dragon/side.svg",
  42683. extra: 710/287,
  42684. bottom: 88/798
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(182, "cm"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42698. {
  42699. side: {
  42700. height: math.unit(6 + 6/12, "feet"),
  42701. weight: math.unit(1.5, "tons"),
  42702. name: "Side",
  42703. image: {
  42704. source: "./media/characters/zephyr/side.svg",
  42705. extra: 1433/586,
  42706. bottom: 109/1542
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(6 + 6/12, "feet"),
  42714. default: true
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42720. {
  42721. side: {
  42722. height: math.unit(1, "feet"),
  42723. name: "Side",
  42724. image: {
  42725. source: "./media/characters/vixye/side.svg",
  42726. extra: 632/541,
  42727. bottom: 0/632
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Normal",
  42734. height: math.unit(1, "feet"),
  42735. default: true
  42736. },
  42737. {
  42738. name: "True",
  42739. height: math.unit(1e15, "multiverses")
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(8 + 2/12, "feet"),
  42748. weight: math.unit(650, "lb"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42752. extra: 1174/1137,
  42753. bottom: 82/1256
  42754. }
  42755. },
  42756. back: {
  42757. height: math.unit(8 + 2/12, "feet"),
  42758. weight: math.unit(650, "lb"),
  42759. name: "Back",
  42760. image: {
  42761. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42762. extra: 1204/1157,
  42763. bottom: 46/1250
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Wildform",
  42770. height: math.unit(8 + 2/12, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(18, "feet"),
  42780. name: "Front",
  42781. image: {
  42782. source: "./media/characters/cyphin/front.svg",
  42783. extra: 970/886,
  42784. bottom: 42/1012
  42785. }
  42786. },
  42787. back: {
  42788. height: math.unit(18, "feet"),
  42789. name: "Back",
  42790. image: {
  42791. source: "./media/characters/cyphin/back.svg",
  42792. extra: 1009/894,
  42793. bottom: 24/1033
  42794. }
  42795. },
  42796. head: {
  42797. height: math.unit(5.05, "feet"),
  42798. name: "Head",
  42799. image: {
  42800. source: "./media/characters/cyphin/head.svg"
  42801. }
  42802. },
  42803. tailbud: {
  42804. height: math.unit(5, "feet"),
  42805. name: "Tailbud",
  42806. image: {
  42807. source: "./media/characters/cyphin/tailbud.svg"
  42808. }
  42809. },
  42810. },
  42811. [
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42816. {
  42817. side: {
  42818. height: math.unit(10, "feet"),
  42819. weight: math.unit(6, "tons"),
  42820. name: "Side",
  42821. image: {
  42822. source: "./media/characters/raijin/side.svg",
  42823. extra: 1529/613,
  42824. bottom: 337/1866
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(10, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42838. {
  42839. side: {
  42840. height: math.unit(9, "feet"),
  42841. name: "Side",
  42842. image: {
  42843. source: "./media/characters/nilghais/side.svg",
  42844. extra: 1047/744,
  42845. bottom: 91/1138
  42846. }
  42847. },
  42848. head: {
  42849. height: math.unit(3.14, "feet"),
  42850. name: "Head",
  42851. image: {
  42852. source: "./media/characters/nilghais/head.svg"
  42853. }
  42854. },
  42855. mouth: {
  42856. height: math.unit(4.6, "feet"),
  42857. name: "Mouth",
  42858. image: {
  42859. source: "./media/characters/nilghais/mouth.svg"
  42860. }
  42861. },
  42862. wings: {
  42863. height: math.unit(24, "feet"),
  42864. name: "Wings",
  42865. image: {
  42866. source: "./media/characters/nilghais/wings.svg"
  42867. }
  42868. },
  42869. ass: {
  42870. height: math.unit(6.12, "feet"),
  42871. name: "Ass",
  42872. image: {
  42873. source: "./media/characters/nilghais/ass.svg"
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Normal",
  42880. height: math.unit(9, "feet"),
  42881. default: true
  42882. },
  42883. ]
  42884. ))
  42885. characterMakers.push(() => makeCharacter(
  42886. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42887. {
  42888. regular: {
  42889. height: math.unit(16 + 2/12, "feet"),
  42890. weight: math.unit(2300, "lb"),
  42891. name: "Regular",
  42892. image: {
  42893. source: "./media/characters/zolgar/regular.svg",
  42894. extra: 1246/1004,
  42895. bottom: 124/1370
  42896. }
  42897. },
  42898. boxers: {
  42899. height: math.unit(16 + 2/12, "feet"),
  42900. weight: math.unit(2300, "lb"),
  42901. name: "Boxers",
  42902. image: {
  42903. source: "./media/characters/zolgar/boxers.svg",
  42904. extra: 1246/1004,
  42905. bottom: 124/1370
  42906. }
  42907. },
  42908. armored: {
  42909. height: math.unit(16 + 2/12, "feet"),
  42910. weight: math.unit(2300, "lb"),
  42911. name: "Armored",
  42912. image: {
  42913. source: "./media/characters/zolgar/armored.svg",
  42914. extra: 1246/1004,
  42915. bottom: 124/1370
  42916. }
  42917. },
  42918. goth: {
  42919. height: math.unit(16 + 2/12, "feet"),
  42920. weight: math.unit(2300, "lb"),
  42921. name: "Goth",
  42922. image: {
  42923. source: "./media/characters/zolgar/goth.svg",
  42924. extra: 1246/1004,
  42925. bottom: 124/1370
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Shrunken Down",
  42932. height: math.unit(9 + 2/12, "feet")
  42933. },
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(16 + 2/12, "feet"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(6, "feet"),
  42946. weight: math.unit(168, "lb"),
  42947. name: "Front",
  42948. image: {
  42949. source: "./media/characters/luca/front.svg",
  42950. extra: 841/667,
  42951. bottom: 102/943
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "Normal",
  42958. height: math.unit(6, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42965. {
  42966. side: {
  42967. height: math.unit(7 + 3/12, "feet"),
  42968. weight: math.unit(312, "lb"),
  42969. name: "Side",
  42970. image: {
  42971. source: "./media/characters/zezo/side.svg",
  42972. extra: 1192/1067,
  42973. bottom: 63/1255
  42974. }
  42975. },
  42976. },
  42977. [
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(7 + 3/12, "feet"),
  42981. default: true
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42987. {
  42988. front: {
  42989. height: math.unit(5 + 5/12, "feet"),
  42990. weight: math.unit(170, "lb"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/mayso/front.svg",
  42994. extra: 1215/1108,
  42995. bottom: 16/1231
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(5 + 5/12, "feet"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(4 + 3/12, "feet"),
  43012. weight: math.unit(80, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/hess/front.svg",
  43016. extra: 1200/1123,
  43017. bottom: 16/1216
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(4 + 3/12, "feet"),
  43025. default: true
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43031. {
  43032. front: {
  43033. height: math.unit(1.9, "meters"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/ashgar/front.svg",
  43037. extra: 1177/1146,
  43038. bottom: 99/1276
  43039. }
  43040. },
  43041. back: {
  43042. height: math.unit(1.9, "meters"),
  43043. name: "Back",
  43044. image: {
  43045. source: "./media/characters/ashgar/back.svg",
  43046. extra: 1201/1183,
  43047. bottom: 53/1254
  43048. }
  43049. },
  43050. feral: {
  43051. height: math.unit(1.4, "meters"),
  43052. name: "Feral",
  43053. image: {
  43054. source: "./media/characters/ashgar/feral.svg",
  43055. extra: 370/345,
  43056. bottom: 45/415
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Normal",
  43063. height: math.unit(1.9, "meters"),
  43064. default: true
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43070. {
  43071. regular: {
  43072. height: math.unit(6, "feet"),
  43073. weight: math.unit(220, "lb"),
  43074. name: "Regular",
  43075. image: {
  43076. source: "./media/characters/phillip/regular.svg",
  43077. extra: 1373/1277,
  43078. bottom: 75/1448
  43079. }
  43080. },
  43081. dressed: {
  43082. height: math.unit(6, "feet"),
  43083. weight: math.unit(220, "lb"),
  43084. name: "Dressed",
  43085. image: {
  43086. source: "./media/characters/phillip/dressed.svg",
  43087. extra: 1373/1277,
  43088. bottom: 75/1448
  43089. }
  43090. },
  43091. paw: {
  43092. height: math.unit(1.44, "feet"),
  43093. name: "Paw",
  43094. image: {
  43095. source: "./media/characters/phillip/paw.svg"
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(6, "feet"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43109. {
  43110. side: {
  43111. height: math.unit(42, "feet"),
  43112. name: "Side",
  43113. image: {
  43114. source: "./media/characters/uvula/side.svg",
  43115. extra: 683/586,
  43116. bottom: 60/743
  43117. }
  43118. },
  43119. front: {
  43120. height: math.unit(42, "feet"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/uvula/front.svg",
  43124. extra: 705/613,
  43125. bottom: 54/759
  43126. }
  43127. },
  43128. maw: {
  43129. height: math.unit(23.5, "feet"),
  43130. name: "Maw",
  43131. image: {
  43132. source: "./media/characters/uvula/maw.svg"
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Original Size",
  43139. height: math.unit(14, "inches")
  43140. },
  43141. {
  43142. name: "Human Size",
  43143. height: math.unit(6, "feet")
  43144. },
  43145. {
  43146. name: "Big",
  43147. height: math.unit(42, "feet"),
  43148. default: true
  43149. },
  43150. {
  43151. name: "Bigger",
  43152. height: math.unit(100, "feet")
  43153. },
  43154. ]
  43155. ))
  43156. characterMakers.push(() => makeCharacter(
  43157. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43158. {
  43159. front: {
  43160. height: math.unit(5 + 11/12, "feet"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/lannah/front.svg",
  43164. extra: 1208/1113,
  43165. bottom: 97/1305
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(5 + 11/12, "feet"),
  43173. default: true
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43179. {
  43180. front: {
  43181. height: math.unit(6 + 3/12, "feet"),
  43182. weight: math.unit(3.5, "tons"),
  43183. name: "Front",
  43184. image: {
  43185. source: "./media/characters/emberflame/front.svg",
  43186. extra: 1198/672,
  43187. bottom: 82/1280
  43188. }
  43189. },
  43190. side: {
  43191. height: math.unit(6 + 3/12, "feet"),
  43192. weight: math.unit(3.5, "tons"),
  43193. name: "Side",
  43194. image: {
  43195. source: "./media/characters/emberflame/side.svg",
  43196. extra: 938/527,
  43197. bottom: 56/994
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Normal",
  43204. height: math.unit(6 + 3/12, "feet"),
  43205. default: true
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43211. {
  43212. side: {
  43213. height: math.unit(17.5, "feet"),
  43214. weight: math.unit(35, "tons"),
  43215. name: "Side",
  43216. image: {
  43217. source: "./media/characters/sophie-ambrose/side.svg",
  43218. extra: 1573/1242,
  43219. bottom: 71/1644
  43220. }
  43221. },
  43222. maw: {
  43223. height: math.unit(7.4, "feet"),
  43224. name: "Maw",
  43225. image: {
  43226. source: "./media/characters/sophie-ambrose/maw.svg"
  43227. }
  43228. },
  43229. },
  43230. [
  43231. {
  43232. name: "Normal",
  43233. height: math.unit(17.5, "feet"),
  43234. default: true
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43240. {
  43241. front: {
  43242. height: math.unit(280, "feet"),
  43243. weight: math.unit(550, "tons"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/king-mugi/front.svg",
  43247. extra: 1102/947,
  43248. bottom: 104/1206
  43249. }
  43250. },
  43251. },
  43252. [
  43253. {
  43254. name: "King Mugi",
  43255. height: math.unit(280, "feet"),
  43256. default: true
  43257. },
  43258. ]
  43259. ))
  43260. characterMakers.push(() => makeCharacter(
  43261. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43262. {
  43263. front: {
  43264. height: math.unit(64, "meters"),
  43265. name: "Front",
  43266. image: {
  43267. source: "./media/characters/nova-fox/front.svg",
  43268. extra: 1310/1246,
  43269. bottom: 65/1375
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Macro",
  43276. height: math.unit(64, "meters"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(6 + 3/12, "feet"),
  43286. weight: math.unit(170, "lb"),
  43287. name: "Front",
  43288. image: {
  43289. source: "./media/characters/sam-bat/front.svg",
  43290. extra: 1601/1411,
  43291. bottom: 125/1726
  43292. }
  43293. },
  43294. back: {
  43295. height: math.unit(6 + 3/12, "feet"),
  43296. weight: math.unit(170, "lb"),
  43297. name: "Back",
  43298. image: {
  43299. source: "./media/characters/sam-bat/back.svg",
  43300. extra: 1577/1405,
  43301. bottom: 58/1635
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Normal",
  43308. height: math.unit(6 + 3/12, "feet"),
  43309. default: true
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43315. {
  43316. front: {
  43317. height: math.unit(59, "feet"),
  43318. weight: math.unit(40000, "lb"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/inari/front.svg",
  43322. extra: 1884/1350,
  43323. bottom: 95/1979
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Gigantamax",
  43330. height: math.unit(59, "feet"),
  43331. default: true
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43337. {
  43338. front: {
  43339. height: math.unit(5 + 8/12, "feet"),
  43340. name: "Front",
  43341. image: {
  43342. source: "./media/characters/elizabeth/front.svg",
  43343. extra: 1395/1298,
  43344. bottom: 54/1449
  43345. }
  43346. },
  43347. mouth: {
  43348. height: math.unit(1.97, "feet"),
  43349. name: "Mouth",
  43350. image: {
  43351. source: "./media/characters/elizabeth/mouth.svg"
  43352. }
  43353. },
  43354. foot: {
  43355. height: math.unit(1.17, "feet"),
  43356. name: "Foot",
  43357. image: {
  43358. source: "./media/characters/elizabeth/foot.svg"
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(5 + 8/12, "feet"),
  43366. default: true
  43367. },
  43368. {
  43369. name: "Minimacro",
  43370. height: math.unit(18, "feet")
  43371. },
  43372. {
  43373. name: "Macro",
  43374. height: math.unit(180, "feet")
  43375. },
  43376. ]
  43377. ))
  43378. characterMakers.push(() => makeCharacter(
  43379. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43380. {
  43381. front: {
  43382. height: math.unit(5 + 2/12, "feet"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/october-gossamer/front.svg",
  43386. extra: 505/454,
  43387. bottom: 7/512
  43388. }
  43389. },
  43390. back: {
  43391. height: math.unit(5 + 2/12, "feet"),
  43392. name: "Back",
  43393. image: {
  43394. source: "./media/characters/october-gossamer/back.svg",
  43395. extra: 501/454,
  43396. bottom: 11/512
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "Normal",
  43403. height: math.unit(5 + 2/12, "feet"),
  43404. default: true
  43405. },
  43406. ]
  43407. ))
  43408. characterMakers.push(() => makeCharacter(
  43409. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43410. {
  43411. front: {
  43412. height: math.unit(5, "feet"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/epiglottis/front.svg",
  43416. extra: 923/849,
  43417. bottom: 17/940
  43418. }
  43419. },
  43420. },
  43421. [
  43422. {
  43423. name: "Original Size",
  43424. height: math.unit(10, "inches")
  43425. },
  43426. {
  43427. name: "Human Size",
  43428. height: math.unit(5, "feet"),
  43429. default: true
  43430. },
  43431. {
  43432. name: "Big",
  43433. height: math.unit(25, "feet")
  43434. },
  43435. {
  43436. name: "Bigger",
  43437. height: math.unit(50, "feet")
  43438. },
  43439. {
  43440. name: "oh lawd",
  43441. height: math.unit(75, "feet")
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(2 + 4/12, "feet"),
  43450. weight: math.unit(60, "lb"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/lerm/front.svg",
  43454. extra: 796/790,
  43455. bottom: 79/875
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Normal",
  43462. height: math.unit(2 + 4/12, "feet"),
  43463. default: true
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43469. {
  43470. front: {
  43471. height: math.unit(5.5, "feet"),
  43472. weight: math.unit(130, "lb"),
  43473. name: "Front",
  43474. image: {
  43475. source: "./media/characters/xena-nebadon/front.svg",
  43476. extra: 1828/1730,
  43477. bottom: 79/1907
  43478. }
  43479. },
  43480. },
  43481. [
  43482. {
  43483. name: "Tiny Puppy",
  43484. height: math.unit(3, "inches")
  43485. },
  43486. {
  43487. name: "Normal",
  43488. height: math.unit(5.5, "feet"),
  43489. default: true
  43490. },
  43491. {
  43492. name: "Lotta Lady",
  43493. height: math.unit(12, "feet")
  43494. },
  43495. {
  43496. name: "Pretty Big",
  43497. height: math.unit(100, "feet")
  43498. },
  43499. {
  43500. name: "Big",
  43501. height: math.unit(500, "feet")
  43502. },
  43503. {
  43504. name: "Skyscraper Toys",
  43505. height: math.unit(2500, "feet")
  43506. },
  43507. {
  43508. name: "Plane Catcher",
  43509. height: math.unit(8, "miles")
  43510. },
  43511. {
  43512. name: "Planet Toys",
  43513. height: math.unit(15, "earths")
  43514. },
  43515. {
  43516. name: "Stardust",
  43517. height: math.unit(0.25, "galaxies")
  43518. },
  43519. {
  43520. name: "Snacks",
  43521. height: math.unit(70, "universes")
  43522. },
  43523. ]
  43524. ))
  43525. characterMakers.push(() => makeCharacter(
  43526. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43527. {
  43528. front: {
  43529. height: math.unit(1.6, "meters"),
  43530. weight: math.unit(60, "kg"),
  43531. name: "Front",
  43532. image: {
  43533. source: "./media/characters/bounty/front.svg",
  43534. extra: 1426/1308,
  43535. bottom: 15/1441
  43536. }
  43537. },
  43538. back: {
  43539. height: math.unit(1.6, "meters"),
  43540. weight: math.unit(60, "kg"),
  43541. name: "Back",
  43542. image: {
  43543. source: "./media/characters/bounty/back.svg",
  43544. extra: 1417/1307,
  43545. bottom: 8/1425
  43546. }
  43547. },
  43548. },
  43549. [
  43550. {
  43551. name: "Normal",
  43552. height: math.unit(1.6, "meters"),
  43553. default: true
  43554. },
  43555. {
  43556. name: "Macro",
  43557. height: math.unit(300, "meters")
  43558. },
  43559. ]
  43560. ))
  43561. characterMakers.push(() => makeCharacter(
  43562. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43563. {
  43564. front: {
  43565. height: math.unit(2 + 8/12, "feet"),
  43566. weight: math.unit(15, "lb"),
  43567. name: "Front",
  43568. image: {
  43569. source: "./media/characters/mochi/front.svg",
  43570. extra: 1022/852,
  43571. bottom: 435/1457
  43572. }
  43573. },
  43574. back: {
  43575. height: math.unit(2 + 8/12, "feet"),
  43576. weight: math.unit(15, "lb"),
  43577. name: "Back",
  43578. image: {
  43579. source: "./media/characters/mochi/back.svg",
  43580. extra: 1335/1119,
  43581. bottom: 39/1374
  43582. }
  43583. },
  43584. bird: {
  43585. height: math.unit(2 + 8/12, "feet"),
  43586. weight: math.unit(15, "lb"),
  43587. name: "Bird",
  43588. image: {
  43589. source: "./media/characters/mochi/bird.svg",
  43590. extra: 1251/1113,
  43591. bottom: 178/1429
  43592. }
  43593. },
  43594. kaiju: {
  43595. height: math.unit(154, "feet"),
  43596. weight: math.unit(1e7, "lb"),
  43597. name: "Kaiju",
  43598. image: {
  43599. source: "./media/characters/mochi/kaiju.svg",
  43600. extra: 460/324,
  43601. bottom: 40/500
  43602. }
  43603. },
  43604. head: {
  43605. height: math.unit(1.21, "feet"),
  43606. name: "Head",
  43607. image: {
  43608. source: "./media/characters/mochi/head.svg"
  43609. }
  43610. },
  43611. alternateTail: {
  43612. height: math.unit(2 + 8/12, "feet"),
  43613. weight: math.unit(45, "lb"),
  43614. name: "Alternate Tail",
  43615. image: {
  43616. source: "./media/characters/mochi/alternate-tail.svg",
  43617. extra: 139/76,
  43618. bottom: 45/184
  43619. }
  43620. },
  43621. },
  43622. [
  43623. {
  43624. name: "Micro",
  43625. height: math.unit(2, "inches")
  43626. },
  43627. {
  43628. name: "Normal",
  43629. height: math.unit(2 + 8/12, "feet"),
  43630. default: true
  43631. },
  43632. {
  43633. name: "Macro",
  43634. height: math.unit(106, "feet")
  43635. },
  43636. ]
  43637. ))
  43638. characterMakers.push(() => makeCharacter(
  43639. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43640. {
  43641. front: {
  43642. height: math.unit(5.67, "feet"),
  43643. weight: math.unit(135, "lb"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/sarel/front.svg",
  43647. extra: 865/788,
  43648. bottom: 97/962
  43649. }
  43650. },
  43651. back: {
  43652. height: math.unit(5.67, "feet"),
  43653. weight: math.unit(135, "lb"),
  43654. name: "Back",
  43655. image: {
  43656. source: "./media/characters/sarel/back.svg",
  43657. extra: 857/777,
  43658. bottom: 32/889
  43659. }
  43660. },
  43661. chozoan: {
  43662. height: math.unit(5.67, "feet"),
  43663. weight: math.unit(135, "lb"),
  43664. name: "Chozoan",
  43665. image: {
  43666. source: "./media/characters/sarel/chozoan.svg",
  43667. extra: 865/788,
  43668. bottom: 97/962
  43669. }
  43670. },
  43671. current: {
  43672. height: math.unit(5.67, "feet"),
  43673. weight: math.unit(135, "lb"),
  43674. name: "Current",
  43675. image: {
  43676. source: "./media/characters/sarel/current.svg",
  43677. extra: 865/788,
  43678. bottom: 97/962
  43679. }
  43680. },
  43681. head: {
  43682. height: math.unit(1.77, "feet"),
  43683. name: "Head",
  43684. image: {
  43685. source: "./media/characters/sarel/head.svg"
  43686. }
  43687. },
  43688. claws: {
  43689. height: math.unit(1.8, "feet"),
  43690. name: "Claws",
  43691. image: {
  43692. source: "./media/characters/sarel/claws.svg"
  43693. }
  43694. },
  43695. clawsAlt: {
  43696. height: math.unit(1.8, "feet"),
  43697. name: "Claws-alt",
  43698. image: {
  43699. source: "./media/characters/sarel/claws-alt.svg"
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Normal",
  43706. height: math.unit(5.67, "feet"),
  43707. default: true
  43708. },
  43709. ]
  43710. ))
  43711. characterMakers.push(() => makeCharacter(
  43712. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43713. {
  43714. front: {
  43715. height: math.unit(5500, "feet"),
  43716. name: "Front",
  43717. image: {
  43718. source: "./media/characters/alyonia/front.svg",
  43719. extra: 1200/1135,
  43720. bottom: 29/1229
  43721. }
  43722. },
  43723. back: {
  43724. height: math.unit(5500, "feet"),
  43725. name: "Back",
  43726. image: {
  43727. source: "./media/characters/alyonia/back.svg",
  43728. extra: 1205/1138,
  43729. bottom: 10/1215
  43730. }
  43731. },
  43732. },
  43733. [
  43734. {
  43735. name: "Small",
  43736. height: math.unit(10, "feet")
  43737. },
  43738. {
  43739. name: "Macro",
  43740. height: math.unit(500, "feet")
  43741. },
  43742. {
  43743. name: "Mega Macro",
  43744. height: math.unit(5500, "feet"),
  43745. default: true
  43746. },
  43747. {
  43748. name: "Mega Macro+",
  43749. height: math.unit(500000, "feet")
  43750. },
  43751. {
  43752. name: "Giga Macro",
  43753. height: math.unit(3000, "miles")
  43754. },
  43755. {
  43756. name: "Tera Macro",
  43757. height: math.unit(2.8e6, "miles")
  43758. },
  43759. {
  43760. name: "Galactic",
  43761. height: math.unit(120000, "lightyears")
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43767. {
  43768. werewolf: {
  43769. height: math.unit(8, "feet"),
  43770. weight: math.unit(425, "lb"),
  43771. name: "Werewolf",
  43772. image: {
  43773. source: "./media/characters/autumn/werewolf.svg",
  43774. extra: 2154/2031,
  43775. bottom: 160/2314
  43776. }
  43777. },
  43778. human: {
  43779. height: math.unit(5 + 8/12, "feet"),
  43780. weight: math.unit(150, "lb"),
  43781. name: "Human",
  43782. image: {
  43783. source: "./media/characters/autumn/human.svg",
  43784. extra: 1200/1149,
  43785. bottom: 30/1230
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Normal",
  43792. height: math.unit(8, "feet"),
  43793. default: true
  43794. },
  43795. ]
  43796. ))
  43797. characterMakers.push(() => makeCharacter(
  43798. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43799. {
  43800. front: {
  43801. height: math.unit(8 + 5/12, "feet"),
  43802. weight: math.unit(825, "lb"),
  43803. name: "Front",
  43804. image: {
  43805. source: "./media/characters/cobalt-charizard/front.svg",
  43806. extra: 1268/1155,
  43807. bottom: 122/1390
  43808. }
  43809. },
  43810. side: {
  43811. height: math.unit(8 + 5/12, "feet"),
  43812. weight: math.unit(825, "lb"),
  43813. name: "Side",
  43814. image: {
  43815. source: "./media/characters/cobalt-charizard/side.svg",
  43816. extra: 1348/1257,
  43817. bottom: 58/1406
  43818. }
  43819. },
  43820. gMax: {
  43821. height: math.unit(134 + 11/12, "feet"),
  43822. name: "G-Max",
  43823. image: {
  43824. source: "./media/characters/cobalt-charizard/g-max.svg",
  43825. extra: 1835/1541,
  43826. bottom: 151/1986
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(8 + 5/12, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(6 + 3/12, "feet"),
  43843. weight: math.unit(210, "lb"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/stella/front.svg",
  43847. extra: 3549/3335,
  43848. bottom: 51/3600
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(6 + 3/12, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(5, "feet"),
  43865. weight: math.unit(90, "lb"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/riley-bishop/front.svg",
  43869. extra: 1450/1428,
  43870. bottom: 152/1602
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Normal",
  43877. height: math.unit(5, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43884. {
  43885. side: {
  43886. height: math.unit(8 + 2/12, "feet"),
  43887. weight: math.unit(500, "kg"),
  43888. name: "Side",
  43889. image: {
  43890. source: "./media/characters/theo-arcanine/side.svg",
  43891. extra: 1342/1074,
  43892. bottom: 111/1453
  43893. }
  43894. },
  43895. },
  43896. [
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(8 + 2/12, "feet"),
  43900. default: true
  43901. },
  43902. ]
  43903. ))
  43904. characterMakers.push(() => makeCharacter(
  43905. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43906. {
  43907. front: {
  43908. height: math.unit(4, "feet"),
  43909. name: "Front",
  43910. image: {
  43911. source: "./media/characters/kali/front.svg",
  43912. extra: 1921/1357,
  43913. bottom: 70/1991
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(4, "feet"),
  43921. default: true
  43922. },
  43923. {
  43924. name: "Macro",
  43925. height: math.unit(32, "meters")
  43926. },
  43927. {
  43928. name: "Macro+",
  43929. height: math.unit(150, "meters")
  43930. },
  43931. {
  43932. name: "Megamacro",
  43933. height: math.unit(7500, "meters")
  43934. },
  43935. {
  43936. name: "Megamacro+",
  43937. height: math.unit(80, "kilometers")
  43938. },
  43939. ]
  43940. ))
  43941. characterMakers.push(() => makeCharacter(
  43942. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43943. {
  43944. side: {
  43945. height: math.unit(5 + 11/12, "feet"),
  43946. weight: math.unit(236, "lb"),
  43947. name: "Side",
  43948. image: {
  43949. source: "./media/characters/gapp/side.svg",
  43950. extra: 775/340,
  43951. bottom: 58/833
  43952. }
  43953. },
  43954. mouth: {
  43955. height: math.unit(2.98, "feet"),
  43956. name: "Mouth",
  43957. image: {
  43958. source: "./media/characters/gapp/mouth.svg"
  43959. }
  43960. },
  43961. },
  43962. [
  43963. {
  43964. name: "Normal",
  43965. height: math.unit(5 + 1/12, "feet"),
  43966. default: true
  43967. },
  43968. ]
  43969. ))
  43970. characterMakers.push(() => makeCharacter(
  43971. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43972. {
  43973. front: {
  43974. height: math.unit(6, "feet"),
  43975. name: "Front",
  43976. image: {
  43977. source: "./media/characters/persephone/front.svg",
  43978. extra: 1895/1717,
  43979. bottom: 96/1991
  43980. }
  43981. },
  43982. back: {
  43983. height: math.unit(6, "feet"),
  43984. name: "Back",
  43985. image: {
  43986. source: "./media/characters/persephone/back.svg",
  43987. extra: 1868/1679,
  43988. bottom: 26/1894
  43989. }
  43990. },
  43991. casual: {
  43992. height: math.unit(6, "feet"),
  43993. name: "Casual",
  43994. image: {
  43995. source: "./media/characters/persephone/casual.svg",
  43996. extra: 1713/1541,
  43997. bottom: 76/1789
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Human Size",
  44004. height: math.unit(6, "feet")
  44005. },
  44006. {
  44007. name: "Big Steppy",
  44008. height: math.unit(600, "meters"),
  44009. default: true
  44010. },
  44011. {
  44012. name: "Galaxy Brain",
  44013. height: math.unit(1, "zettameter")
  44014. },
  44015. ]
  44016. ))
  44017. characterMakers.push(() => makeCharacter(
  44018. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44019. {
  44020. front: {
  44021. height: math.unit(1.85, "meters"),
  44022. name: "Front",
  44023. image: {
  44024. source: "./media/characters/riley-foxthing/front.svg",
  44025. extra: 1495/1354,
  44026. bottom: 122/1617
  44027. }
  44028. },
  44029. frontAlt: {
  44030. height: math.unit(1.85, "meters"),
  44031. name: "Front (Alt)",
  44032. image: {
  44033. source: "./media/characters/riley-foxthing/front-alt.svg",
  44034. extra: 1572/1389,
  44035. bottom: 116/1688
  44036. }
  44037. },
  44038. },
  44039. [
  44040. {
  44041. name: "Normal Sized",
  44042. height: math.unit(1.85, "meters"),
  44043. default: true
  44044. },
  44045. {
  44046. name: "Quite Sizable",
  44047. height: math.unit(5, "meters")
  44048. },
  44049. {
  44050. name: "Rather Large",
  44051. height: math.unit(20, "meters")
  44052. },
  44053. {
  44054. name: "Macro",
  44055. height: math.unit(450, "meters")
  44056. },
  44057. {
  44058. name: "Giga",
  44059. height: math.unit(5, "km")
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(6, "feet"),
  44068. weight: math.unit(200, "lb"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/blizzard/front.svg",
  44072. extra: 1136/990,
  44073. bottom: 136/1272
  44074. }
  44075. },
  44076. back: {
  44077. height: math.unit(6, "feet"),
  44078. weight: math.unit(200, "lb"),
  44079. name: "Back",
  44080. image: {
  44081. source: "./media/characters/blizzard/back.svg",
  44082. extra: 1175/1034,
  44083. bottom: 97/1272
  44084. }
  44085. },
  44086. sitting: {
  44087. height: math.unit(3.725, "feet"),
  44088. weight: math.unit(200, "lb"),
  44089. name: "Sitting",
  44090. image: {
  44091. source: "./media/characters/blizzard/sitting.svg",
  44092. extra: 581/485,
  44093. bottom: 90/671
  44094. }
  44095. },
  44096. frontWizard: {
  44097. height: math.unit(7.9, "feet"),
  44098. weight: math.unit(200, "lb"),
  44099. name: "Front (Wizard)",
  44100. image: {
  44101. source: "./media/characters/blizzard/front-wizard.svg"
  44102. }
  44103. },
  44104. backWizard: {
  44105. height: math.unit(7.9, "feet"),
  44106. weight: math.unit(200, "lb"),
  44107. name: "Back (Wizard)",
  44108. image: {
  44109. source: "./media/characters/blizzard/back-wizard.svg"
  44110. }
  44111. },
  44112. frontNsfw: {
  44113. height: math.unit(6, "feet"),
  44114. weight: math.unit(200, "lb"),
  44115. name: "Front (NSFW)",
  44116. image: {
  44117. source: "./media/characters/blizzard/front-nsfw.svg",
  44118. extra: 1136/990,
  44119. bottom: 136/1272
  44120. }
  44121. },
  44122. backNsfw: {
  44123. height: math.unit(6, "feet"),
  44124. weight: math.unit(200, "lb"),
  44125. name: "Back (NSFW)",
  44126. image: {
  44127. source: "./media/characters/blizzard/back-nsfw.svg",
  44128. extra: 1175/1034,
  44129. bottom: 97/1272
  44130. }
  44131. },
  44132. sittingNsfw: {
  44133. height: math.unit(3.725, "feet"),
  44134. weight: math.unit(200, "lb"),
  44135. name: "Sitting (NSFW)",
  44136. image: {
  44137. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44138. extra: 581/485,
  44139. bottom: 90/671
  44140. }
  44141. },
  44142. wizardFrontNsfw: {
  44143. height: math.unit(7.9, "feet"),
  44144. weight: math.unit(200, "lb"),
  44145. name: "Wizard (Front, NSFW)",
  44146. image: {
  44147. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44148. }
  44149. },
  44150. },
  44151. [
  44152. {
  44153. name: "Normal",
  44154. height: math.unit(6, "feet"),
  44155. default: true
  44156. },
  44157. ]
  44158. ))
  44159. characterMakers.push(() => makeCharacter(
  44160. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44161. {
  44162. front: {
  44163. height: math.unit(5 + 2/12, "feet"),
  44164. name: "Front",
  44165. image: {
  44166. source: "./media/characters/lumi/front.svg",
  44167. extra: 1328/1268,
  44168. bottom: 103/1431
  44169. }
  44170. },
  44171. back: {
  44172. height: math.unit(5 + 2/12, "feet"),
  44173. name: "Back",
  44174. image: {
  44175. source: "./media/characters/lumi/back.svg",
  44176. extra: 1381/1327,
  44177. bottom: 43/1424
  44178. }
  44179. },
  44180. },
  44181. [
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(5 + 2/12, "feet"),
  44185. default: true
  44186. },
  44187. ]
  44188. ))
  44189. characterMakers.push(() => makeCharacter(
  44190. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44191. {
  44192. front: {
  44193. height: math.unit(5 + 9/12, "feet"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/aliya-cotton/front.svg",
  44197. extra: 577/564,
  44198. bottom: 29/606
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(5 + 9/12, "feet"),
  44206. default: true
  44207. },
  44208. ]
  44209. ))
  44210. characterMakers.push(() => makeCharacter(
  44211. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44212. {
  44213. front: {
  44214. height: math.unit(2.7, "meters"),
  44215. weight: math.unit(25000, "lb"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/noah-luxray/front.svg",
  44219. extra: 1644/825,
  44220. bottom: 339/1983
  44221. }
  44222. },
  44223. side: {
  44224. height: math.unit(2.97, "meters"),
  44225. weight: math.unit(25000, "lb"),
  44226. name: "Side",
  44227. image: {
  44228. source: "./media/characters/noah-luxray/side.svg",
  44229. extra: 1319/650,
  44230. bottom: 163/1482
  44231. }
  44232. },
  44233. dick: {
  44234. height: math.unit(7.4, "feet"),
  44235. weight: math.unit(2500, "lb"),
  44236. name: "Dick",
  44237. image: {
  44238. source: "./media/characters/noah-luxray/dick.svg"
  44239. }
  44240. },
  44241. dickAlt: {
  44242. height: math.unit(10.83, "feet"),
  44243. weight: math.unit(2500, "lb"),
  44244. name: "Dick-alt",
  44245. image: {
  44246. source: "./media/characters/noah-luxray/dick-alt.svg"
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "BIG",
  44253. height: math.unit(2.7, "meters"),
  44254. default: true
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44260. {
  44261. standing: {
  44262. height: math.unit(183, "cm"),
  44263. weight: math.unit(68, "kg"),
  44264. name: "Standing",
  44265. image: {
  44266. source: "./media/characters/arion/standing.svg",
  44267. extra: 1869/1807,
  44268. bottom: 93/1962
  44269. }
  44270. },
  44271. reclining: {
  44272. height: math.unit(70.5, "cm"),
  44273. weight: math.unit(68, "lb"),
  44274. name: "Reclining",
  44275. image: {
  44276. source: "./media/characters/arion/reclining.svg",
  44277. extra: 937/870,
  44278. bottom: 63/1000
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Colossus Size, Low",
  44285. height: math.unit(33, "meters"),
  44286. default: true
  44287. },
  44288. {
  44289. name: "Colossus Size, Mid",
  44290. height: math.unit(52, "meters")
  44291. },
  44292. {
  44293. name: "Colossus Size, High",
  44294. height: math.unit(60, "meters")
  44295. },
  44296. {
  44297. name: "Titan Size, Low",
  44298. height: math.unit(91, "meters"),
  44299. },
  44300. {
  44301. name: "Titan Size, Mid",
  44302. height: math.unit(122, "meters")
  44303. },
  44304. {
  44305. name: "Titan Size, High",
  44306. height: math.unit(162, "meters")
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(53, "meters"),
  44315. name: "Front",
  44316. image: {
  44317. source: "./media/characters/stellar-marbey/front.svg",
  44318. extra: 1913/1805,
  44319. bottom: 92/2005
  44320. }
  44321. },
  44322. back: {
  44323. height: math.unit(53, "meters"),
  44324. name: "Back",
  44325. image: {
  44326. source: "./media/characters/stellar-marbey/back.svg",
  44327. extra: 1960/1851,
  44328. bottom: 28/1988
  44329. }
  44330. },
  44331. mouth: {
  44332. height: math.unit(3.5, "meters"),
  44333. name: "Mouth",
  44334. image: {
  44335. source: "./media/characters/stellar-marbey/mouth.svg"
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Macro",
  44342. height: math.unit(53, "meters"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44349. {
  44350. front: {
  44351. height: math.unit(8 + 1/12, "feet"),
  44352. weight: math.unit(233, "lb"),
  44353. name: "Front",
  44354. image: {
  44355. source: "./media/characters/matsu/front.svg",
  44356. extra: 832/772,
  44357. bottom: 40/872
  44358. }
  44359. },
  44360. back: {
  44361. height: math.unit(8 + 1/12, "feet"),
  44362. weight: math.unit(233, "lb"),
  44363. name: "Back",
  44364. image: {
  44365. source: "./media/characters/matsu/back.svg",
  44366. extra: 839/780,
  44367. bottom: 47/886
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(8 + 1/12, "feet"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(4, "feet"),
  44384. weight: math.unit(148, "lb"),
  44385. name: "Front",
  44386. image: {
  44387. source: "./media/characters/thiz/front.svg",
  44388. extra: 1913/1748,
  44389. bottom: 62/1975
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Normal",
  44396. height: math.unit(4, "feet"),
  44397. default: true
  44398. },
  44399. ]
  44400. ))
  44401. characterMakers.push(() => makeCharacter(
  44402. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44403. {
  44404. front: {
  44405. height: math.unit(7 + 6/12, "feet"),
  44406. weight: math.unit(267, "lb"),
  44407. name: "Front",
  44408. image: {
  44409. source: "./media/characters/marcel/front.svg",
  44410. extra: 1221/1096,
  44411. bottom: 76/1297
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Normal",
  44418. height: math.unit(7 + 6/12, "feet"),
  44419. default: true
  44420. },
  44421. ]
  44422. ))
  44423. characterMakers.push(() => makeCharacter(
  44424. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44425. {
  44426. side: {
  44427. height: math.unit(42, "meters"),
  44428. name: "Side",
  44429. image: {
  44430. source: "./media/characters/flake/side.svg",
  44431. extra: 1525/1306,
  44432. bottom: 209/1734
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(42, "meters"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44446. {
  44447. dressed: {
  44448. height: math.unit(6 + 4/12, "feet"),
  44449. weight: math.unit(520, "lb"),
  44450. name: "Dressed",
  44451. image: {
  44452. source: "./media/characters/someonne/dressed.svg",
  44453. extra: 1020/1010,
  44454. bottom: 178/1198
  44455. }
  44456. },
  44457. undressed: {
  44458. height: math.unit(6 + 4/12, "feet"),
  44459. weight: math.unit(520, "lb"),
  44460. name: "Undressed",
  44461. image: {
  44462. source: "./media/characters/someonne/undressed.svg",
  44463. extra: 1019/1014,
  44464. bottom: 169/1188
  44465. }
  44466. },
  44467. },
  44468. [
  44469. {
  44470. name: "Normal",
  44471. height: math.unit(6 + 4/12, "feet"),
  44472. default: true
  44473. },
  44474. ]
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44478. {
  44479. front: {
  44480. height: math.unit(3, "feet"),
  44481. weight: math.unit(30, "lb"),
  44482. name: "Front",
  44483. image: {
  44484. source: "./media/characters/till/front.svg",
  44485. extra: 892/823,
  44486. bottom: 55/947
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(3, "feet"),
  44494. default: true
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(9 + 8/12, "feet"),
  44503. weight: math.unit(800, "lb"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/sydney-heki/front.svg",
  44507. extra: 1360/1300,
  44508. bottom: 22/1382
  44509. }
  44510. },
  44511. back: {
  44512. height: math.unit(9 + 8/12, "feet"),
  44513. weight: math.unit(800, "lb"),
  44514. name: "Back",
  44515. image: {
  44516. source: "./media/characters/sydney-heki/back.svg",
  44517. extra: 1356/1293,
  44518. bottom: 12/1368
  44519. }
  44520. },
  44521. frontDressed: {
  44522. height: math.unit(9 + 8/12, "feet"),
  44523. weight: math.unit(800, "lb"),
  44524. name: "Front-dressed",
  44525. image: {
  44526. source: "./media/characters/sydney-heki/front-dressed.svg",
  44527. extra: 1360/1300,
  44528. bottom: 22/1382
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Normal",
  44535. height: math.unit(9 + 8/12, "feet"),
  44536. default: true
  44537. },
  44538. {
  44539. name: "Macro",
  44540. height: math.unit(500, "feet")
  44541. },
  44542. {
  44543. name: "Megamacro",
  44544. height: math.unit(3.6, "miles")
  44545. },
  44546. ]
  44547. ))
  44548. characterMakers.push(() => makeCharacter(
  44549. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44550. {
  44551. front: {
  44552. height: math.unit(200, "cm"),
  44553. weight: math.unit(250, "lb"),
  44554. name: "Front",
  44555. image: {
  44556. source: "./media/characters/fowler-karlsson/front.svg",
  44557. extra: 897/845,
  44558. bottom: 123/1020
  44559. }
  44560. },
  44561. back: {
  44562. height: math.unit(200, "cm"),
  44563. weight: math.unit(250, "lb"),
  44564. name: "Back",
  44565. image: {
  44566. source: "./media/characters/fowler-karlsson/back.svg",
  44567. extra: 999/944,
  44568. bottom: 26/1025
  44569. }
  44570. },
  44571. dick: {
  44572. height: math.unit(1.92, "feet"),
  44573. weight: math.unit(150, "lb"),
  44574. name: "Dick",
  44575. image: {
  44576. source: "./media/characters/fowler-karlsson/dick.svg"
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(200, "cm"),
  44584. default: true
  44585. },
  44586. {
  44587. name: "Smaller Macro",
  44588. height: math.unit(90, "m")
  44589. },
  44590. {
  44591. name: "Macro",
  44592. height: math.unit(150, "m")
  44593. },
  44594. {
  44595. name: "Bigger Macro",
  44596. height: math.unit(300, "m")
  44597. },
  44598. ]
  44599. ))
  44600. characterMakers.push(() => makeCharacter(
  44601. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44602. {
  44603. side: {
  44604. height: math.unit(8 + 2/12, "feet"),
  44605. weight: math.unit(1, "tonne"),
  44606. name: "Side",
  44607. image: {
  44608. source: "./media/characters/rylide/side.svg",
  44609. extra: 1318/1034,
  44610. bottom: 106/1424
  44611. }
  44612. },
  44613. sitting: {
  44614. height: math.unit(303, "cm"),
  44615. weight: math.unit(1, "tonne"),
  44616. name: "Sitting",
  44617. image: {
  44618. source: "./media/characters/rylide/sitting.svg",
  44619. extra: 1303/1103,
  44620. bottom: 36/1339
  44621. }
  44622. },
  44623. },
  44624. [
  44625. {
  44626. name: "Normal",
  44627. height: math.unit(8 + 2/12, "feet"),
  44628. default: true
  44629. },
  44630. ]
  44631. ))
  44632. characterMakers.push(() => makeCharacter(
  44633. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44634. {
  44635. front: {
  44636. height: math.unit(5 + 10/12, "feet"),
  44637. weight: math.unit(160, "lb"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/pudask/front.svg",
  44641. extra: 1616/1590,
  44642. bottom: 161/1777
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Ferret Height",
  44649. height: math.unit(2 + 5/12, "feet")
  44650. },
  44651. {
  44652. name: "Canon Height",
  44653. height: math.unit(5 + 10/12, "feet"),
  44654. default: true
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44660. {
  44661. front: {
  44662. height: math.unit(3 + 6/12, "feet"),
  44663. weight: math.unit(60, "lb"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/ramita/front.svg",
  44667. extra: 1402/1232,
  44668. bottom: 62/1464
  44669. }
  44670. },
  44671. dressed: {
  44672. height: math.unit(3 + 6/12, "feet"),
  44673. weight: math.unit(60, "lb"),
  44674. name: "Dressed",
  44675. image: {
  44676. source: "./media/characters/ramita/dressed.svg",
  44677. extra: 1534/1249,
  44678. bottom: 50/1584
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(3 + 6/12, "feet"),
  44686. default: true
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(8, "feet"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/ark/front.svg",
  44698. extra: 772/693,
  44699. bottom: 45/817
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(8, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(6, "feet"),
  44716. weight: math.unit(250, "lb"),
  44717. volume: math.unit(5/8, "gallons"),
  44718. name: "Front",
  44719. image: {
  44720. source: "./media/characters/ludwig-horn/front.svg",
  44721. extra: 1782/1635,
  44722. bottom: 96/1878
  44723. }
  44724. },
  44725. back: {
  44726. height: math.unit(6, "feet"),
  44727. weight: math.unit(250, "lb"),
  44728. volume: math.unit(5/8, "gallons"),
  44729. name: "Back",
  44730. image: {
  44731. source: "./media/characters/ludwig-horn/back.svg",
  44732. extra: 1874/1729,
  44733. bottom: 27/1901
  44734. }
  44735. },
  44736. dick: {
  44737. height: math.unit(1.05, "feet"),
  44738. weight: math.unit(15, "lb"),
  44739. volume: math.unit(5/8, "gallons"),
  44740. name: "Dick",
  44741. image: {
  44742. source: "./media/characters/ludwig-horn/dick.svg"
  44743. }
  44744. },
  44745. },
  44746. [
  44747. {
  44748. name: "Small",
  44749. height: math.unit(6, "feet")
  44750. },
  44751. {
  44752. name: "Typical",
  44753. height: math.unit(12, "feet"),
  44754. default: true
  44755. },
  44756. {
  44757. name: "Building",
  44758. height: math.unit(80, "feet")
  44759. },
  44760. {
  44761. name: "Town",
  44762. height: math.unit(800, "feet")
  44763. },
  44764. {
  44765. name: "Kingdom",
  44766. height: math.unit(80000, "feet")
  44767. },
  44768. {
  44769. name: "Planet",
  44770. height: math.unit(8000000, "feet")
  44771. },
  44772. {
  44773. name: "Universe",
  44774. height: math.unit(8000000000, "feet")
  44775. },
  44776. {
  44777. name: "Transcended",
  44778. height: math.unit(8e27, "feet")
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(5, "feet"),
  44787. weight: math.unit(50, "kg"),
  44788. name: "Front",
  44789. image: {
  44790. source: "./media/characters/biot-avery/front.svg",
  44791. extra: 1295/1232,
  44792. bottom: 86/1381
  44793. }
  44794. },
  44795. },
  44796. [
  44797. {
  44798. name: "Normal",
  44799. height: math.unit(5, "feet"),
  44800. default: true
  44801. },
  44802. ]
  44803. ))
  44804. characterMakers.push(() => makeCharacter(
  44805. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44806. {
  44807. front: {
  44808. height: math.unit(6, "feet"),
  44809. name: "Front",
  44810. image: {
  44811. source: "./media/characters/kitsune-kiro/front.svg",
  44812. extra: 1270/1158,
  44813. bottom: 42/1312
  44814. }
  44815. },
  44816. frontAlt: {
  44817. height: math.unit(6, "feet"),
  44818. name: "Front-alt",
  44819. image: {
  44820. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44821. extra: 1130/1081,
  44822. bottom: 36/1166
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Smol",
  44829. height: math.unit(3, "feet")
  44830. },
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(6, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(6, "feet"),
  44843. weight: math.unit(125, "lb"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/jack-thatcher/front.svg",
  44847. extra: 1474/1370,
  44848. bottom: 26/1500
  44849. }
  44850. },
  44851. back: {
  44852. height: math.unit(6, "feet"),
  44853. weight: math.unit(125, "lb"),
  44854. name: "Back",
  44855. image: {
  44856. source: "./media/characters/jack-thatcher/back.svg",
  44857. extra: 1489/1384,
  44858. bottom: 18/1507
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(6, "feet"),
  44866. default: true
  44867. },
  44868. {
  44869. name: "Macro",
  44870. height: math.unit(75, "feet")
  44871. },
  44872. {
  44873. name: "Macro-er",
  44874. height: math.unit(250, "feet")
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44880. {
  44881. front: {
  44882. height: math.unit(7, "feet"),
  44883. weight: math.unit(110, "kg"),
  44884. name: "Front",
  44885. image: {
  44886. source: "./media/characters/max-hyper/front.svg",
  44887. extra: 1969/1881,
  44888. bottom: 49/2018
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Normal",
  44895. height: math.unit(7, "feet"),
  44896. default: true
  44897. },
  44898. ]
  44899. ))
  44900. characterMakers.push(() => makeCharacter(
  44901. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44902. {
  44903. front: {
  44904. height: math.unit(5 + 5/12, "feet"),
  44905. weight: math.unit(160, "lb"),
  44906. name: "Front",
  44907. image: {
  44908. source: "./media/characters/spook/front.svg",
  44909. extra: 794/791,
  44910. bottom: 54/848
  44911. }
  44912. },
  44913. back: {
  44914. height: math.unit(5 + 5/12, "feet"),
  44915. weight: math.unit(160, "lb"),
  44916. name: "Back",
  44917. image: {
  44918. source: "./media/characters/spook/back.svg",
  44919. extra: 812/798,
  44920. bottom: 32/844
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Normal",
  44927. height: math.unit(5 + 5/12, "feet"),
  44928. default: true
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(18, "feet"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/xeaduulix/front.svg",
  44940. extra: 1380/1166,
  44941. bottom: 110/1490
  44942. }
  44943. },
  44944. back: {
  44945. height: math.unit(18, "feet"),
  44946. name: "Back",
  44947. image: {
  44948. source: "./media/characters/xeaduulix/back.svg",
  44949. extra: 1592/1170,
  44950. bottom: 128/1720
  44951. }
  44952. },
  44953. frontNsfw: {
  44954. height: math.unit(18, "feet"),
  44955. name: "Front (NSFW)",
  44956. image: {
  44957. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44958. extra: 1380/1166,
  44959. bottom: 110/1490
  44960. }
  44961. },
  44962. backNsfw: {
  44963. height: math.unit(18, "feet"),
  44964. name: "Back (NSFW)",
  44965. image: {
  44966. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44967. extra: 1592/1170,
  44968. bottom: 128/1720
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(18, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44982. {
  44983. spreadWings: {
  44984. height: math.unit(20, "feet"),
  44985. name: "Spread Wings",
  44986. image: {
  44987. source: "./media/characters/fledge/spread-wings.svg",
  44988. extra: 693/635,
  44989. bottom: 26/719
  44990. }
  44991. },
  44992. front: {
  44993. height: math.unit(20, "feet"),
  44994. name: "Front",
  44995. image: {
  44996. source: "./media/characters/fledge/front.svg",
  44997. extra: 684/637,
  44998. bottom: 18/702
  44999. }
  45000. },
  45001. frontAlt: {
  45002. height: math.unit(20, "feet"),
  45003. name: "Front (Alt)",
  45004. image: {
  45005. source: "./media/characters/fledge/front-alt.svg",
  45006. extra: 708/664,
  45007. bottom: 13/721
  45008. }
  45009. },
  45010. back: {
  45011. height: math.unit(20, "feet"),
  45012. name: "Back",
  45013. image: {
  45014. source: "./media/characters/fledge/back.svg",
  45015. extra: 718/634,
  45016. bottom: 22/740
  45017. }
  45018. },
  45019. head: {
  45020. height: math.unit(5.55, "feet"),
  45021. name: "Head",
  45022. image: {
  45023. source: "./media/characters/fledge/head.svg"
  45024. }
  45025. },
  45026. headAlt: {
  45027. height: math.unit(5.1, "feet"),
  45028. name: "Head (Alt)",
  45029. image: {
  45030. source: "./media/characters/fledge/head-alt.svg"
  45031. }
  45032. },
  45033. },
  45034. [
  45035. {
  45036. name: "Small",
  45037. height: math.unit(6 + 2/12, "feet")
  45038. },
  45039. {
  45040. name: "Big",
  45041. height: math.unit(20, "feet"),
  45042. default: true
  45043. },
  45044. {
  45045. name: "Giant",
  45046. height: math.unit(100, "feet")
  45047. },
  45048. {
  45049. name: "Macro",
  45050. height: math.unit(200, "feet")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45056. {
  45057. front: {
  45058. height: math.unit(1, "meter"),
  45059. name: "Front",
  45060. image: {
  45061. source: "./media/characters/atlas-morenai/front.svg",
  45062. extra: 1275/1043,
  45063. bottom: 19/1294
  45064. }
  45065. },
  45066. back: {
  45067. height: math.unit(1, "meter"),
  45068. name: "Back",
  45069. image: {
  45070. source: "./media/characters/atlas-morenai/back.svg",
  45071. extra: 1141/1001,
  45072. bottom: 25/1166
  45073. }
  45074. },
  45075. },
  45076. [
  45077. {
  45078. name: "Normal",
  45079. height: math.unit(1, "meter"),
  45080. default: true
  45081. },
  45082. {
  45083. name: "Magic-Infused",
  45084. height: math.unit(5, "meters")
  45085. },
  45086. ]
  45087. ))
  45088. characterMakers.push(() => makeCharacter(
  45089. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45090. {
  45091. front: {
  45092. height: math.unit(5, "meters"),
  45093. name: "Front",
  45094. image: {
  45095. source: "./media/characters/cintia/front.svg",
  45096. extra: 1312/1228,
  45097. bottom: 38/1350
  45098. }
  45099. },
  45100. back: {
  45101. height: math.unit(5, "meters"),
  45102. name: "Back",
  45103. image: {
  45104. source: "./media/characters/cintia/back.svg",
  45105. extra: 1260/1166,
  45106. bottom: 98/1358
  45107. }
  45108. },
  45109. frontDick: {
  45110. height: math.unit(5, "meters"),
  45111. name: "Front (Dick)",
  45112. image: {
  45113. source: "./media/characters/cintia/front-dick.svg",
  45114. extra: 1312/1228,
  45115. bottom: 38/1350
  45116. }
  45117. },
  45118. backDick: {
  45119. height: math.unit(5, "meters"),
  45120. name: "Back (Dick)",
  45121. image: {
  45122. source: "./media/characters/cintia/back-dick.svg",
  45123. extra: 1260/1166,
  45124. bottom: 98/1358
  45125. }
  45126. },
  45127. bust: {
  45128. height: math.unit(1.97, "meters"),
  45129. name: "Bust",
  45130. image: {
  45131. source: "./media/characters/cintia/bust.svg",
  45132. extra: 617/565,
  45133. bottom: 0/617
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(5, "meters"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45147. {
  45148. side: {
  45149. height: math.unit(100, "feet"),
  45150. name: "Side",
  45151. image: {
  45152. source: "./media/characters/denora/side.svg",
  45153. extra: 875/803,
  45154. bottom: 9/884
  45155. }
  45156. },
  45157. },
  45158. [
  45159. {
  45160. name: "Standard",
  45161. height: math.unit(100, "feet"),
  45162. default: true
  45163. },
  45164. {
  45165. name: "Grand",
  45166. height: math.unit(1000, "feet")
  45167. },
  45168. {
  45169. name: "Conquering",
  45170. height: math.unit(10000, "feet")
  45171. },
  45172. ]
  45173. ))
  45174. characterMakers.push(() => makeCharacter(
  45175. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45176. {
  45177. dressed: {
  45178. height: math.unit(8 + 5/12, "feet"),
  45179. weight: math.unit(700, "lb"),
  45180. name: "Dressed",
  45181. image: {
  45182. source: "./media/characters/kiva/dressed.svg",
  45183. extra: 1102/1055,
  45184. bottom: 60/1162
  45185. }
  45186. },
  45187. nude: {
  45188. height: math.unit(8 + 5/12, "feet"),
  45189. weight: math.unit(700, "lb"),
  45190. name: "Nude",
  45191. image: {
  45192. source: "./media/characters/kiva/nude.svg",
  45193. extra: 1102/1055,
  45194. bottom: 60/1162
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Base Height",
  45201. height: math.unit(8 + 5/12, "feet"),
  45202. default: true
  45203. },
  45204. {
  45205. name: "Macro",
  45206. height: math.unit(100, "feet")
  45207. },
  45208. {
  45209. name: "Max",
  45210. height: math.unit(3280, "feet")
  45211. },
  45212. ]
  45213. ))
  45214. characterMakers.push(() => makeCharacter(
  45215. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45216. {
  45217. front: {
  45218. height: math.unit(6 + 8/12, "feet"),
  45219. weight: math.unit(250, "lb"),
  45220. name: "Front",
  45221. image: {
  45222. source: "./media/characters/ztragon/front.svg",
  45223. extra: 1825/1684,
  45224. bottom: 98/1923
  45225. }
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "Normal",
  45231. height: math.unit(6 + 8/12, "feet"),
  45232. default: true
  45233. },
  45234. {
  45235. name: "Macro",
  45236. height: math.unit(80, "feet")
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45242. {
  45243. front: {
  45244. height: math.unit(10.4, "feet"),
  45245. weight: math.unit(2, "tons"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/yesenia/front.svg",
  45249. extra: 1479/1474,
  45250. bottom: 233/1712
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(10.4, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45264. {
  45265. normal: {
  45266. height: math.unit(6 + 1/12, "feet"),
  45267. weight: math.unit(180, "lb"),
  45268. name: "Normal",
  45269. image: {
  45270. source: "./media/characters/leanne-lycheborne/normal.svg",
  45271. extra: 1748/1660,
  45272. bottom: 98/1846
  45273. }
  45274. },
  45275. were: {
  45276. height: math.unit(12, "feet"),
  45277. weight: math.unit(1600, "lb"),
  45278. name: "Were",
  45279. image: {
  45280. source: "./media/characters/leanne-lycheborne/were.svg",
  45281. extra: 1485/1432,
  45282. bottom: 66/1551
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(6 + 1/12, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45296. {
  45297. side: {
  45298. height: math.unit(13, "feet"),
  45299. name: "Side",
  45300. image: {
  45301. source: "./media/characters/kira-tyler/side.svg",
  45302. extra: 693/393,
  45303. bottom: 58/751
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(13, "feet"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(10.3, "feet"),
  45320. weight: math.unit(150, "lb"),
  45321. name: "Front",
  45322. image: {
  45323. source: "./media/characters/blaze/front.svg",
  45324. extra: 1378/1286,
  45325. bottom: 172/1550
  45326. }
  45327. },
  45328. },
  45329. [
  45330. {
  45331. name: "Normal",
  45332. height: math.unit(10.3, "feet"),
  45333. default: true
  45334. },
  45335. ]
  45336. ))
  45337. characterMakers.push(() => makeCharacter(
  45338. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45339. {
  45340. side: {
  45341. height: math.unit(2, "meters"),
  45342. weight: math.unit(400, "kg"),
  45343. name: "Side",
  45344. image: {
  45345. source: "./media/characters/anu/side.svg",
  45346. extra: 506/394,
  45347. bottom: 18/524
  45348. }
  45349. },
  45350. },
  45351. [
  45352. {
  45353. name: "Humanoid",
  45354. height: math.unit(2, "meters")
  45355. },
  45356. {
  45357. name: "Normal",
  45358. height: math.unit(5, "meters"),
  45359. default: true
  45360. },
  45361. ]
  45362. ))
  45363. characterMakers.push(() => makeCharacter(
  45364. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45365. {
  45366. front: {
  45367. height: math.unit(5 + 5/12, "feet"),
  45368. weight: math.unit(170, "lb"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/synx-the-lynx/front.svg",
  45372. extra: 1893/1745,
  45373. bottom: 17/1910
  45374. }
  45375. },
  45376. side: {
  45377. height: math.unit(5 + 5/12, "feet"),
  45378. weight: math.unit(170, "lb"),
  45379. name: "Side",
  45380. image: {
  45381. source: "./media/characters/synx-the-lynx/side.svg",
  45382. extra: 1884/1740,
  45383. bottom: 39/1923
  45384. }
  45385. },
  45386. back: {
  45387. height: math.unit(5 + 5/12, "feet"),
  45388. weight: math.unit(170, "lb"),
  45389. name: "Back",
  45390. image: {
  45391. source: "./media/characters/synx-the-lynx/back.svg",
  45392. extra: 1903/1755,
  45393. bottom: 14/1917
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(5 + 5/12, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45407. {
  45408. back: {
  45409. height: math.unit(15, "feet"),
  45410. name: "Back",
  45411. image: {
  45412. source: "./media/characters/nadezda-fex/back.svg",
  45413. extra: 1695/1481,
  45414. bottom: 25/1720
  45415. }
  45416. },
  45417. },
  45418. [
  45419. {
  45420. name: "Normal",
  45421. height: math.unit(15, "feet"),
  45422. default: true
  45423. },
  45424. {
  45425. name: "Macro",
  45426. height: math.unit(2.5, "miles")
  45427. },
  45428. {
  45429. name: "Goddess",
  45430. height: math.unit(2, "multiverses")
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45436. {
  45437. front: {
  45438. height: math.unit(216, "cm"),
  45439. name: "Front",
  45440. image: {
  45441. source: "./media/characters/lev/front.svg",
  45442. extra: 1728/1670,
  45443. bottom: 82/1810
  45444. }
  45445. },
  45446. back: {
  45447. height: math.unit(216, "cm"),
  45448. name: "Back",
  45449. image: {
  45450. source: "./media/characters/lev/back.svg",
  45451. extra: 1738/1675,
  45452. bottom: 24/1762
  45453. }
  45454. },
  45455. dressed: {
  45456. height: math.unit(216, "cm"),
  45457. name: "Dressed",
  45458. image: {
  45459. source: "./media/characters/lev/dressed.svg",
  45460. extra: 1397/1351,
  45461. bottom: 73/1470
  45462. }
  45463. },
  45464. head: {
  45465. height: math.unit(0.51, "meter"),
  45466. name: "Head",
  45467. image: {
  45468. source: "./media/characters/lev/head.svg"
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(216, "cm"),
  45476. default: true
  45477. },
  45478. {
  45479. name: "Relatively Macro",
  45480. height: math.unit(80, "meters")
  45481. },
  45482. {
  45483. name: "Megamacro",
  45484. height: math.unit(21600, "meters")
  45485. },
  45486. {
  45487. name: "Megamacro+",
  45488. height: math.unit(64800, "meters")
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45494. {
  45495. front: {
  45496. height: math.unit(2, "meters"),
  45497. weight: math.unit(80, "kg"),
  45498. name: "Front",
  45499. image: {
  45500. source: "./media/characters/moka/front.svg",
  45501. extra: 1337/1255,
  45502. bottom: 58/1395
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Micro",
  45509. height: math.unit(15, "cm")
  45510. },
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(2, "meters"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Macro",
  45518. height: math.unit(20, "meters"),
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(9, "feet"),
  45527. weight: math.unit(240, "lb"),
  45528. name: "Front",
  45529. image: {
  45530. source: "./media/characters/kuzco/front.svg",
  45531. extra: 1593/1487,
  45532. bottom: 32/1625
  45533. }
  45534. },
  45535. side: {
  45536. height: math.unit(9, "feet"),
  45537. weight: math.unit(240, "lb"),
  45538. name: "Side",
  45539. image: {
  45540. source: "./media/characters/kuzco/side.svg",
  45541. extra: 1575/1485,
  45542. bottom: 30/1605
  45543. }
  45544. },
  45545. back: {
  45546. height: math.unit(9, "feet"),
  45547. weight: math.unit(240, "lb"),
  45548. name: "Back",
  45549. image: {
  45550. source: "./media/characters/kuzco/back.svg",
  45551. extra: 1603/1514,
  45552. bottom: 14/1617
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Normal",
  45559. height: math.unit(9, "feet"),
  45560. default: true
  45561. },
  45562. ]
  45563. ))
  45564. characterMakers.push(() => makeCharacter(
  45565. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45566. {
  45567. side: {
  45568. height: math.unit(2, "meters"),
  45569. weight: math.unit(300, "kg"),
  45570. name: "Side",
  45571. image: {
  45572. source: "./media/characters/ceruleus/side.svg",
  45573. extra: 1068/974,
  45574. bottom: 126/1194
  45575. }
  45576. },
  45577. },
  45578. [
  45579. {
  45580. name: "Normal",
  45581. height: math.unit(16, "meters"),
  45582. default: true
  45583. },
  45584. ]
  45585. ))
  45586. characterMakers.push(() => makeCharacter(
  45587. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45588. {
  45589. front: {
  45590. height: math.unit(9, "feet"),
  45591. weight: math.unit(500, "kg"),
  45592. name: "Front",
  45593. image: {
  45594. source: "./media/characters/acouya/front.svg",
  45595. extra: 1660/1473,
  45596. bottom: 28/1688
  45597. }
  45598. },
  45599. },
  45600. [
  45601. {
  45602. name: "Normal",
  45603. height: math.unit(9, "feet"),
  45604. default: true
  45605. },
  45606. ]
  45607. ))
  45608. characterMakers.push(() => makeCharacter(
  45609. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45610. {
  45611. front: {
  45612. height: math.unit(5 + 6/12, "feet"),
  45613. weight: math.unit(195, "lb"),
  45614. name: "Front",
  45615. image: {
  45616. source: "./media/characters/vant/front.svg",
  45617. extra: 1396/1320,
  45618. bottom: 20/1416
  45619. }
  45620. },
  45621. back: {
  45622. height: math.unit(5 + 6/12, "feet"),
  45623. weight: math.unit(195, "lb"),
  45624. name: "Back",
  45625. image: {
  45626. source: "./media/characters/vant/back.svg",
  45627. extra: 1396/1320,
  45628. bottom: 20/1416
  45629. }
  45630. },
  45631. maw: {
  45632. height: math.unit(0.75, "feet"),
  45633. name: "Maw",
  45634. image: {
  45635. source: "./media/characters/vant/maw.svg"
  45636. }
  45637. },
  45638. paw: {
  45639. height: math.unit(1.07, "feet"),
  45640. name: "Paw",
  45641. image: {
  45642. source: "./media/characters/vant/paw.svg"
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Micro",
  45649. height: math.unit(0.25, "inches")
  45650. },
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(5 + 6/12, "feet"),
  45654. default: true
  45655. },
  45656. {
  45657. name: "Macro",
  45658. height: math.unit(75, "feet")
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45664. {
  45665. front: {
  45666. height: math.unit(30, "meters"),
  45667. weight: math.unit(363, "tons"),
  45668. name: "Front",
  45669. image: {
  45670. source: "./media/characters/ahra/front.svg",
  45671. extra: 1914/1814,
  45672. bottom: 46/1960
  45673. }
  45674. },
  45675. },
  45676. [
  45677. {
  45678. name: "Macro",
  45679. height: math.unit(30, "meters"),
  45680. default: true
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45686. {
  45687. undressed: {
  45688. height: math.unit(2, "m"),
  45689. weight: math.unit(250, "kg"),
  45690. name: "Undressed",
  45691. image: {
  45692. source: "./media/characters/coriander/undressed.svg",
  45693. extra: 1757/1606,
  45694. bottom: 107/1864
  45695. }
  45696. },
  45697. dressed: {
  45698. height: math.unit(2, "m"),
  45699. weight: math.unit(250, "kg"),
  45700. name: "Dressed",
  45701. image: {
  45702. source: "./media/characters/coriander/dressed.svg",
  45703. extra: 1757/1606,
  45704. bottom: 107/1864
  45705. }
  45706. },
  45707. },
  45708. [
  45709. {
  45710. name: "Normal",
  45711. height: math.unit(4, "meters"),
  45712. default: true
  45713. },
  45714. {
  45715. name: "XL",
  45716. height: math.unit(6, "meters")
  45717. },
  45718. {
  45719. name: "XXL",
  45720. height: math.unit(8, "meters")
  45721. },
  45722. ]
  45723. ))
  45724. characterMakers.push(() => makeCharacter(
  45725. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45726. {
  45727. front: {
  45728. height: math.unit(6, "feet"),
  45729. name: "Front",
  45730. image: {
  45731. source: "./media/characters/syrinx/front.svg",
  45732. extra: 1557/1259,
  45733. bottom: 171/1728
  45734. }
  45735. },
  45736. },
  45737. [
  45738. {
  45739. name: "Normal",
  45740. height: math.unit(6 + 3/12, "feet"),
  45741. default: true
  45742. },
  45743. ]
  45744. ))
  45745. characterMakers.push(() => makeCharacter(
  45746. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45747. {
  45748. front: {
  45749. height: math.unit(11 + 6/12, "feet"),
  45750. weight: math.unit(1.5, "tons"),
  45751. name: "Front",
  45752. image: {
  45753. source: "./media/characters/bor/front.svg",
  45754. extra: 1189/1109,
  45755. bottom: 170/1359
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(11 + 6/12, "feet"),
  45763. default: true
  45764. },
  45765. {
  45766. name: "Macro",
  45767. height: math.unit(32 + 9/12, "feet")
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45773. {
  45774. anthro: {
  45775. height: math.unit(9, "feet"),
  45776. weight: math.unit(2076, "lb"),
  45777. name: "Anthro",
  45778. image: {
  45779. source: "./media/characters/abacus/anthro.svg",
  45780. extra: 1540/1494,
  45781. bottom: 233/1773
  45782. }
  45783. },
  45784. pigeon: {
  45785. height: math.unit(1, "feet"),
  45786. name: "Pigeon",
  45787. image: {
  45788. source: "./media/characters/abacus/pigeon.svg",
  45789. extra: 528/525,
  45790. bottom: 46/574
  45791. }
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "Normal",
  45797. height: math.unit(9, "feet"),
  45798. default: true
  45799. },
  45800. ]
  45801. ))
  45802. characterMakers.push(() => makeCharacter(
  45803. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45804. {
  45805. side: {
  45806. height: math.unit(6, "feet"),
  45807. name: "Side",
  45808. image: {
  45809. source: "./media/characters/delkhan/side.svg",
  45810. extra: 1884/1786,
  45811. bottom: 308/2192
  45812. }
  45813. },
  45814. head: {
  45815. height: math.unit(3.38, "feet"),
  45816. name: "Head",
  45817. image: {
  45818. source: "./media/characters/delkhan/head.svg"
  45819. }
  45820. },
  45821. },
  45822. [
  45823. {
  45824. name: "Normal",
  45825. height: math.unit(72, "feet"),
  45826. default: true
  45827. },
  45828. {
  45829. name: "Giant",
  45830. height: math.unit(172, "feet")
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45836. {
  45837. standing: {
  45838. height: math.unit(6, "feet"),
  45839. name: "Standing",
  45840. image: {
  45841. source: "./media/characters/euchidat/standing.svg",
  45842. extra: 1612/1553,
  45843. bottom: 116/1728
  45844. }
  45845. },
  45846. leaning: {
  45847. height: math.unit(6, "feet"),
  45848. name: "Leaning",
  45849. image: {
  45850. source: "./media/characters/euchidat/leaning.svg",
  45851. extra: 1719/1674,
  45852. bottom: 27/1746
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(175, "feet"),
  45860. default: true
  45861. },
  45862. {
  45863. name: "Megamacro",
  45864. height: math.unit(190, "miles")
  45865. },
  45866. {
  45867. name: "Gigamacro",
  45868. height: math.unit(190000, "miles")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(6, "feet"),
  45877. weight: math.unit(150, "lb"),
  45878. name: "Front",
  45879. image: {
  45880. source: "./media/characters/rebecca-stack/front.svg",
  45881. extra: 1256/1201,
  45882. bottom: 18/1274
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(5 + 8/12, "feet"),
  45890. default: true
  45891. },
  45892. {
  45893. name: "Demolitionist",
  45894. height: math.unit(200, "feet")
  45895. },
  45896. {
  45897. name: "Out of Control",
  45898. height: math.unit(2, "miles")
  45899. },
  45900. {
  45901. name: "Giga",
  45902. height: math.unit(7200, "miles")
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45908. {
  45909. front: {
  45910. height: math.unit(6, "feet"),
  45911. weight: math.unit(150, "lb"),
  45912. name: "Front",
  45913. image: {
  45914. source: "./media/characters/jenny-cartwright/front.svg",
  45915. extra: 1384/1376,
  45916. bottom: 58/1442
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(6 + 7/12, "feet"),
  45924. default: true
  45925. },
  45926. {
  45927. name: "Librarian",
  45928. height: math.unit(55, "feet")
  45929. },
  45930. {
  45931. name: "Sightseer",
  45932. height: math.unit(50, "miles")
  45933. },
  45934. {
  45935. name: "Giga",
  45936. height: math.unit(30000, "miles")
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45942. {
  45943. nude: {
  45944. height: math.unit(8, "feet"),
  45945. weight: math.unit(225, "lb"),
  45946. name: "Nude",
  45947. image: {
  45948. source: "./media/characters/marvy/nude.svg",
  45949. extra: 1900/1683,
  45950. bottom: 89/1989
  45951. }
  45952. },
  45953. dressed: {
  45954. height: math.unit(8, "feet"),
  45955. weight: math.unit(225, "lb"),
  45956. name: "Dressed",
  45957. image: {
  45958. source: "./media/characters/marvy/dressed.svg",
  45959. extra: 1900/1683,
  45960. bottom: 89/1989
  45961. }
  45962. },
  45963. head: {
  45964. height: math.unit(2.85, "feet"),
  45965. name: "Head",
  45966. image: {
  45967. source: "./media/characters/marvy/head.svg"
  45968. }
  45969. },
  45970. },
  45971. [
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(8, "feet"),
  45975. default: true
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(8, "feet"),
  45984. weight: math.unit(250, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/leah/front.svg",
  45988. extra: 1257/1149,
  45989. bottom: 109/1366
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Normal",
  45996. height: math.unit(8, "feet"),
  45997. default: true
  45998. },
  45999. {
  46000. name: "Minimacro",
  46001. height: math.unit(40, "feet")
  46002. },
  46003. {
  46004. name: "Macro",
  46005. height: math.unit(124, "feet")
  46006. },
  46007. {
  46008. name: "Megamacro",
  46009. height: math.unit(850, "feet")
  46010. },
  46011. ]
  46012. ))
  46013. characterMakers.push(() => makeCharacter(
  46014. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46015. {
  46016. side: {
  46017. height: math.unit(13 + 6/12, "feet"),
  46018. weight: math.unit(3200, "lb"),
  46019. name: "Side",
  46020. image: {
  46021. source: "./media/characters/alvir/side.svg",
  46022. extra: 896/589,
  46023. bottom: 26/922
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(13 + 6/12, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46037. {
  46038. front: {
  46039. height: math.unit(5 + 4/12, "feet"),
  46040. weight: math.unit(236, "lb"),
  46041. name: "Front",
  46042. image: {
  46043. source: "./media/characters/zaina-khalil/front.svg",
  46044. extra: 1533/1485,
  46045. bottom: 94/1627
  46046. }
  46047. },
  46048. side: {
  46049. height: math.unit(5 + 4/12, "feet"),
  46050. weight: math.unit(236, "lb"),
  46051. name: "Side",
  46052. image: {
  46053. source: "./media/characters/zaina-khalil/side.svg",
  46054. extra: 1537/1498,
  46055. bottom: 66/1603
  46056. }
  46057. },
  46058. back: {
  46059. height: math.unit(5 + 4/12, "feet"),
  46060. weight: math.unit(236, "lb"),
  46061. name: "Back",
  46062. image: {
  46063. source: "./media/characters/zaina-khalil/back.svg",
  46064. extra: 1546/1494,
  46065. bottom: 89/1635
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Normal",
  46072. height: math.unit(5 + 4/12, "feet"),
  46073. default: true
  46074. },
  46075. ]
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46079. {
  46080. side: {
  46081. height: math.unit(12, "feet"),
  46082. weight: math.unit(4000, "lb"),
  46083. name: "Side",
  46084. image: {
  46085. source: "./media/characters/terry/side.svg",
  46086. extra: 1518/1439,
  46087. bottom: 149/1667
  46088. }
  46089. },
  46090. },
  46091. [
  46092. {
  46093. name: "Normal",
  46094. height: math.unit(12, "feet"),
  46095. default: true
  46096. },
  46097. ]
  46098. ))
  46099. characterMakers.push(() => makeCharacter(
  46100. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46101. {
  46102. front: {
  46103. height: math.unit(12, "feet"),
  46104. weight: math.unit(1500, "lb"),
  46105. name: "Front",
  46106. image: {
  46107. source: "./media/characters/kahea/front.svg",
  46108. extra: 1722/1617,
  46109. bottom: 179/1901
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(12, "feet"),
  46117. default: true
  46118. },
  46119. ]
  46120. ))
  46121. characterMakers.push(() => makeCharacter(
  46122. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46123. {
  46124. demonFront: {
  46125. height: math.unit(36, "feet"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/alex-xuria/demon-front.svg",
  46129. extra: 1705/1673,
  46130. bottom: 198/1903
  46131. },
  46132. form: "demon",
  46133. default: true
  46134. },
  46135. demonBack: {
  46136. height: math.unit(36, "feet"),
  46137. name: "Back",
  46138. image: {
  46139. source: "./media/characters/alex-xuria/demon-back.svg",
  46140. extra: 1725/1693,
  46141. bottom: 70/1795
  46142. },
  46143. form: "demon"
  46144. },
  46145. demonHead: {
  46146. height: math.unit(2.14, "meters"),
  46147. name: "Head",
  46148. image: {
  46149. source: "./media/characters/alex-xuria/demon-head.svg"
  46150. },
  46151. form: "demon"
  46152. },
  46153. demonHand: {
  46154. height: math.unit(1.61, "meters"),
  46155. name: "Hand",
  46156. image: {
  46157. source: "./media/characters/alex-xuria/demon-hand.svg"
  46158. },
  46159. form: "demon"
  46160. },
  46161. demonPaw: {
  46162. height: math.unit(1.35, "meters"),
  46163. name: "Paw",
  46164. image: {
  46165. source: "./media/characters/alex-xuria/demon-paw.svg"
  46166. },
  46167. form: "demon"
  46168. },
  46169. demonFoot: {
  46170. height: math.unit(2.2, "meters"),
  46171. name: "Foot",
  46172. image: {
  46173. source: "./media/characters/alex-xuria/demon-foot.svg"
  46174. },
  46175. form: "demon"
  46176. },
  46177. demonCock: {
  46178. height: math.unit(1.74, "meters"),
  46179. name: "Cock",
  46180. image: {
  46181. source: "./media/characters/alex-xuria/demon-cock.svg"
  46182. },
  46183. form: "demon"
  46184. },
  46185. demonTailClosed: {
  46186. height: math.unit(1.47, "meters"),
  46187. name: "Tail (Closed)",
  46188. image: {
  46189. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46190. },
  46191. form: "demon"
  46192. },
  46193. demonTailOpen: {
  46194. height: math.unit(2.85, "meters"),
  46195. name: "Tail (Open)",
  46196. image: {
  46197. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46198. },
  46199. form: "demon"
  46200. },
  46201. incubusFront: {
  46202. height: math.unit(12, "feet"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/alex-xuria/incubus-front.svg",
  46206. extra: 1754/1677,
  46207. bottom: 125/1879
  46208. },
  46209. form: "incubus",
  46210. default: true
  46211. },
  46212. incubusBack: {
  46213. height: math.unit(12, "feet"),
  46214. name: "Back",
  46215. image: {
  46216. source: "./media/characters/alex-xuria/incubus-back.svg",
  46217. extra: 1702/1647,
  46218. bottom: 30/1732
  46219. },
  46220. form: "incubus"
  46221. },
  46222. incubusHead: {
  46223. height: math.unit(3.45, "feet"),
  46224. name: "Head",
  46225. image: {
  46226. source: "./media/characters/alex-xuria/incubus-head.svg"
  46227. },
  46228. form: "incubus"
  46229. },
  46230. rabbitFront: {
  46231. height: math.unit(6, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46235. extra: 1369/1349,
  46236. bottom: 45/1414
  46237. },
  46238. form: "rabbit",
  46239. default: true
  46240. },
  46241. rabbitSide: {
  46242. height: math.unit(6, "feet"),
  46243. name: "Side",
  46244. image: {
  46245. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46246. extra: 1370/1356,
  46247. bottom: 37/1407
  46248. },
  46249. form: "rabbit"
  46250. },
  46251. rabbitBack: {
  46252. height: math.unit(6, "feet"),
  46253. name: "Back",
  46254. image: {
  46255. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46256. extra: 1375/1358,
  46257. bottom: 43/1418
  46258. },
  46259. form: "rabbit"
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(6, "feet"),
  46266. default: true,
  46267. form: "rabbit"
  46268. },
  46269. {
  46270. name: "Incubus",
  46271. height: math.unit(12, "feet"),
  46272. default: true,
  46273. form: "incubus"
  46274. },
  46275. {
  46276. name: "Demon",
  46277. height: math.unit(36, "feet"),
  46278. default: true,
  46279. form: "demon"
  46280. }
  46281. ],
  46282. {
  46283. "demon": {
  46284. name: "Demon",
  46285. default: true
  46286. },
  46287. "incubus": {
  46288. name: "Incubus",
  46289. },
  46290. "rabbit": {
  46291. name: "Rabbit"
  46292. }
  46293. }
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46297. {
  46298. front: {
  46299. height: math.unit(7 + 5/12, "feet"),
  46300. weight: math.unit(510, "lb"),
  46301. name: "Front",
  46302. image: {
  46303. source: "./media/characters/syrup/front.svg",
  46304. extra: 932/916,
  46305. bottom: 26/958
  46306. }
  46307. },
  46308. },
  46309. [
  46310. {
  46311. name: "Normal",
  46312. height: math.unit(7 + 5/12, "feet"),
  46313. default: true
  46314. },
  46315. {
  46316. name: "Big",
  46317. height: math.unit(50, "feet")
  46318. },
  46319. {
  46320. name: "Macro",
  46321. height: math.unit(300, "feet")
  46322. },
  46323. {
  46324. name: "Megamacro",
  46325. height: math.unit(1, "mile")
  46326. },
  46327. ]
  46328. ))
  46329. characterMakers.push(() => makeCharacter(
  46330. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46331. {
  46332. front: {
  46333. height: math.unit(6 + 9/12, "feet"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/zeimne/front.svg",
  46337. extra: 1969/1806,
  46338. bottom: 53/2022
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(6 + 9/12, "feet"),
  46346. default: true
  46347. },
  46348. {
  46349. name: "Giant",
  46350. height: math.unit(550, "feet")
  46351. },
  46352. {
  46353. name: "Mega",
  46354. height: math.unit(3, "miles")
  46355. },
  46356. {
  46357. name: "Giga",
  46358. height: math.unit(250, "miles")
  46359. },
  46360. {
  46361. name: "Tera",
  46362. height: math.unit(1, "AU")
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46368. {
  46369. front: {
  46370. height: math.unit(5 + 2/12, "feet"),
  46371. name: "Front",
  46372. image: {
  46373. source: "./media/characters/grar/front.svg",
  46374. extra: 1331/1119,
  46375. bottom: 60/1391
  46376. }
  46377. },
  46378. back: {
  46379. height: math.unit(5 + 2/12, "feet"),
  46380. name: "Back",
  46381. image: {
  46382. source: "./media/characters/grar/back.svg",
  46383. extra: 1385/1169,
  46384. bottom: 23/1408
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(5 + 2/12, "feet"),
  46392. default: true
  46393. },
  46394. ]
  46395. ))
  46396. characterMakers.push(() => makeCharacter(
  46397. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46398. {
  46399. front: {
  46400. height: math.unit(13 + 7/12, "feet"),
  46401. weight: math.unit(2200, "lb"),
  46402. name: "Front",
  46403. image: {
  46404. source: "./media/characters/endraya/front.svg",
  46405. extra: 1289/1215,
  46406. bottom: 50/1339
  46407. }
  46408. },
  46409. nude: {
  46410. height: math.unit(13 + 7/12, "feet"),
  46411. weight: math.unit(2200, "lb"),
  46412. name: "Nude",
  46413. image: {
  46414. source: "./media/characters/endraya/nude.svg",
  46415. extra: 1247/1171,
  46416. bottom: 40/1287
  46417. }
  46418. },
  46419. head: {
  46420. height: math.unit(2.6, "feet"),
  46421. name: "Head",
  46422. image: {
  46423. source: "./media/characters/endraya/head.svg"
  46424. }
  46425. },
  46426. slit: {
  46427. height: math.unit(3.4, "feet"),
  46428. name: "Slit",
  46429. image: {
  46430. source: "./media/characters/endraya/slit.svg"
  46431. }
  46432. },
  46433. },
  46434. [
  46435. {
  46436. name: "Normal",
  46437. height: math.unit(13 + 7/12, "feet"),
  46438. default: true
  46439. },
  46440. {
  46441. name: "Macro",
  46442. height: math.unit(200, "feet")
  46443. },
  46444. ]
  46445. ))
  46446. characterMakers.push(() => makeCharacter(
  46447. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46448. {
  46449. front: {
  46450. height: math.unit(1.81, "meters"),
  46451. weight: math.unit(69, "kg"),
  46452. name: "Front",
  46453. image: {
  46454. source: "./media/characters/rodryana/front.svg",
  46455. extra: 2002/1921,
  46456. bottom: 53/2055
  46457. }
  46458. },
  46459. back: {
  46460. height: math.unit(1.81, "meters"),
  46461. weight: math.unit(69, "kg"),
  46462. name: "Back",
  46463. image: {
  46464. source: "./media/characters/rodryana/back.svg",
  46465. extra: 1993/1926,
  46466. bottom: 48/2041
  46467. }
  46468. },
  46469. maw: {
  46470. height: math.unit(0.19769417475, "meters"),
  46471. name: "Maw",
  46472. image: {
  46473. source: "./media/characters/rodryana/maw.svg"
  46474. }
  46475. },
  46476. slit: {
  46477. height: math.unit(0.31631067961, "meters"),
  46478. name: "Slit",
  46479. image: {
  46480. source: "./media/characters/rodryana/slit.svg"
  46481. }
  46482. },
  46483. },
  46484. [
  46485. {
  46486. name: "Normal",
  46487. height: math.unit(1.81, "meters")
  46488. },
  46489. {
  46490. name: "Mini Macro",
  46491. height: math.unit(181, "meters")
  46492. },
  46493. {
  46494. name: "Macro",
  46495. height: math.unit(452, "meters"),
  46496. default: true
  46497. },
  46498. {
  46499. name: "Mega Macro",
  46500. height: math.unit(1.375, "km")
  46501. },
  46502. {
  46503. name: "Giga Macro",
  46504. height: math.unit(13.575, "km")
  46505. },
  46506. ]
  46507. ))
  46508. characterMakers.push(() => makeCharacter(
  46509. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46510. {
  46511. front: {
  46512. height: math.unit(6, "feet"),
  46513. weight: math.unit(1000, "lb"),
  46514. name: "Front",
  46515. image: {
  46516. source: "./media/characters/asaya/front.svg",
  46517. extra: 1460/1200,
  46518. bottom: 71/1531
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Normal",
  46525. height: math.unit(8, "km"),
  46526. default: true
  46527. },
  46528. ]
  46529. ))
  46530. characterMakers.push(() => makeCharacter(
  46531. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46532. {
  46533. front: {
  46534. height: math.unit(3.5, "meters"),
  46535. name: "Front",
  46536. image: {
  46537. source: "./media/characters/sarzu-and-israz/front.svg",
  46538. extra: 1570/1558,
  46539. bottom: 150/1720
  46540. },
  46541. },
  46542. back: {
  46543. height: math.unit(3.5, "meters"),
  46544. name: "Back",
  46545. image: {
  46546. source: "./media/characters/sarzu-and-israz/back.svg",
  46547. extra: 1523/1509,
  46548. bottom: 132/1655
  46549. },
  46550. },
  46551. frontFemale: {
  46552. height: math.unit(3.5, "meters"),
  46553. name: "Front (Female)",
  46554. image: {
  46555. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46556. extra: 1570/1558,
  46557. bottom: 150/1720
  46558. },
  46559. },
  46560. frontHerm: {
  46561. height: math.unit(3.5, "meters"),
  46562. name: "Front (Herm)",
  46563. image: {
  46564. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46565. extra: 1570/1558,
  46566. bottom: 150/1720
  46567. },
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(3.5, "meters"),
  46574. default: true,
  46575. },
  46576. {
  46577. name: "Macro",
  46578. height: math.unit(65.5, "meters"),
  46579. },
  46580. ],
  46581. ))
  46582. characterMakers.push(() => makeCharacter(
  46583. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46584. {
  46585. front: {
  46586. height: math.unit(6, "feet"),
  46587. weight: math.unit(250, "lb"),
  46588. name: "Front",
  46589. image: {
  46590. source: "./media/characters/zenimma/front.svg",
  46591. extra: 1346/1320,
  46592. bottom: 58/1404
  46593. }
  46594. },
  46595. back: {
  46596. height: math.unit(6, "feet"),
  46597. weight: math.unit(250, "lb"),
  46598. name: "Back",
  46599. image: {
  46600. source: "./media/characters/zenimma/back.svg",
  46601. extra: 1324/1308,
  46602. bottom: 44/1368
  46603. }
  46604. },
  46605. dick: {
  46606. height: math.unit(1.44, "feet"),
  46607. name: "Dick",
  46608. image: {
  46609. source: "./media/characters/zenimma/dick.svg"
  46610. }
  46611. },
  46612. },
  46613. [
  46614. {
  46615. name: "Canon Height",
  46616. height: math.unit(66, "miles"),
  46617. default: true
  46618. },
  46619. ]
  46620. ))
  46621. characterMakers.push(() => makeCharacter(
  46622. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46623. {
  46624. nude: {
  46625. height: math.unit(6, "feet"),
  46626. weight: math.unit(150, "lb"),
  46627. name: "Nude",
  46628. image: {
  46629. source: "./media/characters/shavon/nude.svg",
  46630. extra: 1242/1096,
  46631. bottom: 98/1340
  46632. }
  46633. },
  46634. dressed: {
  46635. height: math.unit(6, "feet"),
  46636. weight: math.unit(150, "lb"),
  46637. name: "Dressed",
  46638. image: {
  46639. source: "./media/characters/shavon/dressed.svg",
  46640. extra: 1242/1096,
  46641. bottom: 98/1340
  46642. }
  46643. },
  46644. },
  46645. [
  46646. {
  46647. name: "Macro",
  46648. height: math.unit(255, "feet"),
  46649. default: true
  46650. },
  46651. ]
  46652. ))
  46653. characterMakers.push(() => makeCharacter(
  46654. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46655. {
  46656. front: {
  46657. height: math.unit(6, "feet"),
  46658. name: "Front",
  46659. image: {
  46660. source: "./media/characters/steph/front.svg",
  46661. extra: 1430/1330,
  46662. bottom: 54/1484
  46663. }
  46664. },
  46665. },
  46666. [
  46667. {
  46668. name: "Normal",
  46669. height: math.unit(6, "feet"),
  46670. default: true
  46671. },
  46672. ]
  46673. ))
  46674. characterMakers.push(() => makeCharacter(
  46675. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46676. {
  46677. front: {
  46678. height: math.unit(9, "feet"),
  46679. weight: math.unit(400, "lb"),
  46680. name: "Front",
  46681. image: {
  46682. source: "./media/characters/kil'aman/front.svg",
  46683. extra: 1210/1159,
  46684. bottom: 109/1319
  46685. }
  46686. },
  46687. head: {
  46688. height: math.unit(2.14, "feet"),
  46689. name: "Head",
  46690. image: {
  46691. source: "./media/characters/kil'aman/head.svg"
  46692. }
  46693. },
  46694. maw: {
  46695. height: math.unit(1.21, "feet"),
  46696. name: "Maw",
  46697. image: {
  46698. source: "./media/characters/kil'aman/maw.svg"
  46699. }
  46700. },
  46701. foot: {
  46702. height: math.unit(1.7, "feet"),
  46703. name: "Foot",
  46704. image: {
  46705. source: "./media/characters/kil'aman/foot.svg"
  46706. }
  46707. },
  46708. dick: {
  46709. height: math.unit(2.1, "feet"),
  46710. name: "Dick",
  46711. image: {
  46712. source: "./media/characters/kil'aman/dick.svg"
  46713. }
  46714. },
  46715. },
  46716. [
  46717. {
  46718. name: "Normal",
  46719. height: math.unit(9, "feet")
  46720. },
  46721. {
  46722. name: "Canon Height",
  46723. height: math.unit(10, "miles"),
  46724. default: true
  46725. },
  46726. {
  46727. name: "Maximum",
  46728. height: math.unit(6e9, "miles")
  46729. },
  46730. ]
  46731. ))
  46732. characterMakers.push(() => makeCharacter(
  46733. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46734. {
  46735. front: {
  46736. height: math.unit(90, "feet"),
  46737. weight: math.unit(675000, "lb"),
  46738. name: "Front",
  46739. image: {
  46740. source: "./media/characters/qadan/front.svg",
  46741. extra: 1012/1004,
  46742. bottom: 78/1090
  46743. }
  46744. },
  46745. back: {
  46746. height: math.unit(90, "feet"),
  46747. weight: math.unit(675000, "lb"),
  46748. name: "Back",
  46749. image: {
  46750. source: "./media/characters/qadan/back.svg",
  46751. extra: 1042/1031,
  46752. bottom: 55/1097
  46753. }
  46754. },
  46755. armored: {
  46756. height: math.unit(90, "feet"),
  46757. weight: math.unit(675000, "lb"),
  46758. name: "Armored",
  46759. image: {
  46760. source: "./media/characters/qadan/armored.svg",
  46761. extra: 1047/1037,
  46762. bottom: 48/1095
  46763. }
  46764. },
  46765. },
  46766. [
  46767. {
  46768. name: "Normal",
  46769. height: math.unit(90, "feet"),
  46770. default: true
  46771. },
  46772. ]
  46773. ))
  46774. characterMakers.push(() => makeCharacter(
  46775. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46776. {
  46777. front: {
  46778. height: math.unit(6, "feet"),
  46779. weight: math.unit(225, "lb"),
  46780. name: "Front",
  46781. image: {
  46782. source: "./media/characters/brooke/front.svg",
  46783. extra: 1050/1010,
  46784. bottom: 66/1116
  46785. }
  46786. },
  46787. back: {
  46788. height: math.unit(6, "feet"),
  46789. weight: math.unit(225, "lb"),
  46790. name: "Back",
  46791. image: {
  46792. source: "./media/characters/brooke/back.svg",
  46793. extra: 1053/1013,
  46794. bottom: 41/1094
  46795. }
  46796. },
  46797. dressed: {
  46798. height: math.unit(6, "feet"),
  46799. weight: math.unit(225, "lb"),
  46800. name: "Dressed",
  46801. image: {
  46802. source: "./media/characters/brooke/dressed.svg",
  46803. extra: 1050/1010,
  46804. bottom: 66/1116
  46805. }
  46806. },
  46807. },
  46808. [
  46809. {
  46810. name: "Canon Height",
  46811. height: math.unit(500, "miles"),
  46812. default: true
  46813. },
  46814. ]
  46815. ))
  46816. characterMakers.push(() => makeCharacter(
  46817. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46818. {
  46819. front: {
  46820. height: math.unit(6 + 2/12, "feet"),
  46821. weight: math.unit(210, "lb"),
  46822. name: "Front",
  46823. image: {
  46824. source: "./media/characters/wubs/front.svg",
  46825. extra: 1345/1325,
  46826. bottom: 70/1415
  46827. }
  46828. },
  46829. back: {
  46830. height: math.unit(6 + 2/12, "feet"),
  46831. weight: math.unit(210, "lb"),
  46832. name: "Back",
  46833. image: {
  46834. source: "./media/characters/wubs/back.svg",
  46835. extra: 1296/1275,
  46836. bottom: 58/1354
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(6 + 2/12, "feet"),
  46844. default: true
  46845. },
  46846. {
  46847. name: "Macro",
  46848. height: math.unit(1000, "feet")
  46849. },
  46850. {
  46851. name: "Megamacro",
  46852. height: math.unit(1, "mile")
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(4, "feet"),
  46861. weight: math.unit(120, "lb"),
  46862. name: "Front",
  46863. image: {
  46864. source: "./media/characters/blue/front.svg",
  46865. extra: 1636/1525,
  46866. bottom: 43/1679
  46867. }
  46868. },
  46869. back: {
  46870. height: math.unit(4, "feet"),
  46871. weight: math.unit(120, "lb"),
  46872. name: "Back",
  46873. image: {
  46874. source: "./media/characters/blue/back.svg",
  46875. extra: 1660/1560,
  46876. bottom: 57/1717
  46877. }
  46878. },
  46879. paws: {
  46880. height: math.unit(0.826, "feet"),
  46881. name: "Paws",
  46882. image: {
  46883. source: "./media/characters/blue/paws.svg"
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Micro",
  46890. height: math.unit(3, "inches")
  46891. },
  46892. {
  46893. name: "Normal",
  46894. height: math.unit(4, "feet"),
  46895. default: true
  46896. },
  46897. {
  46898. name: "Femenine Form",
  46899. height: math.unit(14, "feet")
  46900. },
  46901. {
  46902. name: "Werebat Form",
  46903. height: math.unit(18, "feet")
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46909. {
  46910. female: {
  46911. height: math.unit(7 + 4/12, "feet"),
  46912. weight: math.unit(243, "lb"),
  46913. name: "Female",
  46914. image: {
  46915. source: "./media/characters/kaya/female.svg",
  46916. extra: 975/898,
  46917. bottom: 34/1009
  46918. }
  46919. },
  46920. herm: {
  46921. height: math.unit(7 + 4/12, "feet"),
  46922. weight: math.unit(243, "lb"),
  46923. name: "Herm",
  46924. image: {
  46925. source: "./media/characters/kaya/herm.svg",
  46926. extra: 975/898,
  46927. bottom: 34/1009
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(7 + 4/12, "feet"),
  46935. default: true
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46941. {
  46942. female: {
  46943. height: math.unit(9 + 4/12, "feet"),
  46944. weight: math.unit(398, "lb"),
  46945. name: "Female",
  46946. image: {
  46947. source: "./media/characters/kassandra/female.svg",
  46948. extra: 908/839,
  46949. bottom: 61/969
  46950. }
  46951. },
  46952. intersex: {
  46953. height: math.unit(9 + 4/12, "feet"),
  46954. weight: math.unit(398, "lb"),
  46955. name: "Intersex",
  46956. image: {
  46957. source: "./media/characters/kassandra/intersex.svg",
  46958. extra: 908/839,
  46959. bottom: 61/969
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(9 + 4/12, "feet"),
  46967. default: true
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(3, "meters"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/amy/front.svg",
  46979. extra: 1380/1343,
  46980. bottom: 70/1450
  46981. }
  46982. },
  46983. back: {
  46984. height: math.unit(3, "meters"),
  46985. name: "Back",
  46986. image: {
  46987. source: "./media/characters/amy/back.svg",
  46988. extra: 1380/1347,
  46989. bottom: 66/1446
  46990. }
  46991. },
  46992. },
  46993. [
  46994. {
  46995. name: "Normal",
  46996. height: math.unit(3, "meters"),
  46997. default: true
  46998. },
  46999. ]
  47000. ))
  47001. characterMakers.push(() => makeCharacter(
  47002. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47003. {
  47004. side: {
  47005. height: math.unit(47, "cm"),
  47006. weight: math.unit(10.8, "kg"),
  47007. name: "Side",
  47008. image: {
  47009. source: "./media/characters/alphaschakal/side.svg",
  47010. extra: 1058/568,
  47011. bottom: 62/1120
  47012. }
  47013. },
  47014. back: {
  47015. height: math.unit(78, "cm"),
  47016. weight: math.unit(10.8, "kg"),
  47017. name: "Back",
  47018. image: {
  47019. source: "./media/characters/alphaschakal/back.svg",
  47020. extra: 1102/942,
  47021. bottom: 185/1287
  47022. }
  47023. },
  47024. head: {
  47025. height: math.unit(28, "cm"),
  47026. name: "Head",
  47027. image: {
  47028. source: "./media/characters/alphaschakal/head.svg",
  47029. extra: 696/508,
  47030. bottom: 0/696
  47031. }
  47032. },
  47033. paw: {
  47034. height: math.unit(16, "cm"),
  47035. name: "Paw",
  47036. image: {
  47037. source: "./media/characters/alphaschakal/paw.svg"
  47038. }
  47039. },
  47040. },
  47041. [
  47042. {
  47043. name: "Normal",
  47044. height: math.unit(47, "cm"),
  47045. default: true
  47046. },
  47047. {
  47048. name: "Macro",
  47049. height: math.unit(340, "cm")
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47055. {
  47056. front: {
  47057. height: math.unit(36, "earths"),
  47058. name: "Front",
  47059. image: {
  47060. source: "./media/characters/ecobyss/front.svg",
  47061. extra: 1282/1215,
  47062. bottom: 11/1293
  47063. }
  47064. },
  47065. back: {
  47066. height: math.unit(36, "earths"),
  47067. name: "Back",
  47068. image: {
  47069. source: "./media/characters/ecobyss/back.svg",
  47070. extra: 1291/1222,
  47071. bottom: 8/1299
  47072. }
  47073. },
  47074. },
  47075. [
  47076. {
  47077. name: "Normal",
  47078. height: math.unit(36, "earths"),
  47079. default: true
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47085. {
  47086. front: {
  47087. height: math.unit(12, "feet"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/vasuk/front.svg",
  47091. extra: 1326/1207,
  47092. bottom: 64/1390
  47093. }
  47094. },
  47095. },
  47096. [
  47097. {
  47098. name: "Normal",
  47099. height: math.unit(12, "feet"),
  47100. default: true
  47101. },
  47102. ]
  47103. ))
  47104. characterMakers.push(() => makeCharacter(
  47105. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47106. {
  47107. side: {
  47108. height: math.unit(100, "feet"),
  47109. name: "Side",
  47110. image: {
  47111. source: "./media/characters/linneaus/side.svg",
  47112. extra: 987/807,
  47113. bottom: 47/1034
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Macro",
  47120. height: math.unit(100, "feet"),
  47121. default: true
  47122. },
  47123. ]
  47124. ))
  47125. characterMakers.push(() => makeCharacter(
  47126. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47127. {
  47128. front: {
  47129. height: math.unit(8, "feet"),
  47130. weight: math.unit(1200, "lb"),
  47131. name: "Front",
  47132. image: {
  47133. source: "./media/characters/nyterious-daligdig/front.svg",
  47134. extra: 1284/1094,
  47135. bottom: 84/1368
  47136. }
  47137. },
  47138. back: {
  47139. height: math.unit(8, "feet"),
  47140. weight: math.unit(1200, "lb"),
  47141. name: "Back",
  47142. image: {
  47143. source: "./media/characters/nyterious-daligdig/back.svg",
  47144. extra: 1301/1121,
  47145. bottom: 129/1430
  47146. }
  47147. },
  47148. mouth: {
  47149. height: math.unit(1.464, "feet"),
  47150. name: "Mouth",
  47151. image: {
  47152. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47153. }
  47154. },
  47155. },
  47156. [
  47157. {
  47158. name: "Small",
  47159. height: math.unit(8, "feet"),
  47160. default: true
  47161. },
  47162. {
  47163. name: "Normal",
  47164. height: math.unit(15, "feet")
  47165. },
  47166. {
  47167. name: "Macro",
  47168. height: math.unit(90, "feet")
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47174. {
  47175. front: {
  47176. height: math.unit(7 + 4/12, "feet"),
  47177. weight: math.unit(252, "lb"),
  47178. name: "Front",
  47179. image: {
  47180. source: "./media/characters/bandel/front.svg",
  47181. extra: 1946/1775,
  47182. bottom: 26/1972
  47183. }
  47184. },
  47185. back: {
  47186. height: math.unit(7 + 4/12, "feet"),
  47187. weight: math.unit(252, "lb"),
  47188. name: "Back",
  47189. image: {
  47190. source: "./media/characters/bandel/back.svg",
  47191. extra: 1940/1770,
  47192. bottom: 25/1965
  47193. }
  47194. },
  47195. maw: {
  47196. height: math.unit(2.15, "feet"),
  47197. name: "Maw",
  47198. image: {
  47199. source: "./media/characters/bandel/maw.svg"
  47200. }
  47201. },
  47202. stomach: {
  47203. height: math.unit(1.95, "feet"),
  47204. name: "Stomach",
  47205. image: {
  47206. source: "./media/characters/bandel/stomach.svg"
  47207. }
  47208. },
  47209. },
  47210. [
  47211. {
  47212. name: "Normal",
  47213. height: math.unit(7 + 4/12, "feet"),
  47214. default: true
  47215. },
  47216. ]
  47217. ))
  47218. characterMakers.push(() => makeCharacter(
  47219. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47220. {
  47221. front: {
  47222. height: math.unit(10 + 5/12, "feet"),
  47223. weight: math.unit(773.5, "kg"),
  47224. name: "Front",
  47225. image: {
  47226. source: "./media/characters/zed/front.svg",
  47227. extra: 987/941,
  47228. bottom: 52/1039
  47229. }
  47230. },
  47231. },
  47232. [
  47233. {
  47234. name: "Short",
  47235. height: math.unit(5 + 4/12, "feet")
  47236. },
  47237. {
  47238. name: "Average",
  47239. height: math.unit(10 + 5/12, "feet"),
  47240. default: true
  47241. },
  47242. {
  47243. name: "Mini-Macro",
  47244. height: math.unit(24 + 9/12, "feet")
  47245. },
  47246. {
  47247. name: "Macro",
  47248. height: math.unit(249, "feet")
  47249. },
  47250. {
  47251. name: "Mega-Macro",
  47252. height: math.unit(12490, "feet")
  47253. },
  47254. {
  47255. name: "Giga-Macro",
  47256. height: math.unit(24.9, "miles")
  47257. },
  47258. {
  47259. name: "Tera-Macro",
  47260. height: math.unit(24900, "miles")
  47261. },
  47262. {
  47263. name: "Cosmic Scale",
  47264. height: math.unit(38.9, "lightyears")
  47265. },
  47266. {
  47267. name: "Universal Scale",
  47268. height: math.unit(138e12, "lightyears")
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47274. {
  47275. front: {
  47276. height: math.unit(1561, "inches"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/ivan/front.svg",
  47280. extra: 1126/1071,
  47281. bottom: 26/1152
  47282. }
  47283. },
  47284. back: {
  47285. height: math.unit(1561, "inches"),
  47286. name: "Back",
  47287. image: {
  47288. source: "./media/characters/ivan/back.svg",
  47289. extra: 1134/1079,
  47290. bottom: 30/1164
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Normal",
  47297. height: math.unit(1561, "inches"),
  47298. default: true
  47299. },
  47300. ]
  47301. ))
  47302. characterMakers.push(() => makeCharacter(
  47303. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47304. {
  47305. front: {
  47306. height: math.unit(5 + 7/12, "feet"),
  47307. weight: math.unit(150, "lb"),
  47308. name: "Front",
  47309. image: {
  47310. source: "./media/characters/robin-arctic-hare/front.svg",
  47311. extra: 1148/974,
  47312. bottom: 20/1168
  47313. }
  47314. },
  47315. },
  47316. [
  47317. {
  47318. name: "Normal",
  47319. height: math.unit(5 + 7/12, "feet"),
  47320. default: true
  47321. },
  47322. ]
  47323. ))
  47324. characterMakers.push(() => makeCharacter(
  47325. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47326. {
  47327. side: {
  47328. height: math.unit(5, "feet"),
  47329. name: "Side",
  47330. image: {
  47331. source: "./media/characters/birch/side.svg",
  47332. extra: 985/796,
  47333. bottom: 111/1096
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(5, "feet"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47347. {
  47348. front: {
  47349. height: math.unit(4, "feet"),
  47350. name: "Front",
  47351. image: {
  47352. source: "./media/characters/rasp/front.svg",
  47353. extra: 561/478,
  47354. bottom: 74/635
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(4, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(4 + 6/12, "feet"),
  47371. name: "Front",
  47372. image: {
  47373. source: "./media/characters/agatha/front.svg",
  47374. extra: 947/933,
  47375. bottom: 42/989
  47376. }
  47377. },
  47378. back: {
  47379. height: math.unit(4 + 6/12, "feet"),
  47380. name: "Back",
  47381. image: {
  47382. source: "./media/characters/agatha/back.svg",
  47383. extra: 935/922,
  47384. bottom: 48/983
  47385. }
  47386. },
  47387. },
  47388. [
  47389. {
  47390. name: "Normal",
  47391. height: math.unit(4 + 6 /12, "feet"),
  47392. default: true
  47393. },
  47394. {
  47395. name: "Max Size",
  47396. height: math.unit(500, "feet")
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47402. {
  47403. side: {
  47404. height: math.unit(30, "feet"),
  47405. name: "Side",
  47406. image: {
  47407. source: "./media/characters/roggy/side.svg",
  47408. extra: 909/643,
  47409. bottom: 63/972
  47410. }
  47411. },
  47412. lounging: {
  47413. height: math.unit(20, "feet"),
  47414. name: "Lounging",
  47415. image: {
  47416. source: "./media/characters/roggy/lounging.svg",
  47417. extra: 643/479,
  47418. bottom: 145/788
  47419. }
  47420. },
  47421. handpaw: {
  47422. height: math.unit(13.1, "feet"),
  47423. name: "Handpaw",
  47424. image: {
  47425. source: "./media/characters/roggy/handpaw.svg"
  47426. }
  47427. },
  47428. footpaw: {
  47429. height: math.unit(15.8, "feet"),
  47430. name: "Footpaw",
  47431. image: {
  47432. source: "./media/characters/roggy/footpaw.svg"
  47433. }
  47434. },
  47435. },
  47436. [
  47437. {
  47438. name: "Menacing",
  47439. height: math.unit(30, "feet"),
  47440. default: true
  47441. },
  47442. ]
  47443. ))
  47444. characterMakers.push(() => makeCharacter(
  47445. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47446. {
  47447. front: {
  47448. height: math.unit(5 + 7/12, "feet"),
  47449. weight: math.unit(135, "lb"),
  47450. name: "Front",
  47451. image: {
  47452. source: "./media/characters/naomi/front.svg",
  47453. extra: 1209/1154,
  47454. bottom: 129/1338
  47455. }
  47456. },
  47457. back: {
  47458. height: math.unit(5 + 7/12, "feet"),
  47459. weight: math.unit(135, "lb"),
  47460. name: "Back",
  47461. image: {
  47462. source: "./media/characters/naomi/back.svg",
  47463. extra: 1252/1190,
  47464. bottom: 23/1275
  47465. }
  47466. },
  47467. },
  47468. [
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(5 + 7 /12, "feet"),
  47472. default: true
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47478. {
  47479. side: {
  47480. height: math.unit(35, "meters"),
  47481. name: "Side",
  47482. image: {
  47483. source: "./media/characters/kimpi/side.svg",
  47484. extra: 419/382,
  47485. bottom: 63/482
  47486. }
  47487. },
  47488. hand: {
  47489. height: math.unit(8.96, "meters"),
  47490. name: "Hand",
  47491. image: {
  47492. source: "./media/characters/kimpi/hand.svg"
  47493. }
  47494. },
  47495. },
  47496. [
  47497. {
  47498. name: "Normal",
  47499. height: math.unit(35, "meters"),
  47500. default: true
  47501. },
  47502. ]
  47503. ))
  47504. characterMakers.push(() => makeCharacter(
  47505. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47506. {
  47507. front: {
  47508. height: math.unit(4 + 4/12, "feet"),
  47509. name: "Front",
  47510. image: {
  47511. source: "./media/characters/pepper-purrloin/front.svg",
  47512. extra: 1141/1024,
  47513. bottom: 21/1162
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Normal",
  47520. height: math.unit(4 + 4/12, "feet"),
  47521. default: true
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47527. {
  47528. front: {
  47529. height: math.unit(6 + 2/12, "feet"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/raphael/front.svg",
  47533. extra: 1101/962,
  47534. bottom: 59/1160
  47535. }
  47536. },
  47537. },
  47538. [
  47539. {
  47540. name: "Normal",
  47541. height: math.unit(6 + 2/12, "feet"),
  47542. default: true
  47543. },
  47544. ]
  47545. ))
  47546. characterMakers.push(() => makeCharacter(
  47547. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47548. {
  47549. front: {
  47550. height: math.unit(6, "feet"),
  47551. weight: math.unit(150, "lb"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/victor-williams/front.svg",
  47555. extra: 1894/1825,
  47556. bottom: 67/1961
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(6, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(5 + 8/12, "feet"),
  47573. weight: math.unit(150, "lb"),
  47574. name: "Front",
  47575. image: {
  47576. source: "./media/characters/rachel/front.svg",
  47577. extra: 1902/1787,
  47578. bottom: 46/1948
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Base Height",
  47585. height: math.unit(5 + 8/12, "feet"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Macro",
  47590. height: math.unit(200, "feet")
  47591. },
  47592. {
  47593. name: "Mega Macro",
  47594. height: math.unit(1, "mile")
  47595. },
  47596. {
  47597. name: "Giga Macro",
  47598. height: math.unit(1500, "miles")
  47599. },
  47600. {
  47601. name: "Tera Macro",
  47602. height: math.unit(8000, "miles")
  47603. },
  47604. {
  47605. name: "Tera Macro+",
  47606. height: math.unit(2e5, "miles")
  47607. },
  47608. ]
  47609. ))
  47610. characterMakers.push(() => makeCharacter(
  47611. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47612. {
  47613. front: {
  47614. height: math.unit(6.5, "feet"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47618. extra: 860/819,
  47619. bottom: 307/1167
  47620. }
  47621. },
  47622. back: {
  47623. height: math.unit(6.5, "feet"),
  47624. name: "Back",
  47625. image: {
  47626. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47627. extra: 880/837,
  47628. bottom: 395/1275
  47629. }
  47630. },
  47631. sleeping: {
  47632. height: math.unit(2.79, "feet"),
  47633. name: "Sleeping",
  47634. image: {
  47635. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47636. extra: 465/383,
  47637. bottom: 263/728
  47638. }
  47639. },
  47640. maw: {
  47641. height: math.unit(2.52, "feet"),
  47642. name: "Maw",
  47643. image: {
  47644. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(6.5, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(5, "feet"),
  47661. name: "Front",
  47662. image: {
  47663. source: "./media/characters/nova-nerium/front.svg",
  47664. extra: 1548/1392,
  47665. bottom: 374/1922
  47666. }
  47667. },
  47668. back: {
  47669. height: math.unit(5, "feet"),
  47670. name: "Back",
  47671. image: {
  47672. source: "./media/characters/nova-nerium/back.svg",
  47673. extra: 1658/1468,
  47674. bottom: 257/1915
  47675. }
  47676. },
  47677. },
  47678. [
  47679. {
  47680. name: "Normal",
  47681. height: math.unit(5, "feet"),
  47682. default: true
  47683. },
  47684. ]
  47685. ))
  47686. characterMakers.push(() => makeCharacter(
  47687. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47688. {
  47689. front: {
  47690. height: math.unit(5 + 4/12, "feet"),
  47691. name: "Front",
  47692. image: {
  47693. source: "./media/characters/ashe-pyriph/front.svg",
  47694. extra: 1935/1747,
  47695. bottom: 60/1995
  47696. }
  47697. },
  47698. },
  47699. [
  47700. {
  47701. name: "Normal",
  47702. height: math.unit(5 + 4/12, "feet"),
  47703. default: true
  47704. },
  47705. ]
  47706. ))
  47707. characterMakers.push(() => makeCharacter(
  47708. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47709. {
  47710. front: {
  47711. height: math.unit(8.7, "feet"),
  47712. name: "Front",
  47713. image: {
  47714. source: "./media/characters/flicker-wisp/front.svg",
  47715. extra: 1835/1613,
  47716. bottom: 449/2284
  47717. }
  47718. },
  47719. side: {
  47720. height: math.unit(8.7, "feet"),
  47721. name: "Side",
  47722. image: {
  47723. source: "./media/characters/flicker-wisp/side.svg",
  47724. extra: 1841/1642,
  47725. bottom: 336/2177
  47726. },
  47727. default: true
  47728. },
  47729. maw: {
  47730. height: math.unit(3.35, "feet"),
  47731. name: "Maw",
  47732. image: {
  47733. source: "./media/characters/flicker-wisp/maw.svg",
  47734. extra: 2338/1506,
  47735. bottom: 0/2338
  47736. }
  47737. },
  47738. ovipositor: {
  47739. height: math.unit(4.95, "feet"),
  47740. name: "Ovipositor",
  47741. image: {
  47742. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47743. }
  47744. },
  47745. egg: {
  47746. height: math.unit(0.385, "feet"),
  47747. weight: math.unit(2, "lb"),
  47748. name: "Egg",
  47749. image: {
  47750. source: "./media/characters/flicker-wisp/egg.svg"
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(8.7, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47764. {
  47765. side: {
  47766. height: math.unit(11, "feet"),
  47767. name: "Side",
  47768. image: {
  47769. source: "./media/characters/faefnul/side.svg",
  47770. extra: 1100/1007,
  47771. bottom: 0/1100
  47772. }
  47773. },
  47774. },
  47775. [
  47776. {
  47777. name: "Normal",
  47778. height: math.unit(11, "feet"),
  47779. default: true
  47780. },
  47781. ]
  47782. ))
  47783. characterMakers.push(() => makeCharacter(
  47784. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47785. {
  47786. front: {
  47787. height: math.unit(6 + 2/12, "feet"),
  47788. name: "Front",
  47789. image: {
  47790. source: "./media/characters/shady/front.svg",
  47791. extra: 502/461,
  47792. bottom: 9/511
  47793. }
  47794. },
  47795. kneeling: {
  47796. height: math.unit(4.6, "feet"),
  47797. name: "Kneeling",
  47798. image: {
  47799. source: "./media/characters/shady/kneeling.svg",
  47800. extra: 1328/1219,
  47801. bottom: 117/1445
  47802. }
  47803. },
  47804. maw: {
  47805. height: math.unit(2, "feet"),
  47806. name: "Maw",
  47807. image: {
  47808. source: "./media/characters/shady/maw.svg"
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Nano",
  47815. height: math.unit(1, "mm")
  47816. },
  47817. {
  47818. name: "Micro",
  47819. height: math.unit(12, "mm")
  47820. },
  47821. {
  47822. name: "Tiny",
  47823. height: math.unit(3, "inches")
  47824. },
  47825. {
  47826. name: "Normal",
  47827. height: math.unit(6 + 2/12, "feet"),
  47828. default: true
  47829. },
  47830. {
  47831. name: "Big",
  47832. height: math.unit(15, "feet")
  47833. },
  47834. {
  47835. name: "Macro",
  47836. height: math.unit(150, "feet")
  47837. },
  47838. {
  47839. name: "Titanic",
  47840. height: math.unit(500, "feet")
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(12, "feet"),
  47849. name: "Front",
  47850. image: {
  47851. source: "./media/characters/fenrir/front.svg",
  47852. extra: 968/875,
  47853. bottom: 22/990
  47854. }
  47855. },
  47856. },
  47857. [
  47858. {
  47859. name: "Big",
  47860. height: math.unit(12, "feet"),
  47861. default: true
  47862. },
  47863. ]
  47864. ))
  47865. characterMakers.push(() => makeCharacter(
  47866. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47867. {
  47868. front: {
  47869. height: math.unit(5 + 4/12, "feet"),
  47870. name: "Front",
  47871. image: {
  47872. source: "./media/characters/makar/front.svg",
  47873. extra: 1181/1112,
  47874. bottom: 78/1259
  47875. }
  47876. },
  47877. },
  47878. [
  47879. {
  47880. name: "Normal",
  47881. height: math.unit(5 + 4/12, "feet"),
  47882. default: true
  47883. },
  47884. ]
  47885. ))
  47886. characterMakers.push(() => makeCharacter(
  47887. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47888. {
  47889. front: {
  47890. height: math.unit(5 + 7/12, "feet"),
  47891. name: "Front",
  47892. image: {
  47893. source: "./media/characters/callow/front.svg",
  47894. extra: 1482/1304,
  47895. bottom: 23/1505
  47896. }
  47897. },
  47898. back: {
  47899. height: math.unit(5 + 7/12, "feet"),
  47900. name: "Back",
  47901. image: {
  47902. source: "./media/characters/callow/back.svg",
  47903. extra: 1484/1296,
  47904. bottom: 25/1509
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Micro",
  47911. height: math.unit(3, "inches"),
  47912. default: true
  47913. },
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(5 + 7/12, "feet")
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(6 + 2/12, "feet"),
  47925. name: "Front",
  47926. image: {
  47927. source: "./media/characters/natel/front.svg",
  47928. extra: 1833/1692,
  47929. bottom: 166/1999
  47930. }
  47931. },
  47932. },
  47933. [
  47934. {
  47935. name: "Normal",
  47936. height: math.unit(6 + 2/12, "feet"),
  47937. default: true
  47938. },
  47939. ]
  47940. ))
  47941. characterMakers.push(() => makeCharacter(
  47942. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47943. {
  47944. front: {
  47945. height: math.unit(1.75, "meters"),
  47946. name: "Front",
  47947. image: {
  47948. source: "./media/characters/misu/front.svg",
  47949. extra: 1690/1558,
  47950. bottom: 234/1924
  47951. }
  47952. },
  47953. back: {
  47954. height: math.unit(1.75, "meters"),
  47955. name: "Back",
  47956. image: {
  47957. source: "./media/characters/misu/back.svg",
  47958. extra: 1762/1618,
  47959. bottom: 146/1908
  47960. }
  47961. },
  47962. frontNude: {
  47963. height: math.unit(1.75, "meters"),
  47964. name: "Front (Nude)",
  47965. image: {
  47966. source: "./media/characters/misu/front-nude.svg",
  47967. extra: 1690/1558,
  47968. bottom: 234/1924
  47969. }
  47970. },
  47971. backNude: {
  47972. height: math.unit(1.75, "meters"),
  47973. name: "Back (Nude)",
  47974. image: {
  47975. source: "./media/characters/misu/back-nude.svg",
  47976. extra: 1762/1618,
  47977. bottom: 146/1908
  47978. }
  47979. },
  47980. frontErect: {
  47981. height: math.unit(1.75, "meters"),
  47982. name: "Front (Erect)",
  47983. image: {
  47984. source: "./media/characters/misu/front-erect.svg",
  47985. extra: 1690/1558,
  47986. bottom: 234/1924
  47987. }
  47988. },
  47989. maw: {
  47990. height: math.unit(0.47, "meters"),
  47991. name: "Maw",
  47992. image: {
  47993. source: "./media/characters/misu/maw.svg"
  47994. }
  47995. },
  47996. head: {
  47997. height: math.unit(0.35, "meters"),
  47998. name: "Head",
  47999. image: {
  48000. source: "./media/characters/misu/head.svg"
  48001. }
  48002. },
  48003. rear: {
  48004. height: math.unit(0.47, "meters"),
  48005. name: "Rear",
  48006. image: {
  48007. source: "./media/characters/misu/rear.svg"
  48008. }
  48009. },
  48010. },
  48011. [
  48012. {
  48013. name: "Normal",
  48014. height: math.unit(1.75, "meters")
  48015. },
  48016. {
  48017. name: "Not good for the people",
  48018. height: math.unit(42, "meters")
  48019. },
  48020. {
  48021. name: "Not good for the neighborhood",
  48022. height: math.unit(135, "meters")
  48023. },
  48024. {
  48025. name: "Bit bigger problem",
  48026. height: math.unit(380, "meters"),
  48027. default: true
  48028. },
  48029. {
  48030. name: "Not good for the city",
  48031. height: math.unit(1.5, "km")
  48032. },
  48033. {
  48034. name: "Not good for the county",
  48035. height: math.unit(5.5, "km")
  48036. },
  48037. {
  48038. name: "Not good for the state",
  48039. height: math.unit(25, "km")
  48040. },
  48041. {
  48042. name: "Not good for the country",
  48043. height: math.unit(125, "km")
  48044. },
  48045. {
  48046. name: "Not good for the continent",
  48047. height: math.unit(2100, "km")
  48048. },
  48049. {
  48050. name: "Not good for the planet",
  48051. height: math.unit(35000, "km")
  48052. },
  48053. {
  48054. name: "Just no",
  48055. height: math.unit(8.5e18, "km")
  48056. },
  48057. ]
  48058. ))
  48059. characterMakers.push(() => makeCharacter(
  48060. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48061. {
  48062. front: {
  48063. height: math.unit(6.5, "feet"),
  48064. name: "Front",
  48065. image: {
  48066. source: "./media/characters/poppy/front.svg",
  48067. extra: 1878/1812,
  48068. bottom: 43/1921
  48069. }
  48070. },
  48071. feet: {
  48072. height: math.unit(1.06, "feet"),
  48073. name: "Feet",
  48074. image: {
  48075. source: "./media/characters/poppy/feet.svg",
  48076. extra: 1083/1083,
  48077. bottom: 87/1170
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Human",
  48084. height: math.unit(6.5, "feet")
  48085. },
  48086. {
  48087. name: "Default",
  48088. height: math.unit(300, "feet"),
  48089. default: true
  48090. },
  48091. {
  48092. name: "Huge",
  48093. height: math.unit(850, "feet")
  48094. },
  48095. {
  48096. name: "Mega",
  48097. height: math.unit(8000, "feet")
  48098. },
  48099. {
  48100. name: "Giga",
  48101. height: math.unit(300, "miles")
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48107. {
  48108. bipedal: {
  48109. height: math.unit(7, "feet"),
  48110. name: "Bipedal",
  48111. image: {
  48112. source: "./media/characters/zener/bipedal.svg",
  48113. extra: 874/805,
  48114. bottom: 109/983
  48115. }
  48116. },
  48117. quadrupedal: {
  48118. height: math.unit(4.64, "feet"),
  48119. name: "Quadrupedal",
  48120. image: {
  48121. source: "./media/characters/zener/quadrupedal.svg",
  48122. extra: 638/507,
  48123. bottom: 190/828
  48124. }
  48125. },
  48126. cock: {
  48127. height: math.unit(18, "inches"),
  48128. name: "Cock",
  48129. image: {
  48130. source: "./media/characters/zener/cock.svg"
  48131. }
  48132. },
  48133. },
  48134. [
  48135. {
  48136. name: "Normal",
  48137. height: math.unit(7, "feet"),
  48138. default: true
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48144. {
  48145. nude: {
  48146. height: math.unit(5 + 6/12, "feet"),
  48147. name: "Nude",
  48148. image: {
  48149. source: "./media/characters/charlie-dog/nude.svg",
  48150. extra: 768/734,
  48151. bottom: 26/794
  48152. }
  48153. },
  48154. dressed: {
  48155. height: math.unit(5 + 6/12, "feet"),
  48156. name: "Dressed",
  48157. image: {
  48158. source: "./media/characters/charlie-dog/dressed.svg",
  48159. extra: 768/734,
  48160. bottom: 26/794
  48161. }
  48162. },
  48163. },
  48164. [
  48165. {
  48166. name: "Normal",
  48167. height: math.unit(5 + 6/12, "feet"),
  48168. default: true
  48169. },
  48170. ]
  48171. ))
  48172. characterMakers.push(() => makeCharacter(
  48173. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48174. {
  48175. front: {
  48176. height: math.unit(6 + 4/12, "feet"),
  48177. name: "Front",
  48178. image: {
  48179. source: "./media/characters/ir'istrasz/front.svg",
  48180. extra: 1014/977,
  48181. bottom: 65/1079
  48182. }
  48183. },
  48184. back: {
  48185. height: math.unit(6 + 4/12, "feet"),
  48186. name: "Back",
  48187. image: {
  48188. source: "./media/characters/ir'istrasz/back.svg",
  48189. extra: 1024/992,
  48190. bottom: 34/1058
  48191. }
  48192. },
  48193. },
  48194. [
  48195. {
  48196. name: "Normal",
  48197. height: math.unit(6 + 4/12, "feet"),
  48198. default: true
  48199. },
  48200. ]
  48201. ))
  48202. characterMakers.push(() => makeCharacter(
  48203. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48204. {
  48205. front: {
  48206. height: math.unit(5 + 8/12, "feet"),
  48207. name: "Front",
  48208. image: {
  48209. source: "./media/characters/dee-ditto/front.svg",
  48210. extra: 1874/1785,
  48211. bottom: 68/1942
  48212. }
  48213. },
  48214. back: {
  48215. height: math.unit(5 + 8/12, "feet"),
  48216. name: "Back",
  48217. image: {
  48218. source: "./media/characters/dee-ditto/back.svg",
  48219. extra: 1870/1783,
  48220. bottom: 77/1947
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(5 + 8/12, "feet"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(7 + 6/12, "feet"),
  48237. name: "Front",
  48238. image: {
  48239. source: "./media/characters/fey/front.svg",
  48240. extra: 995/979,
  48241. bottom: 30/1025
  48242. }
  48243. },
  48244. back: {
  48245. height: math.unit(7 + 6/12, "feet"),
  48246. name: "Back",
  48247. image: {
  48248. source: "./media/characters/fey/back.svg",
  48249. extra: 1079/1008,
  48250. bottom: 5/1084
  48251. }
  48252. },
  48253. dressed: {
  48254. height: math.unit(7 + 6/12, "feet"),
  48255. name: "Dressed",
  48256. image: {
  48257. source: "./media/characters/fey/dressed.svg",
  48258. extra: 995/979,
  48259. bottom: 30/1025
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Normal",
  48266. height: math.unit(7 + 6/12, "feet"),
  48267. default: true
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48273. {
  48274. standing: {
  48275. height: math.unit(17, "feet"),
  48276. name: "Standing",
  48277. image: {
  48278. source: "./media/characters/aster/standing.svg",
  48279. extra: 1798/1598,
  48280. bottom: 117/1915
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(17, "feet"),
  48288. default: true
  48289. },
  48290. {
  48291. name: "Homewrecker",
  48292. height: math.unit(95, "feet")
  48293. },
  48294. {
  48295. name: "Planet Devourer",
  48296. height: math.unit(1008000, "miles")
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48302. {
  48303. front: {
  48304. height: math.unit(6 + 5/12, "feet"),
  48305. weight: math.unit(265, "lb"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/devon-childs/front.svg",
  48309. extra: 1795/1721,
  48310. bottom: 41/1836
  48311. }
  48312. },
  48313. side: {
  48314. height: math.unit(6 + 5/12, "feet"),
  48315. weight: math.unit(265, "lb"),
  48316. name: "Side",
  48317. image: {
  48318. source: "./media/characters/devon-childs/side.svg",
  48319. extra: 1812/1738,
  48320. bottom: 30/1842
  48321. }
  48322. },
  48323. back: {
  48324. height: math.unit(6 + 5/12, "feet"),
  48325. weight: math.unit(265, "lb"),
  48326. name: "Back",
  48327. image: {
  48328. source: "./media/characters/devon-childs/back.svg",
  48329. extra: 1808/1735,
  48330. bottom: 23/1831
  48331. }
  48332. },
  48333. hand: {
  48334. height: math.unit(1.464, "feet"),
  48335. name: "Hand",
  48336. image: {
  48337. source: "./media/characters/devon-childs/hand.svg"
  48338. }
  48339. },
  48340. foot: {
  48341. height: math.unit(1.6, "feet"),
  48342. name: "Foot",
  48343. image: {
  48344. source: "./media/characters/devon-childs/foot.svg"
  48345. }
  48346. },
  48347. },
  48348. [
  48349. {
  48350. name: "Micro",
  48351. height: math.unit(7, "cm")
  48352. },
  48353. {
  48354. name: "Normal",
  48355. height: math.unit(6 + 5/12, "feet"),
  48356. default: true
  48357. },
  48358. {
  48359. name: "Macro",
  48360. height: math.unit(154, "feet")
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(6, "feet"),
  48369. weight: math.unit(180, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/lydemox-vir/front.svg",
  48373. extra: 1632/1435,
  48374. bottom: 58/1690
  48375. }
  48376. },
  48377. frontSFW: {
  48378. height: math.unit(6, "feet"),
  48379. weight: math.unit(180, "lb"),
  48380. name: "Front (SFW)",
  48381. image: {
  48382. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48383. extra: 1632/1435,
  48384. bottom: 58/1690
  48385. }
  48386. },
  48387. back: {
  48388. height: math.unit(6, "feet"),
  48389. weight: math.unit(180, "lb"),
  48390. name: "Back",
  48391. image: {
  48392. source: "./media/characters/lydemox-vir/back.svg",
  48393. extra: 1593/1408,
  48394. bottom: 31/1624
  48395. }
  48396. },
  48397. paw: {
  48398. height: math.unit(1.85, "feet"),
  48399. name: "Paw",
  48400. image: {
  48401. source: "./media/characters/lydemox-vir/paw.svg"
  48402. }
  48403. },
  48404. dick: {
  48405. height: math.unit(1.8, "feet"),
  48406. name: "Dick",
  48407. image: {
  48408. source: "./media/characters/lydemox-vir/dick.svg"
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Macro",
  48415. height: math.unit(100, "feet"),
  48416. default: true
  48417. },
  48418. {
  48419. name: "Teramacro",
  48420. height: math.unit(1, "earth")
  48421. },
  48422. {
  48423. name: "Planetary",
  48424. height: math.unit(20, "earths")
  48425. },
  48426. ]
  48427. ))
  48428. characterMakers.push(() => makeCharacter(
  48429. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48430. {
  48431. front: {
  48432. height: math.unit(15 + 8/12, "feet"),
  48433. weight: math.unit(1237, "kg"),
  48434. name: "Front",
  48435. image: {
  48436. source: "./media/characters/mia/front.svg",
  48437. extra: 1573/1446,
  48438. bottom: 58/1631
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Small",
  48445. height: math.unit(9 + 5/12, "feet")
  48446. },
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(15 + 8/12, "feet"),
  48450. default: true
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(10 + 6/12, "feet"),
  48459. weight: math.unit(1.3, "tons"),
  48460. name: "Front",
  48461. image: {
  48462. source: "./media/characters/mr-graves/front.svg",
  48463. extra: 1779/1695,
  48464. bottom: 198/1977
  48465. }
  48466. },
  48467. },
  48468. [
  48469. {
  48470. name: "Normal",
  48471. height: math.unit(10 + 6 /12, "feet"),
  48472. default: true
  48473. },
  48474. ]
  48475. ))
  48476. characterMakers.push(() => makeCharacter(
  48477. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48478. {
  48479. dressedFront: {
  48480. height: math.unit(5 + 8/12, "feet"),
  48481. weight: math.unit(125, "lb"),
  48482. name: "Dressed (Front)",
  48483. image: {
  48484. source: "./media/characters/jess/dressed-front.svg",
  48485. extra: 1176/1152,
  48486. bottom: 42/1218
  48487. }
  48488. },
  48489. dressedSide: {
  48490. height: math.unit(5 + 8/12, "feet"),
  48491. weight: math.unit(125, "lb"),
  48492. name: "Dressed (Side)",
  48493. image: {
  48494. source: "./media/characters/jess/dressed-side.svg",
  48495. extra: 1204/1190,
  48496. bottom: 6/1210
  48497. }
  48498. },
  48499. nudeFront: {
  48500. height: math.unit(5 + 8/12, "feet"),
  48501. weight: math.unit(125, "lb"),
  48502. name: "Nude (Front)",
  48503. image: {
  48504. source: "./media/characters/jess/nude-front.svg",
  48505. extra: 1176/1152,
  48506. bottom: 42/1218
  48507. }
  48508. },
  48509. nudeSide: {
  48510. height: math.unit(5 + 8/12, "feet"),
  48511. weight: math.unit(125, "lb"),
  48512. name: "Nude (Side)",
  48513. image: {
  48514. source: "./media/characters/jess/nude-side.svg",
  48515. extra: 1204/1190,
  48516. bottom: 6/1210
  48517. }
  48518. },
  48519. organsFront: {
  48520. height: math.unit(2.83799342105, "feet"),
  48521. name: "Organs (Front)",
  48522. image: {
  48523. source: "./media/characters/jess/organs-front.svg"
  48524. }
  48525. },
  48526. organsSide: {
  48527. height: math.unit(2.64225290474, "feet"),
  48528. name: "Organs (Side)",
  48529. image: {
  48530. source: "./media/characters/jess/organs-side.svg"
  48531. }
  48532. },
  48533. digestiveTractFront: {
  48534. height: math.unit(2.8106580871, "feet"),
  48535. name: "Digestive Tract (Front)",
  48536. image: {
  48537. source: "./media/characters/jess/digestive-tract-front.svg"
  48538. }
  48539. },
  48540. digestiveTractSide: {
  48541. height: math.unit(2.54365045014, "feet"),
  48542. name: "Digestive Tract (Side)",
  48543. image: {
  48544. source: "./media/characters/jess/digestive-tract-side.svg"
  48545. }
  48546. },
  48547. respiratorySystemFront: {
  48548. height: math.unit(1.11196233456, "feet"),
  48549. name: "Respiratory System (Front)",
  48550. image: {
  48551. source: "./media/characters/jess/respiratory-system-front.svg"
  48552. }
  48553. },
  48554. respiratorySystemSide: {
  48555. height: math.unit(0.89327966297, "feet"),
  48556. name: "Respiratory System (Side)",
  48557. image: {
  48558. source: "./media/characters/jess/respiratory-system-side.svg"
  48559. }
  48560. },
  48561. urinaryTractFront: {
  48562. height: math.unit(1.16126356186, "feet"),
  48563. name: "Urinary Tract (Front)",
  48564. image: {
  48565. source: "./media/characters/jess/urinary-tract-front.svg"
  48566. }
  48567. },
  48568. urinaryTractSide: {
  48569. height: math.unit(1.20910039627, "feet"),
  48570. name: "Urinary Tract (Side)",
  48571. image: {
  48572. source: "./media/characters/jess/urinary-tract-side.svg"
  48573. }
  48574. },
  48575. reproductiveOrgansFront: {
  48576. height: math.unit(0.48422591566, "feet"),
  48577. name: "Reproductive Organs (Front)",
  48578. image: {
  48579. source: "./media/characters/jess/reproductive-organs-front.svg"
  48580. }
  48581. },
  48582. reproductiveOrgansSide: {
  48583. height: math.unit(0.61553314481, "feet"),
  48584. name: "Reproductive Organs (Side)",
  48585. image: {
  48586. source: "./media/characters/jess/reproductive-organs-side.svg"
  48587. }
  48588. },
  48589. breastsFront: {
  48590. height: math.unit(0.47690395121, "feet"),
  48591. name: "Breasts (Front)",
  48592. image: {
  48593. source: "./media/characters/jess/breasts-front.svg"
  48594. }
  48595. },
  48596. breastsSide: {
  48597. height: math.unit(0.30556998307, "feet"),
  48598. name: "Breasts (Side)",
  48599. image: {
  48600. source: "./media/characters/jess/breasts-side.svg"
  48601. }
  48602. },
  48603. heartFront: {
  48604. height: math.unit(0.53011022622, "feet"),
  48605. name: "Heart (Front)",
  48606. image: {
  48607. source: "./media/characters/jess/heart-front.svg"
  48608. }
  48609. },
  48610. heartSide: {
  48611. height: math.unit(0.51790695213, "feet"),
  48612. name: "Heart (Side)",
  48613. image: {
  48614. source: "./media/characters/jess/heart-side.svg"
  48615. }
  48616. },
  48617. earsAndNoseFront: {
  48618. height: math.unit(0.29385483995, "feet"),
  48619. name: "Ears and Nose (Front)",
  48620. image: {
  48621. source: "./media/characters/jess/ears-and-nose-front.svg"
  48622. }
  48623. },
  48624. earsAndNoseSide: {
  48625. height: math.unit(0.18109658741, "feet"),
  48626. name: "Ears and Nose (Side)",
  48627. image: {
  48628. source: "./media/characters/jess/ears-and-nose-side.svg"
  48629. }
  48630. },
  48631. },
  48632. [
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(5 + 8/12, "feet"),
  48636. default: true
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(6, "feet"),
  48645. weight: math.unit(6.64467e-7, "grams"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/wimpering/front.svg",
  48649. extra: 597/587,
  48650. bottom: 34/631
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Micro",
  48657. height: math.unit(0.4, "mm"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48664. {
  48665. front: {
  48666. height: math.unit(5 + 2/12, "feet"),
  48667. weight: math.unit(110, "lb"),
  48668. name: "Front",
  48669. image: {
  48670. source: "./media/characters/keltre/front.svg",
  48671. extra: 1099/1057,
  48672. bottom: 22/1121
  48673. }
  48674. },
  48675. back: {
  48676. height: math.unit(5 + 2/12, "feet"),
  48677. weight: math.unit(110, "lb"),
  48678. name: "Back",
  48679. image: {
  48680. source: "./media/characters/keltre/back.svg",
  48681. extra: 1095/1053,
  48682. bottom: 17/1112
  48683. }
  48684. },
  48685. dressed: {
  48686. height: math.unit(5 + 2/12, "feet"),
  48687. weight: math.unit(110, "lb"),
  48688. name: "Dressed",
  48689. image: {
  48690. source: "./media/characters/keltre/dressed.svg",
  48691. extra: 1099/1057,
  48692. bottom: 22/1121
  48693. }
  48694. },
  48695. winter: {
  48696. height: math.unit(5 + 2/12, "feet"),
  48697. weight: math.unit(110, "lb"),
  48698. name: "Winter",
  48699. image: {
  48700. source: "./media/characters/keltre/winter.svg",
  48701. extra: 1099/1057,
  48702. bottom: 22/1121
  48703. }
  48704. },
  48705. head: {
  48706. height: math.unit(1.61 * 0.86, "feet"),
  48707. name: "Head",
  48708. image: {
  48709. source: "./media/characters/keltre/head.svg",
  48710. extra: 534/421,
  48711. bottom: 0/534
  48712. }
  48713. },
  48714. hand: {
  48715. height: math.unit(1.3 * 0.86, "feet"),
  48716. name: "Hand",
  48717. image: {
  48718. source: "./media/characters/keltre/hand.svg"
  48719. }
  48720. },
  48721. foot: {
  48722. height: math.unit(1.8 * 0.86, "feet"),
  48723. name: "Foot",
  48724. image: {
  48725. source: "./media/characters/keltre/foot.svg"
  48726. }
  48727. },
  48728. },
  48729. [
  48730. {
  48731. name: "Fine",
  48732. height: math.unit(1, "inch")
  48733. },
  48734. {
  48735. name: "Dimnutive",
  48736. height: math.unit(4, "inches")
  48737. },
  48738. {
  48739. name: "Tiny",
  48740. height: math.unit(1, "foot")
  48741. },
  48742. {
  48743. name: "Small",
  48744. height: math.unit(3, "feet")
  48745. },
  48746. {
  48747. name: "Normal",
  48748. height: math.unit(5 + 2/12, "feet"),
  48749. default: true
  48750. },
  48751. ]
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48755. {
  48756. front: {
  48757. height: math.unit(6 + 2/12, "feet"),
  48758. name: "Front",
  48759. image: {
  48760. source: "./media/characters/nox/front.svg",
  48761. extra: 1917/1830,
  48762. bottom: 74/1991
  48763. }
  48764. },
  48765. back: {
  48766. height: math.unit(6 + 2/12, "feet"),
  48767. name: "Back",
  48768. image: {
  48769. source: "./media/characters/nox/back.svg",
  48770. extra: 1896/1815,
  48771. bottom: 21/1917
  48772. }
  48773. },
  48774. head: {
  48775. height: math.unit(1.1, "feet"),
  48776. name: "Head",
  48777. image: {
  48778. source: "./media/characters/nox/head.svg",
  48779. extra: 874/704,
  48780. bottom: 0/874
  48781. }
  48782. },
  48783. tattoo: {
  48784. height: math.unit(0.729, "feet"),
  48785. name: "Tattoo",
  48786. image: {
  48787. source: "./media/characters/nox/tattoo.svg"
  48788. }
  48789. },
  48790. },
  48791. [
  48792. {
  48793. name: "Normal",
  48794. height: math.unit(6 + 2/12, "feet")
  48795. },
  48796. {
  48797. name: "Gigamacro",
  48798. height: math.unit(2, "earths"),
  48799. default: true
  48800. },
  48801. {
  48802. name: "Cosmic",
  48803. height: math.unit(867, "yottameters")
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(6, "feet"),
  48812. weight: math.unit(150, "lb"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/caspian/front.svg",
  48816. extra: 1443/1359,
  48817. bottom: 0/1443
  48818. }
  48819. },
  48820. back: {
  48821. height: math.unit(6, "feet"),
  48822. weight: math.unit(150, "lb"),
  48823. name: "Back",
  48824. image: {
  48825. source: "./media/characters/caspian/back.svg",
  48826. extra: 1379/1309,
  48827. bottom: 0/1379
  48828. }
  48829. },
  48830. head: {
  48831. height: math.unit(0.9, "feet"),
  48832. name: "Head",
  48833. image: {
  48834. source: "./media/characters/caspian/head.svg",
  48835. extra: 692/492,
  48836. bottom: 0/692
  48837. }
  48838. },
  48839. headAlt: {
  48840. height: math.unit(0.95, "feet"),
  48841. name: "Head (Alt)",
  48842. image: {
  48843. source: "./media/characters/caspian/head-alt.svg",
  48844. extra: 668/508,
  48845. bottom: 0/668
  48846. }
  48847. },
  48848. hand: {
  48849. height: math.unit(0.8, "feet"),
  48850. name: "Hand",
  48851. image: {
  48852. source: "./media/characters/caspian/hand.svg"
  48853. }
  48854. },
  48855. paw: {
  48856. height: math.unit(0.95, "feet"),
  48857. name: "Paw",
  48858. image: {
  48859. source: "./media/characters/caspian/paw.svg"
  48860. }
  48861. },
  48862. },
  48863. [
  48864. {
  48865. name: "Normal",
  48866. height: math.unit(162, "feet"),
  48867. default: true
  48868. },
  48869. ]
  48870. ))
  48871. characterMakers.push(() => makeCharacter(
  48872. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48873. {
  48874. front: {
  48875. height: math.unit(6, "feet"),
  48876. name: "Front",
  48877. image: {
  48878. source: "./media/characters/myra-aisling/front.svg",
  48879. extra: 1268/1166,
  48880. bottom: 73/1341
  48881. }
  48882. },
  48883. back: {
  48884. height: math.unit(6, "feet"),
  48885. name: "Back",
  48886. image: {
  48887. source: "./media/characters/myra-aisling/back.svg",
  48888. extra: 1249/1149,
  48889. bottom: 79/1328
  48890. }
  48891. },
  48892. dressed: {
  48893. height: math.unit(6, "feet"),
  48894. name: "Dressed",
  48895. image: {
  48896. source: "./media/characters/myra-aisling/dressed.svg",
  48897. extra: 1290/1189,
  48898. bottom: 47/1337
  48899. }
  48900. },
  48901. hand: {
  48902. height: math.unit(1.1, "feet"),
  48903. name: "Hand",
  48904. image: {
  48905. source: "./media/characters/myra-aisling/hand.svg"
  48906. }
  48907. },
  48908. paw: {
  48909. height: math.unit(1.23, "feet"),
  48910. name: "Paw",
  48911. image: {
  48912. source: "./media/characters/myra-aisling/paw.svg"
  48913. }
  48914. },
  48915. },
  48916. [
  48917. {
  48918. name: "Normal",
  48919. height: math.unit(160, "feet"),
  48920. default: true
  48921. },
  48922. ]
  48923. ))
  48924. characterMakers.push(() => makeCharacter(
  48925. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48926. {
  48927. front: {
  48928. height: math.unit(6, "feet"),
  48929. name: "Front",
  48930. image: {
  48931. source: "./media/characters/tenley-sidero/front.svg",
  48932. extra: 1365/1276,
  48933. bottom: 47/1412
  48934. }
  48935. },
  48936. back: {
  48937. height: math.unit(6, "feet"),
  48938. name: "Back",
  48939. image: {
  48940. source: "./media/characters/tenley-sidero/back.svg",
  48941. extra: 1383/1283,
  48942. bottom: 35/1418
  48943. }
  48944. },
  48945. dressed: {
  48946. height: math.unit(6, "feet"),
  48947. name: "Dressed",
  48948. image: {
  48949. source: "./media/characters/tenley-sidero/dressed.svg",
  48950. extra: 1364/1275,
  48951. bottom: 42/1406
  48952. }
  48953. },
  48954. head: {
  48955. height: math.unit(1.47, "feet"),
  48956. name: "Head",
  48957. image: {
  48958. source: "./media/characters/tenley-sidero/head.svg",
  48959. extra: 610/490,
  48960. bottom: 0/610
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(154, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5, "inches"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/mallory/front.svg",
  48980. extra: 1919/1678,
  48981. bottom: 29/1948
  48982. }
  48983. },
  48984. hand: {
  48985. height: math.unit(0.73, "inches"),
  48986. name: "Hand",
  48987. image: {
  48988. source: "./media/characters/mallory/hand.svg"
  48989. }
  48990. },
  48991. paw: {
  48992. height: math.unit(0.68, "inches"),
  48993. name: "Paw",
  48994. image: {
  48995. source: "./media/characters/mallory/paw.svg"
  48996. }
  48997. },
  48998. },
  48999. [
  49000. {
  49001. name: "Small",
  49002. height: math.unit(5, "inches"),
  49003. default: true
  49004. },
  49005. ]
  49006. ))
  49007. characterMakers.push(() => makeCharacter(
  49008. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49009. {
  49010. naked: {
  49011. height: math.unit(6, "feet"),
  49012. name: "Naked",
  49013. image: {
  49014. source: "./media/characters/mab/naked.svg",
  49015. extra: 1855/1757,
  49016. bottom: 208/2063
  49017. }
  49018. },
  49019. outside: {
  49020. height: math.unit(6, "feet"),
  49021. name: "Outside",
  49022. image: {
  49023. source: "./media/characters/mab/outside.svg",
  49024. extra: 1855/1757,
  49025. bottom: 208/2063
  49026. }
  49027. },
  49028. party: {
  49029. height: math.unit(6, "feet"),
  49030. name: "Party",
  49031. image: {
  49032. source: "./media/characters/mab/party.svg",
  49033. extra: 1855/1757,
  49034. bottom: 208/2063
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(165, "feet"),
  49042. default: true
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49048. {
  49049. front: {
  49050. height: math.unit(12, "feet"),
  49051. weight: math.unit(4000, "lb"),
  49052. name: "Front",
  49053. image: {
  49054. source: "./media/characters/winter/front.svg",
  49055. extra: 1286/943,
  49056. bottom: 112/1398
  49057. }
  49058. },
  49059. frontNsfw: {
  49060. height: math.unit(12, "feet"),
  49061. weight: math.unit(4000, "lb"),
  49062. name: "Front (NSFW)",
  49063. image: {
  49064. source: "./media/characters/winter/front-nsfw.svg",
  49065. extra: 1286/943,
  49066. bottom: 112/1398
  49067. }
  49068. },
  49069. dick: {
  49070. height: math.unit(3.79, "feet"),
  49071. name: "Dick",
  49072. image: {
  49073. source: "./media/characters/winter/dick.svg"
  49074. }
  49075. },
  49076. },
  49077. [
  49078. {
  49079. name: "Big",
  49080. height: math.unit(12, "feet"),
  49081. default: true
  49082. },
  49083. ]
  49084. ))
  49085. characterMakers.push(() => makeCharacter(
  49086. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49087. {
  49088. front: {
  49089. height: math.unit(4.1, "inches"),
  49090. name: "Front",
  49091. image: {
  49092. source: "./media/characters/alto/front.svg",
  49093. extra: 736/627,
  49094. bottom: 90/826
  49095. }
  49096. },
  49097. },
  49098. [
  49099. {
  49100. name: "Normal",
  49101. height: math.unit(4.1, "inches"),
  49102. default: true
  49103. },
  49104. ]
  49105. ))
  49106. characterMakers.push(() => makeCharacter(
  49107. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49108. {
  49109. sitting: {
  49110. height: math.unit(3, "feet"),
  49111. name: "Sitting",
  49112. image: {
  49113. source: "./media/characters/ratstrid-v/sitting.svg",
  49114. extra: 355/310,
  49115. bottom: 136/491
  49116. }
  49117. },
  49118. },
  49119. [
  49120. {
  49121. name: "Normal",
  49122. height: math.unit(3, "feet"),
  49123. default: true
  49124. },
  49125. ]
  49126. ))
  49127. characterMakers.push(() => makeCharacter(
  49128. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49129. {
  49130. back: {
  49131. height: math.unit(6, "feet"),
  49132. weight: math.unit(350, "lb"),
  49133. name: "Back",
  49134. image: {
  49135. source: "./media/characters/siz/back.svg",
  49136. extra: 1449/1274,
  49137. bottom: 13/1462
  49138. }
  49139. },
  49140. },
  49141. [
  49142. {
  49143. name: "Over-Overcompressed",
  49144. height: math.unit(8, "feet")
  49145. },
  49146. {
  49147. name: "Overcompressed",
  49148. height: math.unit(32, "feet")
  49149. },
  49150. {
  49151. name: "Compressed",
  49152. height: math.unit(128, "feet"),
  49153. default: true
  49154. },
  49155. {
  49156. name: "Half-Compressed",
  49157. height: math.unit(512, "feet")
  49158. },
  49159. {
  49160. name: "Quarter-Compressed",
  49161. height: math.unit(2048, "feet")
  49162. },
  49163. {
  49164. name: "Uncompressed?",
  49165. height: math.unit(8192, "feet")
  49166. },
  49167. ]
  49168. ))
  49169. characterMakers.push(() => makeCharacter(
  49170. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49171. {
  49172. front: {
  49173. height: math.unit(5 + 9/12, "feet"),
  49174. weight: math.unit(150, "lb"),
  49175. name: "Front",
  49176. image: {
  49177. source: "./media/characters/ven/front.svg",
  49178. extra: 1372/1320,
  49179. bottom: 73/1445
  49180. }
  49181. },
  49182. side: {
  49183. height: math.unit(5 + 9/12, "feet"),
  49184. weight: math.unit(1150, "lb"),
  49185. name: "Side",
  49186. image: {
  49187. source: "./media/characters/ven/side.svg",
  49188. extra: 1119/1070,
  49189. bottom: 42/1161
  49190. },
  49191. default: true
  49192. },
  49193. },
  49194. [
  49195. {
  49196. name: "Normal",
  49197. height: math.unit(5 + 9/12, "feet"),
  49198. default: true
  49199. },
  49200. ]
  49201. ))
  49202. characterMakers.push(() => makeCharacter(
  49203. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49204. {
  49205. front: {
  49206. height: math.unit(12, "feet"),
  49207. weight: math.unit(1000, "kg"),
  49208. name: "Front",
  49209. image: {
  49210. source: "./media/characters/maple/front.svg",
  49211. extra: 1193/1081,
  49212. bottom: 22/1215
  49213. }
  49214. },
  49215. },
  49216. [
  49217. {
  49218. name: "Compressed",
  49219. height: math.unit(7, "feet")
  49220. },
  49221. {
  49222. name: "Normal",
  49223. height: math.unit(12, "feet"),
  49224. default: true
  49225. },
  49226. ]
  49227. ))
  49228. characterMakers.push(() => makeCharacter(
  49229. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49230. {
  49231. front: {
  49232. height: math.unit(9, "feet"),
  49233. weight: math.unit(1500, "lb"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/nora/front.svg",
  49237. extra: 1348/1286,
  49238. bottom: 218/1566
  49239. }
  49240. },
  49241. erect: {
  49242. height: math.unit(9, "feet"),
  49243. weight: math.unit(11500, "lb"),
  49244. name: "Erect",
  49245. image: {
  49246. source: "./media/characters/nora/erect.svg",
  49247. extra: 1488/1433,
  49248. bottom: 133/1621
  49249. }
  49250. },
  49251. },
  49252. [
  49253. {
  49254. name: "Normal",
  49255. height: math.unit(9, "feet"),
  49256. default: true
  49257. },
  49258. ]
  49259. ))
  49260. characterMakers.push(() => makeCharacter(
  49261. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49262. {
  49263. front: {
  49264. height: math.unit(25, "feet"),
  49265. weight: math.unit(27500, "lb"),
  49266. name: "Front",
  49267. image: {
  49268. source: "./media/characters/north-caudin/front.svg",
  49269. extra: 1184/1082,
  49270. bottom: 23/1207
  49271. }
  49272. },
  49273. },
  49274. [
  49275. {
  49276. name: "Compressed",
  49277. height: math.unit(10, "feet")
  49278. },
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(25, "feet"),
  49282. default: true
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49288. {
  49289. front: {
  49290. height: math.unit(9, "feet"),
  49291. weight: math.unit(1250, "lb"),
  49292. name: "Front",
  49293. image: {
  49294. source: "./media/characters/merrian/front.svg",
  49295. extra: 2393/2304,
  49296. bottom: 40/2433
  49297. }
  49298. },
  49299. },
  49300. [
  49301. {
  49302. name: "Normal",
  49303. height: math.unit(9, "feet"),
  49304. default: true
  49305. },
  49306. ]
  49307. ))
  49308. characterMakers.push(() => makeCharacter(
  49309. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49310. {
  49311. front: {
  49312. height: math.unit(9, "feet"),
  49313. weight: math.unit(1000, "lb"),
  49314. name: "Front",
  49315. image: {
  49316. source: "./media/characters/hazel/front.svg",
  49317. extra: 2351/2298,
  49318. bottom: 38/2389
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(9, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49332. {
  49333. front: {
  49334. height: math.unit(13, "feet"),
  49335. weight: math.unit(3200, "lb"),
  49336. name: "Front",
  49337. image: {
  49338. source: "./media/characters/emma/front.svg",
  49339. extra: 2263/2029,
  49340. bottom: 68/2331
  49341. }
  49342. },
  49343. },
  49344. [
  49345. {
  49346. name: "Normal",
  49347. height: math.unit(13, "feet"),
  49348. default: true
  49349. },
  49350. ]
  49351. ))
  49352. characterMakers.push(() => makeCharacter(
  49353. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49354. {
  49355. front: {
  49356. height: math.unit(11 + 9/12, "feet"),
  49357. weight: math.unit(2500, "lb"),
  49358. name: "Front",
  49359. image: {
  49360. source: "./media/characters/ilumina/front.svg",
  49361. extra: 2248/2209,
  49362. bottom: 164/2412
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(11 + 9/12, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49376. {
  49377. front: {
  49378. height: math.unit(8 + 10/12, "feet"),
  49379. weight: math.unit(1350, "lb"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/moonshine/front.svg",
  49383. extra: 2395/2288,
  49384. bottom: 40/2435
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Normal",
  49391. height: math.unit(8 + 10/12, "feet"),
  49392. default: true
  49393. },
  49394. ]
  49395. ))
  49396. characterMakers.push(() => makeCharacter(
  49397. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49398. {
  49399. front: {
  49400. height: math.unit(14, "feet"),
  49401. weight: math.unit(3400, "lb"),
  49402. name: "Front",
  49403. image: {
  49404. source: "./media/characters/aletia/front.svg",
  49405. extra: 1185/1052,
  49406. bottom: 21/1206
  49407. }
  49408. },
  49409. },
  49410. [
  49411. {
  49412. name: "Compressed",
  49413. height: math.unit(8, "feet")
  49414. },
  49415. {
  49416. name: "Normal",
  49417. height: math.unit(14, "feet"),
  49418. default: true
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(17, "feet"),
  49427. weight: math.unit(6500, "lb"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/deidra/front.svg",
  49431. extra: 1201/1081,
  49432. bottom: 16/1217
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Compressed",
  49439. height: math.unit(9 + 6/12, "feet")
  49440. },
  49441. {
  49442. name: "Normal",
  49443. height: math.unit(17, "feet"),
  49444. default: true
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49450. {
  49451. front: {
  49452. height: math.unit(7 + 4/12, "feet"),
  49453. weight: math.unit(280, "lb"),
  49454. name: "Front",
  49455. image: {
  49456. source: "./media/characters/freki-yrmori/front.svg",
  49457. extra: 1286/1182,
  49458. bottom: 29/1315
  49459. }
  49460. },
  49461. maw: {
  49462. height: math.unit(0.9, "feet"),
  49463. name: "Maw",
  49464. image: {
  49465. source: "./media/characters/freki-yrmori/maw.svg"
  49466. }
  49467. },
  49468. },
  49469. [
  49470. {
  49471. name: "Normal",
  49472. height: math.unit(7 + 4/12, "feet"),
  49473. default: true
  49474. },
  49475. {
  49476. name: "Macro",
  49477. height: math.unit(38.5, "meters")
  49478. },
  49479. ]
  49480. ))
  49481. characterMakers.push(() => makeCharacter(
  49482. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49483. {
  49484. side: {
  49485. height: math.unit(47.2, "meters"),
  49486. weight: math.unit(10000, "tons"),
  49487. name: "Side",
  49488. image: {
  49489. source: "./media/characters/aetherios/side.svg",
  49490. extra: 2363/642,
  49491. bottom: 221/2584
  49492. }
  49493. },
  49494. top: {
  49495. height: math.unit(240, "meters"),
  49496. weight: math.unit(10000, "tons"),
  49497. name: "Top",
  49498. image: {
  49499. source: "./media/characters/aetherios/top.svg"
  49500. }
  49501. },
  49502. bottom: {
  49503. height: math.unit(240, "meters"),
  49504. weight: math.unit(10000, "tons"),
  49505. name: "Bottom",
  49506. image: {
  49507. source: "./media/characters/aetherios/bottom.svg"
  49508. }
  49509. },
  49510. head: {
  49511. height: math.unit(38.6, "meters"),
  49512. name: "Head",
  49513. image: {
  49514. source: "./media/characters/aetherios/head.svg",
  49515. extra: 1335/1112,
  49516. bottom: 0/1335
  49517. }
  49518. },
  49519. maw: {
  49520. height: math.unit(16.37, "meters"),
  49521. name: "Maw",
  49522. image: {
  49523. source: "./media/characters/aetherios/maw.svg",
  49524. extra: 748/637,
  49525. bottom: 0/748
  49526. }
  49527. },
  49528. forepaw: {
  49529. height: math.unit(18, "meters"),
  49530. name: "Forepaw",
  49531. image: {
  49532. source: "./media/characters/aetherios/forepaw.svg"
  49533. }
  49534. },
  49535. hindpaw: {
  49536. height: math.unit(23, "meters"),
  49537. name: "Hindpaw",
  49538. image: {
  49539. source: "./media/characters/aetherios/hindpaw.svg"
  49540. }
  49541. },
  49542. genitals: {
  49543. height: math.unit(42, "meters"),
  49544. name: "Genitals",
  49545. image: {
  49546. source: "./media/characters/aetherios/genitals.svg"
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(47.2, "meters"),
  49554. default: true
  49555. },
  49556. {
  49557. name: "Macro",
  49558. height: math.unit(160, "meters")
  49559. },
  49560. {
  49561. name: "Mega",
  49562. height: math.unit(1.87, "km")
  49563. },
  49564. {
  49565. name: "Giga",
  49566. height: math.unit(40000, "km")
  49567. },
  49568. {
  49569. name: "Stellar",
  49570. height: math.unit(158000000, "km")
  49571. },
  49572. {
  49573. name: "Cosmic",
  49574. height: math.unit(9.46e12, "km")
  49575. },
  49576. ]
  49577. ))
  49578. //characters
  49579. function makeCharacters() {
  49580. const results = [];
  49581. characterMakers.forEach(character => {
  49582. results.push(character());
  49583. });
  49584. return results;
  49585. }