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.
 
 
 

50316 lines
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon",
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon",
  358. "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. }
  1926. //species
  1927. function getSpeciesInfo(speciesList) {
  1928. let result = new Set();
  1929. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1930. result.add(entry)
  1931. });
  1932. return Array.from(result);
  1933. };
  1934. function getSpeciesInfoHelper(species) {
  1935. if (!speciesData[species]) {
  1936. console.warn(species + " doesn't exist");
  1937. return [];
  1938. }
  1939. if (speciesData[species].parents) {
  1940. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1941. } else {
  1942. return [species];
  1943. }
  1944. }
  1945. characterMakers.push(() => makeCharacter(
  1946. {
  1947. name: "Fen",
  1948. species: ["crux"],
  1949. description: {
  1950. title: "Bio",
  1951. text: "Very furry. Sheds on everything."
  1952. },
  1953. tags: [
  1954. "anthro",
  1955. "goo"
  1956. ]
  1957. },
  1958. {
  1959. front: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(2400, "lb"),
  1962. name: "Front",
  1963. image: {
  1964. source: "./media/characters/fen/front.svg",
  1965. extra: 1804/1562,
  1966. bottom: 205/2009
  1967. }
  1968. },
  1969. diving: {
  1970. height: math.unit(4.9, "meters"),
  1971. weight: math.unit(2400, "lb"),
  1972. name: "Diving",
  1973. image: {
  1974. source: "./media/characters/fen/diving.svg"
  1975. }
  1976. },
  1977. goo: {
  1978. height: math.unit(12, "feet"),
  1979. weight: math.unit(3600, "lb"),
  1980. volume: math.unit(1000, "liters"),
  1981. capacity: math.unit(6, "people"),
  1982. name: "Goo",
  1983. image: {
  1984. source: "./media/characters/fen/goo.svg",
  1985. extra: 1307/1071,
  1986. bottom: 134/1441
  1987. }
  1988. },
  1989. maw: {
  1990. height: math.unit(5.03, "feet"),
  1991. name: "Maw",
  1992. image: {
  1993. source: "./media/characters/fen/maw.svg"
  1994. }
  1995. },
  1996. gooCeiling: {
  1997. height: math.unit(6.6, "feet"),
  1998. weight: math.unit(3000, "lb"),
  1999. volume: math.unit(1000, "liters"),
  2000. capacity: math.unit(6, "people"),
  2001. name: "Goo (Ceiling)",
  2002. image: {
  2003. source: "./media/characters/fen/goo-ceiling.svg"
  2004. }
  2005. },
  2006. back: {
  2007. height: math.unit(12, "feet"),
  2008. weight: math.unit(2400, "lb"),
  2009. name: "Back",
  2010. image: {
  2011. source: "./media/characters/fen/back.svg",
  2012. },
  2013. info: {
  2014. description: {
  2015. mode: "append",
  2016. text: "\n\nHe is not currently looking at you."
  2017. }
  2018. }
  2019. },
  2020. full: {
  2021. height: math.unit(1.6, "meter"),
  2022. weight: math.unit(3200, "lb"),
  2023. name: "Full",
  2024. image: {
  2025. source: "./media/characters/fen/full.svg",
  2026. extra: 1133/859,
  2027. bottom: 145/1278
  2028. },
  2029. info: {
  2030. description: {
  2031. mode: "append",
  2032. text: "\n\nMunch."
  2033. }
  2034. }
  2035. },
  2036. gooLounging: {
  2037. height: math.unit(4.53, "feet"),
  2038. weight: math.unit(3000, "lb"),
  2039. capacity: math.unit(6, "people"),
  2040. name: "Goo (Lounging)",
  2041. image: {
  2042. source: "./media/characters/fen/goo-lounging.svg",
  2043. bottom: 116 / 613
  2044. }
  2045. },
  2046. lounging: {
  2047. height: math.unit(10.52, "feet"),
  2048. weight: math.unit(2400, "lb"),
  2049. name: "Lounging",
  2050. image: {
  2051. source: "./media/characters/fen/lounging.svg"
  2052. }
  2053. },
  2054. },
  2055. [
  2056. {
  2057. name: "Small",
  2058. height: math.unit(2.2428, "meter")
  2059. },
  2060. {
  2061. name: "Normal",
  2062. height: math.unit(12, "feet"),
  2063. default: true,
  2064. },
  2065. {
  2066. name: "Big",
  2067. height: math.unit(20, "feet")
  2068. },
  2069. {
  2070. name: "Minimacro",
  2071. height: math.unit(40, "feet"),
  2072. info: {
  2073. description: {
  2074. mode: "append",
  2075. text: "\n\nTOO DAMN BIG"
  2076. }
  2077. }
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(100, "feet"),
  2082. info: {
  2083. description: {
  2084. mode: "append",
  2085. text: "\n\nTOO DAMN BIG"
  2086. }
  2087. }
  2088. },
  2089. {
  2090. name: "Megamacro",
  2091. height: math.unit(2, "miles")
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(10, "earths")
  2096. },
  2097. ]
  2098. ))
  2099. characterMakers.push(() => makeCharacter(
  2100. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2101. {
  2102. front: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Front",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/front.svg",
  2108. bottom: 0.01,
  2109. extra: 2154 / 2081
  2110. }
  2111. },
  2112. frontAlt: {
  2113. height: math.unit(183, "cm"),
  2114. weight: math.unit(80, "kg"),
  2115. name: "Front (alt)",
  2116. image: {
  2117. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2118. }
  2119. },
  2120. back: {
  2121. height: math.unit(183, "cm"),
  2122. weight: math.unit(80, "kg"),
  2123. name: "Back",
  2124. image: {
  2125. source: "./media/characters/sofia-fluttertail/back.svg"
  2126. }
  2127. },
  2128. kneeling: {
  2129. height: math.unit(125, "cm"),
  2130. weight: math.unit(80, "kg"),
  2131. name: "Kneeling",
  2132. image: {
  2133. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2134. extra: 1033 / 977,
  2135. bottom: 23.7 / 1057
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(183 / 5, "cm"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/sofia-fluttertail/maw.svg"
  2143. }
  2144. },
  2145. mawcloseup: {
  2146. height: math.unit(183 / 5 * 0.41, "cm"),
  2147. name: "Maw (Closeup)",
  2148. image: {
  2149. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2150. }
  2151. },
  2152. paws: {
  2153. height: math.unit(1.17, "feet"),
  2154. name: "Paws",
  2155. image: {
  2156. source: "./media/characters/sofia-fluttertail/paws.svg",
  2157. extra: 851 / 851,
  2158. bottom: 17 / 868
  2159. }
  2160. },
  2161. },
  2162. [
  2163. {
  2164. name: "Normal",
  2165. height: math.unit(1.83, "meter")
  2166. },
  2167. {
  2168. name: "Size Thief",
  2169. height: math.unit(18, "feet")
  2170. },
  2171. {
  2172. name: "50 Foot Collie",
  2173. height: math.unit(50, "feet")
  2174. },
  2175. {
  2176. name: "Macro",
  2177. height: math.unit(96, "feet"),
  2178. default: true
  2179. },
  2180. {
  2181. name: "Megamerger",
  2182. height: math.unit(650, "feet")
  2183. },
  2184. ]
  2185. ))
  2186. characterMakers.push(() => makeCharacter(
  2187. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2188. {
  2189. front: {
  2190. height: math.unit(7, "feet"),
  2191. weight: math.unit(100, "kg"),
  2192. name: "Front",
  2193. image: {
  2194. source: "./media/characters/march/front.svg",
  2195. extra: 1992/1851,
  2196. bottom: 39/2031
  2197. }
  2198. },
  2199. foot: {
  2200. height: math.unit(0.9, "feet"),
  2201. name: "Foot",
  2202. image: {
  2203. source: "./media/characters/march/foot.svg"
  2204. }
  2205. },
  2206. },
  2207. [
  2208. {
  2209. name: "Normal",
  2210. height: math.unit(7.9, "feet")
  2211. },
  2212. {
  2213. name: "Macro",
  2214. height: math.unit(220, "meters")
  2215. },
  2216. {
  2217. name: "Megamacro",
  2218. height: math.unit(2.98, "km"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Gigamacro",
  2223. height: math.unit(15963, "km")
  2224. },
  2225. {
  2226. name: "Teramacro",
  2227. height: math.unit(2980000000, "km")
  2228. },
  2229. {
  2230. name: "Examacro",
  2231. height: math.unit(250, "parsecs")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(6, "feet"),
  2240. weight: math.unit(60, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/noir/front.svg",
  2244. extra: 1,
  2245. bottom: 0.032
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(6.6, "feet")
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(500, "feet")
  2257. },
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(2.5, "km"),
  2261. default: true
  2262. },
  2263. {
  2264. name: "Gigamacro",
  2265. height: math.unit(22500, "km")
  2266. },
  2267. {
  2268. name: "Teramacro",
  2269. height: math.unit(2500000000, "km")
  2270. },
  2271. {
  2272. name: "Examacro",
  2273. height: math.unit(200, "parsecs")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/okuri/front.svg",
  2286. extra: 739/665,
  2287. bottom: 39/778
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/okuri/back.svg",
  2296. extra: 734/653,
  2297. bottom: 13/747
  2298. }
  2299. },
  2300. sitting: {
  2301. height: math.unit(2.95, "feet"),
  2302. weight: math.unit(100, "kg"),
  2303. name: "Sitting",
  2304. image: {
  2305. source: "./media/characters/okuri/sitting.svg",
  2306. extra: 370/318,
  2307. bottom: 99/469
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Smallest",
  2314. height: math.unit(5 + 2/12, "feet")
  2315. },
  2316. {
  2317. name: "Smaller",
  2318. height: math.unit(300, "feet")
  2319. },
  2320. {
  2321. name: "Small",
  2322. height: math.unit(1000, "feet")
  2323. },
  2324. {
  2325. name: "Macro",
  2326. height: math.unit(1, "mile")
  2327. },
  2328. {
  2329. name: "Mega Macro (Small)",
  2330. height: math.unit(20, "km")
  2331. },
  2332. {
  2333. name: "Mega Macro (Large)",
  2334. height: math.unit(600, "km")
  2335. },
  2336. {
  2337. name: "Giga Macro",
  2338. height: math.unit(10000, "km")
  2339. },
  2340. {
  2341. name: "Normal",
  2342. height: math.unit(577560, "km"),
  2343. default: true
  2344. },
  2345. {
  2346. name: "Large",
  2347. height: math.unit(4, "galaxies")
  2348. },
  2349. {
  2350. name: "Largest",
  2351. height: math.unit(15, "multiverses")
  2352. },
  2353. ]
  2354. ))
  2355. characterMakers.push(() => makeCharacter(
  2356. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2357. {
  2358. front: {
  2359. height: math.unit(7, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Front",
  2362. image: {
  2363. source: "./media/characters/manny/front.svg",
  2364. extra: 1,
  2365. bottom: 0.06
  2366. }
  2367. },
  2368. back: {
  2369. height: math.unit(7, "feet"),
  2370. weight: math.unit(100, "kg"),
  2371. name: "Back",
  2372. image: {
  2373. source: "./media/characters/manny/back.svg",
  2374. extra: 1,
  2375. bottom: 0.014
  2376. }
  2377. },
  2378. },
  2379. [
  2380. {
  2381. name: "Normal",
  2382. height: math.unit(7, "feet"),
  2383. },
  2384. {
  2385. name: "Macro",
  2386. height: math.unit(78, "feet"),
  2387. default: true
  2388. },
  2389. {
  2390. name: "Macro+",
  2391. height: math.unit(300, "meters")
  2392. },
  2393. {
  2394. name: "Macro++",
  2395. height: math.unit(2400, "meters")
  2396. },
  2397. {
  2398. name: "Megamacro",
  2399. height: math.unit(5167, "meters")
  2400. },
  2401. {
  2402. name: "Gigamacro",
  2403. height: math.unit(41769, "miles")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/adake/front-1.svg"
  2416. }
  2417. },
  2418. frontAlt: {
  2419. height: math.unit(7, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Front (Alt)",
  2422. image: {
  2423. source: "./media/characters/adake/front-2.svg",
  2424. extra: 1,
  2425. bottom: 0.01
  2426. }
  2427. },
  2428. back: {
  2429. height: math.unit(7, "feet"),
  2430. weight: math.unit(100, "kg"),
  2431. name: "Back",
  2432. image: {
  2433. source: "./media/characters/adake/back.svg",
  2434. }
  2435. },
  2436. kneel: {
  2437. height: math.unit(5.385, "feet"),
  2438. weight: math.unit(100, "kg"),
  2439. name: "Kneeling",
  2440. image: {
  2441. source: "./media/characters/adake/kneel.svg",
  2442. bottom: 0.052
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Normal",
  2449. height: math.unit(7, "feet"),
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(78, "feet"),
  2454. default: true
  2455. },
  2456. {
  2457. name: "Macro+",
  2458. height: math.unit(300, "meters")
  2459. },
  2460. {
  2461. name: "Macro++",
  2462. height: math.unit(2400, "meters")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(5167, "meters")
  2467. },
  2468. {
  2469. name: "Gigamacro",
  2470. height: math.unit(41769, "miles")
  2471. },
  2472. ]
  2473. ))
  2474. characterMakers.push(() => makeCharacter(
  2475. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2476. {
  2477. front: {
  2478. height: math.unit(1.65, "meters"),
  2479. weight: math.unit(50, "kg"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/elijah/front.svg",
  2483. extra: 858 / 830,
  2484. bottom: 95.5 / 953.8559
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(1.65, "meters"),
  2489. weight: math.unit(50, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/elijah/back.svg",
  2493. extra: 895 / 850,
  2494. bottom: 5.3 / 897.956
  2495. }
  2496. },
  2497. frontNsfw: {
  2498. height: math.unit(1.65, "meters"),
  2499. weight: math.unit(50, "kg"),
  2500. name: "Front (NSFW)",
  2501. image: {
  2502. source: "./media/characters/elijah/front-nsfw.svg",
  2503. extra: 858 / 830,
  2504. bottom: 95.5 / 953.8559
  2505. }
  2506. },
  2507. backNsfw: {
  2508. height: math.unit(1.65, "meters"),
  2509. weight: math.unit(50, "kg"),
  2510. name: "Back (NSFW)",
  2511. image: {
  2512. source: "./media/characters/elijah/back-nsfw.svg",
  2513. extra: 895 / 850,
  2514. bottom: 5.3 / 897.956
  2515. }
  2516. },
  2517. dick: {
  2518. height: math.unit(1, "feet"),
  2519. name: "Dick",
  2520. image: {
  2521. source: "./media/characters/elijah/dick.svg"
  2522. }
  2523. },
  2524. beakOpen: {
  2525. height: math.unit(1.25, "feet"),
  2526. name: "Beak (Open)",
  2527. image: {
  2528. source: "./media/characters/elijah/beak-open.svg"
  2529. }
  2530. },
  2531. beakShut: {
  2532. height: math.unit(1.25, "feet"),
  2533. name: "Beak (Shut)",
  2534. image: {
  2535. source: "./media/characters/elijah/beak-shut.svg"
  2536. }
  2537. },
  2538. footFlexing: {
  2539. height: math.unit(1.61, "feet"),
  2540. name: "Foot (Flexing)",
  2541. image: {
  2542. source: "./media/characters/elijah/foot-flexing.svg"
  2543. }
  2544. },
  2545. footStepping: {
  2546. height: math.unit(1.44, "feet"),
  2547. name: "Foot (Stepping)",
  2548. image: {
  2549. source: "./media/characters/elijah/foot-stepping.svg"
  2550. }
  2551. },
  2552. plantigradeLeg: {
  2553. height: math.unit(2.34, "feet"),
  2554. name: "Plantigrade Leg",
  2555. image: {
  2556. source: "./media/characters/elijah/plantigrade-leg.svg"
  2557. }
  2558. },
  2559. plantigradeFootLeft: {
  2560. height: math.unit(0.9, "feet"),
  2561. name: "Plantigrade Foot (Left)",
  2562. image: {
  2563. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2564. }
  2565. },
  2566. plantigradeFootRight: {
  2567. height: math.unit(0.9, "feet"),
  2568. name: "Plantigrade Foot (Right)",
  2569. image: {
  2570. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2571. }
  2572. },
  2573. },
  2574. [
  2575. {
  2576. name: "Normal",
  2577. height: math.unit(1.65, "meters")
  2578. },
  2579. {
  2580. name: "Macro",
  2581. height: math.unit(55, "meters"),
  2582. default: true
  2583. },
  2584. {
  2585. name: "Macro+",
  2586. height: math.unit(105, "meters")
  2587. },
  2588. ]
  2589. ))
  2590. characterMakers.push(() => makeCharacter(
  2591. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2592. {
  2593. front: {
  2594. height: math.unit(7 + 2/12, "feet"),
  2595. weight: math.unit(320, "kg"),
  2596. name: "Front",
  2597. image: {
  2598. source: "./media/characters/rai/front.svg",
  2599. extra: 1802/1696,
  2600. bottom: 68/1870
  2601. }
  2602. },
  2603. frontDressed: {
  2604. height: math.unit(7 + 2/12, "feet"),
  2605. weight: math.unit(320, "kg"),
  2606. name: "Front (Dressed)",
  2607. image: {
  2608. source: "./media/characters/rai/front-dressed.svg",
  2609. extra: 1802/1696,
  2610. bottom: 68/1870
  2611. }
  2612. },
  2613. side: {
  2614. height: math.unit(7 + 2/12, "feet"),
  2615. weight: math.unit(320, "kg"),
  2616. name: "Side",
  2617. image: {
  2618. source: "./media/characters/rai/side.svg",
  2619. extra: 1789/1710,
  2620. bottom: 115/1904
  2621. }
  2622. },
  2623. back: {
  2624. height: math.unit(7 + 2/12, "feet"),
  2625. weight: math.unit(320, "kg"),
  2626. name: "Back",
  2627. image: {
  2628. source: "./media/characters/rai/back.svg",
  2629. extra: 1770/1707,
  2630. bottom: 28/1798
  2631. }
  2632. },
  2633. feral: {
  2634. height: math.unit(9.5, "feet"),
  2635. weight: math.unit(640, "kg"),
  2636. name: "Feral",
  2637. image: {
  2638. source: "./media/characters/rai/feral.svg",
  2639. extra: 945/553,
  2640. bottom: 176/1121
  2641. }
  2642. },
  2643. dragon: {
  2644. height: math.unit(23, "feet"),
  2645. weight: math.unit(50000, "lb"),
  2646. name: "Dragon",
  2647. image: {
  2648. source: "./media/characters/rai/dragon.svg",
  2649. extra: 2498 / 2030,
  2650. bottom: 85.2 / 2584
  2651. }
  2652. },
  2653. maw: {
  2654. height: math.unit(1.69, "feet"),
  2655. name: "Maw",
  2656. image: {
  2657. source: "./media/characters/rai/maw.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(7 + 2/12, "feet")
  2665. },
  2666. {
  2667. name: "Big",
  2668. height: math.unit(11, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(302, "feet"),
  2673. default: true
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2679. {
  2680. frontDressed: {
  2681. height: math.unit(216, "feet"),
  2682. weight: math.unit(7000000, "lb"),
  2683. name: "Front (Dressed)",
  2684. image: {
  2685. source: "./media/characters/jazzy/front-dressed.svg",
  2686. extra: 2738 / 2651,
  2687. bottom: 41.8 / 2786
  2688. }
  2689. },
  2690. backDressed: {
  2691. height: math.unit(216, "feet"),
  2692. weight: math.unit(7000000, "lb"),
  2693. name: "Back (Dressed)",
  2694. image: {
  2695. source: "./media/characters/jazzy/back-dressed.svg",
  2696. extra: 2775 / 2673,
  2697. bottom: 36.8 / 2817
  2698. }
  2699. },
  2700. front: {
  2701. height: math.unit(216, "feet"),
  2702. weight: math.unit(7000000, "lb"),
  2703. name: "Front",
  2704. image: {
  2705. source: "./media/characters/jazzy/front.svg",
  2706. extra: 2738 / 2651,
  2707. bottom: 41.8 / 2786
  2708. }
  2709. },
  2710. back: {
  2711. height: math.unit(216, "feet"),
  2712. weight: math.unit(7000000, "lb"),
  2713. name: "Back",
  2714. image: {
  2715. source: "./media/characters/jazzy/back.svg",
  2716. extra: 2775 / 2673,
  2717. bottom: 36.8 / 2817
  2718. }
  2719. },
  2720. maw: {
  2721. height: math.unit(20, "feet"),
  2722. name: "Maw",
  2723. image: {
  2724. source: "./media/characters/jazzy/maw.svg"
  2725. }
  2726. },
  2727. paws: {
  2728. height: math.unit(27.5, "feet"),
  2729. name: "Paws",
  2730. image: {
  2731. source: "./media/characters/jazzy/paws.svg"
  2732. }
  2733. },
  2734. eye: {
  2735. height: math.unit(4.4, "feet"),
  2736. name: "Eye",
  2737. image: {
  2738. source: "./media/characters/jazzy/eye.svg"
  2739. }
  2740. },
  2741. droneOffense: {
  2742. height: math.unit(9.5, "inches"),
  2743. name: "Drone (Offense)",
  2744. image: {
  2745. source: "./media/characters/jazzy/drone-offense.svg"
  2746. }
  2747. },
  2748. droneRecon: {
  2749. height: math.unit(9.5, "inches"),
  2750. name: "Drone (Recon)",
  2751. image: {
  2752. source: "./media/characters/jazzy/drone-recon.svg"
  2753. }
  2754. },
  2755. droneDefense: {
  2756. height: math.unit(9.5, "inches"),
  2757. name: "Drone (Defense)",
  2758. image: {
  2759. source: "./media/characters/jazzy/drone-defense.svg"
  2760. }
  2761. },
  2762. },
  2763. [
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(216, "feet"),
  2767. default: true
  2768. },
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(9 + 6/12, "feet"),
  2776. weight: math.unit(700, "lb"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/flamm/front.svg",
  2780. extra: 1751/1632,
  2781. bottom: 46/1797
  2782. }
  2783. },
  2784. buff: {
  2785. height: math.unit(9 + 6/12, "feet"),
  2786. weight: math.unit(950, "lb"),
  2787. name: "Buff",
  2788. image: {
  2789. source: "./media/characters/flamm/buff.svg",
  2790. extra: 3018/2874,
  2791. bottom: 221/3239
  2792. }
  2793. },
  2794. },
  2795. [
  2796. {
  2797. name: "Normal",
  2798. height: math.unit(9.5, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(200, "feet"),
  2803. default: true
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(5 + 3/12, "feet"),
  2812. weight: math.unit(60, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/zephiro/front.svg",
  2816. extra: 2309 / 2162,
  2817. bottom: 0.069
  2818. }
  2819. },
  2820. side: {
  2821. height: math.unit(5 + 3/12, "feet"),
  2822. weight: math.unit(60, "kg"),
  2823. name: "Side",
  2824. image: {
  2825. source: "./media/characters/zephiro/side.svg",
  2826. extra: 2403 / 2279,
  2827. bottom: 0.015
  2828. }
  2829. },
  2830. back: {
  2831. height: math.unit(5 + 3/12, "feet"),
  2832. weight: math.unit(60, "kg"),
  2833. name: "Back",
  2834. image: {
  2835. source: "./media/characters/zephiro/back.svg",
  2836. extra: 2373 / 2244,
  2837. bottom: 0.013
  2838. }
  2839. },
  2840. hand: {
  2841. height: math.unit(0.68, "feet"),
  2842. name: "Hand",
  2843. image: {
  2844. source: "./media/characters/zephiro/hand.svg"
  2845. }
  2846. },
  2847. paw: {
  2848. height: math.unit(1, "feet"),
  2849. name: "Paw",
  2850. image: {
  2851. source: "./media/characters/zephiro/paw.svg"
  2852. }
  2853. },
  2854. beans: {
  2855. height: math.unit(0.93, "feet"),
  2856. name: "Beans",
  2857. image: {
  2858. source: "./media/characters/zephiro/beans.svg"
  2859. }
  2860. },
  2861. },
  2862. [
  2863. {
  2864. name: "Micro",
  2865. height: math.unit(3, "inches")
  2866. },
  2867. {
  2868. name: "Normal",
  2869. height: math.unit(5 + 3 / 12, "feet"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Macro",
  2874. height: math.unit(118, "feet")
  2875. },
  2876. ]
  2877. ))
  2878. characterMakers.push(() => makeCharacter(
  2879. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2880. {
  2881. front: {
  2882. height: math.unit(5, "feet"),
  2883. weight: math.unit(90, "kg"),
  2884. name: "Front",
  2885. image: {
  2886. source: "./media/characters/fory/front.svg",
  2887. extra: 2862 / 2674,
  2888. bottom: 180 / 3043.8
  2889. }
  2890. },
  2891. back: {
  2892. height: math.unit(5, "feet"),
  2893. weight: math.unit(90, "kg"),
  2894. name: "Back",
  2895. image: {
  2896. source: "./media/characters/fory/back.svg",
  2897. extra: 2962 / 2791,
  2898. bottom: 106 / 3071.8
  2899. }
  2900. },
  2901. foot: {
  2902. height: math.unit(2.14, "feet"),
  2903. name: "Foot",
  2904. image: {
  2905. source: "./media/characters/fory/foot.svg"
  2906. }
  2907. },
  2908. },
  2909. [
  2910. {
  2911. name: "Normal",
  2912. height: math.unit(5, "feet")
  2913. },
  2914. {
  2915. name: "Macro",
  2916. height: math.unit(50, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(10, "miles")
  2922. },
  2923. {
  2924. name: "Gigamacro",
  2925. height: math.unit(5, "earths")
  2926. },
  2927. ]
  2928. ))
  2929. characterMakers.push(() => makeCharacter(
  2930. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2931. {
  2932. front: {
  2933. height: math.unit(7, "feet"),
  2934. weight: math.unit(90, "kg"),
  2935. name: "Front",
  2936. image: {
  2937. source: "./media/characters/kurrikage/front.svg",
  2938. extra: 1845/1733,
  2939. bottom: 119/1964
  2940. }
  2941. },
  2942. back: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(90, "kg"),
  2945. name: "Back",
  2946. image: {
  2947. source: "./media/characters/kurrikage/back.svg",
  2948. extra: 1790/1677,
  2949. bottom: 61/1851
  2950. }
  2951. },
  2952. dressed: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(90, "kg"),
  2955. name: "Dressed",
  2956. image: {
  2957. source: "./media/characters/kurrikage/dressed.svg",
  2958. extra: 1845/1733,
  2959. bottom: 119/1964
  2960. }
  2961. },
  2962. foot: {
  2963. height: math.unit(1.5, "feet"),
  2964. name: "Foot",
  2965. image: {
  2966. source: "./media/characters/kurrikage/foot.svg"
  2967. }
  2968. },
  2969. staff: {
  2970. height: math.unit(6.7, "feet"),
  2971. name: "Staff",
  2972. image: {
  2973. source: "./media/characters/kurrikage/staff.svg"
  2974. }
  2975. },
  2976. peek: {
  2977. height: math.unit(1.05, "feet"),
  2978. name: "Peeking",
  2979. image: {
  2980. source: "./media/characters/kurrikage/peek.svg",
  2981. bottom: 0.08
  2982. }
  2983. },
  2984. },
  2985. [
  2986. {
  2987. name: "Normal",
  2988. height: math.unit(12, "feet"),
  2989. default: true
  2990. },
  2991. {
  2992. name: "Big",
  2993. height: math.unit(20, "feet")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(500, "feet")
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(20, "miles")
  3002. },
  3003. ]
  3004. ))
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(6, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/shingo/front.svg",
  3014. extra: 1900/1825,
  3015. bottom: 82/1982
  3016. }
  3017. },
  3018. side: {
  3019. height: math.unit(6, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Side",
  3022. image: {
  3023. source: "./media/characters/shingo/side.svg",
  3024. extra: 1930/1865,
  3025. bottom: 16/1946
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/shingo/back.svg",
  3034. extra: 1922/1852,
  3035. bottom: 16/1938
  3036. }
  3037. },
  3038. frontDressed: {
  3039. height: math.unit(6, "feet"),
  3040. weight: math.unit(150, "lb"),
  3041. name: "Front-dressed",
  3042. image: {
  3043. source: "./media/characters/shingo/front-dressed.svg",
  3044. extra: 1900/1825,
  3045. bottom: 82/1982
  3046. }
  3047. },
  3048. paw: {
  3049. height: math.unit(1.29, "feet"),
  3050. name: "Paw",
  3051. image: {
  3052. source: "./media/characters/shingo/paw.svg"
  3053. }
  3054. },
  3055. hand: {
  3056. height: math.unit(1.07, "feet"),
  3057. name: "Hand",
  3058. image: {
  3059. source: "./media/characters/shingo/hand.svg"
  3060. }
  3061. },
  3062. frontAlt: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Front (Alt)",
  3066. image: {
  3067. source: "./media/characters/shingo/front-alt.svg",
  3068. extra: 3511 / 3338,
  3069. bottom: 0.005
  3070. }
  3071. },
  3072. frontAlt2: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Alt 2)",
  3076. image: {
  3077. source: "./media/characters/shingo/front-alt-2.svg",
  3078. extra: 706/681,
  3079. bottom: 11/717
  3080. }
  3081. },
  3082. pawAlt: {
  3083. height: math.unit(1, "feet"),
  3084. name: "Paw (Alt)",
  3085. image: {
  3086. source: "./media/characters/shingo/paw-alt.svg"
  3087. }
  3088. },
  3089. },
  3090. [
  3091. {
  3092. name: "Micro",
  3093. height: math.unit(4, "inches")
  3094. },
  3095. {
  3096. name: "Normal",
  3097. height: math.unit(6, "feet"),
  3098. default: true
  3099. },
  3100. {
  3101. name: "Macro",
  3102. height: math.unit(108, "feet")
  3103. },
  3104. {
  3105. name: "Macro+",
  3106. height: math.unit(1500, "feet")
  3107. },
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3112. {
  3113. side: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Side",
  3117. image: {
  3118. source: "./media/characters/aigey/side.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(200, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Megamacro",
  3130. height: math.unit(100, "miles")
  3131. },
  3132. ]
  3133. )
  3134. )
  3135. characterMakers.push(() => makeCharacter(
  3136. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3137. {
  3138. front: {
  3139. height: math.unit(5 + 5 / 12, "feet"),
  3140. weight: math.unit(75, "kg"),
  3141. name: "Front",
  3142. image: {
  3143. source: "./media/characters/natasha/front.svg",
  3144. extra: 859 / 824,
  3145. bottom: 23 / 879.6
  3146. }
  3147. },
  3148. frontNsfw: {
  3149. height: math.unit(5 + 5 / 12, "feet"),
  3150. weight: math.unit(75, "kg"),
  3151. name: "Front (NSFW)",
  3152. image: {
  3153. source: "./media/characters/natasha/front-nsfw.svg",
  3154. extra: 859 / 824,
  3155. bottom: 23 / 879.6
  3156. }
  3157. },
  3158. frontErect: {
  3159. height: math.unit(5 + 5 / 12, "feet"),
  3160. weight: math.unit(75, "kg"),
  3161. name: "Front (Erect)",
  3162. image: {
  3163. source: "./media/characters/natasha/front-erect.svg",
  3164. extra: 859 / 824,
  3165. bottom: 23 / 879.6
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(5 + 5 / 12, "feet"),
  3170. weight: math.unit(75, "kg"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/natasha/back.svg",
  3174. extra: 887.9 / 852.6,
  3175. bottom: 9.7 / 896.4
  3176. }
  3177. },
  3178. backAlt: {
  3179. height: math.unit(5 + 5 / 12, "feet"),
  3180. weight: math.unit(75, "kg"),
  3181. name: "Back (Alt)",
  3182. image: {
  3183. source: "./media/characters/natasha/back-alt.svg",
  3184. extra: 1236.7 / 1192,
  3185. bottom: 22.3 / 1258.2
  3186. }
  3187. },
  3188. dick: {
  3189. height: math.unit(1.772, "feet"),
  3190. name: "Dick",
  3191. image: {
  3192. source: "./media/characters/natasha/dick.svg"
  3193. }
  3194. },
  3195. paw: {
  3196. height: math.unit(0.250, "meters"),
  3197. name: "Paw",
  3198. image: {
  3199. source: "./media/characters/natasha/paw.svg"
  3200. }
  3201. },
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(5 + 5 / 12, "feet")
  3207. },
  3208. {
  3209. name: "Large",
  3210. height: math.unit(12, "feet")
  3211. },
  3212. {
  3213. name: "Macro",
  3214. height: math.unit(100, "feet"),
  3215. default: true
  3216. },
  3217. {
  3218. name: "Macro+",
  3219. height: math.unit(260, "feet")
  3220. },
  3221. {
  3222. name: "Macro++",
  3223. height: math.unit(1, "mile")
  3224. },
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3229. {
  3230. front: {
  3231. height: math.unit(6, "feet"),
  3232. weight: math.unit(75, "kg"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/malik/front.svg"
  3236. }
  3237. },
  3238. side: {
  3239. height: math.unit(6, "feet"),
  3240. weight: math.unit(75, "kg"),
  3241. name: "Side",
  3242. image: {
  3243. source: "./media/characters/malik/side.svg",
  3244. extra: 1.1539
  3245. }
  3246. },
  3247. back: {
  3248. height: math.unit(6, "feet"),
  3249. weight: math.unit(75, "kg"),
  3250. name: "Back",
  3251. image: {
  3252. source: "./media/characters/malik/back.svg"
  3253. }
  3254. },
  3255. },
  3256. [
  3257. {
  3258. name: "Macro",
  3259. height: math.unit(156, "feet"),
  3260. default: true
  3261. },
  3262. {
  3263. name: "Macro+",
  3264. height: math.unit(1188, "feet")
  3265. },
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3270. {
  3271. front: {
  3272. height: math.unit(6, "feet"),
  3273. weight: math.unit(75, "kg"),
  3274. name: "Front",
  3275. image: {
  3276. source: "./media/characters/sefer/front.svg",
  3277. extra: 848 / 659,
  3278. bottom: 28.3 / 876.442
  3279. }
  3280. },
  3281. back: {
  3282. height: math.unit(6, "feet"),
  3283. weight: math.unit(75, "kg"),
  3284. name: "Back",
  3285. image: {
  3286. source: "./media/characters/sefer/back.svg",
  3287. extra: 864 / 695,
  3288. bottom: 10 / 871
  3289. }
  3290. },
  3291. frontDressed: {
  3292. height: math.unit(6, "feet"),
  3293. weight: math.unit(75, "kg"),
  3294. name: "Front (Dressed)",
  3295. image: {
  3296. source: "./media/characters/sefer/front-dressed.svg",
  3297. extra: 839 / 653,
  3298. bottom: 37.6 / 878
  3299. }
  3300. },
  3301. },
  3302. [
  3303. {
  3304. name: "Normal",
  3305. height: math.unit(6, "feet"),
  3306. default: true
  3307. },
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3312. {
  3313. body: {
  3314. height: math.unit(2.2428, "meter"),
  3315. weight: math.unit(124.738, "kg"),
  3316. name: "Body",
  3317. image: {
  3318. extra: 1225 / 1050,
  3319. source: "./media/characters/north/front.svg"
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Micro",
  3326. height: math.unit(4, "inches")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(63, "meters")
  3331. },
  3332. {
  3333. name: "Megamacro",
  3334. height: math.unit(101, "miles"),
  3335. default: true
  3336. }
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3341. {
  3342. angled: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Angled",
  3346. image: {
  3347. source: "./media/characters/talan/angled-sfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. angledNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Angled (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/angled-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. frontNsfw: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Front (NSFW)",
  3364. image: {
  3365. source: "./media/characters/talan/front-nsfw.svg",
  3366. bottom: 29 / 3734
  3367. }
  3368. },
  3369. sideNsfw: {
  3370. height: math.unit(4, "meter"),
  3371. weight: math.unit(150, "kg"),
  3372. name: "Side (NSFW)",
  3373. image: {
  3374. source: "./media/characters/talan/side-nsfw.svg",
  3375. bottom: 29 / 3734
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(4, "meter"),
  3380. weight: math.unit(150, "kg"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/talan/back.svg"
  3384. }
  3385. },
  3386. dickBottom: {
  3387. height: math.unit(0.621, "meter"),
  3388. name: "Dick (Bottom)",
  3389. image: {
  3390. source: "./media/characters/talan/dick-bottom.svg"
  3391. }
  3392. },
  3393. dickTop: {
  3394. height: math.unit(0.621, "meter"),
  3395. name: "Dick (Top)",
  3396. image: {
  3397. source: "./media/characters/talan/dick-top.svg"
  3398. }
  3399. },
  3400. dickSide: {
  3401. height: math.unit(0.305, "meter"),
  3402. name: "Dick (Side)",
  3403. image: {
  3404. source: "./media/characters/talan/dick-side.svg"
  3405. }
  3406. },
  3407. dickFront: {
  3408. height: math.unit(0.305, "meter"),
  3409. name: "Dick (Front)",
  3410. image: {
  3411. source: "./media/characters/talan/dick-front.svg"
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(4, "meters")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(100, "meters")
  3423. },
  3424. {
  3425. name: "Megamacro",
  3426. height: math.unit(2, "miles"),
  3427. default: true
  3428. },
  3429. {
  3430. name: "Gigamacro",
  3431. height: math.unit(5000, "miles")
  3432. },
  3433. {
  3434. name: "Teramacro",
  3435. height: math.unit(100, "parsecs")
  3436. }
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(2, "meter"),
  3444. weight: math.unit(90, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/gael'rathus/front.svg"
  3448. }
  3449. },
  3450. frontAlt: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(90, "kg"),
  3453. name: "Front (alt)",
  3454. image: {
  3455. source: "./media/characters/gael'rathus/front-alt.svg"
  3456. }
  3457. },
  3458. frontAlt2: {
  3459. height: math.unit(2, "meter"),
  3460. weight: math.unit(90, "kg"),
  3461. name: "Front (alt 2)",
  3462. image: {
  3463. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3464. }
  3465. }
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(9, "feet"),
  3471. default: true
  3472. },
  3473. {
  3474. name: "Large",
  3475. height: math.unit(25, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(0.25, "miles")
  3480. },
  3481. {
  3482. name: "Megamacro",
  3483. height: math.unit(10, "miles")
  3484. }
  3485. ]
  3486. ))
  3487. characterMakers.push(() => makeCharacter(
  3488. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3489. {
  3490. side: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(140, "kg"),
  3493. name: "Side",
  3494. image: {
  3495. source: "./media/characters/sosha/side.svg",
  3496. bottom: 0.042
  3497. }
  3498. },
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(12, "feet"),
  3504. default: true
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3510. {
  3511. side: {
  3512. height: math.unit(5 + 5 / 12, "feet"),
  3513. weight: math.unit(170, "kg"),
  3514. name: "Side",
  3515. image: {
  3516. source: "./media/characters/runnola/side.svg",
  3517. extra: 741 / 448,
  3518. bottom: 0.05
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Small",
  3525. height: math.unit(3, "feet")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 5 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Big",
  3534. height: math.unit(10, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(2, "meter"),
  3543. weight: math.unit(50, "kg"),
  3544. name: "Front",
  3545. image: {
  3546. source: "./media/characters/kurribird/front.svg",
  3547. bottom: 0.015
  3548. }
  3549. },
  3550. frontAlt: {
  3551. height: math.unit(1.5, "meter"),
  3552. weight: math.unit(50, "kg"),
  3553. name: "Front (Alt)",
  3554. image: {
  3555. source: "./media/characters/kurribird/front-alt.svg",
  3556. extra: 1.45
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(7, "feet")
  3564. },
  3565. {
  3566. name: "Big",
  3567. height: math.unit(12, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro",
  3572. height: math.unit(1500, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(2, "miles")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/elbial/front.svg",
  3589. extra: 1643 / 1556,
  3590. bottom: 60.2 / 1696
  3591. }
  3592. },
  3593. side: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Side",
  3597. image: {
  3598. source: "./media/characters/elbial/side.svg",
  3599. extra: 1601/1528,
  3600. bottom: 97/1698
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(80, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/elbial/back.svg",
  3609. extra: 1653/1569,
  3610. bottom: 20/1673
  3611. }
  3612. },
  3613. frontDressed: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(80, "kg"),
  3616. name: "Front (Dressed)",
  3617. image: {
  3618. source: "./media/characters/elbial/front-dressed.svg",
  3619. extra: 1638/1569,
  3620. bottom: 70/1708
  3621. }
  3622. },
  3623. genitals: {
  3624. height: math.unit(2 / 3.367, "meter"),
  3625. name: "Genitals",
  3626. image: {
  3627. source: "./media/characters/elbial/genitals.svg"
  3628. }
  3629. },
  3630. },
  3631. [
  3632. {
  3633. name: "Large",
  3634. height: math.unit(100, "feet")
  3635. },
  3636. {
  3637. name: "Macro",
  3638. height: math.unit(500, "feet"),
  3639. default: true
  3640. },
  3641. {
  3642. name: "Megamacro",
  3643. height: math.unit(10, "miles")
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(25000, "miles")
  3648. },
  3649. {
  3650. name: "Full-Size",
  3651. height: math.unit(8000000, "gigaparsecs")
  3652. }
  3653. ]
  3654. ))
  3655. characterMakers.push(() => makeCharacter(
  3656. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3657. {
  3658. front: {
  3659. height: math.unit(2, "meter"),
  3660. weight: math.unit(60, "kg"),
  3661. name: "Front",
  3662. image: {
  3663. source: "./media/characters/noah/front.svg"
  3664. }
  3665. },
  3666. talons: {
  3667. height: math.unit(0.315, "meter"),
  3668. name: "Talons",
  3669. image: {
  3670. source: "./media/characters/noah/talons.svg"
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Large",
  3677. height: math.unit(50, "feet")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(750, "feet"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(50, "miles")
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(100000, "miles")
  3691. },
  3692. {
  3693. name: "Full-Size",
  3694. height: math.unit(3000000000, "miles")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(80, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/natalya/front.svg"
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(80, "kg"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/natalya/back.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(150, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Megamacro",
  3726. height: math.unit(5, "miles")
  3727. },
  3728. {
  3729. name: "Full-Size",
  3730. height: math.unit(600, "kiloparsecs")
  3731. }
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(2, "meter"),
  3739. weight: math.unit(50, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/erestrebah/front.svg",
  3743. extra: 1262/1162,
  3744. bottom: 96/1358
  3745. }
  3746. },
  3747. back: {
  3748. height: math.unit(2, "meter"),
  3749. weight: math.unit(50, "kg"),
  3750. name: "Back",
  3751. image: {
  3752. source: "./media/characters/erestrebah/back.svg",
  3753. extra: 1257/1139,
  3754. bottom: 13/1270
  3755. }
  3756. },
  3757. wing: {
  3758. height: math.unit(2, "meter"),
  3759. weight: math.unit(50, "kg"),
  3760. name: "Wing",
  3761. image: {
  3762. source: "./media/characters/erestrebah/wing.svg",
  3763. extra: 1262/1162,
  3764. bottom: 96/1358
  3765. }
  3766. },
  3767. mouth: {
  3768. height: math.unit(0.39, "feet"),
  3769. name: "Mouth",
  3770. image: {
  3771. source: "./media/characters/erestrebah/mouth.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Large",
  3782. height: math.unit(50, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(300, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(750, "feet")
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(3, "miles")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(80, "kg"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/jennifer/front.svg",
  3808. bottom: 0.11,
  3809. extra: 1.16
  3810. }
  3811. },
  3812. frontAlt: {
  3813. height: math.unit(2, "meter"),
  3814. weight: math.unit(80, "kg"),
  3815. name: "Front (Alt)",
  3816. image: {
  3817. source: "./media/characters/jennifer/front-alt.svg"
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Canon Height",
  3824. height: math.unit(120, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro+",
  3829. height: math.unit(300, "feet")
  3830. },
  3831. {
  3832. name: "Megamacro",
  3833. height: math.unit(20000, "feet")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(2, "meter"),
  3842. weight: math.unit(50, "kg"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/kalista/front.svg",
  3846. extra: 1314/1145,
  3847. bottom: 101/1415
  3848. }
  3849. },
  3850. back: {
  3851. height: math.unit(2, "meter"),
  3852. weight: math.unit(50, "kg"),
  3853. name: "Back",
  3854. image: {
  3855. source: "./media/characters/kalista/back.svg",
  3856. extra: 1366 / 1156,
  3857. bottom: 33.9 / 1362.78
  3858. }
  3859. }
  3860. },
  3861. [
  3862. {
  3863. name: "Uncomfortably Small",
  3864. height: math.unit(10, "feet")
  3865. },
  3866. {
  3867. name: "Small",
  3868. height: math.unit(30, "feet")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(100, "feet"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Macro+",
  3877. height: math.unit(2000, "feet")
  3878. },
  3879. {
  3880. name: "True Form",
  3881. height: math.unit(8924, "miles")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(2, "meter"),
  3890. weight: math.unit(120, "kg"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/ggv/front.svg"
  3894. }
  3895. },
  3896. side: {
  3897. height: math.unit(2, "meter"),
  3898. weight: math.unit(120, "kg"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/ggv/side.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Extremely Puny",
  3908. height: math.unit(9 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Horribly Small",
  3912. height: math.unit(47.7, "miles"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Reasonably Sized",
  3917. height: math.unit(25000, "parsecs")
  3918. },
  3919. {
  3920. name: "Slightly Uncompressed",
  3921. height: math.unit(7.77e31, "parsecs")
  3922. },
  3923. {
  3924. name: "Omniversal",
  3925. height: math.unit(1e300, "meters")
  3926. },
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(2, "meter"),
  3934. weight: math.unit(75, "lb"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/napalm/front.svg"
  3938. }
  3939. },
  3940. back: {
  3941. height: math.unit(2, "meter"),
  3942. weight: math.unit(75, "lb"),
  3943. name: "Back",
  3944. image: {
  3945. source: "./media/characters/napalm/back.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Standard",
  3952. height: math.unit(55, "feet"),
  3953. default: true
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(7 + 5 / 6, "feet"),
  3962. weight: math.unit(325, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/asana/front.svg",
  3966. extra: 1133 / 1060,
  3967. bottom: 15.2 / 1148.6
  3968. }
  3969. },
  3970. back: {
  3971. height: math.unit(7 + 5 / 6, "feet"),
  3972. weight: math.unit(325, "lb"),
  3973. name: "Back",
  3974. image: {
  3975. source: "./media/characters/asana/back.svg",
  3976. extra: 1114 / 1043,
  3977. bottom: 5 / 1120
  3978. }
  3979. },
  3980. dressedDark: {
  3981. height: math.unit(7 + 5 / 6, "feet"),
  3982. weight: math.unit(325, "lb"),
  3983. name: "Dressed (Dark)",
  3984. image: {
  3985. source: "./media/characters/asana/dressed-dark.svg",
  3986. extra: 1133 / 1060,
  3987. bottom: 15.2 / 1148.6
  3988. }
  3989. },
  3990. dressedLight: {
  3991. height: math.unit(7 + 5 / 6, "feet"),
  3992. weight: math.unit(325, "lb"),
  3993. name: "Dressed (Light)",
  3994. image: {
  3995. source: "./media/characters/asana/dressed-light.svg",
  3996. extra: 1133 / 1060,
  3997. bottom: 15.2 / 1148.6
  3998. }
  3999. },
  4000. },
  4001. [
  4002. {
  4003. name: "Standard",
  4004. height: math.unit(7 + 5 / 6, "feet"),
  4005. default: true
  4006. },
  4007. {
  4008. name: "Large",
  4009. height: math.unit(10, "meters")
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "meters")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(5e6, "meters")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(5e12, "lightyears")
  4022. },
  4023. {
  4024. name: "Max Size",
  4025. height: math.unit(1e31, "lightyears")
  4026. }
  4027. ]
  4028. ))
  4029. characterMakers.push(() => makeCharacter(
  4030. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4031. {
  4032. front: {
  4033. height: math.unit(2, "meter"),
  4034. weight: math.unit(60, "kg"),
  4035. name: "Front",
  4036. image: {
  4037. source: "./media/characters/ebony/front.svg",
  4038. bottom: 0.03,
  4039. extra: 1045 / 810 + 0.03
  4040. }
  4041. },
  4042. side: {
  4043. height: math.unit(2, "meter"),
  4044. weight: math.unit(60, "kg"),
  4045. name: "Side",
  4046. image: {
  4047. source: "./media/characters/ebony/side.svg",
  4048. bottom: 0.03,
  4049. extra: 1045 / 810 + 0.03
  4050. }
  4051. },
  4052. back: {
  4053. height: math.unit(2, "meter"),
  4054. weight: math.unit(60, "kg"),
  4055. name: "Back",
  4056. image: {
  4057. source: "./media/characters/ebony/back.svg",
  4058. bottom: 0.01,
  4059. extra: 1045 / 810 + 0.01
  4060. }
  4061. },
  4062. },
  4063. [
  4064. // TODO check why I did this lol
  4065. {
  4066. name: "Standard",
  4067. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4068. default: true
  4069. },
  4070. {
  4071. name: "Macro",
  4072. height: math.unit(200, "feet")
  4073. },
  4074. {
  4075. name: "Gigamacro",
  4076. height: math.unit(13000, "km")
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(6, "feet"),
  4085. weight: math.unit(175, "lb"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/mountain/front.svg",
  4089. extra: 972 / 955,
  4090. bottom: 64 / 1036.6
  4091. }
  4092. },
  4093. back: {
  4094. height: math.unit(6, "feet"),
  4095. weight: math.unit(175, "lb"),
  4096. name: "Back",
  4097. image: {
  4098. source: "./media/characters/mountain/back.svg",
  4099. extra: 970 / 950,
  4100. bottom: 28.25 / 999
  4101. }
  4102. },
  4103. },
  4104. [
  4105. {
  4106. name: "Large",
  4107. height: math.unit(20, "meters")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(300, "meters")
  4112. },
  4113. {
  4114. name: "Gigamacro",
  4115. height: math.unit(10000, "km"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Examacro",
  4120. height: math.unit(10e9, "lightyears")
  4121. }
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(8, "feet"),
  4129. weight: math.unit(500, "lb"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/rick/front.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(8, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(5, "km")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(8, "feet"),
  4153. weight: math.unit(120, "lb"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/ona/front.svg"
  4157. }
  4158. },
  4159. frontAlt: {
  4160. height: math.unit(8, "feet"),
  4161. weight: math.unit(120, "lb"),
  4162. name: "Front (Alt)",
  4163. image: {
  4164. source: "./media/characters/ona/front-alt.svg"
  4165. }
  4166. },
  4167. back: {
  4168. height: math.unit(8, "feet"),
  4169. weight: math.unit(120, "lb"),
  4170. name: "Back",
  4171. image: {
  4172. source: "./media/characters/ona/back.svg"
  4173. }
  4174. },
  4175. foot: {
  4176. height: math.unit(1.1, "feet"),
  4177. name: "Foot",
  4178. image: {
  4179. source: "./media/characters/ona/foot.svg"
  4180. }
  4181. }
  4182. },
  4183. [
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(70, "km"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(681818, "miles")
  4192. },
  4193. {
  4194. name: "Examacro",
  4195. height: math.unit(3800000, "lightyears")
  4196. },
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(12, "feet"),
  4204. weight: math.unit(3000, "lb"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/mech/front.svg",
  4208. extra: 2900 / 2770,
  4209. bottom: 110 / 3010
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(12, "feet"),
  4214. weight: math.unit(3000, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/mech/back.svg",
  4218. extra: 3011 / 2890,
  4219. bottom: 94 / 3105
  4220. }
  4221. },
  4222. maw: {
  4223. height: math.unit(3.07, "feet"),
  4224. name: "Maw",
  4225. image: {
  4226. source: "./media/characters/mech/maw.svg"
  4227. }
  4228. },
  4229. head: {
  4230. height: math.unit(2.82, "feet"),
  4231. name: "Head",
  4232. image: {
  4233. source: "./media/characters/mech/head.svg"
  4234. }
  4235. },
  4236. dick: {
  4237. height: math.unit(1.43, "feet"),
  4238. name: "Dick",
  4239. image: {
  4240. source: "./media/characters/mech/dick.svg"
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(12, "feet")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(300, "feet"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Macro+",
  4256. height: math.unit(1500, "feet")
  4257. },
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(1.3, "meter"),
  4265. weight: math.unit(30, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/gregory/front.svg",
  4269. }
  4270. }
  4271. },
  4272. [
  4273. {
  4274. name: "Normal",
  4275. height: math.unit(1.3, "meter"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(20, "meter")
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4286. {
  4287. front: {
  4288. height: math.unit(2.8, "meter"),
  4289. weight: math.unit(200, "kg"),
  4290. name: "Front",
  4291. image: {
  4292. source: "./media/characters/elory/front.svg",
  4293. }
  4294. }
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(2.8, "meter"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(38, "meter")
  4305. }
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(470, "feet"),
  4313. weight: math.unit(924, "tons"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/angelpatamon/front.svg",
  4317. }
  4318. }
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(470, "feet"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Deity Size I",
  4328. height: math.unit(28651.2, "km")
  4329. },
  4330. {
  4331. name: "Deity Size II",
  4332. height: math.unit(171907.2, "km")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(7.2, "meter"),
  4341. weight: math.unit(8.2, "tons"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/cryae/side.svg",
  4345. extra: 3500 / 1500
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(7.2, "meter"),
  4353. default: true
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(6, "feet"),
  4362. weight: math.unit(175, "lb"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/xera/front.svg",
  4366. extra: 2377 / 1972,
  4367. bottom: 75.5 / 2452
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(6, "feet"),
  4372. weight: math.unit(175, "lb"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/xera/side.svg",
  4376. extra: 2345 / 2019,
  4377. bottom: 39.7 / 2384
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(6, "feet"),
  4382. weight: math.unit(175, "lb"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/xera/back.svg",
  4386. extra: 2095 / 1984,
  4387. bottom: 67 / 2166
  4388. }
  4389. },
  4390. },
  4391. [
  4392. {
  4393. name: "Small",
  4394. height: math.unit(10, "feet")
  4395. },
  4396. {
  4397. name: "Macro",
  4398. height: math.unit(500, "meters"),
  4399. default: true
  4400. },
  4401. {
  4402. name: "Macro+",
  4403. height: math.unit(10, "km")
  4404. },
  4405. {
  4406. name: "Gigamacro",
  4407. height: math.unit(25000, "km")
  4408. },
  4409. {
  4410. name: "Teramacro",
  4411. height: math.unit(3e6, "km")
  4412. }
  4413. ]
  4414. ))
  4415. characterMakers.push(() => makeCharacter(
  4416. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4417. {
  4418. front: {
  4419. height: math.unit(6, "feet"),
  4420. weight: math.unit(175, "lb"),
  4421. name: "Front",
  4422. image: {
  4423. source: "./media/characters/nebula/front.svg",
  4424. extra: 2566 / 2362,
  4425. bottom: 81 / 2644
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Small",
  4432. height: math.unit(4.5, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(1500, "meters"),
  4437. default: true
  4438. },
  4439. {
  4440. name: "Megamacro",
  4441. height: math.unit(150, "km")
  4442. },
  4443. {
  4444. name: "Gigamacro",
  4445. height: math.unit(27000, "km")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(225, "lb"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/abysgar/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Small",
  4464. height: math.unit(4.5, "meters")
  4465. },
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(1250, "meters"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Megamacro",
  4473. height: math.unit(125, "km")
  4474. },
  4475. {
  4476. name: "Gigamacro",
  4477. height: math.unit(26000, "km")
  4478. }
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(180, "lb"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/yakuz/front.svg"
  4490. }
  4491. }
  4492. },
  4493. [
  4494. {
  4495. name: "Small",
  4496. height: math.unit(5, "meters")
  4497. },
  4498. {
  4499. name: "Macro",
  4500. height: math.unit(1500, "meters"),
  4501. default: true
  4502. },
  4503. {
  4504. name: "Megamacro",
  4505. height: math.unit(200, "km")
  4506. },
  4507. {
  4508. name: "Gigamacro",
  4509. height: math.unit(100000, "km")
  4510. }
  4511. ]
  4512. ))
  4513. characterMakers.push(() => makeCharacter(
  4514. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4515. {
  4516. front: {
  4517. height: math.unit(6, "feet"),
  4518. weight: math.unit(175, "lb"),
  4519. name: "Front",
  4520. image: {
  4521. source: "./media/characters/mirova/front.svg",
  4522. extra: 3334 / 3071,
  4523. bottom: 42 / 3375.6
  4524. }
  4525. }
  4526. },
  4527. [
  4528. {
  4529. name: "Small",
  4530. height: math.unit(5, "meters")
  4531. },
  4532. {
  4533. name: "Macro",
  4534. height: math.unit(900, "meters"),
  4535. default: true
  4536. },
  4537. {
  4538. name: "Megamacro",
  4539. height: math.unit(135, "km")
  4540. },
  4541. {
  4542. name: "Gigamacro",
  4543. height: math.unit(20000, "km")
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4549. {
  4550. side: {
  4551. height: math.unit(28.35, "feet"),
  4552. weight: math.unit(99.75, "tons"),
  4553. name: "Side",
  4554. image: {
  4555. source: "./media/characters/asana-mech/side.svg",
  4556. extra: 923 / 699,
  4557. bottom: 50 / 975
  4558. }
  4559. },
  4560. chaingun: {
  4561. height: math.unit(7, "feet"),
  4562. weight: math.unit(2400, "lb"),
  4563. name: "Chaingun",
  4564. image: {
  4565. source: "./media/characters/asana-mech/chaingun.svg"
  4566. }
  4567. },
  4568. laser: {
  4569. height: math.unit(7.12, "feet"),
  4570. weight: math.unit(2000, "lb"),
  4571. name: "Laser",
  4572. image: {
  4573. source: "./media/characters/asana-mech/laser.svg"
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(28.35, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(2500, "feet")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(25, "miles")
  4590. },
  4591. {
  4592. name: "Examacro",
  4593. height: math.unit(6e8, "lightyears")
  4594. },
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(5, "meters"),
  4602. weight: math.unit(1000, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/asche/front.svg",
  4606. extra: 1258 / 1190,
  4607. bottom: 47 / 1305
  4608. }
  4609. },
  4610. frontUnderwear: {
  4611. height: math.unit(5, "meters"),
  4612. weight: math.unit(1000, "kg"),
  4613. name: "Front (Underwear)",
  4614. image: {
  4615. source: "./media/characters/asche/front-underwear.svg",
  4616. extra: 1258 / 1190,
  4617. bottom: 47 / 1305
  4618. }
  4619. },
  4620. frontDressed: {
  4621. height: math.unit(5, "meters"),
  4622. weight: math.unit(1000, "kg"),
  4623. name: "Front (Dressed)",
  4624. image: {
  4625. source: "./media/characters/asche/front-dressed.svg",
  4626. extra: 1258 / 1190,
  4627. bottom: 47 / 1305
  4628. }
  4629. },
  4630. frontArmor: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Front (Armored)",
  4634. image: {
  4635. source: "./media/characters/asche/front-armored.svg",
  4636. extra: 1374 / 1308,
  4637. bottom: 23 / 1397
  4638. }
  4639. },
  4640. mp724: {
  4641. height: math.unit(0.96, "meters"),
  4642. weight: math.unit(38, "kg"),
  4643. name: "H&K MP724",
  4644. image: {
  4645. source: "./media/characters/asche/h&k-mp724.svg"
  4646. }
  4647. },
  4648. side: {
  4649. height: math.unit(5, "meters"),
  4650. weight: math.unit(1000, "kg"),
  4651. name: "Side",
  4652. image: {
  4653. source: "./media/characters/asche/side.svg",
  4654. extra: 1717 / 1609,
  4655. bottom: 0.005
  4656. }
  4657. },
  4658. back: {
  4659. height: math.unit(5, "meters"),
  4660. weight: math.unit(1000, "kg"),
  4661. name: "Back",
  4662. image: {
  4663. source: "./media/characters/asche/back.svg",
  4664. extra: 1570 / 1501
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "DEFCON 5",
  4671. height: math.unit(5, "meters")
  4672. },
  4673. {
  4674. name: "DEFCON 4",
  4675. height: math.unit(500, "meters"),
  4676. default: true
  4677. },
  4678. {
  4679. name: "DEFCON 3",
  4680. height: math.unit(5, "km")
  4681. },
  4682. {
  4683. name: "DEFCON 2",
  4684. height: math.unit(500, "km")
  4685. },
  4686. {
  4687. name: "DEFCON 1",
  4688. height: math.unit(500000, "km")
  4689. },
  4690. {
  4691. name: "DEFCON 0",
  4692. height: math.unit(3, "gigaparsecs")
  4693. },
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meters"),
  4701. weight: math.unit(76, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/gale/front.svg"
  4705. }
  4706. },
  4707. frontAlt1: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(76, "kg"),
  4710. name: "Front (Alt 1)",
  4711. image: {
  4712. source: "./media/characters/gale/front-alt-1.svg"
  4713. }
  4714. },
  4715. frontAlt2: {
  4716. height: math.unit(2, "meters"),
  4717. weight: math.unit(76, "kg"),
  4718. name: "Front (Alt 2)",
  4719. image: {
  4720. source: "./media/characters/gale/front-alt-2.svg"
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(7, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(150, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(300, "feet")
  4737. },
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(5 + 10/12, "feet"),
  4745. weight: math.unit(67, "kg"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/draylen/front.svg",
  4749. extra: 832/777,
  4750. bottom: 85/917
  4751. }
  4752. }
  4753. },
  4754. [
  4755. {
  4756. name: "Normal",
  4757. height: math.unit(5 + 10/12, "feet")
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(150, "feet"),
  4762. default: true
  4763. }
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4768. {
  4769. front: {
  4770. height: math.unit(7 + 9 / 12, "feet"),
  4771. weight: math.unit(379, "lbs"),
  4772. name: "Front",
  4773. image: {
  4774. source: "./media/characters/chez/front.svg"
  4775. }
  4776. },
  4777. side: {
  4778. height: math.unit(7 + 9 / 12, "feet"),
  4779. weight: math.unit(379, "lbs"),
  4780. name: "Side",
  4781. image: {
  4782. source: "./media/characters/chez/side.svg"
  4783. }
  4784. }
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(7 + 9 / 12, "feet"),
  4790. default: true
  4791. },
  4792. {
  4793. name: "God King",
  4794. height: math.unit(9750000, "meters")
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(275, "lbs"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/kaylum/front.svg",
  4807. bottom: 0.01,
  4808. extra: 1166 / 1031
  4809. }
  4810. },
  4811. frontWingless: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(275, "lbs"),
  4814. name: "Front (Wingless)",
  4815. image: {
  4816. source: "./media/characters/kaylum/front-wingless.svg",
  4817. bottom: 0.01,
  4818. extra: 1117 / 1031
  4819. }
  4820. }
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(3.05, "meters")
  4826. },
  4827. {
  4828. name: "Master",
  4829. height: math.unit(5.5, "meters")
  4830. },
  4831. {
  4832. name: "Rampage",
  4833. height: math.unit(19, "meters")
  4834. },
  4835. {
  4836. name: "Macro Lite",
  4837. height: math.unit(37, "meters")
  4838. },
  4839. {
  4840. name: "Hyper Predator",
  4841. height: math.unit(61, "meters")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(138, "meters"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4852. {
  4853. front: {
  4854. height: math.unit(5 + 5 / 12, "feet"),
  4855. weight: math.unit(120, "lbs"),
  4856. name: "Front",
  4857. image: {
  4858. source: "./media/characters/geta/front.svg",
  4859. extra: 1003/933,
  4860. bottom: 21/1024
  4861. }
  4862. },
  4863. paw: {
  4864. height: math.unit(0.35, "feet"),
  4865. name: "Paw",
  4866. image: {
  4867. source: "./media/characters/geta/paw.svg"
  4868. }
  4869. },
  4870. },
  4871. [
  4872. {
  4873. name: "Micro",
  4874. height: math.unit(3, "inches"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Normal",
  4879. height: math.unit(5 + 5 / 12, "feet")
  4880. }
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(300, "lbs"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/tyrnn/front.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Main Height",
  4898. height: math.unit(355, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Fave. Height",
  4903. height: math.unit(2400, "feet")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(300, "lbs"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/appledectomy/front.svg"
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Macro",
  4922. height: math.unit(2500, "feet")
  4923. },
  4924. {
  4925. name: "Megamacro",
  4926. height: math.unit(50, "miles"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Gigamacro",
  4931. height: math.unit(5000, "miles")
  4932. },
  4933. {
  4934. name: "Teramacro",
  4935. height: math.unit(250000, "miles")
  4936. },
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(200, "lbs"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/vulpes/front.svg",
  4948. extra: 573 / 543,
  4949. bottom: 0.033
  4950. }
  4951. },
  4952. side: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(200, "lbs"),
  4955. name: "Side",
  4956. image: {
  4957. source: "./media/characters/vulpes/side.svg",
  4958. extra: 577 / 549,
  4959. bottom: 11 / 588
  4960. }
  4961. },
  4962. back: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(200, "lbs"),
  4965. name: "Back",
  4966. image: {
  4967. source: "./media/characters/vulpes/back.svg",
  4968. extra: 573 / 549,
  4969. bottom: 20 / 593
  4970. }
  4971. },
  4972. feet: {
  4973. height: math.unit(1.276, "feet"),
  4974. name: "Feet",
  4975. image: {
  4976. source: "./media/characters/vulpes/feet.svg"
  4977. }
  4978. },
  4979. maw: {
  4980. height: math.unit(1.18, "feet"),
  4981. name: "Maw",
  4982. image: {
  4983. source: "./media/characters/vulpes/maw.svg"
  4984. }
  4985. },
  4986. },
  4987. [
  4988. {
  4989. name: "Micro",
  4990. height: math.unit(2, "inches")
  4991. },
  4992. {
  4993. name: "Normal",
  4994. height: math.unit(6.3, "feet")
  4995. },
  4996. {
  4997. name: "Macro",
  4998. height: math.unit(850, "feet")
  4999. },
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(7500, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Gigamacro",
  5007. height: math.unit(570000, "miles")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5013. {
  5014. front: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(210, "lbs"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/rain-fallen/front.svg"
  5020. }
  5021. },
  5022. side: {
  5023. height: math.unit(6, "feet"),
  5024. weight: math.unit(210, "lbs"),
  5025. name: "Side",
  5026. image: {
  5027. source: "./media/characters/rain-fallen/side.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(210, "lbs"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/rain-fallen/back.svg"
  5036. }
  5037. },
  5038. feral: {
  5039. height: math.unit(9, "feet"),
  5040. weight: math.unit(700, "lbs"),
  5041. name: "Feral",
  5042. image: {
  5043. source: "./media/characters/rain-fallen/feral.svg"
  5044. }
  5045. },
  5046. },
  5047. [
  5048. {
  5049. name: "Meddling with Mortals",
  5050. height: math.unit(8 + 8/12, "feet")
  5051. },
  5052. {
  5053. name: "Normal",
  5054. height: math.unit(5, "meter")
  5055. },
  5056. {
  5057. name: "Macro",
  5058. height: math.unit(150, "meter"),
  5059. default: true
  5060. },
  5061. {
  5062. name: "Megamacro",
  5063. height: math.unit(278e6, "meter")
  5064. },
  5065. {
  5066. name: "Gigamacro",
  5067. height: math.unit(2e9, "meter")
  5068. },
  5069. {
  5070. name: "Teramacro",
  5071. height: math.unit(8e12, "meter")
  5072. },
  5073. {
  5074. name: "Devourer",
  5075. height: math.unit(14, "zettameters")
  5076. },
  5077. {
  5078. name: "Scarlet King",
  5079. height: math.unit(18, "yottameters")
  5080. },
  5081. {
  5082. name: "Void",
  5083. height: math.unit(1e88, "yottameters")
  5084. }
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5089. {
  5090. standing: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(180, "lbs"),
  5093. name: "Standing",
  5094. image: {
  5095. source: "./media/characters/zaakira/standing.svg",
  5096. extra: 1599/1504,
  5097. bottom: 39/1638
  5098. }
  5099. },
  5100. laying: {
  5101. height: math.unit(3, "feet"),
  5102. weight: math.unit(180, "lbs"),
  5103. name: "Laying",
  5104. image: {
  5105. source: "./media/characters/zaakira/laying.svg"
  5106. }
  5107. },
  5108. },
  5109. [
  5110. {
  5111. name: "Normal",
  5112. height: math.unit(12, "feet")
  5113. },
  5114. {
  5115. name: "Macro",
  5116. height: math.unit(279, "feet"),
  5117. default: true
  5118. }
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5123. {
  5124. femSfw: {
  5125. height: math.unit(8, "feet"),
  5126. weight: math.unit(350, "lb"),
  5127. name: "Fem",
  5128. image: {
  5129. source: "./media/characters/sigvald/fem-sfw.svg",
  5130. extra: 182 / 164,
  5131. bottom: 8.7 / 190.5
  5132. }
  5133. },
  5134. femNsfw: {
  5135. height: math.unit(8, "feet"),
  5136. weight: math.unit(350, "lb"),
  5137. name: "Fem (NSFW)",
  5138. image: {
  5139. source: "./media/characters/sigvald/fem-nsfw.svg",
  5140. extra: 182 / 164,
  5141. bottom: 8.7 / 190.5
  5142. }
  5143. },
  5144. maleNsfw: {
  5145. height: math.unit(8, "feet"),
  5146. weight: math.unit(350, "lb"),
  5147. name: "Male (NSFW)",
  5148. image: {
  5149. source: "./media/characters/sigvald/male-nsfw.svg",
  5150. extra: 182 / 164,
  5151. bottom: 8.7 / 190.5
  5152. }
  5153. },
  5154. hermNsfw: {
  5155. height: math.unit(8, "feet"),
  5156. weight: math.unit(350, "lb"),
  5157. name: "Herm (NSFW)",
  5158. image: {
  5159. source: "./media/characters/sigvald/herm-nsfw.svg",
  5160. extra: 182 / 164,
  5161. bottom: 8.7 / 190.5
  5162. }
  5163. },
  5164. dick: {
  5165. height: math.unit(2.36, "feet"),
  5166. name: "Dick",
  5167. image: {
  5168. source: "./media/characters/sigvald/dick.svg"
  5169. }
  5170. },
  5171. eye: {
  5172. height: math.unit(0.31, "feet"),
  5173. name: "Eye",
  5174. image: {
  5175. source: "./media/characters/sigvald/eye.svg"
  5176. }
  5177. },
  5178. mouth: {
  5179. height: math.unit(0.92, "feet"),
  5180. name: "Mouth",
  5181. image: {
  5182. source: "./media/characters/sigvald/mouth.svg"
  5183. }
  5184. },
  5185. paws: {
  5186. height: math.unit(2.2, "feet"),
  5187. name: "Paws",
  5188. image: {
  5189. source: "./media/characters/sigvald/paws.svg"
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(8, "feet")
  5197. },
  5198. {
  5199. name: "Large",
  5200. height: math.unit(12, "feet")
  5201. },
  5202. {
  5203. name: "Larger",
  5204. height: math.unit(20, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(150, "feet")
  5209. },
  5210. {
  5211. name: "Macro+",
  5212. height: math.unit(200, "feet"),
  5213. default: true
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5219. {
  5220. side: {
  5221. height: math.unit(12, "feet"),
  5222. weight: math.unit(2000, "kg"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/scott/side.svg",
  5226. extra: 754 / 724,
  5227. bottom: 0.069
  5228. }
  5229. },
  5230. upright: {
  5231. height: math.unit(12, "feet"),
  5232. weight: math.unit(2000, "kg"),
  5233. name: "Upright",
  5234. image: {
  5235. source: "./media/characters/scott/upright.svg",
  5236. extra: 3881 / 3722,
  5237. bottom: 0.05
  5238. }
  5239. },
  5240. },
  5241. [
  5242. {
  5243. name: "Normal",
  5244. height: math.unit(12, "feet"),
  5245. default: true
  5246. },
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5251. {
  5252. side: {
  5253. height: math.unit(8, "meters"),
  5254. weight: math.unit(84755, "lbs"),
  5255. name: "Side",
  5256. image: {
  5257. source: "./media/characters/tobias/side.svg",
  5258. extra: 1474 / 1096,
  5259. bottom: 38.9 / 1513.1235
  5260. }
  5261. },
  5262. },
  5263. [
  5264. {
  5265. name: "Normal",
  5266. height: math.unit(8, "meters"),
  5267. default: true
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5273. {
  5274. front: {
  5275. height: math.unit(5.5, "feet"),
  5276. weight: math.unit(400, "lbs"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/kieran/front.svg",
  5280. extra: 2694 / 2364,
  5281. bottom: 217 / 2908
  5282. }
  5283. },
  5284. side: {
  5285. height: math.unit(5.5, "feet"),
  5286. weight: math.unit(400, "lbs"),
  5287. name: "Side",
  5288. image: {
  5289. source: "./media/characters/kieran/side.svg",
  5290. extra: 875 / 777,
  5291. bottom: 84.6 / 959
  5292. }
  5293. },
  5294. },
  5295. [
  5296. {
  5297. name: "Normal",
  5298. height: math.unit(5.5, "feet"),
  5299. default: true
  5300. },
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5305. {
  5306. side: {
  5307. height: math.unit(2, "meters"),
  5308. weight: math.unit(70, "kg"),
  5309. name: "Side",
  5310. image: {
  5311. source: "./media/characters/sanya/side.svg",
  5312. bottom: 0.02,
  5313. extra: 1.02
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Small",
  5320. height: math.unit(2, "meters")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(3, "meters")
  5325. },
  5326. {
  5327. name: "Macro",
  5328. height: math.unit(16, "meters"),
  5329. default: true
  5330. },
  5331. ]
  5332. ))
  5333. characterMakers.push(() => makeCharacter(
  5334. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5335. {
  5336. front: {
  5337. height: math.unit(2, "meters"),
  5338. weight: math.unit(120, "kg"),
  5339. name: "Front",
  5340. image: {
  5341. source: "./media/characters/miranda/front.svg",
  5342. extra: 195 / 185,
  5343. bottom: 10.9 / 206.5
  5344. }
  5345. },
  5346. back: {
  5347. height: math.unit(2, "meters"),
  5348. weight: math.unit(120, "kg"),
  5349. name: "Back",
  5350. image: {
  5351. source: "./media/characters/miranda/back.svg",
  5352. extra: 201 / 193,
  5353. bottom: 2.3 / 203.7
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Normal",
  5360. height: math.unit(10, "feet"),
  5361. default: true
  5362. }
  5363. ]
  5364. ))
  5365. characterMakers.push(() => makeCharacter(
  5366. { name: "James", species: ["deer"], tags: ["anthro"] },
  5367. {
  5368. side: {
  5369. height: math.unit(2, "meters"),
  5370. weight: math.unit(100, "kg"),
  5371. name: "Front",
  5372. image: {
  5373. source: "./media/characters/james/front.svg",
  5374. extra: 10 / 8.5
  5375. }
  5376. },
  5377. },
  5378. [
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(8.5, "feet"),
  5382. default: true
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5388. {
  5389. side: {
  5390. height: math.unit(9.5, "feet"),
  5391. weight: math.unit(2500, "lbs"),
  5392. name: "Side",
  5393. image: {
  5394. source: "./media/characters/heather/side.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(9.5, "feet"),
  5402. default: true
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(6.5, "feet"),
  5411. weight: math.unit(400, "lbs"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/lukas/side.svg",
  5415. extra: 7.25 / 6.5
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(6.5, "feet"),
  5423. default: true
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5429. {
  5430. side: {
  5431. height: math.unit(5, "feet"),
  5432. weight: math.unit(3000, "lbs"),
  5433. name: "Side",
  5434. image: {
  5435. source: "./media/characters/louise/side.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(5, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5449. {
  5450. side: {
  5451. height: math.unit(6, "feet"),
  5452. weight: math.unit(150, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/ramona/side.svg",
  5456. extra: 871/854,
  5457. bottom: 41/912
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5.3, "meters"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(20, "stories")
  5470. },
  5471. {
  5472. name: "Macro+",
  5473. height: math.unit(50, "stories")
  5474. },
  5475. ]
  5476. ))
  5477. characterMakers.push(() => makeCharacter(
  5478. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5479. {
  5480. standing: {
  5481. height: math.unit(5.75, "feet"),
  5482. weight: math.unit(160, "lbs"),
  5483. name: "Standing",
  5484. image: {
  5485. source: "./media/characters/deerpuff/standing.svg",
  5486. extra: 682 / 624
  5487. }
  5488. },
  5489. sitting: {
  5490. height: math.unit(5.75 / 1.79, "feet"),
  5491. weight: math.unit(160, "lbs"),
  5492. name: "Sitting",
  5493. image: {
  5494. source: "./media/characters/deerpuff/sitting.svg",
  5495. bottom: 44 / 400,
  5496. extra: 1
  5497. }
  5498. },
  5499. taurLaying: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(400, "lbs"),
  5502. name: "Taur (Laying)",
  5503. image: {
  5504. source: "./media/characters/deerpuff/taur-laying.svg"
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Puffball",
  5511. height: math.unit(6, "inches")
  5512. },
  5513. {
  5514. name: "Normalpuff",
  5515. height: math.unit(5.75, "feet")
  5516. },
  5517. {
  5518. name: "Macropuff",
  5519. height: math.unit(1500, "feet"),
  5520. default: true
  5521. },
  5522. {
  5523. name: "Megapuff",
  5524. height: math.unit(500, "miles")
  5525. },
  5526. {
  5527. name: "Gigapuff",
  5528. height: math.unit(250000, "miles")
  5529. },
  5530. {
  5531. name: "Omegapuff",
  5532. height: math.unit(1000, "lightyears")
  5533. },
  5534. ]
  5535. ))
  5536. characterMakers.push(() => makeCharacter(
  5537. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5538. {
  5539. stomping: {
  5540. height: math.unit(6, "feet"),
  5541. weight: math.unit(170, "lbs"),
  5542. name: "Stomping",
  5543. image: {
  5544. source: "./media/characters/vivian/stomping.svg"
  5545. }
  5546. },
  5547. sitting: {
  5548. height: math.unit(6 / 1.75, "feet"),
  5549. weight: math.unit(170, "lbs"),
  5550. name: "Sitting",
  5551. image: {
  5552. source: "./media/characters/vivian/sitting.svg",
  5553. bottom: 1 / 6.4,
  5554. extra: 1,
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "Normal",
  5561. height: math.unit(7, "feet"),
  5562. default: true
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(10, "stories")
  5567. },
  5568. {
  5569. name: "Macro+",
  5570. height: math.unit(30, "stories")
  5571. },
  5572. {
  5573. name: "Megamacro",
  5574. height: math.unit(10, "miles")
  5575. },
  5576. {
  5577. name: "Megamacro+",
  5578. height: math.unit(2750000, "meters")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(160, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/prince/front.svg",
  5591. extra: 3400 / 3000
  5592. }
  5593. },
  5594. jumping: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(160, "lbs"),
  5597. name: "Jumping",
  5598. image: {
  5599. source: "./media/characters/prince/jump.svg",
  5600. extra: 2555 / 2134
  5601. }
  5602. },
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(7.75, "feet"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Not cute",
  5612. height: math.unit(17, "feet")
  5613. },
  5614. {
  5615. name: "I said NOT",
  5616. height: math.unit(91, "feet")
  5617. },
  5618. {
  5619. name: "Please stop",
  5620. height: math.unit(560, "feet")
  5621. },
  5622. {
  5623. name: "What have you done",
  5624. height: math.unit(2200, "feet")
  5625. },
  5626. {
  5627. name: "Deer God",
  5628. height: math.unit(3.6, "miles")
  5629. },
  5630. ]
  5631. ))
  5632. characterMakers.push(() => makeCharacter(
  5633. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5634. {
  5635. standing: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(300, "lbs"),
  5638. name: "Standing",
  5639. image: {
  5640. source: "./media/characters/psymon/standing.svg",
  5641. extra: 1888 / 1810,
  5642. bottom: 0.05
  5643. }
  5644. },
  5645. slithering: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(300, "lbs"),
  5648. name: "Slithering",
  5649. image: {
  5650. source: "./media/characters/psymon/slithering.svg",
  5651. extra: 1330 / 1224
  5652. }
  5653. },
  5654. slitheringAlt: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(300, "lbs"),
  5657. name: "Slithering (Alt)",
  5658. image: {
  5659. source: "./media/characters/psymon/slithering-alt.svg",
  5660. extra: 1330 / 1224
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(11.25, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Large",
  5672. height: math.unit(27, "feet")
  5673. },
  5674. {
  5675. name: "Giant",
  5676. height: math.unit(87, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(365, "feet")
  5681. },
  5682. {
  5683. name: "Megamacro",
  5684. height: math.unit(3, "miles")
  5685. },
  5686. {
  5687. name: "World Serpent",
  5688. height: math.unit(8000, "miles")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(180, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/daimos/front.svg",
  5701. extra: 4160 / 3897,
  5702. bottom: 0.021
  5703. }
  5704. }
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(8, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Big Dog",
  5714. height: math.unit(22, "feet")
  5715. },
  5716. {
  5717. name: "Macro",
  5718. height: math.unit(127, "feet")
  5719. },
  5720. {
  5721. name: "Megamacro",
  5722. height: math.unit(3600, "feet")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5728. {
  5729. side: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(180, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/blake/side.svg",
  5735. extra: 1212 / 1120,
  5736. bottom: 0.05
  5737. }
  5738. },
  5739. crouched: {
  5740. height: math.unit(6 * 0.57, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Crouched",
  5743. image: {
  5744. source: "./media/characters/blake/crouched.svg",
  5745. extra: 840 / 587,
  5746. bottom: 0.04
  5747. }
  5748. },
  5749. bent: {
  5750. height: math.unit(6 * 0.75, "feet"),
  5751. weight: math.unit(180, "lbs"),
  5752. name: "Bent",
  5753. image: {
  5754. source: "./media/characters/blake/bent.svg",
  5755. extra: 592 / 544,
  5756. bottom: 0.035
  5757. }
  5758. },
  5759. },
  5760. [
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(8 + 1 / 6, "feet"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Big Backside",
  5768. height: math.unit(37, "feet")
  5769. },
  5770. {
  5771. name: "Subway Shredder",
  5772. height: math.unit(72, "feet")
  5773. },
  5774. {
  5775. name: "City Carver",
  5776. height: math.unit(1675, "feet")
  5777. },
  5778. {
  5779. name: "Tectonic Tweaker",
  5780. height: math.unit(2300, "miles")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5786. {
  5787. front: {
  5788. height: math.unit(6, "feet"),
  5789. weight: math.unit(180, "lbs"),
  5790. name: "Front",
  5791. image: {
  5792. source: "./media/characters/guisetto/front.svg",
  5793. extra: 856 / 817,
  5794. bottom: 0.06
  5795. }
  5796. },
  5797. airborne: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(180, "lbs"),
  5800. name: "Airborne",
  5801. image: {
  5802. source: "./media/characters/guisetto/airborne.svg",
  5803. extra: 584 / 525
  5804. }
  5805. },
  5806. },
  5807. [
  5808. {
  5809. name: "Normal",
  5810. height: math.unit(10 + 11 / 12, "feet"),
  5811. default: true
  5812. },
  5813. {
  5814. name: "Large",
  5815. height: math.unit(35, "feet")
  5816. },
  5817. {
  5818. name: "Macro",
  5819. height: math.unit(475, "feet")
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5825. {
  5826. front: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(180, "lbs"),
  5829. name: "Front",
  5830. image: {
  5831. source: "./media/characters/luxor/front.svg",
  5832. extra: 2940 / 2152
  5833. }
  5834. },
  5835. back: {
  5836. height: math.unit(6, "feet"),
  5837. weight: math.unit(180, "lbs"),
  5838. name: "Back",
  5839. image: {
  5840. source: "./media/characters/luxor/back.svg",
  5841. extra: 1083 / 960
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5 + 5 / 6, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Lamp",
  5853. height: math.unit(50, "feet")
  5854. },
  5855. {
  5856. name: "Lämp",
  5857. height: math.unit(300, "feet")
  5858. },
  5859. {
  5860. name: "The sun is a lamp",
  5861. height: math.unit(250000, "miles")
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5867. {
  5868. front: {
  5869. height: math.unit(6, "feet"),
  5870. weight: math.unit(50, "lbs"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/huoyan/front.svg"
  5874. }
  5875. },
  5876. side: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(180, "lbs"),
  5879. name: "Side",
  5880. image: {
  5881. source: "./media/characters/huoyan/side.svg"
  5882. }
  5883. },
  5884. },
  5885. [
  5886. {
  5887. name: "Chef",
  5888. height: math.unit(9, "feet")
  5889. },
  5890. {
  5891. name: "Normal",
  5892. height: math.unit(65, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(780, "feet")
  5898. },
  5899. {
  5900. name: "Flaming Mountain",
  5901. height: math.unit(4.8, "miles")
  5902. },
  5903. {
  5904. name: "Celestial",
  5905. height: math.unit(765000, "miles")
  5906. },
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5911. {
  5912. front: {
  5913. height: math.unit(5 + 3 / 4, "feet"),
  5914. weight: math.unit(120, "lbs"),
  5915. name: "Front",
  5916. image: {
  5917. source: "./media/characters/tails/front.svg"
  5918. }
  5919. }
  5920. },
  5921. [
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(5 + 3 / 4, "feet"),
  5925. default: true
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(4, "feet"),
  5934. weight: math.unit(50, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rainy/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(800, "feet"),
  5945. default: true
  5946. }
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(150, "lbs"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/rainier/front.svg"
  5958. }
  5959. }
  5960. },
  5961. [
  5962. {
  5963. name: "Micro",
  5964. height: math.unit(2, "mm"),
  5965. default: true
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(8 + 4/12, "feet"),
  5974. weight: math.unit(450, "kilograms"),
  5975. volume: math.unit(1.34, "cups"),
  5976. name: "Front",
  5977. image: {
  5978. source: "./media/characters/andy-renard/front.svg",
  5979. extra: 1839/1726,
  5980. bottom: 134/1973
  5981. }
  5982. },
  5983. back: {
  5984. height: math.unit(8 + 4/12, "feet"),
  5985. weight: math.unit(450, "kilograms"),
  5986. volume: math.unit(1.34, "cups"),
  5987. name: "Back",
  5988. image: {
  5989. source: "./media/characters/andy-renard/back.svg",
  5990. extra: 1838/1710,
  5991. bottom: 105/1943
  5992. }
  5993. },
  5994. },
  5995. [
  5996. {
  5997. name: "Tall",
  5998. height: math.unit(8 + 4/12, "feet")
  5999. },
  6000. {
  6001. name: "Mini Macro",
  6002. height: math.unit(15, "feet"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(100, "feet")
  6008. },
  6009. {
  6010. name: "Mega Macro",
  6011. height: math.unit(1000, "feet")
  6012. },
  6013. {
  6014. name: "Giga Macro",
  6015. height: math.unit(10, "miles")
  6016. },
  6017. {
  6018. name: "God Macro",
  6019. height: math.unit(1, "multiverse")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6, "feet"),
  6028. weight: math.unit(210, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/cimmaron/front-sfw.svg",
  6032. extra: 701 / 676,
  6033. bottom: 0.046
  6034. }
  6035. },
  6036. back: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(210, "lbs"),
  6039. name: "Back",
  6040. image: {
  6041. source: "./media/characters/cimmaron/back-sfw.svg",
  6042. extra: 701 / 676,
  6043. bottom: 0.046
  6044. }
  6045. },
  6046. frontNsfw: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(210, "lbs"),
  6049. name: "Front (NSFW)",
  6050. image: {
  6051. source: "./media/characters/cimmaron/front-nsfw.svg",
  6052. extra: 701 / 676,
  6053. bottom: 0.046
  6054. }
  6055. },
  6056. backNsfw: {
  6057. height: math.unit(6, "feet"),
  6058. weight: math.unit(210, "lbs"),
  6059. name: "Back (NSFW)",
  6060. image: {
  6061. source: "./media/characters/cimmaron/back-nsfw.svg",
  6062. extra: 701 / 676,
  6063. bottom: 0.046
  6064. }
  6065. },
  6066. dick: {
  6067. height: math.unit(1.714, "feet"),
  6068. name: "Dick",
  6069. image: {
  6070. source: "./media/characters/cimmaron/dick.svg"
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(6, "feet"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Macro Mayor",
  6082. height: math.unit(350, "meters")
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(200, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/akari/front.svg",
  6095. extra: 962 / 901,
  6096. bottom: 0.04
  6097. }
  6098. }
  6099. },
  6100. [
  6101. {
  6102. name: "Micro",
  6103. height: math.unit(5, "inches"),
  6104. default: true
  6105. },
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(7, "feet")
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6114. {
  6115. front: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(140, "lbs"),
  6118. name: "Front",
  6119. image: {
  6120. source: "./media/characters/cynosura/front.svg",
  6121. extra: 896 / 847
  6122. }
  6123. },
  6124. back: {
  6125. height: math.unit(6, "feet"),
  6126. weight: math.unit(140, "lbs"),
  6127. name: "Back",
  6128. image: {
  6129. source: "./media/characters/cynosura/back.svg",
  6130. extra: 1365 / 1250
  6131. }
  6132. },
  6133. },
  6134. [
  6135. {
  6136. name: "Micro",
  6137. height: math.unit(4, "inches")
  6138. },
  6139. {
  6140. name: "Normal",
  6141. height: math.unit(5.75, "feet"),
  6142. default: true
  6143. },
  6144. {
  6145. name: "Tall",
  6146. height: math.unit(10, "feet")
  6147. },
  6148. {
  6149. name: "Big",
  6150. height: math.unit(20, "feet")
  6151. },
  6152. {
  6153. name: "Macro",
  6154. height: math.unit(50, "feet")
  6155. },
  6156. ]
  6157. ))
  6158. characterMakers.push(() => makeCharacter(
  6159. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6160. {
  6161. front: {
  6162. height: math.unit(13 + 2/12, "feet"),
  6163. weight: math.unit(800, "kg"),
  6164. name: "Front",
  6165. image: {
  6166. source: "./media/characters/gin/front.svg",
  6167. extra: 1312/1191,
  6168. bottom: 45/1357
  6169. }
  6170. },
  6171. mouth: {
  6172. height: math.unit(2.39 * 1.8, "feet"),
  6173. name: "Mouth",
  6174. image: {
  6175. source: "./media/characters/gin/mouth.svg"
  6176. }
  6177. },
  6178. hand: {
  6179. height: math.unit(1.57 * 2.19, "feet"),
  6180. name: "Hand",
  6181. image: {
  6182. source: "./media/characters/gin/hand.svg"
  6183. }
  6184. },
  6185. foot: {
  6186. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6187. name: "Foot",
  6188. image: {
  6189. source: "./media/characters/gin/foot.svg"
  6190. }
  6191. },
  6192. sole: {
  6193. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6194. name: "Sole",
  6195. image: {
  6196. source: "./media/characters/gin/sole.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Very Small",
  6203. height: math.unit(13 + 2 / 12, "feet")
  6204. },
  6205. {
  6206. name: "Micro",
  6207. height: math.unit(600, "miles")
  6208. },
  6209. {
  6210. name: "Regular",
  6211. height: math.unit(20, "earths"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(2.2, "solarradii")
  6217. },
  6218. {
  6219. name: "Teramacro",
  6220. height: math.unit(1.2, "galaxies")
  6221. },
  6222. {
  6223. name: "Omegamacro",
  6224. height: math.unit(200, "universes")
  6225. },
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6 + 1 / 6, "feet"),
  6233. weight: math.unit(178, "lbs"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/guy/front.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Normal",
  6243. height: math.unit(6 + 1 / 6, "feet"),
  6244. default: true
  6245. },
  6246. {
  6247. name: "Large",
  6248. height: math.unit(25 + 7 / 12, "feet")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(60 + 9 / 12, "feet")
  6253. },
  6254. {
  6255. name: "Macro+",
  6256. height: math.unit(246, "feet")
  6257. },
  6258. {
  6259. name: "Macro++",
  6260. height: math.unit(878, "feet")
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(9, "feet"),
  6269. weight: math.unit(800, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/tiberius/front.svg",
  6273. extra: 2295 / 2071
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(9, "feet"),
  6278. weight: math.unit(800, "lbs"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/tiberius/back.svg",
  6282. extra: 2373 / 2160
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(9, "feet"),
  6290. default: true
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6296. {
  6297. front: {
  6298. height: math.unit(6, "feet"),
  6299. weight: math.unit(600, "lbs"),
  6300. name: "Front",
  6301. image: {
  6302. source: "./media/characters/surgo/front.svg",
  6303. extra: 3591 / 2227
  6304. }
  6305. },
  6306. back: {
  6307. height: math.unit(6, "feet"),
  6308. weight: math.unit(600, "lbs"),
  6309. name: "Back",
  6310. image: {
  6311. source: "./media/characters/surgo/back.svg",
  6312. extra: 3557 / 2228
  6313. }
  6314. },
  6315. laying: {
  6316. height: math.unit(6 * 0.85, "feet"),
  6317. weight: math.unit(600, "lbs"),
  6318. name: "Laying",
  6319. image: {
  6320. source: "./media/characters/surgo/laying.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(6, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6334. {
  6335. side: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Side",
  6339. image: {
  6340. source: "./media/characters/cibus/side.svg",
  6341. extra: 800 / 400
  6342. }
  6343. },
  6344. },
  6345. [
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(6, "feet"),
  6349. default: true
  6350. }
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(240, "lbs"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/nibbles/front.svg"
  6362. }
  6363. },
  6364. side: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(240, "lbs"),
  6367. name: "Side",
  6368. image: {
  6369. source: "./media/characters/nibbles/side.svg"
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(9, "feet"),
  6377. default: true
  6378. }
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6383. {
  6384. side: {
  6385. height: math.unit(5 + 1 / 6, "feet"),
  6386. weight: math.unit(130, "lbs"),
  6387. name: "Side",
  6388. image: {
  6389. source: "./media/characters/rikky/side.svg",
  6390. extra: 851 / 801
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(5 + 1 / 6, "feet")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(152, "feet"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Megamacro",
  6406. height: math.unit(7, "miles")
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6412. {
  6413. side: {
  6414. height: math.unit(370, "cm"),
  6415. weight: math.unit(350, "lbs"),
  6416. name: "Side",
  6417. image: {
  6418. source: "./media/characters/malfressa/side.svg"
  6419. }
  6420. },
  6421. walking: {
  6422. height: math.unit(370, "cm"),
  6423. weight: math.unit(350, "lbs"),
  6424. name: "Walking",
  6425. image: {
  6426. source: "./media/characters/malfressa/walking.svg"
  6427. }
  6428. },
  6429. feral: {
  6430. height: math.unit(2500, "cm"),
  6431. weight: math.unit(100000, "lbs"),
  6432. name: "Feral",
  6433. image: {
  6434. source: "./media/characters/malfressa/feral.svg",
  6435. extra: 2108 / 837,
  6436. bottom: 0.02
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(370, "cm")
  6444. },
  6445. {
  6446. name: "Macro",
  6447. height: math.unit(300, "meters"),
  6448. default: true
  6449. }
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(60, "kg"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/jaro/front.svg",
  6461. extra: 845/817,
  6462. bottom: 45/890
  6463. }
  6464. },
  6465. back: {
  6466. height: math.unit(6, "feet"),
  6467. weight: math.unit(60, "kg"),
  6468. name: "Back",
  6469. image: {
  6470. source: "./media/characters/jaro/back.svg",
  6471. extra: 847/817,
  6472. bottom: 34/881
  6473. }
  6474. },
  6475. },
  6476. [
  6477. {
  6478. name: "Micro",
  6479. height: math.unit(7, "inches")
  6480. },
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(5.5, "feet"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Minimacro",
  6488. height: math.unit(20, "feet")
  6489. },
  6490. {
  6491. name: "Macro",
  6492. height: math.unit(200, "meters")
  6493. }
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(195, "lb"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/rogue/front.svg"
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Macro",
  6511. height: math.unit(90, "feet"),
  6512. default: true
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6518. {
  6519. standing: {
  6520. height: math.unit(5 + 8 / 12, "feet"),
  6521. weight: math.unit(140, "lb"),
  6522. name: "Standing",
  6523. image: {
  6524. source: "./media/characters/piper/standing.svg",
  6525. extra: 1440/1284,
  6526. bottom: 66/1506
  6527. }
  6528. },
  6529. running: {
  6530. height: math.unit(5 + 8 / 12, "feet"),
  6531. weight: math.unit(140, "lb"),
  6532. name: "Running",
  6533. image: {
  6534. source: "./media/characters/piper/running.svg",
  6535. extra: 3948/3655,
  6536. bottom: 0/3948
  6537. }
  6538. },
  6539. sole: {
  6540. height: math.unit(0.81, "feet"),
  6541. weight: math.unit(2, "kg"),
  6542. name: "Sole",
  6543. image: {
  6544. source: "./media/characters/piper/sole.svg"
  6545. }
  6546. },
  6547. nipple: {
  6548. height: math.unit(0.25, "feet"),
  6549. weight: math.unit(1.5, "lb"),
  6550. name: "Nipple",
  6551. image: {
  6552. source: "./media/characters/piper/nipple.svg"
  6553. }
  6554. },
  6555. head: {
  6556. height: math.unit(1.1, "feet"),
  6557. name: "Head",
  6558. image: {
  6559. source: "./media/characters/piper/head.svg"
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Micro",
  6566. height: math.unit(2, "inches")
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(5 + 8 / 12, "feet")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(250, "feet"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(7, "miles")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(220, "lb"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/gemini/front.svg"
  6592. }
  6593. },
  6594. back: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(220, "lb"),
  6597. name: "Back",
  6598. image: {
  6599. source: "./media/characters/gemini/back.svg"
  6600. }
  6601. },
  6602. kneeling: {
  6603. height: math.unit(6 / 1.5, "feet"),
  6604. weight: math.unit(220, "lb"),
  6605. name: "Kneeling",
  6606. image: {
  6607. source: "./media/characters/gemini/kneeling.svg",
  6608. bottom: 0.02
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(300, "meters"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Megamacro",
  6620. height: math.unit(6900, "meters")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6626. {
  6627. anthro: {
  6628. height: math.unit(2.35, "meters"),
  6629. weight: math.unit(73, "kg"),
  6630. name: "Anthro",
  6631. image: {
  6632. source: "./media/characters/alicia/anthro.svg",
  6633. extra: 2571 / 2385,
  6634. bottom: 75 / 2648
  6635. }
  6636. },
  6637. paw: {
  6638. height: math.unit(1.32, "feet"),
  6639. name: "Paw",
  6640. image: {
  6641. source: "./media/characters/alicia/paw.svg"
  6642. }
  6643. },
  6644. feral: {
  6645. height: math.unit(1.69, "meters"),
  6646. weight: math.unit(73, "kg"),
  6647. name: "Feral",
  6648. image: {
  6649. source: "./media/characters/alicia/feral.svg",
  6650. extra: 2123 / 1715,
  6651. bottom: 222 / 2349
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(2.35, "meters")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(60, "meters"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Megamacro",
  6667. height: math.unit(10000, "kilometers")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(7, "feet"),
  6676. weight: math.unit(250, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/archy/front.svg"
  6680. }
  6681. }
  6682. },
  6683. [
  6684. {
  6685. name: "Micro",
  6686. height: math.unit(1, "inch")
  6687. },
  6688. {
  6689. name: "Shorty",
  6690. height: math.unit(5, "feet")
  6691. },
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(7, "feet")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(600, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(1, "mile")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(1.65, "meters"),
  6712. weight: math.unit(74, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/berri/front.svg",
  6716. extra: 857 / 837,
  6717. bottom: 18 / 877
  6718. }
  6719. },
  6720. bum: {
  6721. height: math.unit(1.46, "feet"),
  6722. name: "Bum",
  6723. image: {
  6724. source: "./media/characters/berri/bum.svg"
  6725. }
  6726. },
  6727. mouth: {
  6728. height: math.unit(0.44, "feet"),
  6729. name: "Mouth",
  6730. image: {
  6731. source: "./media/characters/berri/mouth.svg"
  6732. }
  6733. },
  6734. paw: {
  6735. height: math.unit(0.826, "feet"),
  6736. name: "Paw",
  6737. image: {
  6738. source: "./media/characters/berri/paw.svg"
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(1.65, "meters")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(60, "m"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Megamacro",
  6754. height: math.unit(9.213, "km")
  6755. },
  6756. {
  6757. name: "Planet Eater",
  6758. height: math.unit(489, "megameters")
  6759. },
  6760. {
  6761. name: "Teramacro",
  6762. height: math.unit(2471635000000, "meters")
  6763. },
  6764. {
  6765. name: "Examacro",
  6766. height: math.unit(8.0624e+26, "meters")
  6767. }
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(1.72, "meters"),
  6775. weight: math.unit(68, "kg"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/lexi/front.svg"
  6779. }
  6780. }
  6781. },
  6782. [
  6783. {
  6784. name: "Very Smol",
  6785. height: math.unit(10, "mm")
  6786. },
  6787. {
  6788. name: "Micro",
  6789. height: math.unit(6.8, "cm"),
  6790. default: true
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(1.72, "m")
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(1.69, "meters"),
  6803. weight: math.unit(68, "kg"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/martin/front.svg",
  6807. extra: 596 / 581
  6808. }
  6809. }
  6810. },
  6811. [
  6812. {
  6813. name: "Micro",
  6814. height: math.unit(6.85, "cm"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(1.69, "m")
  6820. }
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(1.69, "meters"),
  6828. weight: math.unit(68, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/juno/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Micro",
  6838. height: math.unit(7, "cm")
  6839. },
  6840. {
  6841. name: "Normal",
  6842. height: math.unit(1.89, "m")
  6843. },
  6844. {
  6845. name: "Macro",
  6846. height: math.unit(353, "meters"),
  6847. default: true
  6848. }
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(1.93, "meters"),
  6856. weight: math.unit(83, "kg"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/samantha/front.svg"
  6860. }
  6861. },
  6862. frontClothed: {
  6863. height: math.unit(1.93, "meters"),
  6864. weight: math.unit(83, "kg"),
  6865. name: "Front (Clothed)",
  6866. image: {
  6867. source: "./media/characters/samantha/front-clothed.svg"
  6868. }
  6869. },
  6870. back: {
  6871. height: math.unit(1.93, "meters"),
  6872. weight: math.unit(83, "kg"),
  6873. name: "Back",
  6874. image: {
  6875. source: "./media/characters/samantha/back.svg"
  6876. }
  6877. },
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(1.93, "m")
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(74, "meters"),
  6887. default: true
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(223, "meters"),
  6892. },
  6893. {
  6894. name: "Megamacro",
  6895. height: math.unit(8381, "meters"),
  6896. },
  6897. {
  6898. name: "Megamacro+",
  6899. height: math.unit(12000, "kilometers")
  6900. },
  6901. ]
  6902. ))
  6903. characterMakers.push(() => makeCharacter(
  6904. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6905. {
  6906. front: {
  6907. height: math.unit(1.92, "meters"),
  6908. weight: math.unit(80, "kg"),
  6909. name: "Front",
  6910. image: {
  6911. source: "./media/characters/dr-clay/front.svg"
  6912. }
  6913. },
  6914. frontClothed: {
  6915. height: math.unit(1.92, "meters"),
  6916. weight: math.unit(80, "kg"),
  6917. name: "Front (Clothed)",
  6918. image: {
  6919. source: "./media/characters/dr-clay/front-clothed.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Normal",
  6926. height: math.unit(1.92, "m")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(214, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro+",
  6935. height: math.unit(12.237, "meters"),
  6936. },
  6937. {
  6938. name: "Megamacro",
  6939. height: math.unit(557, "megameters"),
  6940. },
  6941. {
  6942. name: "Unimaginable",
  6943. height: math.unit(120e9, "lightyears")
  6944. },
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(2, "meters"),
  6952. weight: math.unit(80, "kg"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Teramacro",
  6962. height: math.unit(500000, "lightyears"),
  6963. default: true
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6969. {
  6970. crux: {
  6971. height: math.unit(2, "meters"),
  6972. weight: math.unit(150, "kg"),
  6973. name: "Crux",
  6974. image: {
  6975. source: "./media/characters/vemus/crux.svg",
  6976. extra: 1074/936,
  6977. bottom: 23/1097
  6978. }
  6979. },
  6980. skunkTanuki: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(150, "kg"),
  6983. name: "Skunk-Tanuki",
  6984. image: {
  6985. source: "./media/characters/vemus/skunk-tanuki.svg",
  6986. extra: 926/893,
  6987. bottom: 20/946
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(3.75, "meters"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Big",
  6999. height: math.unit(8, "meters")
  7000. },
  7001. {
  7002. name: "Macro",
  7003. height: math.unit(100, "meters")
  7004. },
  7005. {
  7006. name: "Macro+",
  7007. height: math.unit(1500, "meters")
  7008. },
  7009. {
  7010. name: "Stellar",
  7011. height: math.unit(14e8, "meters")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(2, "meters"),
  7020. weight: math.unit(70, "kg"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/beherit/front.svg",
  7024. extra: 1234/1109,
  7025. bottom: 55/1289
  7026. }
  7027. }
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(6, "feet")
  7033. },
  7034. {
  7035. name: "Lorg",
  7036. height: math.unit(25, "feet"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Lorger",
  7041. height: math.unit(75, "feet")
  7042. },
  7043. {
  7044. name: "Macro",
  7045. height: math.unit(200, "meters")
  7046. },
  7047. ]
  7048. ))
  7049. characterMakers.push(() => makeCharacter(
  7050. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7051. {
  7052. front: {
  7053. height: math.unit(2, "meters"),
  7054. weight: math.unit(150, "kg"),
  7055. name: "Front",
  7056. image: {
  7057. source: "./media/characters/everett/front.svg",
  7058. extra: 1017/866,
  7059. bottom: 86/1103
  7060. }
  7061. },
  7062. paw: {
  7063. height: math.unit(2 / 3.6, "meters"),
  7064. name: "Paw",
  7065. image: {
  7066. source: "./media/characters/everett/paw.svg"
  7067. }
  7068. },
  7069. },
  7070. [
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(15, "feet"),
  7074. default: true
  7075. },
  7076. {
  7077. name: "Lorg",
  7078. height: math.unit(70, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Lorger",
  7083. height: math.unit(250, "feet")
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(500, "meters")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(2, "meters"),
  7096. weight: math.unit(86, "kg"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/rose/front.svg",
  7100. extra: 1785/1636,
  7101. bottom: 30/1815
  7102. },
  7103. form: "liom",
  7104. default: true
  7105. },
  7106. frontSporty: {
  7107. height: math.unit(2, "meters"),
  7108. weight: math.unit(86, "kg"),
  7109. name: "Front (Sporty)",
  7110. image: {
  7111. source: "./media/characters/rose/front-sporty.svg",
  7112. extra: 350/335,
  7113. bottom: 10/360
  7114. },
  7115. form: "liom"
  7116. },
  7117. frontAlt: {
  7118. height: math.unit(1.6, "meters"),
  7119. weight: math.unit(86, "kg"),
  7120. name: "Front (Alt)",
  7121. image: {
  7122. source: "./media/characters/rose/front-alt.svg",
  7123. extra: 299/283,
  7124. bottom: 3/302
  7125. },
  7126. form: "liom"
  7127. },
  7128. plush: {
  7129. height: math.unit(2, "meters"),
  7130. weight: math.unit(86/3, "kg"),
  7131. name: "Plush",
  7132. image: {
  7133. source: "./media/characters/rose/plush.svg",
  7134. extra: 361/337,
  7135. bottom: 11/372
  7136. },
  7137. form: "plush",
  7138. default: true
  7139. },
  7140. faeStanding: {
  7141. height: math.unit(10, "cm"),
  7142. weight: math.unit(10, "grams"),
  7143. name: "Standing",
  7144. image: {
  7145. source: "./media/characters/rose/fae-standing.svg",
  7146. extra: 1189/1060,
  7147. bottom: 27/1216
  7148. },
  7149. form: "fae",
  7150. default: true
  7151. },
  7152. faeSitting: {
  7153. height: math.unit(5, "cm"),
  7154. weight: math.unit(10, "grams"),
  7155. name: "Sitting",
  7156. image: {
  7157. source: "./media/characters/rose/fae-sitting.svg",
  7158. extra: 737/577,
  7159. bottom: 356/1093
  7160. },
  7161. form: "fae"
  7162. },
  7163. faePaw: {
  7164. height: math.unit(1.35, "cm"),
  7165. name: "Paw",
  7166. image: {
  7167. source: "./media/characters/rose/fae-paw.svg"
  7168. },
  7169. form: "fae"
  7170. },
  7171. },
  7172. [
  7173. {
  7174. name: "True Micro",
  7175. height: math.unit(9, "cm"),
  7176. form: "liom"
  7177. },
  7178. {
  7179. name: "Micro",
  7180. height: math.unit(16, "cm"),
  7181. form: "liom"
  7182. },
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(1.85, "meters"),
  7186. default: true,
  7187. form: "liom"
  7188. },
  7189. {
  7190. name: "Mini-Macro",
  7191. height: math.unit(5, "meters"),
  7192. form: "liom"
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(15, "meters"),
  7197. form: "liom"
  7198. },
  7199. {
  7200. name: "True Macro",
  7201. height: math.unit(40, "meters"),
  7202. form: "liom"
  7203. },
  7204. {
  7205. name: "City Scale",
  7206. height: math.unit(1, "km"),
  7207. form: "liom"
  7208. },
  7209. {
  7210. name: "Plushie",
  7211. height: math.unit(9, "cm"),
  7212. form: "plush",
  7213. default: true
  7214. },
  7215. {
  7216. name: "Fae",
  7217. height: math.unit(10, "cm"),
  7218. form: "fae",
  7219. default: true
  7220. },
  7221. ],
  7222. {
  7223. "liom": {
  7224. name: "Liom"
  7225. },
  7226. "plush": {
  7227. name: "Plush"
  7228. },
  7229. "fae": {
  7230. name: "Fae Fox",
  7231. default: true
  7232. }
  7233. }
  7234. ))
  7235. characterMakers.push(() => makeCharacter(
  7236. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7237. {
  7238. front: {
  7239. height: math.unit(2, "meters"),
  7240. weight: math.unit(350, "lbs"),
  7241. name: "Front",
  7242. image: {
  7243. source: "./media/characters/regal/front.svg"
  7244. }
  7245. },
  7246. back: {
  7247. height: math.unit(2, "meters"),
  7248. weight: math.unit(350, "lbs"),
  7249. name: "Back",
  7250. image: {
  7251. source: "./media/characters/regal/back.svg"
  7252. }
  7253. },
  7254. },
  7255. [
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(350, "feet"),
  7259. default: true
  7260. }
  7261. ]
  7262. ))
  7263. characterMakers.push(() => makeCharacter(
  7264. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7265. {
  7266. front: {
  7267. height: math.unit(4 + 11 / 12, "feet"),
  7268. weight: math.unit(100, "lbs"),
  7269. name: "Front",
  7270. image: {
  7271. source: "./media/characters/opal/front.svg"
  7272. }
  7273. },
  7274. frontAlt: {
  7275. height: math.unit(4 + 11 / 12, "feet"),
  7276. weight: math.unit(100, "lbs"),
  7277. name: "Front (Alt)",
  7278. image: {
  7279. source: "./media/characters/opal/front-alt.svg"
  7280. }
  7281. },
  7282. },
  7283. [
  7284. {
  7285. name: "Small",
  7286. height: math.unit(4 + 11 / 12, "feet")
  7287. },
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(20, "feet"),
  7291. default: true
  7292. },
  7293. {
  7294. name: "Macro",
  7295. height: math.unit(120, "feet")
  7296. },
  7297. {
  7298. name: "Megamacro",
  7299. height: math.unit(80, "miles")
  7300. },
  7301. {
  7302. name: "True Size",
  7303. height: math.unit(100000, "lightyears")
  7304. },
  7305. ]
  7306. ))
  7307. characterMakers.push(() => makeCharacter(
  7308. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7309. {
  7310. front: {
  7311. height: math.unit(6, "feet"),
  7312. weight: math.unit(200, "lbs"),
  7313. name: "Front",
  7314. image: {
  7315. source: "./media/characters/vector-wuff/front.svg"
  7316. }
  7317. }
  7318. },
  7319. [
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(2.8, "meters")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(450, "meters"),
  7327. default: true
  7328. },
  7329. {
  7330. name: "Megamacro",
  7331. height: math.unit(15, "kilometers")
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(256, "lbs"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/dannik/front.svg"
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(69.57, "meters"),
  7351. default: true
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7357. {
  7358. front: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(120, "lbs"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/azura-saharah/front.svg"
  7364. }
  7365. },
  7366. back: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(120, "lbs"),
  7369. name: "Back",
  7370. image: {
  7371. source: "./media/characters/azura-saharah/back.svg"
  7372. }
  7373. },
  7374. },
  7375. [
  7376. {
  7377. name: "Macro",
  7378. height: math.unit(100, "feet"),
  7379. default: true
  7380. },
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7385. {
  7386. side: {
  7387. height: math.unit(5 + 4 / 12, "feet"),
  7388. weight: math.unit(163, "lbs"),
  7389. name: "Side",
  7390. image: {
  7391. source: "./media/characters/kennedy/side.svg"
  7392. }
  7393. }
  7394. },
  7395. [
  7396. {
  7397. name: "Standard Doggo",
  7398. height: math.unit(5 + 4 / 12, "feet")
  7399. },
  7400. {
  7401. name: "Big Doggo",
  7402. height: math.unit(25 + 3 / 12, "feet"),
  7403. default: true
  7404. },
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7409. {
  7410. front: {
  7411. height: math.unit(5 + 5/12, "feet"),
  7412. weight: math.unit(100, "lbs"),
  7413. name: "Front",
  7414. image: {
  7415. source: "./media/characters/odios-de-lunar/front.svg",
  7416. extra: 1468/1323,
  7417. bottom: 22/1490
  7418. }
  7419. }
  7420. },
  7421. [
  7422. {
  7423. name: "Micro",
  7424. height: math.unit(3, "inches")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(5.5, "feet"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(100, "feet")
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7439. {
  7440. back: {
  7441. height: math.unit(6, "feet"),
  7442. weight: math.unit(220, "lbs"),
  7443. name: "Back",
  7444. image: {
  7445. source: "./media/characters/mandake/back.svg"
  7446. }
  7447. }
  7448. },
  7449. [
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(7, "feet"),
  7453. default: true
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(78, "feet")
  7458. },
  7459. {
  7460. name: "Macro+",
  7461. height: math.unit(300, "meters")
  7462. },
  7463. {
  7464. name: "Macro++",
  7465. height: math.unit(2400, "feet")
  7466. },
  7467. {
  7468. name: "Megamacro",
  7469. height: math.unit(5167, "meters")
  7470. },
  7471. {
  7472. name: "Gigamacro",
  7473. height: math.unit(41769, "miles")
  7474. },
  7475. ]
  7476. ))
  7477. characterMakers.push(() => makeCharacter(
  7478. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7479. {
  7480. front: {
  7481. height: math.unit(6, "feet"),
  7482. weight: math.unit(120, "lbs"),
  7483. name: "Front",
  7484. image: {
  7485. source: "./media/characters/yozey/front.svg"
  7486. }
  7487. },
  7488. frontAlt: {
  7489. height: math.unit(6, "feet"),
  7490. weight: math.unit(120, "lbs"),
  7491. name: "Front (Alt)",
  7492. image: {
  7493. source: "./media/characters/yozey/front-alt.svg"
  7494. }
  7495. },
  7496. side: {
  7497. height: math.unit(6, "feet"),
  7498. weight: math.unit(120, "lbs"),
  7499. name: "Side",
  7500. image: {
  7501. source: "./media/characters/yozey/side.svg"
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(3, "inches"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(6, "feet")
  7514. }
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7519. {
  7520. front: {
  7521. height: math.unit(6, "feet"),
  7522. weight: math.unit(103, "lbs"),
  7523. name: "Front",
  7524. image: {
  7525. source: "./media/characters/valeska-voss/front.svg"
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Mini-Sized Sub",
  7532. height: math.unit(3.1, "inches")
  7533. },
  7534. {
  7535. name: "Mid-Sized Sub",
  7536. height: math.unit(6.2, "inches")
  7537. },
  7538. {
  7539. name: "Full-Sized Sub",
  7540. height: math.unit(9.3, "inches")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(5 + 2 / 12, "foot"),
  7545. default: true
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7551. {
  7552. front: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(160, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/gene-zeta/front.svg",
  7558. extra: 3006 / 2826,
  7559. bottom: 182 / 3188
  7560. }
  7561. }
  7562. },
  7563. [
  7564. {
  7565. name: "Micro",
  7566. height: math.unit(6, "inches")
  7567. },
  7568. {
  7569. name: "Normal",
  7570. height: math.unit(5 + 11 / 12, "foot"),
  7571. default: true
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(140, "feet")
  7576. },
  7577. {
  7578. name: "Supercharged",
  7579. height: math.unit(2500, "feet")
  7580. },
  7581. ]
  7582. ))
  7583. characterMakers.push(() => makeCharacter(
  7584. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7585. {
  7586. front: {
  7587. height: math.unit(6, "feet"),
  7588. weight: math.unit(350, "lbs"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/razinox/front.svg",
  7592. extra: 1686 / 1548,
  7593. bottom: 28.2 / 1868
  7594. }
  7595. },
  7596. back: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(350, "lbs"),
  7599. name: "Back",
  7600. image: {
  7601. source: "./media/characters/razinox/back.svg",
  7602. extra: 1660 / 1590,
  7603. bottom: 15 / 1665
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Normal",
  7610. height: math.unit(10 + 8 / 12, "foot")
  7611. },
  7612. {
  7613. name: "Minimacro",
  7614. height: math.unit(15, "foot")
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(60, "foot"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "Megamacro",
  7623. height: math.unit(5, "miles")
  7624. },
  7625. {
  7626. name: "Gigamacro",
  7627. height: math.unit(6000, "miles")
  7628. },
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(6, "feet"),
  7636. weight: math.unit(150, "lbs"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/cobalt/front.svg"
  7640. }
  7641. }
  7642. },
  7643. [
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(8 + 1 / 12, "foot")
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(111, "foot"),
  7651. default: true
  7652. },
  7653. {
  7654. name: "Supracosmic",
  7655. height: math.unit(1e42, "feet")
  7656. },
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(5, "inches"),
  7664. name: "Front",
  7665. image: {
  7666. source: "./media/characters/amanda/front.svg",
  7667. extra: 926/791,
  7668. bottom: 38/964
  7669. }
  7670. },
  7671. back: {
  7672. height: math.unit(5, "inches"),
  7673. name: "Back",
  7674. image: {
  7675. source: "./media/characters/amanda/back.svg",
  7676. extra: 909/805,
  7677. bottom: 43/952
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Micro",
  7684. height: math.unit(5, "inches"),
  7685. default: true
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(2.75, "meters"),
  7694. weight: math.unit(1200, "lb"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/teal/front.svg",
  7698. extra: 2463 / 2320,
  7699. bottom: 166 / 2629
  7700. }
  7701. },
  7702. back: {
  7703. height: math.unit(2.75, "meters"),
  7704. weight: math.unit(1200, "lb"),
  7705. name: "Back",
  7706. image: {
  7707. source: "./media/characters/teal/back.svg",
  7708. extra: 2580 / 2489,
  7709. bottom: 151 / 2731
  7710. }
  7711. },
  7712. sitting: {
  7713. height: math.unit(1.9, "meters"),
  7714. weight: math.unit(1200, "lb"),
  7715. name: "Sitting",
  7716. image: {
  7717. source: "./media/characters/teal/sitting.svg",
  7718. extra: 623 / 590,
  7719. bottom: 121 / 744
  7720. }
  7721. },
  7722. standing: {
  7723. height: math.unit(2.75, "meters"),
  7724. weight: math.unit(1200, "lb"),
  7725. name: "Standing",
  7726. image: {
  7727. source: "./media/characters/teal/standing.svg",
  7728. extra: 923 / 893,
  7729. bottom: 60 / 983
  7730. }
  7731. },
  7732. stretching: {
  7733. height: math.unit(3.65, "meters"),
  7734. weight: math.unit(1200, "lb"),
  7735. name: "Stretching",
  7736. image: {
  7737. source: "./media/characters/teal/stretching.svg",
  7738. extra: 1276 / 1244,
  7739. bottom: 0 / 1276
  7740. }
  7741. },
  7742. legged: {
  7743. height: math.unit(1.3, "meters"),
  7744. weight: math.unit(100, "lb"),
  7745. name: "Legged",
  7746. image: {
  7747. source: "./media/characters/teal/legged.svg",
  7748. extra: 462 / 437,
  7749. bottom: 24 / 486
  7750. }
  7751. },
  7752. naga: {
  7753. height: math.unit(5.4, "meters"),
  7754. weight: math.unit(4000, "lb"),
  7755. name: "Naga",
  7756. image: {
  7757. source: "./media/characters/teal/naga.svg",
  7758. extra: 1902 / 1858,
  7759. bottom: 0 / 1902
  7760. }
  7761. },
  7762. hand: {
  7763. height: math.unit(0.52, "meters"),
  7764. name: "Hand",
  7765. image: {
  7766. source: "./media/characters/teal/hand.svg"
  7767. }
  7768. },
  7769. maw: {
  7770. height: math.unit(0.43, "meters"),
  7771. name: "Maw",
  7772. image: {
  7773. source: "./media/characters/teal/maw.svg"
  7774. }
  7775. },
  7776. slit: {
  7777. height: math.unit(0.25, "meters"),
  7778. name: "Slit",
  7779. image: {
  7780. source: "./media/characters/teal/slit.svg"
  7781. }
  7782. },
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(2.75, "meters"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(300, "feet")
  7793. },
  7794. {
  7795. name: "Macro+",
  7796. height: math.unit(2000, "feet")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7802. {
  7803. frontCat: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(180, "lbs"),
  7806. name: "Front (Cat)",
  7807. image: {
  7808. source: "./media/characters/ravin-amulet/front-cat.svg"
  7809. }
  7810. },
  7811. frontCatAlt: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(180, "lbs"),
  7814. name: "Front (Alt, Cat)",
  7815. image: {
  7816. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7817. }
  7818. },
  7819. frontWerewolf: {
  7820. height: math.unit(6 * 1.2, "feet"),
  7821. weight: math.unit(225, "lbs"),
  7822. name: "Front (Werewolf)",
  7823. image: {
  7824. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7825. }
  7826. },
  7827. backWerewolf: {
  7828. height: math.unit(6 * 1.2, "feet"),
  7829. weight: math.unit(225, "lbs"),
  7830. name: "Back (Werewolf)",
  7831. image: {
  7832. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Nano",
  7839. height: math.unit(1, "micrometer")
  7840. },
  7841. {
  7842. name: "Micro",
  7843. height: math.unit(1, "inch")
  7844. },
  7845. {
  7846. name: "Normal",
  7847. height: math.unit(6, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(60, "feet")
  7853. }
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(165, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/fluoresce/front.svg"
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(6, "cm")
  7872. },
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(5 + 7 / 12, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(56, "feet")
  7881. },
  7882. {
  7883. name: "Megamacro",
  7884. height: math.unit(1.9, "miles")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(9 + 6 / 12, "feet"),
  7893. weight: math.unit(523, "lbs"),
  7894. name: "Side",
  7895. image: {
  7896. source: "./media/characters/aurora/side.svg"
  7897. }
  7898. }
  7899. },
  7900. [
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(9 + 6 / 12, "feet")
  7904. },
  7905. {
  7906. name: "Macro",
  7907. height: math.unit(96, "feet"),
  7908. default: true
  7909. },
  7910. {
  7911. name: "Macro+",
  7912. height: math.unit(243, "feet")
  7913. },
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(194, "cm"),
  7921. weight: math.unit(90, "kg"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/ranek/front.svg",
  7925. extra: 1862/1791,
  7926. bottom: 80/1942
  7927. }
  7928. },
  7929. back: {
  7930. height: math.unit(194, "cm"),
  7931. weight: math.unit(90, "kg"),
  7932. name: "Back",
  7933. image: {
  7934. source: "./media/characters/ranek/back.svg",
  7935. extra: 1853/1787,
  7936. bottom: 74/1927
  7937. }
  7938. },
  7939. feral: {
  7940. height: math.unit(30, "cm"),
  7941. weight: math.unit(1.6, "lbs"),
  7942. name: "Feral",
  7943. image: {
  7944. source: "./media/characters/ranek/feral.svg",
  7945. extra: 990/631,
  7946. bottom: 29/1019
  7947. }
  7948. },
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(194, "cm"),
  7954. default: true
  7955. },
  7956. {
  7957. name: "Macro",
  7958. height: math.unit(100, "meters")
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7964. {
  7965. front: {
  7966. height: math.unit(5 + 6 / 12, "feet"),
  7967. weight: math.unit(153, "lbs"),
  7968. name: "Front",
  7969. image: {
  7970. source: "./media/characters/andrew-cooper/front.svg"
  7971. }
  7972. },
  7973. },
  7974. [
  7975. {
  7976. name: "Nano",
  7977. height: math.unit(1, "mm")
  7978. },
  7979. {
  7980. name: "Micro",
  7981. height: math.unit(2, "inches")
  7982. },
  7983. {
  7984. name: "Normal",
  7985. height: math.unit(5 + 6 / 12, "feet"),
  7986. default: true
  7987. }
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(6, "feet"),
  7995. weight: math.unit(180, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/akane-sato/front.svg",
  7999. extra: 1219 / 1140
  8000. }
  8001. },
  8002. back: {
  8003. height: math.unit(6, "feet"),
  8004. weight: math.unit(180, "lbs"),
  8005. name: "Back",
  8006. image: {
  8007. source: "./media/characters/akane-sato/back.svg",
  8008. extra: 1219 / 1170
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(2.5, "meters")
  8016. },
  8017. {
  8018. name: "Macro",
  8019. height: math.unit(250, "meters"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Megamacro",
  8024. height: math.unit(25, "km")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8030. {
  8031. front: {
  8032. height: math.unit(6, "feet"),
  8033. weight: math.unit(65, "kg"),
  8034. name: "Front",
  8035. image: {
  8036. source: "./media/characters/rook/front.svg",
  8037. extra: 960 / 950
  8038. }
  8039. }
  8040. },
  8041. [
  8042. {
  8043. name: "Normal",
  8044. height: math.unit(8.8, "feet")
  8045. },
  8046. {
  8047. name: "Macro",
  8048. height: math.unit(88, "feet"),
  8049. default: true
  8050. },
  8051. {
  8052. name: "Megamacro",
  8053. height: math.unit(8, "miles")
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(12 + 2 / 12, "feet"),
  8062. weight: math.unit(808, "lbs"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/prodigy/front.svg"
  8066. }
  8067. }
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(12 + 2 / 12, "feet"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(143, "feet")
  8078. },
  8079. {
  8080. name: "Macro+",
  8081. height: math.unit(400, "feet")
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(6, "feet"),
  8090. weight: math.unit(225, "lbs"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/daniel/front.svg"
  8094. }
  8095. },
  8096. leaning: {
  8097. height: math.unit(6, "feet"),
  8098. weight: math.unit(225, "lbs"),
  8099. name: "Leaning",
  8100. image: {
  8101. source: "./media/characters/daniel/leaning.svg"
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(1000, "feet"),
  8109. default: true
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(6, "feet"),
  8118. weight: math.unit(88, "lbs"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/chiros/front.svg",
  8122. extra: 306 / 226
  8123. }
  8124. },
  8125. side: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(88, "lbs"),
  8128. name: "Side",
  8129. image: {
  8130. source: "./media/characters/chiros/side.svg",
  8131. extra: 306 / 226
  8132. }
  8133. },
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(6, "cm"),
  8139. default: true
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(100, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/selka/front.svg",
  8152. extra: 947 / 887
  8153. }
  8154. }
  8155. },
  8156. [
  8157. {
  8158. name: "Normal",
  8159. height: math.unit(5, "cm"),
  8160. default: true
  8161. },
  8162. ]
  8163. ))
  8164. characterMakers.push(() => makeCharacter(
  8165. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8166. {
  8167. front: {
  8168. height: math.unit(8 + 3 / 12, "feet"),
  8169. weight: math.unit(424, "lbs"),
  8170. name: "Front",
  8171. image: {
  8172. source: "./media/characters/verin/front.svg",
  8173. extra: 1845 / 1550
  8174. }
  8175. },
  8176. frontArmored: {
  8177. height: math.unit(8 + 3 / 12, "feet"),
  8178. weight: math.unit(424, "lbs"),
  8179. name: "Front (Armored)",
  8180. image: {
  8181. source: "./media/characters/verin/front-armor.svg",
  8182. extra: 1845 / 1550,
  8183. bottom: 0.01
  8184. }
  8185. },
  8186. back: {
  8187. height: math.unit(8 + 3 / 12, "feet"),
  8188. weight: math.unit(424, "lbs"),
  8189. name: "Back",
  8190. image: {
  8191. source: "./media/characters/verin/back.svg",
  8192. bottom: 0.1,
  8193. extra: 1
  8194. }
  8195. },
  8196. foot: {
  8197. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8198. name: "Foot",
  8199. image: {
  8200. source: "./media/characters/verin/foot.svg"
  8201. }
  8202. },
  8203. },
  8204. [
  8205. {
  8206. name: "Normal",
  8207. height: math.unit(8 + 3 / 12, "feet")
  8208. },
  8209. {
  8210. name: "Minimacro",
  8211. height: math.unit(21, "feet"),
  8212. default: true
  8213. },
  8214. {
  8215. name: "Macro",
  8216. height: math.unit(626, "feet")
  8217. },
  8218. ]
  8219. ))
  8220. characterMakers.push(() => makeCharacter(
  8221. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8222. {
  8223. front: {
  8224. height: math.unit(2.718, "meters"),
  8225. weight: math.unit(150, "lbs"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/sovrim-terraquian/front.svg",
  8229. extra: 1752/1689,
  8230. bottom: 36/1788
  8231. }
  8232. },
  8233. back: {
  8234. height: math.unit(2.718, "meters"),
  8235. weight: math.unit(150, "lbs"),
  8236. name: "Back",
  8237. image: {
  8238. source: "./media/characters/sovrim-terraquian/back.svg",
  8239. extra: 1698/1657,
  8240. bottom: 58/1756
  8241. }
  8242. },
  8243. tongue: {
  8244. height: math.unit(2.865, "feet"),
  8245. name: "Tongue",
  8246. image: {
  8247. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8248. }
  8249. },
  8250. hand: {
  8251. height: math.unit(1.61, "feet"),
  8252. name: "Hand",
  8253. image: {
  8254. source: "./media/characters/sovrim-terraquian/hand.svg"
  8255. }
  8256. },
  8257. foot: {
  8258. height: math.unit(1.05, "feet"),
  8259. name: "Foot",
  8260. image: {
  8261. source: "./media/characters/sovrim-terraquian/foot.svg"
  8262. }
  8263. },
  8264. footAlt: {
  8265. height: math.unit(0.88, "feet"),
  8266. name: "Foot (Alt)",
  8267. image: {
  8268. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(2, "inches")
  8276. },
  8277. {
  8278. name: "Small",
  8279. height: math.unit(1, "meter")
  8280. },
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(Math.E, "meters"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(20, "meters")
  8289. },
  8290. {
  8291. name: "Macro+",
  8292. height: math.unit(400, "meters")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(7, "feet"),
  8301. weight: math.unit(489, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/reece-silvermane/front.svg",
  8305. bottom: 0.02,
  8306. extra: 1
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(1.5, "miles"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(6, "feet"),
  8323. weight: math.unit(78, "kg"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/kane/front.svg",
  8327. extra: 978 / 899
  8328. }
  8329. },
  8330. },
  8331. [
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(2.1, "m"),
  8335. },
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(1, "km"),
  8339. default: true
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(200, "kg"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/tegon/front.svg",
  8352. bottom: 0.01,
  8353. extra: 1
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Micro",
  8360. height: math.unit(1, "inch")
  8361. },
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(6 + 3 / 12, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Macro",
  8369. height: math.unit(300, "feet")
  8370. },
  8371. {
  8372. name: "Megamacro",
  8373. height: math.unit(69, "miles")
  8374. },
  8375. ]
  8376. ))
  8377. characterMakers.push(() => makeCharacter(
  8378. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8379. {
  8380. side: {
  8381. height: math.unit(6, "feet"),
  8382. weight: math.unit(2304, "lbs"),
  8383. name: "Side",
  8384. image: {
  8385. source: "./media/characters/arcturax/side.svg",
  8386. extra: 790 / 376,
  8387. bottom: 0.01
  8388. }
  8389. },
  8390. },
  8391. [
  8392. {
  8393. name: "Micro",
  8394. height: math.unit(2, "inch")
  8395. },
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(6, "feet")
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(39, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Megamacro",
  8407. height: math.unit(7, "miles")
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8413. {
  8414. front: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(50, "lbs"),
  8417. name: "Front",
  8418. image: {
  8419. source: "./media/characters/sentri/front.svg",
  8420. extra: 1750 / 1570,
  8421. bottom: 0.025
  8422. }
  8423. },
  8424. frontAlt: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(50, "lbs"),
  8427. name: "Front (Alt)",
  8428. image: {
  8429. source: "./media/characters/sentri/front-alt.svg",
  8430. extra: 1750 / 1570,
  8431. bottom: 0.025
  8432. }
  8433. },
  8434. },
  8435. [
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(15, "feet"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(2500, "feet")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(5 + 8 / 12, "feet"),
  8452. weight: math.unit(130, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/corvin/front.svg",
  8456. extra: 1803 / 1629
  8457. }
  8458. },
  8459. frontShirt: {
  8460. height: math.unit(5 + 8 / 12, "feet"),
  8461. weight: math.unit(130, "lbs"),
  8462. name: "Front (Shirt)",
  8463. image: {
  8464. source: "./media/characters/corvin/front-shirt.svg",
  8465. extra: 1803 / 1629
  8466. }
  8467. },
  8468. frontPoncho: {
  8469. height: math.unit(5 + 8 / 12, "feet"),
  8470. weight: math.unit(130, "lbs"),
  8471. name: "Front (Poncho)",
  8472. image: {
  8473. source: "./media/characters/corvin/front-poncho.svg",
  8474. extra: 1803 / 1629
  8475. }
  8476. },
  8477. side: {
  8478. height: math.unit(5 + 8 / 12, "feet"),
  8479. weight: math.unit(130, "lbs"),
  8480. name: "Side",
  8481. image: {
  8482. source: "./media/characters/corvin/side.svg",
  8483. extra: 1012 / 945
  8484. }
  8485. },
  8486. back: {
  8487. height: math.unit(5 + 8 / 12, "feet"),
  8488. weight: math.unit(130, "lbs"),
  8489. name: "Back",
  8490. image: {
  8491. source: "./media/characters/corvin/back.svg",
  8492. extra: 1803 / 1629
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Micro",
  8499. height: math.unit(3, "inches")
  8500. },
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(5 + 8 / 12, "feet")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(300, "feet"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Megamacro",
  8512. height: math.unit(500, "miles")
  8513. }
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(6, "feet"),
  8521. weight: math.unit(135, "lbs"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/q/front.svg",
  8525. extra: 854 / 752,
  8526. bottom: 0.005
  8527. }
  8528. },
  8529. back: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(130, "lbs"),
  8532. name: "Back",
  8533. image: {
  8534. source: "./media/characters/q/back.svg",
  8535. extra: 854 / 752
  8536. }
  8537. },
  8538. },
  8539. [
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(90, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Extra Macro",
  8547. height: math.unit(300, "feet"),
  8548. },
  8549. {
  8550. name: "BIG WALF",
  8551. height: math.unit(750, "feet"),
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(6, "feet"),
  8560. weight: math.unit(150, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/carley/front.svg",
  8564. extra: 3927 / 3540,
  8565. bottom: 29.2 / 735
  8566. }
  8567. }
  8568. },
  8569. [
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(6 + 3 / 12, "feet")
  8573. },
  8574. {
  8575. name: "Macro",
  8576. height: math.unit(185, "feet"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Megamacro",
  8581. height: math.unit(8, "miles"),
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8587. {
  8588. front: {
  8589. height: math.unit(3, "feet"),
  8590. weight: math.unit(28, "lbs"),
  8591. name: "Front",
  8592. image: {
  8593. source: "./media/characters/citrine/front.svg"
  8594. }
  8595. }
  8596. },
  8597. [
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(3, "feet"),
  8601. default: true
  8602. }
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8607. {
  8608. front: {
  8609. height: math.unit(14, "feet"),
  8610. weight: math.unit(1450, "kg"),
  8611. capacity: math.unit(15, "people"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/aura-starwind/front.svg",
  8615. extra: 1440/1327,
  8616. bottom: 11/1451
  8617. }
  8618. },
  8619. side: {
  8620. height: math.unit(14, "feet"),
  8621. weight: math.unit(1450, "kg"),
  8622. capacity: math.unit(15, "people"),
  8623. name: "Side",
  8624. image: {
  8625. source: "./media/characters/aura-starwind/side.svg",
  8626. extra: 1654 / 1497
  8627. }
  8628. },
  8629. taur: {
  8630. height: math.unit(18, "feet"),
  8631. weight: math.unit(5500, "kg"),
  8632. capacity: math.unit(50, "people"),
  8633. name: "Taur",
  8634. image: {
  8635. source: "./media/characters/aura-starwind/taur.svg",
  8636. extra: 1760 / 1650
  8637. }
  8638. },
  8639. feral: {
  8640. height: math.unit(46, "feet"),
  8641. weight: math.unit(25000, "kg"),
  8642. capacity: math.unit(120, "people"),
  8643. name: "Feral",
  8644. image: {
  8645. source: "./media/characters/aura-starwind/feral.svg"
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(14, "feet"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Macro",
  8657. height: math.unit(50, "meters")
  8658. },
  8659. {
  8660. name: "Megamacro",
  8661. height: math.unit(5000, "meters")
  8662. },
  8663. {
  8664. name: "Gigamacro",
  8665. height: math.unit(100000, "kilometers")
  8666. },
  8667. ]
  8668. ))
  8669. characterMakers.push(() => makeCharacter(
  8670. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8671. {
  8672. front: {
  8673. height: math.unit(2 + 7 / 12, "feet"),
  8674. weight: math.unit(32, "lbs"),
  8675. name: "Front",
  8676. image: {
  8677. source: "./media/characters/rivet/front.svg",
  8678. extra: 1716 / 1658,
  8679. bottom: 0.03
  8680. }
  8681. },
  8682. foot: {
  8683. height: math.unit(0.551, "feet"),
  8684. name: "Rivet's Foot",
  8685. image: {
  8686. source: "./media/characters/rivet/foot.svg"
  8687. },
  8688. rename: true
  8689. }
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(1.5, "inches"),
  8695. },
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(2 + 7 / 12, "feet"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(85, "feet")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(2.2, "km")
  8708. }
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(5 + 9 / 12, "feet"),
  8716. weight: math.unit(150, "lbs"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/coffee/front.svg",
  8720. extra: 3666 / 3032,
  8721. bottom: 0.04
  8722. }
  8723. },
  8724. foot: {
  8725. height: math.unit(1.29, "feet"),
  8726. name: "Foot",
  8727. image: {
  8728. source: "./media/characters/coffee/foot.svg"
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Micro",
  8735. height: math.unit(2, "inches"),
  8736. },
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(5 + 9 / 12, "feet"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Macro",
  8744. height: math.unit(800, "feet")
  8745. },
  8746. {
  8747. name: "Megamacro",
  8748. height: math.unit(25, "miles")
  8749. }
  8750. ]
  8751. ))
  8752. characterMakers.push(() => makeCharacter(
  8753. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8754. {
  8755. front: {
  8756. height: math.unit(6, "feet"),
  8757. weight: math.unit(200, "lbs"),
  8758. name: "Front",
  8759. image: {
  8760. source: "./media/characters/chari-gal/front.svg",
  8761. extra: 1568 / 1385,
  8762. bottom: 0.047
  8763. }
  8764. },
  8765. gigantamax: {
  8766. height: math.unit(6 * 16, "feet"),
  8767. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8768. name: "Gigantamax",
  8769. image: {
  8770. source: "./media/characters/chari-gal/gigantamax.svg",
  8771. extra: 1124 / 888,
  8772. bottom: 0.03
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(5 + 7 / 12, "feet")
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(200, "feet"),
  8784. default: true
  8785. }
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(6, "feet"),
  8793. weight: math.unit(150, "lbs"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/nova/front.svg",
  8797. extra: 5000 / 4722,
  8798. bottom: 0.02
  8799. }
  8800. }
  8801. },
  8802. [
  8803. {
  8804. name: "Micro-",
  8805. height: math.unit(0.8, "inches")
  8806. },
  8807. {
  8808. name: "Micro",
  8809. height: math.unit(2, "inches"),
  8810. default: true
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(3 + 1 / 12, "feet"),
  8819. weight: math.unit(21.7, "lbs"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/argent/front.svg",
  8823. extra: 1471 / 1331,
  8824. bottom: 100.8 / 1575.5
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Micro",
  8831. height: math.unit(2, "inches")
  8832. },
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(3 + 1 / 12, "feet"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(120, "feet")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8846. {
  8847. lamp: {
  8848. height: math.unit(7 * 1559 / 989, "feet"),
  8849. name: "Magic Lamp",
  8850. image: {
  8851. source: "./media/characters/mira-al-cul/lamp.svg",
  8852. extra: 1617 / 1559
  8853. }
  8854. },
  8855. front: {
  8856. height: math.unit(7, "feet"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/mira-al-cul/front.svg",
  8860. extra: 1044 / 990
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Heavily Restricted",
  8867. height: math.unit(7 * 1559 / 989, "feet")
  8868. },
  8869. {
  8870. name: "Freshly Freed",
  8871. height: math.unit(50 * 1559 / 989, "feet")
  8872. },
  8873. {
  8874. name: "World Encompassing",
  8875. height: math.unit(10000 * 1559 / 989, "miles")
  8876. },
  8877. {
  8878. name: "Galactic",
  8879. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8880. },
  8881. {
  8882. name: "Palmed Universe",
  8883. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Multiversal Matriarch",
  8888. height: math.unit(8.87e10, "yottameters")
  8889. },
  8890. {
  8891. name: "Void Mother",
  8892. height: math.unit(3.14e110, "yottaparsecs")
  8893. },
  8894. {
  8895. name: "Toying with Transcendence",
  8896. height: math.unit(1e307, "meters")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8902. {
  8903. front: {
  8904. height: math.unit(17 + 1 / 12, "feet"),
  8905. weight: math.unit(476.2 * 5, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/kuro-shi-uchū/front.svg",
  8909. extra: 2329 / 1835,
  8910. bottom: 0.02
  8911. }
  8912. },
  8913. },
  8914. [
  8915. {
  8916. name: "Micro",
  8917. height: math.unit(2, "inches")
  8918. },
  8919. {
  8920. name: "Normal",
  8921. height: math.unit(12, "meters")
  8922. },
  8923. {
  8924. name: "Planetary",
  8925. height: math.unit(0.00929, "AU"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Universal",
  8930. height: math.unit(20, "gigaparsecs")
  8931. },
  8932. ]
  8933. ))
  8934. characterMakers.push(() => makeCharacter(
  8935. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8936. {
  8937. front: {
  8938. height: math.unit(5 + 2 / 12, "feet"),
  8939. weight: math.unit(120, "lbs"),
  8940. name: "Front",
  8941. image: {
  8942. source: "./media/characters/katherine/front.svg",
  8943. extra: 2075 / 1969
  8944. }
  8945. },
  8946. dress: {
  8947. height: math.unit(5 + 2 / 12, "feet"),
  8948. weight: math.unit(120, "lbs"),
  8949. name: "Dress",
  8950. image: {
  8951. source: "./media/characters/katherine/dress.svg",
  8952. extra: 2258 / 2064
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Micro",
  8959. height: math.unit(1, "inches"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(5 + 2 / 12, "feet")
  8965. },
  8966. {
  8967. name: "Macro",
  8968. height: math.unit(100, "meters")
  8969. },
  8970. {
  8971. name: "Megamacro",
  8972. height: math.unit(80, "miles")
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(7 + 8 / 12, "feet"),
  8981. weight: math.unit(250, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/yevis/front.svg",
  8985. extra: 1938 / 1755
  8986. }
  8987. }
  8988. },
  8989. [
  8990. {
  8991. name: "Mortal",
  8992. height: math.unit(7 + 8 / 12, "feet")
  8993. },
  8994. {
  8995. name: "Battle",
  8996. height: math.unit(25 + 11 / 12, "feet")
  8997. },
  8998. {
  8999. name: "Wrath",
  9000. height: math.unit(1654 + 11 / 12, "feet")
  9001. },
  9002. {
  9003. name: "Planet Destroyer",
  9004. height: math.unit(12000, "miles")
  9005. },
  9006. {
  9007. name: "Galaxy Conqueror",
  9008. height: math.unit(1.45, "zettameters"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Universal War",
  9013. height: math.unit(184, "gigaparsecs")
  9014. },
  9015. {
  9016. name: "Eternity War",
  9017. height: math.unit(1.98e55, "yottaparsecs")
  9018. },
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(5 + 8 / 12, "feet"),
  9026. weight: math.unit(63, "kg"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/xavier/front.svg",
  9030. extra: 944 / 883
  9031. }
  9032. },
  9033. frontStretch: {
  9034. height: math.unit(5 + 8 / 12, "feet"),
  9035. weight: math.unit(63, "kg"),
  9036. name: "Stretching",
  9037. image: {
  9038. source: "./media/characters/xavier/front-stretch.svg",
  9039. extra: 962 / 820
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(5 + 8 / 12, "feet")
  9047. },
  9048. {
  9049. name: "Macro",
  9050. height: math.unit(100, "meters"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "McLargeHuge",
  9055. height: math.unit(10, "miles")
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(5 + 5 / 12, "feet"),
  9064. weight: math.unit(150, "lb"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/joshii/front.svg",
  9068. extra: 765 / 653,
  9069. bottom: 51 / 816
  9070. }
  9071. },
  9072. foot: {
  9073. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9074. name: "Foot",
  9075. image: {
  9076. source: "./media/characters/joshii/foot.svg"
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(2, "inches"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(5 + 5 / 12, "feet")
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(785, "feet")
  9093. },
  9094. {
  9095. name: "Megamacro",
  9096. height: math.unit(24.5, "miles")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(150, "lb"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/goddess-elizabeth/front.svg",
  9109. extra: 1800 / 1525,
  9110. bottom: 0.005
  9111. }
  9112. },
  9113. foot: {
  9114. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9115. name: "Foot",
  9116. image: {
  9117. source: "./media/characters/goddess-elizabeth/foot.svg"
  9118. }
  9119. },
  9120. mouth: {
  9121. height: math.unit(6, "feet"),
  9122. name: "Mouth",
  9123. image: {
  9124. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9125. }
  9126. },
  9127. },
  9128. [
  9129. {
  9130. name: "Micro",
  9131. height: math.unit(12, "feet")
  9132. },
  9133. {
  9134. name: "Normal",
  9135. height: math.unit(80, "miles"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Macro",
  9140. height: math.unit(15000, "parsecs")
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(5 + 9 / 12, "feet"),
  9149. weight: math.unit(144, "lb"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/kara/front.svg"
  9153. }
  9154. },
  9155. feet: {
  9156. height: math.unit(6 / 6.765, "feet"),
  9157. name: "Kara's Feet",
  9158. rename: true,
  9159. image: {
  9160. source: "./media/characters/kara/feet.svg"
  9161. }
  9162. },
  9163. },
  9164. [
  9165. {
  9166. name: "Normal",
  9167. height: math.unit(5 + 9 / 12, "feet")
  9168. },
  9169. {
  9170. name: "Macro",
  9171. height: math.unit(174, "feet"),
  9172. default: true
  9173. },
  9174. ]
  9175. ))
  9176. characterMakers.push(() => makeCharacter(
  9177. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9178. {
  9179. front: {
  9180. height: math.unit(18, "feet"),
  9181. weight: math.unit(4050, "lb"),
  9182. name: "Front",
  9183. image: {
  9184. source: "./media/characters/tyrone/front.svg",
  9185. extra: 2405 / 2270,
  9186. bottom: 182 / 2587
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(18, "feet"),
  9194. default: true
  9195. },
  9196. {
  9197. name: "Macro",
  9198. height: math.unit(300, "feet")
  9199. },
  9200. {
  9201. name: "Megamacro",
  9202. height: math.unit(15, "km")
  9203. },
  9204. {
  9205. name: "Gigamacro",
  9206. height: math.unit(500, "km")
  9207. },
  9208. {
  9209. name: "Teramacro",
  9210. height: math.unit(0.5, "gigameters")
  9211. },
  9212. {
  9213. name: "Omnimacro",
  9214. height: math.unit(1e252, "yottauniverse")
  9215. },
  9216. ]
  9217. ))
  9218. characterMakers.push(() => makeCharacter(
  9219. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9220. {
  9221. front: {
  9222. height: math.unit(7 + 8 / 12, "feet"),
  9223. weight: math.unit(120, "lb"),
  9224. name: "Front",
  9225. image: {
  9226. source: "./media/characters/danny/front.svg",
  9227. extra: 1490 / 1350
  9228. }
  9229. },
  9230. back: {
  9231. height: math.unit(7 + 8 / 12, "feet"),
  9232. weight: math.unit(120, "lb"),
  9233. name: "Back",
  9234. image: {
  9235. source: "./media/characters/danny/back.svg",
  9236. extra: 1490 / 1350
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(7 + 8 / 12, "feet"),
  9244. default: true
  9245. },
  9246. ]
  9247. ))
  9248. characterMakers.push(() => makeCharacter(
  9249. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9250. {
  9251. front: {
  9252. height: math.unit(3.5, "inches"),
  9253. weight: math.unit(19, "grams"),
  9254. name: "Front",
  9255. image: {
  9256. source: "./media/characters/mallow/front.svg",
  9257. extra: 471 / 431
  9258. }
  9259. },
  9260. back: {
  9261. height: math.unit(3.5, "inches"),
  9262. weight: math.unit(19, "grams"),
  9263. name: "Back",
  9264. image: {
  9265. source: "./media/characters/mallow/back.svg",
  9266. extra: 471 / 431
  9267. }
  9268. },
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(3.5, "inches"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(9, "feet"),
  9283. weight: math.unit(230, "kg"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/starry-aqua/front.svg"
  9287. }
  9288. },
  9289. back: {
  9290. height: math.unit(9, "feet"),
  9291. weight: math.unit(230, "kg"),
  9292. name: "Back",
  9293. image: {
  9294. source: "./media/characters/starry-aqua/back.svg"
  9295. }
  9296. },
  9297. hand: {
  9298. height: math.unit(9 * 0.1168, "feet"),
  9299. name: "Hand",
  9300. image: {
  9301. source: "./media/characters/starry-aqua/hand.svg"
  9302. }
  9303. },
  9304. foot: {
  9305. height: math.unit(9 * 0.18, "feet"),
  9306. name: "Foot",
  9307. image: {
  9308. source: "./media/characters/starry-aqua/foot.svg"
  9309. }
  9310. }
  9311. },
  9312. [
  9313. {
  9314. name: "Micro",
  9315. height: math.unit(3, "inches")
  9316. },
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(9, "feet")
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(300, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Megamacro",
  9328. height: math.unit(3200, "feet")
  9329. }
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(15, "feet"),
  9337. weight: math.unit(5026, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/luka-towers/front.svg",
  9341. extra: 1269/1133,
  9342. bottom: 51/1320
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Normal",
  9349. height: math.unit(15, "feet"),
  9350. default: true
  9351. },
  9352. {
  9353. name: "Minimacro",
  9354. height: math.unit(25, "feet")
  9355. },
  9356. {
  9357. name: "Macro",
  9358. height: math.unit(320, "feet")
  9359. },
  9360. {
  9361. name: "Megamacro",
  9362. height: math.unit(35000, "feet")
  9363. },
  9364. {
  9365. name: "Gigamacro",
  9366. height: math.unit(4000, "miles")
  9367. },
  9368. {
  9369. name: "Teramacro",
  9370. height: math.unit(15000, "miles")
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(150, "lb"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/natalie-nightring/front.svg",
  9383. extra: 1,
  9384. bottom: 0.06
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Uh Oh",
  9391. height: math.unit(0.1, "mm")
  9392. },
  9393. {
  9394. name: "Small",
  9395. height: math.unit(3, "inches")
  9396. },
  9397. {
  9398. name: "Human Scale",
  9399. height: math.unit(6, "feet")
  9400. },
  9401. {
  9402. name: "Librarian",
  9403. height: math.unit(50, "feet"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Immense",
  9408. height: math.unit(200, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(6, "feet"),
  9417. weight: math.unit(180, "lbs"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/danni-rosie/front.svg",
  9421. extra: 1260 / 1128,
  9422. bottom: 0.022
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(2, "inches"),
  9430. default: true
  9431. },
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(5 + 9 / 12, "feet"),
  9439. weight: math.unit(220, "lb"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/samantha-kruse/front.svg",
  9443. extra: (985 / 935),
  9444. bottom: 0.03
  9445. }
  9446. },
  9447. frontUndressed: {
  9448. height: math.unit(5 + 9 / 12, "feet"),
  9449. weight: math.unit(220, "lb"),
  9450. name: "Front (Undressed)",
  9451. image: {
  9452. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9453. extra: (973 / 923),
  9454. bottom: 0.025
  9455. }
  9456. },
  9457. fat: {
  9458. height: math.unit(5 + 9 / 12, "feet"),
  9459. weight: math.unit(900, "lb"),
  9460. name: "Front (Fat)",
  9461. image: {
  9462. source: "./media/characters/samantha-kruse/fat.svg",
  9463. extra: 2688 / 2561
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(5 + 9 / 12, "feet"),
  9471. default: true
  9472. }
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9477. {
  9478. back: {
  9479. height: math.unit(5 + 4 / 12, "feet"),
  9480. weight: math.unit(4963, "lb"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/amelia-rosie/back.svg",
  9484. extra: 1113 / 963,
  9485. bottom: 0.01
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Level 0",
  9492. height: math.unit(5 + 4 / 12, "feet")
  9493. },
  9494. {
  9495. name: "Level 1",
  9496. height: math.unit(164597, "feet"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Level 2",
  9501. height: math.unit(956243, "miles")
  9502. },
  9503. {
  9504. name: "Level 3",
  9505. height: math.unit(29421709423, "miles")
  9506. },
  9507. {
  9508. name: "Level 4",
  9509. height: math.unit(154, "lightyears")
  9510. },
  9511. {
  9512. name: "Level 5",
  9513. height: math.unit(4738272, "lightyears")
  9514. },
  9515. {
  9516. name: "Level 6",
  9517. height: math.unit(145787152896, "lightyears")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(5 + 11 / 12, "feet"),
  9526. weight: math.unit(65, "kg"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/rook-kitara/front.svg",
  9530. extra: 1347 / 1274,
  9531. bottom: 0.005
  9532. }
  9533. },
  9534. },
  9535. [
  9536. {
  9537. name: "Totally Unfair",
  9538. height: math.unit(1.8, "mm")
  9539. },
  9540. {
  9541. name: "Lap Rookie",
  9542. height: math.unit(1.4, "feet")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(5 + 11 / 12, "feet"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "How Did This Happen",
  9551. height: math.unit(80, "miles")
  9552. }
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(7, "feet"),
  9560. weight: math.unit(300, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/pisces/front.svg",
  9564. extra: 2255 / 2115,
  9565. bottom: 0.03
  9566. }
  9567. },
  9568. back: {
  9569. height: math.unit(7, "feet"),
  9570. weight: math.unit(300, "lb"),
  9571. name: "Back",
  9572. image: {
  9573. source: "./media/characters/pisces/back.svg",
  9574. extra: 2146 / 2055,
  9575. bottom: 0.04
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(7, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Swimming Pool",
  9587. height: math.unit(12.2, "meters")
  9588. },
  9589. {
  9590. name: "Olympic Swimming Pool",
  9591. height: math.unit(56.3, "meters")
  9592. },
  9593. {
  9594. name: "Lake Superior",
  9595. height: math.unit(93900, "meters")
  9596. },
  9597. {
  9598. name: "Mediterranean Sea",
  9599. height: math.unit(644457, "meters")
  9600. },
  9601. {
  9602. name: "World's Oceans",
  9603. height: math.unit(4567491, "meters")
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(2.3, "meters"),
  9612. weight: math.unit(120, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/zelas/front.svg"
  9616. }
  9617. },
  9618. side: {
  9619. height: math.unit(2.3, "meters"),
  9620. weight: math.unit(120, "kg"),
  9621. name: "Side",
  9622. image: {
  9623. source: "./media/characters/zelas/side.svg"
  9624. }
  9625. },
  9626. back: {
  9627. height: math.unit(2.3, "meters"),
  9628. weight: math.unit(120, "kg"),
  9629. name: "Back",
  9630. image: {
  9631. source: "./media/characters/zelas/back.svg"
  9632. }
  9633. },
  9634. foot: {
  9635. height: math.unit(1.116, "feet"),
  9636. name: "Foot",
  9637. image: {
  9638. source: "./media/characters/zelas/foot.svg"
  9639. }
  9640. },
  9641. },
  9642. [
  9643. {
  9644. name: "Normal",
  9645. height: math.unit(2.3, "meters")
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(30, "meters"),
  9650. default: true
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(1, "inch"),
  9659. weight: math.unit(0.21, "grams"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/talbot/front.svg",
  9663. extra: 594 / 544
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Micro",
  9670. height: math.unit(1, "inch"),
  9671. default: true
  9672. },
  9673. ]
  9674. ))
  9675. characterMakers.push(() => makeCharacter(
  9676. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9677. {
  9678. front: {
  9679. height: math.unit(3 + 3 / 12, "feet"),
  9680. weight: math.unit(51.8, "lb"),
  9681. name: "Front",
  9682. image: {
  9683. source: "./media/characters/fliss/front.svg",
  9684. extra: 840 / 640
  9685. }
  9686. },
  9687. },
  9688. [
  9689. {
  9690. name: "Teeny Tiny",
  9691. height: math.unit(1, "mm")
  9692. },
  9693. {
  9694. name: "Small",
  9695. height: math.unit(1, "inch"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "Standard Sylveon",
  9700. height: math.unit(3 + 3 / 12, "feet")
  9701. },
  9702. {
  9703. name: "Large Nuisance",
  9704. height: math.unit(33, "feet")
  9705. },
  9706. {
  9707. name: "City Filler",
  9708. height: math.unit(3000, "feet")
  9709. },
  9710. {
  9711. name: "New Horizon",
  9712. height: math.unit(6000, "miles")
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(5, "cm"),
  9721. weight: math.unit(1.94, "g"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/fleta/front.svg",
  9725. extra: 835 / 803
  9726. }
  9727. },
  9728. back: {
  9729. height: math.unit(5, "cm"),
  9730. weight: math.unit(1.94, "g"),
  9731. name: "Back",
  9732. image: {
  9733. source: "./media/characters/fleta/back.svg",
  9734. extra: 835 / 803
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Micro",
  9741. height: math.unit(5, "cm"),
  9742. default: true
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9748. {
  9749. front: {
  9750. height: math.unit(6, "feet"),
  9751. weight: math.unit(225, "lb"),
  9752. name: "Front",
  9753. image: {
  9754. source: "./media/characters/dominic/front.svg",
  9755. extra: 1770 / 1620,
  9756. bottom: 0.025
  9757. }
  9758. },
  9759. back: {
  9760. height: math.unit(6, "feet"),
  9761. weight: math.unit(225, "lb"),
  9762. name: "Back",
  9763. image: {
  9764. source: "./media/characters/dominic/back.svg",
  9765. extra: 1745 / 1620,
  9766. bottom: 0.065
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Nano",
  9773. height: math.unit(0.1, "mm")
  9774. },
  9775. {
  9776. name: "Micro-",
  9777. height: math.unit(1, "mm")
  9778. },
  9779. {
  9780. name: "Micro",
  9781. height: math.unit(4, "inches")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(6 + 4 / 12, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "Macro",
  9790. height: math.unit(115, "feet")
  9791. },
  9792. {
  9793. name: "Macro+",
  9794. height: math.unit(955, "feet")
  9795. },
  9796. {
  9797. name: "Megamacro",
  9798. height: math.unit(8990, "feet")
  9799. },
  9800. {
  9801. name: "Gigmacro",
  9802. height: math.unit(9310, "miles")
  9803. },
  9804. {
  9805. name: "Teramacro",
  9806. height: math.unit(1567005010, "miles")
  9807. },
  9808. {
  9809. name: "Examacro",
  9810. height: math.unit(1425, "parsecs")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(400, "feet"),
  9819. weight: math.unit(44444444, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/major-colonel/front.svg"
  9823. }
  9824. },
  9825. back: {
  9826. height: math.unit(400, "feet"),
  9827. weight: math.unit(44444444, "lb"),
  9828. name: "Back",
  9829. image: {
  9830. source: "./media/characters/major-colonel/back.svg"
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(400, "feet"),
  9838. default: true
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9844. {
  9845. catFront: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(120, "lb"),
  9848. name: "Front (Cat Side)",
  9849. image: {
  9850. source: "./media/characters/axel-lycan/cat-front.svg",
  9851. extra: 430 / 402,
  9852. bottom: 43 / 472.35
  9853. }
  9854. },
  9855. catBack: {
  9856. height: math.unit(6, "feet"),
  9857. weight: math.unit(120, "lb"),
  9858. name: "Back (Cat Side)",
  9859. image: {
  9860. source: "./media/characters/axel-lycan/cat-back.svg",
  9861. extra: 447 / 419,
  9862. bottom: 23.3 / 469
  9863. }
  9864. },
  9865. wolfFront: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(120, "lb"),
  9868. name: "Front (Wolf Side)",
  9869. image: {
  9870. source: "./media/characters/axel-lycan/wolf-front.svg",
  9871. extra: 485 / 456,
  9872. bottom: 19 / 504
  9873. }
  9874. },
  9875. wolfBack: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(120, "lb"),
  9878. name: "Back (Wolf Side)",
  9879. image: {
  9880. source: "./media/characters/axel-lycan/wolf-back.svg",
  9881. extra: 475 / 438,
  9882. bottom: 39.2 / 514
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(1, "km"),
  9890. default: true
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(5 + 9 / 12, "feet"),
  9899. weight: math.unit(175, "lb"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/vanrel-hyena/front.svg",
  9903. extra: 1086 / 1010,
  9904. bottom: 0.04
  9905. }
  9906. },
  9907. },
  9908. [
  9909. {
  9910. name: "Normal",
  9911. height: math.unit(5 + 9 / 12, "feet"),
  9912. default: true
  9913. },
  9914. ]
  9915. ))
  9916. characterMakers.push(() => makeCharacter(
  9917. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9918. {
  9919. front: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(103, "lb"),
  9922. name: "Front",
  9923. image: {
  9924. source: "./media/characters/abbott-absol/front.svg",
  9925. extra: 2010 / 1842
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Megamicro",
  9932. height: math.unit(0.1, "mm")
  9933. },
  9934. {
  9935. name: "Micro",
  9936. height: math.unit(1, "inch")
  9937. },
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(6, "feet"),
  9941. default: true
  9942. },
  9943. ]
  9944. ))
  9945. characterMakers.push(() => makeCharacter(
  9946. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9947. {
  9948. front: {
  9949. height: math.unit(6, "feet"),
  9950. weight: math.unit(264, "lb"),
  9951. name: "Front",
  9952. image: {
  9953. source: "./media/characters/hector/front.svg",
  9954. extra: 2280 / 2130,
  9955. bottom: 0.07
  9956. }
  9957. },
  9958. },
  9959. [
  9960. {
  9961. name: "Normal",
  9962. height: math.unit(12.25, "foot"),
  9963. default: true
  9964. },
  9965. {
  9966. name: "Macro",
  9967. height: math.unit(160, "feet")
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(6, "feet"),
  9976. weight: math.unit(150, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/sal/front.svg",
  9980. extra: 1846 / 1699,
  9981. bottom: 0.04
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Megamacro",
  9988. height: math.unit(10, "miles"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9995. {
  9996. front: {
  9997. height: math.unit(3, "meters"),
  9998. weight: math.unit(450, "kg"),
  9999. name: "front",
  10000. image: {
  10001. source: "./media/characters/ranger/front.svg",
  10002. extra: 2401 / 2243,
  10003. bottom: 0.05
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(3, "meters"),
  10011. default: true
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(14, "feet"),
  10020. weight: math.unit(800, "kg"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/theresa/front.svg",
  10024. extra: 3575 / 3346,
  10025. bottom: 0.03
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(14, "feet"),
  10033. default: true
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(3, "kg"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/ine/front.svg",
  10046. extra: 678 / 539,
  10047. bottom: 0.023
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(2.265, "feet"),
  10055. default: true
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(5, "feet"),
  10064. weight: math.unit(30, "kg"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/vial/front.svg",
  10068. extra: 1365 / 1277,
  10069. bottom: 0.04
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(5, "feet"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10083. {
  10084. side: {
  10085. height: math.unit(3.4, "meters"),
  10086. weight: math.unit(1000, "lb"),
  10087. name: "Side",
  10088. image: {
  10089. source: "./media/characters/rovoska/side.svg",
  10090. extra: 4403 / 1515
  10091. }
  10092. },
  10093. },
  10094. [
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(3.4, "meters"),
  10098. default: true
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(8, "feet"),
  10107. weight: math.unit(315, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/gunner-rotthbauer/front.svg"
  10111. }
  10112. },
  10113. back: {
  10114. height: math.unit(8, "feet"),
  10115. weight: math.unit(315, "lb"),
  10116. name: "Back",
  10117. image: {
  10118. source: "./media/characters/gunner-rotthbauer/back.svg"
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(3.5, "inches")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(8, "feet"),
  10130. default: true
  10131. },
  10132. {
  10133. name: "Macro",
  10134. height: math.unit(250, "feet")
  10135. },
  10136. {
  10137. name: "Megamacro",
  10138. height: math.unit(1, "AU")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(5 + 5 / 12, "feet"),
  10147. weight: math.unit(140, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/allatia/front.svg",
  10151. extra: 1227 / 1180,
  10152. bottom: 0.027
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(5 + 5 / 12, "feet")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(250, "feet"),
  10164. default: true
  10165. },
  10166. {
  10167. name: "Megamacro",
  10168. height: math.unit(8, "miles")
  10169. }
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(6, "feet"),
  10177. weight: math.unit(120, "lb"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/tene/front.svg",
  10181. extra: 814/750,
  10182. bottom: 36/850
  10183. }
  10184. },
  10185. stomping: {
  10186. height: math.unit(2.025, "meters"),
  10187. weight: math.unit(120, "lb"),
  10188. name: "Stomping",
  10189. image: {
  10190. source: "./media/characters/tene/stomping.svg",
  10191. extra: 885/821,
  10192. bottom: 15/900
  10193. }
  10194. },
  10195. sitting: {
  10196. height: math.unit(1, "meter"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Sitting",
  10199. image: {
  10200. source: "./media/characters/tene/sitting.svg",
  10201. extra: 396/366,
  10202. bottom: 79/475
  10203. }
  10204. },
  10205. smiling: {
  10206. height: math.unit(1.2, "feet"),
  10207. name: "Smiling",
  10208. image: {
  10209. source: "./media/characters/tene/smiling.svg",
  10210. extra: 1364/1071,
  10211. bottom: 0/1364
  10212. }
  10213. },
  10214. smug: {
  10215. height: math.unit(1.3, "feet"),
  10216. name: "Smug",
  10217. image: {
  10218. source: "./media/characters/tene/smug.svg",
  10219. extra: 1323/1082,
  10220. bottom: 0/1323
  10221. }
  10222. },
  10223. feral: {
  10224. height: math.unit(3.9, "feet"),
  10225. weight: math.unit(250, "lb"),
  10226. name: "Feral",
  10227. image: {
  10228. source: "./media/characters/tene/feral.svg",
  10229. extra: 717 / 458,
  10230. bottom: 0.179
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(6, "feet")
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(300, "feet"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "Megamacro",
  10246. height: math.unit(5, "miles")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10252. {
  10253. side: {
  10254. height: math.unit(6, "feet"),
  10255. name: "Side",
  10256. image: {
  10257. source: "./media/characters/evander/side.svg",
  10258. extra: 877 / 477
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Normal",
  10265. height: math.unit(0.83, "meters"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10272. {
  10273. front: {
  10274. height: math.unit(12, "feet"),
  10275. weight: math.unit(1000, "lb"),
  10276. name: "Front",
  10277. image: {
  10278. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10279. extra: 1762 / 1611
  10280. }
  10281. },
  10282. back: {
  10283. height: math.unit(12, "feet"),
  10284. weight: math.unit(1000, "lb"),
  10285. name: "Back",
  10286. image: {
  10287. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10288. extra: 1762 / 1611
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(12, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Kaiju",
  10300. height: math.unit(150, "feet")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(150, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/zero-alurus/front.svg"
  10313. }
  10314. },
  10315. back: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(150, "lb"),
  10318. name: "Back",
  10319. image: {
  10320. source: "./media/characters/zero-alurus/back.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(5 + 10 / 12, "feet")
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(60, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Macro+",
  10336. height: math.unit(450, "feet")
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(200, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/mega-shi/front.svg",
  10349. extra: 1279 / 1250,
  10350. bottom: 0.02
  10351. }
  10352. },
  10353. back: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(200, "lb"),
  10356. name: "Back",
  10357. image: {
  10358. source: "./media/characters/mega-shi/back.svg",
  10359. extra: 1279 / 1250,
  10360. bottom: 0.02
  10361. }
  10362. },
  10363. },
  10364. [
  10365. {
  10366. name: "Micro",
  10367. height: math.unit(16 + 6 / 12, "feet")
  10368. },
  10369. {
  10370. name: "Third Dimension",
  10371. height: math.unit(40, "meters")
  10372. },
  10373. {
  10374. name: "Normal",
  10375. height: math.unit(660, "feet"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Megamacro",
  10380. height: math.unit(10, "miles")
  10381. },
  10382. {
  10383. name: "Planetary Launch",
  10384. height: math.unit(500, "miles")
  10385. },
  10386. {
  10387. name: "Interstellar",
  10388. height: math.unit(1e9, "miles")
  10389. },
  10390. {
  10391. name: "Leaving the Universe",
  10392. height: math.unit(1, "gigaparsec")
  10393. },
  10394. {
  10395. name: "Travelling Universes",
  10396. height: math.unit(30e15, "parsecs")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(5 + 4/12, "feet"),
  10405. weight: math.unit(120, "lb"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/odyssey/front.svg",
  10409. extra: 1747/1571,
  10410. bottom: 47/1794
  10411. }
  10412. },
  10413. side: {
  10414. height: math.unit(5.1, "feet"),
  10415. weight: math.unit(120, "lb"),
  10416. name: "Side",
  10417. image: {
  10418. source: "./media/characters/odyssey/side.svg",
  10419. extra: 1847/1619,
  10420. bottom: 47/1894
  10421. }
  10422. },
  10423. lounging: {
  10424. height: math.unit(1.464, "feet"),
  10425. weight: math.unit(120, "lb"),
  10426. name: "Lounging",
  10427. image: {
  10428. source: "./media/characters/odyssey/lounging.svg",
  10429. extra: 1235/837,
  10430. bottom: 551/1786
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(5 + 4 / 12, "feet")
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(1, "km")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(3000, "km")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(1, "AU"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Omniversal",
  10454. height: math.unit(100e14, "lightyears")
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(300, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/mekuto/front.svg",
  10467. extra: 921 / 832,
  10468. bottom: 0.03
  10469. }
  10470. },
  10471. hand: {
  10472. height: math.unit(6 / 10.24, "feet"),
  10473. name: "Hand",
  10474. image: {
  10475. source: "./media/characters/mekuto/hand.svg"
  10476. }
  10477. },
  10478. foot: {
  10479. height: math.unit(6 / 5.05, "feet"),
  10480. name: "Foot",
  10481. image: {
  10482. source: "./media/characters/mekuto/foot.svg"
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Minimicro",
  10489. height: math.unit(0.2, "inches")
  10490. },
  10491. {
  10492. name: "Micro",
  10493. height: math.unit(1.5, "inches")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(5 + 11 / 12, "feet"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Minimacro",
  10502. height: math.unit(17 + 9 / 12, "feet")
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(177.5, "feet")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(152, "miles")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(6.5, "inches"),
  10519. weight: math.unit(13, "oz"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/dafydd-tomos/front.svg",
  10523. extra: 2990 / 2603,
  10524. bottom: 0.03
  10525. }
  10526. },
  10527. },
  10528. [
  10529. {
  10530. name: "Micro",
  10531. height: math.unit(6.5, "inches"),
  10532. default: true
  10533. },
  10534. ]
  10535. ))
  10536. characterMakers.push(() => makeCharacter(
  10537. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10538. {
  10539. front: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(150, "lb"),
  10542. name: "Front",
  10543. image: {
  10544. source: "./media/characters/splinter/front.svg",
  10545. extra: 2990 / 2882,
  10546. bottom: 0.04
  10547. }
  10548. },
  10549. back: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Back",
  10553. image: {
  10554. source: "./media/characters/splinter/back.svg",
  10555. extra: 2990 / 2882,
  10556. bottom: 0.04
  10557. }
  10558. },
  10559. },
  10560. [
  10561. {
  10562. name: "Normal",
  10563. height: math.unit(6, "feet")
  10564. },
  10565. {
  10566. name: "Macro",
  10567. height: math.unit(230, "meters"),
  10568. default: true
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(4 + 10 / 12, "feet"),
  10577. weight: math.unit(480, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/snow-gabumon/front.svg",
  10581. extra: 1140 / 963,
  10582. bottom: 0.058
  10583. }
  10584. },
  10585. back: {
  10586. height: math.unit(4 + 10 / 12, "feet"),
  10587. weight: math.unit(480, "lb"),
  10588. name: "Back",
  10589. image: {
  10590. source: "./media/characters/snow-gabumon/back.svg",
  10591. extra: 1115 / 962,
  10592. bottom: 0.041
  10593. }
  10594. },
  10595. frontUndresed: {
  10596. height: math.unit(4 + 10 / 12, "feet"),
  10597. weight: math.unit(480, "lb"),
  10598. name: "Front (Undressed)",
  10599. image: {
  10600. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10601. extra: 1061 / 960,
  10602. bottom: 0.045
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Micro",
  10609. height: math.unit(1, "inch")
  10610. },
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(4 + 10 / 12, "feet"),
  10614. default: true
  10615. },
  10616. {
  10617. name: "Macro",
  10618. height: math.unit(200, "feet")
  10619. },
  10620. {
  10621. name: "Megamacro",
  10622. height: math.unit(120, "miles")
  10623. },
  10624. {
  10625. name: "Gigamacro",
  10626. height: math.unit(9800, "miles")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(1.7, "meters"),
  10635. weight: math.unit(140, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/moody/front.svg",
  10639. extra: 3226 / 3007,
  10640. bottom: 0.087
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Micro",
  10647. height: math.unit(1, "mm")
  10648. },
  10649. {
  10650. name: "Normal",
  10651. height: math.unit(1.7, "meters"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(80, "meters")
  10657. },
  10658. {
  10659. name: "Macro+",
  10660. height: math.unit(500, "meters")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(6, "feet"),
  10669. weight: math.unit(150, "lb"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/zyas/front.svg",
  10673. extra: 1180 / 1120,
  10674. bottom: 0.045
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(10, "feet"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(500, "feet")
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(5, "miles")
  10691. },
  10692. {
  10693. name: "Teramacro",
  10694. height: math.unit(150000, "miles")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10700. {
  10701. front: {
  10702. height: math.unit(6, "feet"),
  10703. weight: math.unit(150, "lb"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/cuon/front.svg",
  10707. extra: 1390 / 1320,
  10708. bottom: 0.008
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Micro",
  10715. height: math.unit(3, "inches")
  10716. },
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(18 + 9 / 12, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(360, "feet")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(360, "miles")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(2.4, "meters"),
  10737. weight: math.unit(70, "kg"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/nyanuxk/front.svg",
  10741. extra: 1172 / 1084,
  10742. bottom: 0.065
  10743. }
  10744. },
  10745. side: {
  10746. height: math.unit(2.4, "meters"),
  10747. weight: math.unit(70, "kg"),
  10748. name: "Side",
  10749. image: {
  10750. source: "./media/characters/nyanuxk/side.svg",
  10751. extra: 1190 / 1132,
  10752. bottom: 0.007
  10753. }
  10754. },
  10755. back: {
  10756. height: math.unit(2.4, "meters"),
  10757. weight: math.unit(70, "kg"),
  10758. name: "Back",
  10759. image: {
  10760. source: "./media/characters/nyanuxk/back.svg",
  10761. extra: 1200 / 1141,
  10762. bottom: 0.015
  10763. }
  10764. },
  10765. foot: {
  10766. height: math.unit(0.52, "meters"),
  10767. name: "Foot",
  10768. image: {
  10769. source: "./media/characters/nyanuxk/foot.svg"
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Micro",
  10776. height: math.unit(2, "cm")
  10777. },
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(2.4, "meters"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Smaller Macro",
  10785. height: math.unit(120, "meters")
  10786. },
  10787. {
  10788. name: "Bigger Macro",
  10789. height: math.unit(1.2, "km")
  10790. },
  10791. {
  10792. name: "Megamacro",
  10793. height: math.unit(15, "kilometers")
  10794. },
  10795. {
  10796. name: "Gigamacro",
  10797. height: math.unit(2000, "km")
  10798. },
  10799. {
  10800. name: "Teramacro",
  10801. height: math.unit(500000, "km")
  10802. },
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10807. {
  10808. side: {
  10809. height: math.unit(6, "feet"),
  10810. name: "Side",
  10811. image: {
  10812. source: "./media/characters/ailbhe/side.svg",
  10813. extra: 757 / 464,
  10814. bottom: 0.041
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(1.07, "meters"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(6, "feet"),
  10831. weight: math.unit(120, "kg"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/zevulfius/front.svg",
  10835. extra: 965 / 903
  10836. }
  10837. },
  10838. side: {
  10839. height: math.unit(6, "feet"),
  10840. weight: math.unit(120, "kg"),
  10841. name: "Side",
  10842. image: {
  10843. source: "./media/characters/zevulfius/side.svg",
  10844. extra: 939 / 900
  10845. }
  10846. },
  10847. back: {
  10848. height: math.unit(6, "feet"),
  10849. weight: math.unit(120, "kg"),
  10850. name: "Back",
  10851. image: {
  10852. source: "./media/characters/zevulfius/back.svg",
  10853. extra: 918 / 854,
  10854. bottom: 0.005
  10855. }
  10856. },
  10857. foot: {
  10858. height: math.unit(6 / 3.72, "feet"),
  10859. name: "Foot",
  10860. image: {
  10861. source: "./media/characters/zevulfius/foot.svg"
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(750, "meters")
  10869. },
  10870. {
  10871. name: "Megamacro",
  10872. height: math.unit(20, "km"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Gigamacro",
  10877. height: math.unit(2000, "km")
  10878. },
  10879. {
  10880. name: "Teramacro",
  10881. height: math.unit(250000, "km")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(100, "feet"),
  10890. weight: math.unit(350, "kg"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/rikes/front.svg",
  10894. extra: 1565 / 1483,
  10895. bottom: 0.017
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(100, "feet"),
  10903. default: true
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(8, "feet"),
  10912. weight: math.unit(356, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/adam-silver-mane/front.svg",
  10916. extra: 1036/937,
  10917. bottom: 63/1099
  10918. }
  10919. },
  10920. side: {
  10921. height: math.unit(8, "feet"),
  10922. weight: math.unit(356, "lb"),
  10923. name: "Side",
  10924. image: {
  10925. source: "./media/characters/adam-silver-mane/side.svg",
  10926. extra: 997/901,
  10927. bottom: 59/1056
  10928. }
  10929. },
  10930. frontNsfw: {
  10931. height: math.unit(8, "feet"),
  10932. weight: math.unit(356, "lb"),
  10933. name: "Front (NSFW)",
  10934. image: {
  10935. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10936. extra: 1036/937,
  10937. bottom: 63/1099
  10938. }
  10939. },
  10940. sideNsfw: {
  10941. height: math.unit(8, "feet"),
  10942. weight: math.unit(356, "lb"),
  10943. name: "Side (NSFW)",
  10944. image: {
  10945. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10946. extra: 997/901,
  10947. bottom: 59/1056
  10948. }
  10949. },
  10950. dick: {
  10951. height: math.unit(2.1, "feet"),
  10952. name: "Dick",
  10953. image: {
  10954. source: "./media/characters/adam-silver-mane/dick.svg"
  10955. }
  10956. },
  10957. taur: {
  10958. height: math.unit(16, "feet"),
  10959. weight: math.unit(1500, "kg"),
  10960. name: "Taur",
  10961. image: {
  10962. source: "./media/characters/adam-silver-mane/taur.svg",
  10963. extra: 1713 / 1571,
  10964. bottom: 0.01
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(8, "feet")
  10972. },
  10973. {
  10974. name: "Minimacro",
  10975. height: math.unit(80, "feet")
  10976. },
  10977. {
  10978. name: "MDA",
  10979. height: math.unit(80, "meters")
  10980. },
  10981. {
  10982. name: "Macro",
  10983. height: math.unit(800, "feet"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(8000, "feet")
  10989. },
  10990. {
  10991. name: "Gigamacro",
  10992. height: math.unit(800, "miles")
  10993. },
  10994. {
  10995. name: "Teramacro",
  10996. height: math.unit(80000, "miles")
  10997. },
  10998. {
  10999. name: "Celestial",
  11000. height: math.unit(8e6, "miles")
  11001. },
  11002. {
  11003. name: "Star Dragon",
  11004. height: math.unit(800000, "parsecs")
  11005. },
  11006. {
  11007. name: "Godly",
  11008. height: math.unit(800, "teraparsecs")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(150, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/ky'owin/front.svg",
  11021. extra: 3888 / 3068,
  11022. bottom: 0.015
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(6 + 8 / 12, "feet")
  11030. },
  11031. {
  11032. name: "Large",
  11033. height: math.unit(68, "feet")
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(132, "feet")
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(340, "feet")
  11042. },
  11043. {
  11044. name: "Macro++",
  11045. height: math.unit(680, "feet"),
  11046. default: true
  11047. },
  11048. {
  11049. name: "Megamacro",
  11050. height: math.unit(1, "mile")
  11051. },
  11052. {
  11053. name: "Megamacro+",
  11054. height: math.unit(10, "miles")
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(4, "feet"),
  11063. weight: math.unit(50, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/mal/front.svg",
  11067. extra: 785 / 724,
  11068. bottom: 0.07
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Micro",
  11075. height: math.unit(4, "inches")
  11076. },
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(4, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(200, "feet")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11090. {
  11091. front: {
  11092. height: math.unit(6, "feet"),
  11093. weight: math.unit(150, "lb"),
  11094. name: "Front",
  11095. image: {
  11096. source: "./media/characters/jordan-deware/front.svg",
  11097. extra: 1191 / 1012
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Nano",
  11104. height: math.unit(0.01, "mm")
  11105. },
  11106. {
  11107. name: "Minimicro",
  11108. height: math.unit(1, "mm")
  11109. },
  11110. {
  11111. name: "Micro",
  11112. height: math.unit(0.5, "inches")
  11113. },
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(4, "feet"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Minimacro",
  11121. height: math.unit(40, "meters")
  11122. },
  11123. {
  11124. name: "Small Macro",
  11125. height: math.unit(400, "meters")
  11126. },
  11127. {
  11128. name: "Macro",
  11129. height: math.unit(4, "miles")
  11130. },
  11131. {
  11132. name: "Megamacro",
  11133. height: math.unit(40, "miles")
  11134. },
  11135. {
  11136. name: "Megamacro+",
  11137. height: math.unit(400, "miles")
  11138. },
  11139. {
  11140. name: "Gigamacro",
  11141. height: math.unit(400000, "miles")
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11147. {
  11148. side: {
  11149. height: math.unit(6, "feet"),
  11150. weight: math.unit(150, "lb"),
  11151. name: "Side",
  11152. image: {
  11153. source: "./media/characters/kimiko/side.svg",
  11154. extra: 600 / 358
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(15, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(220, "feet")
  11167. },
  11168. {
  11169. name: "Macro+",
  11170. height: math.unit(1450, "feet")
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(11500, "feet")
  11175. },
  11176. {
  11177. name: "Gigamacro",
  11178. height: math.unit(9500, "miles")
  11179. },
  11180. {
  11181. name: "Teramacro",
  11182. height: math.unit(2208005005, "miles")
  11183. },
  11184. {
  11185. name: "Examacro",
  11186. height: math.unit(2750, "parsecs")
  11187. },
  11188. {
  11189. name: "Zettamacro",
  11190. height: math.unit(101500, "parsecs")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(70, "kg"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/andrew-sleepy/front.svg"
  11203. }
  11204. },
  11205. side: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(70, "kg"),
  11208. name: "Side",
  11209. image: {
  11210. source: "./media/characters/andrew-sleepy/side.svg"
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Micro",
  11217. height: math.unit(1, "mm"),
  11218. default: true
  11219. },
  11220. ]
  11221. ))
  11222. characterMakers.push(() => makeCharacter(
  11223. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11224. {
  11225. front: {
  11226. height: math.unit(6, "feet"),
  11227. weight: math.unit(150, "lb"),
  11228. name: "Front",
  11229. image: {
  11230. source: "./media/characters/judio/front.svg",
  11231. extra: 1258 / 1110
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Normal",
  11238. height: math.unit(5 + 6 / 12, "feet")
  11239. },
  11240. {
  11241. name: "Macro",
  11242. height: math.unit(1000, "feet"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Megamacro",
  11247. height: math.unit(10, "miles")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11253. {
  11254. frontDressed: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(68, "kg"),
  11257. name: "Front (Dressed)",
  11258. image: {
  11259. source: "./media/characters/nomaxice/front-dressed.svg",
  11260. extra: 1137/824,
  11261. bottom: 74/1211
  11262. }
  11263. },
  11264. frontShorts: {
  11265. height: math.unit(6, "feet"),
  11266. weight: math.unit(68, "kg"),
  11267. name: "Front (Shorts)",
  11268. image: {
  11269. source: "./media/characters/nomaxice/front-shorts.svg",
  11270. extra: 1137/824,
  11271. bottom: 74/1211
  11272. }
  11273. },
  11274. back: {
  11275. height: math.unit(6, "feet"),
  11276. weight: math.unit(68, "kg"),
  11277. name: "Back",
  11278. image: {
  11279. source: "./media/characters/nomaxice/back.svg",
  11280. extra: 822/786,
  11281. bottom: 39/861
  11282. }
  11283. },
  11284. hand: {
  11285. height: math.unit(0.565, "feet"),
  11286. name: "Hand",
  11287. image: {
  11288. source: "./media/characters/nomaxice/hand.svg"
  11289. }
  11290. },
  11291. foot: {
  11292. height: math.unit(1, "feet"),
  11293. name: "Foot",
  11294. image: {
  11295. source: "./media/characters/nomaxice/foot.svg"
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(8, "cm")
  11303. },
  11304. {
  11305. name: "Norm",
  11306. height: math.unit(1.82, "m")
  11307. },
  11308. {
  11309. name: "Norm+",
  11310. height: math.unit(8.8, "feet"),
  11311. default: true
  11312. },
  11313. {
  11314. name: "Big",
  11315. height: math.unit(8, "meters")
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(18, "meters")
  11320. },
  11321. {
  11322. name: "Macro+",
  11323. height: math.unit(88, "meters")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(12, "feet"),
  11332. weight: math.unit(1.5, "tons"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/dydros/front.svg",
  11336. extra: 863 / 800,
  11337. bottom: 0.015
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(12, "feet"),
  11342. weight: math.unit(1.5, "tons"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/dydros/back.svg",
  11346. extra: 900 / 843,
  11347. bottom: 0.005
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(12, "feet"),
  11355. default: true
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(100, "kg"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/riggi/front.svg",
  11368. extra: 5787 / 5303
  11369. }
  11370. },
  11371. hyper: {
  11372. height: math.unit(6 * 5 / 3, "feet"),
  11373. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11374. name: "Hyper",
  11375. image: {
  11376. source: "./media/characters/riggi/hyper.svg",
  11377. extra: 3595 / 3485
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Small Macro",
  11384. height: math.unit(50, "feet")
  11385. },
  11386. {
  11387. name: "Default",
  11388. height: math.unit(200, "feet"),
  11389. default: true
  11390. },
  11391. {
  11392. name: "Loom",
  11393. height: math.unit(10000, "feet")
  11394. },
  11395. {
  11396. name: "Cruising Altitude",
  11397. height: math.unit(30000, "feet")
  11398. },
  11399. {
  11400. name: "Megamacro",
  11401. height: math.unit(100, "miles")
  11402. },
  11403. {
  11404. name: "Continent Sized",
  11405. height: math.unit(2800, "miles")
  11406. },
  11407. {
  11408. name: "Earth Sized",
  11409. height: math.unit(8000, "miles")
  11410. },
  11411. ]
  11412. ))
  11413. characterMakers.push(() => makeCharacter(
  11414. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11415. {
  11416. front: {
  11417. height: math.unit(6, "feet"),
  11418. weight: math.unit(250, "lb"),
  11419. name: "Front",
  11420. image: {
  11421. source: "./media/characters/alexi/front.svg",
  11422. extra: 3483 / 3291,
  11423. bottom: 0.04
  11424. }
  11425. },
  11426. back: {
  11427. height: math.unit(6, "feet"),
  11428. weight: math.unit(250, "lb"),
  11429. name: "Back",
  11430. image: {
  11431. source: "./media/characters/alexi/back.svg",
  11432. extra: 3533 / 3356,
  11433. bottom: 0.021
  11434. }
  11435. },
  11436. frontTransforming: {
  11437. height: math.unit(8.58, "feet"),
  11438. weight: math.unit(1300, "lb"),
  11439. name: "Transforming",
  11440. image: {
  11441. source: "./media/characters/alexi/front-transforming.svg",
  11442. extra: 437 / 409,
  11443. bottom: 19 / 458.66
  11444. }
  11445. },
  11446. frontTransformed: {
  11447. height: math.unit(12.5, "feet"),
  11448. weight: math.unit(4000, "lb"),
  11449. name: "Transformed",
  11450. image: {
  11451. source: "./media/characters/alexi/front-transformed.svg",
  11452. extra: 639 / 614,
  11453. bottom: 30.55 / 671
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(14, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Minimacro",
  11465. height: math.unit(30, "meters")
  11466. },
  11467. {
  11468. name: "Macro",
  11469. height: math.unit(500, "meters")
  11470. },
  11471. {
  11472. name: "Megamacro",
  11473. height: math.unit(9000, "km")
  11474. },
  11475. {
  11476. name: "Teramacro",
  11477. height: math.unit(384000, "km")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/kayroo/front.svg",
  11490. extra: 1153 / 1038,
  11491. bottom: 0.06
  11492. }
  11493. },
  11494. foot: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Foot",
  11498. image: {
  11499. source: "./media/characters/kayroo/foot.svg"
  11500. }
  11501. },
  11502. },
  11503. [
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(8, "feet"),
  11507. default: true
  11508. },
  11509. {
  11510. name: "Minimacro",
  11511. height: math.unit(250, "feet")
  11512. },
  11513. {
  11514. name: "Macro",
  11515. height: math.unit(2800, "feet")
  11516. },
  11517. {
  11518. name: "Megamacro",
  11519. height: math.unit(5200, "feet")
  11520. },
  11521. {
  11522. name: "Gigamacro",
  11523. height: math.unit(27000, "feet")
  11524. },
  11525. {
  11526. name: "Omega",
  11527. height: math.unit(45000, "feet")
  11528. },
  11529. ]
  11530. ))
  11531. characterMakers.push(() => makeCharacter(
  11532. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11533. {
  11534. front: {
  11535. height: math.unit(18, "feet"),
  11536. weight: math.unit(5800, "lb"),
  11537. name: "Front",
  11538. image: {
  11539. source: "./media/characters/rhys/front.svg",
  11540. extra: 3386 / 3090,
  11541. bottom: 0.07
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(18, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Working Size",
  11553. height: math.unit(200, "feet")
  11554. },
  11555. {
  11556. name: "Demolition Size",
  11557. height: math.unit(2000, "feet")
  11558. },
  11559. {
  11560. name: "Maximum Licensed Size",
  11561. height: math.unit(5, "miles")
  11562. },
  11563. {
  11564. name: "Maximum Observed Size",
  11565. height: math.unit(10, "yottameters")
  11566. },
  11567. ]
  11568. ))
  11569. characterMakers.push(() => makeCharacter(
  11570. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11571. {
  11572. front: {
  11573. height: math.unit(6, "feet"),
  11574. weight: math.unit(250, "lb"),
  11575. name: "Front",
  11576. image: {
  11577. source: "./media/characters/toto/front.svg",
  11578. extra: 527 / 479,
  11579. bottom: 0.05
  11580. }
  11581. },
  11582. },
  11583. [
  11584. {
  11585. name: "Micro",
  11586. height: math.unit(3, "feet")
  11587. },
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(10, "feet")
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(150, "feet"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(1200, "feet")
  11600. },
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "King", species: ["lion"], tags: ["anthro"] },
  11605. {
  11606. back: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(150, "lb"),
  11609. name: "Back",
  11610. image: {
  11611. source: "./media/characters/king/back.svg"
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Micro",
  11618. height: math.unit(2, "inches")
  11619. },
  11620. {
  11621. name: "Normal",
  11622. height: math.unit(8, "feet")
  11623. },
  11624. {
  11625. name: "Macro",
  11626. height: math.unit(200, "feet"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Megamacro",
  11631. height: math.unit(50, "miles")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(11, "feet"),
  11640. weight: math.unit(1400, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/cordite/front.svg",
  11644. extra: 1919/1827,
  11645. bottom: 40/1959
  11646. }
  11647. },
  11648. side: {
  11649. height: math.unit(11, "feet"),
  11650. weight: math.unit(1400, "lb"),
  11651. name: "Side",
  11652. image: {
  11653. source: "./media/characters/cordite/side.svg",
  11654. extra: 1908/1793,
  11655. bottom: 38/1946
  11656. }
  11657. },
  11658. back: {
  11659. height: math.unit(11, "feet"),
  11660. weight: math.unit(1400, "lb"),
  11661. name: "Back",
  11662. image: {
  11663. source: "./media/characters/cordite/back.svg",
  11664. extra: 1938/1837,
  11665. bottom: 10/1948
  11666. }
  11667. },
  11668. feral: {
  11669. height: math.unit(2, "feet"),
  11670. weight: math.unit(90, "lb"),
  11671. name: "Feral",
  11672. image: {
  11673. source: "./media/characters/cordite/feral.svg",
  11674. extra: 1260 / 755,
  11675. bottom: 0.05
  11676. }
  11677. },
  11678. },
  11679. [
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(11, "feet"),
  11683. default: true
  11684. },
  11685. ]
  11686. ))
  11687. characterMakers.push(() => makeCharacter(
  11688. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11689. {
  11690. front: {
  11691. height: math.unit(6, "feet"),
  11692. weight: math.unit(150, "lb"),
  11693. name: "Front",
  11694. image: {
  11695. source: "./media/characters/pianostrong/front.svg",
  11696. extra: 6577 / 6254,
  11697. bottom: 0.02
  11698. }
  11699. },
  11700. side: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(150, "lb"),
  11703. name: "Side",
  11704. image: {
  11705. source: "./media/characters/pianostrong/side.svg",
  11706. extra: 6106 / 5730
  11707. }
  11708. },
  11709. back: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(150, "lb"),
  11712. name: "Back",
  11713. image: {
  11714. source: "./media/characters/pianostrong/back.svg",
  11715. extra: 6085 / 5733,
  11716. bottom: 0.01
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(100, "feet")
  11724. },
  11725. {
  11726. name: "Macro+",
  11727. height: math.unit(300, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Macro++",
  11732. height: math.unit(1000, "feet")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(150, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/kona/front.svg",
  11745. extra: 2960 / 2629,
  11746. bottom: 0.005
  11747. }
  11748. },
  11749. },
  11750. [
  11751. {
  11752. name: "Normal",
  11753. height: math.unit(11 + 8 / 12, "feet")
  11754. },
  11755. {
  11756. name: "Macro",
  11757. height: math.unit(850, "feet"),
  11758. default: true
  11759. },
  11760. {
  11761. name: "Macro+",
  11762. height: math.unit(1.5, "km"),
  11763. default: true
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(80, "miles")
  11768. },
  11769. {
  11770. name: "Gigamacro",
  11771. height: math.unit(3500, "miles")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11777. {
  11778. side: {
  11779. height: math.unit(1.9, "meters"),
  11780. weight: math.unit(326, "kg"),
  11781. name: "Side",
  11782. image: {
  11783. source: "./media/characters/levi/side.svg",
  11784. extra: 1704 / 1334,
  11785. bottom: 0.02
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(1.9, "meters"),
  11793. default: true
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(20, "meters")
  11798. },
  11799. {
  11800. name: "Macro+",
  11801. height: math.unit(200, "meters")
  11802. },
  11803. {
  11804. name: "Megamacro",
  11805. height: math.unit(2, "km")
  11806. },
  11807. {
  11808. name: "Megamacro+",
  11809. height: math.unit(20, "km")
  11810. },
  11811. {
  11812. name: "Gigamacro",
  11813. height: math.unit(2500, "km")
  11814. },
  11815. {
  11816. name: "Gigamacro+",
  11817. height: math.unit(120000, "km")
  11818. },
  11819. {
  11820. name: "Teramacro",
  11821. height: math.unit(7.77e6, "km")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(6 + 4/12, "feet"),
  11830. weight: math.unit(190, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/bmc/front.svg",
  11834. extra: 1626/1472,
  11835. bottom: 79/1705
  11836. }
  11837. },
  11838. back: {
  11839. height: math.unit(6 + 4/12, "feet"),
  11840. weight: math.unit(190, "lb"),
  11841. name: "Back",
  11842. image: {
  11843. source: "./media/characters/bmc/back.svg",
  11844. extra: 1640/1479,
  11845. bottom: 45/1685
  11846. }
  11847. },
  11848. frontArmor: {
  11849. height: math.unit(6 + 4/12, "feet"),
  11850. weight: math.unit(190, "lb"),
  11851. name: "Front-armor",
  11852. image: {
  11853. source: "./media/characters/bmc/front-armor.svg",
  11854. extra: 1538/1468,
  11855. bottom: 79/1617
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Human-sized",
  11862. height: math.unit(6 + 4 / 12, "feet")
  11863. },
  11864. {
  11865. name: "Interactive Size",
  11866. height: math.unit(25, "feet")
  11867. },
  11868. {
  11869. name: "Small",
  11870. height: math.unit(250, "feet")
  11871. },
  11872. {
  11873. name: "Normal",
  11874. height: math.unit(1250, "feet"),
  11875. default: true
  11876. },
  11877. {
  11878. name: "Good Day",
  11879. height: math.unit(88, "miles")
  11880. },
  11881. {
  11882. name: "Largest Measured Size",
  11883. height: math.unit(105.960, "galaxies")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(20, "feet"),
  11892. weight: math.unit(2016, "kg"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/sven-the-kaiju/front.svg",
  11896. extra: 1277/1250,
  11897. bottom: 35/1312
  11898. }
  11899. },
  11900. mouth: {
  11901. height: math.unit(1.85, "feet"),
  11902. name: "Mouth",
  11903. image: {
  11904. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11905. }
  11906. },
  11907. },
  11908. [
  11909. {
  11910. name: "Fairy",
  11911. height: math.unit(6, "inches")
  11912. },
  11913. {
  11914. name: "Normal",
  11915. height: math.unit(20, "feet"),
  11916. default: true
  11917. },
  11918. {
  11919. name: "Rampage",
  11920. height: math.unit(200, "feet")
  11921. },
  11922. {
  11923. name: "Archfey Forest Guardian",
  11924. height: math.unit(1, "mile")
  11925. },
  11926. ]
  11927. ))
  11928. characterMakers.push(() => makeCharacter(
  11929. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11930. {
  11931. front: {
  11932. height: math.unit(4, "meters"),
  11933. weight: math.unit(2, "tons"),
  11934. name: "Front",
  11935. image: {
  11936. source: "./media/characters/marik/front.svg",
  11937. extra: 1057 / 1003,
  11938. bottom: 0.08
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(4, "meters"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(20, "meters")
  11951. },
  11952. {
  11953. name: "Megamacro",
  11954. height: math.unit(50, "km")
  11955. },
  11956. {
  11957. name: "Gigamacro",
  11958. height: math.unit(100, "km")
  11959. },
  11960. {
  11961. name: "Alpha Macro",
  11962. height: math.unit(7.88e7, "yottameters")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(110, "lb"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/mel/front.svg",
  11975. extra: 736 / 617,
  11976. bottom: 0.017
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Pico",
  11983. height: math.unit(3, "pm")
  11984. },
  11985. {
  11986. name: "Nano",
  11987. height: math.unit(3, "nm")
  11988. },
  11989. {
  11990. name: "Micro",
  11991. height: math.unit(0.3, "mm"),
  11992. default: true
  11993. },
  11994. {
  11995. name: "Micro+",
  11996. height: math.unit(3, "mm")
  11997. },
  11998. {
  11999. name: "Normal",
  12000. height: math.unit(5 + 10.5 / 12, "feet")
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12006. {
  12007. kaiju: {
  12008. height: math.unit(1.75, "meters"),
  12009. weight: math.unit(55, "kg"),
  12010. name: "Kaiju",
  12011. image: {
  12012. source: "./media/characters/lykonous/kaiju.svg",
  12013. extra: 1055 / 946,
  12014. bottom: 0.135
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Normal",
  12021. height: math.unit(2.5, "meters"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Kaiju Dragon",
  12026. height: math.unit(60, "meters")
  12027. },
  12028. {
  12029. name: "Mega Kaiju",
  12030. height: math.unit(120, "km")
  12031. },
  12032. {
  12033. name: "Giga Kaiju",
  12034. height: math.unit(200, "megameters")
  12035. },
  12036. {
  12037. name: "Terra Kaiju",
  12038. height: math.unit(400, "gigameters")
  12039. },
  12040. {
  12041. name: "Kaiju Dragon God",
  12042. height: math.unit(13000, "exaparsecs")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(6, "feet"),
  12051. weight: math.unit(150, "lb"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/blü/front.svg",
  12055. extra: 1883 / 1564,
  12056. bottom: 0.031
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(13, "feet"),
  12064. default: true
  12065. },
  12066. {
  12067. name: "Big Boi",
  12068. height: math.unit(150, "meters")
  12069. },
  12070. {
  12071. name: "Mini Stomper",
  12072. height: math.unit(300, "meters")
  12073. },
  12074. {
  12075. name: "Macro",
  12076. height: math.unit(1000, "meters")
  12077. },
  12078. {
  12079. name: "Megamacro",
  12080. height: math.unit(11000, "meters")
  12081. },
  12082. {
  12083. name: "Gigamacro",
  12084. height: math.unit(11000, "km")
  12085. },
  12086. {
  12087. name: "Teramacro",
  12088. height: math.unit(420000, "km")
  12089. },
  12090. {
  12091. name: "Examacro",
  12092. height: math.unit(120, "parsecs")
  12093. },
  12094. {
  12095. name: "God Tho",
  12096. height: math.unit(98000000000, "parsecs")
  12097. },
  12098. ]
  12099. ))
  12100. characterMakers.push(() => makeCharacter(
  12101. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12102. {
  12103. taurFront: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(200, "lb"),
  12106. name: "Taur (Front)",
  12107. image: {
  12108. source: "./media/characters/scales/taur-front.svg",
  12109. extra: 1,
  12110. bottom: 0.05
  12111. }
  12112. },
  12113. taurBack: {
  12114. height: math.unit(6, "feet"),
  12115. weight: math.unit(200, "lb"),
  12116. name: "Taur (Back)",
  12117. image: {
  12118. source: "./media/characters/scales/taur-back.svg",
  12119. extra: 1,
  12120. bottom: 0.08
  12121. }
  12122. },
  12123. anthro: {
  12124. height: math.unit(6 * 7 / 12, "feet"),
  12125. weight: math.unit(100, "lb"),
  12126. name: "Anthro",
  12127. image: {
  12128. source: "./media/characters/scales/anthro.svg",
  12129. extra: 1,
  12130. bottom: 0.06
  12131. }
  12132. },
  12133. },
  12134. [
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(12, "feet"),
  12138. default: true
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/koragos/front.svg",
  12151. extra: 841 / 794,
  12152. bottom: 0.035
  12153. }
  12154. },
  12155. back: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Back",
  12159. image: {
  12160. source: "./media/characters/koragos/back.svg",
  12161. extra: 841 / 810,
  12162. bottom: 0.022
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Normal",
  12169. height: math.unit(6 + 11 / 12, "feet"),
  12170. default: true
  12171. },
  12172. {
  12173. name: "Macro",
  12174. height: math.unit(490, "feet")
  12175. },
  12176. {
  12177. name: "Megamacro",
  12178. height: math.unit(10, "miles")
  12179. },
  12180. {
  12181. name: "Gigamacro",
  12182. height: math.unit(50, "miles")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(250, "lb"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/xylrem/front.svg",
  12195. extra: 3323 / 3050,
  12196. bottom: 0.065
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Micro",
  12203. height: math.unit(4, "feet")
  12204. },
  12205. {
  12206. name: "Normal",
  12207. height: math.unit(16, "feet"),
  12208. default: true
  12209. },
  12210. {
  12211. name: "Macro",
  12212. height: math.unit(2720, "feet")
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(25000, "miles")
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(8, "feet"),
  12225. weight: math.unit(250, "kg"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/ikideru/front.svg",
  12229. extra: 930 / 870,
  12230. bottom: 0.087
  12231. }
  12232. },
  12233. back: {
  12234. height: math.unit(8, "feet"),
  12235. weight: math.unit(250, "kg"),
  12236. name: "Back",
  12237. image: {
  12238. source: "./media/characters/ikideru/back.svg",
  12239. extra: 919 / 852,
  12240. bottom: 0.055
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Rare",
  12247. height: math.unit(8, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Playful Loom",
  12252. height: math.unit(80, "feet")
  12253. },
  12254. {
  12255. name: "City Leaner",
  12256. height: math.unit(230, "feet")
  12257. },
  12258. {
  12259. name: "Megamacro",
  12260. height: math.unit(2500, "feet")
  12261. },
  12262. {
  12263. name: "Gigamacro",
  12264. height: math.unit(26400, "feet")
  12265. },
  12266. {
  12267. name: "Tectonic Shifter",
  12268. height: math.unit(1.7, "megameters")
  12269. },
  12270. {
  12271. name: "Planet Carer",
  12272. height: math.unit(21, "megameters")
  12273. },
  12274. {
  12275. name: "God",
  12276. height: math.unit(11157.22, "parsecs")
  12277. },
  12278. ]
  12279. ))
  12280. characterMakers.push(() => makeCharacter(
  12281. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12282. {
  12283. front: {
  12284. height: math.unit(6, "feet"),
  12285. weight: math.unit(120, "lb"),
  12286. name: "Front",
  12287. image: {
  12288. source: "./media/characters/neo/front.svg"
  12289. }
  12290. },
  12291. },
  12292. [
  12293. {
  12294. name: "Micro",
  12295. height: math.unit(2, "inches"),
  12296. default: true
  12297. },
  12298. {
  12299. name: "Human Size",
  12300. height: math.unit(5 + 8 / 12, "feet")
  12301. },
  12302. ]
  12303. ))
  12304. characterMakers.push(() => makeCharacter(
  12305. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12306. {
  12307. front: {
  12308. height: math.unit(13 + 10 / 12, "feet"),
  12309. weight: math.unit(5320, "lb"),
  12310. name: "Front",
  12311. image: {
  12312. source: "./media/characters/chauncey-chantz/front.svg",
  12313. extra: 1587 / 1435,
  12314. bottom: 0.02
  12315. }
  12316. },
  12317. },
  12318. [
  12319. {
  12320. name: "Normal",
  12321. height: math.unit(13 + 10 / 12, "feet"),
  12322. default: true
  12323. },
  12324. {
  12325. name: "Macro",
  12326. height: math.unit(45, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(250, "miles")
  12331. },
  12332. {
  12333. name: "Planetary",
  12334. height: math.unit(10000, "miles")
  12335. },
  12336. {
  12337. name: "Galactic",
  12338. height: math.unit(40000, "parsecs")
  12339. },
  12340. {
  12341. name: "Universal",
  12342. height: math.unit(1, "yottameter")
  12343. },
  12344. ]
  12345. ))
  12346. characterMakers.push(() => makeCharacter(
  12347. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12348. {
  12349. front: {
  12350. height: math.unit(6, "feet"),
  12351. weight: math.unit(150, "lb"),
  12352. name: "Front",
  12353. image: {
  12354. source: "./media/characters/epifox/front.svg",
  12355. extra: 1,
  12356. bottom: 0.075
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Micro",
  12363. height: math.unit(6, "inches")
  12364. },
  12365. {
  12366. name: "Normal",
  12367. height: math.unit(12, "feet"),
  12368. default: true
  12369. },
  12370. {
  12371. name: "Macro",
  12372. height: math.unit(3810, "feet")
  12373. },
  12374. {
  12375. name: "Megamacro",
  12376. height: math.unit(500, "miles")
  12377. },
  12378. ]
  12379. ))
  12380. characterMakers.push(() => makeCharacter(
  12381. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12382. {
  12383. front: {
  12384. height: math.unit(1.8796, "m"),
  12385. weight: math.unit(230, "lb"),
  12386. name: "Front",
  12387. image: {
  12388. source: "./media/characters/colin-t/front.svg",
  12389. extra: 1272 / 1193,
  12390. bottom: 0.07
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(0.571, "meters")
  12398. },
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(1.8796, "meters"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Tall",
  12406. height: math.unit(4, "meters")
  12407. },
  12408. {
  12409. name: "Macro",
  12410. height: math.unit(67.241, "meters")
  12411. },
  12412. {
  12413. name: "Megamacro",
  12414. height: math.unit(371.856, "meters")
  12415. },
  12416. {
  12417. name: "Planetary",
  12418. height: math.unit(12631.5689, "km")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(1.85, "meters"),
  12427. weight: math.unit(80, "kg"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/matvei/front.svg",
  12431. extra: 614 / 594,
  12432. bottom: 0.01
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(1.85, "meters"),
  12440. default: true
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(5 + 9 / 12, "feet"),
  12449. weight: math.unit(70, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/quincy/front.svg",
  12453. extra: 3041 / 2751
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(5 + 9 / 12, "feet"),
  12458. weight: math.unit(70, "lb"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/quincy/back.svg",
  12462. extra: 3041 / 2751
  12463. }
  12464. },
  12465. flying: {
  12466. height: math.unit(5 + 4 / 12, "feet"),
  12467. weight: math.unit(70, "lb"),
  12468. name: "Flying",
  12469. image: {
  12470. source: "./media/characters/quincy/flying.svg",
  12471. extra: 1044 / 930
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Micro",
  12478. height: math.unit(3, "cm")
  12479. },
  12480. {
  12481. name: "Normal",
  12482. height: math.unit(5 + 9 / 12, "feet")
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(200, "meters"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Megamacro",
  12491. height: math.unit(1000, "meters")
  12492. },
  12493. ]
  12494. ))
  12495. characterMakers.push(() => makeCharacter(
  12496. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12497. {
  12498. front: {
  12499. height: math.unit(3 + 11/12, "feet"),
  12500. weight: math.unit(50, "lb"),
  12501. name: "Front",
  12502. image: {
  12503. source: "./media/characters/vanrel/front.svg",
  12504. extra: 1104/949,
  12505. bottom: 52/1156
  12506. }
  12507. },
  12508. back: {
  12509. height: math.unit(3 + 11/12, "feet"),
  12510. weight: math.unit(50, "lb"),
  12511. name: "Back",
  12512. image: {
  12513. source: "./media/characters/vanrel/back.svg",
  12514. extra: 1119/976,
  12515. bottom: 37/1156
  12516. }
  12517. },
  12518. tome: {
  12519. height: math.unit(1.35, "feet"),
  12520. weight: math.unit(10, "lb"),
  12521. name: "Vanrel's Tome",
  12522. rename: true,
  12523. image: {
  12524. source: "./media/characters/vanrel/tome.svg"
  12525. }
  12526. },
  12527. beans: {
  12528. height: math.unit(0.89, "feet"),
  12529. name: "Beans",
  12530. image: {
  12531. source: "./media/characters/vanrel/beans.svg"
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(3 + 11/12, "feet"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(7 + 5 / 12, "feet"),
  12548. name: "Front",
  12549. image: {
  12550. source: "./media/characters/kuiper-vanrel/front.svg",
  12551. extra: 1219/1169,
  12552. bottom: 69/1288
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(7 + 5 / 12, "feet"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/kuiper-vanrel/back.svg",
  12560. extra: 1236/1193,
  12561. bottom: 27/1263
  12562. }
  12563. },
  12564. foot: {
  12565. height: math.unit(0.55, "meters"),
  12566. name: "Foot",
  12567. image: {
  12568. source: "./media/characters/kuiper-vanrel/foot.svg",
  12569. }
  12570. },
  12571. battle: {
  12572. height: math.unit(6.824, "feet"),
  12573. name: "Battle",
  12574. image: {
  12575. source: "./media/characters/kuiper-vanrel/battle.svg",
  12576. extra: 1466 / 1327,
  12577. bottom: 29 / 1492.5
  12578. }
  12579. },
  12580. meerkui: {
  12581. height: math.unit(18, "inches"),
  12582. name: "Meerkui",
  12583. image: {
  12584. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12585. extra: 1354/1289,
  12586. bottom: 69/1423
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Normal",
  12593. height: math.unit(7 + 5 / 12, "feet"),
  12594. default: true
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(8 + 5 / 12, "feet"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/keset-vanrel/front.svg",
  12606. extra: 1231/1148,
  12607. bottom: 82/1313
  12608. }
  12609. },
  12610. back: {
  12611. height: math.unit(8 + 5 / 12, "feet"),
  12612. name: "Back",
  12613. image: {
  12614. source: "./media/characters/keset-vanrel/back.svg",
  12615. extra: 1240/1174,
  12616. bottom: 33/1273
  12617. }
  12618. },
  12619. hand: {
  12620. height: math.unit(0.6, "meters"),
  12621. name: "Hand",
  12622. image: {
  12623. source: "./media/characters/keset-vanrel/hand.svg"
  12624. }
  12625. },
  12626. foot: {
  12627. height: math.unit(0.94978, "meters"),
  12628. name: "Foot",
  12629. image: {
  12630. source: "./media/characters/keset-vanrel/foot.svg"
  12631. }
  12632. },
  12633. battle: {
  12634. height: math.unit(7.408, "feet"),
  12635. name: "Battle",
  12636. image: {
  12637. source: "./media/characters/keset-vanrel/battle.svg",
  12638. extra: 1890 / 1386,
  12639. bottom: 73.28 / 1970
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(8 + 5 / 12, "feet"),
  12647. default: true
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(6, "feet"),
  12656. weight: math.unit(150, "lb"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/neos/front.svg",
  12660. extra: 1696 / 992,
  12661. bottom: 0.14
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Normal",
  12668. height: math.unit(54, "cm"),
  12669. default: true
  12670. },
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(100, "m")
  12674. },
  12675. {
  12676. name: "Megamacro",
  12677. height: math.unit(10, "km")
  12678. },
  12679. {
  12680. name: "Megamacro+",
  12681. height: math.unit(100, "km")
  12682. },
  12683. {
  12684. name: "Gigamacro",
  12685. height: math.unit(100, "Mm")
  12686. },
  12687. {
  12688. name: "Teramacro",
  12689. height: math.unit(100, "Gm")
  12690. },
  12691. {
  12692. name: "Examacro",
  12693. height: math.unit(100, "Em")
  12694. },
  12695. {
  12696. name: "Godly",
  12697. height: math.unit(10000, "Ym")
  12698. },
  12699. {
  12700. name: "Beyond Godly",
  12701. height: math.unit(25, "multiverses")
  12702. },
  12703. ]
  12704. ))
  12705. characterMakers.push(() => makeCharacter(
  12706. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12707. {
  12708. feminine: {
  12709. height: math.unit(5, "feet"),
  12710. weight: math.unit(100, "lb"),
  12711. name: "Feminine",
  12712. image: {
  12713. source: "./media/characters/sammy-mouse/feminine.svg",
  12714. extra: 2526 / 2425,
  12715. bottom: 0.123
  12716. }
  12717. },
  12718. masculine: {
  12719. height: math.unit(5, "feet"),
  12720. weight: math.unit(100, "lb"),
  12721. name: "Masculine",
  12722. image: {
  12723. source: "./media/characters/sammy-mouse/masculine.svg",
  12724. extra: 2526 / 2425,
  12725. bottom: 0.123
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Micro",
  12732. height: math.unit(5, "inches")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(5, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(60, "feet")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(4, "feet"),
  12750. weight: math.unit(50, "lb"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/kole/front.svg",
  12754. extra: 1423 / 1303,
  12755. bottom: 0.025
  12756. }
  12757. },
  12758. back: {
  12759. height: math.unit(4, "feet"),
  12760. weight: math.unit(50, "lb"),
  12761. name: "Back",
  12762. image: {
  12763. source: "./media/characters/kole/back.svg",
  12764. extra: 1426 / 1280,
  12765. bottom: 0.02
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(4, "feet"),
  12773. default: true
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(2.5, "feet"),
  12782. weight: math.unit(32, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/rufran/front.svg",
  12786. extra: 1313/885,
  12787. bottom: 94/1407
  12788. }
  12789. },
  12790. side: {
  12791. height: math.unit(2.5, "feet"),
  12792. weight: math.unit(32, "lb"),
  12793. name: "Side",
  12794. image: {
  12795. source: "./media/characters/rufran/side.svg",
  12796. extra: 1109/852,
  12797. bottom: 118/1227
  12798. }
  12799. },
  12800. back: {
  12801. height: math.unit(2.5, "feet"),
  12802. weight: math.unit(32, "lb"),
  12803. name: "Back",
  12804. image: {
  12805. source: "./media/characters/rufran/back.svg",
  12806. extra: 1280/878,
  12807. bottom: 131/1411
  12808. }
  12809. },
  12810. mouth: {
  12811. height: math.unit(1.13, "feet"),
  12812. name: "Mouth",
  12813. image: {
  12814. source: "./media/characters/rufran/mouth.svg"
  12815. }
  12816. },
  12817. foot: {
  12818. height: math.unit(1.33, "feet"),
  12819. name: "Foot",
  12820. image: {
  12821. source: "./media/characters/rufran/foot.svg"
  12822. }
  12823. },
  12824. koboldFront: {
  12825. height: math.unit(2 + 6 / 12, "feet"),
  12826. weight: math.unit(20, "lb"),
  12827. name: "Front (Kobold)",
  12828. image: {
  12829. source: "./media/characters/rufran/kobold-front.svg",
  12830. extra: 2041 / 1839,
  12831. bottom: 0.055
  12832. }
  12833. },
  12834. koboldBack: {
  12835. height: math.unit(2 + 6 / 12, "feet"),
  12836. weight: math.unit(20, "lb"),
  12837. name: "Back (Kobold)",
  12838. image: {
  12839. source: "./media/characters/rufran/kobold-back.svg",
  12840. extra: 2054 / 1839,
  12841. bottom: 0.01
  12842. }
  12843. },
  12844. koboldHand: {
  12845. height: math.unit(0.2166, "meters"),
  12846. name: "Hand (Kobold)",
  12847. image: {
  12848. source: "./media/characters/rufran/kobold-hand.svg"
  12849. }
  12850. },
  12851. koboldFoot: {
  12852. height: math.unit(0.185, "meters"),
  12853. name: "Foot (Kobold)",
  12854. image: {
  12855. source: "./media/characters/rufran/kobold-foot.svg"
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Micro",
  12862. height: math.unit(1, "inch")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(2 + 6 / 12, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Big",
  12871. height: math.unit(60, "feet")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(325, "feet")
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(0.3, "meters"),
  12884. weight: math.unit(3.5, "kg"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/chip/front.svg",
  12888. extra: 748 / 674
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(1, "inch"),
  12896. default: true
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12902. {
  12903. side: {
  12904. height: math.unit(2.3, "meters"),
  12905. weight: math.unit(3500, "lb"),
  12906. name: "Side",
  12907. image: {
  12908. source: "./media/characters/torvid/side.svg",
  12909. extra: 1972 / 722,
  12910. bottom: 0.035
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(2.3, "meters"),
  12918. default: true
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(2, "meters"),
  12927. weight: math.unit(150.5, "kg"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/susan/front.svg",
  12931. extra: 693 / 635,
  12932. bottom: 0.05
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Megamacro",
  12939. height: math.unit(505, "miles"),
  12940. default: true
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(6, "feet"),
  12949. weight: math.unit(150, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/raindrops/front.svg",
  12953. extra: 2655 / 2461,
  12954. bottom: 49 / 2705
  12955. }
  12956. },
  12957. back: {
  12958. height: math.unit(6, "feet"),
  12959. weight: math.unit(150, "lb"),
  12960. name: "Back",
  12961. image: {
  12962. source: "./media/characters/raindrops/back.svg",
  12963. extra: 2574 / 2400,
  12964. bottom: 65 / 2634
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(6, "inches")
  12972. },
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(6 + 2 / 12, "feet")
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(131, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(15, "miles")
  12985. },
  12986. {
  12987. name: "Gigamacro",
  12988. height: math.unit(4000, "miles")
  12989. },
  12990. {
  12991. name: "Teramacro",
  12992. height: math.unit(315000, "miles")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(2.794, "meters"),
  13001. weight: math.unit(325, "kg"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/tezwa/front.svg",
  13005. extra: 2083 / 1906,
  13006. bottom: 0.031
  13007. }
  13008. },
  13009. foot: {
  13010. height: math.unit(0.687, "meters"),
  13011. name: "Foot",
  13012. image: {
  13013. source: "./media/characters/tezwa/foot.svg"
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(9 + 2 / 12, "feet"),
  13021. default: true
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(58, "feet"),
  13030. weight: math.unit(89000, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/typhus/front.svg",
  13034. extra: 816 / 800,
  13035. bottom: 0.065
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(58, "feet"),
  13043. default: true
  13044. },
  13045. ]
  13046. ))
  13047. characterMakers.push(() => makeCharacter(
  13048. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13049. {
  13050. front: {
  13051. height: math.unit(12, "feet"),
  13052. weight: math.unit(6, "tonnes"),
  13053. name: "Front",
  13054. image: {
  13055. source: "./media/characters/lyra-von-wulf/front.svg",
  13056. extra: 1,
  13057. bottom: 0.10
  13058. }
  13059. },
  13060. frontMecha: {
  13061. height: math.unit(12, "feet"),
  13062. weight: math.unit(12, "tonnes"),
  13063. name: "Front (Mecha)",
  13064. image: {
  13065. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13066. extra: 1,
  13067. bottom: 0.042
  13068. }
  13069. },
  13070. maw: {
  13071. height: math.unit(2.2, "feet"),
  13072. name: "Maw",
  13073. image: {
  13074. source: "./media/characters/lyra-von-wulf/maw.svg"
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(12, "feet"),
  13082. default: true
  13083. },
  13084. {
  13085. name: "Classic",
  13086. height: math.unit(50, "feet")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(500, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(1, "mile")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(400, "miles")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(22000, "miles")
  13103. },
  13104. {
  13105. name: "Solarmacro",
  13106. height: math.unit(8600000, "miles")
  13107. },
  13108. {
  13109. name: "Galactic",
  13110. height: math.unit(1057000, "lightyears")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6 + 10 / 12, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/dixon/front.svg",
  13123. extra: 3361 / 3209,
  13124. bottom: 0.01
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(6 + 10 / 12, "feet"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Big",
  13136. height: math.unit(12, "meters")
  13137. },
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(500, "meters")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(2, "km")
  13145. },
  13146. ]
  13147. ))
  13148. characterMakers.push(() => makeCharacter(
  13149. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13150. {
  13151. front: {
  13152. height: math.unit(185, "cm"),
  13153. weight: math.unit(68, "kg"),
  13154. name: "Front",
  13155. image: {
  13156. source: "./media/characters/kauko/front.svg",
  13157. extra: 1455 / 1421,
  13158. bottom: 0.03
  13159. }
  13160. },
  13161. back: {
  13162. height: math.unit(185, "cm"),
  13163. weight: math.unit(68, "kg"),
  13164. name: "Back",
  13165. image: {
  13166. source: "./media/characters/kauko/back.svg",
  13167. extra: 1455 / 1421,
  13168. bottom: 0.004
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Normal",
  13175. height: math.unit(185, "cm"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(150, "kg"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/varg/front.svg",
  13189. extra: 1108 / 1018,
  13190. bottom: 0.0375
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(5, "meters")
  13198. },
  13199. {
  13200. name: "Macro",
  13201. height: math.unit(200, "meters")
  13202. },
  13203. {
  13204. name: "Megamacro",
  13205. height: math.unit(20, "kilometers")
  13206. },
  13207. {
  13208. name: "True Size",
  13209. height: math.unit(211, "km"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(1000, "km")
  13215. },
  13216. {
  13217. name: "Gigamacro+",
  13218. height: math.unit(8000, "km")
  13219. },
  13220. {
  13221. name: "Teramacro",
  13222. height: math.unit(1000000, "km")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(7 + 7 / 12, "feet"),
  13231. weight: math.unit(267, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/dayza/front.svg",
  13235. extra: 1262 / 1200,
  13236. bottom: 0.035
  13237. }
  13238. },
  13239. side: {
  13240. height: math.unit(7 + 7 / 12, "feet"),
  13241. weight: math.unit(267, "lb"),
  13242. name: "Side",
  13243. image: {
  13244. source: "./media/characters/dayza/side.svg",
  13245. extra: 1295 / 1245,
  13246. bottom: 0.05
  13247. }
  13248. },
  13249. back: {
  13250. height: math.unit(7 + 7 / 12, "feet"),
  13251. weight: math.unit(267, "lb"),
  13252. name: "Back",
  13253. image: {
  13254. source: "./media/characters/dayza/back.svg",
  13255. extra: 1241 / 1170
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(7 + 7 / 12, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Macro",
  13267. height: math.unit(155, "feet")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 5 / 12, "feet"),
  13276. weight: math.unit(160, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/xanthos/front.svg",
  13280. extra: 1,
  13281. bottom: 0.04
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(6 + 5 / 12, "feet"),
  13286. weight: math.unit(160, "lb"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/xanthos/back.svg",
  13290. extra: 1,
  13291. bottom: 0.03
  13292. }
  13293. },
  13294. hand: {
  13295. height: math.unit(0.928, "feet"),
  13296. name: "Hand",
  13297. image: {
  13298. source: "./media/characters/xanthos/hand.svg"
  13299. }
  13300. },
  13301. foot: {
  13302. height: math.unit(1.286, "feet"),
  13303. name: "Foot",
  13304. image: {
  13305. source: "./media/characters/xanthos/foot.svg"
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Normal",
  13312. height: math.unit(6 + 5 / 12, "feet"),
  13313. default: true
  13314. },
  13315. {
  13316. name: "Normal+",
  13317. height: math.unit(6, "meters")
  13318. },
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(40, "feet")
  13322. },
  13323. {
  13324. name: "Macro+",
  13325. height: math.unit(200, "meters")
  13326. },
  13327. {
  13328. name: "Megamacro",
  13329. height: math.unit(20, "km")
  13330. },
  13331. {
  13332. name: "Megamacro+",
  13333. height: math.unit(100, "km")
  13334. },
  13335. {
  13336. name: "Gigamacro",
  13337. height: math.unit(200, "megameters")
  13338. },
  13339. {
  13340. name: "Gigamacro+",
  13341. height: math.unit(1.5, "gigameters")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6 + 3 / 12, "feet"),
  13350. weight: math.unit(215, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/grynn/front.svg",
  13354. extra: 4627 / 4209,
  13355. bottom: 0.047
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Micro",
  13362. height: math.unit(6, "inches")
  13363. },
  13364. {
  13365. name: "Normal",
  13366. height: math.unit(6 + 3 / 12, "feet"),
  13367. default: true
  13368. },
  13369. {
  13370. name: "Big",
  13371. height: math.unit(104, "feet")
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(944, "feet")
  13376. },
  13377. {
  13378. name: "Macro+",
  13379. height: math.unit(9480, "feet")
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(78752, "feet")
  13384. },
  13385. {
  13386. name: "Megamacro+",
  13387. height: math.unit(630128, "feet")
  13388. },
  13389. {
  13390. name: "Megamacro++",
  13391. height: math.unit(3150695, "feet")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(7 + 5 / 12, "feet"),
  13400. weight: math.unit(450, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/mocha-aura/front.svg",
  13404. extra: 1907 / 1817,
  13405. bottom: 0.04
  13406. }
  13407. },
  13408. back: {
  13409. height: math.unit(7 + 5 / 12, "feet"),
  13410. weight: math.unit(450, "lb"),
  13411. name: "Back",
  13412. image: {
  13413. source: "./media/characters/mocha-aura/back.svg",
  13414. extra: 1900 / 1825,
  13415. bottom: 0.045
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Nano",
  13422. height: math.unit(1, "nm")
  13423. },
  13424. {
  13425. name: "Megamicro",
  13426. height: math.unit(1, "mm")
  13427. },
  13428. {
  13429. name: "Micro",
  13430. height: math.unit(3, "inches")
  13431. },
  13432. {
  13433. name: "Normal",
  13434. height: math.unit(7 + 5 / 12, "feet"),
  13435. default: true
  13436. },
  13437. {
  13438. name: "Macro",
  13439. height: math.unit(30, "feet")
  13440. },
  13441. {
  13442. name: "Megamacro",
  13443. height: math.unit(3500, "feet")
  13444. },
  13445. {
  13446. name: "Teramacro",
  13447. height: math.unit(500000, "miles")
  13448. },
  13449. {
  13450. name: "Petamacro",
  13451. height: math.unit(50000000000000000, "parsecs")
  13452. },
  13453. ]
  13454. ))
  13455. characterMakers.push(() => makeCharacter(
  13456. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13457. {
  13458. front: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(150, "lb"),
  13461. name: "Front",
  13462. image: {
  13463. source: "./media/characters/ilisha-devya/front.svg",
  13464. extra: 1053/1049,
  13465. bottom: 270/1323
  13466. }
  13467. },
  13468. back: {
  13469. height: math.unit(6, "feet"),
  13470. weight: math.unit(150, "lb"),
  13471. name: "Back",
  13472. image: {
  13473. source: "./media/characters/ilisha-devya/back.svg",
  13474. extra: 1131/1128,
  13475. bottom: 39/1170
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Macro",
  13482. height: math.unit(500, "feet"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(10, "miles")
  13488. },
  13489. {
  13490. name: "Gigamacro",
  13491. height: math.unit(100000, "miles")
  13492. },
  13493. {
  13494. name: "Examacro",
  13495. height: math.unit(1e9, "lightyears")
  13496. },
  13497. {
  13498. name: "Omniversal",
  13499. height: math.unit(1e33, "lightyears")
  13500. },
  13501. {
  13502. name: "Beyond Infinite",
  13503. height: math.unit(1e100, "lightyears")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13509. {
  13510. Side: {
  13511. height: math.unit(6, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Side",
  13514. image: {
  13515. source: "./media/characters/mira/side.svg",
  13516. extra: 900 / 799,
  13517. bottom: 0.02
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Human Size",
  13524. height: math.unit(6, "feet")
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(100, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(10, "miles")
  13534. },
  13535. {
  13536. name: "Gigamacro",
  13537. height: math.unit(25000, "miles")
  13538. },
  13539. {
  13540. name: "Teramacro",
  13541. height: math.unit(300, "AU")
  13542. },
  13543. {
  13544. name: "Full Size",
  13545. height: math.unit(4.5e10, "lightyears")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/holly/front.svg",
  13558. extra: 639 / 606
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6, "feet"),
  13563. weight: math.unit(150, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/holly/back.svg",
  13567. extra: 623 / 598
  13568. }
  13569. },
  13570. frontWorking: {
  13571. height: math.unit(6, "feet"),
  13572. weight: math.unit(150, "lb"),
  13573. name: "Front (Working)",
  13574. image: {
  13575. source: "./media/characters/holly/front-working.svg",
  13576. extra: 607 / 577,
  13577. bottom: 0.048
  13578. }
  13579. },
  13580. },
  13581. [
  13582. {
  13583. name: "Normal",
  13584. height: math.unit(12 + 3 / 12, "feet"),
  13585. default: true
  13586. },
  13587. ]
  13588. ))
  13589. characterMakers.push(() => makeCharacter(
  13590. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13591. {
  13592. front: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(150, "lb"),
  13595. name: "Front",
  13596. image: {
  13597. source: "./media/characters/porter/front.svg",
  13598. extra: 1,
  13599. bottom: 0.01
  13600. }
  13601. },
  13602. frontRobes: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Front (Robes)",
  13606. image: {
  13607. source: "./media/characters/porter/front-robes.svg",
  13608. extra: 1.01,
  13609. bottom: 0.01
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Normal",
  13616. height: math.unit(11 + 9 / 12, "feet"),
  13617. default: true
  13618. },
  13619. ]
  13620. ))
  13621. characterMakers.push(() => makeCharacter(
  13622. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13623. {
  13624. legendary: {
  13625. height: math.unit(6, "feet"),
  13626. weight: math.unit(150, "lb"),
  13627. name: "Legendary",
  13628. image: {
  13629. source: "./media/characters/lucy/legendary.svg",
  13630. extra: 1355 / 1100,
  13631. bottom: 0.045
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Legendary",
  13638. height: math.unit(86882 * 2, "miles"),
  13639. default: true
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(6, "feet"),
  13648. weight: math.unit(150, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/drusilla/front.svg",
  13652. extra: 678 / 635,
  13653. bottom: 0.03
  13654. }
  13655. },
  13656. back: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(150, "lb"),
  13659. name: "Back",
  13660. image: {
  13661. source: "./media/characters/drusilla/back.svg",
  13662. extra: 678 / 635,
  13663. bottom: 0.005
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(100, "feet")
  13671. },
  13672. {
  13673. name: "Canon Height",
  13674. height: math.unit(2000, "feet"),
  13675. default: true
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(6, "feet"),
  13684. weight: math.unit(180, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/renard-thatch/front.svg",
  13688. extra: 2411 / 2275,
  13689. bottom: 0.01
  13690. }
  13691. },
  13692. frontPosing: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(180, "lb"),
  13695. name: "Front (Posing)",
  13696. image: {
  13697. source: "./media/characters/renard-thatch/front-posing.svg",
  13698. extra: 2381 / 2261,
  13699. bottom: 0.01
  13700. }
  13701. },
  13702. back: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(180, "lb"),
  13705. name: "Back",
  13706. image: {
  13707. source: "./media/characters/renard-thatch/back.svg",
  13708. extra: 2428 / 2288
  13709. }
  13710. },
  13711. },
  13712. [
  13713. {
  13714. name: "Micro",
  13715. height: math.unit(3, "inches")
  13716. },
  13717. {
  13718. name: "Default",
  13719. height: math.unit(6, "feet"),
  13720. default: true
  13721. },
  13722. {
  13723. name: "Macro",
  13724. height: math.unit(75, "feet")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(1450, "feet"),
  13733. weight: math.unit(1.21e6, "tons"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/sekvra/front.svg",
  13737. extra: 1193/1190,
  13738. bottom: 78/1271
  13739. }
  13740. },
  13741. side: {
  13742. height: math.unit(1450, "feet"),
  13743. weight: math.unit(1.21e6, "tons"),
  13744. name: "Side",
  13745. image: {
  13746. source: "./media/characters/sekvra/side.svg",
  13747. extra: 1193/1190,
  13748. bottom: 52/1245
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(1450, "feet"),
  13753. weight: math.unit(1.21e6, "tons"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/sekvra/back.svg",
  13757. extra: 1219/1216,
  13758. bottom: 21/1240
  13759. }
  13760. },
  13761. frontClothed: {
  13762. height: math.unit(1450, "feet"),
  13763. weight: math.unit(1.21e6, "tons"),
  13764. name: "Front (Clothed)",
  13765. image: {
  13766. source: "./media/characters/sekvra/front-clothed.svg",
  13767. extra: 1192/1189,
  13768. bottom: 79/1271
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Macro",
  13775. height: math.unit(1450, "feet"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Megamacro",
  13780. height: math.unit(15000, "feet")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/carmine/front.svg",
  13793. extra: 1,
  13794. bottom: 0.035
  13795. }
  13796. },
  13797. frontArmor: {
  13798. height: math.unit(6, "feet"),
  13799. weight: math.unit(150, "lb"),
  13800. name: "Front (Armor)",
  13801. image: {
  13802. source: "./media/characters/carmine/front-armor.svg",
  13803. extra: 1,
  13804. bottom: 0.035
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Large",
  13811. height: math.unit(1, "mile")
  13812. },
  13813. {
  13814. name: "Huge",
  13815. height: math.unit(40, "miles"),
  13816. default: true
  13817. },
  13818. {
  13819. name: "Colossal",
  13820. height: math.unit(2500, "miles")
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13826. {
  13827. front: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Front",
  13831. image: {
  13832. source: "./media/characters/elyssia/front.svg",
  13833. extra: 2201 / 2035,
  13834. bottom: 0.05
  13835. }
  13836. },
  13837. frontClothed: {
  13838. height: math.unit(6, "feet"),
  13839. weight: math.unit(150, "lb"),
  13840. name: "Front (Clothed)",
  13841. image: {
  13842. source: "./media/characters/elyssia/front-clothed.svg",
  13843. extra: 2201 / 2035,
  13844. bottom: 0.05
  13845. }
  13846. },
  13847. back: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Back",
  13851. image: {
  13852. source: "./media/characters/elyssia/back.svg",
  13853. extra: 2201 / 2035,
  13854. bottom: 0.013
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Smaller",
  13861. height: math.unit(150, "feet")
  13862. },
  13863. {
  13864. name: "Standard",
  13865. height: math.unit(1400, "feet"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Distracted",
  13870. height: math.unit(15000, "feet")
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(7 + 4/12, "feet"),
  13879. weight: math.unit(690, "lb"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/geno-maxwell/front.svg",
  13883. extra: 984/856,
  13884. bottom: 87/1071
  13885. }
  13886. },
  13887. back: {
  13888. height: math.unit(7 + 4/12, "feet"),
  13889. weight: math.unit(690, "lb"),
  13890. name: "Back",
  13891. image: {
  13892. source: "./media/characters/geno-maxwell/back.svg",
  13893. extra: 981/854,
  13894. bottom: 57/1038
  13895. }
  13896. },
  13897. frontCostume: {
  13898. height: math.unit(7 + 4/12, "feet"),
  13899. weight: math.unit(690, "lb"),
  13900. name: "Front (Costume)",
  13901. image: {
  13902. source: "./media/characters/geno-maxwell/front-costume.svg",
  13903. extra: 984/856,
  13904. bottom: 87/1071
  13905. }
  13906. },
  13907. backcostume: {
  13908. height: math.unit(7 + 4/12, "feet"),
  13909. weight: math.unit(690, "lb"),
  13910. name: "Back (Costume)",
  13911. image: {
  13912. source: "./media/characters/geno-maxwell/back-costume.svg",
  13913. extra: 981/854,
  13914. bottom: 57/1038
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Micro",
  13921. height: math.unit(3, "inches")
  13922. },
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(7 + 4 / 12, "feet"),
  13926. default: true
  13927. },
  13928. {
  13929. name: "Macro",
  13930. height: math.unit(220, "feet")
  13931. },
  13932. {
  13933. name: "Megamacro",
  13934. height: math.unit(11, "miles")
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(7 + 4/12, "feet"),
  13943. weight: math.unit(750, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/regena-maxwell/front.svg",
  13947. extra: 984/856,
  13948. bottom: 87/1071
  13949. }
  13950. },
  13951. back: {
  13952. height: math.unit(7 + 4/12, "feet"),
  13953. weight: math.unit(750, "lb"),
  13954. name: "Back",
  13955. image: {
  13956. source: "./media/characters/regena-maxwell/back.svg",
  13957. extra: 981/854,
  13958. bottom: 57/1038
  13959. }
  13960. },
  13961. frontCostume: {
  13962. height: math.unit(7 + 4/12, "feet"),
  13963. weight: math.unit(750, "lb"),
  13964. name: "Front (Costume)",
  13965. image: {
  13966. source: "./media/characters/regena-maxwell/front-costume.svg",
  13967. extra: 984/856,
  13968. bottom: 87/1071
  13969. }
  13970. },
  13971. backcostume: {
  13972. height: math.unit(7 + 4/12, "feet"),
  13973. weight: math.unit(750, "lb"),
  13974. name: "Back (Costume)",
  13975. image: {
  13976. source: "./media/characters/regena-maxwell/back-costume.svg",
  13977. extra: 981/854,
  13978. bottom: 57/1038
  13979. }
  13980. },
  13981. },
  13982. [
  13983. {
  13984. name: "Normal",
  13985. height: math.unit(7 + 4 / 12, "feet"),
  13986. default: true
  13987. },
  13988. {
  13989. name: "Macro",
  13990. height: math.unit(220, "feet")
  13991. },
  13992. {
  13993. name: "Megamacro",
  13994. height: math.unit(11, "miles")
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14007. extra: 860 / 690,
  14008. bottom: 0.03
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(1.7, "meters"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(6, "feet"),
  14025. weight: math.unit(150, "lb"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/quilly/front.svg",
  14029. extra: 890 / 776
  14030. }
  14031. },
  14032. },
  14033. [
  14034. {
  14035. name: "Gigamacro",
  14036. height: math.unit(404090, "miles"),
  14037. default: true
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(7 + 8 / 12, "feet"),
  14046. weight: math.unit(350, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/tempest/front.svg",
  14050. extra: 1175 / 1086,
  14051. bottom: 0.02
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(7 + 8 / 12, "feet"),
  14059. default: true
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14065. {
  14066. side: {
  14067. height: math.unit(4 + 5 / 12, "feet"),
  14068. weight: math.unit(80, "lb"),
  14069. name: "Side",
  14070. image: {
  14071. source: "./media/characters/rodger/side.svg",
  14072. extra: 1235 / 1118
  14073. }
  14074. },
  14075. },
  14076. [
  14077. {
  14078. name: "Micro",
  14079. height: math.unit(1, "inch")
  14080. },
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(4 + 5 / 12, "feet"),
  14084. default: true
  14085. },
  14086. {
  14087. name: "Macro",
  14088. height: math.unit(120, "feet")
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(6, "feet"),
  14097. weight: math.unit(150, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/danyel/front.svg",
  14101. extra: 1185 / 1123,
  14102. bottom: 0.05
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Shrunken",
  14109. height: math.unit(0.5, "mm")
  14110. },
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(1, "mm"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Upsized",
  14118. height: math.unit(5 + 5 / 12, "feet")
  14119. },
  14120. ]
  14121. ))
  14122. characterMakers.push(() => makeCharacter(
  14123. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14124. {
  14125. front: {
  14126. height: math.unit(5 + 6 / 12, "feet"),
  14127. weight: math.unit(200, "lb"),
  14128. name: "Front",
  14129. image: {
  14130. source: "./media/characters/vivian-bijoux/front.svg",
  14131. extra: 1217/1209,
  14132. bottom: 76/1293
  14133. }
  14134. },
  14135. back: {
  14136. height: math.unit(5 + 6 / 12, "feet"),
  14137. weight: math.unit(200, "lb"),
  14138. name: "Back",
  14139. image: {
  14140. source: "./media/characters/vivian-bijoux/back.svg",
  14141. extra: 1214/1208,
  14142. bottom: 51/1265
  14143. }
  14144. },
  14145. dressed: {
  14146. height: math.unit(5 + 6 / 12, "feet"),
  14147. weight: math.unit(200, "lb"),
  14148. name: "Dressed",
  14149. image: {
  14150. source: "./media/characters/vivian-bijoux/dressed.svg",
  14151. extra: 1217/1209,
  14152. bottom: 76/1293
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(5 + 6 / 12, "feet"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Bad Dream",
  14164. height: math.unit(500, "feet")
  14165. },
  14166. {
  14167. name: "Nightmare",
  14168. height: math.unit(500, "miles")
  14169. },
  14170. ]
  14171. ))
  14172. characterMakers.push(() => makeCharacter(
  14173. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14174. {
  14175. front: {
  14176. height: math.unit(6 + 1 / 12, "feet"),
  14177. weight: math.unit(260, "lb"),
  14178. name: "Front",
  14179. image: {
  14180. source: "./media/characters/zeta/front.svg",
  14181. extra: 1968 / 1889,
  14182. bottom: 0.06
  14183. }
  14184. },
  14185. back: {
  14186. height: math.unit(6 + 1 / 12, "feet"),
  14187. weight: math.unit(260, "lb"),
  14188. name: "Back",
  14189. image: {
  14190. source: "./media/characters/zeta/back.svg",
  14191. extra: 1944 / 1858,
  14192. bottom: 0.03
  14193. }
  14194. },
  14195. hand: {
  14196. height: math.unit(1.112, "feet"),
  14197. name: "Hand",
  14198. image: {
  14199. source: "./media/characters/zeta/hand.svg"
  14200. }
  14201. },
  14202. foot: {
  14203. height: math.unit(1.48, "feet"),
  14204. name: "Foot",
  14205. image: {
  14206. source: "./media/characters/zeta/foot.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(6, "inches")
  14214. },
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(6 + 1 / 12, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Macro",
  14222. height: math.unit(20, "feet")
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(6, "feet"),
  14231. weight: math.unit(150, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/jamie-larsen/front.svg",
  14235. extra: 962 / 933,
  14236. bottom: 0.02
  14237. }
  14238. },
  14239. back: {
  14240. height: math.unit(6, "feet"),
  14241. weight: math.unit(150, "lb"),
  14242. name: "Back",
  14243. image: {
  14244. source: "./media/characters/jamie-larsen/back.svg",
  14245. extra: 997 / 946
  14246. }
  14247. },
  14248. },
  14249. [
  14250. {
  14251. name: "Macro",
  14252. height: math.unit(28 + 7 / 12, "feet"),
  14253. default: true
  14254. },
  14255. {
  14256. name: "Macro+",
  14257. height: math.unit(180, "feet")
  14258. },
  14259. {
  14260. name: "Megamacro",
  14261. height: math.unit(10, "miles")
  14262. },
  14263. {
  14264. name: "Gigamacro",
  14265. height: math.unit(200000, "miles")
  14266. },
  14267. ]
  14268. ))
  14269. characterMakers.push(() => makeCharacter(
  14270. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14271. {
  14272. front: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(120, "lb"),
  14275. name: "Front",
  14276. image: {
  14277. source: "./media/characters/vance/front.svg",
  14278. extra: 1980 / 1890,
  14279. bottom: 0.09
  14280. }
  14281. },
  14282. back: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(120, "lb"),
  14285. name: "Back",
  14286. image: {
  14287. source: "./media/characters/vance/back.svg",
  14288. extra: 2081 / 1994,
  14289. bottom: 0.014
  14290. }
  14291. },
  14292. hand: {
  14293. height: math.unit(0.88, "feet"),
  14294. name: "Hand",
  14295. image: {
  14296. source: "./media/characters/vance/hand.svg"
  14297. }
  14298. },
  14299. foot: {
  14300. height: math.unit(0.64, "feet"),
  14301. name: "Foot",
  14302. image: {
  14303. source: "./media/characters/vance/foot.svg"
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Small",
  14310. height: math.unit(90, "feet"),
  14311. default: true
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(100, "meters")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(15, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6, "feet"),
  14328. weight: math.unit(180, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/xochitl/front.svg",
  14332. extra: 2297 / 2261,
  14333. bottom: 0.065
  14334. }
  14335. },
  14336. back: {
  14337. height: math.unit(6, "feet"),
  14338. weight: math.unit(180, "lb"),
  14339. name: "Back",
  14340. image: {
  14341. source: "./media/characters/xochitl/back.svg",
  14342. extra: 2386 / 2354,
  14343. bottom: 0.01
  14344. }
  14345. },
  14346. foot: {
  14347. height: math.unit(6 / 5 * 1.15, "feet"),
  14348. weight: math.unit(150, "lb"),
  14349. name: "Foot",
  14350. image: {
  14351. source: "./media/characters/xochitl/foot.svg"
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Macro",
  14358. height: math.unit(80, "feet")
  14359. },
  14360. {
  14361. name: "Macro+",
  14362. height: math.unit(400, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Gigamacro",
  14367. height: math.unit(80000, "miles")
  14368. },
  14369. {
  14370. name: "Gigamacro+",
  14371. height: math.unit(400000, "miles")
  14372. },
  14373. {
  14374. name: "Teramacro",
  14375. height: math.unit(300, "AU")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(6, "feet"),
  14384. weight: math.unit(150, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/vincent/front.svg",
  14388. extra: 1130 / 1080,
  14389. bottom: 0.055
  14390. }
  14391. },
  14392. beak: {
  14393. height: math.unit(6 * 0.1, "feet"),
  14394. name: "Beak",
  14395. image: {
  14396. source: "./media/characters/vincent/beak.svg"
  14397. }
  14398. },
  14399. hand: {
  14400. height: math.unit(6 * 0.85, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Hand",
  14403. image: {
  14404. source: "./media/characters/vincent/hand.svg"
  14405. }
  14406. },
  14407. foot: {
  14408. height: math.unit(6 * 0.19, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Foot",
  14411. image: {
  14412. source: "./media/characters/vincent/foot.svg"
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Base",
  14419. height: math.unit(6 + 5 / 12, "feet"),
  14420. default: true
  14421. },
  14422. {
  14423. name: "Macro",
  14424. height: math.unit(300, "feet")
  14425. },
  14426. {
  14427. name: "Megamacro",
  14428. height: math.unit(2, "miles")
  14429. },
  14430. {
  14431. name: "Gigamacro",
  14432. height: math.unit(1000, "miles")
  14433. },
  14434. ]
  14435. ))
  14436. characterMakers.push(() => makeCharacter(
  14437. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14438. {
  14439. front: {
  14440. height: math.unit(2, "meters"),
  14441. weight: math.unit(500, "kg"),
  14442. name: "Front",
  14443. image: {
  14444. source: "./media/characters/coatl/front.svg",
  14445. extra: 3948 / 3500,
  14446. bottom: 0.082
  14447. }
  14448. },
  14449. },
  14450. [
  14451. {
  14452. name: "Normal",
  14453. height: math.unit(4, "meters")
  14454. },
  14455. {
  14456. name: "Macro",
  14457. height: math.unit(100, "meters"),
  14458. default: true
  14459. },
  14460. {
  14461. name: "Macro+",
  14462. height: math.unit(300, "meters")
  14463. },
  14464. {
  14465. name: "Megamacro",
  14466. height: math.unit(3, "gigameters")
  14467. },
  14468. {
  14469. name: "Megamacro+",
  14470. height: math.unit(300, "terameters")
  14471. },
  14472. {
  14473. name: "Megamacro++",
  14474. height: math.unit(3, "lightyears")
  14475. },
  14476. ]
  14477. ))
  14478. characterMakers.push(() => makeCharacter(
  14479. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14480. {
  14481. front: {
  14482. height: math.unit(6, "feet"),
  14483. weight: math.unit(50, "kg"),
  14484. name: "front",
  14485. image: {
  14486. source: "./media/characters/shiroryu/front.svg",
  14487. extra: 1990 / 1935
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Mortal Mingling",
  14494. height: math.unit(3, "meters")
  14495. },
  14496. {
  14497. name: "Kaiju-ish",
  14498. height: math.unit(250, "meters")
  14499. },
  14500. {
  14501. name: "Somewhat Godly",
  14502. height: math.unit(400, "km"),
  14503. default: true
  14504. },
  14505. {
  14506. name: "Planetary",
  14507. height: math.unit(300, "megameters")
  14508. },
  14509. {
  14510. name: "Galaxy-dwarfing",
  14511. height: math.unit(450, "kiloparsecs")
  14512. },
  14513. {
  14514. name: "Universe Eater",
  14515. height: math.unit(150, "gigaparsecs")
  14516. },
  14517. {
  14518. name: "Almost Immeasurable",
  14519. height: math.unit(1.3e266, "yottaparsecs")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/umeko/front.svg",
  14532. extra: 1,
  14533. bottom: 0.019
  14534. }
  14535. },
  14536. frontArmored: {
  14537. height: math.unit(6, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Front (Armored)",
  14540. image: {
  14541. source: "./media/characters/umeko/front-armored.svg",
  14542. extra: 1,
  14543. bottom: 0.021
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Macro",
  14550. height: math.unit(220, "feet"),
  14551. default: true
  14552. },
  14553. {
  14554. name: "Guardian Dragon",
  14555. height: math.unit(50, "miles")
  14556. },
  14557. {
  14558. name: "Cosmic",
  14559. height: math.unit(800000, "miles")
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(6, "feet"),
  14568. weight: math.unit(150, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/cassidy/front.svg",
  14572. extra: 810/808,
  14573. bottom: 41/851
  14574. }
  14575. },
  14576. },
  14577. [
  14578. {
  14579. name: "Canon Height",
  14580. height: math.unit(120, "feet"),
  14581. default: true
  14582. },
  14583. {
  14584. name: "Macro+",
  14585. height: math.unit(400, "feet")
  14586. },
  14587. {
  14588. name: "Macro++",
  14589. height: math.unit(4000, "feet")
  14590. },
  14591. {
  14592. name: "Megamacro",
  14593. height: math.unit(3, "miles")
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(6, "feet"),
  14602. weight: math.unit(150, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/isaac/front.svg",
  14606. extra: 896 / 815,
  14607. bottom: 0.11
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Human Size",
  14614. height: math.unit(8, "feet"),
  14615. default: true
  14616. },
  14617. {
  14618. name: "Macro",
  14619. height: math.unit(400, "feet")
  14620. },
  14621. {
  14622. name: "Megamacro",
  14623. height: math.unit(50, "miles")
  14624. },
  14625. {
  14626. name: "Canon Height",
  14627. height: math.unit(200, "AU")
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(6, "feet"),
  14636. weight: math.unit(72, "kg"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/sleekit/front.svg",
  14640. extra: 4693 / 4487,
  14641. bottom: 0.012
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Minimum Height",
  14648. height: math.unit(10, "meters")
  14649. },
  14650. {
  14651. name: "Smaller",
  14652. height: math.unit(25, "meters")
  14653. },
  14654. {
  14655. name: "Larger",
  14656. height: math.unit(38, "meters"),
  14657. default: true
  14658. },
  14659. {
  14660. name: "Maximum height",
  14661. height: math.unit(100, "meters")
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(6, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/nillia/front.svg",
  14674. extra: 2195 / 2037,
  14675. bottom: 0.005
  14676. }
  14677. },
  14678. back: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Back",
  14682. image: {
  14683. source: "./media/characters/nillia/back.svg",
  14684. extra: 2195 / 2037,
  14685. bottom: 0.005
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Canon Height",
  14692. height: math.unit(489, "feet"),
  14693. default: true
  14694. }
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/mesmyriza/front.svg",
  14706. extra: 2067 / 1784,
  14707. bottom: 0.035
  14708. }
  14709. },
  14710. foot: {
  14711. height: math.unit(6 / (250 / 35), "feet"),
  14712. name: "Foot",
  14713. image: {
  14714. source: "./media/characters/mesmyriza/foot.svg"
  14715. }
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Macro",
  14721. height: math.unit(457, "meters"),
  14722. default: true
  14723. },
  14724. {
  14725. name: "Megamacro",
  14726. height: math.unit(8, "megameters")
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6, "feet"),
  14735. weight: math.unit(250, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/saudade/front.svg",
  14739. extra: 1172 / 1139,
  14740. bottom: 0.035
  14741. }
  14742. },
  14743. },
  14744. [
  14745. {
  14746. name: "Micro",
  14747. height: math.unit(3, "inches")
  14748. },
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(6, "feet"),
  14752. default: true
  14753. },
  14754. {
  14755. name: "Macro",
  14756. height: math.unit(50, "feet")
  14757. },
  14758. {
  14759. name: "Megamacro",
  14760. height: math.unit(2800, "feet")
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(5 + 4 / 12, "feet"),
  14769. weight: math.unit(100, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/keireer/front.svg",
  14773. extra: 716 / 666,
  14774. bottom: 0.05
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(5 + 4 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(6, "feet"),
  14791. weight: math.unit(90, "kg"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/mirja/front.svg",
  14795. extra: 1789 / 1683,
  14796. bottom: 0.05
  14797. }
  14798. },
  14799. frontDressed: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(90, "lb"),
  14802. name: "Front (Dressed)",
  14803. image: {
  14804. source: "./media/characters/mirja/front-dressed.svg",
  14805. extra: 1789 / 1683,
  14806. bottom: 0.05
  14807. }
  14808. },
  14809. back: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(90, "lb"),
  14812. name: "Back",
  14813. image: {
  14814. source: "./media/characters/mirja/back.svg",
  14815. extra: 953 / 917,
  14816. bottom: 0.017
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "\"Incognito\"",
  14823. height: math.unit(3, "meters")
  14824. },
  14825. {
  14826. name: "Strolling Size",
  14827. height: math.unit(15, "km")
  14828. },
  14829. {
  14830. name: "Larger Strolling Size",
  14831. height: math.unit(400, "km")
  14832. },
  14833. {
  14834. name: "Preferred Size",
  14835. height: math.unit(5000, "km")
  14836. },
  14837. {
  14838. name: "True Size",
  14839. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(15, "feet"),
  14849. weight: math.unit(880, "kg"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/nightraver/front.svg",
  14853. extra: 2444 / 2160,
  14854. bottom: 0.027
  14855. }
  14856. },
  14857. back: {
  14858. height: math.unit(15, "feet"),
  14859. weight: math.unit(880, "kg"),
  14860. name: "Back",
  14861. image: {
  14862. source: "./media/characters/nightraver/back.svg",
  14863. extra: 2309 / 2180,
  14864. bottom: 0.005
  14865. }
  14866. },
  14867. sole: {
  14868. height: math.unit(2.878, "feet"),
  14869. name: "Sole",
  14870. image: {
  14871. source: "./media/characters/nightraver/sole.svg"
  14872. }
  14873. },
  14874. foot: {
  14875. height: math.unit(2.285, "feet"),
  14876. name: "Foot",
  14877. image: {
  14878. source: "./media/characters/nightraver/foot.svg"
  14879. }
  14880. },
  14881. maw: {
  14882. height: math.unit(2.67, "feet"),
  14883. name: "Maw",
  14884. image: {
  14885. source: "./media/characters/nightraver/maw.svg"
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Micro",
  14892. height: math.unit(1, "cm")
  14893. },
  14894. {
  14895. name: "Normal",
  14896. height: math.unit(15, "feet"),
  14897. default: true
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(300, "feet")
  14902. },
  14903. {
  14904. name: "Megamacro",
  14905. height: math.unit(300, "miles")
  14906. },
  14907. {
  14908. name: "Gigamacro",
  14909. height: math.unit(10000, "miles")
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14915. {
  14916. side: {
  14917. height: math.unit(2, "inches"),
  14918. weight: math.unit(5, "grams"),
  14919. name: "Side",
  14920. image: {
  14921. source: "./media/characters/arc/side.svg"
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Micro",
  14928. height: math.unit(2, "inches"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(1.1938, "meters"),
  14938. weight: math.unit(54, "kg"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/nebula-shahar/front.svg",
  14942. extra: 1642 / 1436,
  14943. bottom: 0.06
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Megamicro",
  14950. height: math.unit(0.3, "mm")
  14951. },
  14952. {
  14953. name: "Micro",
  14954. height: math.unit(3, "cm")
  14955. },
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(138, "cm"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Macro",
  14963. height: math.unit(30, "m")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(5.24, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/shayla/front.svg",
  14976. extra: 1512 / 1414,
  14977. bottom: 0.01
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(5.24, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/shayla/back.svg",
  14986. extra: 1512 / 1414
  14987. }
  14988. },
  14989. hand: {
  14990. height: math.unit(0.7781496062992126, "feet"),
  14991. name: "Hand",
  14992. image: {
  14993. source: "./media/characters/shayla/hand.svg"
  14994. }
  14995. },
  14996. foot: {
  14997. height: math.unit(1.4206036745406823, "feet"),
  14998. name: "Foot",
  14999. image: {
  15000. source: "./media/characters/shayla/foot.svg"
  15001. }
  15002. },
  15003. },
  15004. [
  15005. {
  15006. name: "Micro",
  15007. height: math.unit(0.32, "feet")
  15008. },
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5.24, "feet"),
  15012. default: true
  15013. },
  15014. {
  15015. name: "Macro",
  15016. height: math.unit(492.12, "feet")
  15017. },
  15018. {
  15019. name: "Megamacro",
  15020. height: math.unit(186.41, "miles")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(2.2, "m"),
  15029. weight: math.unit(120, "kg"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/pia-jr/front.svg",
  15033. extra: 1000 / 970,
  15034. bottom: 0.035
  15035. }
  15036. },
  15037. hand: {
  15038. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15039. name: "Hand",
  15040. image: {
  15041. source: "./media/characters/pia-jr/hand.svg"
  15042. }
  15043. },
  15044. paw: {
  15045. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15046. name: "Paw",
  15047. image: {
  15048. source: "./media/characters/pia-jr/paw.svg"
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Micro",
  15055. height: math.unit(1.2, "cm")
  15056. },
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(2.2, "m"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Macro",
  15064. height: math.unit(180, "m")
  15065. },
  15066. {
  15067. name: "Megamacro",
  15068. height: math.unit(420, "km")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(2, "m"),
  15077. weight: math.unit(115, "kg"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/pia-sr/front.svg",
  15081. extra: 760 / 730,
  15082. bottom: 0.015
  15083. }
  15084. },
  15085. back: {
  15086. height: math.unit(2, "m"),
  15087. weight: math.unit(115, "kg"),
  15088. name: "Back",
  15089. image: {
  15090. source: "./media/characters/pia-sr/back.svg",
  15091. extra: 760 / 730,
  15092. bottom: 0.01
  15093. }
  15094. },
  15095. hand: {
  15096. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15097. name: "Hand",
  15098. image: {
  15099. source: "./media/characters/pia-sr/hand.svg"
  15100. }
  15101. },
  15102. foot: {
  15103. height: math.unit(1.83, "feet"),
  15104. name: "Foot",
  15105. image: {
  15106. source: "./media/characters/pia-sr/foot.svg"
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Micro",
  15113. height: math.unit(88, "mm")
  15114. },
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(2, "m"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Macro",
  15122. height: math.unit(200, "m")
  15123. },
  15124. {
  15125. name: "Megamacro",
  15126. height: math.unit(420, "km")
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(8 + 2 / 12, "feet"),
  15135. weight: math.unit(300, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/kibibyte/front.svg",
  15139. extra: 2221 / 2098,
  15140. bottom: 0.04
  15141. }
  15142. },
  15143. },
  15144. [
  15145. {
  15146. name: "Normal",
  15147. height: math.unit(8 + 2 / 12, "feet"),
  15148. default: true
  15149. },
  15150. {
  15151. name: "Socialable Macro",
  15152. height: math.unit(50, "feet")
  15153. },
  15154. {
  15155. name: "Macro",
  15156. height: math.unit(300, "feet")
  15157. },
  15158. {
  15159. name: "Megamacro",
  15160. height: math.unit(500, "miles")
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(6, "feet"),
  15169. weight: math.unit(150, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/felix/front.svg",
  15173. extra: 762 / 722,
  15174. bottom: 0.02
  15175. }
  15176. },
  15177. frontClothed: {
  15178. height: math.unit(6, "feet"),
  15179. weight: math.unit(150, "lb"),
  15180. name: "Front (Clothed)",
  15181. image: {
  15182. source: "./media/characters/felix/front-clothed.svg",
  15183. extra: 762 / 722,
  15184. bottom: 0.02
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(6 + 8 / 12, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(2600, "feet")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(450, "miles")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6 + 1 / 12, "feet"),
  15209. weight: math.unit(250, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/tobo/front.svg",
  15213. extra: 608 / 586,
  15214. bottom: 0.023
  15215. }
  15216. },
  15217. back: {
  15218. height: math.unit(6 + 1 / 12, "feet"),
  15219. weight: math.unit(250, "lb"),
  15220. name: "Back",
  15221. image: {
  15222. source: "./media/characters/tobo/back.svg",
  15223. extra: 608 / 586
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Nano",
  15230. height: math.unit(2, "nm")
  15231. },
  15232. {
  15233. name: "Megamicro",
  15234. height: math.unit(0.1, "mm")
  15235. },
  15236. {
  15237. name: "Micro",
  15238. height: math.unit(1, "inch"),
  15239. default: true
  15240. },
  15241. {
  15242. name: "Human-sized",
  15243. height: math.unit(6 + 1 / 12, "feet")
  15244. },
  15245. {
  15246. name: "Macro",
  15247. height: math.unit(250, "feet")
  15248. },
  15249. {
  15250. name: "Megamacro",
  15251. height: math.unit(75, "miles")
  15252. },
  15253. {
  15254. name: "Texas-sized",
  15255. height: math.unit(750, "miles")
  15256. },
  15257. {
  15258. name: "Teramacro",
  15259. height: math.unit(50000, "miles")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(6, "feet"),
  15268. weight: math.unit(269, "lb"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/danny-kapowsky/front.svg",
  15272. extra: 766 / 736,
  15273. bottom: 0.044
  15274. }
  15275. },
  15276. back: {
  15277. height: math.unit(6, "feet"),
  15278. weight: math.unit(269, "lb"),
  15279. name: "Back",
  15280. image: {
  15281. source: "./media/characters/danny-kapowsky/back.svg",
  15282. extra: 797 / 760,
  15283. bottom: 0.025
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Macro",
  15290. height: math.unit(150, "feet"),
  15291. default: true
  15292. },
  15293. {
  15294. name: "Macro+",
  15295. height: math.unit(200, "feet")
  15296. },
  15297. {
  15298. name: "Macro++",
  15299. height: math.unit(300, "feet")
  15300. },
  15301. {
  15302. name: "Macro+++",
  15303. height: math.unit(400, "feet")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15309. {
  15310. side: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(170, "lb"),
  15313. name: "Side",
  15314. image: {
  15315. source: "./media/characters/finn/side.svg",
  15316. extra: 1953 / 1807,
  15317. bottom: 0.057
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Megamacro",
  15324. height: math.unit(14445, "feet"),
  15325. default: true
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(5 + 6 / 12, "feet"),
  15334. weight: math.unit(125, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/roy/front.svg",
  15338. extra: 1,
  15339. bottom: 0.11
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Micro",
  15346. height: math.unit(3, "inches"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(5 + 6 / 12, "feet")
  15352. },
  15353. {
  15354. name: "Lesser Macro",
  15355. height: math.unit(60, "feet")
  15356. },
  15357. {
  15358. name: "Greater Macro",
  15359. height: math.unit(120, "feet")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(100, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/aevsivs/front.svg",
  15372. extra: 1,
  15373. bottom: 0.03
  15374. }
  15375. },
  15376. back: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(100, "lb"),
  15379. name: "Back",
  15380. image: {
  15381. source: "./media/characters/aevsivs/back.svg"
  15382. }
  15383. },
  15384. },
  15385. [
  15386. {
  15387. name: "Micro",
  15388. height: math.unit(2, "inches"),
  15389. default: true
  15390. },
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5, "feet")
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(5 + 7 / 12, "feet"),
  15402. weight: math.unit(159, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/hildegard/front.svg",
  15406. extra: 289 / 269,
  15407. bottom: 7.63 / 297.8
  15408. }
  15409. },
  15410. back: {
  15411. height: math.unit(5 + 7 / 12, "feet"),
  15412. weight: math.unit(159, "lb"),
  15413. name: "Back",
  15414. image: {
  15415. source: "./media/characters/hildegard/back.svg",
  15416. extra: 280 / 260,
  15417. bottom: 2.3 / 282
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(5 + 7 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15431. {
  15432. bernard: {
  15433. height: math.unit(2 + 7 / 12, "feet"),
  15434. weight: math.unit(66, "lb"),
  15435. name: "Bernard",
  15436. rename: true,
  15437. image: {
  15438. source: "./media/characters/bernard-wilder/bernard.svg",
  15439. extra: 192 / 128,
  15440. bottom: 0.05
  15441. }
  15442. },
  15443. wilder: {
  15444. height: math.unit(5 + 8 / 12, "feet"),
  15445. weight: math.unit(143, "lb"),
  15446. name: "Wilder",
  15447. rename: true,
  15448. image: {
  15449. source: "./media/characters/bernard-wilder/wilder.svg",
  15450. extra: 361 / 312,
  15451. bottom: 0.02
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(2 + 7 / 12, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15465. {
  15466. anthro: {
  15467. height: math.unit(6 + 1 / 12, "feet"),
  15468. weight: math.unit(155, "lb"),
  15469. name: "Anthro",
  15470. image: {
  15471. source: "./media/characters/hearth/anthro.svg",
  15472. extra: 1178/1136,
  15473. bottom: 28/1206
  15474. }
  15475. },
  15476. feral: {
  15477. height: math.unit(3.78, "feet"),
  15478. weight: math.unit(35, "kg"),
  15479. name: "Feral",
  15480. image: {
  15481. source: "./media/characters/hearth/feral.svg",
  15482. extra: 153 / 135,
  15483. bottom: 0.03
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 1 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(182, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/ingrid/front.svg",
  15504. extra: 294 / 268,
  15505. bottom: 0.027
  15506. }
  15507. },
  15508. },
  15509. [
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(6, "feet"),
  15513. default: true
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15519. {
  15520. eevee: {
  15521. height: math.unit(2 + 10 / 12, "feet"),
  15522. weight: math.unit(86, "lb"),
  15523. name: "Malgam",
  15524. image: {
  15525. source: "./media/characters/malgam/eevee.svg",
  15526. extra: 952/784,
  15527. bottom: 38/990
  15528. }
  15529. },
  15530. sylveon: {
  15531. height: math.unit(4, "feet"),
  15532. weight: math.unit(101, "lb"),
  15533. name: "Future Malgam",
  15534. rename: true,
  15535. image: {
  15536. source: "./media/characters/malgam/sylveon.svg",
  15537. extra: 371 / 325,
  15538. bottom: 0.015
  15539. }
  15540. },
  15541. gigantamax: {
  15542. height: math.unit(50, "feet"),
  15543. name: "Gigantamax Malgam",
  15544. rename: true,
  15545. image: {
  15546. source: "./media/characters/malgam/gigantamax.svg"
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Normal",
  15553. height: math.unit(2 + 10 / 12, "feet"),
  15554. default: true
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(5 + 11 / 12, "feet"),
  15563. weight: math.unit(188, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/fleur/front.svg",
  15567. extra: 309 / 283,
  15568. bottom: 0.007
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(5 + 11 / 12, "feet"),
  15576. default: true
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(5 + 4 / 12, "feet"),
  15585. weight: math.unit(122, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/jude/front.svg",
  15589. extra: 288 / 273,
  15590. bottom: 0.03
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Normal",
  15597. height: math.unit(5 + 4 / 12, "feet"),
  15598. default: true
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(5 + 11 / 12, "feet"),
  15607. weight: math.unit(190, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/seara/front.svg",
  15611. extra: 1,
  15612. bottom: 0.05
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(5 + 11 / 12, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(16 + 5 / 12, "feet"),
  15629. weight: math.unit(524, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/caspian-lugia/front.svg",
  15633. extra: 1,
  15634. bottom: 0.04
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(16 + 5 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(5 + 7 / 12, "feet"),
  15651. weight: math.unit(170, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/mika/front.svg",
  15655. extra: 1,
  15656. bottom: 0.016
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(5 + 7 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6 + 2 / 12, "feet"),
  15673. weight: math.unit(268, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/sol/front.svg",
  15677. extra: 247 / 231,
  15678. bottom: 0.05
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(6 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15692. {
  15693. buizel: {
  15694. height: math.unit(2 + 5 / 12, "feet"),
  15695. weight: math.unit(87, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/umiko/buizel.svg",
  15699. extra: 172 / 157,
  15700. bottom: 0.01
  15701. },
  15702. form: "buizel",
  15703. default: true
  15704. },
  15705. floatzel: {
  15706. height: math.unit(5 + 9 / 12, "feet"),
  15707. weight: math.unit(250, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/umiko/floatzel.svg",
  15711. extra: 1076/1006,
  15712. bottom: 15/1091
  15713. },
  15714. form: "floatzel",
  15715. default: true
  15716. },
  15717. },
  15718. [
  15719. {
  15720. name: "Normal",
  15721. height: math.unit(2 + 5 / 12, "feet"),
  15722. form: "buizel",
  15723. default: true
  15724. },
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 9 / 12, "feet"),
  15728. form: "floatzel",
  15729. default: true
  15730. },
  15731. ],
  15732. {
  15733. "buizel": {
  15734. name: "Buizel"
  15735. },
  15736. "floatzel": {
  15737. name: "Floatzel",
  15738. default: true
  15739. }
  15740. }
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6 + 2 / 12, "feet"),
  15747. weight: math.unit(146, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/iliac/front.svg",
  15751. extra: 389 / 365,
  15752. bottom: 0.035
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(6 + 2 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(170, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/topaz/front.svg",
  15773. extra: 317 / 303,
  15774. bottom: 0.055
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(6, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(5 + 11 / 12, "feet"),
  15791. weight: math.unit(144, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/gabriel/front.svg",
  15795. extra: 285 / 262,
  15796. bottom: 0.004
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(5 + 11 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15810. {
  15811. side: {
  15812. height: math.unit(6 + 5 / 12, "feet"),
  15813. weight: math.unit(300, "lb"),
  15814. name: "Side",
  15815. image: {
  15816. source: "./media/characters/tempest-suicune/side.svg",
  15817. extra: 195 / 154,
  15818. bottom: 0.04
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(6 + 5 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(7 + 2 / 12, "feet"),
  15835. weight: math.unit(322, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/vulcan/front.svg",
  15839. extra: 154 / 147,
  15840. bottom: 0.04
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(7 + 2 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(5 + 10 / 12, "feet"),
  15857. weight: math.unit(264, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/gault/front.svg",
  15861. extra: 161 / 140,
  15862. bottom: 0.028
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(5 + 10 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15876. {
  15877. front: {
  15878. height: math.unit(6, "feet"),
  15879. weight: math.unit(150, "lb"),
  15880. name: "Front",
  15881. image: {
  15882. source: "./media/characters/shard/front.svg",
  15883. extra: 273 / 238,
  15884. bottom: 0.02
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(3 + 6 / 12, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(5 + 11 / 12, "feet"),
  15901. weight: math.unit(146, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/ashe/front.svg",
  15905. extra: 400 / 373,
  15906. bottom: 0.01
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(5 + 11 / 12, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(5 + 5 / 12, "feet"),
  15923. weight: math.unit(135, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/beatrix/front.svg",
  15927. extra: 392 / 379,
  15928. bottom: 0.01
  15929. }
  15930. },
  15931. },
  15932. [
  15933. {
  15934. name: "Normal",
  15935. height: math.unit(6, "feet"),
  15936. default: true
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6 + 2/12, "feet"),
  15945. weight: math.unit(135, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/ignatius/front.svg",
  15949. extra: 1380/1259,
  15950. bottom: 27/1407
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(6 + 2/12, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(6 + 2 / 12, "feet"),
  15967. weight: math.unit(138, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/mei-li/front.svg",
  15971. extra: 237 / 229,
  15972. bottom: 0.03
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(6 + 2 / 12, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(2 + 4 / 12, "feet"),
  15989. weight: math.unit(62, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/puru/front.svg",
  15993. extra: 206 / 149,
  15994. bottom: 0.06
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Normal",
  16001. height: math.unit(2 + 4 / 12, "feet"),
  16002. default: true
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16008. {
  16009. anthro: {
  16010. height: math.unit(5 + 8/12, "feet"),
  16011. weight: math.unit(200, "lb"),
  16012. energyNeed: math.unit(2000, "kcal"),
  16013. name: "Anthro",
  16014. image: {
  16015. source: "./media/characters/kee/anthro.svg",
  16016. extra: 3251/3184,
  16017. bottom: 250/3501
  16018. }
  16019. },
  16020. taur: {
  16021. height: math.unit(11, "feet"),
  16022. weight: math.unit(500, "lb"),
  16023. energyNeed: math.unit(5000, "kcal"),
  16024. name: "Taur",
  16025. image: {
  16026. source: "./media/characters/kee/taur.svg",
  16027. extra: 1362/1320,
  16028. bottom: 83/1445
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Normal",
  16035. height: math.unit(5 + 8/12, "feet"),
  16036. default: true
  16037. },
  16038. {
  16039. name: "Macro",
  16040. height: math.unit(35, "feet")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16046. {
  16047. anthro: {
  16048. height: math.unit(7, "feet"),
  16049. weight: math.unit(190, "lb"),
  16050. name: "Anthro",
  16051. image: {
  16052. source: "./media/characters/cobalt-dracha/anthro.svg",
  16053. extra: 231 / 225,
  16054. bottom: 0.04
  16055. }
  16056. },
  16057. feral: {
  16058. height: math.unit(9 + 7 / 12, "feet"),
  16059. weight: math.unit(294, "lb"),
  16060. name: "Feral",
  16061. image: {
  16062. source: "./media/characters/cobalt-dracha/feral.svg",
  16063. extra: 692 / 633,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(7, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16078. {
  16079. fallen: {
  16080. height: math.unit(11 + 8 / 12, "feet"),
  16081. weight: math.unit(485, "lb"),
  16082. name: "Java (Fallen)",
  16083. rename: true,
  16084. image: {
  16085. source: "./media/characters/java/fallen.svg",
  16086. extra: 226 / 208,
  16087. bottom: 0.005
  16088. }
  16089. },
  16090. godkin: {
  16091. height: math.unit(10 + 6 / 12, "feet"),
  16092. weight: math.unit(328, "lb"),
  16093. name: "Java (Godkin)",
  16094. rename: true,
  16095. image: {
  16096. source: "./media/characters/java/godkin.svg",
  16097. extra: 1104/1068,
  16098. bottom: 36/1140
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Normal",
  16105. height: math.unit(11 + 8 / 12, "feet"),
  16106. default: true
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(5 + 9 / 12, "feet"),
  16115. weight: math.unit(170, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/purna/front.svg",
  16119. extra: 239 / 229,
  16120. bottom: 0.01
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Normal",
  16127. height: math.unit(5 + 9 / 12, "feet"),
  16128. default: true
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(5 + 9 / 12, "feet"),
  16137. weight: math.unit(142, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/kuva/front.svg",
  16141. extra: 281 / 271,
  16142. bottom: 0.006
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(5 + 9 / 12, "feet"),
  16150. default: true
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16156. {
  16157. anthro: {
  16158. height: math.unit(9 + 2 / 12, "feet"),
  16159. weight: math.unit(270, "lb"),
  16160. name: "Anthro",
  16161. image: {
  16162. source: "./media/characters/embra/anthro.svg",
  16163. extra: 200 / 187,
  16164. bottom: 0.02
  16165. }
  16166. },
  16167. feral: {
  16168. height: math.unit(18 + 8 / 12, "feet"),
  16169. weight: math.unit(576, "lb"),
  16170. name: "Feral",
  16171. image: {
  16172. source: "./media/characters/embra/feral.svg",
  16173. extra: 152 / 137,
  16174. bottom: 0.037
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(9 + 2 / 12, "feet"),
  16182. default: true
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16188. {
  16189. anthro: {
  16190. height: math.unit(10 + 9 / 12, "feet"),
  16191. weight: math.unit(224, "lb"),
  16192. name: "Anthro",
  16193. image: {
  16194. source: "./media/characters/grottos/anthro.svg",
  16195. extra: 350 / 332,
  16196. bottom: 0.045
  16197. }
  16198. },
  16199. feral: {
  16200. height: math.unit(20 + 7 / 12, "feet"),
  16201. weight: math.unit(629, "lb"),
  16202. name: "Feral",
  16203. image: {
  16204. source: "./media/characters/grottos/feral.svg",
  16205. extra: 207 / 190,
  16206. bottom: 0.05
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(10 + 9 / 12, "feet"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16220. {
  16221. anthro: {
  16222. height: math.unit(9 + 6 / 12, "feet"),
  16223. weight: math.unit(298, "lb"),
  16224. name: "Anthro",
  16225. image: {
  16226. source: "./media/characters/frifna/anthro.svg",
  16227. extra: 282 / 269,
  16228. bottom: 0.015
  16229. }
  16230. },
  16231. feral: {
  16232. height: math.unit(16 + 2 / 12, "feet"),
  16233. weight: math.unit(624, "lb"),
  16234. name: "Feral",
  16235. image: {
  16236. source: "./media/characters/frifna/feral.svg"
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(9 + 6 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(6 + 2 / 12, "feet"),
  16253. weight: math.unit(168, "lb"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/elise/front.svg",
  16257. extra: 276 / 271
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Normal",
  16264. height: math.unit(6 + 2 / 12, "feet"),
  16265. default: true
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16271. {
  16272. front: {
  16273. height: math.unit(5 + 10 / 12, "feet"),
  16274. weight: math.unit(210, "lb"),
  16275. name: "Front",
  16276. image: {
  16277. source: "./media/characters/glade/front.svg",
  16278. extra: 258 / 247,
  16279. bottom: 0.008
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(5 + 10 / 12, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(5 + 10 / 12, "feet"),
  16296. weight: math.unit(129, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/rina/front.svg",
  16300. extra: 266 / 255,
  16301. bottom: 0.005
  16302. }
  16303. },
  16304. },
  16305. [
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(5 + 10 / 12, "feet"),
  16309. default: true
  16310. },
  16311. ]
  16312. ))
  16313. characterMakers.push(() => makeCharacter(
  16314. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16315. {
  16316. front: {
  16317. height: math.unit(6 + 1 / 12, "feet"),
  16318. weight: math.unit(192, "lb"),
  16319. name: "Front",
  16320. image: {
  16321. source: "./media/characters/veronica/front.svg",
  16322. extra: 319 / 309,
  16323. bottom: 0.005
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(6 + 1 / 12, "feet"),
  16331. default: true
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(9 + 3 / 12, "feet"),
  16340. weight: math.unit(1100, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/braxton/front.svg",
  16344. extra: 1057 / 984,
  16345. bottom: 0.05
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(9 + 3 / 12, "feet")
  16353. },
  16354. {
  16355. name: "Giant",
  16356. height: math.unit(300, "feet"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Macro",
  16361. height: math.unit(700, "feet")
  16362. },
  16363. {
  16364. name: "Megamacro",
  16365. height: math.unit(6000, "feet")
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(6 + 7 / 12, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/blue-feyonics/front.svg",
  16378. extra: 1403 / 1306,
  16379. bottom: 0.047
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(6 + 7 / 12, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(1.8, "meters"),
  16396. weight: math.unit(60, "kg"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/maxwell/front.svg",
  16400. extra: 2060 / 1873
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Micro",
  16407. height: math.unit(1, "mm")
  16408. },
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(1.8, "meter"),
  16412. default: true
  16413. },
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(30, "meters")
  16417. },
  16418. {
  16419. name: "Megamacro",
  16420. height: math.unit(10, "km")
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(6, "feet"),
  16429. weight: math.unit(150, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/jack/front.svg",
  16433. extra: 1754 / 1640,
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(80000, "feet"),
  16442. default: true
  16443. },
  16444. {
  16445. name: "Max size",
  16446. height: math.unit(10, "lightyears")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16452. {
  16453. urban: {
  16454. height: math.unit(5, "feet"),
  16455. weight: math.unit(240, "lb"),
  16456. name: "Urban",
  16457. image: {
  16458. source: "./media/characters/cafat/urban.svg",
  16459. extra: 1223/1126,
  16460. bottom: 205/1428
  16461. }
  16462. },
  16463. summer: {
  16464. height: math.unit(5, "feet"),
  16465. weight: math.unit(240, "lb"),
  16466. name: "Summer",
  16467. image: {
  16468. source: "./media/characters/cafat/summer.svg",
  16469. extra: 1223/1126,
  16470. bottom: 205/1428
  16471. }
  16472. },
  16473. winter: {
  16474. height: math.unit(5, "feet"),
  16475. weight: math.unit(240, "lb"),
  16476. name: "Winter",
  16477. image: {
  16478. source: "./media/characters/cafat/winter.svg",
  16479. extra: 1223/1126,
  16480. bottom: 205/1428
  16481. }
  16482. },
  16483. lingerie: {
  16484. height: math.unit(5, "feet"),
  16485. weight: math.unit(240, "lb"),
  16486. name: "Lingerie",
  16487. image: {
  16488. source: "./media/characters/cafat/lingerie.svg",
  16489. extra: 1223/1126,
  16490. bottom: 205/1428
  16491. }
  16492. },
  16493. upright: {
  16494. height: math.unit(6.3, "feet"),
  16495. weight: math.unit(240, "lb"),
  16496. name: "Upright",
  16497. image: {
  16498. source: "./media/characters/cafat/upright.svg",
  16499. bottom: 0.01
  16500. }
  16501. },
  16502. uprightFull: {
  16503. height: math.unit(6.3, "feet"),
  16504. weight: math.unit(240, "lb"),
  16505. name: "Upright (Full)",
  16506. image: {
  16507. source: "./media/characters/cafat/upright-full.svg",
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Small",
  16515. height: math.unit(5, "feet"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Large",
  16520. height: math.unit(13, "feet")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16526. {
  16527. front: {
  16528. height: math.unit(6, "feet"),
  16529. weight: math.unit(150, "lb"),
  16530. name: "Front",
  16531. image: {
  16532. source: "./media/characters/verin-raharra/front.svg",
  16533. extra: 5019 / 4835,
  16534. bottom: 0.023
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(7 + 5 / 12, "feet"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Upsized",
  16546. height: math.unit(20, "feet")
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(7, "feet"),
  16555. weight: math.unit(230, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/nakata/front.svg",
  16559. extra: 1.005,
  16560. bottom: 0.01
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(7, "feet"),
  16568. default: true
  16569. },
  16570. {
  16571. name: "Big",
  16572. height: math.unit(14, "feet")
  16573. },
  16574. {
  16575. name: "Macro",
  16576. height: math.unit(400, "feet")
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(4.91, "feet"),
  16585. weight: math.unit(100, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/lily/front.svg",
  16589. extra: 1585 / 1415,
  16590. bottom: 0.02
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(4.91, "feet"),
  16598. default: true
  16599. },
  16600. ]
  16601. ))
  16602. characterMakers.push(() => makeCharacter(
  16603. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16604. {
  16605. laying: {
  16606. height: math.unit(4 + 4 / 12, "feet"),
  16607. weight: math.unit(600, "lb"),
  16608. name: "Laying",
  16609. image: {
  16610. source: "./media/characters/sheila/laying.svg",
  16611. extra: 1333 / 1265,
  16612. bottom: 0.16
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(4 + 4 / 12, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(6, "feet"),
  16629. weight: math.unit(190, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/sax/front.svg",
  16633. extra: 1187 / 973,
  16634. bottom: 0.042
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Micro",
  16641. height: math.unit(4, "inches"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(6, "feet"),
  16651. weight: math.unit(150, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/pandora/front.svg",
  16655. extra: 2720 / 2556,
  16656. bottom: 0.015
  16657. }
  16658. },
  16659. back: {
  16660. height: math.unit(6, "feet"),
  16661. weight: math.unit(150, "lb"),
  16662. name: "Back",
  16663. image: {
  16664. source: "./media/characters/pandora/back.svg",
  16665. extra: 2720 / 2556,
  16666. bottom: 0.01
  16667. }
  16668. },
  16669. beans: {
  16670. height: math.unit(6 / 8, "feet"),
  16671. name: "Beans",
  16672. image: {
  16673. source: "./media/characters/pandora/beans.svg"
  16674. }
  16675. },
  16676. collar: {
  16677. height: math.unit(0.31, "feet"),
  16678. name: "Collar",
  16679. image: {
  16680. source: "./media/characters/pandora/collar.svg"
  16681. }
  16682. },
  16683. skirt: {
  16684. height: math.unit(6, "feet"),
  16685. weight: math.unit(150, "lb"),
  16686. name: "Skirt",
  16687. image: {
  16688. source: "./media/characters/pandora/skirt.svg",
  16689. extra: 1622 / 1525,
  16690. bottom: 0.015
  16691. }
  16692. },
  16693. hoodie: {
  16694. height: math.unit(6, "feet"),
  16695. weight: math.unit(150, "lb"),
  16696. name: "Hoodie",
  16697. image: {
  16698. source: "./media/characters/pandora/hoodie.svg",
  16699. extra: 1622 / 1525,
  16700. bottom: 0.015
  16701. }
  16702. },
  16703. casual: {
  16704. height: math.unit(6, "feet"),
  16705. weight: math.unit(150, "lb"),
  16706. name: "Casual",
  16707. image: {
  16708. source: "./media/characters/pandora/casual.svg",
  16709. extra: 1622 / 1525,
  16710. bottom: 0.015
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(6, "feet")
  16718. },
  16719. {
  16720. name: "Big Steppy",
  16721. height: math.unit(1, "km"),
  16722. default: true
  16723. },
  16724. {
  16725. name: "Galactic Steppy",
  16726. height: math.unit(2, "gigameters")
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16732. {
  16733. side: {
  16734. height: math.unit(10, "feet"),
  16735. weight: math.unit(800, "kg"),
  16736. name: "Side",
  16737. image: {
  16738. source: "./media/characters/venio-darcony/side.svg",
  16739. extra: 1373 / 1003,
  16740. bottom: 0.037
  16741. }
  16742. },
  16743. front: {
  16744. height: math.unit(19, "feet"),
  16745. weight: math.unit(800, "kg"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/venio-darcony/front.svg"
  16749. }
  16750. },
  16751. back: {
  16752. height: math.unit(19, "feet"),
  16753. weight: math.unit(800, "kg"),
  16754. name: "Back",
  16755. image: {
  16756. source: "./media/characters/venio-darcony/back.svg"
  16757. }
  16758. },
  16759. sideNsfw: {
  16760. height: math.unit(10, "feet"),
  16761. weight: math.unit(800, "kg"),
  16762. name: "Side (NSFW)",
  16763. image: {
  16764. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16765. extra: 1373 / 1003,
  16766. bottom: 0.037
  16767. }
  16768. },
  16769. frontNsfw: {
  16770. height: math.unit(19, "feet"),
  16771. weight: math.unit(800, "kg"),
  16772. name: "Front (NSFW)",
  16773. image: {
  16774. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16775. }
  16776. },
  16777. backNsfw: {
  16778. height: math.unit(19, "feet"),
  16779. weight: math.unit(800, "kg"),
  16780. name: "Back (NSFW)",
  16781. image: {
  16782. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16783. }
  16784. },
  16785. sideArmored: {
  16786. height: math.unit(10, "feet"),
  16787. weight: math.unit(800, "kg"),
  16788. name: "Side (Armored)",
  16789. image: {
  16790. source: "./media/characters/venio-darcony/side-armored.svg",
  16791. extra: 1373 / 1003,
  16792. bottom: 0.037
  16793. }
  16794. },
  16795. frontArmored: {
  16796. height: math.unit(19, "feet"),
  16797. weight: math.unit(900, "kg"),
  16798. name: "Front (Armored)",
  16799. image: {
  16800. source: "./media/characters/venio-darcony/front-armored.svg"
  16801. }
  16802. },
  16803. backArmored: {
  16804. height: math.unit(19, "feet"),
  16805. weight: math.unit(900, "kg"),
  16806. name: "Back (Armored)",
  16807. image: {
  16808. source: "./media/characters/venio-darcony/back-armored.svg"
  16809. }
  16810. },
  16811. sword: {
  16812. height: math.unit(10, "feet"),
  16813. weight: math.unit(50, "lb"),
  16814. name: "Sword",
  16815. image: {
  16816. source: "./media/characters/venio-darcony/sword.svg"
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(10, "feet")
  16824. },
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(130, "feet"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macro+",
  16832. height: math.unit(240, "feet")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(6, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/veski/front.svg",
  16845. extra: 1299 / 1225,
  16846. bottom: 0.04
  16847. }
  16848. },
  16849. back: {
  16850. height: math.unit(6, "feet"),
  16851. weight: math.unit(150, "lb"),
  16852. name: "Back",
  16853. image: {
  16854. source: "./media/characters/veski/back.svg",
  16855. extra: 1299 / 1225,
  16856. bottom: 0.008
  16857. }
  16858. },
  16859. maw: {
  16860. height: math.unit(1.5 * 1.21, "feet"),
  16861. name: "Maw",
  16862. image: {
  16863. source: "./media/characters/veski/maw.svg"
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Macro",
  16870. height: math.unit(2, "km"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(5 + 7 / 12, "feet"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/isabelle/front.svg",
  16883. extra: 2130 / 1976,
  16884. bottom: 0.05
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Supermicro",
  16891. height: math.unit(10, "micrometers")
  16892. },
  16893. {
  16894. name: "Micro",
  16895. height: math.unit(1, "inch")
  16896. },
  16897. {
  16898. name: "Tiny",
  16899. height: math.unit(5, "inches")
  16900. },
  16901. {
  16902. name: "Standard",
  16903. height: math.unit(5 + 7 / 12, "inches")
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(80, "meters"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Megamacro",
  16912. height: math.unit(250, "meters")
  16913. },
  16914. {
  16915. name: "Gigamacro",
  16916. height: math.unit(5, "km")
  16917. },
  16918. {
  16919. name: "Cosmic",
  16920. height: math.unit(2.5e6, "miles")
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(6, "feet"),
  16929. weight: math.unit(150, "lb"),
  16930. name: "Front",
  16931. image: {
  16932. source: "./media/characters/hanzo/front.svg",
  16933. extra: 374 / 344,
  16934. bottom: 0.02
  16935. }
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(8, "feet"),
  16942. default: true
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(7, "feet"),
  16951. weight: math.unit(130, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/anna/front.svg",
  16955. extra: 169 / 145,
  16956. bottom: 0.06
  16957. }
  16958. },
  16959. full: {
  16960. height: math.unit(4.96, "feet"),
  16961. weight: math.unit(220, "lb"),
  16962. name: "Full",
  16963. image: {
  16964. source: "./media/characters/anna/full.svg",
  16965. extra: 138 / 114,
  16966. bottom: 0.15
  16967. }
  16968. },
  16969. tongue: {
  16970. height: math.unit(2.53, "feet"),
  16971. name: "Tongue",
  16972. image: {
  16973. source: "./media/characters/anna/tongue.svg"
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(7, "feet"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16987. {
  16988. front: {
  16989. height: math.unit(7, "feet"),
  16990. weight: math.unit(150, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/ian-corvid/front.svg",
  16994. extra: 150 / 142,
  16995. bottom: 0.02
  16996. }
  16997. },
  16998. back: {
  16999. height: math.unit(7, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Back",
  17002. image: {
  17003. source: "./media/characters/ian-corvid/back.svg",
  17004. extra: 150 / 143,
  17005. bottom: 0.01
  17006. }
  17007. },
  17008. stomping: {
  17009. height: math.unit(7, "feet"),
  17010. weight: math.unit(150, "lb"),
  17011. name: "Stomping",
  17012. image: {
  17013. source: "./media/characters/ian-corvid/stomping.svg",
  17014. extra: 76 / 72
  17015. }
  17016. },
  17017. sitting: {
  17018. height: math.unit(7 / 1.8, "feet"),
  17019. weight: math.unit(150, "lb"),
  17020. name: "Sitting",
  17021. image: {
  17022. source: "./media/characters/ian-corvid/sitting.svg",
  17023. extra: 1400 / 1269,
  17024. bottom: 0.15
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Tiny Microw",
  17031. height: math.unit(1, "inch")
  17032. },
  17033. {
  17034. name: "Microw",
  17035. height: math.unit(6, "inches")
  17036. },
  17037. {
  17038. name: "Crow",
  17039. height: math.unit(7 + 1 / 12, "feet"),
  17040. default: true
  17041. },
  17042. {
  17043. name: "Macrow",
  17044. height: math.unit(176, "feet")
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(5 + 7 / 12, "feet"),
  17053. weight: math.unit(147, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/natalie-kellon/front.svg",
  17057. extra: 1214 / 1141,
  17058. bottom: 0.02
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Micro",
  17065. height: math.unit(1 / 16, "inch")
  17066. },
  17067. {
  17068. name: "Tiny",
  17069. height: math.unit(4, "inches")
  17070. },
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(5 + 7 / 12, "feet"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Amazon",
  17078. height: math.unit(12, "feet")
  17079. },
  17080. {
  17081. name: "Giantess",
  17082. height: math.unit(160, "meters")
  17083. },
  17084. {
  17085. name: "Titaness",
  17086. height: math.unit(800, "meters")
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(150, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/alluria/front.svg",
  17099. extra: 806 / 738,
  17100. bottom: 0.01
  17101. }
  17102. },
  17103. side: {
  17104. height: math.unit(6, "feet"),
  17105. weight: math.unit(150, "lb"),
  17106. name: "Side",
  17107. image: {
  17108. source: "./media/characters/alluria/side.svg",
  17109. extra: 800 / 750,
  17110. }
  17111. },
  17112. back: {
  17113. height: math.unit(6, "feet"),
  17114. weight: math.unit(150, "lb"),
  17115. name: "Back",
  17116. image: {
  17117. source: "./media/characters/alluria/back.svg",
  17118. extra: 806 / 738,
  17119. }
  17120. },
  17121. frontMaid: {
  17122. height: math.unit(6, "feet"),
  17123. weight: math.unit(150, "lb"),
  17124. name: "Front (Maid)",
  17125. image: {
  17126. source: "./media/characters/alluria/front-maid.svg",
  17127. extra: 806 / 738,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. sideMaid: {
  17132. height: math.unit(6, "feet"),
  17133. weight: math.unit(150, "lb"),
  17134. name: "Side (Maid)",
  17135. image: {
  17136. source: "./media/characters/alluria/side-maid.svg",
  17137. extra: 800 / 750,
  17138. bottom: 0.005
  17139. }
  17140. },
  17141. backMaid: {
  17142. height: math.unit(6, "feet"),
  17143. weight: math.unit(150, "lb"),
  17144. name: "Back (Maid)",
  17145. image: {
  17146. source: "./media/characters/alluria/back-maid.svg",
  17147. extra: 806 / 738,
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Micro",
  17154. height: math.unit(6, "inches"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6, "feet"),
  17164. weight: math.unit(150, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/kyle/front.svg",
  17168. extra: 1069 / 962,
  17169. bottom: 77.228 / 1727.45
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Macro",
  17176. height: math.unit(150, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(300, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/duncan/front.svg",
  17190. extra: 1650 / 1482,
  17191. bottom: 0.05
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Macro",
  17198. height: math.unit(100, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(5 + 4 / 12, "feet"),
  17208. weight: math.unit(220, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/memory/front.svg",
  17212. extra: 3641 / 3545,
  17213. bottom: 0.03
  17214. }
  17215. },
  17216. back: {
  17217. height: math.unit(5 + 4 / 12, "feet"),
  17218. weight: math.unit(220, "lb"),
  17219. name: "Back",
  17220. image: {
  17221. source: "./media/characters/memory/back.svg",
  17222. extra: 3641 / 3545,
  17223. bottom: 0.025
  17224. }
  17225. },
  17226. frontSkirt: {
  17227. height: math.unit(5 + 4 / 12, "feet"),
  17228. weight: math.unit(220, "lb"),
  17229. name: "Front (Skirt)",
  17230. image: {
  17231. source: "./media/characters/memory/front-skirt.svg",
  17232. extra: 3641 / 3545,
  17233. bottom: 0.03
  17234. }
  17235. },
  17236. frontDress: {
  17237. height: math.unit(5 + 4 / 12, "feet"),
  17238. weight: math.unit(220, "lb"),
  17239. name: "Front (Dress)",
  17240. image: {
  17241. source: "./media/characters/memory/front-dress.svg",
  17242. extra: 3641 / 3545,
  17243. bottom: 0.03
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Micro",
  17250. height: math.unit(6, "inches"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(5 + 4 / 12, "feet")
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(4 + 11 / 12, "feet"),
  17264. weight: math.unit(100, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/luno/front.svg",
  17268. extra: 1535 / 1487,
  17269. bottom: 0.03
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Micro",
  17276. height: math.unit(3, "inches")
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(4 + 11 / 12, "feet"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(300, "feet")
  17286. },
  17287. {
  17288. name: "Megamacro",
  17289. height: math.unit(700, "miles")
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(6 + 2 / 12, "feet"),
  17298. weight: math.unit(170, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/jamesy/front.svg",
  17302. extra: 440 / 382,
  17303. bottom: 0.005
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Micro",
  17310. height: math.unit(3, "inches")
  17311. },
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(6 + 2 / 12, "feet"),
  17315. default: true
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(300, "feet")
  17320. },
  17321. {
  17322. name: "Megamacro",
  17323. height: math.unit(700, "miles")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(6, "feet"),
  17332. weight: math.unit(160, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/mark/front.svg",
  17336. extra: 3300 / 3100,
  17337. bottom: 136.42 / 3440.47
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Macro",
  17344. height: math.unit(120, "meters")
  17345. },
  17346. {
  17347. name: "Bigger Macro",
  17348. height: math.unit(350, "meters")
  17349. },
  17350. {
  17351. name: "Megamacro",
  17352. height: math.unit(8, "km"),
  17353. default: true
  17354. },
  17355. {
  17356. name: "Continental",
  17357. height: math.unit(4550, "km")
  17358. },
  17359. {
  17360. name: "Planetary",
  17361. height: math.unit(65000, "km")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(6, "feet"),
  17370. weight: math.unit(400, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/mac/front.svg",
  17374. extra: 1048 / 987.7,
  17375. bottom: 60 / 1107.6,
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Macro",
  17382. height: math.unit(500, "feet"),
  17383. default: true
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(5 + 2 / 12, "feet"),
  17392. weight: math.unit(190, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/bari/front.svg",
  17396. extra: 3156 / 2880,
  17397. bottom: 0.03
  17398. }
  17399. },
  17400. back: {
  17401. height: math.unit(5 + 2 / 12, "feet"),
  17402. weight: math.unit(190, "lb"),
  17403. name: "Back",
  17404. image: {
  17405. source: "./media/characters/bari/back.svg",
  17406. extra: 3260 / 2834,
  17407. bottom: 0.025
  17408. }
  17409. },
  17410. frontPlush: {
  17411. height: math.unit(5 + 2 / 12, "feet"),
  17412. weight: math.unit(190, "lb"),
  17413. name: "Front (Plush)",
  17414. image: {
  17415. source: "./media/characters/bari/front-plush.svg",
  17416. extra: 1112 / 1061,
  17417. bottom: 0.002
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Micro",
  17424. height: math.unit(3, "inches")
  17425. },
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 2 / 12, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(20, "feet")
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(6 + 1 / 12, "feet"),
  17442. weight: math.unit(275, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/hunter-misha-raven/front.svg"
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Mortal",
  17452. height: math.unit(6 + 1 / 12, "feet")
  17453. },
  17454. {
  17455. name: "Divine",
  17456. height: math.unit(1.12134e34, "parsecs"),
  17457. default: true
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6 + 3 / 12, "feet"),
  17466. weight: math.unit(220, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/max-calore/front.svg",
  17470. extra: 1700 / 1648,
  17471. bottom: 0.01
  17472. }
  17473. },
  17474. back: {
  17475. height: math.unit(6 + 3 / 12, "feet"),
  17476. weight: math.unit(220, "lb"),
  17477. name: "Back",
  17478. image: {
  17479. source: "./media/characters/max-calore/back.svg",
  17480. extra: 1700 / 1648,
  17481. bottom: 0.01
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(6 + 3 / 12, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17495. {
  17496. side: {
  17497. height: math.unit(2 + 8 / 12, "feet"),
  17498. weight: math.unit(99, "lb"),
  17499. name: "Side",
  17500. image: {
  17501. source: "./media/characters/aspen/side.svg",
  17502. extra: 152 / 138,
  17503. bottom: 0.032
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(2 + 8 / 12, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17517. {
  17518. side: {
  17519. height: math.unit(3 + 2 / 12, "feet"),
  17520. weight: math.unit(224, "lb"),
  17521. name: "Side",
  17522. image: {
  17523. source: "./media/characters/sheila-feral-wolf/side.svg",
  17524. extra: 179 / 166,
  17525. bottom: 0.03
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(3 + 2 / 12, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17539. {
  17540. side: {
  17541. height: math.unit(1 + 9 / 12, "feet"),
  17542. weight: math.unit(38, "lb"),
  17543. name: "Side",
  17544. image: {
  17545. source: "./media/characters/michelle/side.svg",
  17546. extra: 147 / 136.7,
  17547. bottom: 0.03
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(1 + 9 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(1.54, "feet"),
  17564. weight: math.unit(50, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/nino/front.svg"
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(1.54, "feet"),
  17575. default: true
  17576. },
  17577. ]
  17578. ))
  17579. characterMakers.push(() => makeCharacter(
  17580. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17581. {
  17582. front: {
  17583. height: math.unit(1.49, "feet"),
  17584. weight: math.unit(45, "lb"),
  17585. name: "Front",
  17586. image: {
  17587. source: "./media/characters/viola/front.svg"
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(1.49, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(6 + 5 / 12, "feet"),
  17604. weight: math.unit(580, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/atlas/front.svg",
  17608. extra: 298.5 / 290,
  17609. bottom: 0.015
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(6 + 5 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17623. {
  17624. side: {
  17625. height: math.unit(15.6, "inches"),
  17626. weight: math.unit(10, "lb"),
  17627. name: "Side",
  17628. image: {
  17629. source: "./media/characters/davy/side.svg",
  17630. extra: 200 / 170,
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(15.6, "inches"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17645. {
  17646. side: {
  17647. height: math.unit(4 + 8 / 12, "feet"),
  17648. weight: math.unit(166, "lb"),
  17649. name: "Side",
  17650. image: {
  17651. source: "./media/characters/fiona/side.svg",
  17652. extra: 232 / 220,
  17653. bottom: 0.03
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(4 + 8 / 12, "feet"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17667. {
  17668. front: {
  17669. height: math.unit(26, "inches"),
  17670. weight: math.unit(35, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/lyla/front.svg",
  17674. bottom: 0.1
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Normal",
  17681. height: math.unit(3, "feet"),
  17682. default: true
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17688. {
  17689. side: {
  17690. height: math.unit(1.8, "feet"),
  17691. weight: math.unit(44, "lb"),
  17692. name: "Side",
  17693. image: {
  17694. source: "./media/characters/perseus/side.svg",
  17695. bottom: 0.21
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(1.8, "feet"),
  17703. default: true
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17709. {
  17710. side: {
  17711. height: math.unit(4 + 2 / 12, "feet"),
  17712. weight: math.unit(20, "lb"),
  17713. name: "Side",
  17714. image: {
  17715. source: "./media/characters/remus/side.svg"
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Normal",
  17722. height: math.unit(4 + 2 / 12, "feet"),
  17723. default: true
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17729. {
  17730. front: {
  17731. height: math.unit(4 + 11 / 12, "feet"),
  17732. weight: math.unit(114, "lb"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/raf/front.svg",
  17736. extra: 1504/1339,
  17737. bottom: 26/1530
  17738. }
  17739. },
  17740. side: {
  17741. height: math.unit(4 + 11 / 12, "feet"),
  17742. weight: math.unit(114, "lb"),
  17743. name: "Side",
  17744. image: {
  17745. source: "./media/characters/raf/side.svg",
  17746. extra: 1466/1316,
  17747. bottom: 29/1495
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Micro",
  17754. height: math.unit(2, "inches")
  17755. },
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(4 + 11 / 12, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro",
  17763. height: math.unit(70, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(1.5, "meters"),
  17772. weight: math.unit(68, "kg"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/liam-einarr/front.svg",
  17776. extra: 2822 / 2666
  17777. }
  17778. },
  17779. back: {
  17780. height: math.unit(1.5, "meters"),
  17781. weight: math.unit(68, "kg"),
  17782. name: "Back",
  17783. image: {
  17784. source: "./media/characters/liam-einarr/back.svg",
  17785. extra: 2822 / 2666,
  17786. bottom: 0.015
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(1.5, "meters"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Macro",
  17798. height: math.unit(150, "meters")
  17799. },
  17800. {
  17801. name: "Megamacro",
  17802. height: math.unit(35, "km")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(6, "feet"),
  17811. weight: math.unit(75, "kg"),
  17812. name: "Front",
  17813. image: {
  17814. source: "./media/characters/linda/front.svg",
  17815. extra: 930 / 874,
  17816. bottom: 0.004
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(6, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(6 + 8 / 12, "feet"),
  17833. weight: math.unit(220, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/caylex/front.svg",
  17837. extra: 821 / 772,
  17838. bottom: 0.07
  17839. }
  17840. },
  17841. back: {
  17842. height: math.unit(6 + 8 / 12, "feet"),
  17843. weight: math.unit(220, "lb"),
  17844. name: "Back",
  17845. image: {
  17846. source: "./media/characters/caylex/back.svg",
  17847. extra: 821 / 772,
  17848. bottom: 0.022
  17849. }
  17850. },
  17851. hand: {
  17852. height: math.unit(1.25, "feet"),
  17853. name: "Hand",
  17854. image: {
  17855. source: "./media/characters/caylex/hand.svg"
  17856. }
  17857. },
  17858. foot: {
  17859. height: math.unit(1.6, "feet"),
  17860. name: "Foot",
  17861. image: {
  17862. source: "./media/characters/caylex/foot.svg"
  17863. }
  17864. },
  17865. armored: {
  17866. height: math.unit(6 + 8 / 12, "feet"),
  17867. weight: math.unit(250, "lb"),
  17868. name: "Armored",
  17869. image: {
  17870. source: "./media/characters/caylex/armored.svg",
  17871. extra: 1420 / 1310,
  17872. bottom: 0.045
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 8 / 12, "feet"),
  17880. default: true
  17881. },
  17882. {
  17883. name: "Normal+",
  17884. height: math.unit(12, "feet")
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(7 + 6 / 12, "feet"),
  17893. weight: math.unit(288, "lb"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/alana/front.svg",
  17897. extra: 679 / 653,
  17898. bottom: 22.5 / 701
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(7 + 6 / 12, "feet")
  17906. },
  17907. {
  17908. name: "Large",
  17909. height: math.unit(50, "feet")
  17910. },
  17911. {
  17912. name: "Macro",
  17913. height: math.unit(100, "feet"),
  17914. default: true
  17915. },
  17916. {
  17917. name: "Macro+",
  17918. height: math.unit(200, "feet")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6 + 1 / 12, "feet"),
  17927. weight: math.unit(210, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/hasani/front.svg",
  17931. extra: 244 / 232,
  17932. bottom: 0.01
  17933. }
  17934. },
  17935. back: {
  17936. height: math.unit(6 + 1 / 12, "feet"),
  17937. weight: math.unit(210, "lb"),
  17938. name: "Back",
  17939. image: {
  17940. source: "./media/characters/hasani/back.svg",
  17941. extra: 244 / 232,
  17942. bottom: 0.01
  17943. }
  17944. },
  17945. },
  17946. [
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(6 + 1 / 12, "feet")
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(175, "feet"),
  17954. default: true
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(1.82, "meters"),
  17963. weight: math.unit(140, "lb"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/nita/front.svg",
  17967. extra: 2473 / 2363,
  17968. bottom: 0.01
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(1.82, "m")
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(300, "m")
  17980. },
  17981. {
  17982. name: "Mistake Canon",
  17983. height: math.unit(0.5, "miles"),
  17984. default: true
  17985. },
  17986. {
  17987. name: "Big Mistake",
  17988. height: math.unit(13, "miles")
  17989. },
  17990. {
  17991. name: "Playing God",
  17992. height: math.unit(2450, "miles")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(4, "feet"),
  18001. weight: math.unit(120, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/shiriko/front.svg",
  18005. extra: 970/934,
  18006. bottom: 5/975
  18007. }
  18008. },
  18009. },
  18010. [
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(4, "feet"),
  18014. default: true
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(6, "feet"),
  18023. name: "front",
  18024. image: {
  18025. source: "./media/characters/deja/front.svg",
  18026. extra: 926 / 840,
  18027. bottom: 0.07
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Planck Length",
  18034. height: math.unit(1.6e-35, "meters")
  18035. },
  18036. {
  18037. name: "Normal",
  18038. height: math.unit(30.48, "meters"),
  18039. default: true
  18040. },
  18041. {
  18042. name: "Universal",
  18043. height: math.unit(8.8e26, "meters")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18049. {
  18050. side: {
  18051. height: math.unit(8, "feet"),
  18052. weight: math.unit(6300, "lb"),
  18053. name: "Side",
  18054. image: {
  18055. source: "./media/characters/anima/side.svg",
  18056. bottom: 0.035
  18057. }
  18058. },
  18059. },
  18060. [
  18061. {
  18062. name: "Normal",
  18063. height: math.unit(8, "feet"),
  18064. default: true
  18065. },
  18066. ]
  18067. ))
  18068. characterMakers.push(() => makeCharacter(
  18069. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18070. {
  18071. front: {
  18072. height: math.unit(8, "feet"),
  18073. weight: math.unit(350, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/bianca/front.svg",
  18077. extra: 234 / 225,
  18078. bottom: 0.03
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Normal",
  18085. height: math.unit(8, "feet"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/adinia/front.svg",
  18099. extra: 1845 / 1672,
  18100. bottom: 0.02
  18101. }
  18102. },
  18103. back: {
  18104. height: math.unit(6, "feet"),
  18105. weight: math.unit(150, "lb"),
  18106. name: "Back",
  18107. image: {
  18108. source: "./media/characters/adinia/back.svg",
  18109. extra: 1845 / 1672,
  18110. bottom: 0.002
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Normal",
  18117. height: math.unit(11 + 5 / 12, "feet"),
  18118. default: true
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(3, "meters"),
  18127. weight: math.unit(200, "kg"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/lykasa/front.svg",
  18131. extra: 1076 / 976,
  18132. bottom: 0.06
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(3, "meters")
  18140. },
  18141. {
  18142. name: "Kaiju",
  18143. height: math.unit(120, "meters"),
  18144. default: true
  18145. },
  18146. {
  18147. name: "Mega Kaiju",
  18148. height: math.unit(240, "km")
  18149. },
  18150. {
  18151. name: "Giga Kaiju",
  18152. height: math.unit(400, "megameters")
  18153. },
  18154. {
  18155. name: "Tera Kaiju",
  18156. height: math.unit(800, "gigameters")
  18157. },
  18158. {
  18159. name: "Kaiju Dragon Goddess",
  18160. height: math.unit(26, "zettaparsecs")
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18166. {
  18167. side: {
  18168. height: math.unit(283 / 124 * 6, "feet"),
  18169. weight: math.unit(35000, "lb"),
  18170. name: "Side",
  18171. image: {
  18172. source: "./media/characters/malfaren/side.svg",
  18173. extra: 1310/529,
  18174. bottom: 24/1334
  18175. }
  18176. },
  18177. front: {
  18178. height: math.unit(22.36, "feet"),
  18179. weight: math.unit(35000, "lb"),
  18180. name: "Front",
  18181. image: {
  18182. source: "./media/characters/malfaren/front.svg",
  18183. extra: 1237/1115,
  18184. bottom: 32/1269
  18185. }
  18186. },
  18187. maw: {
  18188. height: math.unit(6.9, "feet"),
  18189. name: "Maw",
  18190. image: {
  18191. source: "./media/characters/malfaren/maw.svg"
  18192. }
  18193. },
  18194. dick: {
  18195. height: math.unit(6.19, "feet"),
  18196. name: "Dick",
  18197. image: {
  18198. source: "./media/characters/malfaren/dick.svg"
  18199. }
  18200. },
  18201. eye: {
  18202. height: math.unit(0.69, "feet"),
  18203. name: "Eye",
  18204. image: {
  18205. source: "./media/characters/malfaren/eye.svg"
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Big",
  18212. height: math.unit(283 / 162 * 6, "feet"),
  18213. },
  18214. {
  18215. name: "Bigger",
  18216. height: math.unit(283 / 124 * 6, "feet")
  18217. },
  18218. {
  18219. name: "Massive",
  18220. height: math.unit(283 / 92 * 6, "feet"),
  18221. default: true
  18222. },
  18223. {
  18224. name: "👀💦",
  18225. height: math.unit(283 / 73 * 6, "feet"),
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(1.7, "m"),
  18234. weight: math.unit(70, "kg"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/kernel/front.svg",
  18238. extra: 222 / 210,
  18239. bottom: 0.007
  18240. }
  18241. },
  18242. },
  18243. [
  18244. {
  18245. name: "Nano",
  18246. height: math.unit(17, "micrometers")
  18247. },
  18248. {
  18249. name: "Micro",
  18250. height: math.unit(1.7, "mm")
  18251. },
  18252. {
  18253. name: "Small",
  18254. height: math.unit(1.7, "cm")
  18255. },
  18256. {
  18257. name: "Normal",
  18258. height: math.unit(1.7, "m"),
  18259. default: true
  18260. },
  18261. ]
  18262. ))
  18263. characterMakers.push(() => makeCharacter(
  18264. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18265. {
  18266. front: {
  18267. height: math.unit(1.75, "meters"),
  18268. weight: math.unit(65, "kg"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/jayne-folest/front.svg",
  18272. extra: 2115 / 2007,
  18273. bottom: 0.02
  18274. }
  18275. },
  18276. back: {
  18277. height: math.unit(1.75, "meters"),
  18278. weight: math.unit(65, "kg"),
  18279. name: "Back",
  18280. image: {
  18281. source: "./media/characters/jayne-folest/back.svg",
  18282. extra: 2115 / 2007,
  18283. bottom: 0.005
  18284. }
  18285. },
  18286. frontClothed: {
  18287. height: math.unit(1.75, "meters"),
  18288. weight: math.unit(65, "kg"),
  18289. name: "Front (Clothed)",
  18290. image: {
  18291. source: "./media/characters/jayne-folest/front-clothed.svg",
  18292. extra: 2115 / 2007,
  18293. bottom: 0.035
  18294. }
  18295. },
  18296. hand: {
  18297. height: math.unit(1 / 1.260, "feet"),
  18298. name: "Hand",
  18299. image: {
  18300. source: "./media/characters/jayne-folest/hand.svg"
  18301. }
  18302. },
  18303. foot: {
  18304. height: math.unit(1 / 0.918, "feet"),
  18305. name: "Foot",
  18306. image: {
  18307. source: "./media/characters/jayne-folest/foot.svg"
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Micro",
  18314. height: math.unit(4, "cm")
  18315. },
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(1.75, "meters")
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(47.5, "meters"),
  18323. default: true
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18329. {
  18330. front: {
  18331. height: math.unit(180, "cm"),
  18332. weight: math.unit(70, "kg"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/algier/front.svg",
  18336. extra: 596 / 572,
  18337. bottom: 0.04
  18338. }
  18339. },
  18340. back: {
  18341. height: math.unit(180, "cm"),
  18342. weight: math.unit(70, "kg"),
  18343. name: "Back",
  18344. image: {
  18345. source: "./media/characters/algier/back.svg",
  18346. extra: 596 / 572,
  18347. bottom: 0.025
  18348. }
  18349. },
  18350. frontdressed: {
  18351. height: math.unit(180, "cm"),
  18352. weight: math.unit(150, "kg"),
  18353. name: "Front-dressed",
  18354. image: {
  18355. source: "./media/characters/algier/front-dressed.svg",
  18356. extra: 596 / 572,
  18357. bottom: 0.038
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Micro",
  18364. height: math.unit(5, "cm")
  18365. },
  18366. {
  18367. name: "Normal",
  18368. height: math.unit(180, "cm"),
  18369. default: true
  18370. },
  18371. {
  18372. name: "Macro",
  18373. height: math.unit(64, "m")
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18379. {
  18380. upright: {
  18381. height: math.unit(7, "feet"),
  18382. weight: math.unit(300, "lb"),
  18383. name: "Upright",
  18384. image: {
  18385. source: "./media/characters/pretzel/upright.svg",
  18386. extra: 534 / 522,
  18387. bottom: 0.065
  18388. }
  18389. },
  18390. sprawling: {
  18391. height: math.unit(3.75, "feet"),
  18392. weight: math.unit(300, "lb"),
  18393. name: "Sprawling",
  18394. image: {
  18395. source: "./media/characters/pretzel/sprawling.svg",
  18396. extra: 314 / 281,
  18397. bottom: 0.1
  18398. }
  18399. },
  18400. tongue: {
  18401. height: math.unit(2, "feet"),
  18402. name: "Tongue",
  18403. image: {
  18404. source: "./media/characters/pretzel/tongue.svg"
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(7, "feet"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Oversized",
  18416. height: math.unit(15, "feet")
  18417. },
  18418. {
  18419. name: "Huge",
  18420. height: math.unit(30, "feet")
  18421. },
  18422. {
  18423. name: "Macro",
  18424. height: math.unit(250, "feet")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18430. {
  18431. sideFront: {
  18432. height: math.unit(5 + 2 / 12, "feet"),
  18433. weight: math.unit(120, "lb"),
  18434. name: "Front Side",
  18435. image: {
  18436. source: "./media/characters/roxi/side-front.svg",
  18437. extra: 2924 / 2717,
  18438. bottom: 0.08
  18439. }
  18440. },
  18441. sideBack: {
  18442. height: math.unit(5 + 2 / 12, "feet"),
  18443. weight: math.unit(120, "lb"),
  18444. name: "Back Side",
  18445. image: {
  18446. source: "./media/characters/roxi/side-back.svg",
  18447. extra: 2904 / 2693,
  18448. bottom: 0.06
  18449. }
  18450. },
  18451. front: {
  18452. height: math.unit(5 + 2 / 12, "feet"),
  18453. weight: math.unit(120, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/roxi/front.svg",
  18457. extra: 2028 / 1907,
  18458. bottom: 0.01
  18459. }
  18460. },
  18461. frontAlt: {
  18462. height: math.unit(5 + 2 / 12, "feet"),
  18463. weight: math.unit(120, "lb"),
  18464. name: "Front (Alt)",
  18465. image: {
  18466. source: "./media/characters/roxi/front-alt.svg",
  18467. extra: 1828 / 1798,
  18468. bottom: 0.01
  18469. }
  18470. },
  18471. sitting: {
  18472. height: math.unit(2.8, "feet"),
  18473. weight: math.unit(120, "lb"),
  18474. name: "Sitting",
  18475. image: {
  18476. source: "./media/characters/roxi/sitting.svg",
  18477. extra: 2660 / 2462,
  18478. bottom: 0.1
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(5 + 2 / 12, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18492. {
  18493. side: {
  18494. height: math.unit(55, "feet"),
  18495. weight: math.unit(153, "tons"),
  18496. name: "Side",
  18497. image: {
  18498. source: "./media/characters/shadow/side.svg",
  18499. extra: 701 / 628,
  18500. bottom: 0.02
  18501. }
  18502. },
  18503. flying: {
  18504. height: math.unit(145, "feet"),
  18505. weight: math.unit(153, "tons"),
  18506. name: "Flying",
  18507. image: {
  18508. source: "./media/characters/shadow/flying.svg"
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(55, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(6, "feet"),
  18525. weight: math.unit(200, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/marcie/front.svg",
  18529. extra: 960 / 876,
  18530. bottom: 58 / 1017.87
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(1, "mile"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(7, "feet"),
  18547. weight: math.unit(200, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/kachina/front.svg",
  18551. extra: 1290.68 / 1119,
  18552. bottom: 36.5 / 1327.18
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(7, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18566. {
  18567. looking: {
  18568. height: math.unit(2, "meters"),
  18569. weight: math.unit(300, "kg"),
  18570. name: "Looking",
  18571. image: {
  18572. source: "./media/characters/kash/looking.svg",
  18573. extra: 474 / 344,
  18574. bottom: 0.03
  18575. }
  18576. },
  18577. side: {
  18578. height: math.unit(2, "meters"),
  18579. weight: math.unit(300, "kg"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/kash/side.svg",
  18583. extra: 302 / 251,
  18584. bottom: 0.03
  18585. }
  18586. },
  18587. front: {
  18588. height: math.unit(2, "meters"),
  18589. weight: math.unit(300, "kg"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/kash/front.svg",
  18593. extra: 495 / 360,
  18594. bottom: 0.015
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Normal",
  18601. height: math.unit(2, "meters"),
  18602. default: true
  18603. },
  18604. {
  18605. name: "Big",
  18606. height: math.unit(3, "meters")
  18607. },
  18608. {
  18609. name: "Large",
  18610. height: math.unit(5, "meters")
  18611. },
  18612. ]
  18613. ))
  18614. characterMakers.push(() => makeCharacter(
  18615. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18616. {
  18617. feeding: {
  18618. height: math.unit(6.7, "feet"),
  18619. weight: math.unit(350, "lb"),
  18620. name: "Feeding",
  18621. image: {
  18622. source: "./media/characters/lalim/feeding.svg",
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(6.7, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(9.5, "feet"),
  18639. weight: math.unit(600, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/de'vout/front.svg",
  18643. extra: 1443 / 1328,
  18644. bottom: 0.025
  18645. }
  18646. },
  18647. back: {
  18648. height: math.unit(9.5, "feet"),
  18649. weight: math.unit(600, "lb"),
  18650. name: "Back",
  18651. image: {
  18652. source: "./media/characters/de'vout/back.svg",
  18653. extra: 1443 / 1328
  18654. }
  18655. },
  18656. frontDressed: {
  18657. height: math.unit(9.5, "feet"),
  18658. weight: math.unit(600, "lb"),
  18659. name: "Front (Dressed",
  18660. image: {
  18661. source: "./media/characters/de'vout/front-dressed.svg",
  18662. extra: 1443 / 1328,
  18663. bottom: 0.025
  18664. }
  18665. },
  18666. backDressed: {
  18667. height: math.unit(9.5, "feet"),
  18668. weight: math.unit(600, "lb"),
  18669. name: "Back (Dressed",
  18670. image: {
  18671. source: "./media/characters/de'vout/back-dressed.svg",
  18672. extra: 1443 / 1328
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Normal",
  18679. height: math.unit(9.5, "feet"),
  18680. default: true
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18686. {
  18687. front: {
  18688. height: math.unit(8, "feet"),
  18689. weight: math.unit(225, "lb"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/talana/front.svg",
  18693. extra: 1410 / 1300,
  18694. bottom: 0.015
  18695. }
  18696. },
  18697. frontDressed: {
  18698. height: math.unit(8, "feet"),
  18699. weight: math.unit(225, "lb"),
  18700. name: "Front (Dressed",
  18701. image: {
  18702. source: "./media/characters/talana/front-dressed.svg",
  18703. extra: 1410 / 1300,
  18704. bottom: 0.015
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Normal",
  18711. height: math.unit(8, "feet"),
  18712. default: true
  18713. },
  18714. ]
  18715. ))
  18716. characterMakers.push(() => makeCharacter(
  18717. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18718. {
  18719. side: {
  18720. height: math.unit(7.2, "feet"),
  18721. weight: math.unit(150, "lb"),
  18722. name: "Side",
  18723. image: {
  18724. source: "./media/characters/xeauvok/side.svg",
  18725. extra: 1975 / 1523,
  18726. bottom: 0.07
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Normal",
  18733. height: math.unit(7.2, "feet"),
  18734. default: true
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18740. {
  18741. side: {
  18742. height: math.unit(10, "feet"),
  18743. weight: math.unit(900, "kg"),
  18744. name: "Side",
  18745. image: {
  18746. source: "./media/characters/zara/side.svg",
  18747. extra: 504 / 498
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(10, "feet"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18761. {
  18762. side: {
  18763. height: math.unit(6, "feet"),
  18764. weight: math.unit(150, "lb"),
  18765. name: "Side",
  18766. image: {
  18767. source: "./media/characters/richard-dragon/side.svg",
  18768. extra: 845 / 340,
  18769. bottom: 0.017
  18770. }
  18771. },
  18772. maw: {
  18773. height: math.unit(2.97, "feet"),
  18774. name: "Maw",
  18775. image: {
  18776. source: "./media/characters/richard-dragon/maw.svg"
  18777. }
  18778. },
  18779. },
  18780. [
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(4, "feet"),
  18788. weight: math.unit(100, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/richard-smeargle/front.svg",
  18792. extra: 2952 / 2820,
  18793. bottom: 0.028
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(4, "feet"),
  18801. default: true
  18802. },
  18803. {
  18804. name: "Dynamax",
  18805. height: math.unit(20, "meters")
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6, "feet"),
  18814. weight: math.unit(110, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/klay/front.svg",
  18818. extra: 962 / 883,
  18819. bottom: 0.04
  18820. }
  18821. },
  18822. back: {
  18823. height: math.unit(6, "feet"),
  18824. weight: math.unit(110, "lb"),
  18825. name: "Back",
  18826. image: {
  18827. source: "./media/characters/klay/back.svg",
  18828. extra: 962 / 883
  18829. }
  18830. },
  18831. beans: {
  18832. height: math.unit(1.15, "feet"),
  18833. name: "Beans",
  18834. image: {
  18835. source: "./media/characters/klay/beans.svg"
  18836. }
  18837. },
  18838. },
  18839. [
  18840. {
  18841. name: "Micro",
  18842. height: math.unit(6, "inches")
  18843. },
  18844. {
  18845. name: "Mini",
  18846. height: math.unit(3, "feet")
  18847. },
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(6, "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Big",
  18855. height: math.unit(25, "feet")
  18856. },
  18857. {
  18858. name: "Macro",
  18859. height: math.unit(100, "feet")
  18860. },
  18861. {
  18862. name: "Megamacro",
  18863. height: math.unit(400, "feet")
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6, "feet"),
  18872. weight: math.unit(160, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/marcus/front.svg",
  18876. extra: 734 / 676,
  18877. bottom: 0.03
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Little",
  18884. height: math.unit(6, "feet")
  18885. },
  18886. {
  18887. name: "Normal",
  18888. height: math.unit(110, "feet"),
  18889. default: true
  18890. },
  18891. {
  18892. name: "Macro",
  18893. height: math.unit(250, "feet")
  18894. },
  18895. {
  18896. name: "Megamacro",
  18897. height: math.unit(1000, "feet")
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(7, "feet"),
  18906. weight: math.unit(275, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/claude-delroute/front.svg",
  18910. extra: 902/827,
  18911. bottom: 26/928
  18912. }
  18913. },
  18914. side: {
  18915. height: math.unit(7, "feet"),
  18916. weight: math.unit(275, "lb"),
  18917. name: "Side",
  18918. image: {
  18919. source: "./media/characters/claude-delroute/side.svg",
  18920. extra: 908/853,
  18921. bottom: 16/924
  18922. }
  18923. },
  18924. back: {
  18925. height: math.unit(7, "feet"),
  18926. weight: math.unit(275, "lb"),
  18927. name: "Back",
  18928. image: {
  18929. source: "./media/characters/claude-delroute/back.svg",
  18930. extra: 911/829,
  18931. bottom: 18/929
  18932. }
  18933. },
  18934. maw: {
  18935. height: math.unit(0.6407, "meters"),
  18936. name: "Maw",
  18937. image: {
  18938. source: "./media/characters/claude-delroute/maw.svg"
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(7, "feet"),
  18946. default: true
  18947. },
  18948. {
  18949. name: "Lorge",
  18950. height: math.unit(20, "feet")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(8 + 4 / 12, "feet"),
  18959. weight: math.unit(600, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/dragonien/front.svg",
  18963. extra: 100 / 94,
  18964. bottom: 3.3 / 103.3445
  18965. }
  18966. },
  18967. back: {
  18968. height: math.unit(8 + 4 / 12, "feet"),
  18969. weight: math.unit(600, "lb"),
  18970. name: "Back",
  18971. image: {
  18972. source: "./media/characters/dragonien/back.svg",
  18973. extra: 776 / 746,
  18974. bottom: 6.4 / 782.0616
  18975. }
  18976. },
  18977. foot: {
  18978. height: math.unit(1.54, "feet"),
  18979. name: "Foot",
  18980. image: {
  18981. source: "./media/characters/dragonien/foot.svg",
  18982. }
  18983. },
  18984. },
  18985. [
  18986. {
  18987. name: "Normal",
  18988. height: math.unit(8 + 4 / 12, "feet"),
  18989. default: true
  18990. },
  18991. {
  18992. name: "Macro",
  18993. height: math.unit(200, "feet")
  18994. },
  18995. {
  18996. name: "Megamacro",
  18997. height: math.unit(1, "mile")
  18998. },
  18999. {
  19000. name: "Gigamacro",
  19001. height: math.unit(1000, "miles")
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19007. {
  19008. front: {
  19009. height: math.unit(5 + 2 / 12, "feet"),
  19010. weight: math.unit(110, "lb"),
  19011. name: "Front",
  19012. image: {
  19013. source: "./media/characters/desta/front.svg",
  19014. extra: 767 / 726,
  19015. bottom: 11.7 / 779
  19016. }
  19017. },
  19018. back: {
  19019. height: math.unit(5 + 2 / 12, "feet"),
  19020. weight: math.unit(110, "lb"),
  19021. name: "Back",
  19022. image: {
  19023. source: "./media/characters/desta/back.svg",
  19024. extra: 777 / 728,
  19025. bottom: 6 / 784
  19026. }
  19027. },
  19028. frontAlt: {
  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-alt.svg",
  19034. extra: 1482 / 1417
  19035. }
  19036. },
  19037. side: {
  19038. height: math.unit(5 + 2 / 12, "feet"),
  19039. weight: math.unit(110, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/desta/side.svg",
  19043. extra: 2579 / 2491,
  19044. bottom: 0.053
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Micro",
  19051. height: math.unit(6, "inches")
  19052. },
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(5 + 2 / 12, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro",
  19060. height: math.unit(62, "feet")
  19061. },
  19062. {
  19063. name: "Megamacro",
  19064. height: math.unit(1800, "feet")
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19070. {
  19071. front: {
  19072. height: math.unit(10, "feet"),
  19073. weight: math.unit(700, "lb"),
  19074. name: "Front",
  19075. image: {
  19076. source: "./media/characters/storm-alystar/front.svg",
  19077. extra: 2112 / 1898,
  19078. bottom: 0.034
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Micro",
  19085. height: math.unit(3.5, "inches")
  19086. },
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(10, "feet"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(400, "feet")
  19095. },
  19096. {
  19097. name: "Deific",
  19098. height: math.unit(60, "miles")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19104. {
  19105. front: {
  19106. height: math.unit(2.35, "meters"),
  19107. weight: math.unit(119, "kg"),
  19108. name: "Front",
  19109. image: {
  19110. source: "./media/characters/ilia/front.svg",
  19111. extra: 1285 / 1255,
  19112. bottom: 0.06
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(2.35, "meters")
  19120. },
  19121. {
  19122. name: "Macro",
  19123. height: math.unit(140, "meters"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Megamacro",
  19128. height: math.unit(100, "miles")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19134. {
  19135. front: {
  19136. height: math.unit(6 + 5 / 12, "feet"),
  19137. weight: math.unit(190, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/kingdead/front.svg",
  19141. extra: 1228 / 1177
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Micro",
  19148. height: math.unit(7, "inches")
  19149. },
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(6 + 5 / 12, "feet")
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(150, "feet"),
  19157. default: true
  19158. },
  19159. {
  19160. name: "Megamacro",
  19161. height: math.unit(200, "miles")
  19162. },
  19163. ]
  19164. ))
  19165. characterMakers.push(() => makeCharacter(
  19166. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19167. {
  19168. front: {
  19169. height: math.unit(8, "feet"),
  19170. weight: math.unit(600, "lb"),
  19171. name: "Front",
  19172. image: {
  19173. source: "./media/characters/kyrehx/front.svg",
  19174. extra: 1195 / 1095,
  19175. bottom: 0.034
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(2, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(8, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(255, "feet")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19200. weight: math.unit(184, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/xang/front.svg",
  19204. extra: 845 / 755
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19212. default: true
  19213. },
  19214. {
  19215. name: "Macro",
  19216. height: math.unit(0.935 * 146, "feet")
  19217. },
  19218. {
  19219. name: "Megamacro",
  19220. height: math.unit(0.935 * 3, "miles")
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19226. {
  19227. frontDressed: {
  19228. height: math.unit(5 + 7 / 12, "feet"),
  19229. weight: math.unit(140, "lb"),
  19230. name: "Front (Dressed)",
  19231. image: {
  19232. source: "./media/characters/doc-weardno/front-dressed.svg",
  19233. extra: 263 / 234
  19234. }
  19235. },
  19236. backDressed: {
  19237. height: math.unit(5 + 7 / 12, "feet"),
  19238. weight: math.unit(140, "lb"),
  19239. name: "Back (Dressed)",
  19240. image: {
  19241. source: "./media/characters/doc-weardno/back-dressed.svg",
  19242. extra: 266 / 238
  19243. }
  19244. },
  19245. front: {
  19246. height: math.unit(5 + 7 / 12, "feet"),
  19247. weight: math.unit(140, "lb"),
  19248. name: "Front",
  19249. image: {
  19250. source: "./media/characters/doc-weardno/front.svg",
  19251. extra: 254 / 233
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Micro",
  19258. height: math.unit(3, "inches")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(5 + 7 / 12, "feet"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Macro",
  19267. height: math.unit(25, "feet")
  19268. },
  19269. {
  19270. name: "Megamacro",
  19271. height: math.unit(2, "miles")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(6 + 2 / 12, "feet"),
  19280. weight: math.unit(153, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/seth-whilst/front.svg",
  19284. bottom: 0.07
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Micro",
  19291. height: math.unit(5, "inches")
  19292. },
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(6 + 2 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(3, "inches"),
  19305. weight: math.unit(8, "grams"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/pocket-jabari/front.svg",
  19309. extra: 1024 / 974,
  19310. bottom: 0.039
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Minimicro",
  19317. height: math.unit(8, "mm")
  19318. },
  19319. {
  19320. name: "Micro",
  19321. height: math.unit(3, "inches"),
  19322. default: true
  19323. },
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(3, "feet")
  19327. },
  19328. ]
  19329. ))
  19330. characterMakers.push(() => makeCharacter(
  19331. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19332. {
  19333. frontDressed: {
  19334. height: math.unit(15, "feet"),
  19335. weight: math.unit(3280, "lb"),
  19336. name: "Front (Dressed)",
  19337. image: {
  19338. source: "./media/characters/sapphy/front-dressed.svg",
  19339. extra: 1951/1654,
  19340. bottom: 194/2145
  19341. },
  19342. form: "anthro",
  19343. default: true
  19344. },
  19345. backDressed: {
  19346. height: math.unit(15, "feet"),
  19347. weight: math.unit(3280, "lb"),
  19348. name: "Back (Dressed)",
  19349. image: {
  19350. source: "./media/characters/sapphy/back-dressed.svg",
  19351. extra: 2058/1918,
  19352. bottom: 125/2183
  19353. },
  19354. form: "anthro"
  19355. },
  19356. frontNude: {
  19357. height: math.unit(15, "feet"),
  19358. weight: math.unit(3280, "lb"),
  19359. name: "Front (Nude)",
  19360. image: {
  19361. source: "./media/characters/sapphy/front-nude.svg",
  19362. extra: 1951/1654,
  19363. bottom: 194/2145
  19364. },
  19365. form: "anthro"
  19366. },
  19367. backNude: {
  19368. height: math.unit(15, "feet"),
  19369. weight: math.unit(3280, "lb"),
  19370. name: "Back (Nude)",
  19371. image: {
  19372. source: "./media/characters/sapphy/back-nude.svg",
  19373. extra: 2058/1918,
  19374. bottom: 125/2183
  19375. },
  19376. form: "anthro"
  19377. },
  19378. full: {
  19379. height: math.unit(15, "feet"),
  19380. weight: math.unit(3280, "lb"),
  19381. name: "Full",
  19382. image: {
  19383. source: "./media/characters/sapphy/full.svg",
  19384. extra: 1396/1317,
  19385. bottom: 44/1440
  19386. },
  19387. form: "anthro"
  19388. },
  19389. dick: {
  19390. height: math.unit(3.8, "feet"),
  19391. name: "Dick",
  19392. image: {
  19393. source: "./media/characters/sapphy/dick.svg"
  19394. },
  19395. form: "anthro"
  19396. },
  19397. feral: {
  19398. height: math.unit(35, "feet"),
  19399. weight: math.unit(160, "tons"),
  19400. name: "Feral",
  19401. image: {
  19402. source: "./media/characters/sapphy/feral.svg",
  19403. extra: 1050/573,
  19404. bottom: 60/1110
  19405. },
  19406. form: "feral",
  19407. default: true
  19408. },
  19409. },
  19410. [
  19411. {
  19412. name: "Normal",
  19413. height: math.unit(15, "feet"),
  19414. form: "anthro"
  19415. },
  19416. {
  19417. name: "Casual Macro",
  19418. height: math.unit(120, "feet"),
  19419. form: "anthro"
  19420. },
  19421. {
  19422. name: "Macro",
  19423. height: math.unit(2150, "feet"),
  19424. default: true,
  19425. form: "anthro"
  19426. },
  19427. {
  19428. name: "Megamacro",
  19429. height: math.unit(8, "miles"),
  19430. form: "anthro"
  19431. },
  19432. {
  19433. name: "Galaxy Mom",
  19434. height: math.unit(6, "megalightyears"),
  19435. form: "anthro"
  19436. },
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(35, "feet"),
  19440. form: "feral",
  19441. default: true
  19442. },
  19443. {
  19444. name: "Macro",
  19445. height: math.unit(300, "feet"),
  19446. form: "feral"
  19447. },
  19448. {
  19449. name: "Galaxy Mom",
  19450. height: math.unit(10, "megalightyears"),
  19451. form: "feral"
  19452. },
  19453. ],
  19454. {
  19455. "anthro": {
  19456. name: "Anthro",
  19457. default: true
  19458. },
  19459. "feral": {
  19460. name: "Feral"
  19461. }
  19462. }
  19463. ))
  19464. characterMakers.push(() => makeCharacter(
  19465. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19466. {
  19467. front: {
  19468. height: math.unit(6, "feet"),
  19469. weight: math.unit(170, "lb"),
  19470. name: "Front",
  19471. image: {
  19472. source: "./media/characters/kiro/front.svg",
  19473. extra: 1064 / 1012,
  19474. bottom: 0.052
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Micro",
  19481. height: math.unit(6, "inches")
  19482. },
  19483. {
  19484. name: "Normal",
  19485. height: math.unit(6, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "Macro",
  19490. height: math.unit(72, "feet")
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19496. {
  19497. front: {
  19498. height: math.unit(5 + 9 / 12, "feet"),
  19499. weight: math.unit(175, "lb"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/irishfox/front.svg",
  19503. extra: 1912 / 1680,
  19504. bottom: 0.02
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Nano",
  19511. height: math.unit(1, "mm")
  19512. },
  19513. {
  19514. name: "Micro",
  19515. height: math.unit(2, "inches")
  19516. },
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(5 + 9 / 12, "feet"),
  19520. default: true
  19521. },
  19522. {
  19523. name: "Macro",
  19524. height: math.unit(45, "feet")
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(6 + 1 / 12, "feet"),
  19533. weight: math.unit(75, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/aronai-sieyes/front.svg",
  19537. extra: 1532/1450,
  19538. bottom: 42/1574
  19539. }
  19540. },
  19541. side: {
  19542. height: math.unit(6 + 1 / 12, "feet"),
  19543. weight: math.unit(75, "lb"),
  19544. name: "Side",
  19545. image: {
  19546. source: "./media/characters/aronai-sieyes/side.svg",
  19547. extra: 1422/1365,
  19548. bottom: 148/1570
  19549. }
  19550. },
  19551. back: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(75, "lb"),
  19554. name: "Back",
  19555. image: {
  19556. source: "./media/characters/aronai-sieyes/back.svg",
  19557. extra: 1526/1464,
  19558. bottom: 51/1577
  19559. }
  19560. },
  19561. dressed: {
  19562. height: math.unit(6 + 1 / 12, "feet"),
  19563. weight: math.unit(75, "lb"),
  19564. name: "Dressed",
  19565. image: {
  19566. source: "./media/characters/aronai-sieyes/dressed.svg",
  19567. extra: 1559/1483,
  19568. bottom: 39/1598
  19569. }
  19570. },
  19571. slit: {
  19572. height: math.unit(1.3, "feet"),
  19573. name: "Slit",
  19574. image: {
  19575. source: "./media/characters/aronai-sieyes/slit.svg"
  19576. }
  19577. },
  19578. slitSpread: {
  19579. height: math.unit(0.9, "feet"),
  19580. name: "Slit (Spread)",
  19581. image: {
  19582. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19583. }
  19584. },
  19585. rump: {
  19586. height: math.unit(1.3, "feet"),
  19587. name: "Rump",
  19588. image: {
  19589. source: "./media/characters/aronai-sieyes/rump.svg"
  19590. }
  19591. },
  19592. maw: {
  19593. height: math.unit(1.25, "feet"),
  19594. name: "Maw",
  19595. image: {
  19596. source: "./media/characters/aronai-sieyes/maw.svg"
  19597. }
  19598. },
  19599. feral: {
  19600. height: math.unit(18, "feet"),
  19601. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19602. name: "Feral",
  19603. image: {
  19604. source: "./media/characters/aronai-sieyes/feral.svg",
  19605. extra: 1530 / 1240,
  19606. bottom: 0.035
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Micro",
  19613. height: math.unit(2, "inches")
  19614. },
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(6 + 1 / 12, "feet"),
  19618. default: true
  19619. }
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19624. {
  19625. front: {
  19626. height: math.unit(12, "feet"),
  19627. weight: math.unit(410, "kg"),
  19628. name: "Front",
  19629. image: {
  19630. source: "./media/characters/xuna/front.svg",
  19631. extra: 2184 / 1980
  19632. }
  19633. },
  19634. side: {
  19635. height: math.unit(12, "feet"),
  19636. weight: math.unit(410, "kg"),
  19637. name: "Side",
  19638. image: {
  19639. source: "./media/characters/xuna/side.svg",
  19640. extra: 2184 / 1980
  19641. }
  19642. },
  19643. back: {
  19644. height: math.unit(12, "feet"),
  19645. weight: math.unit(410, "kg"),
  19646. name: "Back",
  19647. image: {
  19648. source: "./media/characters/xuna/back.svg",
  19649. extra: 2184 / 1980
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Nano glow",
  19656. height: math.unit(10, "nm")
  19657. },
  19658. {
  19659. name: "Micro floof",
  19660. height: math.unit(0.3, "m")
  19661. },
  19662. {
  19663. name: "Huggable softy boi",
  19664. height: math.unit(3.6576, "m"),
  19665. default: true
  19666. },
  19667. {
  19668. name: "Admirable floof",
  19669. height: math.unit(80, "meters")
  19670. },
  19671. {
  19672. name: "Gentle macro",
  19673. height: math.unit(300, "meters")
  19674. },
  19675. {
  19676. name: "Very careful floof",
  19677. height: math.unit(3200, "meters")
  19678. },
  19679. {
  19680. name: "The mega floof",
  19681. height: math.unit(36000, "meters")
  19682. },
  19683. {
  19684. name: "Giga-fur-Wicker",
  19685. height: math.unit(4800000, "meters")
  19686. },
  19687. {
  19688. name: "Licky world",
  19689. height: math.unit(20000000, "meters")
  19690. },
  19691. {
  19692. name: "Floofy cyan sun",
  19693. height: math.unit(1500000000, "meters")
  19694. },
  19695. {
  19696. name: "Milky Wicker",
  19697. height: math.unit(1000000000000000000000, "meters")
  19698. },
  19699. {
  19700. name: "The observing Wicker",
  19701. height: math.unit(999999999999999999999999999, "meters")
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(5 + 9 / 12, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/arokha-sieyes/front.svg",
  19714. extra: 1425 / 1284,
  19715. bottom: 0.05
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Normal",
  19722. height: math.unit(5 + 9 / 12, "feet")
  19723. },
  19724. {
  19725. name: "Macro",
  19726. height: math.unit(30, "meters"),
  19727. default: true
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(6, "feet"),
  19736. weight: math.unit(180, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/arokh-sieyes/front.svg",
  19740. extra: 1830 / 1769,
  19741. bottom: 0.01
  19742. }
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(6, "feet")
  19749. },
  19750. {
  19751. name: "Macro",
  19752. height: math.unit(30, "meters"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19759. {
  19760. side: {
  19761. height: math.unit(13 + 1 / 12, "feet"),
  19762. weight: math.unit(8.5, "tonnes"),
  19763. name: "Side",
  19764. image: {
  19765. source: "./media/characters/goldeneye/side.svg",
  19766. extra: 1182 / 778,
  19767. bottom: 0.067
  19768. }
  19769. },
  19770. paw: {
  19771. height: math.unit(3.4, "feet"),
  19772. name: "Paw",
  19773. image: {
  19774. source: "./media/characters/goldeneye/paw.svg"
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(13 + 1 / 12, "feet"),
  19782. default: true
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19788. {
  19789. front: {
  19790. height: math.unit(6 + 1 / 12, "feet"),
  19791. weight: math.unit(210, "lb"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/leonardo-lycheborne/front.svg",
  19795. extra: 776/723,
  19796. bottom: 34/810
  19797. }
  19798. },
  19799. side: {
  19800. height: math.unit(6 + 1 / 12, "feet"),
  19801. weight: math.unit(210, "lb"),
  19802. name: "Side",
  19803. image: {
  19804. source: "./media/characters/leonardo-lycheborne/side.svg",
  19805. extra: 780/728,
  19806. bottom: 12/792
  19807. }
  19808. },
  19809. back: {
  19810. height: math.unit(6 + 1 / 12, "feet"),
  19811. weight: math.unit(210, "lb"),
  19812. name: "Back",
  19813. image: {
  19814. source: "./media/characters/leonardo-lycheborne/back.svg",
  19815. extra: 775/721,
  19816. bottom: 17/792
  19817. }
  19818. },
  19819. hand: {
  19820. height: math.unit(1.08, "feet"),
  19821. name: "Hand",
  19822. image: {
  19823. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19824. }
  19825. },
  19826. foot: {
  19827. height: math.unit(1.32, "feet"),
  19828. name: "Foot",
  19829. image: {
  19830. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19831. }
  19832. },
  19833. maw: {
  19834. height: math.unit(1, "feet"),
  19835. name: "Maw",
  19836. image: {
  19837. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19838. }
  19839. },
  19840. were: {
  19841. height: math.unit(20, "feet"),
  19842. weight: math.unit(7800, "lb"),
  19843. name: "Were",
  19844. image: {
  19845. source: "./media/characters/leonardo-lycheborne/were.svg",
  19846. extra: 1224/1165,
  19847. bottom: 72/1296
  19848. }
  19849. },
  19850. feral: {
  19851. height: math.unit(7.5, "feet"),
  19852. weight: math.unit(600, "lb"),
  19853. name: "Feral",
  19854. image: {
  19855. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19856. extra: 797/702,
  19857. bottom: 139/936
  19858. }
  19859. },
  19860. taur: {
  19861. height: math.unit(11, "feet"),
  19862. weight: math.unit(3300, "lb"),
  19863. name: "Taur",
  19864. image: {
  19865. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19866. extra: 1271/1197,
  19867. bottom: 47/1318
  19868. }
  19869. },
  19870. barghest: {
  19871. height: math.unit(11, "feet"),
  19872. weight: math.unit(1300, "lb"),
  19873. name: "Barghest",
  19874. image: {
  19875. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19876. extra: 1291/1204,
  19877. bottom: 37/1328
  19878. }
  19879. },
  19880. dick: {
  19881. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19882. name: "Dick",
  19883. image: {
  19884. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19885. }
  19886. },
  19887. dickWere: {
  19888. height: math.unit((20) / 3.8, "feet"),
  19889. name: "Dick (Were)",
  19890. image: {
  19891. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(6 + 1 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(10, "feet"),
  19908. weight: math.unit(350, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/jet/front.svg",
  19912. extra: 2050 / 1980,
  19913. bottom: 0.013
  19914. }
  19915. },
  19916. back: {
  19917. height: math.unit(10, "feet"),
  19918. weight: math.unit(350, "lb"),
  19919. name: "Back",
  19920. image: {
  19921. source: "./media/characters/jet/back.svg",
  19922. extra: 2050 / 1980,
  19923. bottom: 0.013
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Micro",
  19930. height: math.unit(6, "inches")
  19931. },
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(10, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Macro",
  19939. height: math.unit(100, "feet")
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(15, "feet"),
  19948. weight: math.unit(2800, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/tanarath/front.svg",
  19952. extra: 2392 / 2220,
  19953. bottom: 0.03
  19954. }
  19955. },
  19956. back: {
  19957. height: math.unit(15, "feet"),
  19958. weight: math.unit(2800, "lb"),
  19959. name: "Back",
  19960. image: {
  19961. source: "./media/characters/tanarath/back.svg",
  19962. extra: 2392 / 2220,
  19963. bottom: 0.03
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(15, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(7 + 1 / 12, "feet"),
  19980. weight: math.unit(175, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/patty-cattybatty/front.svg",
  19984. extra: 908 / 874,
  19985. bottom: 0.025
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Micro",
  19992. height: math.unit(1, "inch")
  19993. },
  19994. {
  19995. name: "Normal",
  19996. height: math.unit(7 + 1 / 12, "feet")
  19997. },
  19998. {
  19999. name: "Mini Macro",
  20000. height: math.unit(155, "feet")
  20001. },
  20002. {
  20003. name: "Macro",
  20004. height: math.unit(1077, "feet")
  20005. },
  20006. {
  20007. name: "Mega Macro",
  20008. height: math.unit(47650, "feet"),
  20009. default: true
  20010. },
  20011. {
  20012. name: "Giga Macro",
  20013. height: math.unit(440, "miles")
  20014. },
  20015. {
  20016. name: "Tera Macro",
  20017. height: math.unit(8700, "miles")
  20018. },
  20019. {
  20020. name: "Planetary Macro",
  20021. height: math.unit(32700, "miles")
  20022. },
  20023. {
  20024. name: "Solar Macro",
  20025. height: math.unit(550000, "miles")
  20026. },
  20027. {
  20028. name: "Celestial Macro",
  20029. height: math.unit(2.5, "AU")
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(4 + 5 / 12, "feet"),
  20038. weight: math.unit(90, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/cappu/front.svg",
  20042. extra: 1247 / 1152,
  20043. bottom: 0.012
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(4 + 5 / 12, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20057. {
  20058. frontDressed: {
  20059. height: math.unit(70, "cm"),
  20060. weight: math.unit(6, "kg"),
  20061. name: "Front (Dressed)",
  20062. image: {
  20063. source: "./media/characters/sebi/front-dressed.svg",
  20064. extra: 713.5 / 686.5,
  20065. bottom: 0.003
  20066. }
  20067. },
  20068. front: {
  20069. height: math.unit(70, "cm"),
  20070. weight: math.unit(5, "kg"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/sebi/front.svg",
  20074. extra: 713.5 / 686.5,
  20075. bottom: 0.003
  20076. }
  20077. }
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(70, "cm"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(8, "meters")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6, "feet"),
  20096. weight: math.unit(150, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/typhek/front.svg",
  20100. extra: 1948 / 1929,
  20101. bottom: 0.025
  20102. }
  20103. },
  20104. side: {
  20105. height: math.unit(6, "feet"),
  20106. weight: math.unit(150, "lb"),
  20107. name: "Side",
  20108. image: {
  20109. source: "./media/characters/typhek/side.svg",
  20110. extra: 2034 / 2010,
  20111. bottom: 0.003
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(6, "feet"),
  20116. weight: math.unit(150, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/typhek/back.svg",
  20120. extra: 2005 / 1978,
  20121. bottom: 0.004
  20122. }
  20123. },
  20124. palm: {
  20125. height: math.unit(1.2, "feet"),
  20126. name: "Palm",
  20127. image: {
  20128. source: "./media/characters/typhek/palm.svg"
  20129. }
  20130. },
  20131. fist: {
  20132. height: math.unit(1.1, "feet"),
  20133. name: "Fist",
  20134. image: {
  20135. source: "./media/characters/typhek/fist.svg"
  20136. }
  20137. },
  20138. foot: {
  20139. height: math.unit(1.57, "feet"),
  20140. name: "Foot",
  20141. image: {
  20142. source: "./media/characters/typhek/foot.svg"
  20143. }
  20144. },
  20145. sole: {
  20146. height: math.unit(2.05, "feet"),
  20147. name: "Sole",
  20148. image: {
  20149. source: "./media/characters/typhek/sole.svg"
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Macro",
  20156. height: math.unit(40, "stories"),
  20157. default: true
  20158. },
  20159. {
  20160. name: "Megamacro",
  20161. height: math.unit(1, "mile")
  20162. },
  20163. {
  20164. name: "Gigamacro",
  20165. height: math.unit(4000, "solarradii")
  20166. },
  20167. {
  20168. name: "Universal",
  20169. height: math.unit(1.1, "universes")
  20170. }
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20175. {
  20176. side: {
  20177. height: math.unit(5 + 7 / 12, "feet"),
  20178. weight: math.unit(150, "lb"),
  20179. name: "Side",
  20180. image: {
  20181. source: "./media/characters/kassy/side.svg",
  20182. extra: 1280 / 1225,
  20183. bottom: 0.002
  20184. }
  20185. },
  20186. front: {
  20187. height: math.unit(5 + 7 / 12, "feet"),
  20188. weight: math.unit(150, "lb"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/kassy/front.svg",
  20192. extra: 1280 / 1225,
  20193. bottom: 0.025
  20194. }
  20195. },
  20196. back: {
  20197. height: math.unit(5 + 7 / 12, "feet"),
  20198. weight: math.unit(150, "lb"),
  20199. name: "Back",
  20200. image: {
  20201. source: "./media/characters/kassy/back.svg",
  20202. extra: 1280 / 1225,
  20203. bottom: 0.002
  20204. }
  20205. },
  20206. foot: {
  20207. height: math.unit(1.266, "feet"),
  20208. name: "Foot",
  20209. image: {
  20210. source: "./media/characters/kassy/foot.svg"
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(5 + 7 / 12, "feet")
  20218. },
  20219. {
  20220. name: "Macro",
  20221. height: math.unit(137, "feet"),
  20222. default: true
  20223. },
  20224. {
  20225. name: "Megamacro",
  20226. height: math.unit(1, "mile")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(6 + 1 / 12, "feet"),
  20235. weight: math.unit(200, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/neil/front.svg",
  20239. extra: 1326 / 1250,
  20240. bottom: 0.023
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(6 + 1 / 12, "feet"),
  20248. default: true
  20249. },
  20250. {
  20251. name: "Macro",
  20252. height: math.unit(200, "feet")
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(5 + 9 / 12, "feet"),
  20261. weight: math.unit(190, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/atticus/front.svg",
  20265. extra: 2934 / 2785,
  20266. bottom: 0.025
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Normal",
  20273. height: math.unit(5 + 9 / 12, "feet"),
  20274. default: true
  20275. },
  20276. {
  20277. name: "Macro",
  20278. height: math.unit(180, "feet")
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20284. {
  20285. side: {
  20286. height: math.unit(9, "feet"),
  20287. weight: math.unit(650, "lb"),
  20288. name: "Side",
  20289. image: {
  20290. source: "./media/characters/milo/side.svg",
  20291. extra: 2644 / 2310,
  20292. bottom: 0.032
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(9, "feet"),
  20300. default: true
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(300, "feet")
  20305. },
  20306. ]
  20307. ))
  20308. characterMakers.push(() => makeCharacter(
  20309. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20310. {
  20311. side: {
  20312. height: math.unit(8, "meters"),
  20313. weight: math.unit(90000, "kg"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/ijzer/side.svg",
  20317. extra: 2756 / 1600,
  20318. bottom: 0.01
  20319. }
  20320. },
  20321. },
  20322. [
  20323. {
  20324. name: "Small",
  20325. height: math.unit(3, "meters")
  20326. },
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(8, "meters"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Normal+",
  20334. height: math.unit(10, "meters")
  20335. },
  20336. {
  20337. name: "Bigger",
  20338. height: math.unit(24, "meters")
  20339. },
  20340. {
  20341. name: "Huge",
  20342. height: math.unit(80, "meters")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(6 + 2 / 12, "feet"),
  20351. weight: math.unit(153, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/luca-cervicum/front.svg",
  20355. extra: 370 / 327,
  20356. bottom: 0.015
  20357. }
  20358. },
  20359. back: {
  20360. height: math.unit(6 + 2 / 12, "feet"),
  20361. weight: math.unit(153, "lb"),
  20362. name: "Back",
  20363. image: {
  20364. source: "./media/characters/luca-cervicum/back.svg",
  20365. extra: 367 / 333,
  20366. bottom: 0.005
  20367. }
  20368. },
  20369. frontGear: {
  20370. height: math.unit(6 + 2 / 12, "feet"),
  20371. weight: math.unit(173, "lb"),
  20372. name: "Front (Gear)",
  20373. image: {
  20374. source: "./media/characters/luca-cervicum/front-gear.svg",
  20375. extra: 377 / 333,
  20376. bottom: 0.006
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(6 + 2 / 12, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(6 + 1 / 12, "feet"),
  20393. weight: math.unit(304, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/oliver/front.svg",
  20397. extra: 157 / 143,
  20398. bottom: 0.08
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Normal",
  20405. height: math.unit(6 + 1 / 12, "feet"),
  20406. default: true
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(5 + 7 / 12, "feet"),
  20415. weight: math.unit(140, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/shane/front.svg",
  20419. extra: 304 / 289,
  20420. bottom: 0.005
  20421. }
  20422. },
  20423. },
  20424. [
  20425. {
  20426. name: "Normal",
  20427. height: math.unit(5 + 7 / 12, "feet"),
  20428. default: true
  20429. },
  20430. ]
  20431. ))
  20432. characterMakers.push(() => makeCharacter(
  20433. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20434. {
  20435. front: {
  20436. height: math.unit(5 + 9 / 12, "feet"),
  20437. weight: math.unit(178, "lb"),
  20438. name: "Front",
  20439. image: {
  20440. source: "./media/characters/shin/front.svg",
  20441. extra: 159 / 151,
  20442. bottom: 0.015
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5 + 9 / 12, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(5 + 10 / 12, "feet"),
  20459. weight: math.unit(168, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/xerxes/front.svg",
  20463. extra: 282 / 260,
  20464. bottom: 0.045
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(5 + 10 / 12, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(6 + 7 / 12, "feet"),
  20481. weight: math.unit(208, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/chaska/front.svg",
  20485. extra: 332 / 319,
  20486. bottom: 0.015
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(6 + 7 / 12, "feet"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20500. {
  20501. front: {
  20502. height: math.unit(5 + 8 / 12, "feet"),
  20503. weight: math.unit(208, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/enuk/front.svg",
  20507. extra: 437 / 406,
  20508. bottom: 0.02
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(5 + 8 / 12, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(5 + 10 / 12, "feet"),
  20525. weight: math.unit(252, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/bruun/front.svg",
  20529. extra: 197 / 187,
  20530. bottom: 0.012
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(5 + 10 / 12, "feet"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20544. {
  20545. front: {
  20546. height: math.unit(6 + 10 / 12, "feet"),
  20547. weight: math.unit(255, "lb"),
  20548. name: "Front",
  20549. image: {
  20550. source: "./media/characters/alexeev/front.svg",
  20551. extra: 213 / 200,
  20552. bottom: 0.05
  20553. }
  20554. },
  20555. },
  20556. [
  20557. {
  20558. name: "Normal",
  20559. height: math.unit(6 + 10 / 12, "feet"),
  20560. default: true
  20561. },
  20562. ]
  20563. ))
  20564. characterMakers.push(() => makeCharacter(
  20565. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20566. {
  20567. front: {
  20568. height: math.unit(2 + 8 / 12, "feet"),
  20569. weight: math.unit(22, "lb"),
  20570. name: "Front",
  20571. image: {
  20572. source: "./media/characters/evelyn/front.svg",
  20573. extra: 208 / 180
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(2 + 8 / 12, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(5 + 9 / 12, "feet"),
  20590. weight: math.unit(139, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/inca/front.svg",
  20594. extra: 294 / 291,
  20595. bottom: 0.03
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(5 + 9 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(6 + 3 / 12, "feet"),
  20612. weight: math.unit(185, "lb"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/mera/front.svg",
  20616. extra: 291 / 277,
  20617. bottom: 0.03
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(6 + 3 / 12, "feet"),
  20625. default: true
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(6 + 7 / 12, "feet"),
  20634. weight: math.unit(160, "lb"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/ceres/front.svg",
  20638. extra: 1023 / 950,
  20639. bottom: 0.027
  20640. }
  20641. },
  20642. back: {
  20643. height: math.unit(6 + 7 / 12, "feet"),
  20644. weight: math.unit(160, "lb"),
  20645. name: "Back",
  20646. image: {
  20647. source: "./media/characters/ceres/back.svg",
  20648. extra: 1023 / 950
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(6 + 7 / 12, "feet"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(5 + 10 / 12, "feet"),
  20665. weight: math.unit(150, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/kris/front.svg",
  20669. extra: 885 / 803,
  20670. bottom: 0.03
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(5 + 10 / 12, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20684. {
  20685. front: {
  20686. height: math.unit(7, "feet"),
  20687. weight: math.unit(120, "kg"),
  20688. name: "Front",
  20689. image: {
  20690. source: "./media/characters/taluthus/front.svg",
  20691. extra: 903 / 833,
  20692. bottom: 0.015
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Normal",
  20699. height: math.unit(7, "feet"),
  20700. default: true
  20701. },
  20702. {
  20703. name: "Macro",
  20704. height: math.unit(300, "feet")
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(5 + 9 / 12, "feet"),
  20713. weight: math.unit(145, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/dawn/front.svg",
  20717. extra: 2094 / 2016,
  20718. bottom: 0.025
  20719. }
  20720. },
  20721. back: {
  20722. height: math.unit(5 + 9 / 12, "feet"),
  20723. weight: math.unit(160, "lb"),
  20724. name: "Back",
  20725. image: {
  20726. source: "./media/characters/dawn/back.svg",
  20727. extra: 2112 / 2080,
  20728. bottom: 0.005
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(6 + 7 / 12, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20742. {
  20743. anthro: {
  20744. height: math.unit(8 + 3 / 12, "feet"),
  20745. weight: math.unit(450, "lb"),
  20746. name: "Anthro",
  20747. image: {
  20748. source: "./media/characters/arador/anthro.svg",
  20749. extra: 1835 / 1718,
  20750. bottom: 0.025
  20751. }
  20752. },
  20753. feral: {
  20754. height: math.unit(4, "feet"),
  20755. weight: math.unit(200, "lb"),
  20756. name: "Feral",
  20757. image: {
  20758. source: "./media/characters/arador/feral.svg",
  20759. extra: 1683 / 1514,
  20760. bottom: 0.07
  20761. }
  20762. },
  20763. },
  20764. [
  20765. {
  20766. name: "Normal",
  20767. height: math.unit(8 + 3 / 12, "feet")
  20768. },
  20769. {
  20770. name: "Macro",
  20771. height: math.unit(82.5, "feet"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(5 + 10 / 12, "feet"),
  20781. weight: math.unit(125, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/dharsi/front.svg",
  20785. extra: 716 / 630,
  20786. bottom: 0.035
  20787. }
  20788. },
  20789. },
  20790. [
  20791. {
  20792. name: "Nano",
  20793. height: math.unit(100, "nm")
  20794. },
  20795. {
  20796. name: "Micro",
  20797. height: math.unit(2, "inches")
  20798. },
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 10 / 12, "feet"),
  20802. default: true
  20803. },
  20804. {
  20805. name: "Macro",
  20806. height: math.unit(1000, "feet")
  20807. },
  20808. {
  20809. name: "Megamacro",
  20810. height: math.unit(10, "miles")
  20811. },
  20812. {
  20813. name: "Gigamacro",
  20814. height: math.unit(3000, "miles")
  20815. },
  20816. {
  20817. name: "Teramacro",
  20818. height: math.unit(500000, "miles")
  20819. },
  20820. {
  20821. name: "Teramacro+",
  20822. height: math.unit(30, "galaxies")
  20823. },
  20824. ]
  20825. ))
  20826. characterMakers.push(() => makeCharacter(
  20827. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20828. {
  20829. front: {
  20830. height: math.unit(6, "feet"),
  20831. weight: math.unit(150, "lb"),
  20832. name: "Front",
  20833. image: {
  20834. source: "./media/characters/deathy/front.svg",
  20835. extra: 1552 / 1463,
  20836. bottom: 0.025
  20837. }
  20838. },
  20839. side: {
  20840. height: math.unit(6, "feet"),
  20841. weight: math.unit(150, "lb"),
  20842. name: "Side",
  20843. image: {
  20844. source: "./media/characters/deathy/side.svg",
  20845. extra: 1604 / 1455,
  20846. bottom: 0.025
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(6, "feet"),
  20851. weight: math.unit(150, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/deathy/back.svg",
  20855. extra: 1580 / 1463,
  20856. bottom: 0.005
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Micro",
  20863. height: math.unit(5, "millimeters")
  20864. },
  20865. {
  20866. name: "Normal",
  20867. height: math.unit(6 + 5 / 12, "feet"),
  20868. default: true
  20869. },
  20870. ]
  20871. ))
  20872. characterMakers.push(() => makeCharacter(
  20873. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20874. {
  20875. front: {
  20876. height: math.unit(16, "feet"),
  20877. weight: math.unit(4000, "lb"),
  20878. name: "Front",
  20879. image: {
  20880. source: "./media/characters/juniper/front.svg",
  20881. bottom: 0.04
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(16, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20895. {
  20896. front: {
  20897. height: math.unit(6, "feet"),
  20898. weight: math.unit(150, "lb"),
  20899. name: "Front",
  20900. image: {
  20901. source: "./media/characters/hipster/front.svg",
  20902. extra: 1312 / 1209,
  20903. bottom: 0.025
  20904. }
  20905. },
  20906. back: {
  20907. height: math.unit(6, "feet"),
  20908. weight: math.unit(150, "lb"),
  20909. name: "Back",
  20910. image: {
  20911. source: "./media/characters/hipster/back.svg",
  20912. extra: 1281 / 1196,
  20913. bottom: 0.01
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Micro",
  20920. height: math.unit(1, "mm")
  20921. },
  20922. {
  20923. name: "Normal",
  20924. height: math.unit(4, "inches"),
  20925. default: true
  20926. },
  20927. {
  20928. name: "Macro",
  20929. height: math.unit(500, "feet")
  20930. },
  20931. {
  20932. name: "Megamacro",
  20933. height: math.unit(1000, "miles")
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20939. {
  20940. front: {
  20941. height: math.unit(6, "feet"),
  20942. weight: math.unit(150, "lb"),
  20943. name: "Front",
  20944. image: {
  20945. source: "./media/characters/tendirmuldr/front.svg",
  20946. extra: 1878 / 1772,
  20947. bottom: 0.015
  20948. }
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Megamacro",
  20954. height: math.unit(1500, "miles"),
  20955. default: true
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20961. {
  20962. front: {
  20963. height: math.unit(14, "feet"),
  20964. weight: math.unit(12000, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/mort/front.svg",
  20968. extra: 365 / 318,
  20969. bottom: 0.01
  20970. }
  20971. },
  20972. side: {
  20973. height: math.unit(14, "feet"),
  20974. weight: math.unit(12000, "lb"),
  20975. name: "Side",
  20976. image: {
  20977. source: "./media/characters/mort/side.svg",
  20978. extra: 365 / 318,
  20979. bottom: 0.052
  20980. },
  20981. default: true
  20982. },
  20983. back: {
  20984. height: math.unit(14, "feet"),
  20985. weight: math.unit(12000, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/mort/back.svg",
  20989. extra: 371 / 332,
  20990. bottom: 0.18
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(14, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21004. {
  21005. front: {
  21006. height: math.unit(8, "feet"),
  21007. weight: math.unit(1, "ton"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/lycoa/front.svg",
  21011. extra: 1836/1728,
  21012. bottom: 81/1917
  21013. }
  21014. },
  21015. back: {
  21016. height: math.unit(8, "feet"),
  21017. weight: math.unit(1, "ton"),
  21018. name: "Back",
  21019. image: {
  21020. source: "./media/characters/lycoa/back.svg",
  21021. extra: 1785/1720,
  21022. bottom: 91/1876
  21023. }
  21024. },
  21025. head: {
  21026. height: math.unit(1.6243, "feet"),
  21027. name: "Head",
  21028. image: {
  21029. source: "./media/characters/lycoa/head.svg",
  21030. extra: 1011/782,
  21031. bottom: 0/1011
  21032. }
  21033. },
  21034. tailmaw: {
  21035. height: math.unit(1.9, "feet"),
  21036. name: "Tailmaw",
  21037. image: {
  21038. source: "./media/characters/lycoa/tailmaw.svg"
  21039. }
  21040. },
  21041. tentacles: {
  21042. height: math.unit(2.1, "feet"),
  21043. name: "Tentacles",
  21044. image: {
  21045. source: "./media/characters/lycoa/tentacles.svg"
  21046. }
  21047. },
  21048. dick: {
  21049. height: math.unit(1.73, "feet"),
  21050. name: "Dick",
  21051. image: {
  21052. source: "./media/characters/lycoa/dick.svg"
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Normal",
  21059. height: math.unit(8, "feet"),
  21060. default: true
  21061. },
  21062. {
  21063. name: "Macro",
  21064. height: math.unit(30, "feet")
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21070. {
  21071. front: {
  21072. height: math.unit(4 + 2 / 12, "feet"),
  21073. weight: math.unit(70, "lb"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/naldara/front.svg",
  21077. extra: 1664/1387,
  21078. bottom: 81/1745
  21079. },
  21080. form: "anthro",
  21081. default: true
  21082. },
  21083. naga: {
  21084. height: math.unit(20, "feet"),
  21085. weight: math.unit(15000, "kg"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/naldara/naga.svg",
  21089. extra: 1590/1396,
  21090. bottom: 285/1875
  21091. },
  21092. form: "naga",
  21093. default: true
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Normal",
  21099. height: math.unit(4 + 2 / 12, "feet"),
  21100. form: "anthro",
  21101. default: true
  21102. },
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(20, "feet"),
  21106. form: "naga",
  21107. default: true
  21108. },
  21109. ],
  21110. {
  21111. "anthro": {
  21112. name: "Anthro",
  21113. default: true
  21114. },
  21115. "naga": {
  21116. name: "Naga"
  21117. }
  21118. }
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(13 + 7 / 12, "feet"),
  21125. weight: math.unit(1500, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/briar/front.svg",
  21129. extra: 1223/1157,
  21130. bottom: 123/1346
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Normal",
  21137. height: math.unit(13 + 7 / 12, "feet"),
  21138. default: true
  21139. },
  21140. ]
  21141. ))
  21142. characterMakers.push(() => makeCharacter(
  21143. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21144. {
  21145. side: {
  21146. height: math.unit(16, "feet"),
  21147. weight: math.unit(500, "lb"),
  21148. name: "Side",
  21149. image: {
  21150. source: "./media/characters/vanguard/side.svg",
  21151. extra: 1022/914,
  21152. bottom: 30/1052
  21153. }
  21154. },
  21155. sideAlt: {
  21156. height: math.unit(10, "feet"),
  21157. weight: math.unit(500, "lb"),
  21158. name: "Side (Alt)",
  21159. image: {
  21160. source: "./media/characters/vanguard/side-alt.svg",
  21161. extra: 502 / 425,
  21162. bottom: 0.087
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(17.71, "feet"),
  21170. default: true
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21176. {
  21177. front: {
  21178. height: math.unit(7.5, "feet"),
  21179. weight: math.unit(2, "lb"),
  21180. name: "Front",
  21181. image: {
  21182. source: "./media/characters/artemis/work-safe-front.svg",
  21183. extra: 1192 / 1075,
  21184. bottom: 0.07
  21185. },
  21186. form: "work-safe",
  21187. default: true
  21188. },
  21189. frontNsfw: {
  21190. height: math.unit(7.5, "feet"),
  21191. weight: math.unit(2, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/artemis/calibrating-front.svg",
  21195. extra: 1192 / 1075,
  21196. bottom: 0.07
  21197. },
  21198. form: "calibrating",
  21199. default: true
  21200. },
  21201. frontNsfwer: {
  21202. height: math.unit(7.5, "feet"),
  21203. weight: math.unit(2, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/artemis/oversize-load-front.svg",
  21207. extra: 1192 / 1075,
  21208. bottom: 0.07
  21209. },
  21210. form: "oversize-load",
  21211. default: true
  21212. },
  21213. side: {
  21214. height: math.unit(7.5, "feet"),
  21215. weight: math.unit(2, "lb"),
  21216. name: "Side",
  21217. image: {
  21218. source: "./media/characters/artemis/work-safe-side.svg",
  21219. extra: 1192 / 1075,
  21220. bottom: 0.07
  21221. },
  21222. form: "work-safe"
  21223. },
  21224. sideNsfw: {
  21225. height: math.unit(7.5, "feet"),
  21226. weight: math.unit(2, "lb"),
  21227. name: "Side",
  21228. image: {
  21229. source: "./media/characters/artemis/calibrating-side.svg",
  21230. extra: 1192 / 1075,
  21231. bottom: 0.07
  21232. },
  21233. form: "calibrating"
  21234. },
  21235. sideNsfwer: {
  21236. height: math.unit(7.5, "feet"),
  21237. weight: math.unit(2, "lb"),
  21238. name: "Side",
  21239. image: {
  21240. source: "./media/characters/artemis/oversize-load-side.svg",
  21241. extra: 1192 / 1075,
  21242. bottom: 0.07
  21243. },
  21244. form: "oversize-load"
  21245. },
  21246. maw: {
  21247. height: math.unit(1.1, "feet"),
  21248. name: "Maw",
  21249. image: {
  21250. source: "./media/characters/artemis/maw.svg"
  21251. },
  21252. form: "work-safe"
  21253. },
  21254. stomach: {
  21255. height: math.unit(0.95, "feet"),
  21256. name: "Stomach",
  21257. image: {
  21258. source: "./media/characters/artemis/stomach.svg"
  21259. },
  21260. form: "work-safe"
  21261. },
  21262. dickCanine: {
  21263. height: math.unit(1, "feet"),
  21264. name: "Dick (Canine)",
  21265. image: {
  21266. source: "./media/characters/artemis/dick-canine.svg"
  21267. },
  21268. form: "calibrating"
  21269. },
  21270. dickEquine: {
  21271. height: math.unit(0.85, "feet"),
  21272. name: "Dick (Equine)",
  21273. image: {
  21274. source: "./media/characters/artemis/dick-equine.svg"
  21275. },
  21276. form: "calibrating"
  21277. },
  21278. dickExotic: {
  21279. height: math.unit(0.85, "feet"),
  21280. name: "Dick (Exotic)",
  21281. image: {
  21282. source: "./media/characters/artemis/dick-exotic.svg"
  21283. },
  21284. form: "calibrating"
  21285. },
  21286. dickCanineBigger: {
  21287. height: math.unit(1 * 1.33, "feet"),
  21288. name: "Dick (Canine)",
  21289. image: {
  21290. source: "./media/characters/artemis/dick-canine.svg"
  21291. },
  21292. form: "oversize-load"
  21293. },
  21294. dickEquineBigger: {
  21295. height: math.unit(0.85 * 1.33, "feet"),
  21296. name: "Dick (Equine)",
  21297. image: {
  21298. source: "./media/characters/artemis/dick-equine.svg"
  21299. },
  21300. form: "oversize-load"
  21301. },
  21302. dickExoticBigger: {
  21303. height: math.unit(0.85 * 1.33, "feet"),
  21304. name: "Dick (Exotic)",
  21305. image: {
  21306. source: "./media/characters/artemis/dick-exotic.svg"
  21307. },
  21308. form: "oversize-load"
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(7.5, "feet"),
  21315. form: "work-safe",
  21316. default: true
  21317. },
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(7.5, "feet"),
  21321. form: "calibrating",
  21322. default: true
  21323. },
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(7.5, "feet"),
  21327. form: "oversize-load",
  21328. default: true
  21329. },
  21330. {
  21331. name: "Enlarged",
  21332. height: math.unit(12, "feet"),
  21333. form: "work-safe",
  21334. },
  21335. {
  21336. name: "Enlarged",
  21337. height: math.unit(12, "feet"),
  21338. form: "calibrating",
  21339. },
  21340. {
  21341. name: "Enlarged",
  21342. height: math.unit(12, "feet"),
  21343. form: "oversize-load",
  21344. },
  21345. ],
  21346. {
  21347. "work-safe": {
  21348. name: "Work-Safe",
  21349. default: true
  21350. },
  21351. "calibrating": {
  21352. name: "Calibrating"
  21353. },
  21354. "oversize-load": {
  21355. name: "Oversize Load"
  21356. }
  21357. }
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(5 + 3 / 12, "feet"),
  21364. weight: math.unit(160, "lb"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/kira/front.svg",
  21368. extra: 906 / 786,
  21369. bottom: 0.01
  21370. }
  21371. },
  21372. back: {
  21373. height: math.unit(5 + 3 / 12, "feet"),
  21374. weight: math.unit(160, "lb"),
  21375. name: "Back",
  21376. image: {
  21377. source: "./media/characters/kira/back.svg",
  21378. extra: 882 / 757,
  21379. bottom: 0.005
  21380. }
  21381. },
  21382. frontDressed: {
  21383. height: math.unit(5 + 3 / 12, "feet"),
  21384. weight: math.unit(160, "lb"),
  21385. name: "Front (Dressed)",
  21386. image: {
  21387. source: "./media/characters/kira/front-dressed.svg",
  21388. extra: 906 / 786,
  21389. bottom: 0.01
  21390. }
  21391. },
  21392. beans: {
  21393. height: math.unit(0.92, "feet"),
  21394. name: "Beans",
  21395. image: {
  21396. source: "./media/characters/kira/beans.svg"
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(5 + 3 / 12, "feet"),
  21404. default: true
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(5 + 4 / 12, "feet"),
  21413. weight: math.unit(145, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/scramble/front.svg",
  21417. extra: 763 / 727,
  21418. bottom: 0.05
  21419. }
  21420. },
  21421. back: {
  21422. height: math.unit(5 + 4 / 12, "feet"),
  21423. weight: math.unit(145, "lb"),
  21424. name: "Back",
  21425. image: {
  21426. source: "./media/characters/scramble/back.svg",
  21427. extra: 826 / 737,
  21428. bottom: 0.002
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(5 + 4 / 12, "feet"),
  21436. default: true
  21437. },
  21438. ]
  21439. ))
  21440. characterMakers.push(() => makeCharacter(
  21441. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21442. {
  21443. side: {
  21444. height: math.unit(6 + 2 / 12, "feet"),
  21445. weight: math.unit(190, "lb"),
  21446. name: "Side",
  21447. image: {
  21448. source: "./media/characters/biscuit/side.svg",
  21449. extra: 858 / 791,
  21450. bottom: 0.044
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(6 + 2 / 12, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21464. {
  21465. front: {
  21466. height: math.unit(5 + 2 / 12, "feet"),
  21467. weight: math.unit(120, "lb"),
  21468. name: "Front",
  21469. image: {
  21470. source: "./media/characters/poffin/front.svg",
  21471. extra: 786 / 680,
  21472. bottom: 0.005
  21473. }
  21474. },
  21475. },
  21476. [
  21477. {
  21478. name: "Normal",
  21479. height: math.unit(5 + 2 / 12, "feet"),
  21480. default: true
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(6 + 3 / 12, "feet"),
  21489. weight: math.unit(519, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/dhari/front.svg",
  21493. extra: 1048 / 946,
  21494. bottom: 0.015
  21495. }
  21496. },
  21497. back: {
  21498. height: math.unit(6 + 3 / 12, "feet"),
  21499. weight: math.unit(519, "lb"),
  21500. name: "Back",
  21501. image: {
  21502. source: "./media/characters/dhari/back.svg",
  21503. extra: 1048 / 931,
  21504. bottom: 0.005
  21505. }
  21506. },
  21507. frontDressed: {
  21508. height: math.unit(6 + 3 / 12, "feet"),
  21509. weight: math.unit(519, "lb"),
  21510. name: "Front (Dressed)",
  21511. image: {
  21512. source: "./media/characters/dhari/front-dressed.svg",
  21513. extra: 1713 / 1546,
  21514. bottom: 0.02
  21515. }
  21516. },
  21517. backDressed: {
  21518. height: math.unit(6 + 3 / 12, "feet"),
  21519. weight: math.unit(519, "lb"),
  21520. name: "Back (Dressed)",
  21521. image: {
  21522. source: "./media/characters/dhari/back-dressed.svg",
  21523. extra: 1699 / 1537,
  21524. bottom: 0.01
  21525. }
  21526. },
  21527. maw: {
  21528. height: math.unit(0.95, "feet"),
  21529. name: "Maw",
  21530. image: {
  21531. source: "./media/characters/dhari/maw.svg"
  21532. }
  21533. },
  21534. wereFront: {
  21535. height: math.unit(12 + 8 / 12, "feet"),
  21536. weight: math.unit(4000, "lb"),
  21537. name: "Front (Were)",
  21538. image: {
  21539. source: "./media/characters/dhari/were-front.svg",
  21540. extra: 1065 / 969,
  21541. bottom: 0.015
  21542. }
  21543. },
  21544. wereBack: {
  21545. height: math.unit(12 + 8 / 12, "feet"),
  21546. weight: math.unit(4000, "lb"),
  21547. name: "Back (Were)",
  21548. image: {
  21549. source: "./media/characters/dhari/were-back.svg",
  21550. extra: 1065 / 969,
  21551. bottom: 0.012
  21552. }
  21553. },
  21554. wereMaw: {
  21555. height: math.unit(0.625, "meters"),
  21556. name: "Maw (Were)",
  21557. image: {
  21558. source: "./media/characters/dhari/were-maw.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(6 + 3 / 12, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21572. {
  21573. anthro: {
  21574. height: math.unit(5 + 7 / 12, "feet"),
  21575. weight: math.unit(175, "lb"),
  21576. name: "Anthro",
  21577. image: {
  21578. source: "./media/characters/rena-dyne/anthro.svg",
  21579. extra: 1849 / 1785,
  21580. bottom: 0.005
  21581. }
  21582. },
  21583. taur: {
  21584. height: math.unit(15 + 6 / 12, "feet"),
  21585. weight: math.unit(8000, "lb"),
  21586. name: "Taur",
  21587. image: {
  21588. source: "./media/characters/rena-dyne/taur.svg",
  21589. extra: 2315 / 2234,
  21590. bottom: 0.033
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(5 + 7 / 12, "feet"),
  21598. default: true
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21604. {
  21605. front: {
  21606. height: math.unit(8, "feet"),
  21607. weight: math.unit(600, "lb"),
  21608. name: "Front",
  21609. image: {
  21610. source: "./media/characters/weremeep/front.svg",
  21611. extra: 967 / 862,
  21612. bottom: 0.01
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(8, "feet"),
  21620. default: true
  21621. },
  21622. {
  21623. name: "Lorg",
  21624. height: math.unit(12, "feet")
  21625. },
  21626. {
  21627. name: "Oh Lawd She Comin'",
  21628. height: math.unit(20, "feet")
  21629. },
  21630. ]
  21631. ))
  21632. characterMakers.push(() => makeCharacter(
  21633. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21634. {
  21635. front: {
  21636. height: math.unit(4, "feet"),
  21637. weight: math.unit(90, "lb"),
  21638. name: "Front",
  21639. image: {
  21640. source: "./media/characters/reza/front.svg",
  21641. extra: 1183 / 1111,
  21642. bottom: 0.017
  21643. }
  21644. },
  21645. back: {
  21646. height: math.unit(4, "feet"),
  21647. weight: math.unit(90, "lb"),
  21648. name: "Back",
  21649. image: {
  21650. source: "./media/characters/reza/back.svg",
  21651. extra: 1183 / 1111,
  21652. bottom: 0.01
  21653. }
  21654. },
  21655. drake: {
  21656. height: math.unit(30, "feet"),
  21657. weight: math.unit(246960, "lb"),
  21658. name: "Drake",
  21659. image: {
  21660. source: "./media/characters/reza/drake.svg",
  21661. extra: 2350 / 2024,
  21662. bottom: 60.7 / 2403
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Normal",
  21669. height: math.unit(4, "feet"),
  21670. default: true
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21676. {
  21677. side: {
  21678. height: math.unit(15, "feet"),
  21679. weight: math.unit(14, "tons"),
  21680. name: "Side",
  21681. image: {
  21682. source: "./media/characters/athea/side.svg",
  21683. extra: 960 / 540,
  21684. bottom: 0.003
  21685. }
  21686. },
  21687. sitting: {
  21688. height: math.unit(6 * 2.85, "feet"),
  21689. weight: math.unit(14, "tons"),
  21690. name: "Sitting",
  21691. image: {
  21692. source: "./media/characters/athea/sitting.svg",
  21693. extra: 621 / 581,
  21694. bottom: 0.075
  21695. }
  21696. },
  21697. maw: {
  21698. height: math.unit(7.59498031496063, "feet"),
  21699. name: "Maw",
  21700. image: {
  21701. source: "./media/characters/athea/maw.svg"
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Lap Cat",
  21708. height: math.unit(2.5, "feet")
  21709. },
  21710. {
  21711. name: "Minimacro",
  21712. height: math.unit(15, "feet"),
  21713. default: true
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(120, "feet")
  21718. },
  21719. {
  21720. name: "Macro+",
  21721. height: math.unit(640, "feet")
  21722. },
  21723. {
  21724. name: "Colossus",
  21725. height: math.unit(2.2, "miles")
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(8 + 8 / 12, "feet"),
  21734. weight: math.unit(130, "kg"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/seroko/front.svg",
  21738. extra: 1385 / 1280,
  21739. bottom: 0.025
  21740. }
  21741. },
  21742. back: {
  21743. height: math.unit(8 + 8 / 12, "feet"),
  21744. weight: math.unit(130, "kg"),
  21745. name: "Back",
  21746. image: {
  21747. source: "./media/characters/seroko/back.svg",
  21748. extra: 1369 / 1238,
  21749. bottom: 0.018
  21750. }
  21751. },
  21752. frontDressed: {
  21753. height: math.unit(8 + 8 / 12, "feet"),
  21754. weight: math.unit(130, "kg"),
  21755. name: "Front (Dressed)",
  21756. image: {
  21757. source: "./media/characters/seroko/front-dressed.svg",
  21758. extra: 1366 / 1275,
  21759. bottom: 0.03
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(8 + 8 / 12, "feet"),
  21767. default: true
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(5.5, "feet"),
  21776. weight: math.unit(160, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/quatzi/front.svg",
  21780. extra: 2346 / 2242,
  21781. bottom: 0.015
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5.5, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Big",
  21793. height: math.unit(7.7, "feet")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(5 + 11 / 12, "feet"),
  21802. weight: math.unit(180, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/sen/front.svg",
  21806. extra: 1321 / 1254,
  21807. bottom: 0.015
  21808. }
  21809. },
  21810. side: {
  21811. height: math.unit(5 + 11 / 12, "feet"),
  21812. weight: math.unit(180, "lb"),
  21813. name: "Side",
  21814. image: {
  21815. source: "./media/characters/sen/side.svg",
  21816. extra: 1321 / 1254,
  21817. bottom: 0.007
  21818. }
  21819. },
  21820. back: {
  21821. height: math.unit(5 + 11 / 12, "feet"),
  21822. weight: math.unit(180, "lb"),
  21823. name: "Back",
  21824. image: {
  21825. source: "./media/characters/sen/back.svg",
  21826. extra: 1321 / 1254
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(5 + 11 / 12, "feet"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(166.6, "cm"),
  21843. weight: math.unit(66.6, "kg"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/fruity/front.svg",
  21847. extra: 1510 / 1386,
  21848. bottom: 0.04
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(166.6, "cm"),
  21853. weight: math.unit(66.6, "lb"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/fruity/back.svg",
  21857. extra: 1563 / 1435,
  21858. bottom: 0.005
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(166.6, "cm"),
  21866. default: true
  21867. },
  21868. {
  21869. name: "Demonic",
  21870. height: math.unit(166.6, "feet")
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21876. {
  21877. side: {
  21878. height: math.unit(10, "feet"),
  21879. weight: math.unit(500, "lb"),
  21880. name: "Side",
  21881. image: {
  21882. source: "./media/characters/zost/side.svg",
  21883. extra: 2870/2533,
  21884. bottom: 252/3122
  21885. }
  21886. },
  21887. mawFront: {
  21888. height: math.unit(1.08, "meters"),
  21889. name: "Maw (Front)",
  21890. image: {
  21891. source: "./media/characters/zost/maw-front.svg"
  21892. }
  21893. },
  21894. mawSide: {
  21895. height: math.unit(2.66, "feet"),
  21896. name: "Maw (Side)",
  21897. image: {
  21898. source: "./media/characters/zost/maw-side.svg"
  21899. }
  21900. },
  21901. wingspan: {
  21902. height: math.unit(7.4, "feet"),
  21903. name: "Wingspan",
  21904. image: {
  21905. source: "./media/characters/zost/wingspan.svg"
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(10, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(5 + 4 / 12, "feet"),
  21922. weight: math.unit(120, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/luci/front.svg",
  21926. extra: 1985 / 1884,
  21927. bottom: 0.04
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(5 + 4 / 12, "feet"),
  21932. weight: math.unit(120, "lb"),
  21933. name: "Back",
  21934. image: {
  21935. source: "./media/characters/luci/back.svg",
  21936. extra: 1892 / 1791,
  21937. bottom: 0.002
  21938. }
  21939. },
  21940. },
  21941. [
  21942. {
  21943. name: "Normal",
  21944. height: math.unit(5 + 4 / 12, "feet"),
  21945. default: true
  21946. },
  21947. ]
  21948. ))
  21949. characterMakers.push(() => makeCharacter(
  21950. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21951. {
  21952. front: {
  21953. height: math.unit(1500, "feet"),
  21954. weight: math.unit(3.8e6, "tons"),
  21955. name: "Front",
  21956. image: {
  21957. source: "./media/characters/2th/front.svg",
  21958. extra: 3489 / 3350,
  21959. bottom: 0.1
  21960. }
  21961. },
  21962. foot: {
  21963. height: math.unit(461, "feet"),
  21964. name: "Foot",
  21965. image: {
  21966. source: "./media/characters/2th/foot.svg"
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "\"Micro\"",
  21973. height: math.unit(15 + 7 / 12, "feet")
  21974. },
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(1500, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(5000, "feet")
  21983. },
  21984. {
  21985. name: "Megamacro",
  21986. height: math.unit(15, "miles")
  21987. },
  21988. {
  21989. name: "Gigamacro",
  21990. height: math.unit(4000, "miles")
  21991. },
  21992. {
  21993. name: "Galactic",
  21994. height: math.unit(50, "AU")
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22000. {
  22001. front: {
  22002. height: math.unit(5 + 6 / 12, "feet"),
  22003. weight: math.unit(220, "lb"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/amethyst/front.svg",
  22007. extra: 2078 / 2040,
  22008. bottom: 0.045
  22009. }
  22010. },
  22011. back: {
  22012. height: math.unit(5 + 6 / 12, "feet"),
  22013. weight: math.unit(220, "lb"),
  22014. name: "Back",
  22015. image: {
  22016. source: "./media/characters/amethyst/back.svg",
  22017. extra: 2021 / 1989,
  22018. bottom: 0.02
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(5 + 6 / 12, "feet"),
  22026. default: true
  22027. },
  22028. ]
  22029. ))
  22030. characterMakers.push(() => makeCharacter(
  22031. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22032. {
  22033. front: {
  22034. height: math.unit(4 + 11 / 12, "feet"),
  22035. weight: math.unit(120, "lb"),
  22036. name: "Front",
  22037. image: {
  22038. source: "./media/characters/yumi-akiyama/front.svg",
  22039. extra: 1327 / 1235,
  22040. bottom: 0.02
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(4 + 11 / 12, "feet"),
  22045. weight: math.unit(120, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/yumi-akiyama/back.svg",
  22049. extra: 1287 / 1245,
  22050. bottom: 0.002
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Galactic",
  22057. height: math.unit(50, "galaxies"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Universal",
  22062. height: math.unit(100, "universes")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(8, "feet"),
  22071. weight: math.unit(500, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/rifter-yrmori/front.svg",
  22075. extra: 1180 / 1125,
  22076. bottom: 0.02
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(8, "feet"),
  22081. weight: math.unit(500, "lb"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/rifter-yrmori/back.svg",
  22085. extra: 1190 / 1145,
  22086. bottom: 0.001
  22087. }
  22088. },
  22089. wings: {
  22090. height: math.unit(7.75, "feet"),
  22091. weight: math.unit(500, "lb"),
  22092. name: "Wings",
  22093. image: {
  22094. source: "./media/characters/rifter-yrmori/wings.svg",
  22095. extra: 1357 / 1285
  22096. }
  22097. },
  22098. maw: {
  22099. height: math.unit(0.8, "feet"),
  22100. name: "Maw",
  22101. image: {
  22102. source: "./media/characters/rifter-yrmori/maw.svg"
  22103. }
  22104. },
  22105. mawfront: {
  22106. height: math.unit(1.45, "feet"),
  22107. name: "Maw (Front)",
  22108. image: {
  22109. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(8, "feet"),
  22117. default: true
  22118. },
  22119. {
  22120. name: "Macro",
  22121. height: math.unit(42, "meters")
  22122. },
  22123. ]
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22127. {
  22128. were: {
  22129. height: math.unit(25 + 6 / 12, "feet"),
  22130. weight: math.unit(10000, "lb"),
  22131. name: "Were",
  22132. image: {
  22133. source: "./media/characters/tahajin/were.svg",
  22134. extra: 801 / 770,
  22135. bottom: 0.042
  22136. }
  22137. },
  22138. aquatic: {
  22139. height: math.unit(6 + 4 / 12, "feet"),
  22140. weight: math.unit(160, "lb"),
  22141. name: "Aquatic",
  22142. image: {
  22143. source: "./media/characters/tahajin/aquatic.svg",
  22144. extra: 572 / 542,
  22145. bottom: 0.04
  22146. }
  22147. },
  22148. chow: {
  22149. height: math.unit(8 + 11 / 12, "feet"),
  22150. weight: math.unit(450, "lb"),
  22151. name: "Chow",
  22152. image: {
  22153. source: "./media/characters/tahajin/chow.svg",
  22154. extra: 660 / 640,
  22155. bottom: 0.015
  22156. }
  22157. },
  22158. demiNaga: {
  22159. height: math.unit(6 + 8 / 12, "feet"),
  22160. weight: math.unit(300, "lb"),
  22161. name: "Demi Naga",
  22162. image: {
  22163. source: "./media/characters/tahajin/demi-naga.svg",
  22164. extra: 643 / 615,
  22165. bottom: 0.1
  22166. }
  22167. },
  22168. data: {
  22169. height: math.unit(5, "inches"),
  22170. weight: math.unit(0.1, "lb"),
  22171. name: "Data",
  22172. image: {
  22173. source: "./media/characters/tahajin/data.svg"
  22174. }
  22175. },
  22176. fluu: {
  22177. height: math.unit(5 + 7 / 12, "feet"),
  22178. weight: math.unit(140, "lb"),
  22179. name: "Fluu",
  22180. image: {
  22181. source: "./media/characters/tahajin/fluu.svg",
  22182. extra: 628 / 592,
  22183. bottom: 0.02
  22184. }
  22185. },
  22186. starWarrior: {
  22187. height: math.unit(4 + 5 / 12, "feet"),
  22188. weight: math.unit(50, "lb"),
  22189. name: "Star Warrior",
  22190. image: {
  22191. source: "./media/characters/tahajin/star-warrior.svg"
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(25 + 6 / 12, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(8, "feet"),
  22208. weight: math.unit(350, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/gabira/front.svg",
  22212. extra: 608 / 580,
  22213. bottom: 0.03
  22214. }
  22215. },
  22216. back: {
  22217. height: math.unit(8, "feet"),
  22218. weight: math.unit(350, "lb"),
  22219. name: "Back",
  22220. image: {
  22221. source: "./media/characters/gabira/back.svg",
  22222. extra: 608 / 580,
  22223. bottom: 0.03
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(8, "feet"),
  22231. default: true
  22232. },
  22233. ]
  22234. ))
  22235. characterMakers.push(() => makeCharacter(
  22236. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22237. {
  22238. front: {
  22239. height: math.unit(5 + 3 / 12, "feet"),
  22240. weight: math.unit(137, "lb"),
  22241. name: "Front",
  22242. image: {
  22243. source: "./media/characters/sasha-katraine/front.svg",
  22244. extra: 1745/1694,
  22245. bottom: 37/1782
  22246. }
  22247. },
  22248. back: {
  22249. height: math.unit(5 + 3 / 12, "feet"),
  22250. weight: math.unit(137, "lb"),
  22251. name: "Back",
  22252. image: {
  22253. source: "./media/characters/sasha-katraine/back.svg",
  22254. extra: 1776/1699,
  22255. bottom: 26/1802
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Micro",
  22262. height: math.unit(5, "inches")
  22263. },
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5 + 3 / 12, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22273. {
  22274. side: {
  22275. height: math.unit(4, "inches"),
  22276. weight: math.unit(200, "grams"),
  22277. name: "Side",
  22278. image: {
  22279. source: "./media/characters/der/side.svg",
  22280. extra: 719 / 400,
  22281. bottom: 30.6 / 749.9187
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Micro",
  22288. height: math.unit(4, "inches"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22295. {
  22296. side: {
  22297. height: math.unit(30, "meters"),
  22298. weight: math.unit(700, "tonnes"),
  22299. name: "Side",
  22300. image: {
  22301. source: "./media/characters/fixerdragon/side.svg",
  22302. extra: (1293.0514 - 116.03) / 1106.86,
  22303. bottom: 116.03 / 1293.0514
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Planck",
  22310. height: math.unit(1.6e-35, "meters")
  22311. },
  22312. {
  22313. name: "Micro",
  22314. height: math.unit(0.4, "meters")
  22315. },
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(30, "meters"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Megamacro",
  22323. height: math.unit(1.2, "megameters")
  22324. },
  22325. {
  22326. name: "Teramacro",
  22327. height: math.unit(130, "terameters")
  22328. },
  22329. {
  22330. name: "Yottamacro",
  22331. height: math.unit(6200, "yottameters")
  22332. },
  22333. ]
  22334. ));
  22335. characterMakers.push(() => makeCharacter(
  22336. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22337. {
  22338. front: {
  22339. height: math.unit(8, "feet"),
  22340. weight: math.unit(250, "lb"),
  22341. name: "Front",
  22342. image: {
  22343. source: "./media/characters/kite/front.svg",
  22344. extra: 2796 / 2659,
  22345. bottom: 0.002
  22346. }
  22347. },
  22348. },
  22349. [
  22350. {
  22351. name: "Normal",
  22352. height: math.unit(8, "feet"),
  22353. default: true
  22354. },
  22355. {
  22356. name: "Macro",
  22357. height: math.unit(360, "feet")
  22358. },
  22359. {
  22360. name: "Megamacro",
  22361. height: math.unit(1500, "feet")
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 11/12, "feet"),
  22370. weight: math.unit(170, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/poojawa-vynar/front.svg",
  22374. extra: 1735/1585,
  22375. bottom: 96/1831
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(5 + 11/12, "feet"),
  22380. weight: math.unit(170, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/poojawa-vynar/back.svg",
  22384. extra: 1749/1607,
  22385. bottom: 28/1777
  22386. }
  22387. },
  22388. male: {
  22389. height: math.unit(5 + 11/12, "feet"),
  22390. weight: math.unit(170, "lb"),
  22391. name: "Male",
  22392. image: {
  22393. source: "./media/characters/poojawa-vynar/male.svg",
  22394. extra: 1855/1713,
  22395. bottom: 63/1918
  22396. }
  22397. },
  22398. taur: {
  22399. height: math.unit(5 + 11/12, "feet"),
  22400. weight: math.unit(170, "lb"),
  22401. name: "Taur",
  22402. image: {
  22403. source: "./media/characters/poojawa-vynar/taur.svg",
  22404. extra: 1151/1059,
  22405. bottom: 356/1507
  22406. }
  22407. },
  22408. frontDressed: {
  22409. height: math.unit(5 + 11/12, "feet"),
  22410. weight: math.unit(170, "lb"),
  22411. name: "Front (Dressed)",
  22412. image: {
  22413. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22414. extra: 1735/1585,
  22415. bottom: 96/1831
  22416. }
  22417. },
  22418. backDressed: {
  22419. height: math.unit(5 + 11/12, "feet"),
  22420. weight: math.unit(170, "lb"),
  22421. name: "Back (Dressed)",
  22422. image: {
  22423. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22424. extra: 1749/1607,
  22425. bottom: 28/1777
  22426. }
  22427. },
  22428. maleDressed: {
  22429. height: math.unit(5 + 11/12, "feet"),
  22430. weight: math.unit(170, "lb"),
  22431. name: "Male (Dressed)",
  22432. image: {
  22433. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22434. extra: 1855/1713,
  22435. bottom: 63/1918
  22436. }
  22437. },
  22438. taurDressed: {
  22439. height: math.unit(5 + 11/12, "feet"),
  22440. weight: math.unit(170, "lb"),
  22441. name: "Taur (Dressed)",
  22442. image: {
  22443. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22444. extra: 1151/1059,
  22445. bottom: 356/1507
  22446. }
  22447. },
  22448. maw: {
  22449. height: math.unit(1.46, "feet"),
  22450. name: "Maw",
  22451. image: {
  22452. source: "./media/characters/poojawa-vynar/maw.svg"
  22453. }
  22454. },
  22455. head: {
  22456. height: math.unit(2.34, "feet"),
  22457. name: "Head",
  22458. image: {
  22459. source: "./media/characters/poojawa-vynar/head.svg"
  22460. }
  22461. },
  22462. paw: {
  22463. height: math.unit(1.61, "feet"),
  22464. name: "Paw",
  22465. image: {
  22466. source: "./media/characters/poojawa-vynar/paw.svg"
  22467. }
  22468. },
  22469. pawToering: {
  22470. height: math.unit(1.72, "feet"),
  22471. name: "Paw (Toering)",
  22472. image: {
  22473. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22474. }
  22475. },
  22476. toering: {
  22477. height: math.unit(2.9, "inches"),
  22478. name: "Toering",
  22479. image: {
  22480. source: "./media/characters/poojawa-vynar/toering.svg"
  22481. }
  22482. },
  22483. shaft: {
  22484. height: math.unit(0.625, "feet"),
  22485. name: "Shaft",
  22486. image: {
  22487. source: "./media/characters/poojawa-vynar/shaft.svg"
  22488. }
  22489. },
  22490. spade: {
  22491. height: math.unit(0.42, "feet"),
  22492. name: "Spade",
  22493. image: {
  22494. source: "./media/characters/poojawa-vynar/spade.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Shortstack",
  22501. height: math.unit(4, "feet")
  22502. },
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(5 + 11 / 12, "feet"),
  22506. default: true
  22507. },
  22508. {
  22509. name: "Tauric",
  22510. height: math.unit(4, "meters")
  22511. },
  22512. ]
  22513. ))
  22514. characterMakers.push(() => makeCharacter(
  22515. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22516. {
  22517. front: {
  22518. height: math.unit(293, "meters"),
  22519. weight: math.unit(70400, "tons"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/violette/front.svg",
  22523. extra: 1227 / 1180,
  22524. bottom: 0.005
  22525. }
  22526. },
  22527. back: {
  22528. height: math.unit(293, "meters"),
  22529. weight: math.unit(70400, "tons"),
  22530. name: "Back",
  22531. image: {
  22532. source: "./media/characters/violette/back.svg",
  22533. extra: 1227 / 1180,
  22534. bottom: 0.005
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Macro",
  22541. height: math.unit(293, "meters"),
  22542. default: true
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22548. {
  22549. front: {
  22550. height: math.unit(1050, "feet"),
  22551. weight: math.unit(200000, "tons"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/alessandra/front.svg",
  22555. extra: 960 / 912,
  22556. bottom: 0.06
  22557. }
  22558. },
  22559. },
  22560. [
  22561. {
  22562. name: "Macro",
  22563. height: math.unit(1050, "feet")
  22564. },
  22565. {
  22566. name: "Macro+",
  22567. height: math.unit(900, "meters"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(5, "feet"),
  22577. weight: math.unit(187, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/person/front.svg",
  22581. extra: 3087 / 2945,
  22582. bottom: 91 / 3181
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Micro",
  22589. height: math.unit(3, "inches")
  22590. },
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(5, "feet"),
  22594. default: true
  22595. },
  22596. {
  22597. name: "Macro",
  22598. height: math.unit(90, "feet")
  22599. },
  22600. {
  22601. name: "Max Size",
  22602. height: math.unit(280, "feet")
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(4.5, "meters"),
  22611. weight: math.unit(3200, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/ty/front.svg",
  22615. extra: 1038 / 960,
  22616. bottom: 31.156 / 1068
  22617. }
  22618. },
  22619. back: {
  22620. height: math.unit(4.5, "meters"),
  22621. weight: math.unit(3200, "lb"),
  22622. name: "Back",
  22623. image: {
  22624. source: "./media/characters/ty/back.svg",
  22625. extra: 1044 / 966,
  22626. bottom: 7.48 / 1049
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(4.5, "meters"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(5 + 4 / 12, "feet"),
  22643. weight: math.unit(115, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/rocky/front.svg",
  22647. extra: 1012 / 975,
  22648. bottom: 54 / 1066
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(5 + 4 / 12, "feet"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22662. {
  22663. upright: {
  22664. height: math.unit(6, "meters"),
  22665. weight: math.unit(4000, "kg"),
  22666. name: "Upright",
  22667. image: {
  22668. source: "./media/characters/ruin/upright.svg",
  22669. extra: 668 / 661,
  22670. bottom: 42 / 799.8396
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(6, "meters"),
  22678. default: true
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22684. {
  22685. front: {
  22686. height: math.unit(5, "feet"),
  22687. weight: math.unit(106, "lb"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/robin/front.svg",
  22691. extra: 862 / 799,
  22692. bottom: 42.4 / 914.8856
  22693. }
  22694. },
  22695. },
  22696. [
  22697. {
  22698. name: "Normal",
  22699. height: math.unit(5, "feet"),
  22700. default: true
  22701. },
  22702. ]
  22703. ))
  22704. characterMakers.push(() => makeCharacter(
  22705. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22706. {
  22707. side: {
  22708. height: math.unit(3, "feet"),
  22709. weight: math.unit(225, "lb"),
  22710. name: "Side",
  22711. image: {
  22712. source: "./media/characters/saian/side.svg",
  22713. extra: 566 / 356,
  22714. bottom: 79.7 / 643
  22715. }
  22716. },
  22717. maw: {
  22718. height: math.unit(2.85, "feet"),
  22719. name: "Maw",
  22720. image: {
  22721. source: "./media/characters/saian/maw.svg"
  22722. }
  22723. },
  22724. },
  22725. [
  22726. {
  22727. name: "Normal",
  22728. height: math.unit(3, "feet"),
  22729. default: true
  22730. },
  22731. ]
  22732. ))
  22733. characterMakers.push(() => makeCharacter(
  22734. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22735. {
  22736. side: {
  22737. height: math.unit(8, "feet"),
  22738. weight: math.unit(300, "lb"),
  22739. name: "Side",
  22740. image: {
  22741. source: "./media/characters/equus-silvermane/side.svg",
  22742. extra: 2176 / 2050,
  22743. bottom: 65.7 / 2245
  22744. }
  22745. },
  22746. front: {
  22747. height: math.unit(8, "feet"),
  22748. weight: math.unit(300, "lb"),
  22749. name: "Front",
  22750. image: {
  22751. source: "./media/characters/equus-silvermane/front.svg",
  22752. extra: 4633 / 4400,
  22753. bottom: 71.3 / 4706.915
  22754. }
  22755. },
  22756. sideStepping: {
  22757. height: math.unit(8, "feet"),
  22758. weight: math.unit(300, "lb"),
  22759. name: "Side (Stepping)",
  22760. image: {
  22761. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22762. extra: 1968 / 1860,
  22763. bottom: 16.4 / 1989
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Normal",
  22770. height: math.unit(8, "feet")
  22771. },
  22772. {
  22773. name: "Minimacro",
  22774. height: math.unit(75, "feet"),
  22775. default: true
  22776. },
  22777. {
  22778. name: "Macro",
  22779. height: math.unit(150, "feet")
  22780. },
  22781. {
  22782. name: "Macro+",
  22783. height: math.unit(1000, "feet")
  22784. },
  22785. {
  22786. name: "Megamacro",
  22787. height: math.unit(1, "mile")
  22788. },
  22789. ]
  22790. ))
  22791. characterMakers.push(() => makeCharacter(
  22792. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22793. {
  22794. side: {
  22795. height: math.unit(20, "feet"),
  22796. weight: math.unit(30000, "kg"),
  22797. name: "Side",
  22798. image: {
  22799. source: "./media/characters/windar/side.svg",
  22800. extra: 1491 / 1248,
  22801. bottom: 82.56 / 1568
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(20, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22815. {
  22816. side: {
  22817. height: math.unit(15.66, "feet"),
  22818. weight: math.unit(150, "lb"),
  22819. name: "Side",
  22820. image: {
  22821. source: "./media/characters/melody/side.svg",
  22822. extra: 1097 / 944,
  22823. bottom: 11.8 / 1109
  22824. }
  22825. },
  22826. sideOutfit: {
  22827. height: math.unit(15.66, "feet"),
  22828. weight: math.unit(150, "lb"),
  22829. name: "Side (Outfit)",
  22830. image: {
  22831. source: "./media/characters/melody/side-outfit.svg",
  22832. extra: 1097 / 944,
  22833. bottom: 11.8 / 1109
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(15.66, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(8, "feet"),
  22850. weight: math.unit(325, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/windera/front.svg",
  22854. extra: 3180 / 2845,
  22855. bottom: 178 / 3365
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(8, "feet"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22869. {
  22870. front: {
  22871. height: math.unit(28.75, "feet"),
  22872. weight: math.unit(2000, "kg"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/sonear/front.svg",
  22876. extra: 1041.1 / 964.9,
  22877. bottom: 53.7 / 1096.6
  22878. }
  22879. },
  22880. },
  22881. [
  22882. {
  22883. name: "Normal",
  22884. height: math.unit(28.75, "feet"),
  22885. default: true
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22891. {
  22892. side: {
  22893. height: math.unit(25.5, "feet"),
  22894. weight: math.unit(23000, "kg"),
  22895. name: "Side",
  22896. image: {
  22897. source: "./media/characters/kanara/side.svg"
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Normal",
  22904. height: math.unit(25.5, "feet"),
  22905. default: true
  22906. },
  22907. ]
  22908. ))
  22909. characterMakers.push(() => makeCharacter(
  22910. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22911. {
  22912. side: {
  22913. height: math.unit(10, "feet"),
  22914. weight: math.unit(1000, "kg"),
  22915. name: "Side",
  22916. image: {
  22917. source: "./media/characters/ereus/side.svg",
  22918. extra: 1157 / 959,
  22919. bottom: 153 / 1312.5
  22920. }
  22921. },
  22922. },
  22923. [
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(10, "feet"),
  22927. default: true
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22933. {
  22934. side: {
  22935. height: math.unit(4.5, "feet"),
  22936. weight: math.unit(500, "lb"),
  22937. name: "Side",
  22938. image: {
  22939. source: "./media/characters/e-ter/side.svg",
  22940. extra: 1550 / 1248,
  22941. bottom: 146 / 1694
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(4.5, "feet"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22955. {
  22956. side: {
  22957. height: math.unit(9.7, "feet"),
  22958. weight: math.unit(4000, "kg"),
  22959. name: "Side",
  22960. image: {
  22961. source: "./media/characters/yamie/side.svg"
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(9.7, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(50, "feet"),
  22978. weight: math.unit(50000, "kg"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/anders/front.svg",
  22982. extra: 570 / 539,
  22983. bottom: 14.7 / 586.7
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Large",
  22990. height: math.unit(50, "feet")
  22991. },
  22992. {
  22993. name: "Macro",
  22994. height: math.unit(2000, "feet"),
  22995. default: true
  22996. },
  22997. {
  22998. name: "Megamacro",
  22999. height: math.unit(12, "miles")
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(7 + 2 / 12, "feet"),
  23008. weight: math.unit(300, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/reban/front.svg",
  23012. extra: 1287/1212,
  23013. bottom: 148/1435
  23014. }
  23015. },
  23016. head: {
  23017. height: math.unit(1.95, "feet"),
  23018. name: "Head",
  23019. image: {
  23020. source: "./media/characters/reban/head.svg"
  23021. }
  23022. },
  23023. maw: {
  23024. height: math.unit(0.95, "feet"),
  23025. name: "Maw",
  23026. image: {
  23027. source: "./media/characters/reban/maw.svg"
  23028. }
  23029. },
  23030. foot: {
  23031. height: math.unit(1.65, "feet"),
  23032. name: "Foot",
  23033. image: {
  23034. source: "./media/characters/reban/foot.svg"
  23035. }
  23036. },
  23037. dick: {
  23038. height: math.unit(7 / 5, "feet"),
  23039. name: "Dick",
  23040. image: {
  23041. source: "./media/characters/reban/dick.svg"
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Natural Height",
  23048. height: math.unit(7 + 2 / 12, "feet")
  23049. },
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(500, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Canon Height",
  23057. height: math.unit(50, "AU")
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(6, "feet"),
  23066. weight: math.unit(150, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/terrance-keayes/front.svg",
  23070. extra: 1.005,
  23071. bottom: 151 / 1615
  23072. }
  23073. },
  23074. side: {
  23075. height: math.unit(6, "feet"),
  23076. weight: math.unit(150, "lb"),
  23077. name: "Side",
  23078. image: {
  23079. source: "./media/characters/terrance-keayes/side.svg",
  23080. extra: 1.005,
  23081. bottom: 129.4 / 1544
  23082. }
  23083. },
  23084. back: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Back",
  23088. image: {
  23089. source: "./media/characters/terrance-keayes/back.svg",
  23090. extra: 1.005,
  23091. bottom: 58.4 / 1557.3
  23092. }
  23093. },
  23094. dick: {
  23095. height: math.unit(6 * 0.208, "feet"),
  23096. name: "Dick",
  23097. image: {
  23098. source: "./media/characters/terrance-keayes/dick.svg"
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Canon Height",
  23105. height: math.unit(35, "miles"),
  23106. default: true
  23107. },
  23108. ]
  23109. ))
  23110. characterMakers.push(() => makeCharacter(
  23111. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23112. {
  23113. front: {
  23114. height: math.unit(6, "feet"),
  23115. weight: math.unit(150, "lb"),
  23116. name: "Front",
  23117. image: {
  23118. source: "./media/characters/ofelia/front.svg",
  23119. extra: 1130/1117,
  23120. bottom: 91/1221
  23121. }
  23122. },
  23123. back: {
  23124. height: math.unit(6, "feet"),
  23125. weight: math.unit(150, "lb"),
  23126. name: "Back",
  23127. image: {
  23128. source: "./media/characters/ofelia/back.svg",
  23129. extra: 1172/1159,
  23130. bottom: 28/1200
  23131. }
  23132. },
  23133. maw: {
  23134. height: math.unit(1, "feet"),
  23135. name: "Maw",
  23136. image: {
  23137. source: "./media/characters/ofelia/maw.svg"
  23138. }
  23139. },
  23140. foot: {
  23141. height: math.unit(1.949, "feet"),
  23142. name: "Foot",
  23143. image: {
  23144. source: "./media/characters/ofelia/foot.svg"
  23145. }
  23146. },
  23147. },
  23148. [
  23149. {
  23150. name: "Canon Height",
  23151. height: math.unit(2000, "miles"),
  23152. default: true
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(6, "feet"),
  23161. weight: math.unit(150, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/samuel/front.svg",
  23165. extra: 265 / 258,
  23166. bottom: 2 / 266.1566
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(100, "feet"),
  23174. default: true
  23175. },
  23176. {
  23177. name: "Full Size",
  23178. height: math.unit(1000, "miles")
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(6, "feet"),
  23187. weight: math.unit(300, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/beishir-kiel/front.svg",
  23191. extra: 569 / 547,
  23192. bottom: 41.9 / 609
  23193. }
  23194. },
  23195. maw: {
  23196. height: math.unit(6 * 0.202, "feet"),
  23197. name: "Maw",
  23198. image: {
  23199. source: "./media/characters/beishir-kiel/maw.svg"
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Macro",
  23206. height: math.unit(300, "feet"),
  23207. default: true
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23213. {
  23214. front: {
  23215. height: math.unit(5 + 7/12, "feet"),
  23216. weight: math.unit(120, "lb"),
  23217. name: "Front",
  23218. image: {
  23219. source: "./media/characters/logan-grey/front.svg",
  23220. extra: 1836/1738,
  23221. bottom: 108/1944
  23222. }
  23223. },
  23224. back: {
  23225. height: math.unit(5 + 7/12, "feet"),
  23226. weight: math.unit(120, "lb"),
  23227. name: "Back",
  23228. image: {
  23229. source: "./media/characters/logan-grey/back.svg",
  23230. extra: 1880/1794,
  23231. bottom: 24/1904
  23232. }
  23233. },
  23234. frontSfw: {
  23235. height: math.unit(5 + 7/12, "feet"),
  23236. weight: math.unit(120, "lb"),
  23237. name: "Front (SFW)",
  23238. image: {
  23239. source: "./media/characters/logan-grey/front-sfw.svg",
  23240. extra: 1836/1738,
  23241. bottom: 108/1944
  23242. }
  23243. },
  23244. backSfw: {
  23245. height: math.unit(5 + 7/12, "feet"),
  23246. weight: math.unit(120, "lb"),
  23247. name: "Back (SFW)",
  23248. image: {
  23249. source: "./media/characters/logan-grey/back-sfw.svg",
  23250. extra: 1880/1794,
  23251. bottom: 24/1904
  23252. }
  23253. },
  23254. hands: {
  23255. height: math.unit(0.84, "feet"),
  23256. name: "Hands",
  23257. image: {
  23258. source: "./media/characters/logan-grey/hands.svg"
  23259. }
  23260. },
  23261. paws: {
  23262. height: math.unit(0.72, "feet"),
  23263. name: "Paws",
  23264. image: {
  23265. source: "./media/characters/logan-grey/paws.svg"
  23266. }
  23267. },
  23268. cock: {
  23269. height: math.unit(1.45, "feet"),
  23270. name: "Cock",
  23271. image: {
  23272. source: "./media/characters/logan-grey/cock.svg"
  23273. }
  23274. },
  23275. cockAlt: {
  23276. height: math.unit(1.437, "feet"),
  23277. name: "Cock (alt)",
  23278. image: {
  23279. source: "./media/characters/logan-grey/cock-alt.svg"
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Normal",
  23286. height: math.unit(5 + 8 / 12, "feet")
  23287. },
  23288. {
  23289. name: "The 500 Foot Femboy",
  23290. height: math.unit(500, "feet"),
  23291. default: true
  23292. },
  23293. {
  23294. name: "Megmacro",
  23295. height: math.unit(20, "miles")
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23301. {
  23302. front: {
  23303. height: math.unit(8 + 2 / 12, "feet"),
  23304. weight: math.unit(275, "lb"),
  23305. name: "Front",
  23306. image: {
  23307. source: "./media/characters/draganta/front.svg",
  23308. extra: 1177 / 1135,
  23309. bottom: 33.46 / 1212.1
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(8 + 6 / 12, "feet"),
  23317. default: true
  23318. },
  23319. {
  23320. name: "Macro",
  23321. height: math.unit(150, "feet")
  23322. },
  23323. {
  23324. name: "Megamacro",
  23325. height: math.unit(1000, "miles")
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23331. {
  23332. front: {
  23333. height: math.unit(1.72, "m"),
  23334. weight: math.unit(80, "lb"),
  23335. name: "Front",
  23336. image: {
  23337. source: "./media/characters/voski/front.svg",
  23338. extra: 2076.22 / 2022.4,
  23339. bottom: 102.7 / 2177.3866
  23340. }
  23341. },
  23342. frontFlaccid: {
  23343. height: math.unit(1.72, "m"),
  23344. weight: math.unit(80, "lb"),
  23345. name: "Front (Flaccid)",
  23346. image: {
  23347. source: "./media/characters/voski/front-flaccid.svg",
  23348. extra: 2076.22 / 2022.4,
  23349. bottom: 102.7 / 2177.3866
  23350. }
  23351. },
  23352. frontErect: {
  23353. height: math.unit(1.72, "m"),
  23354. weight: math.unit(80, "lb"),
  23355. name: "Front (Erect)",
  23356. image: {
  23357. source: "./media/characters/voski/front-erect.svg",
  23358. extra: 2076.22 / 2022.4,
  23359. bottom: 102.7 / 2177.3866
  23360. }
  23361. },
  23362. back: {
  23363. height: math.unit(1.72, "m"),
  23364. weight: math.unit(80, "lb"),
  23365. name: "Back",
  23366. image: {
  23367. source: "./media/characters/voski/back.svg",
  23368. extra: 2104 / 2051,
  23369. bottom: 10.45 / 2113.63
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(1.72, "m")
  23377. },
  23378. {
  23379. name: "Macro",
  23380. height: math.unit(55, "m"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Macro+",
  23385. height: math.unit(300, "m")
  23386. },
  23387. {
  23388. name: "Macro++",
  23389. height: math.unit(700, "m")
  23390. },
  23391. {
  23392. name: "Macro+++",
  23393. height: math.unit(4500, "m")
  23394. },
  23395. {
  23396. name: "Macro++++",
  23397. height: math.unit(45, "km")
  23398. },
  23399. {
  23400. name: "Macro+++++",
  23401. height: math.unit(1220, "km")
  23402. },
  23403. ]
  23404. ))
  23405. characterMakers.push(() => makeCharacter(
  23406. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23407. {
  23408. front: {
  23409. height: math.unit(2.3, "m"),
  23410. weight: math.unit(304, "kg"),
  23411. name: "Front",
  23412. image: {
  23413. source: "./media/characters/icowom-lee/front.svg",
  23414. extra: 985 / 955,
  23415. bottom: 25.4 / 1012
  23416. }
  23417. },
  23418. fronttentacles: {
  23419. height: math.unit(2.3, "m"),
  23420. weight: math.unit(304, "kg"),
  23421. name: "Front-tentacles",
  23422. image: {
  23423. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23424. extra: 985 / 955,
  23425. bottom: 25.4 / 1012
  23426. }
  23427. },
  23428. back: {
  23429. height: math.unit(2.3, "m"),
  23430. weight: math.unit(304, "kg"),
  23431. name: "Back",
  23432. image: {
  23433. source: "./media/characters/icowom-lee/back.svg",
  23434. extra: 975 / 954,
  23435. bottom: 9.5 / 985
  23436. }
  23437. },
  23438. backtentacles: {
  23439. height: math.unit(2.3, "m"),
  23440. weight: math.unit(304, "kg"),
  23441. name: "Back-tentacles",
  23442. image: {
  23443. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23444. extra: 975 / 954,
  23445. bottom: 9.5 / 985
  23446. }
  23447. },
  23448. frontDressed: {
  23449. height: math.unit(2.3, "m"),
  23450. weight: math.unit(304, "kg"),
  23451. name: "Front (Dressed)",
  23452. image: {
  23453. source: "./media/characters/icowom-lee/front-dressed.svg",
  23454. extra: 3076 / 2933,
  23455. bottom: 51.4 / 3125.1889
  23456. }
  23457. },
  23458. rump: {
  23459. height: math.unit(0.776, "meters"),
  23460. name: "Rump",
  23461. image: {
  23462. source: "./media/characters/icowom-lee/rump.svg"
  23463. }
  23464. },
  23465. genitals: {
  23466. height: math.unit(0.78, "meters"),
  23467. name: "Genitals",
  23468. image: {
  23469. source: "./media/characters/icowom-lee/genitals.svg"
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(2.3, "meters"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Macro",
  23481. height: math.unit(94, "meters"),
  23482. default: true
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23488. {
  23489. front: {
  23490. height: math.unit(22, "meters"),
  23491. weight: math.unit(21000, "kg"),
  23492. name: "Front",
  23493. image: {
  23494. source: "./media/characters/shock-diamond/front.svg",
  23495. extra: 2204 / 2053,
  23496. bottom: 65 / 2239.47
  23497. }
  23498. },
  23499. frontNude: {
  23500. height: math.unit(22, "meters"),
  23501. weight: math.unit(21000, "kg"),
  23502. name: "Front (Nude)",
  23503. image: {
  23504. source: "./media/characters/shock-diamond/front-nude.svg",
  23505. extra: 2514 / 2285,
  23506. bottom: 13 / 2527.56
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Normal",
  23513. height: math.unit(3, "meters")
  23514. },
  23515. {
  23516. name: "Macro",
  23517. height: math.unit(22, "meters"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(5 + 4 / 12, "feet"),
  23527. weight: math.unit(120, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/rory/front.svg",
  23531. extra: 1318/1241,
  23532. bottom: 42/1360
  23533. }
  23534. },
  23535. back: {
  23536. height: math.unit(5 + 4 / 12, "feet"),
  23537. weight: math.unit(120, "lb"),
  23538. name: "Back",
  23539. image: {
  23540. source: "./media/characters/rory/back.svg",
  23541. extra: 1318/1241,
  23542. bottom: 42/1360
  23543. }
  23544. },
  23545. butt: {
  23546. height: math.unit(1.74, "feet"),
  23547. name: "Butt",
  23548. image: {
  23549. source: "./media/characters/rory/butt.svg"
  23550. }
  23551. },
  23552. dick: {
  23553. height: math.unit(1.02, "feet"),
  23554. name: "Dick",
  23555. image: {
  23556. source: "./media/characters/rory/dick.svg"
  23557. }
  23558. },
  23559. paws: {
  23560. height: math.unit(1, "feet"),
  23561. name: "Paws",
  23562. image: {
  23563. source: "./media/characters/rory/paws.svg"
  23564. }
  23565. },
  23566. frontAlt: {
  23567. height: math.unit(5 + 4 / 12, "feet"),
  23568. weight: math.unit(120, "lb"),
  23569. name: "Front (Alt)",
  23570. image: {
  23571. source: "./media/characters/rory/front-alt.svg",
  23572. extra: 589 / 556,
  23573. bottom: 45.7 / 635.76
  23574. }
  23575. },
  23576. frontAltNude: {
  23577. height: math.unit(5 + 4 / 12, "feet"),
  23578. weight: math.unit(120, "lb"),
  23579. name: "Front (Alt, Nude)",
  23580. image: {
  23581. source: "./media/characters/rory/front-alt-nude.svg",
  23582. extra: 589 / 556,
  23583. bottom: 45.7 / 635.76
  23584. }
  23585. },
  23586. side: {
  23587. height: math.unit(5 + 4 / 12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Side",
  23590. image: {
  23591. source: "./media/characters/rory/side.svg",
  23592. extra: 597 / 564,
  23593. bottom: 55 / 653
  23594. }
  23595. },
  23596. backAlt: {
  23597. height: math.unit(5 + 4 / 12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Back (Alt)",
  23600. image: {
  23601. source: "./media/characters/rory/back-alt.svg",
  23602. extra: 620 / 585,
  23603. bottom: 8.86 / 630.43
  23604. }
  23605. },
  23606. dickAlt: {
  23607. height: math.unit(0.86, "feet"),
  23608. name: "Dick (Alt)",
  23609. image: {
  23610. source: "./media/characters/rory/dick-alt.svg"
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Normal",
  23617. height: math.unit(5 + 4 / 12, "feet"),
  23618. default: true
  23619. },
  23620. {
  23621. name: "Macro",
  23622. height: math.unit(100, "feet")
  23623. },
  23624. {
  23625. name: "Macro+",
  23626. height: math.unit(140, "feet")
  23627. },
  23628. {
  23629. name: "Macro++",
  23630. height: math.unit(300, "feet")
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23636. {
  23637. front: {
  23638. height: math.unit(5 + 9 / 12, "feet"),
  23639. weight: math.unit(190, "lb"),
  23640. name: "Front",
  23641. image: {
  23642. source: "./media/characters/sprisk/front.svg",
  23643. extra: 1225 / 1180,
  23644. bottom: 42.7 / 1266.4
  23645. }
  23646. },
  23647. frontNsfw: {
  23648. height: math.unit(5 + 9 / 12, "feet"),
  23649. weight: math.unit(190, "lb"),
  23650. name: "Front (NSFW)",
  23651. image: {
  23652. source: "./media/characters/sprisk/front-nsfw.svg",
  23653. extra: 1225 / 1180,
  23654. bottom: 42.7 / 1266.4
  23655. }
  23656. },
  23657. back: {
  23658. height: math.unit(5 + 9 / 12, "feet"),
  23659. weight: math.unit(190, "lb"),
  23660. name: "Back",
  23661. image: {
  23662. source: "./media/characters/sprisk/back.svg",
  23663. extra: 1247 / 1200,
  23664. bottom: 5.6 / 1253.04
  23665. }
  23666. },
  23667. },
  23668. [
  23669. {
  23670. name: "Tiny",
  23671. height: math.unit(2, "inches")
  23672. },
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(5 + 9 / 12, "feet"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Mini Macro",
  23680. height: math.unit(18, "feet")
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(100, "feet")
  23685. },
  23686. {
  23687. name: "MACRO",
  23688. height: math.unit(50, "miles")
  23689. },
  23690. {
  23691. name: "M A C R O",
  23692. height: math.unit(300, "miles")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23698. {
  23699. side: {
  23700. height: math.unit(15.6, "meters"),
  23701. weight: math.unit(700000, "kg"),
  23702. name: "Side",
  23703. image: {
  23704. source: "./media/characters/bunsen/side.svg",
  23705. extra: 1644 / 358
  23706. }
  23707. },
  23708. foot: {
  23709. height: math.unit(1.611 * 1644 / 358, "meter"),
  23710. name: "Foot",
  23711. image: {
  23712. source: "./media/characters/bunsen/foot.svg"
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Small",
  23719. height: math.unit(10, "feet")
  23720. },
  23721. {
  23722. name: "Normal",
  23723. height: math.unit(15.6, "meters"),
  23724. default: true
  23725. },
  23726. ]
  23727. ))
  23728. characterMakers.push(() => makeCharacter(
  23729. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23730. {
  23731. front: {
  23732. height: math.unit(4 + 11 / 12, "feet"),
  23733. weight: math.unit(140, "lb"),
  23734. name: "Front",
  23735. image: {
  23736. source: "./media/characters/sesh/front.svg",
  23737. extra: 3420 / 3231,
  23738. bottom: 72 / 3949.5
  23739. }
  23740. },
  23741. },
  23742. [
  23743. {
  23744. name: "Normal",
  23745. height: math.unit(4 + 11 / 12, "feet")
  23746. },
  23747. {
  23748. name: "Grown",
  23749. height: math.unit(15, "feet"),
  23750. default: true
  23751. },
  23752. {
  23753. name: "Macro",
  23754. height: math.unit(1500, "feet")
  23755. },
  23756. {
  23757. name: "Megamacro",
  23758. height: math.unit(30, "miles")
  23759. },
  23760. {
  23761. name: "Continental",
  23762. height: math.unit(3000, "miles")
  23763. },
  23764. {
  23765. name: "Gravity Mass",
  23766. height: math.unit(300000, "miles")
  23767. },
  23768. {
  23769. name: "Planet Buster",
  23770. height: math.unit(30000000, "miles")
  23771. },
  23772. {
  23773. name: "Big",
  23774. height: math.unit(3000000000, "miles")
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(9, "feet"),
  23783. weight: math.unit(350, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/pepper/front.svg",
  23787. extra: 1448 / 1312,
  23788. bottom: 9.4 / 1457.88
  23789. }
  23790. },
  23791. back: {
  23792. height: math.unit(9, "feet"),
  23793. weight: math.unit(350, "lb"),
  23794. name: "Back",
  23795. image: {
  23796. source: "./media/characters/pepper/back.svg",
  23797. extra: 1423 / 1300,
  23798. bottom: 4.6 / 1429
  23799. }
  23800. },
  23801. maw: {
  23802. height: math.unit(0.932, "feet"),
  23803. name: "Maw",
  23804. image: {
  23805. source: "./media/characters/pepper/maw.svg"
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(9, "feet"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(6, "feet"),
  23822. weight: math.unit(150, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/maelstrom/front.svg",
  23826. extra: 2100 / 1883,
  23827. bottom: 94 / 2196.7
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Less Kaiju",
  23834. height: math.unit(200, "feet")
  23835. },
  23836. {
  23837. name: "Kaiju",
  23838. height: math.unit(400, "feet"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Kaiju-er",
  23843. height: math.unit(600, "feet")
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(6 + 5 / 12, "feet"),
  23852. weight: math.unit(180, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/lexir/front.svg",
  23856. extra: 180 / 172,
  23857. bottom: 12 / 192
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(6 + 5 / 12, "feet"),
  23862. weight: math.unit(180, "lb"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/lexir/back.svg",
  23866. extra: 1273/1201,
  23867. bottom: 39/1312
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Very Smal",
  23874. height: math.unit(1, "nm")
  23875. },
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(6 + 5 / 12, "feet"),
  23879. default: true
  23880. },
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(1, "mile")
  23884. },
  23885. {
  23886. name: "Megamacro",
  23887. height: math.unit(50, "miles")
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23893. {
  23894. front: {
  23895. height: math.unit(1.5, "meters"),
  23896. weight: math.unit(100, "lb"),
  23897. name: "Front",
  23898. image: {
  23899. source: "./media/characters/maksio/front.svg",
  23900. extra: 1549 / 1531,
  23901. bottom: 123.7 / 1674.5429
  23902. }
  23903. },
  23904. back: {
  23905. height: math.unit(1.5, "meters"),
  23906. weight: math.unit(100, "lb"),
  23907. name: "Back",
  23908. image: {
  23909. source: "./media/characters/maksio/back.svg",
  23910. extra: 1541 / 1509,
  23911. bottom: 97 / 1639
  23912. }
  23913. },
  23914. hand: {
  23915. height: math.unit(0.621, "feet"),
  23916. name: "Hand",
  23917. image: {
  23918. source: "./media/characters/maksio/hand.svg"
  23919. }
  23920. },
  23921. foot: {
  23922. height: math.unit(1.611, "feet"),
  23923. name: "Foot",
  23924. image: {
  23925. source: "./media/characters/maksio/foot.svg"
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Shrunken",
  23932. height: math.unit(10, "cm")
  23933. },
  23934. {
  23935. name: "Normal",
  23936. height: math.unit(150, "cm"),
  23937. default: true
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23943. {
  23944. front: {
  23945. height: math.unit(100, "feet"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/erza-bear/front.svg",
  23949. extra: 2449 / 2390,
  23950. bottom: 46 / 2494
  23951. }
  23952. },
  23953. back: {
  23954. height: math.unit(100, "feet"),
  23955. name: "Back",
  23956. image: {
  23957. source: "./media/characters/erza-bear/back.svg",
  23958. extra: 2489 / 2430,
  23959. bottom: 85.4 / 2480
  23960. }
  23961. },
  23962. tail: {
  23963. height: math.unit(42, "feet"),
  23964. name: "Tail",
  23965. image: {
  23966. source: "./media/characters/erza-bear/tail.svg"
  23967. }
  23968. },
  23969. tongue: {
  23970. height: math.unit(8, "feet"),
  23971. name: "Tongue",
  23972. image: {
  23973. source: "./media/characters/erza-bear/tongue.svg"
  23974. }
  23975. },
  23976. dick: {
  23977. height: math.unit(10.5, "feet"),
  23978. name: "Dick",
  23979. image: {
  23980. source: "./media/characters/erza-bear/dick.svg"
  23981. }
  23982. },
  23983. dickVertical: {
  23984. height: math.unit(16.9, "feet"),
  23985. name: "Dick (Vertical)",
  23986. image: {
  23987. source: "./media/characters/erza-bear/dick-vertical.svg"
  23988. }
  23989. },
  23990. },
  23991. [
  23992. {
  23993. name: "Macro",
  23994. height: math.unit(100, "feet"),
  23995. default: true
  23996. },
  23997. ]
  23998. ))
  23999. characterMakers.push(() => makeCharacter(
  24000. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24001. {
  24002. front: {
  24003. height: math.unit(172, "cm"),
  24004. weight: math.unit(73, "kg"),
  24005. name: "Front",
  24006. image: {
  24007. source: "./media/characters/violet-flor/front.svg",
  24008. extra: 1530 / 1442,
  24009. bottom: 61.9 / 1588.8
  24010. }
  24011. },
  24012. back: {
  24013. height: math.unit(180, "cm"),
  24014. weight: math.unit(73, "kg"),
  24015. name: "Back",
  24016. image: {
  24017. source: "./media/characters/violet-flor/back.svg",
  24018. extra: 1692 / 1630,
  24019. bottom: 20 / 1712
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(172, "cm"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24033. {
  24034. front: {
  24035. height: math.unit(6, "feet"),
  24036. weight: math.unit(220, "lb"),
  24037. name: "Front",
  24038. image: {
  24039. source: "./media/characters/lynn-rhea/front.svg",
  24040. extra: 310 / 273
  24041. }
  24042. },
  24043. back: {
  24044. height: math.unit(6, "feet"),
  24045. weight: math.unit(220, "lb"),
  24046. name: "Back",
  24047. image: {
  24048. source: "./media/characters/lynn-rhea/back.svg",
  24049. extra: 310 / 273
  24050. }
  24051. },
  24052. dicks: {
  24053. height: math.unit(0.9, "feet"),
  24054. name: "Dicks",
  24055. image: {
  24056. source: "./media/characters/lynn-rhea/dicks.svg"
  24057. }
  24058. },
  24059. slit: {
  24060. height: math.unit(0.4, "feet"),
  24061. name: "Slit",
  24062. image: {
  24063. source: "./media/characters/lynn-rhea/slit.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Micro",
  24070. height: math.unit(1, "inch")
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(60, "feet"),
  24075. default: true
  24076. },
  24077. {
  24078. name: "Megamacro",
  24079. height: math.unit(2, "miles")
  24080. },
  24081. {
  24082. name: "Gigamacro",
  24083. height: math.unit(3, "earths")
  24084. },
  24085. {
  24086. name: "Galactic",
  24087. height: math.unit(0.8, "galaxies")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24093. {
  24094. front: {
  24095. height: math.unit(1600, "feet"),
  24096. weight: math.unit(85758785169, "kg"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/valathos/front.svg",
  24100. extra: 1451 / 1339
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Macro",
  24107. height: math.unit(1600, "feet"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(7 + 5 / 12, "feet"),
  24117. weight: math.unit(300, "lb"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/azula/front.svg",
  24121. extra: 3208 / 2880,
  24122. bottom: 80.2 / 3277
  24123. }
  24124. },
  24125. back: {
  24126. height: math.unit(7 + 5 / 12, "feet"),
  24127. weight: math.unit(300, "lb"),
  24128. name: "Back",
  24129. image: {
  24130. source: "./media/characters/azula/back.svg",
  24131. extra: 3169 / 2822,
  24132. bottom: 150.6 / 3321
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(7 + 5 / 12, "feet"),
  24140. default: true
  24141. },
  24142. {
  24143. name: "Big",
  24144. height: math.unit(20, "feet")
  24145. },
  24146. ]
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24150. {
  24151. front: {
  24152. height: math.unit(5 + 1 / 12, "feet"),
  24153. weight: math.unit(110, "lb"),
  24154. name: "Front",
  24155. image: {
  24156. source: "./media/characters/rupert/front.svg",
  24157. extra: 1549 / 1495,
  24158. bottom: 54.2 / 1604.4
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(5 + 1 / 12, "feet"),
  24166. default: true
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24172. {
  24173. front: {
  24174. height: math.unit(8 + 4 / 12, "feet"),
  24175. weight: math.unit(350, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/sheera-castellar/front.svg",
  24179. extra: 1957 / 1894,
  24180. bottom: 26.97 / 1975.017
  24181. }
  24182. },
  24183. side: {
  24184. height: math.unit(8 + 4 / 12, "feet"),
  24185. weight: math.unit(350, "lb"),
  24186. name: "Side",
  24187. image: {
  24188. source: "./media/characters/sheera-castellar/side.svg",
  24189. extra: 1957 / 1894
  24190. }
  24191. },
  24192. back: {
  24193. height: math.unit(8 + 4 / 12, "feet"),
  24194. weight: math.unit(350, "lb"),
  24195. name: "Back",
  24196. image: {
  24197. source: "./media/characters/sheera-castellar/back.svg",
  24198. extra: 1957 / 1894
  24199. }
  24200. },
  24201. angled: {
  24202. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24203. weight: math.unit(350, "lb"),
  24204. name: "Angled",
  24205. image: {
  24206. source: "./media/characters/sheera-castellar/angled.svg",
  24207. extra: 1807 / 1707,
  24208. bottom: 68 / 1875
  24209. }
  24210. },
  24211. genitals: {
  24212. height: math.unit(2.2, "feet"),
  24213. name: "Genitals",
  24214. image: {
  24215. source: "./media/characters/sheera-castellar/genitals.svg"
  24216. }
  24217. },
  24218. taur: {
  24219. height: math.unit(10 + 6/12, "feet"),
  24220. name: "Taur",
  24221. image: {
  24222. source: "./media/characters/sheera-castellar/taur.svg",
  24223. extra: 2017/1909,
  24224. bottom: 185/2202
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(8 + 4 / 12, "feet")
  24232. },
  24233. {
  24234. name: "Macro",
  24235. height: math.unit(150, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro+",
  24240. height: math.unit(800, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(6, "feet"),
  24249. weight: math.unit(150, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/jaipur/front.svg",
  24253. extra: 3860 / 3731,
  24254. bottom: 287 / 4140
  24255. }
  24256. },
  24257. back: {
  24258. height: math.unit(6, "feet"),
  24259. weight: math.unit(150, "lb"),
  24260. name: "Back",
  24261. image: {
  24262. source: "./media/characters/jaipur/back.svg",
  24263. extra: 1637/1561,
  24264. bottom: 154/1791
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Normal",
  24271. height: math.unit(1.85, "meters"),
  24272. default: true
  24273. },
  24274. {
  24275. name: "Macro",
  24276. height: math.unit(150, "meters")
  24277. },
  24278. {
  24279. name: "Macro+",
  24280. height: math.unit(0.5, "miles")
  24281. },
  24282. {
  24283. name: "Macro++",
  24284. height: math.unit(2.5, "miles")
  24285. },
  24286. {
  24287. name: "Macro+++",
  24288. height: math.unit(12, "miles")
  24289. },
  24290. {
  24291. name: "Macro++++",
  24292. height: math.unit(120, "miles")
  24293. },
  24294. {
  24295. name: "Macro+++++",
  24296. height: math.unit(1200, "miles")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24302. {
  24303. front: {
  24304. height: math.unit(6, "feet"),
  24305. weight: math.unit(150, "lb"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/sheila-wolf/front.svg",
  24309. extra: 1931 / 1808,
  24310. bottom: 29.5 / 1960
  24311. }
  24312. },
  24313. dick: {
  24314. height: math.unit(1.464, "feet"),
  24315. name: "Dick",
  24316. image: {
  24317. source: "./media/characters/sheila-wolf/dick.svg"
  24318. }
  24319. },
  24320. muzzle: {
  24321. height: math.unit(0.513, "feet"),
  24322. name: "Muzzle",
  24323. image: {
  24324. source: "./media/characters/sheila-wolf/muzzle.svg"
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(70, "feet"),
  24332. default: true
  24333. },
  24334. ]
  24335. ))
  24336. characterMakers.push(() => makeCharacter(
  24337. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24338. {
  24339. front: {
  24340. height: math.unit(32, "meters"),
  24341. weight: math.unit(300000, "kg"),
  24342. name: "Front",
  24343. image: {
  24344. source: "./media/characters/almor/front.svg",
  24345. extra: 1408 / 1322,
  24346. bottom: 94.6 / 1506.5
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Macro",
  24353. height: math.unit(32, "meters"),
  24354. default: true
  24355. },
  24356. ]
  24357. ))
  24358. characterMakers.push(() => makeCharacter(
  24359. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24360. {
  24361. front: {
  24362. height: math.unit(7, "feet"),
  24363. weight: math.unit(200, "lb"),
  24364. name: "Front",
  24365. image: {
  24366. source: "./media/characters/silver/front.svg",
  24367. extra: 472.1 / 450.5,
  24368. bottom: 26.5 / 499.424
  24369. }
  24370. },
  24371. },
  24372. [
  24373. {
  24374. name: "Normal",
  24375. height: math.unit(7, "feet"),
  24376. default: true
  24377. },
  24378. {
  24379. name: "Macro",
  24380. height: math.unit(800, "feet")
  24381. },
  24382. {
  24383. name: "Megamacro",
  24384. height: math.unit(250, "miles")
  24385. },
  24386. ]
  24387. ))
  24388. characterMakers.push(() => makeCharacter(
  24389. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24390. {
  24391. front: {
  24392. height: math.unit(6, "feet"),
  24393. weight: math.unit(150, "lb"),
  24394. name: "Front",
  24395. image: {
  24396. source: "./media/characters/pliskin/front.svg",
  24397. extra: 1469 / 1359,
  24398. bottom: 70 / 1540
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Micro",
  24405. height: math.unit(3, "inches")
  24406. },
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(5 + 11 / 12, "feet"),
  24410. default: true
  24411. },
  24412. {
  24413. name: "Macro",
  24414. height: math.unit(120, "feet")
  24415. },
  24416. ]
  24417. ))
  24418. characterMakers.push(() => makeCharacter(
  24419. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24420. {
  24421. front: {
  24422. height: math.unit(6, "feet"),
  24423. weight: math.unit(150, "lb"),
  24424. name: "Front",
  24425. image: {
  24426. source: "./media/characters/sammy/front.svg",
  24427. extra: 1193 / 1089,
  24428. bottom: 30.5 / 1226
  24429. }
  24430. },
  24431. },
  24432. [
  24433. {
  24434. name: "Macro",
  24435. height: math.unit(1700, "feet"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Examacro",
  24440. height: math.unit(2.5e9, "lightyears")
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(21, "meters"),
  24449. weight: math.unit(12, "tonnes"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/kuru/front.svg",
  24453. extra: 4301 / 3785,
  24454. bottom: 371.3 / 4691
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Macro",
  24461. height: math.unit(21, "meters"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(23, "meters"),
  24471. weight: math.unit(12.2, "tonnes"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/rakka/front.svg",
  24475. extra: 4670 / 4169,
  24476. bottom: 301 / 4968.7
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(23, "meters"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(6, "feet"),
  24493. weight: math.unit(150, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/rhys-feline/front.svg",
  24497. extra: 2488 / 2308,
  24498. bottom: 35.67 / 2519.19
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Really Small",
  24505. height: math.unit(1, "nm")
  24506. },
  24507. {
  24508. name: "Micro",
  24509. height: math.unit(4, "inches")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(4 + 10 / 12, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(100, "feet")
  24519. },
  24520. {
  24521. name: "Megamacto",
  24522. height: math.unit(50, "miles")
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24528. {
  24529. side: {
  24530. height: math.unit(30, "feet"),
  24531. weight: math.unit(35000, "kg"),
  24532. name: "Side",
  24533. image: {
  24534. source: "./media/characters/alydar/side.svg",
  24535. extra: 234 / 222,
  24536. bottom: 6.5 / 241
  24537. }
  24538. },
  24539. front: {
  24540. height: math.unit(30, "feet"),
  24541. weight: math.unit(35000, "kg"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/alydar/front.svg",
  24545. extra: 223.37 / 210.2,
  24546. bottom: 22.3 / 246.76
  24547. }
  24548. },
  24549. top: {
  24550. height: math.unit(64.54, "feet"),
  24551. weight: math.unit(35000, "kg"),
  24552. name: "Top",
  24553. image: {
  24554. source: "./media/characters/alydar/top.svg"
  24555. }
  24556. },
  24557. anthro: {
  24558. height: math.unit(30, "feet"),
  24559. weight: math.unit(9000, "kg"),
  24560. name: "Anthro",
  24561. image: {
  24562. source: "./media/characters/alydar/anthro.svg",
  24563. extra: 432 / 421,
  24564. bottom: 7.18 / 440
  24565. }
  24566. },
  24567. maw: {
  24568. height: math.unit(11.693, "feet"),
  24569. name: "Maw",
  24570. image: {
  24571. source: "./media/characters/alydar/maw.svg"
  24572. }
  24573. },
  24574. head: {
  24575. height: math.unit(11.693, "feet"),
  24576. name: "Head",
  24577. image: {
  24578. source: "./media/characters/alydar/head.svg"
  24579. }
  24580. },
  24581. headAlt: {
  24582. height: math.unit(12.861, "feet"),
  24583. name: "Head (Alt)",
  24584. image: {
  24585. source: "./media/characters/alydar/head-alt.svg"
  24586. }
  24587. },
  24588. wing: {
  24589. height: math.unit(20.712, "feet"),
  24590. name: "Wing",
  24591. image: {
  24592. source: "./media/characters/alydar/wing.svg"
  24593. }
  24594. },
  24595. wingFeather: {
  24596. height: math.unit(9.662, "feet"),
  24597. name: "Wing Feather",
  24598. image: {
  24599. source: "./media/characters/alydar/wing-feather.svg"
  24600. }
  24601. },
  24602. countourFeather: {
  24603. height: math.unit(4.154, "feet"),
  24604. name: "Contour Feather",
  24605. image: {
  24606. source: "./media/characters/alydar/contour-feather.svg"
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Diplomatic",
  24613. height: math.unit(13, "feet"),
  24614. default: true
  24615. },
  24616. {
  24617. name: "Small",
  24618. height: math.unit(30, "feet")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(95, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Large",
  24627. height: math.unit(285, "feet")
  24628. },
  24629. {
  24630. name: "Incomprehensible",
  24631. height: math.unit(450, "megameters")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24637. {
  24638. side: {
  24639. height: math.unit(11, "feet"),
  24640. weight: math.unit(1750, "kg"),
  24641. name: "Side",
  24642. image: {
  24643. source: "./media/characters/selicia/side.svg",
  24644. extra: 440 / 396,
  24645. bottom: 24.8 / 465.979
  24646. }
  24647. },
  24648. maw: {
  24649. height: math.unit(4.665, "feet"),
  24650. name: "Maw",
  24651. image: {
  24652. source: "./media/characters/selicia/maw.svg"
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(11, "feet"),
  24660. default: true
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24666. {
  24667. side: {
  24668. height: math.unit(2 + 6 / 12, "feet"),
  24669. weight: math.unit(30, "lb"),
  24670. name: "Side",
  24671. image: {
  24672. source: "./media/characters/layla/side.svg",
  24673. extra: 244 / 188,
  24674. bottom: 18.2 / 262.1
  24675. }
  24676. },
  24677. back: {
  24678. height: math.unit(2 + 6 / 12, "feet"),
  24679. weight: math.unit(30, "lb"),
  24680. name: "Back",
  24681. image: {
  24682. source: "./media/characters/layla/back.svg",
  24683. extra: 308 / 241.5,
  24684. bottom: 8.9 / 316.8
  24685. }
  24686. },
  24687. cumming: {
  24688. height: math.unit(2 + 6 / 12, "feet"),
  24689. weight: math.unit(30, "lb"),
  24690. name: "Cumming",
  24691. image: {
  24692. source: "./media/characters/layla/cumming.svg",
  24693. extra: 342 / 279,
  24694. bottom: 595 / 938
  24695. }
  24696. },
  24697. dickFlaccid: {
  24698. height: math.unit(2.595, "feet"),
  24699. name: "Flaccid Genitals",
  24700. image: {
  24701. source: "./media/characters/layla/dick-flaccid.svg"
  24702. }
  24703. },
  24704. dickErect: {
  24705. height: math.unit(2.359, "feet"),
  24706. name: "Erect Genitals",
  24707. image: {
  24708. source: "./media/characters/layla/dick-erect.svg"
  24709. }
  24710. },
  24711. dragon: {
  24712. height: math.unit(40, "feet"),
  24713. name: "Dragon",
  24714. image: {
  24715. source: "./media/characters/layla/dragon.svg",
  24716. extra: 610/535,
  24717. bottom: 367/977
  24718. }
  24719. },
  24720. taur: {
  24721. height: math.unit(30, "feet"),
  24722. name: "Taur",
  24723. image: {
  24724. source: "./media/characters/layla/taur.svg",
  24725. extra: 1268/1199,
  24726. bottom: 112/1380
  24727. }
  24728. },
  24729. },
  24730. [
  24731. {
  24732. name: "Micro",
  24733. height: math.unit(1, "inch")
  24734. },
  24735. {
  24736. name: "Small",
  24737. height: math.unit(1, "foot")
  24738. },
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(2 + 6 / 12, "feet"),
  24742. default: true
  24743. },
  24744. {
  24745. name: "Macro",
  24746. height: math.unit(200, "feet")
  24747. },
  24748. {
  24749. name: "Megamacro",
  24750. height: math.unit(1000, "miles")
  24751. },
  24752. {
  24753. name: "Planetary",
  24754. height: math.unit(8000, "miles")
  24755. },
  24756. {
  24757. name: "True Layla",
  24758. height: math.unit(200000 * 7, "multiverses")
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24764. {
  24765. back: {
  24766. height: math.unit(10.5, "feet"),
  24767. weight: math.unit(800, "lb"),
  24768. name: "Back",
  24769. image: {
  24770. source: "./media/characters/knox/back.svg",
  24771. extra: 1486 / 1089,
  24772. bottom: 107 / 1601.4
  24773. }
  24774. },
  24775. side: {
  24776. height: math.unit(10.5, "feet"),
  24777. weight: math.unit(800, "lb"),
  24778. name: "Side",
  24779. image: {
  24780. source: "./media/characters/knox/side.svg",
  24781. extra: 244 / 218,
  24782. bottom: 14 / 260
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Compact",
  24789. height: math.unit(10.5, "feet"),
  24790. default: true
  24791. },
  24792. {
  24793. name: "Dynamax",
  24794. height: math.unit(210, "feet")
  24795. },
  24796. {
  24797. name: "Full Macro",
  24798. height: math.unit(850, "feet")
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(28, "feet"),
  24807. weight: math.unit(10500, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/kayda/front.svg",
  24811. extra: 1536 / 1428,
  24812. bottom: 68.7 / 1603
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(28, "feet"),
  24817. weight: math.unit(10500, "lb"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/kayda/back.svg",
  24821. extra: 1557 / 1464,
  24822. bottom: 39.5 / 1597.49
  24823. }
  24824. },
  24825. dick: {
  24826. height: math.unit(3.858, "feet"),
  24827. name: "Dick",
  24828. image: {
  24829. source: "./media/characters/kayda/dick.svg"
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Macro",
  24836. height: math.unit(28, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(10 + 11 / 12, "feet"),
  24846. weight: math.unit(1400, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/brian/front.svg",
  24850. extra: 737 / 692,
  24851. bottom: 55.4 / 785
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(10 + 11 / 12, "feet"),
  24859. default: true
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24865. {
  24866. front: {
  24867. height: math.unit(5 + 8 / 12, "feet"),
  24868. weight: math.unit(140, "lb"),
  24869. name: "Front",
  24870. image: {
  24871. source: "./media/characters/khemri/front.svg",
  24872. extra: 4780 / 4059,
  24873. bottom: 80.1 / 4859.25
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Micro",
  24880. height: math.unit(6, "inches")
  24881. },
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(5 + 8 / 12, "feet"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24891. {
  24892. front: {
  24893. height: math.unit(13, "feet"),
  24894. weight: math.unit(1700, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/felix-braveheart/front.svg",
  24898. extra: 1222 / 1157,
  24899. bottom: 53.2 / 1280
  24900. }
  24901. },
  24902. back: {
  24903. height: math.unit(13, "feet"),
  24904. weight: math.unit(1700, "lb"),
  24905. name: "Back",
  24906. image: {
  24907. source: "./media/characters/felix-braveheart/back.svg",
  24908. extra: 1277 / 1203,
  24909. bottom: 50.2 / 1327
  24910. }
  24911. },
  24912. feral: {
  24913. height: math.unit(6, "feet"),
  24914. weight: math.unit(400, "lb"),
  24915. name: "Feral",
  24916. image: {
  24917. source: "./media/characters/felix-braveheart/feral.svg",
  24918. extra: 682 / 625,
  24919. bottom: 6.9 / 688
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(13, "feet"),
  24927. default: true
  24928. },
  24929. ]
  24930. ))
  24931. characterMakers.push(() => makeCharacter(
  24932. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24933. {
  24934. side: {
  24935. height: math.unit(5 + 11 / 12, "feet"),
  24936. weight: math.unit(1400, "lb"),
  24937. name: "Side",
  24938. image: {
  24939. source: "./media/characters/shadow-blade/side.svg",
  24940. extra: 1726 / 1267,
  24941. bottom: 58.4 / 1785
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(5 + 11 / 12, "feet"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24955. {
  24956. front: {
  24957. height: math.unit(1 + 6 / 12, "feet"),
  24958. weight: math.unit(25, "lb"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/karla-halldor/front.svg",
  24962. extra: 1459 / 1383,
  24963. bottom: 12 / 1472
  24964. }
  24965. },
  24966. },
  24967. [
  24968. {
  24969. name: "Normal",
  24970. height: math.unit(1 + 6 / 12, "feet"),
  24971. default: true
  24972. },
  24973. ]
  24974. ))
  24975. characterMakers.push(() => makeCharacter(
  24976. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24977. {
  24978. front: {
  24979. height: math.unit(6 + 2 / 12, "feet"),
  24980. weight: math.unit(160, "lb"),
  24981. name: "Front",
  24982. image: {
  24983. source: "./media/characters/ariam/front.svg",
  24984. extra: 1073/976,
  24985. bottom: 52/1125
  24986. }
  24987. },
  24988. back: {
  24989. height: math.unit(6 + 2/12, "feet"),
  24990. weight: math.unit(160, "lb"),
  24991. name: "Back",
  24992. image: {
  24993. source: "./media/characters/ariam/back.svg",
  24994. extra: 1103/1023,
  24995. bottom: 9/1112
  24996. }
  24997. },
  24998. dressed: {
  24999. height: math.unit(6 + 2/12, "feet"),
  25000. weight: math.unit(160, "lb"),
  25001. name: "Dressed",
  25002. image: {
  25003. source: "./media/characters/ariam/dressed.svg",
  25004. extra: 1099/1009,
  25005. bottom: 25/1124
  25006. }
  25007. },
  25008. squatting: {
  25009. height: math.unit(4.1, "feet"),
  25010. weight: math.unit(160, "lb"),
  25011. name: "Squatting",
  25012. image: {
  25013. source: "./media/characters/ariam/squatting.svg",
  25014. extra: 2617 / 2112,
  25015. bottom: 61.2 / 2681,
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(6 + 2 / 12, "feet"),
  25023. default: true
  25024. },
  25025. {
  25026. name: "Normal+",
  25027. height: math.unit(4, "meters")
  25028. },
  25029. {
  25030. name: "Macro",
  25031. height: math.unit(50, "meters")
  25032. },
  25033. {
  25034. name: "Macro+",
  25035. height: math.unit(100, "meters")
  25036. },
  25037. {
  25038. name: "Megamacro",
  25039. height: math.unit(20, "km")
  25040. },
  25041. {
  25042. name: "Caretaker",
  25043. height: math.unit(444, "megameters")
  25044. },
  25045. ]
  25046. ))
  25047. characterMakers.push(() => makeCharacter(
  25048. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25049. {
  25050. front: {
  25051. height: math.unit(1.67, "meters"),
  25052. weight: math.unit(140, "lb"),
  25053. name: "Front",
  25054. image: {
  25055. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25056. extra: 438 / 410,
  25057. bottom: 0.75 / 439
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Shrunken",
  25064. height: math.unit(7.6, "cm")
  25065. },
  25066. {
  25067. name: "Human Scale",
  25068. height: math.unit(1.67, "meters")
  25069. },
  25070. {
  25071. name: "Wolxi Scale",
  25072. height: math.unit(36.7, "meters"),
  25073. default: true
  25074. },
  25075. ]
  25076. ))
  25077. characterMakers.push(() => makeCharacter(
  25078. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25079. {
  25080. front: {
  25081. height: math.unit(1.73, "meters"),
  25082. weight: math.unit(240, "lb"),
  25083. name: "Front",
  25084. image: {
  25085. source: "./media/characters/izue-two-mothers/front.svg",
  25086. extra: 469 / 437,
  25087. bottom: 1.24 / 470.6
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Shrunken",
  25094. height: math.unit(7.86, "cm")
  25095. },
  25096. {
  25097. name: "Human Scale",
  25098. height: math.unit(1.73, "meters")
  25099. },
  25100. {
  25101. name: "Wolxi Scale",
  25102. height: math.unit(38, "meters"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25109. {
  25110. front: {
  25111. height: math.unit(1.55, "meters"),
  25112. weight: math.unit(120, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/teeku-love-shack/front.svg",
  25116. extra: 387 / 362,
  25117. bottom: 1.51 / 388
  25118. }
  25119. },
  25120. },
  25121. [
  25122. {
  25123. name: "Shrunken",
  25124. height: math.unit(7, "cm")
  25125. },
  25126. {
  25127. name: "Human Scale",
  25128. height: math.unit(1.55, "meters")
  25129. },
  25130. {
  25131. name: "Wolxi Scale",
  25132. height: math.unit(34.1, "meters"),
  25133. default: true
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(1.83, "meters"),
  25142. weight: math.unit(135, "lb"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/dejma-the-red/front.svg",
  25146. extra: 480 / 458,
  25147. bottom: 1.8 / 482
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Shrunken",
  25154. height: math.unit(8.3, "cm")
  25155. },
  25156. {
  25157. name: "Human Scale",
  25158. height: math.unit(1.83, "meters")
  25159. },
  25160. {
  25161. name: "Wolxi Scale",
  25162. height: math.unit(40, "meters"),
  25163. default: true
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25169. {
  25170. front: {
  25171. height: math.unit(1.78, "meters"),
  25172. weight: math.unit(65, "kg"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/aki/front.svg",
  25176. extra: 452 / 415
  25177. }
  25178. },
  25179. frontNsfw: {
  25180. height: math.unit(1.78, "meters"),
  25181. weight: math.unit(65, "kg"),
  25182. name: "Front (NSFW)",
  25183. image: {
  25184. source: "./media/characters/aki/front-nsfw.svg",
  25185. extra: 452 / 415
  25186. }
  25187. },
  25188. back: {
  25189. height: math.unit(1.78, "meters"),
  25190. weight: math.unit(65, "kg"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/aki/back.svg",
  25194. extra: 452 / 415
  25195. }
  25196. },
  25197. rump: {
  25198. height: math.unit(2.05, "feet"),
  25199. name: "Rump",
  25200. image: {
  25201. source: "./media/characters/aki/rump.svg"
  25202. }
  25203. },
  25204. dick: {
  25205. height: math.unit(0.95, "feet"),
  25206. name: "Dick",
  25207. image: {
  25208. source: "./media/characters/aki/dick.svg"
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Micro",
  25215. height: math.unit(15, "cm")
  25216. },
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(178, "cm"),
  25220. default: true
  25221. },
  25222. {
  25223. name: "Macro",
  25224. height: math.unit(214, "m")
  25225. },
  25226. {
  25227. name: "Macro+",
  25228. height: math.unit(534, "m")
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(5 + 5 / 12, "feet"),
  25237. weight: math.unit(120, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/ari/front.svg",
  25241. extra: 1550/1471,
  25242. bottom: 39/1589
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Normal",
  25249. height: math.unit(5 + 5 / 12, "feet")
  25250. },
  25251. {
  25252. name: "Macro",
  25253. height: math.unit(100, "feet"),
  25254. default: true
  25255. },
  25256. {
  25257. name: "Megamacro",
  25258. height: math.unit(100, "miles")
  25259. },
  25260. {
  25261. name: "Gigamacro",
  25262. height: math.unit(80000, "miles")
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25268. {
  25269. side: {
  25270. height: math.unit(9, "feet"),
  25271. weight: math.unit(400, "kg"),
  25272. name: "Side",
  25273. image: {
  25274. source: "./media/characters/bolt/side.svg",
  25275. extra: 1126 / 896,
  25276. bottom: 60 / 1187.3,
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Micro",
  25283. height: math.unit(5, "inches")
  25284. },
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(9, "feet"),
  25288. default: true
  25289. },
  25290. {
  25291. name: "Macro",
  25292. height: math.unit(700, "feet")
  25293. },
  25294. {
  25295. name: "Max Size",
  25296. height: math.unit(1.52e22, "yottameters")
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(4.3, "meters"),
  25305. weight: math.unit(3, "tons"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/draekon-sylviar/front.svg",
  25309. extra: 2072/1512,
  25310. bottom: 74/2146
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(4.3, "meters"),
  25315. weight: math.unit(3, "tons"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/draekon-sylviar/back.svg",
  25319. extra: 1639/1483,
  25320. bottom: 41/1680
  25321. }
  25322. },
  25323. feral: {
  25324. height: math.unit(1.15, "meters"),
  25325. weight: math.unit(3, "tons"),
  25326. name: "Feral",
  25327. image: {
  25328. source: "./media/characters/draekon-sylviar/feral.svg",
  25329. extra: 1033/395,
  25330. bottom: 130/1163
  25331. }
  25332. },
  25333. maw: {
  25334. height: math.unit(1.3, "meters"),
  25335. name: "Maw",
  25336. image: {
  25337. source: "./media/characters/draekon-sylviar/maw.svg"
  25338. }
  25339. },
  25340. mawSeparated: {
  25341. height: math.unit(1.53, "meters"),
  25342. name: "Separated Maw",
  25343. image: {
  25344. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25345. }
  25346. },
  25347. tail: {
  25348. height: math.unit(1.15, "meters"),
  25349. name: "Tail",
  25350. image: {
  25351. source: "./media/characters/draekon-sylviar/tail.svg"
  25352. }
  25353. },
  25354. tailDick: {
  25355. height: math.unit(1.15, "meters"),
  25356. name: "Tail (Dick)",
  25357. image: {
  25358. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25359. }
  25360. },
  25361. tailDickSeparated: {
  25362. height: math.unit(1.19, "meters"),
  25363. name: "Tail (Separated Dick)",
  25364. image: {
  25365. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25366. }
  25367. },
  25368. slit: {
  25369. height: math.unit(1, "meters"),
  25370. name: "Slit",
  25371. image: {
  25372. source: "./media/characters/draekon-sylviar/slit.svg"
  25373. }
  25374. },
  25375. dick: {
  25376. height: math.unit(1.15, "meters"),
  25377. name: "Dick",
  25378. image: {
  25379. source: "./media/characters/draekon-sylviar/dick.svg"
  25380. }
  25381. },
  25382. dickSeparated: {
  25383. height: math.unit(1.1, "meters"),
  25384. name: "Separated Dick",
  25385. image: {
  25386. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25387. }
  25388. },
  25389. sheath: {
  25390. height: math.unit(1.15, "meters"),
  25391. name: "Sheath",
  25392. image: {
  25393. source: "./media/characters/draekon-sylviar/sheath.svg"
  25394. }
  25395. },
  25396. },
  25397. [
  25398. {
  25399. name: "Small",
  25400. height: math.unit(4.53 / 2, "meters"),
  25401. default: true
  25402. },
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(4.53, "meters"),
  25406. default: true
  25407. },
  25408. {
  25409. name: "Large",
  25410. height: math.unit(4.53 * 2, "meters"),
  25411. },
  25412. ]
  25413. ))
  25414. characterMakers.push(() => makeCharacter(
  25415. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25416. {
  25417. front: {
  25418. height: math.unit(6 + 2 / 12, "feet"),
  25419. weight: math.unit(180, "lb"),
  25420. name: "Front",
  25421. image: {
  25422. source: "./media/characters/brawler/front.svg",
  25423. extra: 3301 / 3027,
  25424. bottom: 138 / 3439
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(6 + 2 / 12, "feet"),
  25432. default: true
  25433. },
  25434. ]
  25435. ))
  25436. characterMakers.push(() => makeCharacter(
  25437. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25438. {
  25439. front: {
  25440. height: math.unit(11, "feet"),
  25441. weight: math.unit(1000, "lb"),
  25442. name: "Front",
  25443. image: {
  25444. source: "./media/characters/alex/front.svg",
  25445. bottom: 44.5 / 620
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Micro",
  25452. height: math.unit(5, "inches")
  25453. },
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(11, "feet"),
  25457. default: true
  25458. },
  25459. {
  25460. name: "Macro",
  25461. height: math.unit(9.5e9, "feet")
  25462. },
  25463. {
  25464. name: "Max Size",
  25465. height: math.unit(1.4e283, "yottameters")
  25466. },
  25467. ]
  25468. ))
  25469. characterMakers.push(() => makeCharacter(
  25470. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25471. {
  25472. female: {
  25473. height: math.unit(29.9, "m"),
  25474. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25475. name: "Female",
  25476. image: {
  25477. source: "./media/characters/zenari/female.svg",
  25478. extra: 3281.6 / 3217,
  25479. bottom: 72.2 / 3353
  25480. }
  25481. },
  25482. male: {
  25483. height: math.unit(27.7, "m"),
  25484. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25485. name: "Male",
  25486. image: {
  25487. source: "./media/characters/zenari/male.svg",
  25488. extra: 3008 / 2991,
  25489. bottom: 54.6 / 3069
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Macro",
  25496. height: math.unit(29.7, "meters"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25503. {
  25504. female: {
  25505. height: math.unit(23.8, "m"),
  25506. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25507. name: "Female",
  25508. image: {
  25509. source: "./media/characters/mactarian/female.svg",
  25510. extra: 2662 / 2569,
  25511. bottom: 73 / 2736
  25512. }
  25513. },
  25514. male: {
  25515. height: math.unit(23.8, "m"),
  25516. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25517. name: "Male",
  25518. image: {
  25519. source: "./media/characters/mactarian/male.svg",
  25520. extra: 2673 / 2600,
  25521. bottom: 76 / 2750
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Macro",
  25528. height: math.unit(23.8, "meters"),
  25529. default: true
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25535. {
  25536. female: {
  25537. height: math.unit(19.3, "m"),
  25538. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25539. name: "Female",
  25540. image: {
  25541. source: "./media/characters/umok/female.svg",
  25542. extra: 2186 / 2078,
  25543. bottom: 87 / 2277
  25544. }
  25545. },
  25546. male: {
  25547. height: math.unit(19.5, "m"),
  25548. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25549. name: "Male",
  25550. image: {
  25551. source: "./media/characters/umok/male.svg",
  25552. extra: 2233 / 2140,
  25553. bottom: 24.4 / 2258
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Macro",
  25560. height: math.unit(19.3, "meters"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25567. {
  25568. female: {
  25569. height: math.unit(26.15, "m"),
  25570. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25571. name: "Female",
  25572. image: {
  25573. source: "./media/characters/joraxian/female.svg",
  25574. extra: 2912 / 2824,
  25575. bottom: 36 / 2956
  25576. }
  25577. },
  25578. male: {
  25579. height: math.unit(25.4, "m"),
  25580. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25581. name: "Male",
  25582. image: {
  25583. source: "./media/characters/joraxian/male.svg",
  25584. extra: 2877 / 2721,
  25585. bottom: 82 / 2967
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Macro",
  25592. height: math.unit(26.15, "meters"),
  25593. default: true
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25599. {
  25600. female: {
  25601. height: math.unit(21.6, "m"),
  25602. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25603. name: "Female",
  25604. image: {
  25605. source: "./media/characters/sthara/female.svg",
  25606. extra: 2516 / 2347,
  25607. bottom: 21.5 / 2537
  25608. }
  25609. },
  25610. male: {
  25611. height: math.unit(24, "m"),
  25612. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25613. name: "Male",
  25614. image: {
  25615. source: "./media/characters/sthara/male.svg",
  25616. extra: 2732 / 2607,
  25617. bottom: 23 / 2732
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Macro",
  25624. height: math.unit(21.6, "meters"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(6 + 4 / 12, "feet"),
  25634. weight: math.unit(175, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/luka-bryzant/front.svg",
  25638. extra: 311 / 289,
  25639. bottom: 4 / 315
  25640. }
  25641. },
  25642. back: {
  25643. height: math.unit(6 + 4 / 12, "feet"),
  25644. weight: math.unit(175, "lb"),
  25645. name: "Back",
  25646. image: {
  25647. source: "./media/characters/luka-bryzant/back.svg",
  25648. extra: 311 / 289,
  25649. bottom: 3.8 / 313.7
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Micro",
  25656. height: math.unit(10, "inches")
  25657. },
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(6 + 4 / 12, "feet"),
  25661. default: true
  25662. },
  25663. {
  25664. name: "Large",
  25665. height: math.unit(12, "feet")
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(5 + 7 / 12, "feet"),
  25674. weight: math.unit(185, "lb"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/aman-aquila/front.svg",
  25678. extra: 1013 / 976,
  25679. bottom: 45.6 / 1057
  25680. }
  25681. },
  25682. side: {
  25683. height: math.unit(5 + 7 / 12, "feet"),
  25684. weight: math.unit(185, "lb"),
  25685. name: "Side",
  25686. image: {
  25687. source: "./media/characters/aman-aquila/side.svg",
  25688. extra: 1054 / 1011,
  25689. bottom: 15 / 1070
  25690. }
  25691. },
  25692. back: {
  25693. height: math.unit(5 + 7 / 12, "feet"),
  25694. weight: math.unit(185, "lb"),
  25695. name: "Back",
  25696. image: {
  25697. source: "./media/characters/aman-aquila/back.svg",
  25698. extra: 1026 / 970,
  25699. bottom: 12 / 1039
  25700. }
  25701. },
  25702. head: {
  25703. height: math.unit(1.211, "feet"),
  25704. name: "Head",
  25705. image: {
  25706. source: "./media/characters/aman-aquila/head.svg",
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Minimicro",
  25713. height: math.unit(0.057, "inches")
  25714. },
  25715. {
  25716. name: "Micro",
  25717. height: math.unit(7, "inches")
  25718. },
  25719. {
  25720. name: "Mini",
  25721. height: math.unit(3 + 7 / 12, "feet")
  25722. },
  25723. {
  25724. name: "Normal",
  25725. height: math.unit(5 + 7 / 12, "feet"),
  25726. default: true
  25727. },
  25728. {
  25729. name: "Macro",
  25730. height: math.unit(157 + 7 / 12, "feet")
  25731. },
  25732. {
  25733. name: "Megamacro",
  25734. height: math.unit(1557 + 7 / 12, "feet")
  25735. },
  25736. {
  25737. name: "Gigamacro",
  25738. height: math.unit(15557 + 7 / 12, "feet")
  25739. },
  25740. ]
  25741. ))
  25742. characterMakers.push(() => makeCharacter(
  25743. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25744. {
  25745. front: {
  25746. height: math.unit(3 + 2 / 12, "inches"),
  25747. weight: math.unit(0.3, "ounces"),
  25748. name: "Front",
  25749. image: {
  25750. source: "./media/characters/hiphae/front.svg",
  25751. extra: 1931 / 1683,
  25752. bottom: 24 / 1955
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Normal",
  25759. height: math.unit(3 + 1 / 2, "inches"),
  25760. default: true
  25761. },
  25762. ]
  25763. ))
  25764. characterMakers.push(() => makeCharacter(
  25765. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25766. {
  25767. front: {
  25768. height: math.unit(5 + 10 / 12, "feet"),
  25769. weight: math.unit(165, "lb"),
  25770. name: "Front",
  25771. image: {
  25772. source: "./media/characters/nicky/front.svg",
  25773. extra: 3144 / 2886,
  25774. bottom: 45.6 / 3192
  25775. }
  25776. },
  25777. back: {
  25778. height: math.unit(5 + 10 / 12, "feet"),
  25779. weight: math.unit(165, "lb"),
  25780. name: "Back",
  25781. image: {
  25782. source: "./media/characters/nicky/back.svg",
  25783. extra: 3055 / 2804,
  25784. bottom: 28.4 / 3087
  25785. }
  25786. },
  25787. frontclothed: {
  25788. height: math.unit(5 + 10 / 12, "feet"),
  25789. weight: math.unit(165, "lb"),
  25790. name: "Front-clothed",
  25791. image: {
  25792. source: "./media/characters/nicky/front-clothed.svg",
  25793. extra: 3184.9 / 2926.9,
  25794. bottom: 86.5 / 3239.9
  25795. }
  25796. },
  25797. foot: {
  25798. height: math.unit(1.16, "feet"),
  25799. name: "Foot",
  25800. image: {
  25801. source: "./media/characters/nicky/foot.svg"
  25802. }
  25803. },
  25804. feet: {
  25805. height: math.unit(1.34, "feet"),
  25806. name: "Feet",
  25807. image: {
  25808. source: "./media/characters/nicky/feet.svg"
  25809. }
  25810. },
  25811. maw: {
  25812. height: math.unit(0.9, "feet"),
  25813. name: "Maw",
  25814. image: {
  25815. source: "./media/characters/nicky/maw.svg"
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(5 + 10 / 12, "feet"),
  25823. default: true
  25824. },
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(60, "feet")
  25828. },
  25829. {
  25830. name: "Megamacro",
  25831. height: math.unit(1, "mile")
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25837. {
  25838. side: {
  25839. height: math.unit(10, "feet"),
  25840. weight: math.unit(600, "lb"),
  25841. name: "Side",
  25842. image: {
  25843. source: "./media/characters/blair/side.svg",
  25844. bottom: 16.6 / 475,
  25845. extra: 458 / 431
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Micro",
  25852. height: math.unit(8, "inches")
  25853. },
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(10, "feet"),
  25857. default: true
  25858. },
  25859. {
  25860. name: "Macro",
  25861. height: math.unit(180, "feet")
  25862. },
  25863. ]
  25864. ))
  25865. characterMakers.push(() => makeCharacter(
  25866. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25867. {
  25868. front: {
  25869. height: math.unit(5 + 4 / 12, "feet"),
  25870. weight: math.unit(125, "lb"),
  25871. name: "Front",
  25872. image: {
  25873. source: "./media/characters/fisher/front.svg",
  25874. extra: 444 / 390,
  25875. bottom: 2 / 444.8
  25876. }
  25877. },
  25878. },
  25879. [
  25880. {
  25881. name: "Micro",
  25882. height: math.unit(4, "inches")
  25883. },
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(5 + 4 / 12, "feet"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Macro",
  25891. height: math.unit(100, "feet")
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(6.71, "feet"),
  25900. weight: math.unit(200, "lb"),
  25901. capacity: math.unit(1000000, "people"),
  25902. name: "Front",
  25903. image: {
  25904. source: "./media/characters/gliss/front.svg",
  25905. extra: 2347 / 2231,
  25906. bottom: 113 / 2462
  25907. }
  25908. },
  25909. hammerspaceSize: {
  25910. height: math.unit(6.71 * 717, "feet"),
  25911. weight: math.unit(200, "lb"),
  25912. capacity: math.unit(1000000, "people"),
  25913. name: "Hammerspace Size",
  25914. image: {
  25915. source: "./media/characters/gliss/front.svg",
  25916. extra: 2347 / 2231,
  25917. bottom: 113 / 2462
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(6.71, "feet"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25931. {
  25932. side: {
  25933. height: math.unit(1.44, "m"),
  25934. weight: math.unit(80, "kg"),
  25935. name: "Side",
  25936. image: {
  25937. source: "./media/characters/dune-anderson/side.svg",
  25938. bottom: 49 / 1426
  25939. }
  25940. },
  25941. },
  25942. [
  25943. {
  25944. name: "Wolf-sized",
  25945. height: math.unit(1.44, "meters")
  25946. },
  25947. {
  25948. name: "Normal",
  25949. height: math.unit(5.05, "meters"),
  25950. default: true
  25951. },
  25952. {
  25953. name: "Big",
  25954. height: math.unit(14.4, "meters")
  25955. },
  25956. {
  25957. name: "Huge",
  25958. height: math.unit(144, "meters")
  25959. },
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(7, "feet"),
  25967. weight: math.unit(425, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/hind/front.svg",
  25971. extra: 2091 / 1860,
  25972. bottom: 129 / 2220
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(7, "feet"),
  25977. weight: math.unit(425, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/hind/back.svg",
  25981. extra: 2091 / 1860,
  25982. bottom: 24.6 / 2309
  25983. }
  25984. },
  25985. tail: {
  25986. height: math.unit(2.8, "feet"),
  25987. name: "Tail",
  25988. image: {
  25989. source: "./media/characters/hind/tail.svg"
  25990. }
  25991. },
  25992. head: {
  25993. height: math.unit(2.55, "feet"),
  25994. name: "Head",
  25995. image: {
  25996. source: "./media/characters/hind/head.svg"
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "XS",
  26003. height: math.unit(0.7, "feet")
  26004. },
  26005. {
  26006. name: "Normal",
  26007. height: math.unit(7, "feet"),
  26008. default: true
  26009. },
  26010. {
  26011. name: "XL",
  26012. height: math.unit(70, "feet")
  26013. },
  26014. ]
  26015. ))
  26016. characterMakers.push(() => makeCharacter(
  26017. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26018. {
  26019. front: {
  26020. height: math.unit(2.1, "meters"),
  26021. weight: math.unit(150, "lb"),
  26022. name: "Front",
  26023. image: {
  26024. source: "./media/characters/tharquench-sizestealer/front.svg",
  26025. extra: 1605/1470,
  26026. bottom: 36/1641
  26027. }
  26028. },
  26029. frontAlt: {
  26030. height: math.unit(2.1, "meters"),
  26031. weight: math.unit(150, "lb"),
  26032. name: "Front (Alt)",
  26033. image: {
  26034. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26035. extra: 2318 / 2063,
  26036. bottom: 93.4 / 2410
  26037. }
  26038. },
  26039. },
  26040. [
  26041. {
  26042. name: "Nano",
  26043. height: math.unit(1, "mm")
  26044. },
  26045. {
  26046. name: "Micro",
  26047. height: math.unit(1, "cm")
  26048. },
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(2.1, "meters"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26058. {
  26059. front: {
  26060. height: math.unit(7 + 5 / 12, "feet"),
  26061. weight: math.unit(357, "lb"),
  26062. name: "Front",
  26063. image: {
  26064. source: "./media/characters/solex-draconov/front.svg",
  26065. extra: 1993 / 1865,
  26066. bottom: 117 / 2111
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Natural Height",
  26073. height: math.unit(7 + 5 / 12, "feet"),
  26074. default: true
  26075. },
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(350, "feet")
  26079. },
  26080. {
  26081. name: "Macro+",
  26082. height: math.unit(1000, "feet")
  26083. },
  26084. {
  26085. name: "Megamacro",
  26086. height: math.unit(20, "km")
  26087. },
  26088. {
  26089. name: "Megamacro+",
  26090. height: math.unit(1000, "km")
  26091. },
  26092. {
  26093. name: "Gigamacro",
  26094. height: math.unit(2.5, "Gm")
  26095. },
  26096. {
  26097. name: "Teramacro",
  26098. height: math.unit(15, "Tm")
  26099. },
  26100. {
  26101. name: "Galactic",
  26102. height: math.unit(30, "Zm")
  26103. },
  26104. {
  26105. name: "Universal",
  26106. height: math.unit(21000, "Ym")
  26107. },
  26108. {
  26109. name: "Omniversal",
  26110. height: math.unit(9.861e50, "Ym")
  26111. },
  26112. {
  26113. name: "Existential",
  26114. height: math.unit(1e300, "meters")
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26120. {
  26121. side: {
  26122. height: math.unit(25, "feet"),
  26123. weight: math.unit(90000, "lb"),
  26124. name: "Side",
  26125. image: {
  26126. source: "./media/characters/mandarax/side.svg",
  26127. extra: 614 / 332,
  26128. bottom: 55 / 630
  26129. }
  26130. },
  26131. lounging: {
  26132. height: math.unit(15.4, "feet"),
  26133. weight: math.unit(90000, "lb"),
  26134. name: "Lounging",
  26135. image: {
  26136. source: "./media/characters/mandarax/lounging.svg",
  26137. extra: 817/609,
  26138. bottom: 685/1502
  26139. }
  26140. },
  26141. head: {
  26142. height: math.unit(11.4, "feet"),
  26143. name: "Head",
  26144. image: {
  26145. source: "./media/characters/mandarax/head.svg"
  26146. }
  26147. },
  26148. belly: {
  26149. height: math.unit(33, "feet"),
  26150. name: "Belly",
  26151. capacity: math.unit(500, "people"),
  26152. image: {
  26153. source: "./media/characters/mandarax/belly.svg"
  26154. }
  26155. },
  26156. dick: {
  26157. height: math.unit(8.46, "feet"),
  26158. name: "Dick",
  26159. image: {
  26160. source: "./media/characters/mandarax/dick.svg"
  26161. }
  26162. },
  26163. top: {
  26164. height: math.unit(28, "meters"),
  26165. name: "Top",
  26166. image: {
  26167. source: "./media/characters/mandarax/top.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(25, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(5, "feet"),
  26184. weight: math.unit(90, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/pixil/front.svg",
  26188. extra: 2000 / 1618,
  26189. bottom: 12.3 / 2011
  26190. }
  26191. },
  26192. },
  26193. [
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(5, "feet"),
  26197. default: true
  26198. },
  26199. {
  26200. name: "Megamacro",
  26201. height: math.unit(10, "miles"),
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(7 + 2 / 12, "feet"),
  26210. weight: math.unit(200, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/angel/front.svg",
  26214. extra: 1830 / 1737,
  26215. bottom: 22.6 / 1854,
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Normal",
  26222. height: math.unit(7 + 2 / 12, "feet"),
  26223. default: true
  26224. },
  26225. {
  26226. name: "Macro",
  26227. height: math.unit(1000, "feet")
  26228. },
  26229. {
  26230. name: "Megamacro",
  26231. height: math.unit(2, "miles")
  26232. },
  26233. {
  26234. name: "Gigamacro",
  26235. height: math.unit(20, "earths")
  26236. },
  26237. ]
  26238. ))
  26239. characterMakers.push(() => makeCharacter(
  26240. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26241. {
  26242. front: {
  26243. height: math.unit(5, "feet"),
  26244. weight: math.unit(180, "lb"),
  26245. name: "Front",
  26246. image: {
  26247. source: "./media/characters/mekana/front.svg",
  26248. extra: 1671 / 1605,
  26249. bottom: 3.5 / 1691
  26250. }
  26251. },
  26252. side: {
  26253. height: math.unit(5, "feet"),
  26254. weight: math.unit(180, "lb"),
  26255. name: "Side",
  26256. image: {
  26257. source: "./media/characters/mekana/side.svg",
  26258. extra: 1671 / 1605,
  26259. bottom: 3.5 / 1691
  26260. }
  26261. },
  26262. back: {
  26263. height: math.unit(5, "feet"),
  26264. weight: math.unit(180, "lb"),
  26265. name: "Back",
  26266. image: {
  26267. source: "./media/characters/mekana/back.svg",
  26268. extra: 1671 / 1605,
  26269. bottom: 3.5 / 1691
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(5, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26283. {
  26284. front: {
  26285. height: math.unit(4 + 6 / 12, "feet"),
  26286. weight: math.unit(80, "lb"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/pixie/front.svg",
  26290. extra: 1924 / 1825,
  26291. bottom: 22.4 / 1946
  26292. }
  26293. },
  26294. },
  26295. [
  26296. {
  26297. name: "Normal",
  26298. height: math.unit(4 + 6 / 12, "feet"),
  26299. default: true
  26300. },
  26301. {
  26302. name: "Macro",
  26303. height: math.unit(40, "feet")
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(2.1, "meters"),
  26312. weight: math.unit(200, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/the-lascivious/front.svg",
  26316. extra: 1 / 0.893,
  26317. bottom: 3.5 / 573.7
  26318. }
  26319. },
  26320. },
  26321. [
  26322. {
  26323. name: "Human Scale",
  26324. height: math.unit(2.1, "meters")
  26325. },
  26326. {
  26327. name: "Wolxi Scale",
  26328. height: math.unit(46.2, "m"),
  26329. default: true
  26330. },
  26331. {
  26332. name: "Boinker of Buildings",
  26333. height: math.unit(10, "km")
  26334. },
  26335. {
  26336. name: "Shagger of Skyscrapers",
  26337. height: math.unit(40, "km")
  26338. },
  26339. {
  26340. name: "Banger of Boroughs",
  26341. height: math.unit(4000, "km")
  26342. },
  26343. {
  26344. name: "Screwer of States",
  26345. height: math.unit(100000, "km")
  26346. },
  26347. {
  26348. name: "Pounder of Planets",
  26349. height: math.unit(2000000, "km")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26355. {
  26356. front: {
  26357. height: math.unit(6, "feet"),
  26358. weight: math.unit(150, "lb"),
  26359. name: "Front",
  26360. image: {
  26361. source: "./media/characters/aj/front.svg",
  26362. extra: 2039 / 1562,
  26363. bottom: 40 / 2079
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(11 + 6 / 12, "feet"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Megamacro",
  26375. height: math.unit(60, "megameters")
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26381. {
  26382. side: {
  26383. height: math.unit(31 + 8 / 12, "feet"),
  26384. weight: math.unit(75000, "kg"),
  26385. name: "Side",
  26386. image: {
  26387. source: "./media/characters/koros/side.svg",
  26388. extra: 1442 / 1297,
  26389. bottom: 122.7 / 1562
  26390. }
  26391. },
  26392. dicksKingsCrown: {
  26393. height: math.unit(6, "feet"),
  26394. name: "Dicks (King's Crown)",
  26395. image: {
  26396. source: "./media/characters/koros/dicks-kings-crown.svg"
  26397. }
  26398. },
  26399. dicksTailSet: {
  26400. height: math.unit(3, "feet"),
  26401. name: "Dicks (Tail Set)",
  26402. image: {
  26403. source: "./media/characters/koros/dicks-tail-set.svg"
  26404. }
  26405. },
  26406. dickCumming: {
  26407. height: math.unit(7.98, "feet"),
  26408. name: "Dick (Cumming)",
  26409. image: {
  26410. source: "./media/characters/koros/dick-cumming.svg"
  26411. }
  26412. },
  26413. dicksBack: {
  26414. height: math.unit(5.9, "feet"),
  26415. name: "Dicks (Back)",
  26416. image: {
  26417. source: "./media/characters/koros/dicks-back.svg"
  26418. }
  26419. },
  26420. dicksFront: {
  26421. height: math.unit(3.72, "feet"),
  26422. name: "Dicks (Front)",
  26423. image: {
  26424. source: "./media/characters/koros/dicks-front.svg"
  26425. }
  26426. },
  26427. dicksPeeking: {
  26428. height: math.unit(3.0, "feet"),
  26429. name: "Dicks (Peeking)",
  26430. image: {
  26431. source: "./media/characters/koros/dicks-peeking.svg"
  26432. }
  26433. },
  26434. eye: {
  26435. height: math.unit(1.7, "feet"),
  26436. name: "Eye",
  26437. image: {
  26438. source: "./media/characters/koros/eye.svg"
  26439. }
  26440. },
  26441. headFront: {
  26442. height: math.unit(11.69, "feet"),
  26443. name: "Head (Front)",
  26444. image: {
  26445. source: "./media/characters/koros/head-front.svg"
  26446. }
  26447. },
  26448. headSide: {
  26449. height: math.unit(14, "feet"),
  26450. name: "Head (Side)",
  26451. image: {
  26452. source: "./media/characters/koros/head-side.svg"
  26453. }
  26454. },
  26455. leg: {
  26456. height: math.unit(17, "feet"),
  26457. name: "Leg",
  26458. image: {
  26459. source: "./media/characters/koros/leg.svg"
  26460. }
  26461. },
  26462. mawSide: {
  26463. height: math.unit(12.8, "feet"),
  26464. name: "Maw (Side)",
  26465. image: {
  26466. source: "./media/characters/koros/maw-side.svg"
  26467. }
  26468. },
  26469. mawSpitting: {
  26470. height: math.unit(17, "feet"),
  26471. name: "Maw (Spitting)",
  26472. image: {
  26473. source: "./media/characters/koros/maw-spitting.svg"
  26474. }
  26475. },
  26476. slit: {
  26477. height: math.unit(2.8, "feet"),
  26478. name: "Slit",
  26479. image: {
  26480. source: "./media/characters/koros/slit.svg"
  26481. }
  26482. },
  26483. stomach: {
  26484. height: math.unit(6.8, "feet"),
  26485. capacity: math.unit(20, "people"),
  26486. name: "Stomach",
  26487. image: {
  26488. source: "./media/characters/koros/stomach.svg"
  26489. }
  26490. },
  26491. wingspanBottom: {
  26492. height: math.unit(114, "feet"),
  26493. name: "Wingspan (Bottom)",
  26494. image: {
  26495. source: "./media/characters/koros/wingspan-bottom.svg"
  26496. }
  26497. },
  26498. wingspanTop: {
  26499. height: math.unit(104, "feet"),
  26500. name: "Wingspan (Top)",
  26501. image: {
  26502. source: "./media/characters/koros/wingspan-top.svg"
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(31 + 8 / 12, "feet"),
  26510. default: true
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(18 + 5 / 12, "feet"),
  26519. weight: math.unit(3750, "kg"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/vexx/front.svg",
  26523. extra: 426 / 396,
  26524. bottom: 31.5 / 458
  26525. }
  26526. },
  26527. maw: {
  26528. height: math.unit(6, "feet"),
  26529. name: "Maw",
  26530. image: {
  26531. source: "./media/characters/vexx/maw.svg"
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Normal",
  26538. height: math.unit(18 + 5 / 12, "feet"),
  26539. default: true
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(17 + 6 / 12, "feet"),
  26548. weight: math.unit(150, "lb"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/baadra/front.svg",
  26552. extra: 1694/1553,
  26553. bottom: 179/1873
  26554. }
  26555. },
  26556. frontAlt: {
  26557. height: math.unit(17 + 6 / 12, "feet"),
  26558. weight: math.unit(150, "lb"),
  26559. name: "Front (Alt)",
  26560. image: {
  26561. source: "./media/characters/baadra/front-alt.svg",
  26562. extra: 3137 / 2890,
  26563. bottom: 168.4 / 3305
  26564. }
  26565. },
  26566. back: {
  26567. height: math.unit(17 + 6 / 12, "feet"),
  26568. weight: math.unit(150, "lb"),
  26569. name: "Back",
  26570. image: {
  26571. source: "./media/characters/baadra/back.svg",
  26572. extra: 3142 / 2890,
  26573. bottom: 220 / 3371
  26574. }
  26575. },
  26576. head: {
  26577. height: math.unit(5.45, "feet"),
  26578. name: "Head",
  26579. image: {
  26580. source: "./media/characters/baadra/head.svg"
  26581. }
  26582. },
  26583. headAngry: {
  26584. height: math.unit(4.95, "feet"),
  26585. name: "Head (Angry)",
  26586. image: {
  26587. source: "./media/characters/baadra/head-angry.svg"
  26588. }
  26589. },
  26590. headOpen: {
  26591. height: math.unit(6, "feet"),
  26592. name: "Head (Open)",
  26593. image: {
  26594. source: "./media/characters/baadra/head-open.svg"
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(17 + 6 / 12, "feet"),
  26602. default: true
  26603. },
  26604. ]
  26605. ))
  26606. characterMakers.push(() => makeCharacter(
  26607. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26608. {
  26609. front: {
  26610. height: math.unit(7 + 3 / 12, "feet"),
  26611. weight: math.unit(180, "lb"),
  26612. name: "Front",
  26613. image: {
  26614. source: "./media/characters/juri/front.svg",
  26615. extra: 1401 / 1237,
  26616. bottom: 18.5 / 1418
  26617. }
  26618. },
  26619. side: {
  26620. height: math.unit(7 + 3 / 12, "feet"),
  26621. weight: math.unit(180, "lb"),
  26622. name: "Side",
  26623. image: {
  26624. source: "./media/characters/juri/side.svg",
  26625. extra: 1424 / 1242,
  26626. bottom: 18.5 / 1447
  26627. }
  26628. },
  26629. sitting: {
  26630. height: math.unit(6, "feet"),
  26631. weight: math.unit(180, "lb"),
  26632. name: "Sitting",
  26633. image: {
  26634. source: "./media/characters/juri/sitting.svg",
  26635. extra: 1270 / 1143,
  26636. bottom: 100 / 1343
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(7 + 3 / 12, "feet"),
  26641. weight: math.unit(180, "lb"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/juri/back.svg",
  26645. extra: 1377 / 1240,
  26646. bottom: 23.7 / 1405
  26647. }
  26648. },
  26649. maw: {
  26650. height: math.unit(2.8, "feet"),
  26651. name: "Maw",
  26652. image: {
  26653. source: "./media/characters/juri/maw.svg"
  26654. }
  26655. },
  26656. stomach: {
  26657. height: math.unit(0.89, "feet"),
  26658. capacity: math.unit(4, "liters"),
  26659. name: "Stomach",
  26660. image: {
  26661. source: "./media/characters/juri/stomach.svg"
  26662. }
  26663. },
  26664. },
  26665. [
  26666. {
  26667. name: "Normal",
  26668. height: math.unit(7 + 3 / 12, "feet"),
  26669. default: true
  26670. },
  26671. ]
  26672. ))
  26673. characterMakers.push(() => makeCharacter(
  26674. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26675. {
  26676. fox: {
  26677. height: math.unit(5 + 6 / 12, "feet"),
  26678. weight: math.unit(140, "lb"),
  26679. name: "Fox",
  26680. image: {
  26681. source: "./media/characters/maxene-sita/fox.svg",
  26682. extra: 146 / 138,
  26683. bottom: 2.1 / 148.19
  26684. }
  26685. },
  26686. foxLaying: {
  26687. height: math.unit(1.70, "feet"),
  26688. weight: math.unit(140, "lb"),
  26689. name: "Fox (Laying)",
  26690. image: {
  26691. source: "./media/characters/maxene-sita/fox-laying.svg",
  26692. extra: 910 / 572,
  26693. bottom: 71 / 981
  26694. }
  26695. },
  26696. kitsune: {
  26697. height: math.unit(10, "feet"),
  26698. weight: math.unit(800, "lb"),
  26699. name: "Kitsune",
  26700. image: {
  26701. source: "./media/characters/maxene-sita/kitsune.svg",
  26702. extra: 185 / 176,
  26703. bottom: 4.7 / 189.9
  26704. }
  26705. },
  26706. hellhound: {
  26707. height: math.unit(10, "feet"),
  26708. weight: math.unit(700, "lb"),
  26709. name: "Hellhound",
  26710. image: {
  26711. source: "./media/characters/maxene-sita/hellhound.svg",
  26712. extra: 1600 / 1545,
  26713. bottom: 81 / 1681
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(5 + 6 / 12, "feet"),
  26721. default: true
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26727. {
  26728. front: {
  26729. height: math.unit(3 + 4 / 12, "feet"),
  26730. weight: math.unit(70, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/maia/front.svg",
  26734. extra: 227 / 219.5,
  26735. bottom: 40 / 267
  26736. }
  26737. },
  26738. back: {
  26739. height: math.unit(3 + 4 / 12, "feet"),
  26740. weight: math.unit(70, "lb"),
  26741. name: "Back",
  26742. image: {
  26743. source: "./media/characters/maia/back.svg",
  26744. extra: 237 / 225
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Normal",
  26751. height: math.unit(3 + 4 / 12, "feet"),
  26752. default: true
  26753. },
  26754. ]
  26755. ))
  26756. characterMakers.push(() => makeCharacter(
  26757. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26758. {
  26759. front: {
  26760. height: math.unit(5 + 10 / 12, "feet"),
  26761. weight: math.unit(197, "lb"),
  26762. name: "Front",
  26763. image: {
  26764. source: "./media/characters/jabaro/front.svg",
  26765. extra: 225 / 216,
  26766. bottom: 5.06 / 230
  26767. }
  26768. },
  26769. back: {
  26770. height: math.unit(5 + 10 / 12, "feet"),
  26771. weight: math.unit(197, "lb"),
  26772. name: "Back",
  26773. image: {
  26774. source: "./media/characters/jabaro/back.svg",
  26775. extra: 225 / 219,
  26776. bottom: 1.9 / 227
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(5 + 10 / 12, "feet"),
  26784. default: true
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(5 + 8 / 12, "feet"),
  26793. weight: math.unit(139, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/risa/front.svg",
  26797. extra: 270 / 260,
  26798. bottom: 11.2 / 282
  26799. }
  26800. },
  26801. back: {
  26802. height: math.unit(5 + 8 / 12, "feet"),
  26803. weight: math.unit(139, "lb"),
  26804. name: "Back",
  26805. image: {
  26806. source: "./media/characters/risa/back.svg",
  26807. extra: 264 / 255,
  26808. bottom: 4 / 268
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(5 + 8 / 12, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26822. {
  26823. front: {
  26824. height: math.unit(2 + 11 / 12, "feet"),
  26825. weight: math.unit(30, "lb"),
  26826. name: "Front",
  26827. image: {
  26828. source: "./media/characters/weatley/front.svg",
  26829. bottom: 10.7 / 414,
  26830. extra: 403.5 / 362
  26831. }
  26832. },
  26833. back: {
  26834. height: math.unit(2 + 11 / 12, "feet"),
  26835. weight: math.unit(30, "lb"),
  26836. name: "Back",
  26837. image: {
  26838. source: "./media/characters/weatley/back.svg",
  26839. bottom: 10.7 / 414,
  26840. extra: 403.5 / 362
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(2 + 11 / 12, "feet"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(5 + 2 / 12, "feet"),
  26857. weight: math.unit(50, "kg"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/mercury-crescent/front.svg",
  26861. extra: 1088 / 1033,
  26862. bottom: 18.9 / 1109
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(5 + 2 / 12, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(2, "feet"),
  26879. weight: math.unit(15, "kg"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/diamond-jones/front.svg",
  26883. extra: 727/723,
  26884. bottom: 46/773
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Normal",
  26891. height: math.unit(2, "feet"),
  26892. default: true
  26893. },
  26894. ]
  26895. ))
  26896. characterMakers.push(() => makeCharacter(
  26897. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26898. {
  26899. front: {
  26900. height: math.unit(3, "feet"),
  26901. weight: math.unit(30, "kg"),
  26902. name: "Front",
  26903. image: {
  26904. source: "./media/characters/sweet-bit/front.svg",
  26905. extra: 675 / 567,
  26906. bottom: 27.7 / 703
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(3, "feet"),
  26914. default: true
  26915. },
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26920. {
  26921. side: {
  26922. height: math.unit(9.178, "feet"),
  26923. weight: math.unit(500, "lb"),
  26924. name: "Side",
  26925. image: {
  26926. source: "./media/characters/umbrazen/side.svg",
  26927. extra: 1730 / 1473,
  26928. bottom: 34.6 / 1765
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Normal",
  26935. height: math.unit(9.178, "feet"),
  26936. default: true
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26942. {
  26943. front: {
  26944. height: math.unit(10, "feet"),
  26945. weight: math.unit(750, "lb"),
  26946. name: "Front",
  26947. image: {
  26948. source: "./media/characters/arlist/front.svg",
  26949. extra: 961 / 778,
  26950. bottom: 6.2 / 986
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(10, "feet"),
  26958. default: true
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26964. {
  26965. front: {
  26966. height: math.unit(5 + 1 / 12, "feet"),
  26967. weight: math.unit(110, "lb"),
  26968. name: "Front",
  26969. image: {
  26970. source: "./media/characters/aradel/front.svg",
  26971. extra: 324 / 303,
  26972. bottom: 3.6 / 329.4
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(5 + 1 / 12, "feet"),
  26980. default: true
  26981. },
  26982. ]
  26983. ))
  26984. characterMakers.push(() => makeCharacter(
  26985. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26986. {
  26987. dressed: {
  26988. height: math.unit(3 + 8 / 12, "feet"),
  26989. weight: math.unit(50, "lb"),
  26990. name: "Dressed",
  26991. image: {
  26992. source: "./media/characters/serryn/dressed.svg",
  26993. extra: 1792 / 1656,
  26994. bottom: 43.5 / 1840
  26995. }
  26996. },
  26997. nude: {
  26998. height: math.unit(3 + 8 / 12, "feet"),
  26999. weight: math.unit(50, "lb"),
  27000. name: "Nude",
  27001. image: {
  27002. source: "./media/characters/serryn/nude.svg",
  27003. extra: 1792 / 1656,
  27004. bottom: 43.5 / 1840
  27005. }
  27006. },
  27007. },
  27008. [
  27009. {
  27010. name: "Normal",
  27011. height: math.unit(3 + 8 / 12, "feet"),
  27012. default: true
  27013. },
  27014. ]
  27015. ))
  27016. characterMakers.push(() => makeCharacter(
  27017. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27018. {
  27019. front: {
  27020. height: math.unit(7 + 10 / 12, "feet"),
  27021. weight: math.unit(255, "lb"),
  27022. name: "Front",
  27023. image: {
  27024. source: "./media/characters/xavier-thyme/front.svg",
  27025. extra: 3733 / 3642,
  27026. bottom: 131 / 3869
  27027. }
  27028. },
  27029. frontRaven: {
  27030. height: math.unit(7 + 10 / 12, "feet"),
  27031. weight: math.unit(255, "lb"),
  27032. name: "Front (Raven)",
  27033. image: {
  27034. source: "./media/characters/xavier-thyme/front-raven.svg",
  27035. extra: 4385 / 3642,
  27036. bottom: 131 / 4517
  27037. }
  27038. },
  27039. },
  27040. [
  27041. {
  27042. name: "Normal",
  27043. height: math.unit(7 + 10 / 12, "feet"),
  27044. default: true
  27045. },
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27050. {
  27051. front: {
  27052. height: math.unit(1.6, "m"),
  27053. weight: math.unit(50, "kg"),
  27054. name: "Front",
  27055. image: {
  27056. source: "./media/characters/kiki/front.svg",
  27057. extra: 4682 / 3610,
  27058. bottom: 115 / 4777
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Normal",
  27065. height: math.unit(1.6, "meters"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27072. {
  27073. front: {
  27074. height: math.unit(50, "m"),
  27075. weight: math.unit(500, "tonnes"),
  27076. name: "Front",
  27077. image: {
  27078. source: "./media/characters/ryoko/front.svg",
  27079. extra: 4632 / 3926,
  27080. bottom: 193 / 4823
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(50, "meters"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(30, "m"),
  27097. weight: math.unit(22, "tonnes"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/elio/front.svg",
  27101. extra: 4582 / 3720,
  27102. bottom: 236 / 4828
  27103. }
  27104. },
  27105. },
  27106. [
  27107. {
  27108. name: "Normal",
  27109. height: math.unit(30, "meters"),
  27110. default: true
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(6 + 3 / 12, "feet"),
  27119. weight: math.unit(120, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/azura/front.svg",
  27123. extra: 1149 / 1135,
  27124. bottom: 45 / 1194
  27125. }
  27126. },
  27127. frontClothed: {
  27128. height: math.unit(6 + 3 / 12, "feet"),
  27129. weight: math.unit(120, "lb"),
  27130. name: "Front (Clothed)",
  27131. image: {
  27132. source: "./media/characters/azura/front-clothed.svg",
  27133. extra: 1149 / 1135,
  27134. bottom: 45 / 1194
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(6 + 3 / 12, "feet"),
  27142. default: true
  27143. },
  27144. {
  27145. name: "Macro",
  27146. height: math.unit(20 + 6 / 12, "feet")
  27147. },
  27148. {
  27149. name: "Megamacro",
  27150. height: math.unit(12, "miles")
  27151. },
  27152. {
  27153. name: "Gigamacro",
  27154. height: math.unit(10000, "miles")
  27155. },
  27156. {
  27157. name: "Teramacro",
  27158. height: math.unit(900000, "miles")
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(12, "feet"),
  27167. weight: math.unit(1, "ton"),
  27168. capacity: math.unit(660000, "gallons"),
  27169. name: "Front",
  27170. image: {
  27171. source: "./media/characters/zeus/front.svg",
  27172. extra: 5005 / 4717,
  27173. bottom: 363 / 5388
  27174. }
  27175. },
  27176. },
  27177. [
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(12, "feet")
  27181. },
  27182. {
  27183. name: "Preferred Size",
  27184. height: math.unit(0.5, "miles"),
  27185. default: true
  27186. },
  27187. {
  27188. name: "Giga Horse",
  27189. height: math.unit(300, "miles")
  27190. },
  27191. {
  27192. name: "Riding Planets",
  27193. height: math.unit(30, "megameters")
  27194. },
  27195. {
  27196. name: "Cosmic Giant",
  27197. height: math.unit(3, "zettameters")
  27198. },
  27199. {
  27200. name: "Breeding God",
  27201. height: math.unit(9.92e22, "yottameters")
  27202. },
  27203. ]
  27204. ))
  27205. characterMakers.push(() => makeCharacter(
  27206. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27207. {
  27208. side: {
  27209. height: math.unit(9, "feet"),
  27210. weight: math.unit(1500, "kg"),
  27211. name: "Side",
  27212. image: {
  27213. source: "./media/characters/fang/side.svg",
  27214. extra: 924 / 866,
  27215. bottom: 47.5 / 972.3
  27216. }
  27217. },
  27218. },
  27219. [
  27220. {
  27221. name: "Normal",
  27222. height: math.unit(9, "feet"),
  27223. default: true
  27224. },
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(75 + 6 / 12, "feet")
  27228. },
  27229. {
  27230. name: "Teramacro",
  27231. height: math.unit(50000, "miles")
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(10, "feet"),
  27240. weight: math.unit(2, "tons"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/rekhit/front.svg",
  27244. extra: 2796 / 2590,
  27245. bottom: 225 / 3022
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(10, "feet"),
  27253. default: true
  27254. },
  27255. {
  27256. name: "Macro",
  27257. height: math.unit(500, "feet")
  27258. },
  27259. ]
  27260. ))
  27261. characterMakers.push(() => makeCharacter(
  27262. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27263. {
  27264. front: {
  27265. height: math.unit(7 + 6.451 / 12, "feet"),
  27266. weight: math.unit(310, "lb"),
  27267. name: "Front",
  27268. image: {
  27269. source: "./media/characters/dahlia-verrick/front.svg",
  27270. extra: 1488 / 1365,
  27271. bottom: 6.2 / 1495
  27272. }
  27273. },
  27274. back: {
  27275. height: math.unit(7 + 6.451 / 12, "feet"),
  27276. weight: math.unit(310, "lb"),
  27277. name: "Back",
  27278. image: {
  27279. source: "./media/characters/dahlia-verrick/back.svg",
  27280. extra: 1472 / 1351,
  27281. bottom: 5.28 / 1477
  27282. }
  27283. },
  27284. frontBusiness: {
  27285. height: math.unit(7 + 6.451 / 12, "feet"),
  27286. weight: math.unit(200, "lb"),
  27287. name: "Front (Business)",
  27288. image: {
  27289. source: "./media/characters/dahlia-verrick/front-business.svg",
  27290. extra: 1478 / 1381,
  27291. bottom: 5.5 / 1484
  27292. }
  27293. },
  27294. frontCasual: {
  27295. height: math.unit(7 + 6.451 / 12, "feet"),
  27296. weight: math.unit(200, "lb"),
  27297. name: "Front (Casual)",
  27298. image: {
  27299. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27300. extra: 1478 / 1381,
  27301. bottom: 5.5 / 1484
  27302. }
  27303. },
  27304. },
  27305. [
  27306. {
  27307. name: "Travel-Sized",
  27308. height: math.unit(7.45, "inches")
  27309. },
  27310. {
  27311. name: "Normal",
  27312. height: math.unit(7 + 6.451 / 12, "feet"),
  27313. default: true
  27314. },
  27315. {
  27316. name: "Hitting the Town",
  27317. height: math.unit(37 + 8 / 12, "feet")
  27318. },
  27319. {
  27320. name: "Stomp in the Suburbs",
  27321. height: math.unit(964 + 9.728 / 12, "feet")
  27322. },
  27323. {
  27324. name: "Sit on the City",
  27325. height: math.unit(61747 + 10.592 / 12, "feet")
  27326. },
  27327. {
  27328. name: "Glomp the Globe",
  27329. height: math.unit(252919327 + 4.832 / 12, "feet")
  27330. },
  27331. ]
  27332. ))
  27333. characterMakers.push(() => makeCharacter(
  27334. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27335. {
  27336. front: {
  27337. height: math.unit(6 + 4 / 12, "feet"),
  27338. weight: math.unit(320, "lb"),
  27339. name: "Front",
  27340. image: {
  27341. source: "./media/characters/balina-mahigan/front.svg",
  27342. extra: 447 / 428,
  27343. bottom: 18 / 466
  27344. }
  27345. },
  27346. back: {
  27347. height: math.unit(6 + 4 / 12, "feet"),
  27348. weight: math.unit(320, "lb"),
  27349. name: "Back",
  27350. image: {
  27351. source: "./media/characters/balina-mahigan/back.svg",
  27352. extra: 445 / 428,
  27353. bottom: 4.07 / 448
  27354. }
  27355. },
  27356. arm: {
  27357. height: math.unit(1.88, "feet"),
  27358. name: "Arm",
  27359. image: {
  27360. source: "./media/characters/balina-mahigan/arm.svg"
  27361. }
  27362. },
  27363. backPort: {
  27364. height: math.unit(0.685, "feet"),
  27365. name: "Back Port",
  27366. image: {
  27367. source: "./media/characters/balina-mahigan/back-port.svg"
  27368. }
  27369. },
  27370. hoofpaw: {
  27371. height: math.unit(1.41, "feet"),
  27372. name: "Hoofpaw",
  27373. image: {
  27374. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27375. }
  27376. },
  27377. leftHandBack: {
  27378. height: math.unit(0.938, "feet"),
  27379. name: "Left Hand (Back)",
  27380. image: {
  27381. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27382. }
  27383. },
  27384. leftHandFront: {
  27385. height: math.unit(0.938, "feet"),
  27386. name: "Left Hand (Front)",
  27387. image: {
  27388. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27389. }
  27390. },
  27391. rightHandBack: {
  27392. height: math.unit(0.95, "feet"),
  27393. name: "Right Hand (Back)",
  27394. image: {
  27395. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27396. }
  27397. },
  27398. rightHandFront: {
  27399. height: math.unit(0.95, "feet"),
  27400. name: "Right Hand (Front)",
  27401. image: {
  27402. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Normal",
  27409. height: math.unit(6 + 4 / 12, "feet"),
  27410. default: true
  27411. },
  27412. ]
  27413. ))
  27414. characterMakers.push(() => makeCharacter(
  27415. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27416. {
  27417. front: {
  27418. height: math.unit(6, "feet"),
  27419. weight: math.unit(320, "lb"),
  27420. name: "Front",
  27421. image: {
  27422. source: "./media/characters/balina-mejeri/front.svg",
  27423. extra: 517 / 488,
  27424. bottom: 44.2 / 561
  27425. }
  27426. },
  27427. },
  27428. [
  27429. {
  27430. name: "Normal",
  27431. height: math.unit(6 + 4 / 12, "feet")
  27432. },
  27433. {
  27434. name: "Business",
  27435. height: math.unit(155, "feet"),
  27436. default: true
  27437. },
  27438. ]
  27439. ))
  27440. characterMakers.push(() => makeCharacter(
  27441. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27442. {
  27443. kneeling: {
  27444. height: math.unit(6 + 4 / 12, "feet"),
  27445. weight: math.unit(300 * 20, "lb"),
  27446. name: "Kneeling",
  27447. image: {
  27448. source: "./media/characters/balbarian/kneeling.svg",
  27449. extra: 922 / 862,
  27450. bottom: 42.4 / 965
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(6 + 4 / 12, "feet")
  27458. },
  27459. {
  27460. name: "Treasured",
  27461. height: math.unit(18 + 9 / 12, "feet"),
  27462. default: true
  27463. },
  27464. {
  27465. name: "Macro",
  27466. height: math.unit(900, "feet")
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27472. {
  27473. front: {
  27474. height: math.unit(6 + 4 / 12, "feet"),
  27475. weight: math.unit(325, "lb"),
  27476. name: "Front",
  27477. image: {
  27478. source: "./media/characters/balina-amarini/front.svg",
  27479. extra: 415 / 403,
  27480. bottom: 19 / 433.4
  27481. }
  27482. },
  27483. back: {
  27484. height: math.unit(6 + 4 / 12, "feet"),
  27485. weight: math.unit(325, "lb"),
  27486. name: "Back",
  27487. image: {
  27488. source: "./media/characters/balina-amarini/back.svg",
  27489. extra: 415 / 403,
  27490. bottom: 13.5 / 432
  27491. }
  27492. },
  27493. overdrive: {
  27494. height: math.unit(6 + 4 / 12, "feet"),
  27495. weight: math.unit(400, "lb"),
  27496. name: "Overdrive",
  27497. image: {
  27498. source: "./media/characters/balina-amarini/overdrive.svg",
  27499. extra: 269 / 259,
  27500. bottom: 12 / 282
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Boom",
  27507. height: math.unit(9 + 10 / 12, "feet"),
  27508. default: true
  27509. },
  27510. {
  27511. name: "Macro",
  27512. height: math.unit(280, "feet")
  27513. },
  27514. ]
  27515. ))
  27516. characterMakers.push(() => makeCharacter(
  27517. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27518. {
  27519. goddess: {
  27520. height: math.unit(600, "feet"),
  27521. weight: math.unit(2000000, "tons"),
  27522. name: "Goddess",
  27523. image: {
  27524. source: "./media/characters/lady-kubwa/goddess.svg",
  27525. extra: 1240.5 / 1223,
  27526. bottom: 22 / 1263
  27527. }
  27528. },
  27529. goddesser: {
  27530. height: math.unit(900, "feet"),
  27531. weight: math.unit(20000000, "lb"),
  27532. name: "Goddess-er",
  27533. image: {
  27534. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27535. extra: 899 / 888,
  27536. bottom: 12.6 / 912
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(600, "feet"),
  27544. default: true
  27545. },
  27546. {
  27547. name: "Megamacro",
  27548. height: math.unit(250, "miles")
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(7 + 7 / 12, "feet"),
  27557. weight: math.unit(250, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/tala-grovehorn/front.svg",
  27561. extra: 2636 / 2525,
  27562. bottom: 147 / 2781
  27563. }
  27564. },
  27565. back: {
  27566. height: math.unit(7 + 7 / 12, "feet"),
  27567. weight: math.unit(250, "lb"),
  27568. name: "Back",
  27569. image: {
  27570. source: "./media/characters/tala-grovehorn/back.svg",
  27571. extra: 2635 / 2539,
  27572. bottom: 100 / 2732.8
  27573. }
  27574. },
  27575. mouth: {
  27576. height: math.unit(1.15, "feet"),
  27577. name: "Mouth",
  27578. image: {
  27579. source: "./media/characters/tala-grovehorn/mouth.svg"
  27580. }
  27581. },
  27582. dick: {
  27583. height: math.unit(2.36, "feet"),
  27584. name: "Dick",
  27585. image: {
  27586. source: "./media/characters/tala-grovehorn/dick.svg"
  27587. }
  27588. },
  27589. slit: {
  27590. height: math.unit(0.61, "feet"),
  27591. name: "Slit",
  27592. image: {
  27593. source: "./media/characters/tala-grovehorn/slit.svg"
  27594. }
  27595. },
  27596. },
  27597. [
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(7 + 7 / 12, "feet"),
  27605. weight: math.unit(225, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/epona/front.svg",
  27609. extra: 2445 / 2290,
  27610. bottom: 251 / 2696
  27611. }
  27612. },
  27613. back: {
  27614. height: math.unit(7 + 7 / 12, "feet"),
  27615. weight: math.unit(225, "lb"),
  27616. name: "Back",
  27617. image: {
  27618. source: "./media/characters/epona/back.svg",
  27619. extra: 2546 / 2408,
  27620. bottom: 44 / 2589
  27621. }
  27622. },
  27623. genitals: {
  27624. height: math.unit(1.5, "feet"),
  27625. name: "Genitals",
  27626. image: {
  27627. source: "./media/characters/epona/genitals.svg"
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(7 + 7 / 12, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(7, "feet"),
  27644. weight: math.unit(518, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/avia-bloodbourn/front.svg",
  27648. extra: 1466 / 1350,
  27649. bottom: 65 / 1527
  27650. }
  27651. },
  27652. },
  27653. [
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(9.35, "feet"),
  27661. weight: math.unit(600, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/amera/front.svg",
  27665. extra: 891 / 818,
  27666. bottom: 30 / 922.7
  27667. }
  27668. },
  27669. back: {
  27670. height: math.unit(9.35, "feet"),
  27671. weight: math.unit(600, "lb"),
  27672. name: "Back",
  27673. image: {
  27674. source: "./media/characters/amera/back.svg",
  27675. extra: 876 / 824,
  27676. bottom: 6.8 / 884
  27677. }
  27678. },
  27679. dick: {
  27680. height: math.unit(2.14, "feet"),
  27681. name: "Dick",
  27682. image: {
  27683. source: "./media/characters/amera/dick.svg"
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Normal",
  27690. height: math.unit(9.35, "feet"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27697. {
  27698. kneeling: {
  27699. height: math.unit(3 + 4 / 12, "feet"),
  27700. weight: math.unit(90, "lb"),
  27701. name: "Kneeling",
  27702. image: {
  27703. source: "./media/characters/rosewen/kneeling.svg",
  27704. extra: 1835 / 1571,
  27705. bottom: 27.7 / 1862
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Normal",
  27712. height: math.unit(3 + 4 / 12, "feet"),
  27713. default: true
  27714. },
  27715. ]
  27716. ))
  27717. characterMakers.push(() => makeCharacter(
  27718. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27719. {
  27720. front: {
  27721. height: math.unit(5 + 10 / 12, "feet"),
  27722. weight: math.unit(200, "lb"),
  27723. name: "Front",
  27724. image: {
  27725. source: "./media/characters/sabah/front.svg",
  27726. extra: 849 / 763,
  27727. bottom: 33.9 / 881
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Normal",
  27734. height: math.unit(5 + 10 / 12, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27741. {
  27742. front: {
  27743. height: math.unit(3 + 5 / 12, "feet"),
  27744. weight: math.unit(40, "kg"),
  27745. name: "Front",
  27746. image: {
  27747. source: "./media/characters/purple-flame/front.svg",
  27748. extra: 1577 / 1412,
  27749. bottom: 97 / 1694
  27750. }
  27751. },
  27752. frontDressed: {
  27753. height: math.unit(3 + 5 / 12, "feet"),
  27754. weight: math.unit(40, "kg"),
  27755. name: "Front (Dressed)",
  27756. image: {
  27757. source: "./media/characters/purple-flame/front-dressed.svg",
  27758. extra: 1577 / 1412,
  27759. bottom: 97 / 1694
  27760. }
  27761. },
  27762. headphones: {
  27763. height: math.unit(0.85, "feet"),
  27764. name: "Headphones",
  27765. image: {
  27766. source: "./media/characters/purple-flame/headphones.svg"
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Really Small",
  27773. height: math.unit(5, "cm")
  27774. },
  27775. {
  27776. name: "Micro",
  27777. height: math.unit(1 + 5 / 12, "feet")
  27778. },
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(3 + 5 / 12, "feet"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Minimacro",
  27786. height: math.unit(125, "feet")
  27787. },
  27788. {
  27789. name: "Macro",
  27790. height: math.unit(0.5, "miles")
  27791. },
  27792. {
  27793. name: "Megamacro",
  27794. height: math.unit(50, "miles")
  27795. },
  27796. {
  27797. name: "Gigantic",
  27798. height: math.unit(750, "miles")
  27799. },
  27800. {
  27801. name: "Planetary",
  27802. height: math.unit(15000, "miles")
  27803. },
  27804. ]
  27805. ))
  27806. characterMakers.push(() => makeCharacter(
  27807. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27808. {
  27809. front: {
  27810. height: math.unit(14, "feet"),
  27811. weight: math.unit(959, "lb"),
  27812. name: "Front",
  27813. image: {
  27814. source: "./media/characters/arsenal/front.svg",
  27815. extra: 2357 / 2157,
  27816. bottom: 93 / 2458
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(14, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(6, "feet"),
  27833. weight: math.unit(150, "lb"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/adira/front.svg",
  27837. extra: 1078 / 1029,
  27838. bottom: 87 / 1166
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Micro",
  27845. height: math.unit(4, "inches"),
  27846. default: true
  27847. },
  27848. {
  27849. name: "Macro",
  27850. height: math.unit(50, "feet")
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(16, "feet"),
  27859. weight: math.unit(1000, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/grim/front.svg",
  27863. extra: 622 / 614,
  27864. bottom: 18.1 / 642
  27865. }
  27866. },
  27867. back: {
  27868. height: math.unit(16, "feet"),
  27869. weight: math.unit(1000, "lb"),
  27870. name: "Back",
  27871. image: {
  27872. source: "./media/characters/grim/back.svg",
  27873. extra: 610.6 / 602,
  27874. bottom: 40.8 / 652
  27875. }
  27876. },
  27877. hunched: {
  27878. height: math.unit(9.75, "feet"),
  27879. weight: math.unit(1000, "lb"),
  27880. name: "Hunched",
  27881. image: {
  27882. source: "./media/characters/grim/hunched.svg",
  27883. extra: 304 / 297,
  27884. bottom: 35.4 / 394
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(16, "feet"),
  27892. default: true
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(2.3, "meters"),
  27901. weight: math.unit(300, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/sinja/front-sfw.svg",
  27905. extra: 1393 / 1294,
  27906. bottom: 70 / 1463
  27907. }
  27908. },
  27909. frontNsfw: {
  27910. height: math.unit(2.3, "meters"),
  27911. weight: math.unit(300, "lb"),
  27912. name: "Front (NSFW)",
  27913. image: {
  27914. source: "./media/characters/sinja/front-nsfw.svg",
  27915. extra: 1393 / 1294,
  27916. bottom: 70 / 1463
  27917. }
  27918. },
  27919. back: {
  27920. height: math.unit(2.3, "meters"),
  27921. weight: math.unit(300, "lb"),
  27922. name: "Back",
  27923. image: {
  27924. source: "./media/characters/sinja/back.svg",
  27925. extra: 1393 / 1294,
  27926. bottom: 70 / 1463
  27927. }
  27928. },
  27929. head: {
  27930. height: math.unit(1.771, "feet"),
  27931. name: "Head",
  27932. image: {
  27933. source: "./media/characters/sinja/head.svg"
  27934. }
  27935. },
  27936. slit: {
  27937. height: math.unit(0.8, "feet"),
  27938. name: "Slit",
  27939. image: {
  27940. source: "./media/characters/sinja/slit.svg"
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(2.3, "meters")
  27948. },
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(91, "meters"),
  27952. default: true
  27953. },
  27954. {
  27955. name: "Megamacro",
  27956. height: math.unit(91440, "meters")
  27957. },
  27958. {
  27959. name: "Gigamacro",
  27960. height: math.unit(60960000, "meters")
  27961. },
  27962. {
  27963. name: "Teramacro",
  27964. height: math.unit(9144000000, "meters")
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(1.7, "meters"),
  27973. weight: math.unit(130, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/kyu/front.svg",
  27977. extra: 415 / 395,
  27978. bottom: 5 / 420
  27979. }
  27980. },
  27981. head: {
  27982. height: math.unit(1.75, "feet"),
  27983. name: "Head",
  27984. image: {
  27985. source: "./media/characters/kyu/head.svg"
  27986. }
  27987. },
  27988. foot: {
  27989. height: math.unit(0.81, "feet"),
  27990. name: "Foot",
  27991. image: {
  27992. source: "./media/characters/kyu/foot.svg"
  27993. }
  27994. },
  27995. },
  27996. [
  27997. {
  27998. name: "Normal",
  27999. height: math.unit(1.7, "meters")
  28000. },
  28001. {
  28002. name: "Macro",
  28003. height: math.unit(131, "feet"),
  28004. default: true
  28005. },
  28006. {
  28007. name: "Megamacro",
  28008. height: math.unit(91440, "meters")
  28009. },
  28010. {
  28011. name: "Gigamacro",
  28012. height: math.unit(60960000, "meters")
  28013. },
  28014. {
  28015. name: "Teramacro",
  28016. height: math.unit(9144000000, "meters")
  28017. },
  28018. ]
  28019. ))
  28020. characterMakers.push(() => makeCharacter(
  28021. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28022. {
  28023. front: {
  28024. height: math.unit(7 + 1 / 12, "feet"),
  28025. weight: math.unit(250, "lb"),
  28026. name: "Front",
  28027. image: {
  28028. source: "./media/characters/joey/front.svg",
  28029. extra: 1791 / 1537,
  28030. bottom: 28 / 1816
  28031. }
  28032. },
  28033. },
  28034. [
  28035. {
  28036. name: "Micro",
  28037. height: math.unit(3, "inches")
  28038. },
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(7 + 1 / 12, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(165, "cm"),
  28051. weight: math.unit(140, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/sam-evans/front.svg",
  28055. extra: 3417 / 3230,
  28056. bottom: 41.3 / 3417
  28057. }
  28058. },
  28059. frontSixTails: {
  28060. height: math.unit(165, "cm"),
  28061. weight: math.unit(140, "lb"),
  28062. name: "Front-six-tails",
  28063. image: {
  28064. source: "./media/characters/sam-evans/front-six-tails.svg",
  28065. extra: 3417 / 3230,
  28066. bottom: 41.3 / 3417
  28067. }
  28068. },
  28069. back: {
  28070. height: math.unit(165, "cm"),
  28071. weight: math.unit(140, "lb"),
  28072. name: "Back",
  28073. image: {
  28074. source: "./media/characters/sam-evans/back.svg",
  28075. extra: 3227 / 3032,
  28076. bottom: 6.8 / 3234
  28077. }
  28078. },
  28079. face: {
  28080. height: math.unit(0.68, "feet"),
  28081. name: "Face",
  28082. image: {
  28083. source: "./media/characters/sam-evans/face.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(165, "cm"),
  28091. default: true
  28092. },
  28093. {
  28094. name: "Macro",
  28095. height: math.unit(100, "meters")
  28096. },
  28097. {
  28098. name: "Macro+",
  28099. height: math.unit(800, "meters")
  28100. },
  28101. {
  28102. name: "Macro++",
  28103. height: math.unit(3, "km")
  28104. },
  28105. {
  28106. name: "Macro+++",
  28107. height: math.unit(30, "km")
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28113. {
  28114. front: {
  28115. height: math.unit(10, "feet"),
  28116. weight: math.unit(750, "lb"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/juliet-a/front.svg",
  28120. extra: 1766 / 1720,
  28121. bottom: 43 / 1809
  28122. }
  28123. },
  28124. back: {
  28125. height: math.unit(10, "feet"),
  28126. weight: math.unit(750, "lb"),
  28127. name: "Back",
  28128. image: {
  28129. source: "./media/characters/juliet-a/back.svg",
  28130. extra: 1781 / 1734,
  28131. bottom: 35 / 1810,
  28132. }
  28133. },
  28134. },
  28135. [
  28136. {
  28137. name: "Normal",
  28138. height: math.unit(10, "feet"),
  28139. default: true
  28140. },
  28141. {
  28142. name: "Dragon Form",
  28143. height: math.unit(250, "feet")
  28144. },
  28145. {
  28146. name: "Macro",
  28147. height: math.unit(1000, "feet")
  28148. },
  28149. {
  28150. name: "Megamacro",
  28151. height: math.unit(10000, "feet")
  28152. }
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28157. {
  28158. regular: {
  28159. height: math.unit(7 + 3 / 12, "feet"),
  28160. weight: math.unit(260, "lb"),
  28161. name: "Regular",
  28162. image: {
  28163. source: "./media/characters/wild/regular.svg",
  28164. extra: 97.45 / 92,
  28165. bottom: 6.8 / 104.3
  28166. }
  28167. },
  28168. biggums: {
  28169. height: math.unit(8 + 6 / 12, "feet"),
  28170. weight: math.unit(425, "lb"),
  28171. name: "Biggums",
  28172. image: {
  28173. source: "./media/characters/wild/biggums.svg",
  28174. extra: 97.45 / 92,
  28175. bottom: 7.5 / 132.34
  28176. }
  28177. },
  28178. mawRegular: {
  28179. height: math.unit(1.24, "feet"),
  28180. name: "Maw (Regular)",
  28181. image: {
  28182. source: "./media/characters/wild/maw.svg"
  28183. }
  28184. },
  28185. mawBiggums: {
  28186. height: math.unit(1.47, "feet"),
  28187. name: "Maw (Biggums)",
  28188. image: {
  28189. source: "./media/characters/wild/maw.svg"
  28190. }
  28191. },
  28192. },
  28193. [
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(7 + 3 / 12, "feet"),
  28197. default: true
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28203. {
  28204. front: {
  28205. height: math.unit(2.5, "meters"),
  28206. weight: math.unit(200, "kg"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/vidar/front.svg",
  28210. extra: 2994 / 2795,
  28211. bottom: 56 / 3061
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(2.5, "meters"),
  28216. weight: math.unit(200, "kg"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/vidar/back.svg",
  28220. extra: 3131 / 2928,
  28221. bottom: 13.5 / 3141.5
  28222. }
  28223. },
  28224. feral: {
  28225. height: math.unit(2.5, "meters"),
  28226. weight: math.unit(2000, "kg"),
  28227. name: "Feral",
  28228. image: {
  28229. source: "./media/characters/vidar/feral.svg",
  28230. extra: 2790 / 1765,
  28231. bottom: 6 / 2796
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(2.5, "meters"),
  28239. default: true
  28240. },
  28241. {
  28242. name: "Macro",
  28243. height: math.unit(100, "meters")
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(5 + 9 / 12, "feet"),
  28252. weight: math.unit(120, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/ash/front.svg",
  28256. extra: 2189 / 1961,
  28257. bottom: 5.2 / 2194
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(5 + 9 / 12, "feet"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(9, "feet"),
  28274. weight: math.unit(10000, "lb"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/gygabite/front.svg",
  28278. bottom: 31.7 / 537.8,
  28279. extra: 505 / 370
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(9, "feet"),
  28287. default: true
  28288. },
  28289. ]
  28290. ))
  28291. characterMakers.push(() => makeCharacter(
  28292. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28293. {
  28294. front: {
  28295. height: math.unit(12, "feet"),
  28296. weight: math.unit(35000, "lb"),
  28297. name: "Front",
  28298. image: {
  28299. source: "./media/characters/p0tat0/front.svg",
  28300. extra: 1065 / 921,
  28301. bottom: 55.7 / 1121.25
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(12, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28315. {
  28316. side: {
  28317. height: math.unit(6.5, "feet"),
  28318. weight: math.unit(800, "lb"),
  28319. name: "Side",
  28320. image: {
  28321. source: "./media/characters/dusk/side.svg",
  28322. extra: 615 / 373,
  28323. bottom: 53 / 664
  28324. }
  28325. },
  28326. sitting: {
  28327. height: math.unit(7, "feet"),
  28328. weight: math.unit(800, "lb"),
  28329. name: "Sitting",
  28330. image: {
  28331. source: "./media/characters/dusk/sitting.svg",
  28332. extra: 753 / 425,
  28333. bottom: 33 / 774
  28334. }
  28335. },
  28336. head: {
  28337. height: math.unit(6.1, "feet"),
  28338. name: "Head",
  28339. image: {
  28340. source: "./media/characters/dusk/head.svg"
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(7, "feet"),
  28348. default: true
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(15, "feet"),
  28357. weight: math.unit(7000, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/jay-direwolf/front.svg",
  28361. extra: 1810 / 1732,
  28362. bottom: 66 / 1892
  28363. }
  28364. },
  28365. },
  28366. [
  28367. {
  28368. name: "Normal",
  28369. height: math.unit(15, "feet"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(4 + 9 / 12, "feet"),
  28379. weight: math.unit(130, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/anchovie/front.svg",
  28383. extra: 382 / 350,
  28384. bottom: 25 / 409
  28385. }
  28386. },
  28387. back: {
  28388. height: math.unit(4 + 9 / 12, "feet"),
  28389. weight: math.unit(130, "lb"),
  28390. name: "Back",
  28391. image: {
  28392. source: "./media/characters/anchovie/back.svg",
  28393. extra: 385 / 352,
  28394. bottom: 16.6 / 402
  28395. }
  28396. },
  28397. frontDressed: {
  28398. height: math.unit(4 + 9 / 12, "feet"),
  28399. weight: math.unit(130, "lb"),
  28400. name: "Front (Dressed)",
  28401. image: {
  28402. source: "./media/characters/anchovie/front-dressed.svg",
  28403. extra: 382 / 350,
  28404. bottom: 25 / 409
  28405. }
  28406. },
  28407. backDressed: {
  28408. height: math.unit(4 + 9 / 12, "feet"),
  28409. weight: math.unit(130, "lb"),
  28410. name: "Back (Dressed)",
  28411. image: {
  28412. source: "./media/characters/anchovie/back-dressed.svg",
  28413. extra: 385 / 352,
  28414. bottom: 16.6 / 402
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Micro",
  28421. height: math.unit(6.4, "inches")
  28422. },
  28423. {
  28424. name: "Normal",
  28425. height: math.unit(4 + 9 / 12, "feet"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(2, "meters"),
  28435. weight: math.unit(180, "lb"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/acidrenamon/front.svg",
  28439. extra: 987 / 890,
  28440. bottom: 22.8 / 1009
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(2, "meters"),
  28445. weight: math.unit(180, "lb"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/acidrenamon/back.svg",
  28449. extra: 983 / 891,
  28450. bottom: 8.4 / 992
  28451. }
  28452. },
  28453. head: {
  28454. height: math.unit(1.92, "feet"),
  28455. name: "Head",
  28456. image: {
  28457. source: "./media/characters/acidrenamon/head.svg"
  28458. }
  28459. },
  28460. rump: {
  28461. height: math.unit(1.72, "feet"),
  28462. name: "Rump",
  28463. image: {
  28464. source: "./media/characters/acidrenamon/rump.svg"
  28465. }
  28466. },
  28467. tail: {
  28468. height: math.unit(4.2, "feet"),
  28469. name: "Tail",
  28470. image: {
  28471. source: "./media/characters/acidrenamon/tail.svg"
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(2, "meters"),
  28479. default: true
  28480. },
  28481. {
  28482. name: "Minimacro",
  28483. height: math.unit(7, "meters")
  28484. },
  28485. {
  28486. name: "Macro",
  28487. height: math.unit(200, "meters")
  28488. },
  28489. {
  28490. name: "Gigamacro",
  28491. height: math.unit(0.2, "earths")
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(152, "feet"),
  28500. name: "Front",
  28501. image: {
  28502. source: "./media/characters/kenzie-lee/front.svg",
  28503. extra: 1869/1774,
  28504. bottom: 128/1997
  28505. }
  28506. },
  28507. side: {
  28508. height: math.unit(86, "feet"),
  28509. name: "Side",
  28510. image: {
  28511. source: "./media/characters/kenzie-lee/side.svg",
  28512. extra: 930/815,
  28513. bottom: 177/1107
  28514. }
  28515. },
  28516. paw: {
  28517. height: math.unit(15, "feet"),
  28518. name: "Paw",
  28519. image: {
  28520. source: "./media/characters/kenzie-lee/paw.svg"
  28521. }
  28522. },
  28523. },
  28524. [
  28525. {
  28526. name: "Kenzie Flea",
  28527. height: math.unit(2, "mm"),
  28528. default: true
  28529. },
  28530. {
  28531. name: "Micro",
  28532. height: math.unit(2, "inches")
  28533. },
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(152, "feet")
  28537. },
  28538. {
  28539. name: "Megamacro",
  28540. height: math.unit(7, "miles")
  28541. },
  28542. {
  28543. name: "Gigamacro",
  28544. height: math.unit(8000, "miles")
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(6, "feet"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/withers/front.svg",
  28556. extra: 1935/1760,
  28557. bottom: 72/2007
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(6, "feet"),
  28562. name: "Back",
  28563. image: {
  28564. source: "./media/characters/withers/back.svg",
  28565. extra: 1944/1792,
  28566. bottom: 12/1956
  28567. }
  28568. },
  28569. dressed: {
  28570. height: math.unit(6, "feet"),
  28571. name: "Dressed",
  28572. image: {
  28573. source: "./media/characters/withers/dressed.svg",
  28574. extra: 1937/1765,
  28575. bottom: 73/2010
  28576. }
  28577. },
  28578. phase1: {
  28579. height: math.unit(1.1, "feet"),
  28580. name: "Phase 1",
  28581. image: {
  28582. source: "./media/characters/withers/phase-1.svg",
  28583. extra: 1885/1232,
  28584. bottom: 0/1885
  28585. }
  28586. },
  28587. phase2: {
  28588. height: math.unit(1.05, "feet"),
  28589. name: "Phase 2",
  28590. image: {
  28591. source: "./media/characters/withers/phase-2.svg",
  28592. extra: 1792/1090,
  28593. bottom: 0/1792
  28594. }
  28595. },
  28596. partyWipe: {
  28597. height: math.unit(1.1, "feet"),
  28598. name: "Party Wipe",
  28599. image: {
  28600. source: "./media/characters/withers/party-wipe.svg",
  28601. extra: 1864/1207,
  28602. bottom: 0/1864
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Macro",
  28609. height: math.unit(167, "feet"),
  28610. default: true
  28611. },
  28612. {
  28613. name: "Megamacro",
  28614. height: math.unit(15, "miles")
  28615. }
  28616. ]
  28617. ))
  28618. characterMakers.push(() => makeCharacter(
  28619. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28620. {
  28621. front: {
  28622. height: math.unit(6 + 7 / 12, "feet"),
  28623. weight: math.unit(250, "lb"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/nemoskii/front.svg",
  28627. extra: 2270 / 1734,
  28628. bottom: 86 / 2354
  28629. }
  28630. },
  28631. back: {
  28632. height: math.unit(6 + 7 / 12, "feet"),
  28633. weight: math.unit(250, "lb"),
  28634. name: "Back",
  28635. image: {
  28636. source: "./media/characters/nemoskii/back.svg",
  28637. extra: 1845 / 1788,
  28638. bottom: 10.5 / 1852
  28639. }
  28640. },
  28641. head: {
  28642. height: math.unit(1.31, "feet"),
  28643. name: "Head",
  28644. image: {
  28645. source: "./media/characters/nemoskii/head.svg"
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Micro",
  28652. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28653. },
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(6 + 7 / 12, "feet"),
  28657. default: true
  28658. },
  28659. {
  28660. name: "Macro",
  28661. height: math.unit((6 + 7 / 12) * 150, "feet")
  28662. },
  28663. {
  28664. name: "Macro+",
  28665. height: math.unit((6 + 7 / 12) * 500, "feet")
  28666. },
  28667. {
  28668. name: "Megamacro",
  28669. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28670. },
  28671. ]
  28672. ))
  28673. characterMakers.push(() => makeCharacter(
  28674. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28675. {
  28676. front: {
  28677. height: math.unit(1, "mile"),
  28678. weight: math.unit(265261.9, "lb"),
  28679. name: "Front",
  28680. image: {
  28681. source: "./media/characters/shui/front.svg",
  28682. extra: 1633 / 1564,
  28683. bottom: 91.5 / 1726
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Macro",
  28690. height: math.unit(1, "mile"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(12 + 6 / 12, "feet"),
  28700. weight: math.unit(1342, "lb"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/arokh-takakura/front.svg",
  28704. extra: 1089 / 1043,
  28705. bottom: 77.4 / 1176.7
  28706. }
  28707. },
  28708. back: {
  28709. height: math.unit(12 + 6 / 12, "feet"),
  28710. weight: math.unit(1342, "lb"),
  28711. name: "Back",
  28712. image: {
  28713. source: "./media/characters/arokh-takakura/back.svg",
  28714. extra: 1046 / 1019,
  28715. bottom: 102 / 1150
  28716. }
  28717. },
  28718. },
  28719. [
  28720. {
  28721. name: "Big",
  28722. height: math.unit(12 + 6 / 12, "feet"),
  28723. default: true
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(5 + 6 / 12, "feet"),
  28732. weight: math.unit(150, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/theo/front.svg",
  28736. extra: 1184 / 1131,
  28737. bottom: 7.4 / 1191
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Micro",
  28744. height: math.unit(5, "inches")
  28745. },
  28746. {
  28747. name: "Normal",
  28748. height: math.unit(5 + 6 / 12, "feet"),
  28749. default: true
  28750. },
  28751. ]
  28752. ))
  28753. characterMakers.push(() => makeCharacter(
  28754. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28755. {
  28756. front: {
  28757. height: math.unit(5 + 9 / 12, "feet"),
  28758. weight: math.unit(130, "lb"),
  28759. name: "Front",
  28760. image: {
  28761. source: "./media/characters/cecelia-swift/front.svg",
  28762. extra: 502 / 484,
  28763. bottom: 23 / 523
  28764. }
  28765. },
  28766. back: {
  28767. height: math.unit(5 + 9 / 12, "feet"),
  28768. weight: math.unit(130, "lb"),
  28769. name: "Back",
  28770. image: {
  28771. source: "./media/characters/cecelia-swift/back.svg",
  28772. extra: 499 / 485,
  28773. bottom: 12 / 511
  28774. }
  28775. },
  28776. head: {
  28777. height: math.unit(0.90, "feet"),
  28778. name: "Head",
  28779. image: {
  28780. source: "./media/characters/cecelia-swift/head.svg"
  28781. }
  28782. },
  28783. rump: {
  28784. height: math.unit(1.75, "feet"),
  28785. name: "Rump",
  28786. image: {
  28787. source: "./media/characters/cecelia-swift/rump.svg"
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Normal",
  28794. height: math.unit(5 + 9 / 12, "feet"),
  28795. default: true
  28796. },
  28797. {
  28798. name: "Big",
  28799. height: math.unit(50, "feet")
  28800. },
  28801. {
  28802. name: "Macro",
  28803. height: math.unit(100, "feet")
  28804. },
  28805. {
  28806. name: "Macro+",
  28807. height: math.unit(500, "feet")
  28808. },
  28809. {
  28810. name: "Macro++",
  28811. height: math.unit(1000, "feet")
  28812. },
  28813. ]
  28814. ))
  28815. characterMakers.push(() => makeCharacter(
  28816. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28817. {
  28818. front: {
  28819. height: math.unit(6, "feet"),
  28820. weight: math.unit(150, "lb"),
  28821. name: "Front",
  28822. image: {
  28823. source: "./media/characters/kaunan/front.svg",
  28824. extra: 2890 / 2523,
  28825. bottom: 49 / 2939
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Macro",
  28832. height: math.unit(150, "feet"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(175, "cm"),
  28842. weight: math.unit(60, "kg"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/fei/front.svg",
  28846. extra: 1873/1723,
  28847. bottom: 53/1926
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Mortal",
  28854. height: math.unit(175, "cm")
  28855. },
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(3500, "m"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "Stroll",
  28863. height: math.unit(17.5, "km")
  28864. },
  28865. {
  28866. name: "Showoff",
  28867. height: math.unit(175, "km")
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(7, "feet"),
  28876. weight: math.unit(1000, "kg"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/edrax/front.svg",
  28880. extra: 2838 / 2550,
  28881. bottom: 130 / 2968
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Small",
  28888. height: math.unit(7, "feet")
  28889. },
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(1500, "meters")
  28893. },
  28894. {
  28895. name: "Mega",
  28896. height: math.unit(12000000, "km"),
  28897. default: true
  28898. },
  28899. {
  28900. name: "Megamacro",
  28901. height: math.unit(10600000, "lightyears")
  28902. },
  28903. {
  28904. name: "Hypermacro",
  28905. height: math.unit(256, "yottameters")
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(10, "feet"),
  28914. weight: math.unit(750, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/clove/front.svg",
  28918. extra: 1918/1751,
  28919. bottom: 52/1970
  28920. }
  28921. },
  28922. back: {
  28923. height: math.unit(10, "feet"),
  28924. weight: math.unit(750, "lb"),
  28925. name: "Back",
  28926. image: {
  28927. source: "./media/characters/clove/back.svg",
  28928. extra: 1912/1747,
  28929. bottom: 50/1962
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(10, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(4, "feet"),
  28946. weight: math.unit(50, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/alex-rabbit/front.svg",
  28950. extra: 507 / 458,
  28951. bottom: 18.5 / 527
  28952. }
  28953. },
  28954. back: {
  28955. height: math.unit(4, "feet"),
  28956. weight: math.unit(50, "lb"),
  28957. name: "Back",
  28958. image: {
  28959. source: "./media/characters/alex-rabbit/back.svg",
  28960. extra: 502 / 460,
  28961. bottom: 18.9 / 521
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(4, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(1 + 3 / 12, "feet"),
  28978. weight: math.unit(80, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/zander-rose/front.svg",
  28982. extra: 916 / 797,
  28983. bottom: 17 / 933
  28984. }
  28985. },
  28986. back: {
  28987. height: math.unit(1 + 3 / 12, "feet"),
  28988. weight: math.unit(80, "lb"),
  28989. name: "Back",
  28990. image: {
  28991. source: "./media/characters/zander-rose/back.svg",
  28992. extra: 903 / 779,
  28993. bottom: 31 / 934
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Normal",
  29000. height: math.unit(1 + 3 / 12, "feet"),
  29001. default: true
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29007. {
  29008. anthro: {
  29009. height: math.unit(6, "feet"),
  29010. weight: math.unit(150, "lb"),
  29011. name: "Anthro",
  29012. image: {
  29013. source: "./media/characters/razz/anthro.svg",
  29014. extra: 1437 / 1343,
  29015. bottom: 48 / 1485
  29016. }
  29017. },
  29018. feral: {
  29019. height: math.unit(6, "feet"),
  29020. weight: math.unit(150, "lb"),
  29021. name: "Feral",
  29022. image: {
  29023. source: "./media/characters/razz/feral.svg",
  29024. extra: 2569 / 1385,
  29025. bottom: 95 / 2664
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(6, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(9 + 4 / 12, "feet"),
  29042. weight: math.unit(500, "lb"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/morrigan/front.svg",
  29046. extra: 2707 / 2579,
  29047. bottom: 156 / 2863
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(9 + 4 / 12, "feet"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(5, "stories"),
  29064. weight: math.unit(4000, "lb"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/jenene/front.svg",
  29068. extra: 1780 / 1710,
  29069. bottom: 57 / 1837
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(5, "stories"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29083. {
  29084. taurSfw: {
  29085. height: math.unit(10, "meters"),
  29086. weight: math.unit(17500, "kg"),
  29087. name: "Taur",
  29088. image: {
  29089. source: "./media/characters/faey/taur-sfw.svg",
  29090. extra: 1200 / 968,
  29091. bottom: 41 / 1241
  29092. }
  29093. },
  29094. chestmaw: {
  29095. height: math.unit(2.01, "meters"),
  29096. name: "Chestmaw",
  29097. image: {
  29098. source: "./media/characters/faey/chestmaw.svg"
  29099. }
  29100. },
  29101. foot: {
  29102. height: math.unit(2.43, "meters"),
  29103. name: "Foot",
  29104. image: {
  29105. source: "./media/characters/faey/foot.svg"
  29106. }
  29107. },
  29108. jaws: {
  29109. height: math.unit(1.66, "meters"),
  29110. name: "Jaws",
  29111. image: {
  29112. source: "./media/characters/faey/jaws.svg"
  29113. }
  29114. },
  29115. tongues: {
  29116. height: math.unit(2.01, "meters"),
  29117. name: "Tongues",
  29118. image: {
  29119. source: "./media/characters/faey/tongues.svg"
  29120. }
  29121. },
  29122. },
  29123. [
  29124. {
  29125. name: "Small",
  29126. height: math.unit(10, "meters"),
  29127. default: true
  29128. },
  29129. {
  29130. name: "Big",
  29131. height: math.unit(500000, "km")
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(7, "feet"),
  29140. weight: math.unit(275, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/roku/front.svg",
  29144. extra: 903 / 878,
  29145. bottom: 37 / 940
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Normal",
  29152. height: math.unit(7, "feet"),
  29153. default: true
  29154. },
  29155. {
  29156. name: "Macro",
  29157. height: math.unit(500, "feet")
  29158. },
  29159. {
  29160. name: "Megamacro",
  29161. height: math.unit(200, "miles")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(6 + 2 / 12, "feet"),
  29170. weight: math.unit(150, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/lira/front.svg",
  29174. extra: 1727 / 1605,
  29175. bottom: 26 / 1753
  29176. }
  29177. },
  29178. back: {
  29179. height: math.unit(6 + 2 / 12, "feet"),
  29180. weight: math.unit(150, "lb"),
  29181. name: "Back",
  29182. image: {
  29183. source: "./media/characters/lira/back.svg",
  29184. extra: 1713/1621,
  29185. bottom: 20/1733
  29186. }
  29187. },
  29188. hand: {
  29189. height: math.unit(0.75, "feet"),
  29190. name: "Hand",
  29191. image: {
  29192. source: "./media/characters/lira/hand.svg"
  29193. }
  29194. },
  29195. maw: {
  29196. height: math.unit(0.65, "feet"),
  29197. name: "Maw",
  29198. image: {
  29199. source: "./media/characters/lira/maw.svg"
  29200. }
  29201. },
  29202. pawDigi: {
  29203. height: math.unit(1.6, "feet"),
  29204. name: "Paw Digi",
  29205. image: {
  29206. source: "./media/characters/lira/paw-digi.svg"
  29207. }
  29208. },
  29209. pawPlanti: {
  29210. height: math.unit(1.4, "feet"),
  29211. name: "Paw Planti",
  29212. image: {
  29213. source: "./media/characters/lira/paw-planti.svg"
  29214. }
  29215. },
  29216. },
  29217. [
  29218. {
  29219. name: "Normal",
  29220. height: math.unit(6 + 2 / 12, "feet"),
  29221. default: true
  29222. },
  29223. {
  29224. name: "Macro",
  29225. height: math.unit(100, "feet")
  29226. },
  29227. {
  29228. name: "Macro²",
  29229. height: math.unit(1600, "feet")
  29230. },
  29231. {
  29232. name: "Planetary",
  29233. height: math.unit(20, "earths")
  29234. },
  29235. ]
  29236. ))
  29237. characterMakers.push(() => makeCharacter(
  29238. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29239. {
  29240. front: {
  29241. height: math.unit(6, "feet"),
  29242. weight: math.unit(150, "lb"),
  29243. name: "Front",
  29244. image: {
  29245. source: "./media/characters/hadjet/front.svg",
  29246. extra: 1480 / 1346,
  29247. bottom: 26 / 1506
  29248. }
  29249. },
  29250. frontNsfw: {
  29251. height: math.unit(6, "feet"),
  29252. weight: math.unit(150, "lb"),
  29253. name: "Front (NSFW)",
  29254. image: {
  29255. source: "./media/characters/hadjet/front-nsfw.svg",
  29256. extra: 1440 / 1358,
  29257. bottom: 52 / 1492
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Macro",
  29264. height: math.unit(10, "stories"),
  29265. default: true
  29266. },
  29267. {
  29268. name: "Megamacro",
  29269. height: math.unit(1.5, "miles")
  29270. },
  29271. {
  29272. name: "Megamacro+",
  29273. height: math.unit(5, "miles")
  29274. },
  29275. ]
  29276. ))
  29277. characterMakers.push(() => makeCharacter(
  29278. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29279. {
  29280. side: {
  29281. height: math.unit(106, "feet"),
  29282. weight: math.unit(500, "tonnes"),
  29283. name: "Side",
  29284. image: {
  29285. source: "./media/characters/kodran/side.svg",
  29286. extra: 553 / 480,
  29287. bottom: 33 / 586
  29288. }
  29289. },
  29290. front: {
  29291. height: math.unit(132, "feet"),
  29292. weight: math.unit(500, "tonnes"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/kodran/front.svg",
  29296. extra: 667 / 643,
  29297. bottom: 42 / 709
  29298. }
  29299. },
  29300. flying: {
  29301. height: math.unit(350, "feet"),
  29302. weight: math.unit(500, "tonnes"),
  29303. name: "Flying",
  29304. image: {
  29305. source: "./media/characters/kodran/flying.svg"
  29306. }
  29307. },
  29308. foot: {
  29309. height: math.unit(33, "feet"),
  29310. name: "Foot",
  29311. image: {
  29312. source: "./media/characters/kodran/foot.svg"
  29313. }
  29314. },
  29315. footFront: {
  29316. height: math.unit(19, "feet"),
  29317. name: "Foot (Front)",
  29318. image: {
  29319. source: "./media/characters/kodran/foot-front.svg",
  29320. extra: 261 / 261,
  29321. bottom: 91 / 352
  29322. }
  29323. },
  29324. headFront: {
  29325. height: math.unit(53, "feet"),
  29326. name: "Head (Front)",
  29327. image: {
  29328. source: "./media/characters/kodran/head-front.svg"
  29329. }
  29330. },
  29331. headSide: {
  29332. height: math.unit(65, "feet"),
  29333. name: "Head (Side)",
  29334. image: {
  29335. source: "./media/characters/kodran/head-side.svg"
  29336. }
  29337. },
  29338. throat: {
  29339. height: math.unit(79, "feet"),
  29340. name: "Throat",
  29341. image: {
  29342. source: "./media/characters/kodran/throat.svg"
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Large",
  29349. height: math.unit(106, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29356. {
  29357. side: {
  29358. height: math.unit(11, "feet"),
  29359. weight: math.unit(150, "lb"),
  29360. name: "Side",
  29361. image: {
  29362. source: "./media/characters/pyxaron/side.svg",
  29363. extra: 305 / 195,
  29364. bottom: 17 / 322
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(11, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29378. {
  29379. front: {
  29380. height: math.unit(6, "feet"),
  29381. weight: math.unit(150, "lb"),
  29382. name: "Front",
  29383. image: {
  29384. source: "./media/characters/meep/front.svg",
  29385. extra: 88 / 80,
  29386. bottom: 6 / 94
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Fun Sized",
  29393. height: math.unit(2, "inches"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Friend Sized",
  29398. height: math.unit(8, "inches")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(15, "feet"),
  29407. weight: math.unit(2500, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/holly-rabbit/front.svg",
  29411. extra: 1433 / 1233,
  29412. bottom: 125 / 1558
  29413. }
  29414. },
  29415. dick: {
  29416. height: math.unit(4.6, "feet"),
  29417. name: "Dick",
  29418. image: {
  29419. source: "./media/characters/holly-rabbit/dick.svg"
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(15, "feet"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Macro",
  29431. height: math.unit(250, "feet")
  29432. },
  29433. {
  29434. name: "Macro+",
  29435. height: math.unit(2500, "feet")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(3.02, "meters"),
  29444. weight: math.unit(500, "kg"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/drena/front.svg",
  29448. extra: 282 / 243,
  29449. bottom: 8 / 290
  29450. }
  29451. },
  29452. side: {
  29453. height: math.unit(3.02, "meters"),
  29454. weight: math.unit(500, "kg"),
  29455. name: "Side",
  29456. image: {
  29457. source: "./media/characters/drena/side.svg",
  29458. extra: 280 / 245,
  29459. bottom: 10 / 290
  29460. }
  29461. },
  29462. back: {
  29463. height: math.unit(3.02, "meters"),
  29464. weight: math.unit(500, "kg"),
  29465. name: "Back",
  29466. image: {
  29467. source: "./media/characters/drena/back.svg",
  29468. extra: 278 / 243,
  29469. bottom: 2 / 280
  29470. }
  29471. },
  29472. foot: {
  29473. height: math.unit(0.75, "meters"),
  29474. name: "Foot",
  29475. image: {
  29476. source: "./media/characters/drena/foot.svg"
  29477. }
  29478. },
  29479. maw: {
  29480. height: math.unit(0.82, "meters"),
  29481. name: "Maw",
  29482. image: {
  29483. source: "./media/characters/drena/maw.svg"
  29484. }
  29485. },
  29486. eating: {
  29487. height: math.unit(0.75, "meters"),
  29488. name: "Eating",
  29489. image: {
  29490. source: "./media/characters/drena/eating.svg"
  29491. }
  29492. },
  29493. rump: {
  29494. height: math.unit(0.93, "meters"),
  29495. name: "Rump",
  29496. image: {
  29497. source: "./media/characters/drena/rump.svg"
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Normal",
  29504. height: math.unit(3.02, "meters"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6 + 4 / 12, "feet"),
  29514. weight: math.unit(250, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/remmyzilla/front.svg",
  29518. extra: 4033 / 3588,
  29519. bottom: 123 / 4156
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(6 + 4 / 12, "feet"),
  29524. weight: math.unit(250, "lb"),
  29525. name: "Back",
  29526. image: {
  29527. source: "./media/characters/remmyzilla/back.svg",
  29528. extra: 2687 / 2555,
  29529. bottom: 48 / 2735
  29530. }
  29531. },
  29532. paw: {
  29533. height: math.unit(1.73, "feet"),
  29534. name: "Paw",
  29535. image: {
  29536. source: "./media/characters/remmyzilla/paw.svg"
  29537. }
  29538. },
  29539. maw: {
  29540. height: math.unit(1.73, "feet"),
  29541. name: "Maw",
  29542. image: {
  29543. source: "./media/characters/remmyzilla/maw.svg"
  29544. }
  29545. },
  29546. },
  29547. [
  29548. {
  29549. name: "Normal",
  29550. height: math.unit(6 + 4 / 12, "feet")
  29551. },
  29552. {
  29553. name: "Minimacro",
  29554. height: math.unit(12 + 8 / 12, "feet")
  29555. },
  29556. {
  29557. name: "Normal",
  29558. height: math.unit(640, "feet"),
  29559. default: true
  29560. },
  29561. {
  29562. name: "Megamacro",
  29563. height: math.unit(6400, "feet")
  29564. },
  29565. {
  29566. name: "Gigamacro",
  29567. height: math.unit(64000, "miles")
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(2.5, "meters"),
  29576. weight: math.unit(300, "lb"),
  29577. name: "Front",
  29578. image: {
  29579. source: "./media/characters/lawrence/front.svg",
  29580. extra: 357 / 335,
  29581. bottom: 30 / 387
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(2.5, "meters"),
  29586. weight: math.unit(300, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/lawrence/back.svg",
  29590. extra: 357 / 338,
  29591. bottom: 16 / 373
  29592. }
  29593. },
  29594. head: {
  29595. height: math.unit(0.9, "meter"),
  29596. name: "Head",
  29597. image: {
  29598. source: "./media/characters/lawrence/head.svg"
  29599. }
  29600. },
  29601. maw: {
  29602. height: math.unit(0.7, "meter"),
  29603. name: "Maw",
  29604. image: {
  29605. source: "./media/characters/lawrence/maw.svg"
  29606. }
  29607. },
  29608. footBottom: {
  29609. height: math.unit(0.5, "meter"),
  29610. name: "Foot (Bottom)",
  29611. image: {
  29612. source: "./media/characters/lawrence/foot-bottom.svg"
  29613. }
  29614. },
  29615. footTop: {
  29616. height: math.unit(0.5, "meter"),
  29617. name: "Foot (Top)",
  29618. image: {
  29619. source: "./media/characters/lawrence/foot-top.svg"
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(2.5, "meters"),
  29627. default: true
  29628. },
  29629. {
  29630. name: "Macro",
  29631. height: math.unit(95, "meters")
  29632. },
  29633. {
  29634. name: "Megamacro",
  29635. height: math.unit(150, "km")
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29641. {
  29642. front: {
  29643. height: math.unit(4.2, "meters"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/sydney/front.svg",
  29647. extra: 1323 / 1277,
  29648. bottom: 111 / 1434
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Normal",
  29655. height: math.unit(4.2, "meters"),
  29656. default: true
  29657. },
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29662. {
  29663. back: {
  29664. height: math.unit(201, "feet"),
  29665. name: "Back",
  29666. image: {
  29667. source: "./media/characters/jessica/back.svg",
  29668. extra: 273 / 259,
  29669. bottom: 7 / 280
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(201, "feet"),
  29677. default: true
  29678. },
  29679. {
  29680. name: "Megamacro",
  29681. height: math.unit(8, "miles")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29687. {
  29688. side: {
  29689. height: math.unit(5.6, "m"),
  29690. weight: math.unit(8000, "kg"),
  29691. name: "Side",
  29692. image: {
  29693. source: "./media/characters/victoria/side.svg",
  29694. extra: 1542/1229,
  29695. bottom: 124/1666
  29696. }
  29697. },
  29698. maw: {
  29699. height: math.unit(7.14, "feet"),
  29700. name: "Maw",
  29701. image: {
  29702. source: "./media/characters/victoria/maw.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Normal",
  29709. height: math.unit(5.6, "m"),
  29710. default: true
  29711. },
  29712. ]
  29713. ))
  29714. characterMakers.push(() => makeCharacter(
  29715. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29716. {
  29717. front: {
  29718. height: math.unit(5 + 6 / 12, "feet"),
  29719. name: "Front",
  29720. image: {
  29721. source: "./media/characters/cat/front.svg",
  29722. extra: 1449/1295,
  29723. bottom: 34/1483
  29724. },
  29725. form: "cat",
  29726. default: true
  29727. },
  29728. back: {
  29729. height: math.unit(5 + 6 / 12, "feet"),
  29730. name: "Back",
  29731. image: {
  29732. source: "./media/characters/cat/back.svg",
  29733. extra: 1466/1301,
  29734. bottom: 19/1485
  29735. },
  29736. form: "cat"
  29737. },
  29738. taur: {
  29739. height: math.unit(7, "feet"),
  29740. name: "Taur",
  29741. image: {
  29742. source: "./media/characters/cat/taur.svg",
  29743. extra: 1389/1233,
  29744. bottom: 83/1472
  29745. },
  29746. form: "taur",
  29747. default: true
  29748. },
  29749. lucarioFront: {
  29750. height: math.unit(4, "feet"),
  29751. name: "Lucario (Front)",
  29752. image: {
  29753. source: "./media/characters/cat/lucario-front.svg",
  29754. extra: 1149/1019,
  29755. bottom: 84/1233
  29756. },
  29757. form: "lucario",
  29758. default: true
  29759. },
  29760. lucarioBack: {
  29761. height: math.unit(4, "feet"),
  29762. name: "Lucario (Back)",
  29763. image: {
  29764. source: "./media/characters/cat/lucario-back.svg",
  29765. extra: 1190/1059,
  29766. bottom: 33/1223
  29767. },
  29768. form: "lucario"
  29769. },
  29770. megaLucario: {
  29771. height: math.unit(4, "feet"),
  29772. name: "Mega Lucario",
  29773. image: {
  29774. source: "./media/characters/cat/mega-lucario.svg",
  29775. extra: 1515 / 1319,
  29776. bottom: 63 / 1578
  29777. },
  29778. form: "lucario"
  29779. },
  29780. nickit: {
  29781. height: math.unit(2, "feet"),
  29782. name: "Nickit",
  29783. image: {
  29784. source: "./media/characters/cat/nickit.svg",
  29785. extra: 1980 / 1585,
  29786. bottom: 102 / 2082
  29787. },
  29788. form: "nickit",
  29789. default: true
  29790. },
  29791. lopunnyFront: {
  29792. height: math.unit(5, "feet"),
  29793. name: "Lopunny (Front)",
  29794. image: {
  29795. source: "./media/characters/cat/lopunny-front.svg",
  29796. extra: 1782 / 1469,
  29797. bottom: 38 / 1820
  29798. },
  29799. form: "lopunny",
  29800. default: true
  29801. },
  29802. lopunnyBack: {
  29803. height: math.unit(5, "feet"),
  29804. name: "Lopunny (Back)",
  29805. image: {
  29806. source: "./media/characters/cat/lopunny-back.svg",
  29807. extra: 1660 / 1490,
  29808. bottom: 25 / 1685
  29809. },
  29810. form: "lopunny"
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Really small",
  29816. height: math.unit(1, "nm")
  29817. },
  29818. {
  29819. name: "Micro",
  29820. height: math.unit(5, "inches")
  29821. },
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(5 + 6 / 12, "feet"),
  29825. default: true
  29826. },
  29827. {
  29828. name: "Macro",
  29829. height: math.unit(50, "feet")
  29830. },
  29831. {
  29832. name: "Macro+",
  29833. height: math.unit(150, "feet")
  29834. },
  29835. {
  29836. name: "Megamacro",
  29837. height: math.unit(100, "miles")
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(63.4, "meters"),
  29846. weight: math.unit(3.28349e+6, "kilograms"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/kirina-violet/front.svg",
  29850. extra: 2812 / 2725,
  29851. bottom: 0 / 2812
  29852. }
  29853. },
  29854. back: {
  29855. height: math.unit(63.4, "meters"),
  29856. weight: math.unit(3.28349e+6, "kilograms"),
  29857. name: "Back",
  29858. image: {
  29859. source: "./media/characters/kirina-violet/back.svg",
  29860. extra: 2812 / 2725,
  29861. bottom: 0 / 2812
  29862. }
  29863. },
  29864. mouth: {
  29865. height: math.unit(4.35, "meters"),
  29866. name: "Mouth",
  29867. image: {
  29868. source: "./media/characters/kirina-violet/mouth.svg"
  29869. }
  29870. },
  29871. paw: {
  29872. height: math.unit(5.6, "meters"),
  29873. name: "Paw",
  29874. image: {
  29875. source: "./media/characters/kirina-violet/paw.svg"
  29876. }
  29877. },
  29878. tail: {
  29879. height: math.unit(18, "meters"),
  29880. name: "Tail",
  29881. image: {
  29882. source: "./media/characters/kirina-violet/tail.svg"
  29883. }
  29884. },
  29885. },
  29886. [
  29887. {
  29888. name: "Macro",
  29889. height: math.unit(63.4, "meters"),
  29890. default: true
  29891. },
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(75, "feet"),
  29899. name: "Front",
  29900. image: {
  29901. source: "./media/characters/cat-gigachu/front.svg",
  29902. extra: 1239/1027,
  29903. bottom: 32/1271
  29904. }
  29905. },
  29906. back: {
  29907. height: math.unit(75, "feet"),
  29908. name: "Back",
  29909. image: {
  29910. source: "./media/characters/cat-gigachu/back.svg",
  29911. extra: 1229/1030,
  29912. bottom: 9/1238
  29913. }
  29914. },
  29915. },
  29916. [
  29917. {
  29918. name: "Dynamax",
  29919. height: math.unit(75, "feet"),
  29920. default: true
  29921. },
  29922. ]
  29923. ))
  29924. characterMakers.push(() => makeCharacter(
  29925. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29926. {
  29927. front: {
  29928. height: math.unit(6, "feet"),
  29929. weight: math.unit(150, "lb"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/sfaiyan/front.svg",
  29933. extra: 999 / 978,
  29934. bottom: 5 / 1004
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(1.82, "meters")
  29942. },
  29943. {
  29944. name: "Giant",
  29945. height: math.unit(2.27, "km"),
  29946. default: true
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(179, "cm"),
  29955. weight: math.unit(100, "kg"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/raunehkeli/front.svg",
  29959. extra: 1934 / 1926,
  29960. bottom: 0 / 1934
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(179, "cm")
  29968. },
  29969. {
  29970. name: "Maximum",
  29971. height: math.unit(575, "meters"),
  29972. default: true
  29973. },
  29974. ]
  29975. ))
  29976. characterMakers.push(() => makeCharacter(
  29977. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29978. {
  29979. front: {
  29980. height: math.unit(6, "feet"),
  29981. weight: math.unit(150, "lb"),
  29982. name: "Front",
  29983. image: {
  29984. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29985. extra: 2625 / 2518,
  29986. bottom: 60 / 2685
  29987. }
  29988. },
  29989. },
  29990. [
  29991. {
  29992. name: "Normal",
  29993. height: math.unit(6 + 2 / 12, "feet")
  29994. },
  29995. {
  29996. name: "Macro",
  29997. height: math.unit(1180, "feet"),
  29998. default: true
  29999. },
  30000. ]
  30001. ))
  30002. characterMakers.push(() => makeCharacter(
  30003. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30004. {
  30005. front: {
  30006. height: math.unit(5 + 6 / 12, "feet"),
  30007. weight: math.unit(108, "lb"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/lilith-zott/front.svg",
  30011. extra: 2510 / 2238,
  30012. bottom: 100 / 2610
  30013. }
  30014. },
  30015. frontDressed: {
  30016. height: math.unit(5 + 6 / 12, "feet"),
  30017. weight: math.unit(108, "lb"),
  30018. name: "Front (Dressed)",
  30019. image: {
  30020. source: "./media/characters/lilith-zott/front-dressed.svg",
  30021. extra: 2510 / 2238,
  30022. bottom: 100 / 2610
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(5 + 6 / 12, "feet")
  30030. },
  30031. {
  30032. name: "Macro",
  30033. height: math.unit(1030, "feet"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(6, "feet"),
  30043. weight: math.unit(150, "lb"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30047. extra: 2567 / 2435,
  30048. bottom: 39 / 2606
  30049. }
  30050. },
  30051. frontSuper: {
  30052. height: math.unit(6, "feet"),
  30053. name: "Front (Super)",
  30054. image: {
  30055. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30056. extra: 2567 / 2435,
  30057. bottom: 39 / 2606
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Normal",
  30064. height: math.unit(5 + 10 / 12, "feet")
  30065. },
  30066. {
  30067. name: "Macro",
  30068. height: math.unit(1100, "feet"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(100, "miles"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/sona/front.svg",
  30081. extra: 2433 / 2201,
  30082. bottom: 53 / 2486
  30083. }
  30084. },
  30085. foot: {
  30086. height: math.unit(16.1, "miles"),
  30087. name: "Foot",
  30088. image: {
  30089. source: "./media/characters/sona/foot.svg"
  30090. }
  30091. },
  30092. },
  30093. [
  30094. {
  30095. name: "Macro",
  30096. height: math.unit(100, "miles"),
  30097. default: true
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(6, "feet"),
  30106. weight: math.unit(150, "lb"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/bailey/front.svg",
  30110. extra: 1778 / 1724,
  30111. bottom: 30 / 1808
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Micro",
  30118. height: math.unit(4, "inches")
  30119. },
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(5 + 5 / 12, "feet"),
  30123. default: true
  30124. },
  30125. {
  30126. name: "Macro",
  30127. height: math.unit(250, "feet")
  30128. },
  30129. {
  30130. name: "Megamacro",
  30131. height: math.unit(100, "miles")
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(5 + 2 / 12, "feet"),
  30140. weight: math.unit(120, "lb"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/snaps/front.svg",
  30144. extra: 2370 / 2177,
  30145. bottom: 48 / 2418
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(5 + 2 / 12, "feet"),
  30150. weight: math.unit(120, "lb"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/snaps/back.svg",
  30154. extra: 2408 / 2258,
  30155. bottom: 15 / 2423
  30156. }
  30157. },
  30158. },
  30159. [
  30160. {
  30161. name: "Micro",
  30162. height: math.unit(9, "inches")
  30163. },
  30164. {
  30165. name: "Normal",
  30166. height: math.unit(5 + 2 / 12, "feet"),
  30167. default: true
  30168. },
  30169. {
  30170. name: "Mini Macro",
  30171. height: math.unit(10, "feet")
  30172. },
  30173. ]
  30174. ))
  30175. characterMakers.push(() => makeCharacter(
  30176. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30177. {
  30178. front: {
  30179. height: math.unit(1.8, "meters"),
  30180. weight: math.unit(85, "kg"),
  30181. name: "Front",
  30182. image: {
  30183. source: "./media/characters/azteck/front.svg",
  30184. extra: 2815 / 2625,
  30185. bottom: 89 / 2904
  30186. }
  30187. },
  30188. back: {
  30189. height: math.unit(1.8, "meters"),
  30190. weight: math.unit(85, "kg"),
  30191. name: "Back",
  30192. image: {
  30193. source: "./media/characters/azteck/back.svg",
  30194. extra: 2856 / 2648,
  30195. bottom: 85 / 2941
  30196. }
  30197. },
  30198. frontDressed: {
  30199. height: math.unit(1.8, "meters"),
  30200. weight: math.unit(85, "kg"),
  30201. name: "Front (Dressed)",
  30202. image: {
  30203. source: "./media/characters/azteck/front-dressed.svg",
  30204. extra: 2147 / 2003,
  30205. bottom: 68 / 2215
  30206. }
  30207. },
  30208. head: {
  30209. height: math.unit(0.47, "meters"),
  30210. weight: math.unit(85, "kg"),
  30211. name: "Head",
  30212. image: {
  30213. source: "./media/characters/azteck/head.svg"
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Bite sized",
  30220. height: math.unit(16, "cm")
  30221. },
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(1.8, "meters"),
  30225. default: true
  30226. },
  30227. ]
  30228. ))
  30229. characterMakers.push(() => makeCharacter(
  30230. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30231. {
  30232. front: {
  30233. height: math.unit(6, "feet"),
  30234. weight: math.unit(150, "lb"),
  30235. name: "Front",
  30236. image: {
  30237. source: "./media/characters/pidge/front.svg",
  30238. extra: 1936/1820,
  30239. bottom: 0/1936
  30240. }
  30241. },
  30242. back: {
  30243. height: math.unit(6, "feet"),
  30244. weight: math.unit(150, "lb"),
  30245. name: "Back",
  30246. image: {
  30247. source: "./media/characters/pidge/back.svg",
  30248. extra: 1938/1843,
  30249. bottom: 0/1938
  30250. }
  30251. },
  30252. casual: {
  30253. height: math.unit(6, "feet"),
  30254. weight: math.unit(150, "lb"),
  30255. name: "Casual",
  30256. image: {
  30257. source: "./media/characters/pidge/casual.svg",
  30258. extra: 1936/1820,
  30259. bottom: 0/1936
  30260. }
  30261. },
  30262. tech: {
  30263. height: math.unit(6, "feet"),
  30264. weight: math.unit(150, "lb"),
  30265. name: "Tech",
  30266. image: {
  30267. source: "./media/characters/pidge/tech.svg",
  30268. extra: 1802/1682,
  30269. bottom: 0/1802
  30270. }
  30271. },
  30272. head: {
  30273. height: math.unit(1.61, "feet"),
  30274. name: "Head",
  30275. image: {
  30276. source: "./media/characters/pidge/head.svg"
  30277. }
  30278. },
  30279. collar: {
  30280. height: math.unit(0.82, "feet"),
  30281. name: "Collar",
  30282. image: {
  30283. source: "./media/characters/pidge/collar.svg"
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Macro",
  30290. height: math.unit(2, "mile"),
  30291. default: true
  30292. },
  30293. {
  30294. name: "PUPPY",
  30295. height: math.unit(20, "miles")
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(6, "feet"),
  30304. weight: math.unit(150, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/en/front.svg",
  30308. extra: 1697 / 1563,
  30309. bottom: 103 / 1800
  30310. }
  30311. },
  30312. back: {
  30313. height: math.unit(6, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/en/back.svg",
  30318. extra: 1700 / 1570,
  30319. bottom: 51 / 1751
  30320. }
  30321. },
  30322. frontDressed: {
  30323. height: math.unit(6, "feet"),
  30324. weight: math.unit(150, "lb"),
  30325. name: "Front (Dressed)",
  30326. image: {
  30327. source: "./media/characters/en/front-dressed.svg",
  30328. extra: 1697 / 1563,
  30329. bottom: 103 / 1800
  30330. }
  30331. },
  30332. backDressed: {
  30333. height: math.unit(6, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Back (Dressed)",
  30336. image: {
  30337. source: "./media/characters/en/back-dressed.svg",
  30338. extra: 1700 / 1570,
  30339. bottom: 51 / 1751
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(210, "feet"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(6, "feet"),
  30356. weight: math.unit(150, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/haze-orris/front.svg",
  30360. extra: 3975 / 3525,
  30361. bottom: 137 / 4112
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Micro",
  30368. height: math.unit(150, "mm"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30375. {
  30376. front: {
  30377. height: math.unit(6, "feet"),
  30378. weight: math.unit(150, "lb"),
  30379. name: "Front",
  30380. image: {
  30381. source: "./media/characters/casselene-yaro/front.svg",
  30382. extra: 4721 / 4541,
  30383. bottom: 82 / 4803
  30384. }
  30385. },
  30386. back: {
  30387. height: math.unit(6, "feet"),
  30388. weight: math.unit(150, "lb"),
  30389. name: "Back",
  30390. image: {
  30391. source: "./media/characters/casselene-yaro/back.svg",
  30392. extra: 4569 / 4377,
  30393. bottom: 69 / 4638
  30394. }
  30395. },
  30396. dressed: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Dressed",
  30400. image: {
  30401. source: "./media/characters/casselene-yaro/dressed.svg",
  30402. extra: 4721 / 4541,
  30403. bottom: 82 / 4803
  30404. }
  30405. },
  30406. maw: {
  30407. height: math.unit(1, "feet"),
  30408. name: "Maw",
  30409. image: {
  30410. source: "./media/characters/casselene-yaro/maw.svg"
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Macro",
  30417. height: math.unit(190, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30424. {
  30425. front: {
  30426. height: math.unit(10, "feet"),
  30427. weight: math.unit(15015, "lb"),
  30428. name: "Front",
  30429. image: {
  30430. source: "./media/characters/fem!plat/front.svg",
  30431. extra: 2799 / 2604,
  30432. bottom: 149 / 2948
  30433. }
  30434. },
  30435. },
  30436. [
  30437. {
  30438. name: "Normal",
  30439. height: math.unit(10, "feet"),
  30440. default: true
  30441. },
  30442. {
  30443. name: "Macro",
  30444. height: math.unit(100, "feet")
  30445. },
  30446. {
  30447. name: "Megamacro",
  30448. height: math.unit(1000, "feet")
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(15 + 5 / 12, "feet"),
  30457. weight: math.unit(4600, "lb"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/neapolitan-ananassa/front.svg",
  30461. extra: 2903 / 2736,
  30462. bottom: 0 / 2903
  30463. }
  30464. },
  30465. side: {
  30466. height: math.unit(15 + 5 / 12, "feet"),
  30467. weight: math.unit(4600, "lb"),
  30468. name: "Side",
  30469. image: {
  30470. source: "./media/characters/neapolitan-ananassa/side.svg",
  30471. extra: 2925 / 2719,
  30472. bottom: 0 / 2925
  30473. }
  30474. },
  30475. back: {
  30476. height: math.unit(15 + 5 / 12, "feet"),
  30477. weight: math.unit(4600, "lb"),
  30478. name: "Back",
  30479. image: {
  30480. source: "./media/characters/neapolitan-ananassa/back.svg",
  30481. extra: 2903 / 2736,
  30482. bottom: 0 / 2903
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(15 + 5 / 12, "feet"),
  30490. default: true
  30491. },
  30492. {
  30493. name: "Post-Millenium",
  30494. height: math.unit(35 + 5 / 12, "feet")
  30495. },
  30496. {
  30497. name: "Post-Era",
  30498. height: math.unit(450 + 5 / 12, "feet")
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30504. {
  30505. front: {
  30506. height: math.unit(300, "meters"),
  30507. weight: math.unit(125000, "tonnes"),
  30508. name: "Front",
  30509. image: {
  30510. source: "./media/characters/pazuzu/front.svg",
  30511. extra: 877 / 794,
  30512. bottom: 47 / 924
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Macro",
  30519. height: math.unit(300, "meters"),
  30520. default: true
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30526. {
  30527. side: {
  30528. height: math.unit(10 + 7 / 12, "feet"),
  30529. weight: math.unit(2.5, "tons"),
  30530. name: "Side",
  30531. image: {
  30532. source: "./media/characters/aasha/side.svg",
  30533. extra: 1345 / 1245,
  30534. bottom: 111 / 1456
  30535. }
  30536. },
  30537. back: {
  30538. height: math.unit(10 + 7 / 12, "feet"),
  30539. weight: math.unit(2.5, "tons"),
  30540. name: "Back",
  30541. image: {
  30542. source: "./media/characters/aasha/back.svg",
  30543. extra: 1133 / 1057,
  30544. bottom: 257 / 1390
  30545. }
  30546. },
  30547. },
  30548. [
  30549. {
  30550. name: "Normal",
  30551. height: math.unit(10 + 7 / 12, "feet"),
  30552. default: true
  30553. },
  30554. ]
  30555. ))
  30556. characterMakers.push(() => makeCharacter(
  30557. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30558. {
  30559. front: {
  30560. height: math.unit(6 + 3 / 12, "feet"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/nevan/front.svg",
  30564. extra: 704 / 704,
  30565. bottom: 28 / 732
  30566. }
  30567. },
  30568. back: {
  30569. height: math.unit(6 + 3 / 12, "feet"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/nevan/back.svg",
  30573. extra: 714 / 714,
  30574. bottom: 21 / 735
  30575. }
  30576. },
  30577. frontFlaccid: {
  30578. height: math.unit(6 + 3 / 12, "feet"),
  30579. name: "Front (Flaccid)",
  30580. image: {
  30581. source: "./media/characters/nevan/front-flaccid.svg",
  30582. extra: 704 / 704,
  30583. bottom: 28 / 732
  30584. }
  30585. },
  30586. frontErect: {
  30587. height: math.unit(6 + 3 / 12, "feet"),
  30588. name: "Front (Erect)",
  30589. image: {
  30590. source: "./media/characters/nevan/front-erect.svg",
  30591. extra: 704 / 704,
  30592. bottom: 28 / 732
  30593. }
  30594. },
  30595. backFlaccid: {
  30596. height: math.unit(6 + 3 / 12, "feet"),
  30597. name: "Back (Flaccid)",
  30598. image: {
  30599. source: "./media/characters/nevan/back-flaccid.svg",
  30600. extra: 714 / 714,
  30601. bottom: 21 / 735
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Normal",
  30608. height: math.unit(6 + 3 / 12, "feet"),
  30609. default: true
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(4, "feet"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/arhan/front.svg",
  30621. extra: 3368 / 3133,
  30622. bottom: 0 / 3368
  30623. }
  30624. },
  30625. side: {
  30626. height: math.unit(4, "feet"),
  30627. name: "Side",
  30628. image: {
  30629. source: "./media/characters/arhan/side.svg",
  30630. extra: 3347 / 3105,
  30631. bottom: 0 / 3347
  30632. }
  30633. },
  30634. tongue: {
  30635. height: math.unit(1.42, "feet"),
  30636. name: "Tongue",
  30637. image: {
  30638. source: "./media/characters/arhan/tongue.svg"
  30639. }
  30640. },
  30641. head: {
  30642. height: math.unit(0.85, "feet"),
  30643. name: "Head",
  30644. image: {
  30645. source: "./media/characters/arhan/head.svg"
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(4, "feet"),
  30653. default: true
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30659. {
  30660. front: {
  30661. height: math.unit(5 + 7.5 / 12, "feet"),
  30662. weight: math.unit(120, "lb"),
  30663. name: "Front",
  30664. image: {
  30665. source: "./media/characters/digi-duncan/front.svg",
  30666. extra: 330 / 326,
  30667. bottom: 16 / 346
  30668. }
  30669. },
  30670. side: {
  30671. height: math.unit(5 + 7.5 / 12, "feet"),
  30672. weight: math.unit(120, "lb"),
  30673. name: "Side",
  30674. image: {
  30675. source: "./media/characters/digi-duncan/side.svg",
  30676. extra: 341 / 337,
  30677. bottom: 1 / 342
  30678. }
  30679. },
  30680. back: {
  30681. height: math.unit(5 + 7.5 / 12, "feet"),
  30682. weight: math.unit(120, "lb"),
  30683. name: "Back",
  30684. image: {
  30685. source: "./media/characters/digi-duncan/back.svg",
  30686. extra: 330 / 326,
  30687. bottom: 12 / 342
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Speck",
  30694. height: math.unit(0.25, "mm")
  30695. },
  30696. {
  30697. name: "Micro",
  30698. height: math.unit(5, "mm")
  30699. },
  30700. {
  30701. name: "Tiny",
  30702. height: math.unit(0.5, "inches"),
  30703. default: true
  30704. },
  30705. {
  30706. name: "Human",
  30707. height: math.unit(5 + 7.5 / 12, "feet")
  30708. },
  30709. {
  30710. name: "Minigiant",
  30711. height: math.unit(8 + 5.25, "feet")
  30712. },
  30713. {
  30714. name: "Giant",
  30715. height: math.unit(2000, "feet")
  30716. },
  30717. {
  30718. name: "Mega",
  30719. height: math.unit(371.1, "miles")
  30720. },
  30721. ]
  30722. ))
  30723. characterMakers.push(() => makeCharacter(
  30724. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30725. {
  30726. front: {
  30727. height: math.unit(2, "meters"),
  30728. weight: math.unit(350, "kg"),
  30729. name: "Front",
  30730. image: {
  30731. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30732. extra: 898 / 838,
  30733. bottom: 9 / 907
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Micro",
  30740. height: math.unit(8, "meters")
  30741. },
  30742. {
  30743. name: "Normal",
  30744. height: math.unit(50, "meters"),
  30745. default: true
  30746. },
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(500, "meters")
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(6 + 6 / 12, "feet"),
  30758. name: "Front",
  30759. image: {
  30760. source: "./media/characters/khardesh/front.svg",
  30761. extra: 1788/1596,
  30762. bottom: 66/1854
  30763. }
  30764. },
  30765. back: {
  30766. height: math.unit(6 + 6 / 12, "feet"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/khardesh/back.svg",
  30770. extra: 1781/1584,
  30771. bottom: 68/1849
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Normal",
  30778. height: math.unit(6 + 6 / 12, "feet"),
  30779. default: true
  30780. },
  30781. {
  30782. name: "Normal+",
  30783. height: math.unit(4, "meters")
  30784. },
  30785. {
  30786. name: "Macro",
  30787. height: math.unit(50, "meters")
  30788. },
  30789. {
  30790. name: "Macro+",
  30791. height: math.unit(100, "meters")
  30792. },
  30793. {
  30794. name: "Megamacro",
  30795. height: math.unit(20, "km")
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30801. {
  30802. front: {
  30803. height: math.unit(6, "feet"),
  30804. weight: math.unit(150, "lb"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/kosho/front.svg",
  30808. extra: 1847 / 1847,
  30809. bottom: 86 / 1933
  30810. }
  30811. },
  30812. },
  30813. [
  30814. {
  30815. name: "Second-stage micro",
  30816. height: math.unit(0.5, "inches")
  30817. },
  30818. {
  30819. name: "First-stage micro",
  30820. height: math.unit(6, "inches")
  30821. },
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(6, "feet"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "First-stage macro",
  30829. height: math.unit(72, "feet")
  30830. },
  30831. {
  30832. name: "Second-stage macro",
  30833. height: math.unit(864, "feet")
  30834. },
  30835. ]
  30836. ))
  30837. characterMakers.push(() => makeCharacter(
  30838. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30839. {
  30840. normal: {
  30841. height: math.unit(4 + 6 / 12, "feet"),
  30842. name: "Normal",
  30843. image: {
  30844. source: "./media/characters/hydra/normal.svg",
  30845. extra: 2833 / 2634,
  30846. bottom: 68 / 2901
  30847. }
  30848. },
  30849. smol: {
  30850. height: math.unit(0.705, "inches"),
  30851. name: "Smol",
  30852. image: {
  30853. source: "./media/characters/hydra/smol.svg",
  30854. extra: 2715 / 2540,
  30855. bottom: 0 / 2715
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(4 + 6 / 12, "feet"),
  30863. default: true
  30864. }
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(0.6, "cm"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/daz/front.svg",
  30875. extra: 1682 / 1164,
  30876. bottom: 42 / 1724
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(0.6, "cm"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(235, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/theo-pangolin/front.svg",
  30897. extra: 1996 / 1969,
  30898. bottom: 115 / 2111
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(6, "feet"),
  30903. weight: math.unit(235, "lb"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/theo-pangolin/back.svg",
  30907. extra: 1979 / 1979,
  30908. bottom: 40 / 2019
  30909. }
  30910. },
  30911. feral: {
  30912. height: math.unit(2, "feet"),
  30913. weight: math.unit(30, "lb"),
  30914. name: "Feral",
  30915. image: {
  30916. source: "./media/characters/theo-pangolin/feral.svg",
  30917. extra: 803 / 791,
  30918. bottom: 181 / 984
  30919. }
  30920. },
  30921. footFive: {
  30922. height: math.unit(1.43, "feet"),
  30923. name: "Foot (Five Toes)",
  30924. image: {
  30925. source: "./media/characters/theo-pangolin/foot-five.svg"
  30926. }
  30927. },
  30928. footFour: {
  30929. height: math.unit(1.43, "feet"),
  30930. name: "Foot (Four Toes)",
  30931. image: {
  30932. source: "./media/characters/theo-pangolin/foot-four.svg"
  30933. }
  30934. },
  30935. handFour: {
  30936. height: math.unit(0.81, "feet"),
  30937. name: "Hand (Four Fingers)",
  30938. image: {
  30939. source: "./media/characters/theo-pangolin/hand-four.svg"
  30940. }
  30941. },
  30942. handThree: {
  30943. height: math.unit(0.81, "feet"),
  30944. name: "Hand (Three Fingers)",
  30945. image: {
  30946. source: "./media/characters/theo-pangolin/hand-three.svg"
  30947. }
  30948. },
  30949. headFront: {
  30950. height: math.unit(1.37, "feet"),
  30951. name: "Head (Front)",
  30952. image: {
  30953. source: "./media/characters/theo-pangolin/head-front.svg"
  30954. }
  30955. },
  30956. headSide: {
  30957. height: math.unit(1.43, "feet"),
  30958. name: "Head (Side)",
  30959. image: {
  30960. source: "./media/characters/theo-pangolin/head-side.svg"
  30961. }
  30962. },
  30963. tongue: {
  30964. height: math.unit(2.29, "feet"),
  30965. name: "Tongue",
  30966. image: {
  30967. source: "./media/characters/theo-pangolin/tongue.svg"
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(6, "feet")
  30975. },
  30976. {
  30977. name: "Macro",
  30978. height: math.unit(400, "feet"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6, "inches"),
  30988. weight: math.unit(0.036, "kg"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/renée/front.svg",
  30992. extra: 900 / 886,
  30993. bottom: 8 / 908
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Nano",
  31000. height: math.unit(1, "nm")
  31001. },
  31002. {
  31003. name: "Micro",
  31004. height: math.unit(1, "mm")
  31005. },
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(6, "inches")
  31009. },
  31010. {
  31011. name: "Macro",
  31012. height: math.unit(2000, "feet"),
  31013. default: true
  31014. },
  31015. {
  31016. name: "Megamacro",
  31017. height: math.unit(2, "km")
  31018. },
  31019. {
  31020. name: "Gigamacro",
  31021. height: math.unit(2000, "km")
  31022. },
  31023. {
  31024. name: "Teramacro",
  31025. height: math.unit(250000, "km")
  31026. },
  31027. ]
  31028. ))
  31029. characterMakers.push(() => makeCharacter(
  31030. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31031. {
  31032. front: {
  31033. height: math.unit(4, "meters"),
  31034. weight: math.unit(150, "kg"),
  31035. name: "Front",
  31036. image: {
  31037. source: "./media/characters/caledvwlch/front.svg",
  31038. extra: 1760 / 1551,
  31039. bottom: 28 / 1788
  31040. }
  31041. },
  31042. side: {
  31043. height: math.unit(4, "meters"),
  31044. weight: math.unit(150, "kg"),
  31045. name: "Side",
  31046. image: {
  31047. source: "./media/characters/caledvwlch/side.svg",
  31048. extra: 1605 / 1536,
  31049. bottom: 31 / 1636
  31050. }
  31051. },
  31052. back: {
  31053. height: math.unit(4, "meters"),
  31054. weight: math.unit(150, "kg"),
  31055. name: "Back",
  31056. image: {
  31057. source: "./media/characters/caledvwlch/back.svg",
  31058. extra: 1635 / 1565,
  31059. bottom: 27 / 1662
  31060. }
  31061. },
  31062. },
  31063. [
  31064. {
  31065. name: "\"Incognito\"",
  31066. height: math.unit(4, "meters")
  31067. },
  31068. {
  31069. name: "Small rampage",
  31070. height: math.unit(600, "meters")
  31071. },
  31072. {
  31073. name: "Mega",
  31074. height: math.unit(30, "km")
  31075. },
  31076. {
  31077. name: "Home-size",
  31078. height: math.unit(50, "km"),
  31079. default: true
  31080. },
  31081. {
  31082. name: "Giga",
  31083. height: math.unit(300, "km")
  31084. },
  31085. {
  31086. name: "Lounging",
  31087. height: math.unit(11000, "km")
  31088. },
  31089. {
  31090. name: "Planet snacking",
  31091. height: math.unit(2000000, "km")
  31092. },
  31093. ]
  31094. ))
  31095. characterMakers.push(() => makeCharacter(
  31096. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31097. {
  31098. front: {
  31099. height: math.unit(6, "feet"),
  31100. weight: math.unit(215, "lb"),
  31101. name: "Front",
  31102. image: {
  31103. source: "./media/characters/sapphire-svell/front.svg",
  31104. extra: 495 / 455,
  31105. bottom: 20 / 515
  31106. }
  31107. },
  31108. back: {
  31109. height: math.unit(6, "feet"),
  31110. weight: math.unit(216, "lb"),
  31111. name: "Back",
  31112. image: {
  31113. source: "./media/characters/sapphire-svell/back.svg",
  31114. extra: 497 / 477,
  31115. bottom: 7 / 504
  31116. }
  31117. },
  31118. maw: {
  31119. height: math.unit(1.57, "feet"),
  31120. name: "Maw",
  31121. image: {
  31122. source: "./media/characters/sapphire-svell/maw.svg"
  31123. }
  31124. },
  31125. foot: {
  31126. height: math.unit(1.07, "feet"),
  31127. name: "Foot",
  31128. image: {
  31129. source: "./media/characters/sapphire-svell/foot.svg"
  31130. }
  31131. },
  31132. toering: {
  31133. height: math.unit(1.7, "inch"),
  31134. name: "Toering",
  31135. image: {
  31136. source: "./media/characters/sapphire-svell/toering.svg"
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(300, "feet"),
  31144. default: true
  31145. },
  31146. {
  31147. name: "Augmented",
  31148. height: math.unit(1250, "feet")
  31149. },
  31150. {
  31151. name: "Unleashed",
  31152. height: math.unit(3000, "feet")
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31158. {
  31159. side: {
  31160. height: math.unit(2 + 3 / 12, "feet"),
  31161. weight: math.unit(110, "lb"),
  31162. name: "Side",
  31163. image: {
  31164. source: "./media/characters/glitch-flux/side.svg",
  31165. extra: 997 / 805,
  31166. bottom: 20 / 1017
  31167. }
  31168. },
  31169. },
  31170. [
  31171. {
  31172. name: "Normal",
  31173. height: math.unit(2 + 3 / 12, "feet"),
  31174. default: true
  31175. },
  31176. ]
  31177. ))
  31178. characterMakers.push(() => makeCharacter(
  31179. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31180. {
  31181. front: {
  31182. height: math.unit(4, "meters"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/mid/front.svg",
  31186. extra: 507 / 476,
  31187. bottom: 17 / 524
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(4, "meters"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/mid/back.svg",
  31195. extra: 519 / 487,
  31196. bottom: 7 / 526
  31197. }
  31198. },
  31199. stuck: {
  31200. height: math.unit(2.2, "meters"),
  31201. name: "Stuck",
  31202. image: {
  31203. source: "./media/characters/mid/stuck.svg",
  31204. extra: 1951 / 1869,
  31205. bottom: 88 / 2039
  31206. }
  31207. }
  31208. },
  31209. [
  31210. {
  31211. name: "Normal",
  31212. height: math.unit(4, "meters"),
  31213. default: true
  31214. },
  31215. {
  31216. name: "Big",
  31217. height: math.unit(10, "meters")
  31218. },
  31219. {
  31220. name: "Macro",
  31221. height: math.unit(800, "meters")
  31222. },
  31223. {
  31224. name: "Megamacro",
  31225. height: math.unit(100, "km")
  31226. },
  31227. {
  31228. name: "Overgrown",
  31229. height: math.unit(1, "parsec")
  31230. },
  31231. ]
  31232. ))
  31233. characterMakers.push(() => makeCharacter(
  31234. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31235. {
  31236. front: {
  31237. height: math.unit(2.5, "meters"),
  31238. weight: math.unit(225, "kg"),
  31239. name: "Front",
  31240. image: {
  31241. source: "./media/characters/iris/front.svg",
  31242. extra: 3348 / 3251,
  31243. bottom: 205 / 3553
  31244. }
  31245. },
  31246. maw: {
  31247. height: math.unit(0.56, "meter"),
  31248. name: "Maw",
  31249. image: {
  31250. source: "./media/characters/iris/maw.svg"
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Mewter cat",
  31257. height: math.unit(1.2, "meters")
  31258. },
  31259. {
  31260. name: "Minimacro",
  31261. height: math.unit(2.5, "meters"),
  31262. default: true
  31263. },
  31264. {
  31265. name: "Macro",
  31266. height: math.unit(180, "meters")
  31267. },
  31268. {
  31269. name: "Megamacro",
  31270. height: math.unit(2746, "meters")
  31271. },
  31272. ]
  31273. ))
  31274. characterMakers.push(() => makeCharacter(
  31275. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31276. {
  31277. front: {
  31278. height: math.unit(6, "feet"),
  31279. weight: math.unit(135, "lb"),
  31280. name: "Front",
  31281. image: {
  31282. source: "./media/characters/axel/front.svg",
  31283. extra: 908 / 908,
  31284. bottom: 58 / 966
  31285. }
  31286. },
  31287. side: {
  31288. height: math.unit(6, "feet"),
  31289. weight: math.unit(135, "lb"),
  31290. name: "Side",
  31291. image: {
  31292. source: "./media/characters/axel/side.svg",
  31293. extra: 958 / 958,
  31294. bottom: 11 / 969
  31295. }
  31296. },
  31297. back: {
  31298. height: math.unit(6, "feet"),
  31299. weight: math.unit(135, "lb"),
  31300. name: "Back",
  31301. image: {
  31302. source: "./media/characters/axel/back.svg",
  31303. extra: 887 / 887,
  31304. bottom: 34 / 921
  31305. }
  31306. },
  31307. head: {
  31308. height: math.unit(1.07, "feet"),
  31309. name: "Head",
  31310. image: {
  31311. source: "./media/characters/axel/head.svg"
  31312. }
  31313. },
  31314. beak: {
  31315. height: math.unit(1.4, "feet"),
  31316. name: "Beak",
  31317. image: {
  31318. source: "./media/characters/axel/beak.svg"
  31319. }
  31320. },
  31321. beakSide: {
  31322. height: math.unit(1.4, "feet"),
  31323. name: "Beak Side",
  31324. image: {
  31325. source: "./media/characters/axel/beak-side.svg"
  31326. }
  31327. },
  31328. sheath: {
  31329. height: math.unit(0.5, "feet"),
  31330. name: "Sheath",
  31331. image: {
  31332. source: "./media/characters/axel/sheath.svg"
  31333. }
  31334. },
  31335. dick: {
  31336. height: math.unit(0.98, "feet"),
  31337. name: "Dick",
  31338. image: {
  31339. source: "./media/characters/axel/dick.svg"
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Macro",
  31346. height: math.unit(68, "meters"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31353. {
  31354. front: {
  31355. height: math.unit(3.5, "meters"),
  31356. weight: math.unit(1200, "kg"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/joanna/front.svg",
  31360. extra: 1596 / 1488,
  31361. bottom: 29 / 1625
  31362. }
  31363. },
  31364. back: {
  31365. height: math.unit(3.5, "meters"),
  31366. weight: math.unit(1200, "kg"),
  31367. name: "Back",
  31368. image: {
  31369. source: "./media/characters/joanna/back.svg",
  31370. extra: 1594 / 1495,
  31371. bottom: 26 / 1620
  31372. }
  31373. },
  31374. frontShorts: {
  31375. height: math.unit(3.5, "meters"),
  31376. weight: math.unit(1200, "kg"),
  31377. name: "Front (Shorts)",
  31378. image: {
  31379. source: "./media/characters/joanna/front-shorts.svg",
  31380. extra: 1596 / 1488,
  31381. bottom: 29 / 1625
  31382. }
  31383. },
  31384. frontBiker: {
  31385. height: math.unit(3.5, "meters"),
  31386. weight: math.unit(1200, "kg"),
  31387. name: "Front (Biker)",
  31388. image: {
  31389. source: "./media/characters/joanna/front-biker.svg",
  31390. extra: 1596 / 1488,
  31391. bottom: 29 / 1625
  31392. }
  31393. },
  31394. backBiker: {
  31395. height: math.unit(3.5, "meters"),
  31396. weight: math.unit(1200, "kg"),
  31397. name: "Back (Biker)",
  31398. image: {
  31399. source: "./media/characters/joanna/back-biker.svg",
  31400. extra: 1594 / 1495,
  31401. bottom: 88 / 1682
  31402. }
  31403. },
  31404. bikeLeft: {
  31405. height: math.unit(2.4, "meters"),
  31406. weight: math.unit(1600, "kg"),
  31407. name: "Bike (Left)",
  31408. image: {
  31409. source: "./media/characters/joanna/bike-left.svg",
  31410. extra: 720 / 720,
  31411. bottom: 8 / 728
  31412. }
  31413. },
  31414. bikeRight: {
  31415. height: math.unit(2.4, "meters"),
  31416. weight: math.unit(1600, "kg"),
  31417. name: "Bike (Right)",
  31418. image: {
  31419. source: "./media/characters/joanna/bike-right.svg",
  31420. extra: 720 / 720,
  31421. bottom: 8 / 728
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Incognito",
  31428. height: math.unit(3.5, "meters")
  31429. },
  31430. {
  31431. name: "Casual Big",
  31432. height: math.unit(200, "meters")
  31433. },
  31434. {
  31435. name: "Macro",
  31436. height: math.unit(600, "meters")
  31437. },
  31438. {
  31439. name: "Original",
  31440. height: math.unit(20, "km"),
  31441. default: true
  31442. },
  31443. {
  31444. name: "Giga",
  31445. height: math.unit(400, "km")
  31446. },
  31447. {
  31448. name: "Lounging",
  31449. height: math.unit(1500, "km")
  31450. },
  31451. {
  31452. name: "Planetary",
  31453. height: math.unit(200000, "km")
  31454. },
  31455. ]
  31456. ))
  31457. characterMakers.push(() => makeCharacter(
  31458. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31459. {
  31460. front: {
  31461. height: math.unit(6, "feet"),
  31462. weight: math.unit(150, "lb"),
  31463. name: "Front",
  31464. image: {
  31465. source: "./media/characters/hugo-sigil/front.svg",
  31466. extra: 522 / 500,
  31467. bottom: 2 / 524
  31468. }
  31469. },
  31470. back: {
  31471. height: math.unit(6, "feet"),
  31472. weight: math.unit(150, "lb"),
  31473. name: "Back",
  31474. image: {
  31475. source: "./media/characters/hugo-sigil/back.svg",
  31476. extra: 519 / 495,
  31477. bottom: 5 / 524
  31478. }
  31479. },
  31480. maw: {
  31481. height: math.unit(1.4, "feet"),
  31482. weight: math.unit(150, "lb"),
  31483. name: "Maw",
  31484. image: {
  31485. source: "./media/characters/hugo-sigil/maw.svg"
  31486. }
  31487. },
  31488. feet: {
  31489. height: math.unit(1.56, "feet"),
  31490. weight: math.unit(150, "lb"),
  31491. name: "Feet",
  31492. image: {
  31493. source: "./media/characters/hugo-sigil/feet.svg",
  31494. extra: 177 / 177,
  31495. bottom: 12 / 189
  31496. }
  31497. },
  31498. },
  31499. [
  31500. {
  31501. name: "Normal",
  31502. height: math.unit(6, "feet")
  31503. },
  31504. {
  31505. name: "Macro",
  31506. height: math.unit(200, "feet"),
  31507. default: true
  31508. },
  31509. ]
  31510. ))
  31511. characterMakers.push(() => makeCharacter(
  31512. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31513. {
  31514. front: {
  31515. height: math.unit(6, "feet"),
  31516. weight: math.unit(150, "lb"),
  31517. name: "Front",
  31518. image: {
  31519. source: "./media/characters/peri/front.svg",
  31520. extra: 2354 / 2233,
  31521. bottom: 49 / 2403
  31522. }
  31523. },
  31524. },
  31525. [
  31526. {
  31527. name: "Really Small",
  31528. height: math.unit(1, "nm")
  31529. },
  31530. {
  31531. name: "Micro",
  31532. height: math.unit(4, "inches")
  31533. },
  31534. {
  31535. name: "Normal",
  31536. height: math.unit(7, "inches"),
  31537. default: true
  31538. },
  31539. {
  31540. name: "Macro",
  31541. height: math.unit(400, "feet")
  31542. },
  31543. {
  31544. name: "Megamacro",
  31545. height: math.unit(100, "miles")
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31551. {
  31552. frontSlim: {
  31553. height: math.unit(7, "feet"),
  31554. name: "Front (Slim)",
  31555. image: {
  31556. source: "./media/characters/issilora/front-slim.svg",
  31557. extra: 529 / 449,
  31558. bottom: 53 / 582
  31559. }
  31560. },
  31561. sideSlim: {
  31562. height: math.unit(7, "feet"),
  31563. name: "Side (Slim)",
  31564. image: {
  31565. source: "./media/characters/issilora/side-slim.svg",
  31566. extra: 570 / 480,
  31567. bottom: 30 / 600
  31568. }
  31569. },
  31570. backSlim: {
  31571. height: math.unit(7, "feet"),
  31572. name: "Back (Slim)",
  31573. image: {
  31574. source: "./media/characters/issilora/back-slim.svg",
  31575. extra: 537 / 455,
  31576. bottom: 46 / 583
  31577. }
  31578. },
  31579. frontBuff: {
  31580. height: math.unit(7, "feet"),
  31581. name: "Front (Buff)",
  31582. image: {
  31583. source: "./media/characters/issilora/front-buff.svg",
  31584. extra: 2310 / 2035,
  31585. bottom: 335 / 2645
  31586. }
  31587. },
  31588. head: {
  31589. height: math.unit(1.94, "feet"),
  31590. name: "Head",
  31591. image: {
  31592. source: "./media/characters/issilora/head.svg"
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Minimum",
  31599. height: math.unit(7, "feet")
  31600. },
  31601. {
  31602. name: "Comfortable",
  31603. height: math.unit(17, "feet")
  31604. },
  31605. {
  31606. name: "Fun Size",
  31607. height: math.unit(47, "feet")
  31608. },
  31609. {
  31610. name: "Natural Macro",
  31611. height: math.unit(137, "feet"),
  31612. default: true
  31613. },
  31614. {
  31615. name: "Maximum Kaiju",
  31616. height: math.unit(397, "feet")
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31622. {
  31623. front: {
  31624. height: math.unit(50 + 9/12, "feet"),
  31625. weight: math.unit(32.8, "tons"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/irb'iiritaahn/front.svg",
  31629. extra: 1878/1826,
  31630. bottom: 326/2204
  31631. }
  31632. },
  31633. back: {
  31634. height: math.unit(50 + 9/12, "feet"),
  31635. weight: math.unit(32.8, "tons"),
  31636. name: "Back",
  31637. image: {
  31638. source: "./media/characters/irb'iiritaahn/back.svg",
  31639. extra: 2052/2018,
  31640. bottom: 152/2204
  31641. }
  31642. },
  31643. head: {
  31644. height: math.unit(12.86, "feet"),
  31645. name: "Head",
  31646. image: {
  31647. source: "./media/characters/irb'iiritaahn/head.svg"
  31648. }
  31649. },
  31650. maw: {
  31651. height: math.unit(9.66, "feet"),
  31652. name: "Maw",
  31653. image: {
  31654. source: "./media/characters/irb'iiritaahn/maw.svg"
  31655. }
  31656. },
  31657. frontDick: {
  31658. height: math.unit(8.78461, "feet"),
  31659. name: "Front Dick",
  31660. image: {
  31661. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31662. }
  31663. },
  31664. rearDick: {
  31665. height: math.unit(8.78461, "feet"),
  31666. name: "Rear Dick",
  31667. image: {
  31668. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31669. }
  31670. },
  31671. rearDickUnfolded: {
  31672. height: math.unit(8.78, "feet"),
  31673. name: "Rear Dick (Unfolded)",
  31674. image: {
  31675. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31676. }
  31677. },
  31678. wings: {
  31679. height: math.unit(43, "feet"),
  31680. name: "Wings",
  31681. image: {
  31682. source: "./media/characters/irb'iiritaahn/wings.svg"
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Macro",
  31689. height: math.unit(50 + 9/12, "feet"),
  31690. default: true
  31691. },
  31692. ]
  31693. ))
  31694. characterMakers.push(() => makeCharacter(
  31695. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31696. {
  31697. front: {
  31698. height: math.unit(205, "cm"),
  31699. weight: math.unit(102, "kg"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/irbisgreif/front.svg",
  31703. extra: 785/706,
  31704. bottom: 13/798
  31705. }
  31706. },
  31707. back: {
  31708. height: math.unit(205, "cm"),
  31709. weight: math.unit(102, "kg"),
  31710. name: "Back",
  31711. image: {
  31712. source: "./media/characters/irbisgreif/back.svg",
  31713. extra: 713/701,
  31714. bottom: 26/739
  31715. }
  31716. },
  31717. frontDressed: {
  31718. height: math.unit(216, "cm"),
  31719. weight: math.unit(102, "kg"),
  31720. name: "Front-dressed",
  31721. image: {
  31722. source: "./media/characters/irbisgreif/front-dressed.svg",
  31723. extra: 902/776,
  31724. bottom: 14/916
  31725. }
  31726. },
  31727. sideDressed: {
  31728. height: math.unit(195, "cm"),
  31729. weight: math.unit(102, "kg"),
  31730. name: "Side-dressed",
  31731. image: {
  31732. source: "./media/characters/irbisgreif/side-dressed.svg",
  31733. extra: 788/688,
  31734. bottom: 21/809
  31735. }
  31736. },
  31737. backDressed: {
  31738. height: math.unit(216, "cm"),
  31739. weight: math.unit(102, "kg"),
  31740. name: "Back-dressed",
  31741. image: {
  31742. source: "./media/characters/irbisgreif/back-dressed.svg",
  31743. extra: 901/783,
  31744. bottom: 10/911
  31745. }
  31746. },
  31747. dick: {
  31748. height: math.unit(0.49, "feet"),
  31749. name: "Dick",
  31750. image: {
  31751. source: "./media/characters/irbisgreif/dick.svg"
  31752. }
  31753. },
  31754. wingTop: {
  31755. height: math.unit(1.93 , "feet"),
  31756. name: "Wing-top",
  31757. image: {
  31758. source: "./media/characters/irbisgreif/wing-top.svg"
  31759. }
  31760. },
  31761. wingBottom: {
  31762. height: math.unit(1.93 , "feet"),
  31763. name: "Wing-bottom",
  31764. image: {
  31765. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Normal",
  31772. height: math.unit(216, "cm"),
  31773. default: true
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31779. {
  31780. front: {
  31781. height: math.unit(6, "feet"),
  31782. weight: math.unit(150, "lb"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/pride/front.svg",
  31786. extra: 1299/1230,
  31787. bottom: 18/1317
  31788. }
  31789. },
  31790. },
  31791. [
  31792. {
  31793. name: "Normal",
  31794. height: math.unit(7, "feet")
  31795. },
  31796. {
  31797. name: "Mini-macro",
  31798. height: math.unit(11, "feet")
  31799. },
  31800. {
  31801. name: "Macro",
  31802. height: math.unit(15, "meters"),
  31803. default: true
  31804. },
  31805. {
  31806. name: "Macro+",
  31807. height: math.unit(40, "meters")
  31808. },
  31809. ]
  31810. ))
  31811. characterMakers.push(() => makeCharacter(
  31812. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31813. {
  31814. front: {
  31815. height: math.unit(4 + 2 / 12, "feet"),
  31816. weight: math.unit(95, "lb"),
  31817. name: "Front",
  31818. image: {
  31819. source: "./media/characters/vaelophis-nyx/front.svg",
  31820. extra: 2532/2330,
  31821. bottom: 0/2532
  31822. }
  31823. },
  31824. back: {
  31825. height: math.unit(4 + 2 / 12, "feet"),
  31826. weight: math.unit(95, "lb"),
  31827. name: "Back",
  31828. image: {
  31829. source: "./media/characters/vaelophis-nyx/back.svg",
  31830. extra: 2484/2361,
  31831. bottom: 0/2484
  31832. }
  31833. },
  31834. feralSide: {
  31835. height: math.unit(2 + 1/12, "feet"),
  31836. weight: math.unit(20, "lb"),
  31837. name: "Feral (Side)",
  31838. image: {
  31839. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31840. extra: 1721/1581,
  31841. bottom: 70/1791
  31842. }
  31843. },
  31844. feralLazing: {
  31845. height: math.unit(1.08, "feet"),
  31846. weight: math.unit(20, "lb"),
  31847. name: "Feral (Lazing)",
  31848. image: {
  31849. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31850. extra: 822/822,
  31851. bottom: 248/1070
  31852. }
  31853. },
  31854. ear: {
  31855. height: math.unit(0.416, "feet"),
  31856. name: "Ear",
  31857. image: {
  31858. source: "./media/characters/vaelophis-nyx/ear.svg"
  31859. }
  31860. },
  31861. eye: {
  31862. height: math.unit(0.0748, "feet"),
  31863. name: "Eye",
  31864. image: {
  31865. source: "./media/characters/vaelophis-nyx/eye.svg"
  31866. }
  31867. },
  31868. mouth: {
  31869. height: math.unit(0.378, "feet"),
  31870. name: "Mouth",
  31871. image: {
  31872. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31873. }
  31874. },
  31875. spade: {
  31876. height: math.unit(0.55, "feet"),
  31877. name: "Spade",
  31878. image: {
  31879. source: "./media/characters/vaelophis-nyx/spade.svg"
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(4 + 2/12, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31893. {
  31894. front: {
  31895. height: math.unit(7, "feet"),
  31896. weight: math.unit(231, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/flux/front.svg",
  31900. extra: 919/871,
  31901. bottom: 0/919
  31902. }
  31903. },
  31904. back: {
  31905. height: math.unit(7, "feet"),
  31906. weight: math.unit(231, "lb"),
  31907. name: "Back",
  31908. image: {
  31909. source: "./media/characters/flux/back.svg",
  31910. extra: 1040/992,
  31911. bottom: 0/1040
  31912. }
  31913. },
  31914. frontDressed: {
  31915. height: math.unit(7, "feet"),
  31916. weight: math.unit(231, "lb"),
  31917. name: "Front (Dressed)",
  31918. image: {
  31919. source: "./media/characters/flux/front-dressed.svg",
  31920. extra: 919/871,
  31921. bottom: 0/919
  31922. }
  31923. },
  31924. feralSide: {
  31925. height: math.unit(5, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Feral (Side)",
  31928. image: {
  31929. source: "./media/characters/flux/feral-side.svg",
  31930. extra: 598/528,
  31931. bottom: 28/626
  31932. }
  31933. },
  31934. head: {
  31935. height: math.unit(1.585, "feet"),
  31936. name: "Head",
  31937. image: {
  31938. source: "./media/characters/flux/head.svg"
  31939. }
  31940. },
  31941. headSide: {
  31942. height: math.unit(1.74, "feet"),
  31943. name: "Head (Side)",
  31944. image: {
  31945. source: "./media/characters/flux/head-side.svg"
  31946. }
  31947. },
  31948. headSideFire: {
  31949. height: math.unit(1.76, "feet"),
  31950. name: "Head (Side, Fire)",
  31951. image: {
  31952. source: "./media/characters/flux/head-side-fire.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(7, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31966. {
  31967. front: {
  31968. height: math.unit(9, "feet"),
  31969. weight: math.unit(1012, "lb"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/ulfra-lupae/front.svg",
  31973. extra: 1083/1011,
  31974. bottom: 67/1150
  31975. }
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Micro",
  31981. height: math.unit(6, "inches")
  31982. },
  31983. {
  31984. name: "Socializing",
  31985. height: math.unit(6 + 5/12, "feet")
  31986. },
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(9, "feet"),
  31990. default: true
  31991. },
  31992. {
  31993. name: "Macro",
  31994. height: math.unit(150, "feet")
  31995. },
  31996. ]
  31997. ))
  31998. characterMakers.push(() => makeCharacter(
  31999. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32000. {
  32001. front: {
  32002. height: math.unit(5 + 2/12, "feet"),
  32003. weight: math.unit(120, "lb"),
  32004. name: "Front",
  32005. image: {
  32006. source: "./media/characters/timber/front.svg",
  32007. extra: 2814/2705,
  32008. bottom: 181/2995
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Normal",
  32015. height: math.unit(5 + 2/12, "feet"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(9, "feet"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/nicki/front.svg",
  32028. extra: 1240/990,
  32029. bottom: 45/1285
  32030. },
  32031. form: "anthro",
  32032. default: true
  32033. },
  32034. side: {
  32035. height: math.unit(9, "feet"),
  32036. name: "Side",
  32037. image: {
  32038. source: "./media/characters/nicki/side.svg",
  32039. extra: 1047/973,
  32040. bottom: 61/1108
  32041. },
  32042. form: "anthro"
  32043. },
  32044. back: {
  32045. height: math.unit(9, "feet"),
  32046. name: "Back",
  32047. image: {
  32048. source: "./media/characters/nicki/back.svg",
  32049. extra: 1006/965,
  32050. bottom: 39/1045
  32051. },
  32052. form: "anthro"
  32053. },
  32054. taur: {
  32055. height: math.unit(15, "feet"),
  32056. name: "Taur",
  32057. image: {
  32058. source: "./media/characters/nicki/taur.svg",
  32059. extra: 1592/1347,
  32060. bottom: 0/1592
  32061. },
  32062. form: "taur",
  32063. default: true
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Normal",
  32069. height: math.unit(9, "feet"),
  32070. form: "anthro",
  32071. default: true
  32072. },
  32073. {
  32074. name: "Normal",
  32075. height: math.unit(15, "feet"),
  32076. form: "taur",
  32077. default: true
  32078. }
  32079. ],
  32080. {
  32081. "anthro": {
  32082. name: "Anthro",
  32083. default: true
  32084. },
  32085. "taur": {
  32086. name: "Taur"
  32087. }
  32088. }
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(7 + 10/12, "feet"),
  32095. weight: math.unit(3.5, "tons"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/lee/front.svg",
  32099. extra: 1773/1615,
  32100. bottom: 86/1859
  32101. }
  32102. },
  32103. hand: {
  32104. height: math.unit(1.78, "feet"),
  32105. name: "Hand",
  32106. image: {
  32107. source: "./media/characters/lee/hand.svg"
  32108. }
  32109. },
  32110. maw: {
  32111. height: math.unit(1.18, "feet"),
  32112. name: "Maw",
  32113. image: {
  32114. source: "./media/characters/lee/maw.svg"
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Normal",
  32121. height: math.unit(7 + 10/12, "feet"),
  32122. default: true
  32123. },
  32124. ]
  32125. ))
  32126. characterMakers.push(() => makeCharacter(
  32127. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32128. {
  32129. front: {
  32130. height: math.unit(9, "feet"),
  32131. name: "Front",
  32132. image: {
  32133. source: "./media/characters/guti/front.svg",
  32134. extra: 4551/4355,
  32135. bottom: 123/4674
  32136. }
  32137. },
  32138. tongue: {
  32139. height: math.unit(1, "feet"),
  32140. name: "Tongue",
  32141. image: {
  32142. source: "./media/characters/guti/tongue.svg"
  32143. }
  32144. },
  32145. paw: {
  32146. height: math.unit(1.18, "feet"),
  32147. name: "Paw",
  32148. image: {
  32149. source: "./media/characters/guti/paw.svg"
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Normal",
  32156. height: math.unit(9, "feet"),
  32157. default: true
  32158. },
  32159. ]
  32160. ))
  32161. characterMakers.push(() => makeCharacter(
  32162. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32163. {
  32164. side: {
  32165. height: math.unit(5, "meters"),
  32166. name: "Side",
  32167. image: {
  32168. source: "./media/characters/vesper/side.svg",
  32169. extra: 1605/1518,
  32170. bottom: 0/1605
  32171. }
  32172. },
  32173. },
  32174. [
  32175. {
  32176. name: "Small",
  32177. height: math.unit(5, "meters")
  32178. },
  32179. {
  32180. name: "Sage",
  32181. height: math.unit(100, "meters"),
  32182. default: true
  32183. },
  32184. {
  32185. name: "Fun Size",
  32186. height: math.unit(600, "meters")
  32187. },
  32188. {
  32189. name: "Goddess",
  32190. height: math.unit(20000, "km")
  32191. },
  32192. {
  32193. name: "Maximum",
  32194. height: math.unit(5, "galaxies")
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(6 + 3/12, "feet"),
  32203. weight: math.unit(190, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/gawain/front.svg",
  32207. extra: 2222/2139,
  32208. bottom: 90/2312
  32209. }
  32210. },
  32211. back: {
  32212. height: math.unit(6 + 3/12, "feet"),
  32213. weight: math.unit(190, "lb"),
  32214. name: "Back",
  32215. image: {
  32216. source: "./media/characters/gawain/back.svg",
  32217. extra: 2199/2111,
  32218. bottom: 73/2272
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(6 + 3/12, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32232. {
  32233. side: {
  32234. height: math.unit(3.5, "meters"),
  32235. weight: math.unit(16000, "lb"),
  32236. name: "Side",
  32237. image: {
  32238. source: "./media/characters/dascalti/side.svg",
  32239. extra: 392/273,
  32240. bottom: 47/439
  32241. }
  32242. },
  32243. breath: {
  32244. height: math.unit(7.4, "feet"),
  32245. name: "Breath",
  32246. image: {
  32247. source: "./media/characters/dascalti/breath.svg"
  32248. }
  32249. },
  32250. fed: {
  32251. height: math.unit(3.6, "meters"),
  32252. weight: math.unit(16000, "lb"),
  32253. name: "Fed",
  32254. image: {
  32255. source: "./media/characters/dascalti/fed.svg",
  32256. extra: 1419/820,
  32257. bottom: 95/1514
  32258. }
  32259. },
  32260. },
  32261. [
  32262. {
  32263. name: "Normal",
  32264. height: math.unit(3.5, "meters"),
  32265. default: true
  32266. },
  32267. ]
  32268. ))
  32269. characterMakers.push(() => makeCharacter(
  32270. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32271. {
  32272. front: {
  32273. height: math.unit(3 + 5/12, "feet"),
  32274. name: "Front",
  32275. image: {
  32276. source: "./media/characters/mauve/front.svg",
  32277. extra: 1126/1033,
  32278. bottom: 65/1191
  32279. }
  32280. },
  32281. side: {
  32282. height: math.unit(3 + 5/12, "feet"),
  32283. name: "Side",
  32284. image: {
  32285. source: "./media/characters/mauve/side.svg",
  32286. extra: 1089/1001,
  32287. bottom: 29/1118
  32288. }
  32289. },
  32290. back: {
  32291. height: math.unit(3 + 5/12, "feet"),
  32292. name: "Back",
  32293. image: {
  32294. source: "./media/characters/mauve/back.svg",
  32295. extra: 1173/1053,
  32296. bottom: 109/1282
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(3 + 5/12, "feet"),
  32304. default: true
  32305. },
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32310. {
  32311. front: {
  32312. height: math.unit(6 + 3/12, "feet"),
  32313. weight: math.unit(430, "lb"),
  32314. name: "Front",
  32315. image: {
  32316. source: "./media/characters/carlos/front.svg",
  32317. extra: 1964/1913,
  32318. bottom: 70/2034
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Normal",
  32325. height: math.unit(6 + 3/12, "feet"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32332. {
  32333. back: {
  32334. height: math.unit(5 + 10/12, "feet"),
  32335. weight: math.unit(200, "lb"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/jax/back.svg",
  32339. extra: 764/739,
  32340. bottom: 25/789
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(5 + 10/12, "feet"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(8, "feet"),
  32357. weight: math.unit(250, "lb"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/eikthynir/front.svg",
  32361. extra: 1332/1166,
  32362. bottom: 82/1414
  32363. }
  32364. },
  32365. back: {
  32366. height: math.unit(8, "feet"),
  32367. weight: math.unit(250, "lb"),
  32368. name: "Back",
  32369. image: {
  32370. source: "./media/characters/eikthynir/back.svg",
  32371. extra: 1342/1190,
  32372. bottom: 19/1361
  32373. }
  32374. },
  32375. dick: {
  32376. height: math.unit(2.35, "feet"),
  32377. name: "Dick",
  32378. image: {
  32379. source: "./media/characters/eikthynir/dick.svg"
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Normal",
  32386. height: math.unit(8, "feet"),
  32387. default: true
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32393. {
  32394. front: {
  32395. height: math.unit(99, "meters"),
  32396. weight: math.unit(13000, "tons"),
  32397. name: "Front",
  32398. image: {
  32399. source: "./media/characters/zlmos/front.svg",
  32400. extra: 2202/1992,
  32401. bottom: 315/2517
  32402. }
  32403. },
  32404. },
  32405. [
  32406. {
  32407. name: "Macro",
  32408. height: math.unit(99, "meters"),
  32409. default: true
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(6 + 5/12, "feet"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/purri/front.svg",
  32421. extra: 1698/1610,
  32422. bottom: 32/1730
  32423. }
  32424. },
  32425. frontAlt: {
  32426. height: math.unit(6 + 5/12, "feet"),
  32427. name: "Front (Alt)",
  32428. image: {
  32429. source: "./media/characters/purri/front-alt.svg",
  32430. extra: 450/420,
  32431. bottom: 26/476
  32432. }
  32433. },
  32434. boots: {
  32435. height: math.unit(5.5, "feet"),
  32436. name: "Boots",
  32437. image: {
  32438. source: "./media/characters/purri/boots.svg",
  32439. extra: 905/853,
  32440. bottom: 18/923
  32441. }
  32442. },
  32443. lying: {
  32444. height: math.unit(2, "feet"),
  32445. name: "Lying",
  32446. image: {
  32447. source: "./media/characters/purri/lying.svg",
  32448. extra: 940/843,
  32449. bottom: 146/1086
  32450. }
  32451. },
  32452. devious: {
  32453. height: math.unit(1.77, "feet"),
  32454. name: "Devious",
  32455. image: {
  32456. source: "./media/characters/purri/devious.svg",
  32457. extra: 1440/1155,
  32458. bottom: 147/1587
  32459. }
  32460. },
  32461. bean: {
  32462. height: math.unit(1.94, "feet"),
  32463. name: "Bean",
  32464. image: {
  32465. source: "./media/characters/purri/bean.svg"
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Micro",
  32472. height: math.unit(1, "mm")
  32473. },
  32474. {
  32475. name: "Normal",
  32476. height: math.unit(6 + 5/12, "feet"),
  32477. default: true
  32478. },
  32479. {
  32480. name: "Macro :3c",
  32481. height: math.unit(2, "miles")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32487. {
  32488. front: {
  32489. height: math.unit(6 + 2/12, "feet"),
  32490. weight: math.unit(250, "lb"),
  32491. name: "Front",
  32492. image: {
  32493. source: "./media/characters/moonlight/front.svg",
  32494. extra: 1044/908,
  32495. bottom: 56/1100
  32496. }
  32497. },
  32498. feral: {
  32499. height: math.unit(3 + 1/12, "feet"),
  32500. weight: math.unit(50, "kg"),
  32501. name: "Feral",
  32502. image: {
  32503. source: "./media/characters/moonlight/feral.svg",
  32504. extra: 3705/2791,
  32505. bottom: 145/3850
  32506. }
  32507. },
  32508. paw: {
  32509. height: math.unit(1, "feet"),
  32510. name: "Paw",
  32511. image: {
  32512. source: "./media/characters/moonlight/paw.svg"
  32513. }
  32514. },
  32515. paws: {
  32516. height: math.unit(0.98, "feet"),
  32517. name: "Paws",
  32518. image: {
  32519. source: "./media/characters/moonlight/paws.svg",
  32520. extra: 939/939,
  32521. bottom: 50/989
  32522. }
  32523. },
  32524. mouth: {
  32525. height: math.unit(0.48, "feet"),
  32526. name: "Mouth",
  32527. image: {
  32528. source: "./media/characters/moonlight/mouth.svg"
  32529. }
  32530. },
  32531. dick: {
  32532. height: math.unit(1.46, "feet"),
  32533. name: "Dick",
  32534. image: {
  32535. source: "./media/characters/moonlight/dick.svg"
  32536. }
  32537. },
  32538. },
  32539. [
  32540. {
  32541. name: "Normal",
  32542. height: math.unit(6 + 2/12, "feet"),
  32543. default: true
  32544. },
  32545. {
  32546. name: "Macro",
  32547. height: math.unit(300, "feet")
  32548. },
  32549. {
  32550. name: "Macro+",
  32551. height: math.unit(1, "mile")
  32552. },
  32553. {
  32554. name: "Mt. Moon",
  32555. height: math.unit(5, "miles")
  32556. },
  32557. {
  32558. name: "Megamacro",
  32559. height: math.unit(15, "miles")
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32565. {
  32566. back: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(150, "lb"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/sylen/back.svg",
  32572. extra: 1335/1273,
  32573. bottom: 107/1442
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(5 + 5/12, "feet")
  32581. },
  32582. {
  32583. name: "Megamacro",
  32584. height: math.unit(3, "miles"),
  32585. default: true
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32591. {
  32592. front: {
  32593. height: math.unit(6, "feet"),
  32594. weight: math.unit(190, "lb"),
  32595. name: "Front",
  32596. image: {
  32597. source: "./media/characters/huttser/front.svg",
  32598. extra: 1152/1058,
  32599. bottom: 23/1175
  32600. }
  32601. },
  32602. side: {
  32603. height: math.unit(6, "feet"),
  32604. weight: math.unit(190, "lb"),
  32605. name: "Side",
  32606. image: {
  32607. source: "./media/characters/huttser/side.svg",
  32608. extra: 1174/1065,
  32609. bottom: 18/1192
  32610. }
  32611. },
  32612. back: {
  32613. height: math.unit(6, "feet"),
  32614. weight: math.unit(190, "lb"),
  32615. name: "Back",
  32616. image: {
  32617. source: "./media/characters/huttser/back.svg",
  32618. extra: 1158/1056,
  32619. bottom: 12/1170
  32620. }
  32621. },
  32622. },
  32623. [
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32628. {
  32629. side: {
  32630. height: math.unit(12 + 9/12, "feet"),
  32631. weight: math.unit(15000, "lb"),
  32632. name: "Side",
  32633. image: {
  32634. source: "./media/characters/faan/side.svg",
  32635. extra: 2747/2697,
  32636. bottom: 0/2747
  32637. }
  32638. },
  32639. front: {
  32640. height: math.unit(12 + 9/12, "feet"),
  32641. weight: math.unit(15000, "lb"),
  32642. name: "Front",
  32643. image: {
  32644. source: "./media/characters/faan/front.svg",
  32645. extra: 607/571,
  32646. bottom: 24/631
  32647. }
  32648. },
  32649. head: {
  32650. height: math.unit(2.85, "feet"),
  32651. name: "Head",
  32652. image: {
  32653. source: "./media/characters/faan/head.svg"
  32654. }
  32655. },
  32656. headAlt: {
  32657. height: math.unit(3.13, "feet"),
  32658. name: "Head-alt",
  32659. image: {
  32660. source: "./media/characters/faan/head-alt.svg"
  32661. }
  32662. },
  32663. },
  32664. [
  32665. {
  32666. name: "Normal",
  32667. height: math.unit(12 + 9/12, "feet"),
  32668. default: true
  32669. },
  32670. ]
  32671. ))
  32672. characterMakers.push(() => makeCharacter(
  32673. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32674. {
  32675. front: {
  32676. height: math.unit(6, "feet"),
  32677. weight: math.unit(300, "lb"),
  32678. name: "Front",
  32679. image: {
  32680. source: "./media/characters/tanio/front.svg",
  32681. extra: 711/673,
  32682. bottom: 25/736
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Normal",
  32689. height: math.unit(6, "feet"),
  32690. default: true
  32691. },
  32692. ]
  32693. ))
  32694. characterMakers.push(() => makeCharacter(
  32695. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32696. {
  32697. front: {
  32698. height: math.unit(3, "inches"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/noboru/front.svg",
  32702. extra: 1039/932,
  32703. bottom: 18/1057
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Micro",
  32710. height: math.unit(3, "inches"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(1.85, "meters"),
  32720. weight: math.unit(80, "kg"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/daniel-barrett/front.svg",
  32724. extra: 355/337,
  32725. bottom: 9/364
  32726. }
  32727. },
  32728. },
  32729. [
  32730. {
  32731. name: "Pico",
  32732. height: math.unit(0.0433, "mm")
  32733. },
  32734. {
  32735. name: "Nano",
  32736. height: math.unit(1.5, "mm")
  32737. },
  32738. {
  32739. name: "Micro",
  32740. height: math.unit(5.3, "cm"),
  32741. default: true
  32742. },
  32743. {
  32744. name: "Normal",
  32745. height: math.unit(1.85, "meters")
  32746. },
  32747. {
  32748. name: "Macro",
  32749. height: math.unit(64.7, "meters")
  32750. },
  32751. {
  32752. name: "Megamacro",
  32753. height: math.unit(2.26, "km")
  32754. },
  32755. {
  32756. name: "Gigamacro",
  32757. height: math.unit(79, "km")
  32758. },
  32759. {
  32760. name: "Teramacro",
  32761. height: math.unit(2765, "km")
  32762. },
  32763. {
  32764. name: "Petamacro",
  32765. height: math.unit(96678, "km")
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32771. {
  32772. front: {
  32773. height: math.unit(30, "meters"),
  32774. weight: math.unit(400, "tons"),
  32775. name: "Front",
  32776. image: {
  32777. source: "./media/characters/zeel/front.svg",
  32778. extra: 2599/2599,
  32779. bottom: 226/2825
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Macro",
  32786. height: math.unit(30, "meters"),
  32787. default: true
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32793. {
  32794. front: {
  32795. height: math.unit(6 + 7/12, "feet"),
  32796. weight: math.unit(210, "lb"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/tarn/front.svg",
  32800. extra: 3517/3220,
  32801. bottom: 91/3608
  32802. }
  32803. },
  32804. back: {
  32805. height: math.unit(6 + 7/12, "feet"),
  32806. weight: math.unit(210, "lb"),
  32807. name: "Back",
  32808. image: {
  32809. source: "./media/characters/tarn/back.svg",
  32810. extra: 3566/3241,
  32811. bottom: 34/3600
  32812. }
  32813. },
  32814. dick: {
  32815. height: math.unit(1.65, "feet"),
  32816. name: "Dick",
  32817. image: {
  32818. source: "./media/characters/tarn/dick.svg"
  32819. }
  32820. },
  32821. paw: {
  32822. height: math.unit(1.80, "feet"),
  32823. name: "Paw",
  32824. image: {
  32825. source: "./media/characters/tarn/paw.svg"
  32826. }
  32827. },
  32828. tongue: {
  32829. height: math.unit(0.97, "feet"),
  32830. name: "Tongue",
  32831. image: {
  32832. source: "./media/characters/tarn/tongue.svg"
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Micro",
  32839. height: math.unit(4, "inches")
  32840. },
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(6 + 7/12, "feet"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Macro",
  32848. height: math.unit(300, "feet")
  32849. },
  32850. ]
  32851. ))
  32852. characterMakers.push(() => makeCharacter(
  32853. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32854. {
  32855. front: {
  32856. height: math.unit(5 + 7/12, "feet"),
  32857. weight: math.unit(80, "kg"),
  32858. name: "Front",
  32859. image: {
  32860. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32861. extra: 3023/2865,
  32862. bottom: 33/3056
  32863. }
  32864. },
  32865. back: {
  32866. height: math.unit(5 + 7/12, "feet"),
  32867. weight: math.unit(80, "kg"),
  32868. name: "Back",
  32869. image: {
  32870. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32871. extra: 3020/2886,
  32872. bottom: 30/3050
  32873. }
  32874. },
  32875. dick: {
  32876. height: math.unit(0.98, "feet"),
  32877. name: "Dick",
  32878. image: {
  32879. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32880. }
  32881. },
  32882. anatomy: {
  32883. height: math.unit(2.86, "feet"),
  32884. name: "Anatomy",
  32885. image: {
  32886. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Really Small",
  32893. height: math.unit(2, "inches")
  32894. },
  32895. {
  32896. name: "Micro",
  32897. height: math.unit(5.583, "inches")
  32898. },
  32899. {
  32900. name: "Normal",
  32901. height: math.unit(5 + 7/12, "feet"),
  32902. default: true
  32903. },
  32904. {
  32905. name: "Macro",
  32906. height: math.unit(67, "feet")
  32907. },
  32908. {
  32909. name: "Megamacro",
  32910. height: math.unit(134, "feet")
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(9, "feet"),
  32919. weight: math.unit(120, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/sally/front.svg",
  32923. extra: 1506/1349,
  32924. bottom: 66/1572
  32925. }
  32926. },
  32927. },
  32928. [
  32929. {
  32930. name: "Normal",
  32931. height: math.unit(9, "feet"),
  32932. default: true
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32938. {
  32939. front: {
  32940. height: math.unit(8, "feet"),
  32941. weight: math.unit(900, "lb"),
  32942. name: "Front",
  32943. image: {
  32944. source: "./media/characters/owen/front.svg",
  32945. extra: 1761/1657,
  32946. bottom: 74/1835
  32947. }
  32948. },
  32949. side: {
  32950. height: math.unit(8, "feet"),
  32951. weight: math.unit(900, "lb"),
  32952. name: "Side",
  32953. image: {
  32954. source: "./media/characters/owen/side.svg",
  32955. extra: 1797/1734,
  32956. bottom: 30/1827
  32957. }
  32958. },
  32959. back: {
  32960. height: math.unit(8, "feet"),
  32961. weight: math.unit(900, "lb"),
  32962. name: "Back",
  32963. image: {
  32964. source: "./media/characters/owen/back.svg",
  32965. extra: 1796/1706,
  32966. bottom: 59/1855
  32967. }
  32968. },
  32969. maw: {
  32970. height: math.unit(1.76, "feet"),
  32971. name: "Maw",
  32972. image: {
  32973. source: "./media/characters/owen/maw.svg"
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Normal",
  32980. height: math.unit(8, "feet"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32987. {
  32988. front: {
  32989. height: math.unit(4, "feet"),
  32990. weight: math.unit(400, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/ryth/front.svg",
  32994. extra: 1920/1748,
  32995. bottom: 42/1962
  32996. }
  32997. },
  32998. back: {
  32999. height: math.unit(4, "feet"),
  33000. weight: math.unit(400, "lb"),
  33001. name: "Back",
  33002. image: {
  33003. source: "./media/characters/ryth/back.svg",
  33004. extra: 1897/1690,
  33005. bottom: 89/1986
  33006. }
  33007. },
  33008. mouth: {
  33009. height: math.unit(1.39, "feet"),
  33010. name: "Mouth",
  33011. image: {
  33012. source: "./media/characters/ryth/mouth.svg"
  33013. }
  33014. },
  33015. tailmaw: {
  33016. height: math.unit(1.23, "feet"),
  33017. name: "Tailmaw",
  33018. image: {
  33019. source: "./media/characters/ryth/tailmaw.svg"
  33020. }
  33021. },
  33022. goia: {
  33023. height: math.unit(4, "meters"),
  33024. weight: math.unit(10800, "lb"),
  33025. name: "Goia",
  33026. image: {
  33027. source: "./media/characters/ryth/goia.svg",
  33028. extra: 745/640,
  33029. bottom: 107/852
  33030. }
  33031. },
  33032. goiaFront: {
  33033. height: math.unit(4, "meters"),
  33034. weight: math.unit(10800, "lb"),
  33035. name: "Goia (Front)",
  33036. image: {
  33037. source: "./media/characters/ryth/goia-front.svg",
  33038. extra: 750/586,
  33039. bottom: 114/864
  33040. }
  33041. },
  33042. goiaMaw: {
  33043. height: math.unit(5.55, "feet"),
  33044. name: "Goia Maw",
  33045. image: {
  33046. source: "./media/characters/ryth/goia-maw.svg"
  33047. }
  33048. },
  33049. goiaForepaw: {
  33050. height: math.unit(3.5, "feet"),
  33051. name: "Goia Forepaw",
  33052. image: {
  33053. source: "./media/characters/ryth/goia-forepaw.svg"
  33054. }
  33055. },
  33056. goiaHindpaw: {
  33057. height: math.unit(5.55, "feet"),
  33058. name: "Goia Hindpaw",
  33059. image: {
  33060. source: "./media/characters/ryth/goia-hindpaw.svg"
  33061. }
  33062. },
  33063. },
  33064. [
  33065. {
  33066. name: "Normal",
  33067. height: math.unit(4, "feet"),
  33068. default: true
  33069. },
  33070. ]
  33071. ))
  33072. characterMakers.push(() => makeCharacter(
  33073. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33074. {
  33075. front: {
  33076. height: math.unit(7, "feet"),
  33077. weight: math.unit(180, "lb"),
  33078. name: "Front",
  33079. image: {
  33080. source: "./media/characters/necrolance/front.svg",
  33081. extra: 1062/947,
  33082. bottom: 41/1103
  33083. }
  33084. },
  33085. back: {
  33086. height: math.unit(7, "feet"),
  33087. weight: math.unit(180, "lb"),
  33088. name: "Back",
  33089. image: {
  33090. source: "./media/characters/necrolance/back.svg",
  33091. extra: 1045/984,
  33092. bottom: 14/1059
  33093. }
  33094. },
  33095. wing: {
  33096. height: math.unit(2.67, "feet"),
  33097. name: "Wing",
  33098. image: {
  33099. source: "./media/characters/necrolance/wing.svg"
  33100. }
  33101. },
  33102. },
  33103. [
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(7, "feet"),
  33107. default: true
  33108. },
  33109. ]
  33110. ))
  33111. characterMakers.push(() => makeCharacter(
  33112. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33113. {
  33114. front: {
  33115. height: math.unit(76, "meters"),
  33116. weight: math.unit(30000, "tons"),
  33117. name: "Front",
  33118. image: {
  33119. source: "./media/characters/tyler/front.svg",
  33120. extra: 1640/1640,
  33121. bottom: 114/1754
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Macro",
  33128. height: math.unit(76, "meters"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(4 + 11/12, "feet"),
  33138. weight: math.unit(132, "lb"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/icey/front.svg",
  33142. extra: 2750/2550,
  33143. bottom: 33/2783
  33144. }
  33145. },
  33146. back: {
  33147. height: math.unit(4 + 11/12, "feet"),
  33148. weight: math.unit(132, "lb"),
  33149. name: "Back",
  33150. image: {
  33151. source: "./media/characters/icey/back.svg",
  33152. extra: 2624/2481,
  33153. bottom: 35/2659
  33154. }
  33155. },
  33156. },
  33157. [
  33158. {
  33159. name: "Normal",
  33160. height: math.unit(4 + 11/12, "feet"),
  33161. default: true
  33162. },
  33163. ]
  33164. ))
  33165. characterMakers.push(() => makeCharacter(
  33166. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33167. {
  33168. front: {
  33169. height: math.unit(100, "feet"),
  33170. weight: math.unit(0, "lb"),
  33171. name: "Front",
  33172. image: {
  33173. source: "./media/characters/smile/front.svg",
  33174. extra: 2983/2912,
  33175. bottom: 162/3145
  33176. }
  33177. },
  33178. back: {
  33179. height: math.unit(100, "feet"),
  33180. weight: math.unit(0, "lb"),
  33181. name: "Back",
  33182. image: {
  33183. source: "./media/characters/smile/back.svg",
  33184. extra: 3143/3031,
  33185. bottom: 91/3234
  33186. }
  33187. },
  33188. head: {
  33189. height: math.unit(26.3, "feet"),
  33190. weight: math.unit(0, "lb"),
  33191. name: "Head",
  33192. image: {
  33193. source: "./media/characters/smile/head.svg"
  33194. }
  33195. },
  33196. collar: {
  33197. height: math.unit(5.3, "feet"),
  33198. weight: math.unit(0, "lb"),
  33199. name: "Collar",
  33200. image: {
  33201. source: "./media/characters/smile/collar.svg"
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Macro",
  33208. height: math.unit(100, "feet"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33215. {
  33216. dragon: {
  33217. height: math.unit(26, "feet"),
  33218. weight: math.unit(36, "tons"),
  33219. name: "Dragon",
  33220. image: {
  33221. source: "./media/characters/arimphae/dragon.svg",
  33222. extra: 1574/983,
  33223. bottom: 357/1931
  33224. }
  33225. },
  33226. drake: {
  33227. height: math.unit(9, "feet"),
  33228. weight: math.unit(1.5, "tons"),
  33229. name: "Drake",
  33230. image: {
  33231. source: "./media/characters/arimphae/drake.svg",
  33232. extra: 1120/925,
  33233. bottom: 435/1555
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Small",
  33240. height: math.unit(26*5/9, "feet")
  33241. },
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(26, "feet"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(8 + 9/12, "feet"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/xander/front.svg",
  33257. extra: 1237/974,
  33258. bottom: 94/1331
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(8 + 9/12, "feet"),
  33266. default: true
  33267. },
  33268. {
  33269. name: "Gaze Grabber",
  33270. height: math.unit(13 + 8/12, "feet")
  33271. },
  33272. {
  33273. name: "Jaw Dropper",
  33274. height: math.unit(27, "feet")
  33275. },
  33276. {
  33277. name: "Show Stopper",
  33278. height: math.unit(136, "feet")
  33279. },
  33280. {
  33281. name: "Superstar",
  33282. height: math.unit(1.9e6, "miles")
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33288. {
  33289. side: {
  33290. height: math.unit(2100, "feet"),
  33291. name: "Side",
  33292. image: {
  33293. source: "./media/characters/osiris/side.svg",
  33294. extra: 1105/939,
  33295. bottom: 167/1272
  33296. }
  33297. },
  33298. },
  33299. [
  33300. {
  33301. name: "Macro",
  33302. height: math.unit(2100, "feet"),
  33303. default: true
  33304. },
  33305. ]
  33306. ))
  33307. characterMakers.push(() => makeCharacter(
  33308. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33309. {
  33310. front: {
  33311. height: math.unit(6 + 8/12, "feet"),
  33312. weight: math.unit(225, "lb"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/rhys-londe/front.svg",
  33316. extra: 2258/2141,
  33317. bottom: 188/2446
  33318. }
  33319. },
  33320. back: {
  33321. height: math.unit(6 + 8/12, "feet"),
  33322. weight: math.unit(225, "lb"),
  33323. name: "Back",
  33324. image: {
  33325. source: "./media/characters/rhys-londe/back.svg",
  33326. extra: 2237/2137,
  33327. bottom: 63/2300
  33328. }
  33329. },
  33330. frontNsfw: {
  33331. height: math.unit(6 + 8/12, "feet"),
  33332. weight: math.unit(225, "lb"),
  33333. name: "Front (NSFW)",
  33334. image: {
  33335. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33336. extra: 2258/2141,
  33337. bottom: 188/2446
  33338. }
  33339. },
  33340. backNsfw: {
  33341. height: math.unit(6 + 8/12, "feet"),
  33342. weight: math.unit(225, "lb"),
  33343. name: "Back (NSFW)",
  33344. image: {
  33345. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33346. extra: 2237/2137,
  33347. bottom: 63/2300
  33348. }
  33349. },
  33350. dick: {
  33351. height: math.unit(30, "inches"),
  33352. name: "Dick",
  33353. image: {
  33354. source: "./media/characters/rhys-londe/dick.svg"
  33355. }
  33356. },
  33357. maw: {
  33358. height: math.unit(1.6, "feet"),
  33359. name: "Maw",
  33360. image: {
  33361. source: "./media/characters/rhys-londe/maw.svg"
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(6 + 8/12, "feet"),
  33369. default: true
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33375. {
  33376. front: {
  33377. height: math.unit(3 + 10/12, "feet"),
  33378. weight: math.unit(90, "lb"),
  33379. name: "Front",
  33380. image: {
  33381. source: "./media/characters/taivas-ensim/front.svg",
  33382. extra: 1327/1216,
  33383. bottom: 96/1423
  33384. }
  33385. },
  33386. back: {
  33387. height: math.unit(3 + 10/12, "feet"),
  33388. weight: math.unit(90, "lb"),
  33389. name: "Back",
  33390. image: {
  33391. source: "./media/characters/taivas-ensim/back.svg",
  33392. extra: 1355/1247,
  33393. bottom: 11/1366
  33394. }
  33395. },
  33396. frontNsfw: {
  33397. height: math.unit(3 + 10/12, "feet"),
  33398. weight: math.unit(90, "lb"),
  33399. name: "Front (NSFW)",
  33400. image: {
  33401. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33402. extra: 1327/1216,
  33403. bottom: 96/1423
  33404. }
  33405. },
  33406. backNsfw: {
  33407. height: math.unit(3 + 10/12, "feet"),
  33408. weight: math.unit(90, "lb"),
  33409. name: "Back (NSFW)",
  33410. image: {
  33411. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33412. extra: 1355/1247,
  33413. bottom: 11/1366
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(3 + 10/12, "feet"),
  33421. default: true
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33427. {
  33428. front: {
  33429. height: math.unit(9 + 6/12, "feet"),
  33430. weight: math.unit(940, "lb"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/byliss/front.svg",
  33434. extra: 1327/1290,
  33435. bottom: 82/1409
  33436. }
  33437. },
  33438. back: {
  33439. height: math.unit(9 + 6/12, "feet"),
  33440. weight: math.unit(940, "lb"),
  33441. name: "Back",
  33442. image: {
  33443. source: "./media/characters/byliss/back.svg",
  33444. extra: 1376/1349,
  33445. bottom: 9/1385
  33446. }
  33447. },
  33448. frontNsfw: {
  33449. height: math.unit(9 + 6/12, "feet"),
  33450. weight: math.unit(940, "lb"),
  33451. name: "Front (NSFW)",
  33452. image: {
  33453. source: "./media/characters/byliss/front-nsfw.svg",
  33454. extra: 1327/1290,
  33455. bottom: 82/1409
  33456. }
  33457. },
  33458. backNsfw: {
  33459. height: math.unit(9 + 6/12, "feet"),
  33460. weight: math.unit(940, "lb"),
  33461. name: "Back (NSFW)",
  33462. image: {
  33463. source: "./media/characters/byliss/back-nsfw.svg",
  33464. extra: 1376/1349,
  33465. bottom: 9/1385
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(9 + 6/12, "feet"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(5 + 2/12, "feet"),
  33482. weight: math.unit(200, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/noraly/front.svg",
  33486. extra: 4985/4773,
  33487. bottom: 150/5135
  33488. }
  33489. },
  33490. full: {
  33491. height: math.unit(5 + 2/12, "feet"),
  33492. weight: math.unit(164, "lb"),
  33493. name: "Full",
  33494. image: {
  33495. source: "./media/characters/noraly/full.svg",
  33496. extra: 1114/1059,
  33497. bottom: 35/1149
  33498. }
  33499. },
  33500. fuller: {
  33501. height: math.unit(5 + 2/12, "feet"),
  33502. weight: math.unit(230, "lb"),
  33503. name: "Fuller",
  33504. image: {
  33505. source: "./media/characters/noraly/fuller.svg",
  33506. extra: 1114/1059,
  33507. bottom: 35/1149
  33508. }
  33509. },
  33510. fullest: {
  33511. height: math.unit(5 + 2/12, "feet"),
  33512. weight: math.unit(300, "lb"),
  33513. name: "Fullest",
  33514. image: {
  33515. source: "./media/characters/noraly/fullest.svg",
  33516. extra: 1114/1059,
  33517. bottom: 35/1149
  33518. }
  33519. },
  33520. },
  33521. [
  33522. {
  33523. name: "Normal",
  33524. height: math.unit(5 + 2/12, "feet"),
  33525. default: true
  33526. },
  33527. ]
  33528. ))
  33529. characterMakers.push(() => makeCharacter(
  33530. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33531. {
  33532. front: {
  33533. height: math.unit(5 + 2/12, "feet"),
  33534. weight: math.unit(210, "lb"),
  33535. name: "Front",
  33536. image: {
  33537. source: "./media/characters/pera/front.svg",
  33538. extra: 1560/1531,
  33539. bottom: 165/1725
  33540. }
  33541. },
  33542. back: {
  33543. height: math.unit(5 + 2/12, "feet"),
  33544. weight: math.unit(210, "lb"),
  33545. name: "Back",
  33546. image: {
  33547. source: "./media/characters/pera/back.svg",
  33548. extra: 1523/1493,
  33549. bottom: 152/1675
  33550. }
  33551. },
  33552. dick: {
  33553. height: math.unit(2.4, "feet"),
  33554. name: "Dick",
  33555. image: {
  33556. source: "./media/characters/pera/dick.svg"
  33557. }
  33558. },
  33559. },
  33560. [
  33561. {
  33562. name: "Normal",
  33563. height: math.unit(5 + 2/12, "feet"),
  33564. default: true
  33565. },
  33566. ]
  33567. ))
  33568. characterMakers.push(() => makeCharacter(
  33569. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33570. {
  33571. front: {
  33572. height: math.unit(12, "feet"),
  33573. weight: math.unit(3200, "lb"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/julian/front.svg",
  33577. extra: 2962/2701,
  33578. bottom: 184/3146
  33579. }
  33580. },
  33581. maw: {
  33582. height: math.unit(5.35, "feet"),
  33583. name: "Maw",
  33584. image: {
  33585. source: "./media/characters/julian/maw.svg"
  33586. }
  33587. },
  33588. paw: {
  33589. height: math.unit(3.07, "feet"),
  33590. name: "Paw",
  33591. image: {
  33592. source: "./media/characters/julian/paw.svg"
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Default",
  33599. height: math.unit(12, "feet"),
  33600. default: true
  33601. },
  33602. {
  33603. name: "Big",
  33604. height: math.unit(50, "feet")
  33605. },
  33606. {
  33607. name: "Really Big",
  33608. height: math.unit(1, "mile")
  33609. },
  33610. {
  33611. name: "Extremely Big",
  33612. height: math.unit(100, "miles")
  33613. },
  33614. {
  33615. name: "Planet Hugger",
  33616. height: math.unit(200, "megameters")
  33617. },
  33618. {
  33619. name: "Unreasonably Big",
  33620. height: math.unit(1e300, "meters")
  33621. },
  33622. ]
  33623. ))
  33624. characterMakers.push(() => makeCharacter(
  33625. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33626. {
  33627. solgooleo: {
  33628. height: math.unit(4, "meters"),
  33629. weight: math.unit(6000*1.5, "kg"),
  33630. volume: math.unit(6000, "liters"),
  33631. name: "Solgooleo",
  33632. image: {
  33633. source: "./media/characters/pi/solgooleo.svg",
  33634. extra: 388/331,
  33635. bottom: 29/417
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(4, "meters"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(8, "feet"),
  33652. weight: math.unit(4, "tons"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/shaun/front.svg",
  33656. extra: 503/495,
  33657. bottom: 20/523
  33658. }
  33659. },
  33660. back: {
  33661. height: math.unit(8, "feet"),
  33662. weight: math.unit(4, "tons"),
  33663. name: "Back",
  33664. image: {
  33665. source: "./media/characters/shaun/back.svg",
  33666. extra: 487/480,
  33667. bottom: 20/507
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Lorg",
  33674. height: math.unit(8, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33681. {
  33682. frontAnthro: {
  33683. height: math.unit(7, "feet"),
  33684. name: "Front",
  33685. image: {
  33686. source: "./media/characters/sini/front-anthro.svg",
  33687. extra: 726/678,
  33688. bottom: 35/761
  33689. },
  33690. form: "anthro",
  33691. default: true
  33692. },
  33693. backAnthro: {
  33694. height: math.unit(7, "feet"),
  33695. name: "Back",
  33696. image: {
  33697. source: "./media/characters/sini/back-anthro.svg",
  33698. extra: 743/701,
  33699. bottom: 12/755
  33700. },
  33701. form: "anthro",
  33702. },
  33703. frontAnthroNsfw: {
  33704. height: math.unit(7, "feet"),
  33705. name: "Front (NSFW)",
  33706. image: {
  33707. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33708. extra: 726/678,
  33709. bottom: 35/761
  33710. },
  33711. form: "anthro"
  33712. },
  33713. backAnthroNsfw: {
  33714. height: math.unit(7, "feet"),
  33715. name: "Back (NSFW)",
  33716. image: {
  33717. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33718. extra: 743/701,
  33719. bottom: 12/755
  33720. },
  33721. form: "anthro",
  33722. },
  33723. mawAnthro: {
  33724. height: math.unit(2.14, "feet"),
  33725. name: "Maw",
  33726. image: {
  33727. source: "./media/characters/sini/maw-anthro.svg"
  33728. },
  33729. form: "anthro"
  33730. },
  33731. dick: {
  33732. height: math.unit(1.45, "feet"),
  33733. name: "Dick",
  33734. image: {
  33735. source: "./media/characters/sini/dick-anthro.svg"
  33736. },
  33737. form: "anthro"
  33738. },
  33739. feral: {
  33740. height: math.unit(16, "feet"),
  33741. name: "Feral",
  33742. image: {
  33743. source: "./media/characters/sini/feral.svg",
  33744. extra: 814/605,
  33745. bottom: 11/825
  33746. },
  33747. form: "feral",
  33748. default: true
  33749. },
  33750. feralNsfw: {
  33751. height: math.unit(16, "feet"),
  33752. name: "Feral (NSFW)",
  33753. image: {
  33754. source: "./media/characters/sini/feral-nsfw.svg",
  33755. extra: 814/605,
  33756. bottom: 11/825
  33757. },
  33758. form: "feral"
  33759. },
  33760. mawFeral: {
  33761. height: math.unit(5.66, "feet"),
  33762. name: "Maw",
  33763. image: {
  33764. source: "./media/characters/sini/maw-feral.svg"
  33765. },
  33766. form: "feral",
  33767. },
  33768. pawFeral: {
  33769. height: math.unit(5.17, "feet"),
  33770. name: "Paw",
  33771. image: {
  33772. source: "./media/characters/sini/paw-feral.svg"
  33773. },
  33774. form: "feral",
  33775. },
  33776. rumpFeral: {
  33777. height: math.unit(13.11, "feet"),
  33778. name: "Rump",
  33779. image: {
  33780. source: "./media/characters/sini/rump-feral.svg"
  33781. },
  33782. form: "feral",
  33783. },
  33784. dickFeral: {
  33785. height: math.unit(1, "feet"),
  33786. name: "Dick",
  33787. image: {
  33788. source: "./media/characters/sini/dick-feral.svg"
  33789. },
  33790. form: "feral",
  33791. },
  33792. eyeFeral: {
  33793. height: math.unit(1.23, "feet"),
  33794. name: "Eye",
  33795. image: {
  33796. source: "./media/characters/sini/eye-feral.svg"
  33797. },
  33798. form: "feral",
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(7, "feet"),
  33805. default: true,
  33806. form: "anthro"
  33807. },
  33808. {
  33809. name: "Normal",
  33810. height: math.unit(16, "feet"),
  33811. default: true,
  33812. form: "feral"
  33813. },
  33814. ],
  33815. {
  33816. "anthro": {
  33817. name: "Anthro",
  33818. default: true
  33819. },
  33820. "feral": {
  33821. name: "Feral",
  33822. }
  33823. }
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33827. {
  33828. side: {
  33829. height: math.unit(13, "meters"),
  33830. weight: math.unit(9072, "kg"),
  33831. name: "Side",
  33832. image: {
  33833. source: "./media/characters/raylldo/side.svg",
  33834. extra: 403/344,
  33835. bottom: 42/445
  33836. }
  33837. },
  33838. leaping: {
  33839. height: math.unit(12.3, "meters"),
  33840. weight: math.unit(9072, "kg"),
  33841. name: "Leaping",
  33842. image: {
  33843. source: "./media/characters/raylldo/leaping.svg",
  33844. extra: 470/249,
  33845. bottom: 13/483
  33846. }
  33847. },
  33848. flying: {
  33849. height: math.unit(18, "meters"),
  33850. weight: math.unit(9072, "kg"),
  33851. name: "Flying",
  33852. image: {
  33853. source: "./media/characters/raylldo/flying.svg"
  33854. }
  33855. },
  33856. head: {
  33857. height: math.unit(5.85, "meters"),
  33858. name: "Head",
  33859. image: {
  33860. source: "./media/characters/raylldo/head.svg"
  33861. }
  33862. },
  33863. maw: {
  33864. height: math.unit(5.32, "meters"),
  33865. name: "Maw",
  33866. image: {
  33867. source: "./media/characters/raylldo/maw.svg"
  33868. }
  33869. },
  33870. eye: {
  33871. height: math.unit(0.54, "meters"),
  33872. name: "Eye",
  33873. image: {
  33874. source: "./media/characters/raylldo/eye.svg"
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(13, "meters"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33888. {
  33889. anthroFront: {
  33890. height: math.unit(9, "feet"),
  33891. weight: math.unit(600, "lb"),
  33892. name: "Anthro (Front)",
  33893. image: {
  33894. source: "./media/characters/glint/anthro-front.svg",
  33895. extra: 1097/1018,
  33896. bottom: 28/1125
  33897. }
  33898. },
  33899. anthroBack: {
  33900. height: math.unit(9, "feet"),
  33901. weight: math.unit(600, "lb"),
  33902. name: "Anthro (Back)",
  33903. image: {
  33904. source: "./media/characters/glint/anthro-back.svg",
  33905. extra: 1154/997,
  33906. bottom: 36/1190
  33907. }
  33908. },
  33909. feral: {
  33910. height: math.unit(11, "feet"),
  33911. weight: math.unit(50000, "lb"),
  33912. name: "Feral",
  33913. image: {
  33914. source: "./media/characters/glint/feral.svg",
  33915. extra: 3035/1585,
  33916. bottom: 1169/4204
  33917. }
  33918. },
  33919. dickAnthro: {
  33920. height: math.unit(0.7, "meters"),
  33921. name: "Dick (Anthro)",
  33922. image: {
  33923. source: "./media/characters/glint/dick-anthro.svg"
  33924. }
  33925. },
  33926. dickFeral: {
  33927. height: math.unit(2.65, "meters"),
  33928. name: "Dick (Feral)",
  33929. image: {
  33930. source: "./media/characters/glint/dick-feral.svg"
  33931. }
  33932. },
  33933. slitHidden: {
  33934. height: math.unit(5.85, "meters"),
  33935. name: "Slit (Hidden)",
  33936. image: {
  33937. source: "./media/characters/glint/slit-hidden.svg"
  33938. }
  33939. },
  33940. slitErect: {
  33941. height: math.unit(5.85, "meters"),
  33942. name: "Slit (Erect)",
  33943. image: {
  33944. source: "./media/characters/glint/slit-erect.svg"
  33945. }
  33946. },
  33947. mawAnthro: {
  33948. height: math.unit(0.63, "meters"),
  33949. name: "Maw (Anthro)",
  33950. image: {
  33951. source: "./media/characters/glint/maw.svg"
  33952. }
  33953. },
  33954. mawFeral: {
  33955. height: math.unit(2.89, "meters"),
  33956. name: "Maw (Feral)",
  33957. image: {
  33958. source: "./media/characters/glint/maw.svg"
  33959. }
  33960. },
  33961. },
  33962. [
  33963. {
  33964. name: "Normal",
  33965. height: math.unit(9, "feet"),
  33966. default: true
  33967. },
  33968. ]
  33969. ))
  33970. characterMakers.push(() => makeCharacter(
  33971. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33972. {
  33973. side: {
  33974. height: math.unit(15, "feet"),
  33975. weight: math.unit(5000, "kg"),
  33976. name: "Side",
  33977. image: {
  33978. source: "./media/characters/kairne/side.svg",
  33979. extra: 979/811,
  33980. bottom: 13/992
  33981. }
  33982. },
  33983. front: {
  33984. height: math.unit(15, "feet"),
  33985. weight: math.unit(5000, "kg"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/kairne/front.svg",
  33989. extra: 908/814,
  33990. bottom: 26/934
  33991. }
  33992. },
  33993. sideNsfw: {
  33994. height: math.unit(15, "feet"),
  33995. weight: math.unit(5000, "kg"),
  33996. name: "Side (NSFW)",
  33997. image: {
  33998. source: "./media/characters/kairne/side-nsfw.svg",
  33999. extra: 979/811,
  34000. bottom: 13/992
  34001. }
  34002. },
  34003. frontNsfw: {
  34004. height: math.unit(15, "feet"),
  34005. weight: math.unit(5000, "kg"),
  34006. name: "Front (NSFW)",
  34007. image: {
  34008. source: "./media/characters/kairne/front-nsfw.svg",
  34009. extra: 908/814,
  34010. bottom: 26/934
  34011. }
  34012. },
  34013. dickCaged: {
  34014. height: math.unit(0.65, "meters"),
  34015. name: "Dick-caged",
  34016. image: {
  34017. source: "./media/characters/kairne/dick-caged.svg"
  34018. }
  34019. },
  34020. dick: {
  34021. height: math.unit(0.79, "meters"),
  34022. name: "Dick",
  34023. image: {
  34024. source: "./media/characters/kairne/dick.svg"
  34025. }
  34026. },
  34027. genitals: {
  34028. height: math.unit(1.29, "meters"),
  34029. name: "Genitals",
  34030. image: {
  34031. source: "./media/characters/kairne/genitals.svg"
  34032. }
  34033. },
  34034. maw: {
  34035. height: math.unit(1.73, "meters"),
  34036. name: "Maw",
  34037. image: {
  34038. source: "./media/characters/kairne/maw.svg"
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(15, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(5 + 8/12, "feet"),
  34055. weight: math.unit(139, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/biscuit-jackal/front.svg",
  34059. extra: 2106/1961,
  34060. bottom: 58/2164
  34061. }
  34062. },
  34063. back: {
  34064. height: math.unit(5 + 8/12, "feet"),
  34065. weight: math.unit(139, "lb"),
  34066. name: "Back",
  34067. image: {
  34068. source: "./media/characters/biscuit-jackal/back.svg",
  34069. extra: 2132/1976,
  34070. bottom: 57/2189
  34071. }
  34072. },
  34073. werejackal: {
  34074. height: math.unit(6 + 3/12, "feet"),
  34075. weight: math.unit(188, "lb"),
  34076. name: "Werejackal",
  34077. image: {
  34078. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34079. extra: 2373/2178,
  34080. bottom: 53/2426
  34081. }
  34082. },
  34083. },
  34084. [
  34085. {
  34086. name: "Normal",
  34087. height: math.unit(5 + 8/12, "feet"),
  34088. default: true
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34094. {
  34095. front: {
  34096. height: math.unit(140, "cm"),
  34097. weight: math.unit(45, "kg"),
  34098. name: "Front",
  34099. image: {
  34100. source: "./media/characters/tayra-white/front.svg",
  34101. extra: 2229/2192,
  34102. bottom: 75/2304
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(140, "cm"),
  34110. default: true
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34116. {
  34117. front: {
  34118. height: math.unit(4 + 5/12, "feet"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/scoop/front.svg",
  34122. extra: 1257/1136,
  34123. bottom: 69/1326
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(4 + 5/12, "feet"),
  34128. name: "Back",
  34129. image: {
  34130. source: "./media/characters/scoop/back.svg",
  34131. extra: 1321/1152,
  34132. bottom: 32/1353
  34133. }
  34134. },
  34135. maw: {
  34136. height: math.unit(0.68, "feet"),
  34137. name: "Maw",
  34138. image: {
  34139. source: "./media/characters/scoop/maw.svg"
  34140. }
  34141. },
  34142. },
  34143. [
  34144. {
  34145. name: "Really Small",
  34146. height: math.unit(1, "mm")
  34147. },
  34148. {
  34149. name: "Micro",
  34150. height: math.unit(1, "inch")
  34151. },
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(4 + 5/12, "feet"),
  34155. default: true
  34156. },
  34157. {
  34158. name: "Macro",
  34159. height: math.unit(200, "feet")
  34160. },
  34161. {
  34162. name: "Megamacro",
  34163. height: math.unit(3240, "feet")
  34164. },
  34165. {
  34166. name: "Teramacro",
  34167. height: math.unit(2500, "miles")
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(15 + 7/12, "feet"),
  34176. weight: math.unit(1150, "tons"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/saphinara/front.svg",
  34180. extra: 1837/1643,
  34181. bottom: 84/1921
  34182. },
  34183. form: "normal",
  34184. default: true
  34185. },
  34186. side: {
  34187. height: math.unit(15 + 7/12, "feet"),
  34188. weight: math.unit(1150, "tons"),
  34189. name: "Side",
  34190. image: {
  34191. source: "./media/characters/saphinara/side.svg",
  34192. extra: 605/547,
  34193. bottom: 6/611
  34194. },
  34195. form: "normal"
  34196. },
  34197. back: {
  34198. height: math.unit(15 + 7/12, "feet"),
  34199. weight: math.unit(1150, "tons"),
  34200. name: "Back",
  34201. image: {
  34202. source: "./media/characters/saphinara/back.svg",
  34203. extra: 591/531,
  34204. bottom: 13/604
  34205. },
  34206. form: "normal"
  34207. },
  34208. frontTail: {
  34209. height: math.unit(15 + 7/12, "feet"),
  34210. weight: math.unit(1150, "tons"),
  34211. name: "Front (Full Tail)",
  34212. image: {
  34213. source: "./media/characters/saphinara/front-tail.svg",
  34214. extra: 2256/1630,
  34215. bottom: 261/2517
  34216. },
  34217. form: "normal"
  34218. },
  34219. insides: {
  34220. height: math.unit(11.92, "feet"),
  34221. name: "Insides",
  34222. image: {
  34223. source: "./media/characters/saphinara/insides.svg"
  34224. },
  34225. form: "normal"
  34226. },
  34227. head: {
  34228. height: math.unit(4.17, "feet"),
  34229. name: "Head",
  34230. image: {
  34231. source: "./media/characters/saphinara/head.svg"
  34232. },
  34233. form: "normal"
  34234. },
  34235. tongue: {
  34236. height: math.unit(4.60, "feet"),
  34237. name: "Tongue",
  34238. image: {
  34239. source: "./media/characters/saphinara/tongue.svg"
  34240. },
  34241. form: "normal"
  34242. },
  34243. headEnraged: {
  34244. height: math.unit(5.55, "feet"),
  34245. name: "Head (Enraged)",
  34246. image: {
  34247. source: "./media/characters/saphinara/head-enraged.svg"
  34248. },
  34249. form: "normal"
  34250. },
  34251. wings: {
  34252. height: math.unit(11.95, "feet"),
  34253. name: "Wings",
  34254. image: {
  34255. source: "./media/characters/saphinara/wings.svg"
  34256. },
  34257. form: "normal"
  34258. },
  34259. feathers: {
  34260. height: math.unit(8.92, "feet"),
  34261. name: "Feathers",
  34262. image: {
  34263. source: "./media/characters/saphinara/feathers.svg"
  34264. },
  34265. form: "normal"
  34266. },
  34267. shackles: {
  34268. height: math.unit(2, "feet"),
  34269. name: "Shackles",
  34270. image: {
  34271. source: "./media/characters/saphinara/shackles.svg"
  34272. },
  34273. form: "normal"
  34274. },
  34275. eyes: {
  34276. height: math.unit(1.331, "feet"),
  34277. name: "Eyes",
  34278. image: {
  34279. source: "./media/characters/saphinara/eyes.svg"
  34280. },
  34281. form: "normal"
  34282. },
  34283. eyesEnraged: {
  34284. height: math.unit(1.331, "feet"),
  34285. name: "Eyes (Enraged)",
  34286. image: {
  34287. source: "./media/characters/saphinara/eyes-enraged.svg"
  34288. },
  34289. form: "normal"
  34290. },
  34291. trueFormSide: {
  34292. height: math.unit(200, "feet"),
  34293. weight: math.unit(1e7, "tons"),
  34294. name: "Side",
  34295. image: {
  34296. source: "./media/characters/saphinara/true-form-side.svg",
  34297. extra: 1399/770,
  34298. bottom: 97/1496
  34299. },
  34300. form: "true-form",
  34301. default: true
  34302. },
  34303. trueFormMaw: {
  34304. height: math.unit(71.5, "feet"),
  34305. name: "Maw",
  34306. image: {
  34307. source: "./media/characters/saphinara/true-form-maw.svg",
  34308. extra: 2302/1453,
  34309. bottom: 0/2302
  34310. },
  34311. form: "true-form"
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal",
  34317. height: math.unit(15 + 7/12, "feet"),
  34318. default: true,
  34319. form: "normal"
  34320. },
  34321. {
  34322. name: "Angry",
  34323. height: math.unit(30 + 6/12, "feet"),
  34324. form: "normal"
  34325. },
  34326. {
  34327. name: "Enraged",
  34328. height: math.unit(102 + 1/12, "feet"),
  34329. form: "normal"
  34330. },
  34331. {
  34332. name: "True",
  34333. height: math.unit(200, "feet"),
  34334. default: true,
  34335. form: "true-form"
  34336. }
  34337. ],
  34338. {
  34339. "normal": {
  34340. name: "Normal",
  34341. default: true
  34342. },
  34343. "true-form": {
  34344. name: "True Form"
  34345. }
  34346. }
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(6 + 8/12, "feet"),
  34353. weight: math.unit(300, "lb"),
  34354. name: "Front",
  34355. image: {
  34356. source: "./media/characters/jrain/front.svg",
  34357. extra: 3039/2865,
  34358. bottom: 399/3438
  34359. }
  34360. },
  34361. back: {
  34362. height: math.unit(6 + 8/12, "feet"),
  34363. weight: math.unit(300, "lb"),
  34364. name: "Back",
  34365. image: {
  34366. source: "./media/characters/jrain/back.svg",
  34367. extra: 3089/2938,
  34368. bottom: 172/3261
  34369. }
  34370. },
  34371. head: {
  34372. height: math.unit(2.14, "feet"),
  34373. name: "Head",
  34374. image: {
  34375. source: "./media/characters/jrain/head.svg"
  34376. }
  34377. },
  34378. maw: {
  34379. height: math.unit(1.77, "feet"),
  34380. name: "Maw",
  34381. image: {
  34382. source: "./media/characters/jrain/maw.svg"
  34383. }
  34384. },
  34385. leftHand: {
  34386. height: math.unit(1.1, "feet"),
  34387. name: "Left Hand",
  34388. image: {
  34389. source: "./media/characters/jrain/left-hand.svg"
  34390. }
  34391. },
  34392. rightHand: {
  34393. height: math.unit(1.1, "feet"),
  34394. name: "Right Hand",
  34395. image: {
  34396. source: "./media/characters/jrain/right-hand.svg"
  34397. }
  34398. },
  34399. eye: {
  34400. height: math.unit(0.35, "feet"),
  34401. name: "Eye",
  34402. image: {
  34403. source: "./media/characters/jrain/eye.svg"
  34404. }
  34405. },
  34406. },
  34407. [
  34408. {
  34409. name: "Normal",
  34410. height: math.unit(6 + 8/12, "feet"),
  34411. default: true
  34412. },
  34413. {
  34414. name: "Casually Large",
  34415. height: math.unit(25, "feet")
  34416. },
  34417. {
  34418. name: "Giant",
  34419. height: math.unit(100, "feet")
  34420. },
  34421. {
  34422. name: "Kaiju",
  34423. height: math.unit(300, "feet")
  34424. },
  34425. ]
  34426. ))
  34427. characterMakers.push(() => makeCharacter(
  34428. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34429. {
  34430. dragon: {
  34431. height: math.unit(5, "meters"),
  34432. name: "Dragon",
  34433. image: {
  34434. source: "./media/characters/sabrina/dragon.svg",
  34435. extra: 3670 / 2365,
  34436. bottom: 333 / 4003
  34437. }
  34438. },
  34439. gryphon: {
  34440. height: math.unit(3, "meters"),
  34441. name: "Gryphon",
  34442. image: {
  34443. source: "./media/characters/sabrina/gryphon.svg",
  34444. extra: 1576 / 945,
  34445. bottom: 71 / 1647
  34446. }
  34447. },
  34448. snake: {
  34449. height: math.unit(12, "meters"),
  34450. name: "Snake",
  34451. image: {
  34452. source: "./media/characters/sabrina/snake.svg",
  34453. extra: 1758 / 1320,
  34454. bottom: 186 / 1944
  34455. }
  34456. },
  34457. collar: {
  34458. height: math.unit(1.86, "meters"),
  34459. name: "Collar",
  34460. image: {
  34461. source: "./media/characters/sabrina/collar.svg"
  34462. }
  34463. },
  34464. eye: {
  34465. height: math.unit(0.53, "meters"),
  34466. name: "Eye",
  34467. image: {
  34468. source: "./media/characters/sabrina/eye.svg"
  34469. }
  34470. },
  34471. foot: {
  34472. height: math.unit(1.86, "meters"),
  34473. name: "Foot",
  34474. image: {
  34475. source: "./media/characters/sabrina/foot.svg"
  34476. }
  34477. },
  34478. hand: {
  34479. height: math.unit(1.32, "meters"),
  34480. name: "Hand",
  34481. image: {
  34482. source: "./media/characters/sabrina/hand.svg"
  34483. }
  34484. },
  34485. head: {
  34486. height: math.unit(2.44, "meters"),
  34487. name: "Head",
  34488. image: {
  34489. source: "./media/characters/sabrina/head.svg"
  34490. }
  34491. },
  34492. headAngry: {
  34493. height: math.unit(2.44, "meters"),
  34494. name: "Head (Angry))",
  34495. image: {
  34496. source: "./media/characters/sabrina/head-angry.svg"
  34497. }
  34498. },
  34499. maw: {
  34500. height: math.unit(1.65, "meters"),
  34501. name: "Maw",
  34502. image: {
  34503. source: "./media/characters/sabrina/maw.svg"
  34504. }
  34505. },
  34506. spikes: {
  34507. height: math.unit(1.69, "meters"),
  34508. name: "Spikes",
  34509. image: {
  34510. source: "./media/characters/sabrina/spikes.svg"
  34511. }
  34512. },
  34513. stomach: {
  34514. height: math.unit(1.15, "meters"),
  34515. name: "Stomach",
  34516. image: {
  34517. source: "./media/characters/sabrina/stomach.svg"
  34518. }
  34519. },
  34520. tongue: {
  34521. height: math.unit(1.27, "meters"),
  34522. name: "Tongue",
  34523. image: {
  34524. source: "./media/characters/sabrina/tongue.svg"
  34525. }
  34526. },
  34527. wingDorsal: {
  34528. height: math.unit(4.85, "meters"),
  34529. name: "Wing (Dorsal)",
  34530. image: {
  34531. source: "./media/characters/sabrina/wing-dorsal.svg"
  34532. }
  34533. },
  34534. wingVentral: {
  34535. height: math.unit(4.85, "meters"),
  34536. name: "Wing (Ventral)",
  34537. image: {
  34538. source: "./media/characters/sabrina/wing-ventral.svg"
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(5, "meters"),
  34546. default: true
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34552. {
  34553. frontMaid: {
  34554. height: math.unit(5 + 5/12, "feet"),
  34555. weight: math.unit(130, "lb"),
  34556. name: "Front (Maid)",
  34557. image: {
  34558. source: "./media/characters/midnight-tales/front-maid.svg",
  34559. extra: 489/454,
  34560. bottom: 61/550
  34561. }
  34562. },
  34563. frontFormal: {
  34564. height: math.unit(5 + 5/12, "feet"),
  34565. weight: math.unit(130, "lb"),
  34566. name: "Front (Formal)",
  34567. image: {
  34568. source: "./media/characters/midnight-tales/front-formal.svg",
  34569. extra: 489/454,
  34570. bottom: 61/550
  34571. }
  34572. },
  34573. back: {
  34574. height: math.unit(5 + 5/12, "feet"),
  34575. weight: math.unit(130, "lb"),
  34576. name: "Back",
  34577. image: {
  34578. source: "./media/characters/midnight-tales/back.svg",
  34579. extra: 498/456,
  34580. bottom: 33/531
  34581. }
  34582. },
  34583. frontBeast: {
  34584. height: math.unit(40, "feet"),
  34585. weight: math.unit(64000, "lb"),
  34586. name: "Front (Beast)",
  34587. image: {
  34588. source: "./media/characters/midnight-tales/front-beast.svg",
  34589. extra: 927/860,
  34590. bottom: 53/980
  34591. }
  34592. },
  34593. backBeast: {
  34594. height: math.unit(40, "feet"),
  34595. weight: math.unit(64000, "lb"),
  34596. name: "Back (Beast)",
  34597. image: {
  34598. source: "./media/characters/midnight-tales/back-beast.svg",
  34599. extra: 929/855,
  34600. bottom: 16/945
  34601. }
  34602. },
  34603. footBeast: {
  34604. height: math.unit(6.7, "feet"),
  34605. name: "Foot (Beast)",
  34606. image: {
  34607. source: "./media/characters/midnight-tales/foot-beast.svg"
  34608. }
  34609. },
  34610. headBeast: {
  34611. height: math.unit(8, "feet"),
  34612. name: "Head (Beast)",
  34613. image: {
  34614. source: "./media/characters/midnight-tales/head-beast.svg"
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(5 + 5 / 12, "feet"),
  34622. default: true
  34623. },
  34624. {
  34625. name: "Macro",
  34626. height: math.unit(25, "feet")
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(5 + 10/12, "feet"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/argon/front.svg",
  34638. extra: 2009/1935,
  34639. bottom: 118/2127
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(5 + 10/12, "feet"),
  34644. name: "Back",
  34645. image: {
  34646. source: "./media/characters/argon/back.svg",
  34647. extra: 2047/1992,
  34648. bottom: 20/2067
  34649. }
  34650. },
  34651. frontDressed: {
  34652. height: math.unit(5 + 10/12, "feet"),
  34653. name: "Front (Dressed)",
  34654. image: {
  34655. source: "./media/characters/argon/front-dressed.svg",
  34656. extra: 2009/1935,
  34657. bottom: 118/2127
  34658. }
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(5 + 10/12, "feet"),
  34665. default: true
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34671. {
  34672. front: {
  34673. height: math.unit(8 + 6/12, "feet"),
  34674. weight: math.unit(1150, "lb"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/kichi/front.svg",
  34678. extra: 1267/1164,
  34679. bottom: 61/1328
  34680. }
  34681. },
  34682. back: {
  34683. height: math.unit(8 + 6/12, "feet"),
  34684. weight: math.unit(1150, "lb"),
  34685. name: "Back",
  34686. image: {
  34687. source: "./media/characters/kichi/back.svg",
  34688. extra: 1273/1166,
  34689. bottom: 33/1306
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(8 + 6/12, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(6, "feet"),
  34706. weight: math.unit(210, "lb"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/manetel-greyscale/front.svg",
  34710. extra: 350/312,
  34711. bottom: 8/358
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Micro",
  34718. height: math.unit(2, "inches")
  34719. },
  34720. {
  34721. name: "Normal",
  34722. height: math.unit(6, "feet"),
  34723. default: true
  34724. },
  34725. {
  34726. name: "Minimacro",
  34727. height: math.unit(17, "feet")
  34728. },
  34729. {
  34730. name: "Macro",
  34731. height: math.unit(117, "feet")
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34737. {
  34738. side: {
  34739. height: math.unit(5 + 1/12, "feet"),
  34740. weight: math.unit(418, "lb"),
  34741. name: "Side",
  34742. image: {
  34743. source: "./media/characters/softpurr/side.svg",
  34744. extra: 1993/1945,
  34745. bottom: 134/2127
  34746. }
  34747. },
  34748. front: {
  34749. height: math.unit(5 + 1/12, "feet"),
  34750. weight: math.unit(418, "lb"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/softpurr/front.svg",
  34754. extra: 1950/1856,
  34755. bottom: 174/2124
  34756. }
  34757. },
  34758. paw: {
  34759. height: math.unit(1, "feet"),
  34760. name: "Paw",
  34761. image: {
  34762. source: "./media/characters/softpurr/paw.svg"
  34763. }
  34764. },
  34765. },
  34766. [
  34767. {
  34768. name: "Normal",
  34769. height: math.unit(5 + 1/12, "feet"),
  34770. default: true
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(260, "meters"),
  34779. name: "Front",
  34780. image: {
  34781. source: "./media/characters/anahita/front.svg",
  34782. extra: 665/635,
  34783. bottom: 89/754
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Macro",
  34790. height: math.unit(260, "meters"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34797. {
  34798. front: {
  34799. height: math.unit(4 + 10/12, "feet"),
  34800. weight: math.unit(160, "lb"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/chip-mouse/front.svg",
  34804. extra: 3528/3408,
  34805. bottom: 0/3528
  34806. }
  34807. },
  34808. frontNsfw: {
  34809. height: math.unit(4 + 10/12, "feet"),
  34810. weight: math.unit(160, "lb"),
  34811. name: "Front (NSFW)",
  34812. image: {
  34813. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34814. extra: 3528/3408,
  34815. bottom: 0/3528
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Normal",
  34822. height: math.unit(4 + 10/12, "feet"),
  34823. default: true
  34824. },
  34825. ]
  34826. ))
  34827. characterMakers.push(() => makeCharacter(
  34828. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34829. {
  34830. side: {
  34831. height: math.unit(10, "feet"),
  34832. weight: math.unit(14000, "lb"),
  34833. name: "Side",
  34834. image: {
  34835. source: "./media/characters/kremm/side.svg",
  34836. extra: 1390/1053,
  34837. bottom: 90/1480
  34838. }
  34839. },
  34840. gut: {
  34841. height: math.unit(5.8, "feet"),
  34842. name: "Gut",
  34843. image: {
  34844. source: "./media/characters/kremm/gut.svg"
  34845. }
  34846. },
  34847. ass: {
  34848. height: math.unit(6.1, "feet"),
  34849. name: "Ass",
  34850. image: {
  34851. source: "./media/characters/kremm/ass.svg"
  34852. }
  34853. },
  34854. jaws: {
  34855. height: math.unit(2.2, "feet"),
  34856. name: "Jaws",
  34857. image: {
  34858. source: "./media/characters/kremm/jaws.svg"
  34859. }
  34860. },
  34861. dick: {
  34862. height: math.unit(4.26, "feet"),
  34863. name: "Dick",
  34864. image: {
  34865. source: "./media/characters/kremm/dick.svg"
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(10, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(30, "stories"),
  34882. name: "Front",
  34883. image: {
  34884. source: "./media/characters/kai/front.svg",
  34885. extra: 1892/1718,
  34886. bottom: 162/2054
  34887. }
  34888. },
  34889. },
  34890. [
  34891. {
  34892. name: "Macro",
  34893. height: math.unit(30, "stories"),
  34894. default: true
  34895. },
  34896. ]
  34897. ))
  34898. characterMakers.push(() => makeCharacter(
  34899. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34900. {
  34901. front: {
  34902. height: math.unit(6 + 4/12, "feet"),
  34903. weight: math.unit(145, "lb"),
  34904. name: "Front",
  34905. image: {
  34906. source: "./media/characters/sykes/front.svg",
  34907. extra: 1321 / 1187,
  34908. bottom: 66 / 1387
  34909. }
  34910. },
  34911. back: {
  34912. height: math.unit(6 + 4/12, "feet"),
  34913. weight: math.unit(145, "lb"),
  34914. name: "Back",
  34915. image: {
  34916. source: "./media/characters/sykes/back.svg",
  34917. extra: 1326/1181,
  34918. bottom: 31/1357
  34919. }
  34920. },
  34921. traditionalOutfit: {
  34922. height: math.unit(6 + 4/12, "feet"),
  34923. weight: math.unit(145, "lb"),
  34924. name: "Traditional Outfit",
  34925. image: {
  34926. source: "./media/characters/sykes/traditional-outfit.svg",
  34927. extra: 1321 / 1187,
  34928. bottom: 66 / 1387
  34929. }
  34930. },
  34931. adventureOutfit: {
  34932. height: math.unit(6 + 4/12, "feet"),
  34933. weight: math.unit(145, "lb"),
  34934. name: "Adventure Outfit",
  34935. image: {
  34936. source: "./media/characters/sykes/adventure-outfit.svg",
  34937. extra: 1321 / 1187,
  34938. bottom: 66 / 1387
  34939. }
  34940. },
  34941. handLeft: {
  34942. height: math.unit(0.9, "feet"),
  34943. name: "Hand (Left)",
  34944. image: {
  34945. source: "./media/characters/sykes/hand-left.svg"
  34946. }
  34947. },
  34948. handRight: {
  34949. height: math.unit(0.839, "feet"),
  34950. name: "Hand (Right)",
  34951. image: {
  34952. source: "./media/characters/sykes/hand-right.svg"
  34953. }
  34954. },
  34955. leftFoot: {
  34956. height: math.unit(1.2, "feet"),
  34957. name: "Foot (Left)",
  34958. image: {
  34959. source: "./media/characters/sykes/foot-left.svg"
  34960. }
  34961. },
  34962. rightFoot: {
  34963. height: math.unit(1.2, "feet"),
  34964. name: "Foot (Right)",
  34965. image: {
  34966. source: "./media/characters/sykes/foot-right.svg"
  34967. }
  34968. },
  34969. maw: {
  34970. height: math.unit(1.93, "feet"),
  34971. name: "Maw",
  34972. image: {
  34973. source: "./media/characters/sykes/maw.svg"
  34974. }
  34975. },
  34976. teeth: {
  34977. height: math.unit(0.51, "feet"),
  34978. name: "Teeth",
  34979. image: {
  34980. source: "./media/characters/sykes/teeth.svg"
  34981. }
  34982. },
  34983. tongue: {
  34984. height: math.unit(2.13, "feet"),
  34985. name: "Tongue",
  34986. image: {
  34987. source: "./media/characters/sykes/tongue.svg"
  34988. }
  34989. },
  34990. uvula: {
  34991. height: math.unit(0.16, "feet"),
  34992. name: "Uvula",
  34993. image: {
  34994. source: "./media/characters/sykes/uvula.svg"
  34995. }
  34996. },
  34997. collar: {
  34998. height: math.unit(0.287, "feet"),
  34999. name: "Collar",
  35000. image: {
  35001. source: "./media/characters/sykes/collar.svg"
  35002. }
  35003. },
  35004. tail: {
  35005. height: math.unit(3.8, "feet"),
  35006. name: "Tail",
  35007. image: {
  35008. source: "./media/characters/sykes/tail.svg"
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Shrunken",
  35015. height: math.unit(5, "inches")
  35016. },
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(6 + 4 / 12, "feet"),
  35020. default: true
  35021. },
  35022. {
  35023. name: "Big",
  35024. height: math.unit(15, "feet")
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35030. {
  35031. front: {
  35032. height: math.unit(5 + 8/12, "feet"),
  35033. weight: math.unit(190, "lb"),
  35034. name: "Front",
  35035. image: {
  35036. source: "./media/characters/oven-otter/front.svg",
  35037. extra: 1809/1740,
  35038. bottom: 181/1990
  35039. }
  35040. },
  35041. back: {
  35042. height: math.unit(5 + 8/12, "feet"),
  35043. weight: math.unit(190, "lb"),
  35044. name: "Back",
  35045. image: {
  35046. source: "./media/characters/oven-otter/back.svg",
  35047. extra: 1709/1635,
  35048. bottom: 118/1827
  35049. }
  35050. },
  35051. hand: {
  35052. height: math.unit(1.07, "feet"),
  35053. name: "Hand",
  35054. image: {
  35055. source: "./media/characters/oven-otter/hand.svg"
  35056. }
  35057. },
  35058. beans: {
  35059. height: math.unit(1.74, "feet"),
  35060. name: "Beans",
  35061. image: {
  35062. source: "./media/characters/oven-otter/beans.svg"
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Micro",
  35069. height: math.unit(0.5, "inches")
  35070. },
  35071. {
  35072. name: "Normal",
  35073. height: math.unit(5 + 8/12, "feet"),
  35074. default: true
  35075. },
  35076. {
  35077. name: "Macro",
  35078. height: math.unit(250, "feet")
  35079. },
  35080. {
  35081. name: "Really High",
  35082. height: math.unit(420, "feet")
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35088. {
  35089. front: {
  35090. height: math.unit(5, "meters"),
  35091. weight: math.unit(292000000000000, "kg"),
  35092. name: "Front",
  35093. image: {
  35094. source: "./media/characters/devourer/front.svg",
  35095. extra: 1800/1733,
  35096. bottom: 211/2011
  35097. }
  35098. },
  35099. maw: {
  35100. height: math.unit(1.1, "meter"),
  35101. name: "Maw",
  35102. image: {
  35103. source: "./media/characters/devourer/maw.svg"
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Small",
  35110. height: math.unit(3, "meters")
  35111. },
  35112. {
  35113. name: "Large",
  35114. height: math.unit(5, "meters"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35121. {
  35122. front: {
  35123. height: math.unit(6, "feet"),
  35124. weight: math.unit(400, "lb"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/ellarby/front.svg",
  35128. extra: 1909/1763,
  35129. bottom: 80/1989
  35130. }
  35131. },
  35132. back: {
  35133. height: math.unit(6, "feet"),
  35134. weight: math.unit(400, "lb"),
  35135. name: "Back",
  35136. image: {
  35137. source: "./media/characters/ellarby/back.svg",
  35138. extra: 1914/1784,
  35139. bottom: 172/2086
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Mischief",
  35146. height: math.unit(18, "inches")
  35147. },
  35148. {
  35149. name: "Trouble",
  35150. height: math.unit(12, "feet")
  35151. },
  35152. {
  35153. name: "Havoc",
  35154. height: math.unit(200, "feet"),
  35155. default: true
  35156. },
  35157. {
  35158. name: "Pandemonium",
  35159. height: math.unit(1, "mile")
  35160. },
  35161. {
  35162. name: "Catastrophe",
  35163. height: math.unit(100, "miles")
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35169. {
  35170. front: {
  35171. height: math.unit(4.7, "meters"),
  35172. weight: math.unit(6500, "kg"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/vex/front.svg",
  35176. extra: 1288/1140,
  35177. bottom: 100/1388
  35178. }
  35179. },
  35180. },
  35181. [
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(4.7, "meters"),
  35185. default: true
  35186. },
  35187. ]
  35188. ))
  35189. characterMakers.push(() => makeCharacter(
  35190. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35191. {
  35192. normal: {
  35193. height: math.unit(6, "feet"),
  35194. weight: math.unit(350, "lb"),
  35195. name: "Normal",
  35196. image: {
  35197. source: "./media/characters/teshy/normal.svg",
  35198. extra: 1795/1735,
  35199. bottom: 16/1811
  35200. }
  35201. },
  35202. monsterFront: {
  35203. height: math.unit(12, "feet"),
  35204. weight: math.unit(4700, "lb"),
  35205. name: "Monster (Front)",
  35206. image: {
  35207. source: "./media/characters/teshy/monster-front.svg",
  35208. extra: 2042/2034,
  35209. bottom: 128/2170
  35210. }
  35211. },
  35212. monsterSide: {
  35213. height: math.unit(12, "feet"),
  35214. weight: math.unit(4700, "lb"),
  35215. name: "Monster (Side)",
  35216. image: {
  35217. source: "./media/characters/teshy/monster-side.svg",
  35218. extra: 2067/2056,
  35219. bottom: 70/2137
  35220. }
  35221. },
  35222. monsterBack: {
  35223. height: math.unit(12, "feet"),
  35224. weight: math.unit(4700, "lb"),
  35225. name: "Monster (Back)",
  35226. image: {
  35227. source: "./media/characters/teshy/monster-back.svg",
  35228. extra: 1921/1914,
  35229. bottom: 171/2092
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(6, "feet"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35243. {
  35244. front: {
  35245. height: math.unit(6, "feet"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/ramey/front.svg",
  35249. extra: 790/787,
  35250. bottom: 27/817
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(6, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(5 + 5/12, "feet"),
  35267. weight: math.unit(120, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/phirae/front.svg",
  35271. extra: 2491/2436,
  35272. bottom: 38/2529
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(5 + 5/12, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35286. {
  35287. front: {
  35288. height: math.unit(5 + 3/12, "feet"),
  35289. name: "Front",
  35290. image: {
  35291. source: "./media/characters/stagglas/front.svg",
  35292. extra: 962/882,
  35293. bottom: 53/1015
  35294. }
  35295. },
  35296. feral: {
  35297. height: math.unit(335, "cm"),
  35298. name: "Feral",
  35299. image: {
  35300. source: "./media/characters/stagglas/feral.svg",
  35301. extra: 1732/1090,
  35302. bottom: 48/1780
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(5 + 3/12, "feet"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(5 + 4/12, "feet"),
  35319. weight: math.unit(145, "lb"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/starra/front.svg",
  35323. extra: 1790/1691,
  35324. bottom: 91/1881
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(5 + 4/12, "feet"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(2.2, "meters"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35344. extra: 1194/1005,
  35345. bottom: 25/1219
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(2.2, "meters"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35359. {
  35360. side: {
  35361. height: math.unit(8 + 2/12, "feet"),
  35362. weight: math.unit(1240, "lb"),
  35363. name: "Side",
  35364. image: {
  35365. source: "./media/characters/mika-valentine/side.svg",
  35366. extra: 2670/2501,
  35367. bottom: 250/2920
  35368. }
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(8 + 2/12, "feet"),
  35375. default: true
  35376. },
  35377. ]
  35378. ))
  35379. characterMakers.push(() => makeCharacter(
  35380. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35381. {
  35382. front: {
  35383. height: math.unit(7 + 2/12, "feet"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/xoltol/front.svg",
  35387. extra: 2212/2124,
  35388. bottom: 84/2296
  35389. }
  35390. },
  35391. side: {
  35392. height: math.unit(7 + 2/12, "feet"),
  35393. name: "Side",
  35394. image: {
  35395. source: "./media/characters/xoltol/side.svg",
  35396. extra: 2273/2197,
  35397. bottom: 26/2299
  35398. }
  35399. },
  35400. hand: {
  35401. height: math.unit(2.5, "feet"),
  35402. name: "Hand",
  35403. image: {
  35404. source: "./media/characters/xoltol/hand.svg"
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Small-ish",
  35411. height: math.unit(5 + 11/12, "feet")
  35412. },
  35413. {
  35414. name: "Normal",
  35415. height: math.unit(7 + 2/12, "feet")
  35416. },
  35417. {
  35418. name: "\"Macro\"",
  35419. height: math.unit(14 + 9/12, "feet"),
  35420. default: true
  35421. },
  35422. {
  35423. name: "Alternate Height",
  35424. height: math.unit(20, "feet")
  35425. },
  35426. {
  35427. name: "Actually Macro",
  35428. height: math.unit(100, "feet")
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(5 + 2/12, "feet"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/kotetsu-redwood/front.svg",
  35440. extra: 1053/942,
  35441. bottom: 60/1113
  35442. }
  35443. },
  35444. },
  35445. [
  35446. {
  35447. name: "Normal",
  35448. height: math.unit(5 + 2/12, "feet"),
  35449. default: true
  35450. },
  35451. ]
  35452. ))
  35453. characterMakers.push(() => makeCharacter(
  35454. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35455. {
  35456. front: {
  35457. height: math.unit(2.4, "meters"),
  35458. weight: math.unit(125, "kg"),
  35459. name: "Front",
  35460. image: {
  35461. source: "./media/characters/lilith/front.svg",
  35462. extra: 1590/1513,
  35463. bottom: 203/1793
  35464. }
  35465. },
  35466. },
  35467. [
  35468. {
  35469. name: "Humanoid",
  35470. height: math.unit(2.4, "meters")
  35471. },
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(6, "meters"),
  35475. default: true
  35476. },
  35477. {
  35478. name: "Largest",
  35479. height: math.unit(55, "meters")
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35485. {
  35486. front: {
  35487. height: math.unit(8 + 4/12, "feet"),
  35488. weight: math.unit(535, "lb"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/beh'kah-bolger/front.svg",
  35492. extra: 1660/1603,
  35493. bottom: 37/1697
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(8 + 4/12, "feet"),
  35501. default: true
  35502. },
  35503. {
  35504. name: "Kaiju",
  35505. height: math.unit(250, "feet")
  35506. },
  35507. {
  35508. name: "Still Growing",
  35509. height: math.unit(10, "miles")
  35510. },
  35511. {
  35512. name: "Continental",
  35513. height: math.unit(5000, "miles")
  35514. },
  35515. {
  35516. name: "Final Form",
  35517. height: math.unit(2500000, "miles")
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35523. {
  35524. front: {
  35525. height: math.unit(7 + 2/12, "feet"),
  35526. weight: math.unit(230, "kg"),
  35527. name: "Front",
  35528. image: {
  35529. source: "./media/characters/tatyana-milewska/front.svg",
  35530. extra: 1199/1150,
  35531. bottom: 86/1285
  35532. }
  35533. },
  35534. },
  35535. [
  35536. {
  35537. name: "Normal",
  35538. height: math.unit(7 + 2/12, "feet"),
  35539. default: true
  35540. },
  35541. {
  35542. name: "Big",
  35543. height: math.unit(12, "feet")
  35544. },
  35545. {
  35546. name: "Minimacro",
  35547. height: math.unit(20, "feet")
  35548. },
  35549. {
  35550. name: "Macro",
  35551. height: math.unit(120, "feet")
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(7 + 8/12, "feet"),
  35560. weight: math.unit(152, "kg"),
  35561. name: "Front",
  35562. image: {
  35563. source: "./media/characters/helen-arri/front.svg",
  35564. extra: 440/423,
  35565. bottom: 14/454
  35566. }
  35567. },
  35568. back: {
  35569. height: math.unit(7 + 8/12, "feet"),
  35570. weight: math.unit(152, "kg"),
  35571. name: "Back",
  35572. image: {
  35573. source: "./media/characters/helen-arri/back.svg",
  35574. extra: 443/426,
  35575. bottom: 8/451
  35576. }
  35577. },
  35578. },
  35579. [
  35580. {
  35581. name: "Normal",
  35582. height: math.unit(7 + 8/12, "feet"),
  35583. default: true
  35584. },
  35585. {
  35586. name: "Big",
  35587. height: math.unit(14, "feet")
  35588. },
  35589. {
  35590. name: "Minimacro",
  35591. height: math.unit(24, "feet")
  35592. },
  35593. {
  35594. name: "Macro",
  35595. height: math.unit(140, "feet")
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35601. {
  35602. front: {
  35603. height: math.unit(6, "meters"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/ehanu-rehu/front.svg",
  35607. extra: 1800/1800,
  35608. bottom: 59/1859
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(6, "meters"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(7 + 3/12, "feet"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/renholder/front.svg",
  35628. extra: 3096/2960,
  35629. bottom: 250/3346
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal Bat",
  35636. height: math.unit(7 + 3/12, "feet"),
  35637. default: true
  35638. },
  35639. {
  35640. name: "Slightly Tall Bat",
  35641. height: math.unit(100, "feet")
  35642. },
  35643. {
  35644. name: "Big Bat",
  35645. height: math.unit(1000, "feet")
  35646. },
  35647. {
  35648. name: "City-Sized Bat",
  35649. height: math.unit(200000, "feet")
  35650. },
  35651. {
  35652. name: "Bigger Bat",
  35653. height: math.unit(10000, "miles")
  35654. },
  35655. {
  35656. name: "Solar Sized Bat",
  35657. height: math.unit(100, "AU")
  35658. },
  35659. {
  35660. name: "Galactic Bat",
  35661. height: math.unit(200000, "lightyears")
  35662. },
  35663. {
  35664. name: "Universally Known Bat",
  35665. height: math.unit(1, "universe")
  35666. },
  35667. ]
  35668. ))
  35669. characterMakers.push(() => makeCharacter(
  35670. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35671. {
  35672. front: {
  35673. height: math.unit(6 + 11/12, "feet"),
  35674. weight: math.unit(250, "lb"),
  35675. name: "Front",
  35676. image: {
  35677. source: "./media/characters/cookiecat/front.svg",
  35678. extra: 893/827,
  35679. bottom: 14/907
  35680. }
  35681. },
  35682. },
  35683. [
  35684. {
  35685. name: "Micro",
  35686. height: math.unit(3, "inches")
  35687. },
  35688. {
  35689. name: "Normal",
  35690. height: math.unit(6 + 11/12, "feet"),
  35691. default: true
  35692. },
  35693. {
  35694. name: "Macro",
  35695. height: math.unit(100, "feet")
  35696. },
  35697. {
  35698. name: "Macro+",
  35699. height: math.unit(404, "feet")
  35700. },
  35701. {
  35702. name: "Megamacro",
  35703. height: math.unit(165, "miles")
  35704. },
  35705. {
  35706. name: "Planetary",
  35707. height: math.unit(4600, "miles")
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(10 + 3/12, "feet"),
  35716. weight: math.unit(1500, "lb"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/tux-kusanagi/front.svg",
  35720. extra: 944/840,
  35721. bottom: 39/983
  35722. }
  35723. },
  35724. back: {
  35725. height: math.unit(10 + 3/12, "feet"),
  35726. weight: math.unit(1500, "lb"),
  35727. name: "Back",
  35728. image: {
  35729. source: "./media/characters/tux-kusanagi/back.svg",
  35730. extra: 941/842,
  35731. bottom: 28/969
  35732. }
  35733. },
  35734. rump: {
  35735. height: math.unit(5.25, "feet"),
  35736. name: "Rump",
  35737. image: {
  35738. source: "./media/characters/tux-kusanagi/rump.svg"
  35739. }
  35740. },
  35741. beak: {
  35742. height: math.unit(1.54, "feet"),
  35743. name: "Beak",
  35744. image: {
  35745. source: "./media/characters/tux-kusanagi/beak.svg"
  35746. }
  35747. },
  35748. },
  35749. [
  35750. {
  35751. name: "Normal",
  35752. height: math.unit(10 + 3/12, "feet"),
  35753. default: true
  35754. },
  35755. ]
  35756. ))
  35757. characterMakers.push(() => makeCharacter(
  35758. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35759. {
  35760. front: {
  35761. height: math.unit(58, "feet"),
  35762. weight: math.unit(200, "tons"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/uzarmazari/front.svg",
  35766. extra: 1575/1455,
  35767. bottom: 152/1727
  35768. }
  35769. },
  35770. back: {
  35771. height: math.unit(58, "feet"),
  35772. weight: math.unit(200, "tons"),
  35773. name: "Back",
  35774. image: {
  35775. source: "./media/characters/uzarmazari/back.svg",
  35776. extra: 1585/1510,
  35777. bottom: 157/1742
  35778. }
  35779. },
  35780. head: {
  35781. height: math.unit(26, "feet"),
  35782. name: "Head",
  35783. image: {
  35784. source: "./media/characters/uzarmazari/head.svg"
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(58, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35798. {
  35799. side: {
  35800. height: math.unit(15, "feet"),
  35801. name: "Side",
  35802. image: {
  35803. source: "./media/characters/akitu/side.svg",
  35804. extra: 1421/1321,
  35805. bottom: 157/1578
  35806. }
  35807. },
  35808. front: {
  35809. height: math.unit(15, "feet"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/akitu/front.svg",
  35813. extra: 1435/1326,
  35814. bottom: 232/1667
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(15, "feet"),
  35822. default: true
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35828. {
  35829. front: {
  35830. height: math.unit(10 + 8/12, "feet"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/azalie-croixland/front.svg",
  35834. extra: 1972/1856,
  35835. bottom: 31/2003
  35836. }
  35837. },
  35838. },
  35839. [
  35840. {
  35841. name: "Original Height",
  35842. height: math.unit(5 + 4/12, "feet")
  35843. },
  35844. {
  35845. name: "Normal Height",
  35846. height: math.unit(10 + 8/12, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35853. {
  35854. side: {
  35855. height: math.unit(7 + 1/12, "feet"),
  35856. weight: math.unit(245, "lb"),
  35857. name: "Side",
  35858. image: {
  35859. source: "./media/characters/kavus-kazian/side.svg",
  35860. extra: 349/342,
  35861. bottom: 15/364
  35862. }
  35863. },
  35864. },
  35865. [
  35866. {
  35867. name: "Normal",
  35868. height: math.unit(7 + 1/12, "feet"),
  35869. default: true
  35870. },
  35871. ]
  35872. ))
  35873. characterMakers.push(() => makeCharacter(
  35874. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35875. {
  35876. normalFront: {
  35877. height: math.unit(5 + 11/12, "feet"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/moonlight-rose/normal-front.svg",
  35881. extra: 1980/1825,
  35882. bottom: 18/1998
  35883. },
  35884. form: "normal",
  35885. default: true
  35886. },
  35887. normalBack: {
  35888. height: math.unit(5 + 11/12, "feet"),
  35889. name: "Back",
  35890. image: {
  35891. source: "./media/characters/moonlight-rose/normal-back.svg",
  35892. extra: 2010/1839,
  35893. bottom: 10/2020
  35894. },
  35895. form: "normal"
  35896. },
  35897. demonFront: {
  35898. height: math.unit(1.5, "earths"),
  35899. name: "Front",
  35900. image: {
  35901. source: "./media/characters/moonlight-rose/demon.svg",
  35902. extra: 1400/1294,
  35903. bottom: 45/1445
  35904. },
  35905. form: "demon",
  35906. default: true
  35907. },
  35908. terraFront: {
  35909. height: math.unit(1.5, "earths"),
  35910. name: "Front",
  35911. image: {
  35912. source: "./media/characters/moonlight-rose/terra.svg"
  35913. },
  35914. form: "terra",
  35915. default: true
  35916. },
  35917. jupiterFront: {
  35918. height: math.unit(69911*2, "km"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35922. extra: 1367/1286,
  35923. bottom: 55/1422
  35924. },
  35925. form: "jupiter",
  35926. default: true
  35927. },
  35928. neptuneFront: {
  35929. height: math.unit(24622*2, "feet"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35933. extra: 1851/1712,
  35934. bottom: 0/1851
  35935. },
  35936. form: "neptune",
  35937. default: true
  35938. },
  35939. },
  35940. [
  35941. {
  35942. name: "\"Natural\" Height",
  35943. height: math.unit(5 + 11/12, "feet"),
  35944. form: "normal"
  35945. },
  35946. {
  35947. name: "Smallest comfortable size",
  35948. height: math.unit(40, "meters"),
  35949. form: "normal"
  35950. },
  35951. {
  35952. name: "Common size",
  35953. height: math.unit(50, "km"),
  35954. form: "normal",
  35955. default: true
  35956. },
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(1.5, "earths"),
  35960. form: "demon",
  35961. default: true
  35962. },
  35963. {
  35964. name: "Universal",
  35965. height: math.unit(15, "universes"),
  35966. form: "demon"
  35967. },
  35968. {
  35969. name: "Earth",
  35970. height: math.unit(1.5, "earths"),
  35971. form: "terra",
  35972. default: true
  35973. },
  35974. {
  35975. name: "Super Earth",
  35976. height: math.unit(67.5, "earths"),
  35977. form: "terra"
  35978. },
  35979. {
  35980. name: "Doesn't fit in a solar system...",
  35981. height: math.unit(1, "galaxy"),
  35982. form: "terra"
  35983. },
  35984. {
  35985. name: "Saturn",
  35986. height: math.unit(58232*2, "km"),
  35987. form: "jupiter"
  35988. },
  35989. {
  35990. name: "Jupiter",
  35991. height: math.unit(69911*2, "km"),
  35992. form: "jupiter",
  35993. default: true
  35994. },
  35995. {
  35996. name: "HD 100546 b",
  35997. height: math.unit(482938, "km"),
  35998. form: "jupiter"
  35999. },
  36000. {
  36001. name: "Enceladus",
  36002. height: math.unit(513*2, "km"),
  36003. form: "neptune"
  36004. },
  36005. {
  36006. name: "Europe",
  36007. height: math.unit(1560*2, "km"),
  36008. form: "neptune"
  36009. },
  36010. {
  36011. name: "Neptune",
  36012. height: math.unit(24622*2, "km"),
  36013. form: "neptune",
  36014. default: true
  36015. },
  36016. {
  36017. name: "CoRoT-9b",
  36018. height: math.unit(75067*2, "km"),
  36019. form: "neptune"
  36020. },
  36021. ],
  36022. {
  36023. "normal": {
  36024. name: "Normal",
  36025. default: true
  36026. },
  36027. "demon": {
  36028. name: "Demon"
  36029. },
  36030. "terra": {
  36031. name: "Terra"
  36032. },
  36033. "jupiter": {
  36034. name: "Jupiter"
  36035. },
  36036. "neptune": {
  36037. name: "Neptune"
  36038. }
  36039. }
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(16, "feet"),
  36046. weight: math.unit(610, "kg"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/huckle/front.svg",
  36050. extra: 1731/1625,
  36051. bottom: 33/1764
  36052. }
  36053. },
  36054. back: {
  36055. height: math.unit(16, "feet"),
  36056. weight: math.unit(610, "kg"),
  36057. name: "Back",
  36058. image: {
  36059. source: "./media/characters/huckle/back.svg",
  36060. extra: 1738/1651,
  36061. bottom: 37/1775
  36062. }
  36063. },
  36064. laughing: {
  36065. height: math.unit(3.75, "feet"),
  36066. name: "Laughing",
  36067. image: {
  36068. source: "./media/characters/huckle/laughing.svg"
  36069. }
  36070. },
  36071. angry: {
  36072. height: math.unit(4.15, "feet"),
  36073. name: "Angry",
  36074. image: {
  36075. source: "./media/characters/huckle/angry.svg"
  36076. }
  36077. },
  36078. },
  36079. [
  36080. {
  36081. name: "Normal",
  36082. height: math.unit(16, "feet"),
  36083. default: true
  36084. },
  36085. {
  36086. name: "Mini Macro",
  36087. height: math.unit(463, "feet")
  36088. },
  36089. {
  36090. name: "Macro",
  36091. height: math.unit(1680, "meters")
  36092. },
  36093. {
  36094. name: "Mega Macro",
  36095. height: math.unit(175, "km")
  36096. },
  36097. {
  36098. name: "Terra Macro",
  36099. height: math.unit(32, "gigameters")
  36100. },
  36101. {
  36102. name: "Multiverse+",
  36103. height: math.unit(2.56e23, "yottameters")
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36109. {
  36110. front: {
  36111. height: math.unit(6 + 9/12, "feet"),
  36112. weight: math.unit(280, "lb"),
  36113. name: "Front",
  36114. image: {
  36115. source: "./media/characters/candy/front.svg",
  36116. extra: 234/217,
  36117. bottom: 11/245
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Really Small",
  36124. height: math.unit(0.1, "nm")
  36125. },
  36126. {
  36127. name: "Micro",
  36128. height: math.unit(2, "inches")
  36129. },
  36130. {
  36131. name: "Normal",
  36132. height: math.unit(6 + 9/12, "feet"),
  36133. default: true
  36134. },
  36135. {
  36136. name: "Small Macro",
  36137. height: math.unit(69, "feet")
  36138. },
  36139. {
  36140. name: "Macro",
  36141. height: math.unit(160, "feet")
  36142. },
  36143. {
  36144. name: "Megamacro",
  36145. height: math.unit(22000, "miles")
  36146. },
  36147. {
  36148. name: "Gigamacro",
  36149. height: math.unit(50000, "miles")
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36155. {
  36156. front: {
  36157. height: math.unit(4, "feet"),
  36158. weight: math.unit(90, "lb"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/joey-mcdonald/front.svg",
  36162. extra: 1059/852,
  36163. bottom: 33/1092
  36164. }
  36165. },
  36166. back: {
  36167. height: math.unit(4, "feet"),
  36168. weight: math.unit(90, "lb"),
  36169. name: "Back",
  36170. image: {
  36171. source: "./media/characters/joey-mcdonald/back.svg",
  36172. extra: 1077/879,
  36173. bottom: 5/1082
  36174. }
  36175. },
  36176. frontKobold: {
  36177. height: math.unit(4, "feet"),
  36178. weight: math.unit(100, "lb"),
  36179. name: "Front-kobold",
  36180. image: {
  36181. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36182. extra: 1480/1367,
  36183. bottom: 0/1480
  36184. }
  36185. },
  36186. backKobold: {
  36187. height: math.unit(4, "feet"),
  36188. weight: math.unit(100, "lb"),
  36189. name: "Back-kobold",
  36190. image: {
  36191. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36192. extra: 1449/1361,
  36193. bottom: 0/1449
  36194. }
  36195. },
  36196. },
  36197. [
  36198. {
  36199. name: "Normal",
  36200. height: math.unit(4, "feet"),
  36201. default: true
  36202. },
  36203. ]
  36204. ))
  36205. characterMakers.push(() => makeCharacter(
  36206. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36207. {
  36208. front: {
  36209. height: math.unit(12 + 6/12, "feet"),
  36210. name: "Front",
  36211. image: {
  36212. source: "./media/characters/kass-lockheed/front.svg",
  36213. extra: 354/343,
  36214. bottom: 9/363
  36215. }
  36216. },
  36217. back: {
  36218. height: math.unit(12 + 6/12, "feet"),
  36219. name: "Back",
  36220. image: {
  36221. source: "./media/characters/kass-lockheed/back.svg",
  36222. extra: 364/352,
  36223. bottom: 3/367
  36224. }
  36225. },
  36226. dick: {
  36227. height: math.unit(3.12, "feet"),
  36228. name: "Dick",
  36229. image: {
  36230. source: "./media/characters/kass-lockheed/dick.svg"
  36231. }
  36232. },
  36233. head: {
  36234. height: math.unit(2.6, "feet"),
  36235. name: "Head",
  36236. image: {
  36237. source: "./media/characters/kass-lockheed/head.svg"
  36238. }
  36239. },
  36240. bleh: {
  36241. height: math.unit(2.85, "feet"),
  36242. name: "Bleh",
  36243. image: {
  36244. source: "./media/characters/kass-lockheed/bleh.svg"
  36245. }
  36246. },
  36247. smug: {
  36248. height: math.unit(2.85, "feet"),
  36249. name: "Smug",
  36250. image: {
  36251. source: "./media/characters/kass-lockheed/smug.svg"
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(12 + 6/12, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(6 + 2/12, "feet"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/taylor/front.svg",
  36271. extra: 639/495,
  36272. bottom: 12/651
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(6 + 2/12, "feet"),
  36280. default: true
  36281. },
  36282. {
  36283. name: "Big",
  36284. height: math.unit(15, "feet")
  36285. },
  36286. {
  36287. name: "Lorg",
  36288. height: math.unit(80, "feet")
  36289. },
  36290. {
  36291. name: "Too Lorg",
  36292. height: math.unit(120, "feet")
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36298. {
  36299. front: {
  36300. height: math.unit(15, "feet"),
  36301. name: "Front",
  36302. image: {
  36303. source: "./media/characters/kaizer/front.svg",
  36304. extra: 1612/1436,
  36305. bottom: 43/1655
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(15, "feet"),
  36313. default: true
  36314. },
  36315. ]
  36316. ))
  36317. characterMakers.push(() => makeCharacter(
  36318. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36319. {
  36320. front: {
  36321. height: math.unit(2, "feet"),
  36322. weight: math.unit(30, "lb"),
  36323. name: "Front",
  36324. image: {
  36325. source: "./media/characters/sandy/front.svg",
  36326. extra: 1439/1307,
  36327. bottom: 194/1633
  36328. }
  36329. },
  36330. },
  36331. [
  36332. {
  36333. name: "Normal",
  36334. height: math.unit(2, "feet"),
  36335. default: true
  36336. },
  36337. ]
  36338. ))
  36339. characterMakers.push(() => makeCharacter(
  36340. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36341. {
  36342. front: {
  36343. height: math.unit(3, "feet"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/mellvi/front.svg",
  36347. extra: 1831/1630,
  36348. bottom: 58/1889
  36349. }
  36350. },
  36351. },
  36352. [
  36353. {
  36354. name: "Normal",
  36355. height: math.unit(3, "feet"),
  36356. default: true
  36357. },
  36358. ]
  36359. ))
  36360. characterMakers.push(() => makeCharacter(
  36361. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36362. {
  36363. front: {
  36364. height: math.unit(5 + 11/12, "feet"),
  36365. weight: math.unit(200, "lb"),
  36366. name: "Front",
  36367. image: {
  36368. source: "./media/characters/shirou/front.svg",
  36369. extra: 2491/2383,
  36370. bottom: 189/2680
  36371. }
  36372. },
  36373. back: {
  36374. height: math.unit(5 + 11/12, "feet"),
  36375. weight: math.unit(200, "lb"),
  36376. name: "Back",
  36377. image: {
  36378. source: "./media/characters/shirou/back.svg",
  36379. extra: 2554/2450,
  36380. bottom: 76/2630
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(5 + 11/12, "feet"),
  36388. default: true
  36389. },
  36390. ]
  36391. ))
  36392. characterMakers.push(() => makeCharacter(
  36393. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36394. {
  36395. front: {
  36396. height: math.unit(6 + 3/12, "feet"),
  36397. weight: math.unit(177, "lb"),
  36398. name: "Front",
  36399. image: {
  36400. source: "./media/characters/noryu/front.svg",
  36401. extra: 973/885,
  36402. bottom: 10/983
  36403. }
  36404. },
  36405. },
  36406. [
  36407. {
  36408. name: "Normal",
  36409. height: math.unit(6 + 3/12, "feet"),
  36410. default: true
  36411. },
  36412. ]
  36413. ))
  36414. characterMakers.push(() => makeCharacter(
  36415. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36416. {
  36417. front: {
  36418. height: math.unit(5 + 6/12, "feet"),
  36419. weight: math.unit(170, "lb"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/mevolas-rubenido/front.svg",
  36423. extra: 2109/1901,
  36424. bottom: 96/2205
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Normal",
  36431. height: math.unit(5 + 6/12, "feet"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(100, "feet"),
  36441. name: "Front",
  36442. image: {
  36443. source: "./media/characters/dee/front.svg",
  36444. extra: 2153/2036,
  36445. bottom: 59/2212
  36446. }
  36447. },
  36448. back: {
  36449. height: math.unit(100, "feet"),
  36450. name: "Back",
  36451. image: {
  36452. source: "./media/characters/dee/back.svg",
  36453. extra: 2183/2058,
  36454. bottom: 75/2258
  36455. }
  36456. },
  36457. foot: {
  36458. height: math.unit(19.43, "feet"),
  36459. name: "Foot",
  36460. image: {
  36461. source: "./media/characters/dee/foot.svg"
  36462. }
  36463. },
  36464. hoof: {
  36465. height: math.unit(20.6, "feet"),
  36466. name: "Hoof",
  36467. image: {
  36468. source: "./media/characters/dee/hoof.svg"
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Macro",
  36475. height: math.unit(100, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(5 + 6/12, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/teh/front.svg",
  36488. extra: 1002/847,
  36489. bottom: 62/1064
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(5 + 6/12, "feet"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36503. {
  36504. side: {
  36505. height: math.unit(6 + 1/12, "feet"),
  36506. weight: math.unit(204, "lb"),
  36507. name: "Side",
  36508. image: {
  36509. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36510. extra: 974/775,
  36511. bottom: 169/1143
  36512. }
  36513. },
  36514. sitting: {
  36515. height: math.unit(6 + 2/12, "feet"),
  36516. weight: math.unit(204, "lb"),
  36517. name: "Sitting",
  36518. image: {
  36519. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36520. extra: 1175/964,
  36521. bottom: 378/1553
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(6 + 1/12, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(6, "inches"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/tululi/front.svg",
  36541. extra: 1997/1876,
  36542. bottom: 20/2017
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(6, "inches"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(4 + 1/12, "feet"),
  36559. name: "Front",
  36560. image: {
  36561. source: "./media/characters/star/front.svg",
  36562. extra: 1493/1189,
  36563. bottom: 48/1541
  36564. }
  36565. },
  36566. },
  36567. [
  36568. {
  36569. name: "Normal",
  36570. height: math.unit(4 + 1/12, "feet"),
  36571. default: true
  36572. },
  36573. ]
  36574. ))
  36575. characterMakers.push(() => makeCharacter(
  36576. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36577. {
  36578. front: {
  36579. height: math.unit(6 + 3/12, "feet"),
  36580. name: "Front",
  36581. image: {
  36582. source: "./media/characters/comet/front.svg",
  36583. extra: 1681/1462,
  36584. bottom: 26/1707
  36585. }
  36586. },
  36587. },
  36588. [
  36589. {
  36590. name: "Normal",
  36591. height: math.unit(6 + 3/12, "feet"),
  36592. default: true
  36593. },
  36594. ]
  36595. ))
  36596. characterMakers.push(() => makeCharacter(
  36597. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36598. {
  36599. front: {
  36600. height: math.unit(950, "feet"),
  36601. name: "Front",
  36602. image: {
  36603. source: "./media/characters/vortex/front.svg",
  36604. extra: 1497/1434,
  36605. bottom: 56/1553
  36606. }
  36607. },
  36608. maw: {
  36609. height: math.unit(285, "feet"),
  36610. name: "Maw",
  36611. image: {
  36612. source: "./media/characters/vortex/maw.svg"
  36613. }
  36614. },
  36615. },
  36616. [
  36617. {
  36618. name: "Macro",
  36619. height: math.unit(950, "feet"),
  36620. default: true
  36621. },
  36622. ]
  36623. ))
  36624. characterMakers.push(() => makeCharacter(
  36625. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36626. {
  36627. front: {
  36628. height: math.unit(600, "feet"),
  36629. weight: math.unit(0.02, "grams"),
  36630. name: "Front",
  36631. image: {
  36632. source: "./media/characters/doodle/front.svg",
  36633. extra: 1578/1413,
  36634. bottom: 37/1615
  36635. }
  36636. },
  36637. },
  36638. [
  36639. {
  36640. name: "Macro",
  36641. height: math.unit(600, "feet"),
  36642. default: true
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(6 + 6/12, "feet"),
  36651. name: "Front",
  36652. image: {
  36653. source: "./media/characters/jai/front.svg",
  36654. extra: 1645/1534,
  36655. bottom: 115/1760
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Normal",
  36662. height: math.unit(6 + 6/12, "feet"),
  36663. default: true
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36669. {
  36670. front: {
  36671. height: math.unit(6 + 8/12, "feet"),
  36672. name: "Front",
  36673. image: {
  36674. source: "./media/characters/pixel/front.svg",
  36675. extra: 1900/1735,
  36676. bottom: 63/1963
  36677. }
  36678. },
  36679. },
  36680. [
  36681. {
  36682. name: "Normal",
  36683. height: math.unit(6 + 8/12, "feet"),
  36684. default: true
  36685. },
  36686. ]
  36687. ))
  36688. characterMakers.push(() => makeCharacter(
  36689. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36690. {
  36691. back: {
  36692. height: math.unit(4 + 1/12, "feet"),
  36693. weight: math.unit(75, "lb"),
  36694. name: "Back",
  36695. image: {
  36696. source: "./media/characters/rhett/back.svg",
  36697. extra: 930/878,
  36698. bottom: 25/955
  36699. }
  36700. },
  36701. front: {
  36702. height: math.unit(4 + 1/12, "feet"),
  36703. weight: math.unit(75, "lb"),
  36704. name: "Front",
  36705. image: {
  36706. source: "./media/characters/rhett/front.svg",
  36707. extra: 1682/1586,
  36708. bottom: 92/1774
  36709. }
  36710. },
  36711. },
  36712. [
  36713. {
  36714. name: "Micro",
  36715. height: math.unit(8, "inches")
  36716. },
  36717. {
  36718. name: "Tiny",
  36719. height: math.unit(2, "feet")
  36720. },
  36721. {
  36722. name: "Normal",
  36723. height: math.unit(4 + 1/12, "feet"),
  36724. default: true
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(3 + 3/12, "feet"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/penny/front.svg",
  36736. extra: 1406/1311,
  36737. bottom: 26/1432
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(3 + 3/12, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(4 + 11/12, "feet"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/monty/front.svg",
  36757. extra: 1479/1209,
  36758. bottom: 0/1479
  36759. }
  36760. },
  36761. },
  36762. [
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(4 + 11/12, "feet"),
  36766. default: true
  36767. },
  36768. ]
  36769. ))
  36770. characterMakers.push(() => makeCharacter(
  36771. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36772. {
  36773. front: {
  36774. height: math.unit(8 + 4/12, "feet"),
  36775. name: "Front",
  36776. image: {
  36777. source: "./media/characters/sterling/front.svg",
  36778. extra: 1420/1236,
  36779. bottom: 27/1447
  36780. }
  36781. },
  36782. },
  36783. [
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(8 + 4/12, "feet"),
  36787. default: true
  36788. },
  36789. ]
  36790. ))
  36791. characterMakers.push(() => makeCharacter(
  36792. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36793. {
  36794. front: {
  36795. height: math.unit(15, "feet"),
  36796. name: "Front",
  36797. image: {
  36798. source: "./media/characters/marble/front.svg",
  36799. extra: 973/937,
  36800. bottom: 32/1005
  36801. }
  36802. },
  36803. },
  36804. [
  36805. {
  36806. name: "Normal",
  36807. height: math.unit(15, "feet"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36814. {
  36815. front: {
  36816. height: math.unit(3, "inches"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/powder/front.svg",
  36820. extra: 1504/1334,
  36821. bottom: 518/2022
  36822. }
  36823. },
  36824. },
  36825. [
  36826. {
  36827. name: "Normal",
  36828. height: math.unit(3, "inches"),
  36829. default: true
  36830. },
  36831. ]
  36832. ))
  36833. characterMakers.push(() => makeCharacter(
  36834. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36835. {
  36836. front: {
  36837. height: math.unit(4 + 5/12, "feet"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/joey-raccoon/front.svg",
  36841. extra: 1273/1197,
  36842. bottom: 0/1273
  36843. }
  36844. },
  36845. },
  36846. [
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(4 + 5/12, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(8 + 4/12, "feet"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/vick/front.svg",
  36862. extra: 2187/2118,
  36863. bottom: 47/2234
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(8 + 4/12, "feet"),
  36871. default: true
  36872. },
  36873. ]
  36874. ))
  36875. characterMakers.push(() => makeCharacter(
  36876. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36877. {
  36878. front: {
  36879. height: math.unit(5 + 5/12, "feet"),
  36880. name: "Front",
  36881. image: {
  36882. source: "./media/characters/mitsy/front.svg",
  36883. extra: 1842/1695,
  36884. bottom: 0/1842
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(5 + 5/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(6 + 3/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/silvy/front.svg",
  36904. extra: 1995/1836,
  36905. bottom: 225/2220
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(6 + 3/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(3 + 8/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/rodney/front.svg",
  36925. extra: 1956/1747,
  36926. bottom: 31/1987
  36927. }
  36928. },
  36929. frontDressed: {
  36930. height: math.unit(2.9, "feet"),
  36931. name: "Front (Dressed)",
  36932. image: {
  36933. source: "./media/characters/rodney/front-dressed.svg",
  36934. extra: 1382/1241,
  36935. bottom: 385/1767
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(3 + 8/12, "feet"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(5 + 9/12, "feet"),
  36952. weight: math.unit(194, "lbs"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/zakail-sudekai/front.svg",
  36956. extra: 2696/2533,
  36957. bottom: 248/2944
  36958. }
  36959. },
  36960. maw: {
  36961. height: math.unit(1.35, "feet"),
  36962. name: "Maw",
  36963. image: {
  36964. source: "./media/characters/zakail-sudekai/maw.svg"
  36965. }
  36966. },
  36967. },
  36968. [
  36969. {
  36970. name: "Normal",
  36971. height: math.unit(5 + 9/12, "feet"),
  36972. default: true
  36973. },
  36974. ]
  36975. ))
  36976. characterMakers.push(() => makeCharacter(
  36977. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36978. {
  36979. front: {
  36980. height: math.unit(8 + 4/12, "feet"),
  36981. weight: math.unit(1200, "lb"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/eleanor/front.svg",
  36985. extra: 1226/1192,
  36986. bottom: 52/1278
  36987. }
  36988. },
  36989. back: {
  36990. height: math.unit(8 + 4/12, "feet"),
  36991. weight: math.unit(1200, "lb"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/eleanor/back.svg",
  36995. extra: 1242/1184,
  36996. bottom: 60/1302
  36997. }
  36998. },
  36999. head: {
  37000. height: math.unit(2.62, "feet"),
  37001. name: "Head",
  37002. image: {
  37003. source: "./media/characters/eleanor/head.svg"
  37004. }
  37005. },
  37006. },
  37007. [
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(8 + 4/12, "feet"),
  37011. default: true
  37012. },
  37013. ]
  37014. ))
  37015. characterMakers.push(() => makeCharacter(
  37016. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37017. {
  37018. front: {
  37019. height: math.unit(8 + 4/12, "feet"),
  37020. weight: math.unit(750, "lb"),
  37021. name: "Front",
  37022. image: {
  37023. source: "./media/characters/tanya/front.svg",
  37024. extra: 1749/1615,
  37025. bottom: 33/1782
  37026. }
  37027. },
  37028. },
  37029. [
  37030. {
  37031. name: "Normal",
  37032. height: math.unit(8 + 4/12, "feet"),
  37033. default: true
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37039. {
  37040. front: {
  37041. height: math.unit(5, "feet"),
  37042. weight: math.unit(225, "lb"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/cindy/front.svg",
  37046. extra: 1320/1250,
  37047. bottom: 42/1362
  37048. }
  37049. },
  37050. frontDressed: {
  37051. height: math.unit(5, "feet"),
  37052. weight: math.unit(225, "lb"),
  37053. name: "Front (Dressed)",
  37054. image: {
  37055. source: "./media/characters/cindy/front-dressed.svg",
  37056. extra: 1320/1250,
  37057. bottom: 42/1362
  37058. }
  37059. },
  37060. back: {
  37061. height: math.unit(5, "feet"),
  37062. weight: math.unit(225, "lb"),
  37063. name: "Back",
  37064. image: {
  37065. source: "./media/characters/cindy/back.svg",
  37066. extra: 1384/1346,
  37067. bottom: 14/1398
  37068. }
  37069. },
  37070. },
  37071. [
  37072. {
  37073. name: "Normal",
  37074. height: math.unit(5, "feet"),
  37075. default: true
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37081. {
  37082. front: {
  37083. height: math.unit(6 + 9/12, "feet"),
  37084. weight: math.unit(440, "lb"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/wilbur-owen/front.svg",
  37088. extra: 1575/1448,
  37089. bottom: 72/1647
  37090. }
  37091. },
  37092. back: {
  37093. height: math.unit(6 + 9/12, "feet"),
  37094. weight: math.unit(440, "lb"),
  37095. name: "Back",
  37096. image: {
  37097. source: "./media/characters/wilbur-owen/back.svg",
  37098. extra: 1578/1445,
  37099. bottom: 36/1614
  37100. }
  37101. },
  37102. },
  37103. [
  37104. {
  37105. name: "Normal",
  37106. height: math.unit(6 + 9/12, "feet"),
  37107. default: true
  37108. },
  37109. ]
  37110. ))
  37111. characterMakers.push(() => makeCharacter(
  37112. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37113. {
  37114. front: {
  37115. height: math.unit(6 + 5/12, "feet"),
  37116. weight: math.unit(650, "lb"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/keegan/front.svg",
  37120. extra: 2387/2198,
  37121. bottom: 33/2420
  37122. }
  37123. },
  37124. side: {
  37125. height: math.unit(6 + 5/12, "feet"),
  37126. weight: math.unit(650, "lb"),
  37127. name: "Side",
  37128. image: {
  37129. source: "./media/characters/keegan/side.svg",
  37130. extra: 2390/2202,
  37131. bottom: 47/2437
  37132. }
  37133. },
  37134. back: {
  37135. height: math.unit(6 + 5/12, "feet"),
  37136. weight: math.unit(650, "lb"),
  37137. name: "Back",
  37138. image: {
  37139. source: "./media/characters/keegan/back.svg",
  37140. extra: 2418/2268,
  37141. bottom: 15/2433
  37142. }
  37143. },
  37144. frontSfw: {
  37145. height: math.unit(6 + 5/12, "feet"),
  37146. weight: math.unit(650, "lb"),
  37147. name: "Front (SFW)",
  37148. image: {
  37149. source: "./media/characters/keegan/front-sfw.svg",
  37150. extra: 2387/2198,
  37151. bottom: 33/2420
  37152. }
  37153. },
  37154. beans: {
  37155. height: math.unit(1.85, "feet"),
  37156. name: "Beans",
  37157. image: {
  37158. source: "./media/characters/keegan/beans.svg"
  37159. }
  37160. },
  37161. },
  37162. [
  37163. {
  37164. name: "Normal",
  37165. height: math.unit(6 + 5/12, "feet"),
  37166. default: true
  37167. },
  37168. ]
  37169. ))
  37170. characterMakers.push(() => makeCharacter(
  37171. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37172. {
  37173. front: {
  37174. height: math.unit(9, "feet"),
  37175. name: "Front",
  37176. image: {
  37177. source: "./media/characters/colton/front.svg",
  37178. extra: 1589/1326,
  37179. bottom: 139/1728
  37180. }
  37181. },
  37182. },
  37183. [
  37184. {
  37185. name: "Normal",
  37186. height: math.unit(9, "feet"),
  37187. default: true
  37188. },
  37189. ]
  37190. ))
  37191. characterMakers.push(() => makeCharacter(
  37192. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37193. {
  37194. front: {
  37195. height: math.unit(2 + 9/12, "feet"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/bora/front.svg",
  37199. extra: 1265/1250,
  37200. bottom: 24/1289
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(2 + 9/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(8, "feet"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/myu-myu/front.svg",
  37220. extra: 1949/1857,
  37221. bottom: 90/2039
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(8, "feet"),
  37229. default: true
  37230. },
  37231. {
  37232. name: "Big",
  37233. height: math.unit(15, "feet")
  37234. },
  37235. {
  37236. name: "BIG",
  37237. height: math.unit(25, "feet")
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37243. {
  37244. side: {
  37245. height: math.unit(7 + 5/12, "feet"),
  37246. weight: math.unit(2800, "lb"),
  37247. name: "Side",
  37248. image: {
  37249. source: "./media/characters/haloren/side.svg",
  37250. extra: 1793/409,
  37251. bottom: 59/1852
  37252. }
  37253. },
  37254. frontPaw: {
  37255. height: math.unit(2.36, "feet"),
  37256. name: "Front paw",
  37257. image: {
  37258. source: "./media/characters/haloren/front-paw.svg"
  37259. }
  37260. },
  37261. hindPaw: {
  37262. height: math.unit(3.18, "feet"),
  37263. name: "Hind paw",
  37264. image: {
  37265. source: "./media/characters/haloren/hind-paw.svg"
  37266. }
  37267. },
  37268. maw: {
  37269. height: math.unit(5.05, "feet"),
  37270. name: "Maw",
  37271. image: {
  37272. source: "./media/characters/haloren/maw.svg"
  37273. }
  37274. },
  37275. dick: {
  37276. height: math.unit(2.90, "feet"),
  37277. name: "Dick",
  37278. image: {
  37279. source: "./media/characters/haloren/dick.svg"
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(7 + 5/12, "feet"),
  37287. default: true
  37288. },
  37289. {
  37290. name: "Enhanced",
  37291. height: math.unit(14 + 3/12, "feet")
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(171, "cm"),
  37300. name: "Front",
  37301. image: {
  37302. source: "./media/characters/kimmy/front.svg",
  37303. extra: 1491/1435,
  37304. bottom: 53/1544
  37305. }
  37306. },
  37307. },
  37308. [
  37309. {
  37310. name: "Small",
  37311. height: math.unit(9, "cm")
  37312. },
  37313. {
  37314. name: "Normal",
  37315. height: math.unit(171, "cm"),
  37316. default: true
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(8, "feet"),
  37325. weight: math.unit(300, "lb"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/galeboomer/front.svg",
  37329. extra: 4651/4415,
  37330. bottom: 162/4813
  37331. }
  37332. },
  37333. back: {
  37334. height: math.unit(8, "feet"),
  37335. weight: math.unit(300, "lb"),
  37336. name: "Back",
  37337. image: {
  37338. source: "./media/characters/galeboomer/back.svg",
  37339. extra: 4544/4314,
  37340. bottom: 16/4560
  37341. }
  37342. },
  37343. frontAlt: {
  37344. height: math.unit(8, "feet"),
  37345. weight: math.unit(300, "lb"),
  37346. name: "Front (Alt)",
  37347. image: {
  37348. source: "./media/characters/galeboomer/front-alt.svg",
  37349. extra: 4458/4228,
  37350. bottom: 68/4526
  37351. }
  37352. },
  37353. maw: {
  37354. height: math.unit(1.2, "feet"),
  37355. name: "Maw",
  37356. image: {
  37357. source: "./media/characters/galeboomer/maw.svg"
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(8, "feet"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(5 + 9/12, "feet"),
  37374. weight: math.unit(120, "lb"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/chyr/front.svg",
  37378. extra: 1323/1254,
  37379. bottom: 63/1386
  37380. }
  37381. },
  37382. back: {
  37383. height: math.unit(5 + 9/12, "feet"),
  37384. weight: math.unit(120, "lb"),
  37385. name: "Back",
  37386. image: {
  37387. source: "./media/characters/chyr/back.svg",
  37388. extra: 1323/1252,
  37389. bottom: 48/1371
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(5 + 9/12, "feet"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37403. {
  37404. front: {
  37405. height: math.unit(7, "feet"),
  37406. weight: math.unit(310, "lb"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/solarus/front.svg",
  37410. extra: 2415/2021,
  37411. bottom: 103/2518
  37412. }
  37413. },
  37414. back: {
  37415. height: math.unit(7, "feet"),
  37416. weight: math.unit(310, "lb"),
  37417. name: "Back",
  37418. image: {
  37419. source: "./media/characters/solarus/back.svg",
  37420. extra: 2463/2089,
  37421. bottom: 79/2542
  37422. }
  37423. },
  37424. },
  37425. [
  37426. {
  37427. name: "Normal",
  37428. height: math.unit(7, "feet"),
  37429. default: true
  37430. },
  37431. ]
  37432. ))
  37433. characterMakers.push(() => makeCharacter(
  37434. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37435. {
  37436. front: {
  37437. height: math.unit(16, "feet"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37441. extra: 1844/1780,
  37442. bottom: 58/1902
  37443. }
  37444. },
  37445. winterCoat: {
  37446. height: math.unit(16, "feet"),
  37447. name: "Winter Coat",
  37448. image: {
  37449. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37450. extra: 1807/1775,
  37451. bottom: 69/1876
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(16, "feet"),
  37459. default: true
  37460. },
  37461. {
  37462. name: "Chicago Size",
  37463. height: math.unit(560, "feet")
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37469. {
  37470. front: {
  37471. height: math.unit(11 + 6/12, "feet"),
  37472. weight: math.unit(1366, "lb"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/lexor/front.svg",
  37476. extra: 1560/1481,
  37477. bottom: 211/1771
  37478. }
  37479. },
  37480. back: {
  37481. height: math.unit(11 + 6/12, "feet"),
  37482. weight: math.unit(1366, "lb"),
  37483. name: "Back",
  37484. image: {
  37485. source: "./media/characters/lexor/back.svg",
  37486. extra: 1614/1533,
  37487. bottom: 76/1690
  37488. }
  37489. },
  37490. maw: {
  37491. height: math.unit(3, "feet"),
  37492. name: "Maw",
  37493. image: {
  37494. source: "./media/characters/lexor/maw.svg"
  37495. }
  37496. },
  37497. dick: {
  37498. height: math.unit(2.59, "feet"),
  37499. name: "Dick",
  37500. image: {
  37501. source: "./media/characters/lexor/dick.svg"
  37502. }
  37503. },
  37504. },
  37505. [
  37506. {
  37507. name: "Normal",
  37508. height: math.unit(11 + 6/12, "feet"),
  37509. default: true
  37510. },
  37511. ]
  37512. ))
  37513. characterMakers.push(() => makeCharacter(
  37514. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37515. {
  37516. front: {
  37517. height: math.unit(5 + 8/12, "feet"),
  37518. name: "Front",
  37519. image: {
  37520. source: "./media/characters/magnum/front.svg",
  37521. extra: 942/855,
  37522. bottom: 26/968
  37523. }
  37524. },
  37525. },
  37526. [
  37527. {
  37528. name: "Normal",
  37529. height: math.unit(5 + 8/12, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(18 + 4/12, "feet"),
  37539. weight: math.unit(1500, "kg"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/solas-sharpsman/front.svg",
  37543. extra: 1698/1589,
  37544. bottom: 0/1698
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(18 + 4/12, "feet"),
  37552. default: true
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37558. {
  37559. front: {
  37560. height: math.unit(5 + 5/12, "feet"),
  37561. weight: math.unit(180, "lb"),
  37562. name: "Front",
  37563. image: {
  37564. source: "./media/characters/october/front.svg",
  37565. extra: 1800/1650,
  37566. bottom: 0/1800
  37567. }
  37568. },
  37569. frontNsfw: {
  37570. height: math.unit(5 + 5/12, "feet"),
  37571. weight: math.unit(180, "lb"),
  37572. name: "Front (NSFW)",
  37573. image: {
  37574. source: "./media/characters/october/front-nsfw.svg",
  37575. extra: 1392/1307,
  37576. bottom: 42/1434
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(5 + 5/12, "feet"),
  37584. default: true
  37585. },
  37586. ]
  37587. ))
  37588. characterMakers.push(() => makeCharacter(
  37589. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37590. {
  37591. front: {
  37592. height: math.unit(8 + 6/12, "feet"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/essynkardi/front.svg",
  37596. extra: 1914/1846,
  37597. bottom: 22/1936
  37598. }
  37599. },
  37600. },
  37601. [
  37602. {
  37603. name: "Normal",
  37604. height: math.unit(8 + 6/12, "feet"),
  37605. default: true
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37611. {
  37612. front: {
  37613. height: math.unit(6 + 6/12, "feet"),
  37614. weight: math.unit(7, "lb"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/icky/front.svg",
  37618. extra: 813/782,
  37619. bottom: 66/879
  37620. }
  37621. },
  37622. back: {
  37623. height: math.unit(6 + 6/12, "feet"),
  37624. weight: math.unit(7, "lb"),
  37625. name: "Back",
  37626. image: {
  37627. source: "./media/characters/icky/back.svg",
  37628. extra: 754/735,
  37629. bottom: 56/810
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(6 + 6/12, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(15, "feet"),
  37646. name: "Front",
  37647. image: {
  37648. source: "./media/characters/rojas/front.svg",
  37649. extra: 1462/1408,
  37650. bottom: 95/1557
  37651. }
  37652. },
  37653. back: {
  37654. height: math.unit(15, "feet"),
  37655. name: "Back",
  37656. image: {
  37657. source: "./media/characters/rojas/back.svg",
  37658. extra: 1023/954,
  37659. bottom: 28/1051
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Normal",
  37666. height: math.unit(15, "feet"),
  37667. default: true
  37668. },
  37669. ]
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37673. {
  37674. frontHuman: {
  37675. height: math.unit(5 + 7/12, "feet"),
  37676. name: "Front (Human)",
  37677. image: {
  37678. source: "./media/characters/alek-dryagan/front-human.svg",
  37679. extra: 1687/1667,
  37680. bottom: 69/1756
  37681. }
  37682. },
  37683. backHuman: {
  37684. height: math.unit(5 + 7/12, "feet"),
  37685. name: "Back (Human)",
  37686. image: {
  37687. source: "./media/characters/alek-dryagan/back-human.svg",
  37688. extra: 1670/1649,
  37689. bottom: 65/1735
  37690. }
  37691. },
  37692. frontDemi: {
  37693. height: math.unit(65, "feet"),
  37694. name: "Front (Demi)",
  37695. image: {
  37696. source: "./media/characters/alek-dryagan/front-demi.svg",
  37697. extra: 1669/1642,
  37698. bottom: 49/1718
  37699. }
  37700. },
  37701. backDemi: {
  37702. height: math.unit(65, "feet"),
  37703. name: "Back (Demi)",
  37704. image: {
  37705. source: "./media/characters/alek-dryagan/back-demi.svg",
  37706. extra: 1658/1637,
  37707. bottom: 40/1698
  37708. }
  37709. },
  37710. mawHuman: {
  37711. height: math.unit(0.3, "feet"),
  37712. name: "Maw (Human)",
  37713. image: {
  37714. source: "./media/characters/alek-dryagan/maw-human.svg"
  37715. }
  37716. },
  37717. mawDemi: {
  37718. height: math.unit(3.8, "feet"),
  37719. name: "Maw (Demi)",
  37720. image: {
  37721. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37722. }
  37723. },
  37724. },
  37725. [
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(5 + 7/12, "feet"),
  37729. default: true
  37730. },
  37731. ]
  37732. ))
  37733. characterMakers.push(() => makeCharacter(
  37734. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37735. {
  37736. frontHuman: {
  37737. height: math.unit(5 + 2/12, "feet"),
  37738. name: "Front (Human)",
  37739. image: {
  37740. source: "./media/characters/gen/front-human.svg",
  37741. extra: 1627/1538,
  37742. bottom: 71/1698
  37743. }
  37744. },
  37745. backHuman: {
  37746. height: math.unit(5 + 2/12, "feet"),
  37747. name: "Back (Human)",
  37748. image: {
  37749. source: "./media/characters/gen/back-human.svg",
  37750. extra: 1638/1548,
  37751. bottom: 69/1707
  37752. }
  37753. },
  37754. frontDemi: {
  37755. height: math.unit(5 + 2/12, "feet"),
  37756. name: "Front (Demi)",
  37757. image: {
  37758. source: "./media/characters/gen/front-demi.svg",
  37759. extra: 1627/1538,
  37760. bottom: 71/1698
  37761. }
  37762. },
  37763. backDemi: {
  37764. height: math.unit(5 + 2/12, "feet"),
  37765. name: "Back (Demi)",
  37766. image: {
  37767. source: "./media/characters/gen/back-demi.svg",
  37768. extra: 1638/1548,
  37769. bottom: 69/1707
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(5 + 2/12, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37783. {
  37784. frontImp: {
  37785. height: math.unit(1 + 11/12, "feet"),
  37786. name: "Front (Imp)",
  37787. image: {
  37788. source: "./media/characters/max-kobold/front-imp.svg",
  37789. extra: 1238/1134,
  37790. bottom: 81/1319
  37791. }
  37792. },
  37793. backImp: {
  37794. height: math.unit(1 + 11/12, "feet"),
  37795. name: "Back (Imp)",
  37796. image: {
  37797. source: "./media/characters/max-kobold/back-imp.svg",
  37798. extra: 1334/1175,
  37799. bottom: 34/1368
  37800. }
  37801. },
  37802. frontDemi: {
  37803. height: math.unit(5 + 9/12, "feet"),
  37804. name: "Front (Demi)",
  37805. image: {
  37806. source: "./media/characters/max-kobold/front-demi.svg",
  37807. extra: 1715/1685,
  37808. bottom: 54/1769
  37809. }
  37810. },
  37811. backDemi: {
  37812. height: math.unit(5 + 9/12, "feet"),
  37813. name: "Back (Demi)",
  37814. image: {
  37815. source: "./media/characters/max-kobold/back-demi.svg",
  37816. extra: 1752/1729,
  37817. bottom: 41/1793
  37818. }
  37819. },
  37820. handImp: {
  37821. height: math.unit(0.45, "feet"),
  37822. name: "Hand (Imp)",
  37823. image: {
  37824. source: "./media/characters/max-kobold/hand.svg"
  37825. }
  37826. },
  37827. pawImp: {
  37828. height: math.unit(0.46, "feet"),
  37829. name: "Paw (Imp)",
  37830. image: {
  37831. source: "./media/characters/max-kobold/paw.svg"
  37832. }
  37833. },
  37834. handDemi: {
  37835. height: math.unit(0.80, "feet"),
  37836. name: "Hand (Demi)",
  37837. image: {
  37838. source: "./media/characters/max-kobold/hand.svg"
  37839. }
  37840. },
  37841. pawDemi: {
  37842. height: math.unit(1.1, "feet"),
  37843. name: "Paw (Demi)",
  37844. image: {
  37845. source: "./media/characters/max-kobold/paw.svg"
  37846. }
  37847. },
  37848. headImp: {
  37849. height: math.unit(1.33, "feet"),
  37850. name: "Head (Imp)",
  37851. image: {
  37852. source: "./media/characters/max-kobold/head-imp.svg"
  37853. }
  37854. },
  37855. mawImp: {
  37856. height: math.unit(0.75, "feet"),
  37857. name: "Maw (Imp)",
  37858. image: {
  37859. source: "./media/characters/max-kobold/maw-imp.svg"
  37860. }
  37861. },
  37862. mawDemi: {
  37863. height: math.unit(0.42, "feet"),
  37864. name: "Maw (Demi)",
  37865. image: {
  37866. source: "./media/characters/max-kobold/maw-demi.svg"
  37867. }
  37868. },
  37869. },
  37870. [
  37871. {
  37872. name: "Normal",
  37873. height: math.unit(1 + 11/12, "feet"),
  37874. default: true
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(7 + 5/12, "feet"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/carbon/front.svg",
  37886. extra: 1754/1689,
  37887. bottom: 65/1819
  37888. }
  37889. },
  37890. back: {
  37891. height: math.unit(7 + 5/12, "feet"),
  37892. name: "Back",
  37893. image: {
  37894. source: "./media/characters/carbon/back.svg",
  37895. extra: 1762/1695,
  37896. bottom: 24/1786
  37897. }
  37898. },
  37899. frontGigantamax: {
  37900. height: math.unit(150, "feet"),
  37901. name: "Front (Gigantamax)",
  37902. image: {
  37903. source: "./media/characters/carbon/front-gigantamax.svg",
  37904. extra: 1826/1669,
  37905. bottom: 59/1885
  37906. }
  37907. },
  37908. backGigantamax: {
  37909. height: math.unit(150, "feet"),
  37910. name: "Back (Gigantamax)",
  37911. image: {
  37912. source: "./media/characters/carbon/back-gigantamax.svg",
  37913. extra: 1796/1653,
  37914. bottom: 53/1849
  37915. }
  37916. },
  37917. maw: {
  37918. height: math.unit(0.48, "feet"),
  37919. name: "Maw",
  37920. image: {
  37921. source: "./media/characters/carbon/maw.svg"
  37922. }
  37923. },
  37924. mawGigantamax: {
  37925. height: math.unit(7.5, "feet"),
  37926. name: "Maw (Gigantamax)",
  37927. image: {
  37928. source: "./media/characters/carbon/maw-gigantamax.svg"
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(7 + 5/12, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(6, "feet"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/maverick/front.svg",
  37948. extra: 1672/1661,
  37949. bottom: 85/1757
  37950. }
  37951. },
  37952. back: {
  37953. height: math.unit(6, "feet"),
  37954. name: "Back",
  37955. image: {
  37956. source: "./media/characters/maverick/back.svg",
  37957. extra: 1642/1631,
  37958. bottom: 38/1680
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(6, "feet"),
  37966. default: true
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(15, "feet"),
  37975. weight: math.unit(615, "lb"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/grockle/front.svg",
  37979. extra: 1535/1427,
  37980. bottom: 56/1591
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(15, "feet"),
  37988. default: true
  37989. },
  37990. {
  37991. name: "Large",
  37992. height: math.unit(150, "feet")
  37993. },
  37994. {
  37995. name: "Macro",
  37996. height: math.unit(1876, "feet")
  37997. },
  37998. {
  37999. name: "Mega Macro",
  38000. height: math.unit(121940, "feet")
  38001. },
  38002. {
  38003. name: "Giga Macro",
  38004. height: math.unit(750, "km")
  38005. },
  38006. {
  38007. name: "Tera Macro",
  38008. height: math.unit(750000, "km")
  38009. },
  38010. {
  38011. name: "Galactic",
  38012. height: math.unit(1.4e5, "km")
  38013. },
  38014. {
  38015. name: "Godlike",
  38016. height: math.unit(9.8e280, "galaxies")
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(11, "meters"),
  38025. weight: math.unit(20, "tonnes"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/alistair/front.svg",
  38029. extra: 1265/1009,
  38030. bottom: 93/1358
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(11, "meters"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(5 + 8/12, "feet"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/haruka/front.svg",
  38050. extra: 2012/1952,
  38051. bottom: 0/2012
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(5 + 8/12, "feet"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38065. {
  38066. back: {
  38067. height: math.unit(9, "feet"),
  38068. name: "Back",
  38069. image: {
  38070. source: "./media/characters/vivian-sylveon/back.svg",
  38071. extra: 1853/1714,
  38072. bottom: 0/1853
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(9, "feet"),
  38080. default: true
  38081. },
  38082. {
  38083. name: "Macro",
  38084. height: math.unit(500, "feet")
  38085. },
  38086. {
  38087. name: "Megamacro",
  38088. height: math.unit(600, "miles")
  38089. },
  38090. {
  38091. name: "Gigamacro",
  38092. height: math.unit(30000, "miles")
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38098. {
  38099. anthro: {
  38100. height: math.unit(5 + 10/12, "feet"),
  38101. weight: math.unit(100, "lb"),
  38102. name: "Anthro",
  38103. image: {
  38104. source: "./media/characters/daiki/anthro.svg",
  38105. extra: 1115/1027,
  38106. bottom: 69/1184
  38107. }
  38108. },
  38109. feral: {
  38110. height: math.unit(200, "feet"),
  38111. name: "Feral",
  38112. image: {
  38113. source: "./media/characters/daiki/feral.svg",
  38114. extra: 1256/313,
  38115. bottom: 39/1295
  38116. }
  38117. },
  38118. feralHead: {
  38119. height: math.unit(171, "feet"),
  38120. name: "Feral Head",
  38121. image: {
  38122. source: "./media/characters/daiki/feral-head.svg"
  38123. }
  38124. },
  38125. manaDragon: {
  38126. height: math.unit(170, "meters"),
  38127. name: "Mana-dragon",
  38128. image: {
  38129. source: "./media/characters/daiki/mana-dragon.svg",
  38130. extra: 763/420,
  38131. bottom: 97/860
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(5 + 10/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38145. {
  38146. fullyEquippedFront: {
  38147. height: math.unit(3 + 1/12, "feet"),
  38148. weight: math.unit(24, "lb"),
  38149. name: "Fully Equipped (Front)",
  38150. image: {
  38151. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38152. extra: 687/605,
  38153. bottom: 18/705
  38154. }
  38155. },
  38156. fullyEquippedBack: {
  38157. height: math.unit(3 + 1/12, "feet"),
  38158. weight: math.unit(24, "lb"),
  38159. name: "Fully Equipped (Back)",
  38160. image: {
  38161. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38162. extra: 689/590,
  38163. bottom: 18/707
  38164. }
  38165. },
  38166. dailyWear: {
  38167. height: math.unit(3 + 1/12, "feet"),
  38168. weight: math.unit(24, "lb"),
  38169. name: "Daily Wear",
  38170. image: {
  38171. source: "./media/characters/tea-spot/daily-wear.svg",
  38172. extra: 701/620,
  38173. bottom: 21/722
  38174. }
  38175. },
  38176. maidWork: {
  38177. height: math.unit(3 + 1/12, "feet"),
  38178. weight: math.unit(24, "lb"),
  38179. name: "Maid Work",
  38180. image: {
  38181. source: "./media/characters/tea-spot/maid-work.svg",
  38182. extra: 693/609,
  38183. bottom: 15/708
  38184. }
  38185. },
  38186. },
  38187. [
  38188. {
  38189. name: "Normal",
  38190. height: math.unit(3 + 1/12, "feet"),
  38191. default: true
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38197. {
  38198. front: {
  38199. height: math.unit(175, "cm"),
  38200. weight: math.unit(75, "kg"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/chee/front.svg",
  38204. extra: 1796/1740,
  38205. bottom: 40/1836
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Micro-Micro",
  38212. height: math.unit(1, "nm")
  38213. },
  38214. {
  38215. name: "Micro-erst",
  38216. height: math.unit(1, "micrometer")
  38217. },
  38218. {
  38219. name: "Micro-er",
  38220. height: math.unit(1, "cm")
  38221. },
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(175, "cm"),
  38225. default: true
  38226. },
  38227. {
  38228. name: "Macro",
  38229. height: math.unit(100, "m")
  38230. },
  38231. {
  38232. name: "Macro-er",
  38233. height: math.unit(1, "km")
  38234. },
  38235. {
  38236. name: "Macro-erst",
  38237. height: math.unit(10, "km")
  38238. },
  38239. {
  38240. name: "Macro-Macro",
  38241. height: math.unit(100, "km")
  38242. },
  38243. ]
  38244. ))
  38245. characterMakers.push(() => makeCharacter(
  38246. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38247. {
  38248. front: {
  38249. height: math.unit(11 + 9/12, "feet"),
  38250. weight: math.unit(935, "lb"),
  38251. name: "Front",
  38252. image: {
  38253. source: "./media/characters/kingsley/front.svg",
  38254. extra: 1803/1674,
  38255. bottom: 127/1930
  38256. }
  38257. },
  38258. frontNude: {
  38259. height: math.unit(11 + 9/12, "feet"),
  38260. weight: math.unit(935, "lb"),
  38261. name: "Front (Nude)",
  38262. image: {
  38263. source: "./media/characters/kingsley/front-nude.svg",
  38264. extra: 1803/1674,
  38265. bottom: 127/1930
  38266. }
  38267. },
  38268. },
  38269. [
  38270. {
  38271. name: "Normal",
  38272. height: math.unit(11 + 9/12, "feet"),
  38273. default: true
  38274. },
  38275. ]
  38276. ))
  38277. characterMakers.push(() => makeCharacter(
  38278. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38279. {
  38280. side: {
  38281. height: math.unit(9, "feet"),
  38282. name: "Side",
  38283. image: {
  38284. source: "./media/characters/rymel/side.svg",
  38285. extra: 792/469,
  38286. bottom: 121/913
  38287. }
  38288. },
  38289. maw: {
  38290. height: math.unit(2.4, "meters"),
  38291. name: "Maw",
  38292. image: {
  38293. source: "./media/characters/rymel/maw.svg"
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "House Drake",
  38300. height: math.unit(2, "feet")
  38301. },
  38302. {
  38303. name: "Reduced",
  38304. height: math.unit(4.5, "feet")
  38305. },
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(9, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38315. {
  38316. front: {
  38317. height: math.unit(1.74, "meters"),
  38318. weight: math.unit(55, "kg"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/rubus/front.svg",
  38322. extra: 1894/1742,
  38323. bottom: 44/1938
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(1.74, "meters"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(5 + 2/12, "feet"),
  38340. weight: math.unit(112, "lb"),
  38341. name: "Front",
  38342. image: {
  38343. source: "./media/characters/cassie-kingston/front.svg",
  38344. extra: 1438/1390,
  38345. bottom: 47/1485
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Normal",
  38352. height: math.unit(5 + 2/12, "feet"),
  38353. default: true
  38354. },
  38355. {
  38356. name: "Macro",
  38357. height: math.unit(128, "feet")
  38358. },
  38359. {
  38360. name: "Megamacro",
  38361. height: math.unit(2.56, "miles")
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(7, "feet"),
  38370. name: "Front",
  38371. image: {
  38372. source: "./media/characters/fox/front.svg",
  38373. extra: 1798/1703,
  38374. bottom: 55/1853
  38375. }
  38376. },
  38377. back: {
  38378. height: math.unit(7, "feet"),
  38379. name: "Back",
  38380. image: {
  38381. source: "./media/characters/fox/back.svg",
  38382. extra: 1748/1649,
  38383. bottom: 32/1780
  38384. }
  38385. },
  38386. head: {
  38387. height: math.unit(1.95, "feet"),
  38388. name: "Head",
  38389. image: {
  38390. source: "./media/characters/fox/head.svg"
  38391. }
  38392. },
  38393. dick: {
  38394. height: math.unit(1.33, "feet"),
  38395. name: "Dick",
  38396. image: {
  38397. source: "./media/characters/fox/dick.svg"
  38398. }
  38399. },
  38400. foot: {
  38401. height: math.unit(1, "feet"),
  38402. name: "Foot",
  38403. image: {
  38404. source: "./media/characters/fox/foot.svg"
  38405. }
  38406. },
  38407. paw: {
  38408. height: math.unit(0.92, "feet"),
  38409. name: "Paw",
  38410. image: {
  38411. source: "./media/characters/fox/paw.svg"
  38412. }
  38413. },
  38414. },
  38415. [
  38416. {
  38417. name: "Small",
  38418. height: math.unit(3, "inches")
  38419. },
  38420. {
  38421. name: "\"Realistic\"",
  38422. height: math.unit(7, "feet")
  38423. },
  38424. {
  38425. name: "Normal",
  38426. height: math.unit(150, "feet"),
  38427. default: true
  38428. },
  38429. {
  38430. name: "BIG",
  38431. height: math.unit(1200, "feet")
  38432. },
  38433. {
  38434. name: "👀",
  38435. height: math.unit(5, "miles")
  38436. },
  38437. {
  38438. name: "👀👀👀",
  38439. height: math.unit(64, "miles")
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(625, "feet"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/asonja-rossa/front.svg",
  38451. extra: 1833/1686,
  38452. bottom: 24/1857
  38453. }
  38454. },
  38455. back: {
  38456. height: math.unit(625, "feet"),
  38457. name: "Back",
  38458. image: {
  38459. source: "./media/characters/asonja-rossa/back.svg",
  38460. extra: 1852/1753,
  38461. bottom: 26/1878
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Macro",
  38468. height: math.unit(625, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38475. {
  38476. side: {
  38477. height: math.unit(8, "feet"),
  38478. name: "Side",
  38479. image: {
  38480. source: "./media/characters/rezukii/side.svg",
  38481. extra: 979/542,
  38482. bottom: 87/1066
  38483. }
  38484. },
  38485. sitting: {
  38486. height: math.unit(14.6, "feet"),
  38487. name: "Sitting",
  38488. image: {
  38489. source: "./media/characters/rezukii/sitting.svg",
  38490. extra: 1023/813,
  38491. bottom: 45/1068
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Tiny",
  38498. height: math.unit(2, "feet")
  38499. },
  38500. {
  38501. name: "Smol",
  38502. height: math.unit(4, "feet")
  38503. },
  38504. {
  38505. name: "Normal",
  38506. height: math.unit(8, "feet"),
  38507. default: true
  38508. },
  38509. {
  38510. name: "Big",
  38511. height: math.unit(12, "feet")
  38512. },
  38513. {
  38514. name: "Macro",
  38515. height: math.unit(30, "feet")
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(14, "feet"),
  38524. weight: math.unit(9.5, "tonnes"),
  38525. name: "Front",
  38526. image: {
  38527. source: "./media/characters/dawnheart/front.svg",
  38528. extra: 2792/2675,
  38529. bottom: 64/2856
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(14, "feet"),
  38537. default: true
  38538. },
  38539. ]
  38540. ))
  38541. characterMakers.push(() => makeCharacter(
  38542. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38543. {
  38544. front: {
  38545. height: math.unit(1.7, "m"),
  38546. name: "Front",
  38547. image: {
  38548. source: "./media/characters/gladi/front.svg",
  38549. extra: 1460/1362,
  38550. bottom: 19/1479
  38551. }
  38552. },
  38553. back: {
  38554. height: math.unit(1.7, "m"),
  38555. name: "Back",
  38556. image: {
  38557. source: "./media/characters/gladi/back.svg",
  38558. extra: 1459/1357,
  38559. bottom: 12/1471
  38560. }
  38561. },
  38562. feral: {
  38563. height: math.unit(2.05, "m"),
  38564. name: "Feral",
  38565. image: {
  38566. source: "./media/characters/gladi/feral.svg",
  38567. extra: 821/557,
  38568. bottom: 91/912
  38569. }
  38570. },
  38571. },
  38572. [
  38573. {
  38574. name: "Shortest",
  38575. height: math.unit(70, "cm")
  38576. },
  38577. {
  38578. name: "Normal",
  38579. height: math.unit(1.7, "m")
  38580. },
  38581. {
  38582. name: "Macro",
  38583. height: math.unit(10, "m"),
  38584. default: true
  38585. },
  38586. {
  38587. name: "Tallest",
  38588. height: math.unit(200, "m")
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(5 + 7/12, "feet"),
  38597. weight: math.unit(2, "tons"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/erdno/front.svg",
  38601. extra: 1234/1129,
  38602. bottom: 35/1269
  38603. }
  38604. },
  38605. angled: {
  38606. height: math.unit(5 + 7/12, "feet"),
  38607. weight: math.unit(2, "tons"),
  38608. name: "Angled",
  38609. image: {
  38610. source: "./media/characters/erdno/angled.svg",
  38611. extra: 1185/1139,
  38612. bottom: 36/1221
  38613. }
  38614. },
  38615. side: {
  38616. height: math.unit(5 + 7/12, "feet"),
  38617. weight: math.unit(2, "tons"),
  38618. name: "Side",
  38619. image: {
  38620. source: "./media/characters/erdno/side.svg",
  38621. extra: 1191/1144,
  38622. bottom: 40/1231
  38623. }
  38624. },
  38625. back: {
  38626. height: math.unit(5 + 7/12, "feet"),
  38627. weight: math.unit(2, "tons"),
  38628. name: "Back",
  38629. image: {
  38630. source: "./media/characters/erdno/back.svg",
  38631. extra: 1202/1146,
  38632. bottom: 17/1219
  38633. }
  38634. },
  38635. frontNsfw: {
  38636. height: math.unit(5 + 7/12, "feet"),
  38637. weight: math.unit(2, "tons"),
  38638. name: "Front (NSFW)",
  38639. image: {
  38640. source: "./media/characters/erdno/front-nsfw.svg",
  38641. extra: 1234/1129,
  38642. bottom: 35/1269
  38643. }
  38644. },
  38645. angledNsfw: {
  38646. height: math.unit(5 + 7/12, "feet"),
  38647. weight: math.unit(2, "tons"),
  38648. name: "Angled (NSFW)",
  38649. image: {
  38650. source: "./media/characters/erdno/angled-nsfw.svg",
  38651. extra: 1185/1139,
  38652. bottom: 36/1221
  38653. }
  38654. },
  38655. sideNsfw: {
  38656. height: math.unit(5 + 7/12, "feet"),
  38657. weight: math.unit(2, "tons"),
  38658. name: "Side (NSFW)",
  38659. image: {
  38660. source: "./media/characters/erdno/side-nsfw.svg",
  38661. extra: 1191/1144,
  38662. bottom: 40/1231
  38663. }
  38664. },
  38665. backNsfw: {
  38666. height: math.unit(5 + 7/12, "feet"),
  38667. weight: math.unit(2, "tons"),
  38668. name: "Back (NSFW)",
  38669. image: {
  38670. source: "./media/characters/erdno/back-nsfw.svg",
  38671. extra: 1202/1146,
  38672. bottom: 17/1219
  38673. }
  38674. },
  38675. frontHyper: {
  38676. height: math.unit(5 + 7/12, "feet"),
  38677. weight: math.unit(2, "tons"),
  38678. name: "Front (Hyper)",
  38679. image: {
  38680. source: "./media/characters/erdno/front-hyper.svg",
  38681. extra: 1298/1136,
  38682. bottom: 35/1333
  38683. }
  38684. },
  38685. },
  38686. [
  38687. {
  38688. name: "Normal",
  38689. height: math.unit(5 + 7/12, "feet"),
  38690. default: true
  38691. },
  38692. {
  38693. name: "Big",
  38694. height: math.unit(5.7, "meters")
  38695. },
  38696. {
  38697. name: "Macro",
  38698. height: math.unit(5.7, "kilometers")
  38699. },
  38700. {
  38701. name: "Megamacro",
  38702. height: math.unit(5.7, "earths")
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(5 + 10/12, "feet"),
  38711. weight: math.unit(150, "lb"),
  38712. name: "Front",
  38713. image: {
  38714. source: "./media/characters/jamie/front.svg",
  38715. extra: 1908/1768,
  38716. bottom: 19/1927
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Minimum",
  38723. height: math.unit(2, "cm")
  38724. },
  38725. {
  38726. name: "Micro",
  38727. height: math.unit(3, "inches")
  38728. },
  38729. {
  38730. name: "Normal",
  38731. height: math.unit(5 + 10/12, "feet"),
  38732. default: true
  38733. },
  38734. {
  38735. name: "Macro",
  38736. height: math.unit(150, "feet")
  38737. },
  38738. {
  38739. name: "Megamacro",
  38740. height: math.unit(10000, "m")
  38741. },
  38742. ]
  38743. ))
  38744. characterMakers.push(() => makeCharacter(
  38745. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38746. {
  38747. front: {
  38748. height: math.unit(2, "meters"),
  38749. weight: math.unit(100, "kg"),
  38750. name: "Front",
  38751. image: {
  38752. source: "./media/characters/shiron/front.svg",
  38753. extra: 2103/1985,
  38754. bottom: 98/2201
  38755. }
  38756. },
  38757. back: {
  38758. height: math.unit(2, "meters"),
  38759. weight: math.unit(100, "kg"),
  38760. name: "Back",
  38761. image: {
  38762. source: "./media/characters/shiron/back.svg",
  38763. extra: 2110/2015,
  38764. bottom: 89/2199
  38765. }
  38766. },
  38767. hand: {
  38768. height: math.unit(0.96, "feet"),
  38769. name: "Hand",
  38770. image: {
  38771. source: "./media/characters/shiron/hand.svg"
  38772. }
  38773. },
  38774. foot: {
  38775. height: math.unit(1.464, "feet"),
  38776. name: "Foot",
  38777. image: {
  38778. source: "./media/characters/shiron/foot.svg"
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "Normal",
  38785. height: math.unit(2, "meters")
  38786. },
  38787. {
  38788. name: "Macro",
  38789. height: math.unit(500, "meters"),
  38790. default: true
  38791. },
  38792. {
  38793. name: "Megamacro",
  38794. height: math.unit(20, "km")
  38795. },
  38796. ]
  38797. ))
  38798. characterMakers.push(() => makeCharacter(
  38799. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38800. {
  38801. front: {
  38802. height: math.unit(6, "feet"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/sam/front.svg",
  38806. extra: 849/826,
  38807. bottom: 19/868
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(6, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(8 + 4/12, "feet"),
  38824. weight: math.unit(122, "kg"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/namori-kurogawa/front.svg",
  38828. extra: 1894/1576,
  38829. bottom: 34/1928
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Normal",
  38836. height: math.unit(8 + 4/12, "feet"),
  38837. default: true
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38843. {
  38844. front: {
  38845. height: math.unit(9, "feet"),
  38846. weight: math.unit(621, "lb"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/unmru/front.svg",
  38850. extra: 1853/1747,
  38851. bottom: 73/1926
  38852. }
  38853. },
  38854. side: {
  38855. height: math.unit(9, "feet"),
  38856. weight: math.unit(621, "lb"),
  38857. name: "Side",
  38858. image: {
  38859. source: "./media/characters/unmru/side.svg",
  38860. extra: 1781/1671,
  38861. bottom: 127/1908
  38862. }
  38863. },
  38864. back: {
  38865. height: math.unit(9, "feet"),
  38866. weight: math.unit(621, "lb"),
  38867. name: "Back",
  38868. image: {
  38869. source: "./media/characters/unmru/back.svg",
  38870. extra: 1894/1765,
  38871. bottom: 75/1969
  38872. }
  38873. },
  38874. dick: {
  38875. height: math.unit(3, "feet"),
  38876. weight: math.unit(35, "lb"),
  38877. name: "Dick",
  38878. image: {
  38879. source: "./media/characters/unmru/dick.svg"
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(9, "feet")
  38887. },
  38888. {
  38889. name: "Natural",
  38890. height: math.unit(27, "feet"),
  38891. default: true
  38892. },
  38893. {
  38894. name: "Giant",
  38895. height: math.unit(90, "feet")
  38896. },
  38897. {
  38898. name: "Kaiju",
  38899. height: math.unit(270, "feet")
  38900. },
  38901. {
  38902. name: "Macro",
  38903. height: math.unit(900, "feet")
  38904. },
  38905. {
  38906. name: "Macro+",
  38907. height: math.unit(2700, "feet")
  38908. },
  38909. {
  38910. name: "Megamacro",
  38911. height: math.unit(9000, "feet")
  38912. },
  38913. {
  38914. name: "City-Crushing",
  38915. height: math.unit(27000, "feet")
  38916. },
  38917. {
  38918. name: "Mountain-Mashing",
  38919. height: math.unit(90000, "feet")
  38920. },
  38921. {
  38922. name: "Earth-Eclipsing",
  38923. height: math.unit(2.7e8, "feet")
  38924. },
  38925. {
  38926. name: "Sol-Swallowing",
  38927. height: math.unit(9e10, "feet")
  38928. },
  38929. {
  38930. name: "Majoris-Munching",
  38931. height: math.unit(2.7e13, "feet")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38937. {
  38938. front: {
  38939. height: math.unit(1, "inch"),
  38940. name: "Front",
  38941. image: {
  38942. source: "./media/characters/squeaks-mouse/front.svg",
  38943. extra: 352/308,
  38944. bottom: 25/377
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Micro",
  38951. height: math.unit(1, "inch"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38958. {
  38959. side: {
  38960. height: math.unit(35, "feet"),
  38961. name: "Side",
  38962. image: {
  38963. source: "./media/characters/sayko/side.svg",
  38964. extra: 1697/1021,
  38965. bottom: 82/1779
  38966. }
  38967. },
  38968. head: {
  38969. height: math.unit(16, "feet"),
  38970. name: "Head",
  38971. image: {
  38972. source: "./media/characters/sayko/head.svg"
  38973. }
  38974. },
  38975. forepaw: {
  38976. height: math.unit(7.85, "feet"),
  38977. name: "Forepaw",
  38978. image: {
  38979. source: "./media/characters/sayko/forepaw.svg"
  38980. }
  38981. },
  38982. hindpaw: {
  38983. height: math.unit(8.8, "feet"),
  38984. name: "Hindpaw",
  38985. image: {
  38986. source: "./media/characters/sayko/hindpaw.svg"
  38987. }
  38988. },
  38989. },
  38990. [
  38991. {
  38992. name: "Normal",
  38993. height: math.unit(35, "feet"),
  38994. default: true
  38995. },
  38996. {
  38997. name: "Colossus",
  38998. height: math.unit(100, "meters")
  38999. },
  39000. {
  39001. name: "\"Small\" Deity",
  39002. height: math.unit(1, "km")
  39003. },
  39004. {
  39005. name: "\"Large\" Deity",
  39006. height: math.unit(15, "km")
  39007. },
  39008. ]
  39009. ))
  39010. characterMakers.push(() => makeCharacter(
  39011. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39012. {
  39013. front: {
  39014. height: math.unit(6, "feet"),
  39015. weight: math.unit(250, "lb"),
  39016. name: "Front",
  39017. image: {
  39018. source: "./media/characters/mukiro/front.svg",
  39019. extra: 1368/1310,
  39020. bottom: 34/1402
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(6, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39034. {
  39035. front: {
  39036. height: math.unit(12 + 4/12, "feet"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39040. extra: 1346/1311,
  39041. bottom: 65/1411
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Base",
  39048. height: math.unit(12 + 4/12, "feet"),
  39049. default: true
  39050. },
  39051. {
  39052. name: "Macro",
  39053. height: math.unit(150, "feet")
  39054. },
  39055. {
  39056. name: "Mega",
  39057. height: math.unit(2, "miles")
  39058. },
  39059. {
  39060. name: "Demi God",
  39061. height: math.unit(4, "AU")
  39062. },
  39063. {
  39064. name: "God Size",
  39065. height: math.unit(1, "universe")
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(3 + 3/12, "feet"),
  39074. weight: math.unit(88, "lb"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/trey/front.svg",
  39078. extra: 1815/1509,
  39079. bottom: 60/1875
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(3 + 3/12, "feet"),
  39087. default: true
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39093. {
  39094. front: {
  39095. height: math.unit(4, "meters"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/adelonda/front.svg",
  39099. extra: 1077/982,
  39100. bottom: 39/1116
  39101. }
  39102. },
  39103. back: {
  39104. height: math.unit(4, "meters"),
  39105. name: "Back",
  39106. image: {
  39107. source: "./media/characters/adelonda/back.svg",
  39108. extra: 1105/1003,
  39109. bottom: 25/1130
  39110. }
  39111. },
  39112. feral: {
  39113. height: math.unit(40/1.5, "meters"),
  39114. name: "Feral",
  39115. image: {
  39116. source: "./media/characters/adelonda/feral.svg",
  39117. extra: 597/271,
  39118. bottom: 387/984
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(4, "meters"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(8 + 4/12, "feet"),
  39135. weight: math.unit(670, "lb"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/acadiel/front.svg",
  39139. extra: 1901/1595,
  39140. bottom: 142/2043
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(8 + 4/12, "feet"),
  39148. default: true
  39149. },
  39150. {
  39151. name: "Macro",
  39152. height: math.unit(200, "feet")
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(6 + 2/12, "feet"),
  39161. weight: math.unit(185, "lb"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/kayne-ein/front.svg",
  39165. extra: 1780/1560,
  39166. bottom: 81/1861
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(6 + 2/12, "feet"),
  39174. default: true
  39175. },
  39176. {
  39177. name: "Transformation Stage",
  39178. height: math.unit(15, "feet")
  39179. },
  39180. {
  39181. name: "Macro",
  39182. height: math.unit(150, "feet")
  39183. },
  39184. {
  39185. name: "Earth's Shadow",
  39186. height: math.unit(6200, "miles")
  39187. },
  39188. {
  39189. name: "Universal Demon",
  39190. height: math.unit(28e9, "parsecs")
  39191. },
  39192. {
  39193. name: "Multiverse God",
  39194. height: math.unit(3, "multiverses")
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(5 + 5/12, "feet"),
  39203. name: "Front",
  39204. image: {
  39205. source: "./media/characters/fawn/front.svg",
  39206. extra: 1873/1731,
  39207. bottom: 95/1968
  39208. }
  39209. },
  39210. back: {
  39211. height: math.unit(5 + 5/12, "feet"),
  39212. name: "Back",
  39213. image: {
  39214. source: "./media/characters/fawn/back.svg",
  39215. extra: 1813/1700,
  39216. bottom: 14/1827
  39217. }
  39218. },
  39219. hoof: {
  39220. height: math.unit(1.45, "feet"),
  39221. name: "Hoof",
  39222. image: {
  39223. source: "./media/characters/fawn/hoof.svg"
  39224. }
  39225. },
  39226. },
  39227. [
  39228. {
  39229. name: "Normal",
  39230. height: math.unit(5 + 5/12, "feet"),
  39231. default: true
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(2 + 5/12, "feet"),
  39240. name: "Front",
  39241. image: {
  39242. source: "./media/characters/orion/front.svg",
  39243. extra: 1366/1304,
  39244. bottom: 43/1409
  39245. }
  39246. },
  39247. paw: {
  39248. height: math.unit(0.52, "feet"),
  39249. name: "Paw",
  39250. image: {
  39251. source: "./media/characters/orion/paw.svg"
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(2 + 5/12, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(5 + 10/12, "feet"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/vera/front.svg",
  39271. extra: 1680/1575,
  39272. bottom: 49/1729
  39273. }
  39274. },
  39275. back: {
  39276. height: math.unit(5 + 10/12, "feet"),
  39277. name: "Back",
  39278. image: {
  39279. source: "./media/characters/vera/back.svg",
  39280. extra: 1700/1588,
  39281. bottom: 18/1718
  39282. }
  39283. },
  39284. arcanine: {
  39285. height: math.unit(6 + 8/12, "feet"),
  39286. name: "Arcanine",
  39287. image: {
  39288. source: "./media/characters/vera/arcanine.svg",
  39289. extra: 1590/1511,
  39290. bottom: 71/1661
  39291. }
  39292. },
  39293. maw: {
  39294. height: math.unit(0.82, "feet"),
  39295. name: "Maw",
  39296. image: {
  39297. source: "./media/characters/vera/maw.svg"
  39298. }
  39299. },
  39300. mawArcanine: {
  39301. height: math.unit(0.97, "feet"),
  39302. name: "Maw (Arcanine)",
  39303. image: {
  39304. source: "./media/characters/vera/maw-arcanine.svg"
  39305. }
  39306. },
  39307. paw: {
  39308. height: math.unit(0.75, "feet"),
  39309. name: "Paw",
  39310. image: {
  39311. source: "./media/characters/vera/paw.svg"
  39312. }
  39313. },
  39314. pawprint: {
  39315. height: math.unit(0.52, "feet"),
  39316. name: "Pawprint",
  39317. image: {
  39318. source: "./media/characters/vera/pawprint.svg"
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Normal",
  39325. height: math.unit(5 + 10/12, "feet"),
  39326. default: true
  39327. },
  39328. {
  39329. name: "Macro",
  39330. height: math.unit(75, "feet")
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(4, "feet"),
  39339. weight: math.unit(40, "lb"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/orvan-rabbit/front.svg",
  39343. extra: 1896/1642,
  39344. bottom: 29/1925
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(4, "feet"),
  39352. default: true
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39358. {
  39359. front: {
  39360. height: math.unit(6, "feet"),
  39361. weight: math.unit(168, "lb"),
  39362. name: "Front",
  39363. image: {
  39364. source: "./media/characters/lisa/front.svg",
  39365. extra: 2065/1867,
  39366. bottom: 46/2111
  39367. }
  39368. },
  39369. back: {
  39370. height: math.unit(6, "feet"),
  39371. weight: math.unit(168, "lb"),
  39372. name: "Back",
  39373. image: {
  39374. source: "./media/characters/lisa/back.svg",
  39375. extra: 1982/1838,
  39376. bottom: 29/2011
  39377. }
  39378. },
  39379. maw: {
  39380. height: math.unit(0.81, "feet"),
  39381. name: "Maw",
  39382. image: {
  39383. source: "./media/characters/lisa/maw.svg"
  39384. }
  39385. },
  39386. paw: {
  39387. height: math.unit(0.9, "feet"),
  39388. name: "Paw",
  39389. image: {
  39390. source: "./media/characters/lisa/paw.svg"
  39391. }
  39392. },
  39393. caribousune: {
  39394. height: math.unit(7 + 2/12, "feet"),
  39395. weight: math.unit(268, "lb"),
  39396. name: "Caribousune",
  39397. image: {
  39398. source: "./media/characters/lisa/caribousune.svg",
  39399. extra: 1843/1633,
  39400. bottom: 29/1872
  39401. }
  39402. },
  39403. frontCaribousune: {
  39404. height: math.unit(7 + 2/12, "feet"),
  39405. weight: math.unit(268, "lb"),
  39406. name: "Front (Caribousune)",
  39407. image: {
  39408. source: "./media/characters/lisa/front-caribousune.svg",
  39409. extra: 1818/1638,
  39410. bottom: 52/1870
  39411. }
  39412. },
  39413. sideCaribousune: {
  39414. height: math.unit(7 + 2/12, "feet"),
  39415. weight: math.unit(268, "lb"),
  39416. name: "Side (Caribousune)",
  39417. image: {
  39418. source: "./media/characters/lisa/side-caribousune.svg",
  39419. extra: 1851/1635,
  39420. bottom: 16/1867
  39421. }
  39422. },
  39423. backCaribousune: {
  39424. height: math.unit(7 + 2/12, "feet"),
  39425. weight: math.unit(268, "lb"),
  39426. name: "Back (Caribousune)",
  39427. image: {
  39428. source: "./media/characters/lisa/back-caribousune.svg",
  39429. extra: 1801/1604,
  39430. bottom: 44/1845
  39431. }
  39432. },
  39433. caribou: {
  39434. height: math.unit(7 + 2/12, "feet"),
  39435. weight: math.unit(268, "lb"),
  39436. name: "Caribou",
  39437. image: {
  39438. source: "./media/characters/lisa/caribou.svg",
  39439. extra: 1843/1633,
  39440. bottom: 29/1872
  39441. }
  39442. },
  39443. frontCaribou: {
  39444. height: math.unit(7 + 2/12, "feet"),
  39445. weight: math.unit(268, "lb"),
  39446. name: "Front (Caribou)",
  39447. image: {
  39448. source: "./media/characters/lisa/front-caribou.svg",
  39449. extra: 1818/1638,
  39450. bottom: 52/1870
  39451. }
  39452. },
  39453. sideCaribou: {
  39454. height: math.unit(7 + 2/12, "feet"),
  39455. weight: math.unit(268, "lb"),
  39456. name: "Side (Caribou)",
  39457. image: {
  39458. source: "./media/characters/lisa/side-caribou.svg",
  39459. extra: 1851/1635,
  39460. bottom: 16/1867
  39461. }
  39462. },
  39463. backCaribou: {
  39464. height: math.unit(7 + 2/12, "feet"),
  39465. weight: math.unit(268, "lb"),
  39466. name: "Back (Caribou)",
  39467. image: {
  39468. source: "./media/characters/lisa/back-caribou.svg",
  39469. extra: 1801/1604,
  39470. bottom: 44/1845
  39471. }
  39472. },
  39473. mawCaribou: {
  39474. height: math.unit(1.45, "feet"),
  39475. name: "Maw (Caribou)",
  39476. image: {
  39477. source: "./media/characters/lisa/maw-caribou.svg"
  39478. }
  39479. },
  39480. mawCaribousune: {
  39481. height: math.unit(1.45, "feet"),
  39482. name: "Maw (Caribousune)",
  39483. image: {
  39484. source: "./media/characters/lisa/maw-caribousune.svg"
  39485. }
  39486. },
  39487. pawCaribousune: {
  39488. height: math.unit(1.61, "feet"),
  39489. name: "Paw (Caribou)",
  39490. image: {
  39491. source: "./media/characters/lisa/paw-caribousune.svg"
  39492. }
  39493. },
  39494. },
  39495. [
  39496. {
  39497. name: "Normal",
  39498. height: math.unit(6, "feet")
  39499. },
  39500. {
  39501. name: "God Size",
  39502. height: math.unit(72, "feet"),
  39503. default: true
  39504. },
  39505. {
  39506. name: "Towering",
  39507. height: math.unit(288, "feet")
  39508. },
  39509. {
  39510. name: "City Size",
  39511. height: math.unit(48384, "feet")
  39512. },
  39513. {
  39514. name: "Continental",
  39515. height: math.unit(4200, "miles")
  39516. },
  39517. {
  39518. name: "Planet Eater",
  39519. height: math.unit(42, "earths")
  39520. },
  39521. {
  39522. name: "Star Swallower",
  39523. height: math.unit(42, "solarradii")
  39524. },
  39525. {
  39526. name: "System Swallower",
  39527. height: math.unit(84000, "AU")
  39528. },
  39529. {
  39530. name: "Galaxy Gobbler",
  39531. height: math.unit(42, "galaxies")
  39532. },
  39533. {
  39534. name: "Universe Devourer",
  39535. height: math.unit(42, "universes")
  39536. },
  39537. {
  39538. name: "Multiverse Muncher",
  39539. height: math.unit(42, "multiverses")
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(36, "feet"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/shadow-rat/front.svg",
  39551. extra: 1845/1758,
  39552. bottom: 83/1928
  39553. }
  39554. },
  39555. },
  39556. [
  39557. {
  39558. name: "Macro",
  39559. height: math.unit(36, "feet"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39566. {
  39567. side: {
  39568. height: math.unit(8, "feet"),
  39569. weight: math.unit(2630, "lb"),
  39570. name: "Side",
  39571. image: {
  39572. source: "./media/characters/torallia/side.svg",
  39573. extra: 2164/2021,
  39574. bottom: 371/2535
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Mortal Interaction",
  39581. height: math.unit(8, "feet")
  39582. },
  39583. {
  39584. name: "Natural",
  39585. height: math.unit(24, "feet"),
  39586. default: true
  39587. },
  39588. {
  39589. name: "Giant",
  39590. height: math.unit(80, "feet")
  39591. },
  39592. {
  39593. name: "Kaiju",
  39594. height: math.unit(240, "feet")
  39595. },
  39596. {
  39597. name: "Macro",
  39598. height: math.unit(800, "feet")
  39599. },
  39600. {
  39601. name: "Macro+",
  39602. height: math.unit(2400, "feet")
  39603. },
  39604. {
  39605. name: "Macro++",
  39606. height: math.unit(8000, "feet")
  39607. },
  39608. {
  39609. name: "City-Crushing",
  39610. height: math.unit(24000, "feet")
  39611. },
  39612. {
  39613. name: "Mountain-Mashing",
  39614. height: math.unit(80000, "feet")
  39615. },
  39616. {
  39617. name: "District Demolisher",
  39618. height: math.unit(240000, "feet")
  39619. },
  39620. {
  39621. name: "Tri-County Terror",
  39622. height: math.unit(800000, "feet")
  39623. },
  39624. {
  39625. name: "State Smasher",
  39626. height: math.unit(2.4e6, "feet")
  39627. },
  39628. {
  39629. name: "Nation Nemesis",
  39630. height: math.unit(8e6, "feet")
  39631. },
  39632. {
  39633. name: "Continent Cracker",
  39634. height: math.unit(2.4e7, "feet")
  39635. },
  39636. {
  39637. name: "Planet-Pillaging",
  39638. height: math.unit(8e7, "feet")
  39639. },
  39640. {
  39641. name: "Earth-Eclipsing",
  39642. height: math.unit(2.4e8, "feet")
  39643. },
  39644. {
  39645. name: "Jovian-Jostling",
  39646. height: math.unit(8e8, "feet")
  39647. },
  39648. {
  39649. name: "Gas Giant Gulper",
  39650. height: math.unit(2.4e9, "feet")
  39651. },
  39652. {
  39653. name: "Astral Annihilator",
  39654. height: math.unit(8e9, "feet")
  39655. },
  39656. {
  39657. name: "Celestial Conqueror",
  39658. height: math.unit(2.4e10, "feet")
  39659. },
  39660. {
  39661. name: "Sol-Swallowing",
  39662. height: math.unit(8e10, "feet")
  39663. },
  39664. {
  39665. name: "Hunter of the Heavens",
  39666. height: math.unit(2.4e13, "feet")
  39667. },
  39668. ]
  39669. ))
  39670. characterMakers.push(() => makeCharacter(
  39671. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39672. {
  39673. front: {
  39674. height: math.unit(6 + 8/12, "feet"),
  39675. weight: math.unit(250, "kilograms"),
  39676. volume: math.unit(20, "liters"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/rebecca-pawlson/front.svg",
  39680. extra: 1737/1596,
  39681. bottom: 107/1844
  39682. }
  39683. },
  39684. back: {
  39685. height: math.unit(6 + 8/12, "feet"),
  39686. weight: math.unit(250, "kilograms"),
  39687. volume: math.unit(20, "liters"),
  39688. name: "Back",
  39689. image: {
  39690. source: "./media/characters/rebecca-pawlson/back.svg",
  39691. extra: 1702/1523,
  39692. bottom: 86/1788
  39693. }
  39694. },
  39695. },
  39696. [
  39697. {
  39698. name: "Normal",
  39699. height: math.unit(6 + 8/12, "feet")
  39700. },
  39701. {
  39702. name: "Mini Macro",
  39703. height: math.unit(10, "feet"),
  39704. default: true
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(100, "feet")
  39709. },
  39710. {
  39711. name: "Mega Macro",
  39712. height: math.unit(2500, "feet")
  39713. },
  39714. {
  39715. name: "Giga Macro",
  39716. height: math.unit(50, "miles")
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39722. {
  39723. front: {
  39724. height: math.unit(7 + 6/12, "feet"),
  39725. weight: math.unit(600, "lb"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/moxie-nova/front.svg",
  39729. extra: 1734/1652,
  39730. bottom: 41/1775
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(7 + 6/12, "feet"),
  39738. default: true
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39744. {
  39745. goat: {
  39746. height: math.unit(4, "feet"),
  39747. weight: math.unit(180, "lb"),
  39748. name: "Goat",
  39749. image: {
  39750. source: "./media/characters/tiffany/goat.svg",
  39751. extra: 1845/1595,
  39752. bottom: 106/1951
  39753. }
  39754. },
  39755. front: {
  39756. height: math.unit(5, "feet"),
  39757. weight: math.unit(150, "lb"),
  39758. name: "Foxcoon",
  39759. image: {
  39760. source: "./media/characters/tiffany/foxcoon.svg",
  39761. extra: 1941/1845,
  39762. bottom: 58/1999
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Normal",
  39769. height: math.unit(5, "feet"),
  39770. default: true
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(8, "feet"),
  39779. weight: math.unit(300, "lb"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/raxinath/front.svg",
  39783. extra: 1407/1309,
  39784. bottom: 39/1446
  39785. }
  39786. },
  39787. back: {
  39788. height: math.unit(8, "feet"),
  39789. weight: math.unit(300, "lb"),
  39790. name: "Back",
  39791. image: {
  39792. source: "./media/characters/raxinath/back.svg",
  39793. extra: 1405/1315,
  39794. bottom: 9/1414
  39795. }
  39796. },
  39797. },
  39798. [
  39799. {
  39800. name: "Speck",
  39801. height: math.unit(0.5, "nm")
  39802. },
  39803. {
  39804. name: "Micro",
  39805. height: math.unit(3, "inches")
  39806. },
  39807. {
  39808. name: "Kobold",
  39809. height: math.unit(3, "feet")
  39810. },
  39811. {
  39812. name: "Normal",
  39813. height: math.unit(8, "feet"),
  39814. default: true
  39815. },
  39816. {
  39817. name: "Giant",
  39818. height: math.unit(50, "feet")
  39819. },
  39820. {
  39821. name: "Macro",
  39822. height: math.unit(1000, "feet")
  39823. },
  39824. {
  39825. name: "Megamacro",
  39826. height: math.unit(1, "mile")
  39827. },
  39828. ]
  39829. ))
  39830. characterMakers.push(() => makeCharacter(
  39831. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39832. {
  39833. front: {
  39834. height: math.unit(10, "feet"),
  39835. weight: math.unit(1442, "lb"),
  39836. name: "Front",
  39837. image: {
  39838. source: "./media/characters/mal-dragon/front.svg",
  39839. extra: 1515/1444,
  39840. bottom: 113/1628
  39841. }
  39842. },
  39843. back: {
  39844. height: math.unit(10, "feet"),
  39845. weight: math.unit(1442, "lb"),
  39846. name: "Back",
  39847. image: {
  39848. source: "./media/characters/mal-dragon/back.svg",
  39849. extra: 1527/1434,
  39850. bottom: 25/1552
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Mortal Interaction",
  39857. height: math.unit(10, "feet"),
  39858. default: true
  39859. },
  39860. {
  39861. name: "Large",
  39862. height: math.unit(30, "feet")
  39863. },
  39864. {
  39865. name: "Kaiju",
  39866. height: math.unit(300, "feet")
  39867. },
  39868. {
  39869. name: "Megamacro",
  39870. height: math.unit(10000, "feet")
  39871. },
  39872. {
  39873. name: "Continent Cracker",
  39874. height: math.unit(30000000, "feet")
  39875. },
  39876. {
  39877. name: "Sol-Swallowing",
  39878. height: math.unit(1e11, "feet")
  39879. },
  39880. {
  39881. name: "Light Universal",
  39882. height: math.unit(5, "universes")
  39883. },
  39884. {
  39885. name: "Universe Atoms",
  39886. height: math.unit(1.829e9, "universes")
  39887. },
  39888. {
  39889. name: "Light Multiversal",
  39890. height: math.unit(5, "multiverses")
  39891. },
  39892. {
  39893. name: "Multiverse Atoms",
  39894. height: math.unit(1.829e9, "multiverses")
  39895. },
  39896. {
  39897. name: "Fabric of Time",
  39898. height: math.unit(1e262, "multiverses")
  39899. },
  39900. ]
  39901. ))
  39902. characterMakers.push(() => makeCharacter(
  39903. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39904. {
  39905. front: {
  39906. height: math.unit(9, "feet"),
  39907. weight: math.unit(1050, "lb"),
  39908. name: "Front",
  39909. image: {
  39910. source: "./media/characters/tabitha/front.svg",
  39911. extra: 2083/1994,
  39912. bottom: 68/2151
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Baseline",
  39919. height: math.unit(9, "feet"),
  39920. default: true
  39921. },
  39922. {
  39923. name: "Giant",
  39924. height: math.unit(90, "feet")
  39925. },
  39926. {
  39927. name: "Macro",
  39928. height: math.unit(900, "feet")
  39929. },
  39930. {
  39931. name: "Megamacro",
  39932. height: math.unit(9000, "feet")
  39933. },
  39934. {
  39935. name: "City-Crushing",
  39936. height: math.unit(27000, "feet")
  39937. },
  39938. {
  39939. name: "Mountain-Mashing",
  39940. height: math.unit(90000, "feet")
  39941. },
  39942. {
  39943. name: "Nation Nemesis",
  39944. height: math.unit(9e6, "feet")
  39945. },
  39946. {
  39947. name: "Continent Cracker",
  39948. height: math.unit(27e6, "feet")
  39949. },
  39950. {
  39951. name: "Earth-Eclipsing",
  39952. height: math.unit(2.7e8, "feet")
  39953. },
  39954. {
  39955. name: "Gas Giant Gulper",
  39956. height: math.unit(2.7e9, "feet")
  39957. },
  39958. {
  39959. name: "Sol-Swallowing",
  39960. height: math.unit(9e10, "feet")
  39961. },
  39962. {
  39963. name: "Galaxy Gulper",
  39964. height: math.unit(9, "galaxies")
  39965. },
  39966. {
  39967. name: "Cosmos Churner",
  39968. height: math.unit(9, "universes")
  39969. },
  39970. ]
  39971. ))
  39972. characterMakers.push(() => makeCharacter(
  39973. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39974. {
  39975. front: {
  39976. height: math.unit(160, "cm"),
  39977. weight: math.unit(55, "kg"),
  39978. name: "Front",
  39979. image: {
  39980. source: "./media/characters/tow/front.svg",
  39981. extra: 1751/1722,
  39982. bottom: 74/1825
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Norm",
  39989. height: math.unit(160, "cm")
  39990. },
  39991. {
  39992. name: "Casual",
  39993. height: math.unit(3200, "m"),
  39994. default: true
  39995. },
  39996. {
  39997. name: "Show-Off",
  39998. height: math.unit(160, "km")
  39999. },
  40000. ]
  40001. ))
  40002. characterMakers.push(() => makeCharacter(
  40003. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40004. {
  40005. front: {
  40006. height: math.unit(7 + 11/12, "feet"),
  40007. weight: math.unit(342.8, "lb"),
  40008. name: "Front",
  40009. image: {
  40010. source: "./media/characters/vivian-orca-dragon/front.svg",
  40011. extra: 1890/1865,
  40012. bottom: 28/1918
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Micro",
  40019. height: math.unit(5, "inches")
  40020. },
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(7 + 11/12, "feet"),
  40024. default: true
  40025. },
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(395 + 7/12, "feet")
  40029. },
  40030. ]
  40031. ))
  40032. characterMakers.push(() => makeCharacter(
  40033. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40034. {
  40035. side: {
  40036. height: math.unit(10, "feet"),
  40037. weight: math.unit(1442, "lb"),
  40038. name: "Side",
  40039. image: {
  40040. source: "./media/characters/lotherakon/side.svg",
  40041. extra: 1604/1497,
  40042. bottom: 89/1693
  40043. }
  40044. },
  40045. },
  40046. [
  40047. {
  40048. name: "Mortal Interaction",
  40049. height: math.unit(10, "feet")
  40050. },
  40051. {
  40052. name: "Large",
  40053. height: math.unit(30, "feet"),
  40054. default: true
  40055. },
  40056. {
  40057. name: "Giant",
  40058. height: math.unit(100, "feet")
  40059. },
  40060. {
  40061. name: "Kaiju",
  40062. height: math.unit(300, "feet")
  40063. },
  40064. {
  40065. name: "Macro",
  40066. height: math.unit(1000, "feet")
  40067. },
  40068. {
  40069. name: "Macro+",
  40070. height: math.unit(3000, "feet")
  40071. },
  40072. {
  40073. name: "Megamacro",
  40074. height: math.unit(10000, "feet")
  40075. },
  40076. {
  40077. name: "City-Crushing",
  40078. height: math.unit(30000, "feet")
  40079. },
  40080. {
  40081. name: "Continent Cracker",
  40082. height: math.unit(30e6, "feet")
  40083. },
  40084. {
  40085. name: "Earth Eclipsing",
  40086. height: math.unit(3e8, "feet")
  40087. },
  40088. {
  40089. name: "Gas Giant Gulper",
  40090. height: math.unit(3e9, "feet")
  40091. },
  40092. {
  40093. name: "Sol-Swallowing",
  40094. height: math.unit(1e11, "feet")
  40095. },
  40096. {
  40097. name: "System Swallower",
  40098. height: math.unit(3e14, "feet")
  40099. },
  40100. {
  40101. name: "Galaxy Gulper",
  40102. height: math.unit(10, "galaxies")
  40103. },
  40104. {
  40105. name: "Light Universal",
  40106. height: math.unit(5, "universes")
  40107. },
  40108. {
  40109. name: "Universe Palm",
  40110. height: math.unit(20, "universes")
  40111. },
  40112. {
  40113. name: "Light Multiversal",
  40114. height: math.unit(5, "multiverses")
  40115. },
  40116. {
  40117. name: "Multiverse Palm",
  40118. height: math.unit(20, "multiverses")
  40119. },
  40120. {
  40121. name: "Inferno Incarnate",
  40122. height: math.unit(1e7, "multiverses")
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(8, "feet"),
  40131. weight: math.unit(1200, "lb"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/malithee/front.svg",
  40135. extra: 1675/1640,
  40136. bottom: 162/1837
  40137. }
  40138. },
  40139. },
  40140. [
  40141. {
  40142. name: "Mortal Interaction",
  40143. height: math.unit(8, "feet"),
  40144. default: true
  40145. },
  40146. {
  40147. name: "Large",
  40148. height: math.unit(24, "feet")
  40149. },
  40150. {
  40151. name: "Kaiju",
  40152. height: math.unit(240, "feet")
  40153. },
  40154. {
  40155. name: "Megamacro",
  40156. height: math.unit(8000, "feet")
  40157. },
  40158. {
  40159. name: "Continent Cracker",
  40160. height: math.unit(24e6, "feet")
  40161. },
  40162. {
  40163. name: "Earth-Eclipsing",
  40164. height: math.unit(2.4e8, "feet")
  40165. },
  40166. {
  40167. name: "Sol-Swallowing",
  40168. height: math.unit(8e10, "feet")
  40169. },
  40170. {
  40171. name: "Galaxy Gulper",
  40172. height: math.unit(8, "galaxies")
  40173. },
  40174. {
  40175. name: "Light Universal",
  40176. height: math.unit(4, "universes")
  40177. },
  40178. {
  40179. name: "Universe Atoms",
  40180. height: math.unit(1.829e9, "universes")
  40181. },
  40182. {
  40183. name: "Light Multiversal",
  40184. height: math.unit(4, "multiverses")
  40185. },
  40186. {
  40187. name: "Multiverse Atoms",
  40188. height: math.unit(1.829e9, "multiverses")
  40189. },
  40190. {
  40191. name: "Nigh-Omnipresence",
  40192. height: math.unit(8e261, "multiverses")
  40193. },
  40194. ]
  40195. ))
  40196. characterMakers.push(() => makeCharacter(
  40197. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40198. {
  40199. front: {
  40200. height: math.unit(10, "feet"),
  40201. weight: math.unit(1500, "lb"),
  40202. name: "Front",
  40203. image: {
  40204. source: "./media/characters/miles-thestia/front.svg",
  40205. extra: 1812/1727,
  40206. bottom: 86/1898
  40207. }
  40208. },
  40209. back: {
  40210. height: math.unit(10, "feet"),
  40211. weight: math.unit(1500, "lb"),
  40212. name: "Back",
  40213. image: {
  40214. source: "./media/characters/miles-thestia/back.svg",
  40215. extra: 1799/1690,
  40216. bottom: 47/1846
  40217. }
  40218. },
  40219. frontNsfw: {
  40220. height: math.unit(10, "feet"),
  40221. weight: math.unit(1500, "lb"),
  40222. name: "Front (NSFW)",
  40223. image: {
  40224. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40225. extra: 1812/1727,
  40226. bottom: 86/1898
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Mini-Macro",
  40233. height: math.unit(10, "feet"),
  40234. default: true
  40235. },
  40236. ]
  40237. ))
  40238. characterMakers.push(() => makeCharacter(
  40239. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40240. {
  40241. front: {
  40242. height: math.unit(25, "feet"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/titan-s-wulf/front.svg",
  40246. extra: 1560/1484,
  40247. bottom: 76/1636
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Smallest",
  40254. height: math.unit(25, "feet"),
  40255. default: true
  40256. },
  40257. {
  40258. name: "Normal",
  40259. height: math.unit(200, "feet")
  40260. },
  40261. {
  40262. name: "Macro",
  40263. height: math.unit(200000, "feet")
  40264. },
  40265. {
  40266. name: "Multiversal Original",
  40267. height: math.unit(10000, "multiverses")
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(8, "feet"),
  40276. weight: math.unit(553, "lb"),
  40277. name: "Front",
  40278. image: {
  40279. source: "./media/characters/tawendeh/front.svg",
  40280. extra: 2365/2268,
  40281. bottom: 83/2448
  40282. }
  40283. },
  40284. frontClothed: {
  40285. height: math.unit(8, "feet"),
  40286. weight: math.unit(553, "lb"),
  40287. name: "Front (Clothed)",
  40288. image: {
  40289. source: "./media/characters/tawendeh/front-clothed.svg",
  40290. extra: 2365/2268,
  40291. bottom: 83/2448
  40292. }
  40293. },
  40294. back: {
  40295. height: math.unit(8, "feet"),
  40296. weight: math.unit(553, "lb"),
  40297. name: "Back",
  40298. image: {
  40299. source: "./media/characters/tawendeh/back.svg",
  40300. extra: 2397/2294,
  40301. bottom: 42/2439
  40302. }
  40303. },
  40304. },
  40305. [
  40306. {
  40307. name: "Mortal Interaction",
  40308. height: math.unit(8, "feet"),
  40309. default: true
  40310. },
  40311. {
  40312. name: "Giant",
  40313. height: math.unit(80, "feet")
  40314. },
  40315. {
  40316. name: "Macro",
  40317. height: math.unit(800, "feet")
  40318. },
  40319. {
  40320. name: "Megamacro",
  40321. height: math.unit(8000, "feet")
  40322. },
  40323. {
  40324. name: "City-Crushing",
  40325. height: math.unit(24000, "feet")
  40326. },
  40327. {
  40328. name: "Mountain-Mashing",
  40329. height: math.unit(80000, "feet")
  40330. },
  40331. {
  40332. name: "Nation Nemesis",
  40333. height: math.unit(8e6, "feet")
  40334. },
  40335. {
  40336. name: "Continent Cracker",
  40337. height: math.unit(24e6, "feet")
  40338. },
  40339. {
  40340. name: "Earth-Eclipsing",
  40341. height: math.unit(2.4e8, "feet")
  40342. },
  40343. {
  40344. name: "Gas Giant Gulper",
  40345. height: math.unit(2.4e9, "feet")
  40346. },
  40347. {
  40348. name: "Sol-Swallowing",
  40349. height: math.unit(8e10, "feet")
  40350. },
  40351. {
  40352. name: "Galaxy Gulper",
  40353. height: math.unit(8, "galaxies")
  40354. },
  40355. {
  40356. name: "Cosmos Churner",
  40357. height: math.unit(8, "universes")
  40358. },
  40359. {
  40360. name: "Omnipotent Otter",
  40361. height: math.unit(80, "universes")
  40362. },
  40363. ]
  40364. ))
  40365. characterMakers.push(() => makeCharacter(
  40366. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40367. {
  40368. front: {
  40369. height: math.unit(2.6, "meters"),
  40370. weight: math.unit(900, "kg"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/neesha/front.svg",
  40374. extra: 1803/1653,
  40375. bottom: 128/1931
  40376. }
  40377. },
  40378. },
  40379. [
  40380. {
  40381. name: "Normal",
  40382. height: math.unit(2.6, "meters"),
  40383. default: true
  40384. },
  40385. {
  40386. name: "Macro",
  40387. height: math.unit(50, "meters")
  40388. },
  40389. ]
  40390. ))
  40391. characterMakers.push(() => makeCharacter(
  40392. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40393. {
  40394. front: {
  40395. height: math.unit(5, "feet"),
  40396. weight: math.unit(185, "lb"),
  40397. name: "Front",
  40398. image: {
  40399. source: "./media/characters/kyera/front.svg",
  40400. extra: 1875/1790,
  40401. bottom: 96/1971
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Normal",
  40408. height: math.unit(5, "feet"),
  40409. default: true
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(7 + 6/12, "feet"),
  40418. weight: math.unit(540, "lb"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/yuko/front.svg",
  40422. extra: 1282/1222,
  40423. bottom: 101/1383
  40424. }
  40425. },
  40426. frontClothed: {
  40427. height: math.unit(7 + 6/12, "feet"),
  40428. weight: math.unit(540, "lb"),
  40429. name: "Front (Clothed)",
  40430. image: {
  40431. source: "./media/characters/yuko/front-clothed.svg",
  40432. extra: 1282/1222,
  40433. bottom: 101/1383
  40434. }
  40435. },
  40436. },
  40437. [
  40438. {
  40439. name: "Normal",
  40440. height: math.unit(7 + 6/12, "feet"),
  40441. default: true
  40442. },
  40443. {
  40444. name: "Macro",
  40445. height: math.unit(26 + 9/12, "feet")
  40446. },
  40447. {
  40448. name: "Megamacro",
  40449. height: math.unit(300, "feet")
  40450. },
  40451. {
  40452. name: "Gigamacro",
  40453. height: math.unit(5000, "feet")
  40454. },
  40455. {
  40456. name: "Planetary",
  40457. height: math.unit(10000, "miles")
  40458. },
  40459. ]
  40460. ))
  40461. characterMakers.push(() => makeCharacter(
  40462. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40463. {
  40464. front: {
  40465. height: math.unit(8 + 2/12, "feet"),
  40466. weight: math.unit(600, "lb"),
  40467. name: "Front",
  40468. image: {
  40469. source: "./media/characters/deam-nitrel/front.svg",
  40470. extra: 1308/1234,
  40471. bottom: 125/1433
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Normal",
  40478. height: math.unit(8 + 2/12, "feet"),
  40479. default: true
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40485. {
  40486. front: {
  40487. height: math.unit(6.1, "feet"),
  40488. weight: math.unit(180, "lb"),
  40489. name: "Front",
  40490. image: {
  40491. source: "./media/characters/skyress/front.svg",
  40492. extra: 1045/915,
  40493. bottom: 28/1073
  40494. }
  40495. },
  40496. maw: {
  40497. height: math.unit(1, "feet"),
  40498. name: "Maw",
  40499. image: {
  40500. source: "./media/characters/skyress/maw.svg"
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Normal",
  40507. height: math.unit(6.1, "feet"),
  40508. default: true
  40509. },
  40510. {
  40511. name: "Macro",
  40512. height: math.unit(200, "feet")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(4 + 2/12, "feet"),
  40521. weight: math.unit(40, "kg"),
  40522. name: "Front",
  40523. image: {
  40524. source: "./media/characters/amethyst-jones/front.svg",
  40525. extra: 1220/1150,
  40526. bottom: 101/1321
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Normal",
  40533. height: math.unit(4 + 2/12, "feet"),
  40534. default: true
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(1.7, "m"),
  40543. weight: math.unit(135, "lb"),
  40544. name: "Front",
  40545. image: {
  40546. source: "./media/characters/jade/front.svg",
  40547. extra: 1818/1767,
  40548. bottom: 32/1850
  40549. }
  40550. },
  40551. back: {
  40552. height: math.unit(1.7, "m"),
  40553. weight: math.unit(135, "lb"),
  40554. name: "Back",
  40555. image: {
  40556. source: "./media/characters/jade/back.svg",
  40557. extra: 1869/1809,
  40558. bottom: 35/1904
  40559. }
  40560. },
  40561. hand: {
  40562. height: math.unit(0.24, "m"),
  40563. name: "Hand",
  40564. image: {
  40565. source: "./media/characters/jade/hand.svg"
  40566. }
  40567. },
  40568. foot: {
  40569. height: math.unit(0.263, "m"),
  40570. name: "Foot",
  40571. image: {
  40572. source: "./media/characters/jade/foot.svg"
  40573. }
  40574. },
  40575. dick: {
  40576. height: math.unit(0.47, "m"),
  40577. name: "Dick",
  40578. image: {
  40579. source: "./media/characters/jade/dick.svg"
  40580. }
  40581. },
  40582. },
  40583. [
  40584. {
  40585. name: "Micro",
  40586. height: math.unit(22, "cm")
  40587. },
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(1.7, "m"),
  40591. default: true
  40592. },
  40593. {
  40594. name: "Macro",
  40595. height: math.unit(152, "m")
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40601. {
  40602. front: {
  40603. height: math.unit(100, "miles"),
  40604. weight: math.unit(20000, "tons"),
  40605. name: "Front",
  40606. image: {
  40607. source: "./media/characters/cookie/front.svg",
  40608. extra: 1125/1070,
  40609. bottom: 30/1155
  40610. }
  40611. },
  40612. },
  40613. [
  40614. {
  40615. name: "Big",
  40616. height: math.unit(50, "feet")
  40617. },
  40618. {
  40619. name: "Macro",
  40620. height: math.unit(100, "miles"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Megamacro",
  40625. height: math.unit(90000, "miles")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(6, "feet"),
  40634. weight: math.unit(145, "lb"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/farzian/front.svg",
  40638. extra: 1902/1693,
  40639. bottom: 108/2010
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Macro",
  40646. height: math.unit(500, "feet"),
  40647. default: true
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40653. {
  40654. front: {
  40655. height: math.unit(3 + 6/12, "feet"),
  40656. weight: math.unit(50, "lb"),
  40657. name: "Front",
  40658. image: {
  40659. source: "./media/characters/kimberly-tilson/front.svg",
  40660. extra: 1400/1322,
  40661. bottom: 36/1436
  40662. }
  40663. },
  40664. back: {
  40665. height: math.unit(3 + 6/12, "feet"),
  40666. weight: math.unit(50, "lb"),
  40667. name: "Back",
  40668. image: {
  40669. source: "./media/characters/kimberly-tilson/back.svg",
  40670. extra: 1370/1307,
  40671. bottom: 20/1390
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(3 + 6/12, "feet"),
  40679. default: true
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(1148, "feet"),
  40688. weight: math.unit(34057, "lb"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/harthos/front.svg",
  40692. extra: 1391/1339,
  40693. bottom: 13/1404
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Macro",
  40700. height: math.unit(1148, "feet"),
  40701. default: true
  40702. },
  40703. ]
  40704. ))
  40705. characterMakers.push(() => makeCharacter(
  40706. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40707. {
  40708. front: {
  40709. height: math.unit(15, "feet"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/hypatia/front.svg",
  40713. extra: 1653/1591,
  40714. bottom: 79/1732
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(15, "feet")
  40722. },
  40723. {
  40724. name: "Small",
  40725. height: math.unit(300, "feet")
  40726. },
  40727. {
  40728. name: "Macro",
  40729. height: math.unit(2500, "feet"),
  40730. default: true
  40731. },
  40732. {
  40733. name: "Mega Macro",
  40734. height: math.unit(1500, "miles")
  40735. },
  40736. {
  40737. name: "Giga Macro",
  40738. height: math.unit(1.5e6, "miles")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(6, "feet"),
  40747. weight: math.unit(200, "lb"),
  40748. name: "Front",
  40749. image: {
  40750. source: "./media/characters/wulver/front.svg",
  40751. extra: 1724/1632,
  40752. bottom: 130/1854
  40753. }
  40754. },
  40755. frontNsfw: {
  40756. height: math.unit(6, "feet"),
  40757. weight: math.unit(200, "lb"),
  40758. name: "Front (NSFW)",
  40759. image: {
  40760. source: "./media/characters/wulver/front-nsfw.svg",
  40761. extra: 1724/1632,
  40762. bottom: 130/1854
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Human-Sized",
  40769. height: math.unit(6, "feet")
  40770. },
  40771. {
  40772. name: "Normal",
  40773. height: math.unit(4, "meters"),
  40774. default: true
  40775. },
  40776. {
  40777. name: "Large",
  40778. height: math.unit(6, "m")
  40779. },
  40780. ]
  40781. ))
  40782. characterMakers.push(() => makeCharacter(
  40783. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40784. {
  40785. front: {
  40786. height: math.unit(7, "feet"),
  40787. name: "Front",
  40788. image: {
  40789. source: "./media/characters/maru/front.svg",
  40790. extra: 1595/1570,
  40791. bottom: 0/1595
  40792. }
  40793. },
  40794. },
  40795. [
  40796. {
  40797. name: "Normal",
  40798. height: math.unit(7, "feet"),
  40799. default: true
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(700, "feet")
  40804. },
  40805. {
  40806. name: "Mega Macro",
  40807. height: math.unit(25, "miles")
  40808. },
  40809. ]
  40810. ))
  40811. characterMakers.push(() => makeCharacter(
  40812. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40813. {
  40814. front: {
  40815. height: math.unit(6, "feet"),
  40816. weight: math.unit(170, "lb"),
  40817. name: "Front",
  40818. image: {
  40819. source: "./media/characters/xenon/front.svg",
  40820. extra: 1376/1305,
  40821. bottom: 56/1432
  40822. }
  40823. },
  40824. back: {
  40825. height: math.unit(6, "feet"),
  40826. weight: math.unit(170, "lb"),
  40827. name: "Back",
  40828. image: {
  40829. source: "./media/characters/xenon/back.svg",
  40830. extra: 1328/1259,
  40831. bottom: 95/1423
  40832. }
  40833. },
  40834. maw: {
  40835. height: math.unit(0.52, "feet"),
  40836. name: "Maw",
  40837. image: {
  40838. source: "./media/characters/xenon/maw.svg"
  40839. }
  40840. },
  40841. hand: {
  40842. height: math.unit(0.82, "feet"),
  40843. name: "Hand",
  40844. image: {
  40845. source: "./media/characters/xenon/hand.svg"
  40846. }
  40847. },
  40848. foot: {
  40849. height: math.unit(1.13, "feet"),
  40850. name: "Foot",
  40851. image: {
  40852. source: "./media/characters/xenon/foot.svg"
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Micro",
  40859. height: math.unit(0.8, "inches")
  40860. },
  40861. {
  40862. name: "Normal",
  40863. height: math.unit(6, "feet")
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(50, "feet"),
  40868. default: true
  40869. },
  40870. {
  40871. name: "Macro+",
  40872. height: math.unit(250, "feet")
  40873. },
  40874. {
  40875. name: "Megamacro",
  40876. height: math.unit(1500, "feet")
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(7 + 5/12, "feet"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/zane/front.svg",
  40888. extra: 1260/1203,
  40889. bottom: 94/1354
  40890. }
  40891. },
  40892. back: {
  40893. height: math.unit(5.05, "feet"),
  40894. name: "Back",
  40895. image: {
  40896. source: "./media/characters/zane/back.svg",
  40897. extra: 893/829,
  40898. bottom: 30/923
  40899. }
  40900. },
  40901. werewolf: {
  40902. height: math.unit(11, "feet"),
  40903. name: "Werewolf",
  40904. image: {
  40905. source: "./media/characters/zane/werewolf.svg",
  40906. extra: 1383/1323,
  40907. bottom: 89/1472
  40908. }
  40909. },
  40910. foot: {
  40911. height: math.unit(1.46, "feet"),
  40912. name: "Foot",
  40913. image: {
  40914. source: "./media/characters/zane/foot.svg"
  40915. }
  40916. },
  40917. footFront: {
  40918. height: math.unit(0.784, "feet"),
  40919. name: "Foot (Front)",
  40920. image: {
  40921. source: "./media/characters/zane/foot-front.svg"
  40922. }
  40923. },
  40924. dick: {
  40925. height: math.unit(1.95, "feet"),
  40926. name: "Dick",
  40927. image: {
  40928. source: "./media/characters/zane/dick.svg"
  40929. }
  40930. },
  40931. dickWerewolf: {
  40932. height: math.unit(3.77, "feet"),
  40933. name: "Dick (Werewolf)",
  40934. image: {
  40935. source: "./media/characters/zane/dick.svg"
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(7 + 5/12, "feet"),
  40943. default: true
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(6 + 2/12, "feet"),
  40952. weight: math.unit(284, "lb"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/benni-desparque/front.svg",
  40956. extra: 1353/1126,
  40957. bottom: 69/1422
  40958. }
  40959. },
  40960. },
  40961. [
  40962. {
  40963. name: "Civilian",
  40964. height: math.unit(6 + 2/12, "feet")
  40965. },
  40966. {
  40967. name: "Normal",
  40968. height: math.unit(98, "feet"),
  40969. default: true
  40970. },
  40971. {
  40972. name: "Kaiju Fighter",
  40973. height: math.unit(268, "feet")
  40974. },
  40975. ]
  40976. ))
  40977. characterMakers.push(() => makeCharacter(
  40978. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40979. {
  40980. front: {
  40981. height: math.unit(5, "feet"),
  40982. weight: math.unit(105, "lb"),
  40983. name: "Front",
  40984. image: {
  40985. source: "./media/characters/maxine/front.svg",
  40986. extra: 1386/1250,
  40987. bottom: 71/1457
  40988. }
  40989. },
  40990. },
  40991. [
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(5, "feet"),
  40995. default: true
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(11 + 7/12, "feet"),
  41004. weight: math.unit(9576, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/scaly/front.svg",
  41008. extra: 888/867,
  41009. bottom: 36/924
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Normal",
  41016. height: math.unit(11 + 7/12, "feet"),
  41017. default: true
  41018. },
  41019. ]
  41020. ))
  41021. characterMakers.push(() => makeCharacter(
  41022. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41023. {
  41024. front: {
  41025. height: math.unit(6 + 3/12, "feet"),
  41026. name: "Front",
  41027. image: {
  41028. source: "./media/characters/saelria/front.svg",
  41029. extra: 1243/1138,
  41030. bottom: 46/1289
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Micro",
  41037. height: math.unit(6, "inches"),
  41038. },
  41039. {
  41040. name: "Normal",
  41041. height: math.unit(6 + 3/12, "feet"),
  41042. default: true
  41043. },
  41044. {
  41045. name: "Macro",
  41046. height: math.unit(25, "feet")
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(80, "meters"),
  41055. weight: math.unit(7000, "tonnes"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/tef/front.svg",
  41059. extra: 2036/1991,
  41060. bottom: 54/2090
  41061. }
  41062. },
  41063. back: {
  41064. height: math.unit(80, "meters"),
  41065. weight: math.unit(7000, "tonnes"),
  41066. name: "Back",
  41067. image: {
  41068. source: "./media/characters/tef/back.svg",
  41069. extra: 2036/1991,
  41070. bottom: 54/2090
  41071. }
  41072. },
  41073. },
  41074. [
  41075. {
  41076. name: "Macro",
  41077. height: math.unit(80, "meters"),
  41078. default: true
  41079. },
  41080. ]
  41081. ))
  41082. characterMakers.push(() => makeCharacter(
  41083. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41084. {
  41085. front: {
  41086. height: math.unit(13, "feet"),
  41087. weight: math.unit(6, "tons"),
  41088. name: "Front",
  41089. image: {
  41090. source: "./media/characters/rover/front.svg",
  41091. extra: 1233/1156,
  41092. bottom: 50/1283
  41093. }
  41094. },
  41095. back: {
  41096. height: math.unit(13, "feet"),
  41097. weight: math.unit(6, "tons"),
  41098. name: "Back",
  41099. image: {
  41100. source: "./media/characters/rover/back.svg",
  41101. extra: 1327/1258,
  41102. bottom: 39/1366
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(13, "feet"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Macro",
  41114. height: math.unit(1300, "feet")
  41115. },
  41116. {
  41117. name: "Megamacro",
  41118. height: math.unit(1300, "miles")
  41119. },
  41120. {
  41121. name: "Gigamacro",
  41122. height: math.unit(1300000, "miles")
  41123. },
  41124. ]
  41125. ))
  41126. characterMakers.push(() => makeCharacter(
  41127. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41128. {
  41129. front: {
  41130. height: math.unit(6, "feet"),
  41131. weight: math.unit(150, "lb"),
  41132. name: "Front",
  41133. image: {
  41134. source: "./media/characters/ariz/front.svg",
  41135. extra: 1401/1346,
  41136. bottom: 5/1406
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(10, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(6, "feet"),
  41153. weight: math.unit(140, "lb"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/sigrun/front.svg",
  41157. extra: 1418/1359,
  41158. bottom: 27/1445
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Macro",
  41165. height: math.unit(35, "feet"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41172. {
  41173. front: {
  41174. height: math.unit(6, "feet"),
  41175. weight: math.unit(150, "lb"),
  41176. name: "Front",
  41177. image: {
  41178. source: "./media/characters/numin/front.svg",
  41179. extra: 1433/1388,
  41180. bottom: 12/1445
  41181. }
  41182. },
  41183. },
  41184. [
  41185. {
  41186. name: "Macro",
  41187. height: math.unit(21.5, "km"),
  41188. default: true
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41194. {
  41195. front: {
  41196. height: math.unit(6, "feet"),
  41197. weight: math.unit(463, "lb"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/melwa/front.svg",
  41201. extra: 1307/1248,
  41202. bottom: 93/1400
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Macro",
  41209. height: math.unit(50, "meters"),
  41210. default: true
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(325, "feet"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/zorkaiju/front.svg",
  41222. extra: 1955/1814,
  41223. bottom: 40/1995
  41224. }
  41225. },
  41226. frontExtended: {
  41227. height: math.unit(325, "feet"),
  41228. name: "Front (Extended)",
  41229. image: {
  41230. source: "./media/characters/zorkaiju/front-extended.svg",
  41231. extra: 1955/1814,
  41232. bottom: 40/1995
  41233. }
  41234. },
  41235. side: {
  41236. height: math.unit(325, "feet"),
  41237. name: "Side",
  41238. image: {
  41239. source: "./media/characters/zorkaiju/side.svg",
  41240. extra: 1495/1396,
  41241. bottom: 17/1512
  41242. }
  41243. },
  41244. sideExtended: {
  41245. height: math.unit(325, "feet"),
  41246. name: "Side (Extended)",
  41247. image: {
  41248. source: "./media/characters/zorkaiju/side-extended.svg",
  41249. extra: 1495/1396,
  41250. bottom: 17/1512
  41251. }
  41252. },
  41253. back: {
  41254. height: math.unit(325, "feet"),
  41255. name: "Back",
  41256. image: {
  41257. source: "./media/characters/zorkaiju/back.svg",
  41258. extra: 1959/1821,
  41259. bottom: 31/1990
  41260. }
  41261. },
  41262. backExtended: {
  41263. height: math.unit(325, "feet"),
  41264. name: "Back (Extended)",
  41265. image: {
  41266. source: "./media/characters/zorkaiju/back-extended.svg",
  41267. extra: 1959/1821,
  41268. bottom: 31/1990
  41269. }
  41270. },
  41271. hand: {
  41272. height: math.unit(58.4, "feet"),
  41273. name: "Hand",
  41274. image: {
  41275. source: "./media/characters/zorkaiju/hand.svg"
  41276. }
  41277. },
  41278. handExtended: {
  41279. height: math.unit(61.4, "feet"),
  41280. name: "Hand (Extended)",
  41281. image: {
  41282. source: "./media/characters/zorkaiju/hand-extended.svg"
  41283. }
  41284. },
  41285. foot: {
  41286. height: math.unit(95, "feet"),
  41287. name: "Foot",
  41288. image: {
  41289. source: "./media/characters/zorkaiju/foot.svg"
  41290. }
  41291. },
  41292. leftArm: {
  41293. height: math.unit(59, "feet"),
  41294. name: "Left Arm",
  41295. image: {
  41296. source: "./media/characters/zorkaiju/left-arm.svg"
  41297. }
  41298. },
  41299. rightArm: {
  41300. height: math.unit(59, "feet"),
  41301. name: "Right Arm",
  41302. image: {
  41303. source: "./media/characters/zorkaiju/right-arm.svg"
  41304. }
  41305. },
  41306. tail: {
  41307. height: math.unit(104, "feet"),
  41308. name: "Tail",
  41309. image: {
  41310. source: "./media/characters/zorkaiju/tail.svg"
  41311. }
  41312. },
  41313. tailExtended: {
  41314. height: math.unit(104, "feet"),
  41315. name: "Tail (Extended)",
  41316. image: {
  41317. source: "./media/characters/zorkaiju/tail-extended.svg"
  41318. }
  41319. },
  41320. tailBottom: {
  41321. height: math.unit(104, "feet"),
  41322. name: "Tail Bottom",
  41323. image: {
  41324. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41325. }
  41326. },
  41327. crystal: {
  41328. height: math.unit(27.54, "feet"),
  41329. name: "Crystal",
  41330. image: {
  41331. source: "./media/characters/zorkaiju/crystal.svg"
  41332. }
  41333. },
  41334. },
  41335. [
  41336. {
  41337. name: "Kaiju",
  41338. height: math.unit(325, "feet"),
  41339. default: true
  41340. },
  41341. ]
  41342. ))
  41343. characterMakers.push(() => makeCharacter(
  41344. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41345. {
  41346. front: {
  41347. height: math.unit(6 + 1/12, "feet"),
  41348. weight: math.unit(115, "lb"),
  41349. name: "Front",
  41350. image: {
  41351. source: "./media/characters/bailey-belfry/front.svg",
  41352. extra: 1240/1121,
  41353. bottom: 101/1341
  41354. }
  41355. },
  41356. },
  41357. [
  41358. {
  41359. name: "Normal",
  41360. height: math.unit(6 + 1/12, "feet"),
  41361. default: true
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41367. {
  41368. side: {
  41369. height: math.unit(4, "meters"),
  41370. weight: math.unit(250, "kg"),
  41371. name: "Side",
  41372. image: {
  41373. source: "./media/characters/blacky/side.svg",
  41374. extra: 1027/919,
  41375. bottom: 43/1070
  41376. }
  41377. },
  41378. maw: {
  41379. height: math.unit(1, "meters"),
  41380. name: "Maw",
  41381. image: {
  41382. source: "./media/characters/blacky/maw.svg"
  41383. }
  41384. },
  41385. paw: {
  41386. height: math.unit(1, "meters"),
  41387. name: "Paw",
  41388. image: {
  41389. source: "./media/characters/blacky/paw.svg"
  41390. }
  41391. },
  41392. },
  41393. [
  41394. {
  41395. name: "Normal",
  41396. height: math.unit(4, "meters"),
  41397. default: true
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41403. {
  41404. front: {
  41405. height: math.unit(170, "cm"),
  41406. weight: math.unit(66, "kg"),
  41407. name: "Front",
  41408. image: {
  41409. source: "./media/characters/thux-ei/front.svg",
  41410. extra: 1109/1011,
  41411. bottom: 8/1117
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Normal",
  41418. height: math.unit(170, "cm"),
  41419. default: true
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(5, "feet"),
  41428. weight: math.unit(120, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/roxanne-voltaire/front.svg",
  41432. extra: 1901/1779,
  41433. bottom: 53/1954
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(5, "feet"),
  41441. default: true
  41442. },
  41443. {
  41444. name: "Giant",
  41445. height: math.unit(50, "feet")
  41446. },
  41447. {
  41448. name: "Titan",
  41449. height: math.unit(500, "feet")
  41450. },
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(5000, "feet")
  41454. },
  41455. {
  41456. name: "Megamacro",
  41457. height: math.unit(50000, "feet")
  41458. },
  41459. {
  41460. name: "Gigamacro",
  41461. height: math.unit(500000, "feet")
  41462. },
  41463. {
  41464. name: "Teramacro",
  41465. height: math.unit(5e6, "feet")
  41466. },
  41467. ]
  41468. ))
  41469. characterMakers.push(() => makeCharacter(
  41470. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41471. {
  41472. front: {
  41473. height: math.unit(6 + 2/12, "feet"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/squeaks/front.svg",
  41477. extra: 1823/1768,
  41478. bottom: 138/1961
  41479. }
  41480. },
  41481. },
  41482. [
  41483. {
  41484. name: "Micro",
  41485. height: math.unit(0.5, "inches")
  41486. },
  41487. {
  41488. name: "Normal",
  41489. height: math.unit(6 + 2/12, "feet"),
  41490. default: true
  41491. },
  41492. {
  41493. name: "Macro",
  41494. height: math.unit(600, "feet")
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41500. {
  41501. front: {
  41502. height: math.unit(1.72, "meters"),
  41503. name: "Front",
  41504. image: {
  41505. source: "./media/characters/archinger/front.svg",
  41506. extra: 1861/1675,
  41507. bottom: 125/1986
  41508. }
  41509. },
  41510. back: {
  41511. height: math.unit(1.72, "meters"),
  41512. name: "Back",
  41513. image: {
  41514. source: "./media/characters/archinger/back.svg",
  41515. extra: 1844/1701,
  41516. bottom: 104/1948
  41517. }
  41518. },
  41519. cock: {
  41520. height: math.unit(0.59, "feet"),
  41521. name: "Cock",
  41522. image: {
  41523. source: "./media/characters/archinger/cock.svg"
  41524. }
  41525. },
  41526. },
  41527. [
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(1.72, "meters"),
  41531. default: true
  41532. },
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(84, "meters")
  41536. },
  41537. {
  41538. name: "Macro+",
  41539. height: math.unit(112, "meters")
  41540. },
  41541. {
  41542. name: "Macro++",
  41543. height: math.unit(960, "meters")
  41544. },
  41545. {
  41546. name: "Macro+++",
  41547. height: math.unit(4, "km")
  41548. },
  41549. {
  41550. name: "Macro++++",
  41551. height: math.unit(48, "km")
  41552. },
  41553. {
  41554. name: "Macro+++++",
  41555. height: math.unit(4500, "km")
  41556. },
  41557. ]
  41558. ))
  41559. characterMakers.push(() => makeCharacter(
  41560. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41561. {
  41562. front: {
  41563. height: math.unit(5 + 5/12, "feet"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/alsnapz/front.svg",
  41567. extra: 1157/1065,
  41568. bottom: 42/1199
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(5 + 5/12, "feet"),
  41576. default: true
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41582. {
  41583. side: {
  41584. height: math.unit(3.2, "earths"),
  41585. name: "Side",
  41586. image: {
  41587. source: "./media/characters/mag/side.svg",
  41588. extra: 1331/1008,
  41589. bottom: 52/1383
  41590. }
  41591. },
  41592. wing: {
  41593. height: math.unit(1.94, "earths"),
  41594. name: "Wing",
  41595. image: {
  41596. source: "./media/characters/mag/wing.svg"
  41597. }
  41598. },
  41599. dick: {
  41600. height: math.unit(1.8, "earths"),
  41601. name: "Dick",
  41602. image: {
  41603. source: "./media/characters/mag/dick.svg"
  41604. }
  41605. },
  41606. ass: {
  41607. height: math.unit(1.33, "earths"),
  41608. name: "Ass",
  41609. image: {
  41610. source: "./media/characters/mag/ass.svg"
  41611. }
  41612. },
  41613. head: {
  41614. height: math.unit(1.1, "earths"),
  41615. name: "Head",
  41616. image: {
  41617. source: "./media/characters/mag/head.svg"
  41618. }
  41619. },
  41620. maw: {
  41621. height: math.unit(1.62, "earths"),
  41622. name: "Maw",
  41623. image: {
  41624. source: "./media/characters/mag/maw.svg"
  41625. }
  41626. },
  41627. },
  41628. [
  41629. {
  41630. name: "Small",
  41631. height: math.unit(162, "feet")
  41632. },
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(3.2, "earths"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41642. {
  41643. front: {
  41644. height: math.unit(512, "feet"),
  41645. weight: math.unit(63509, "tonnes"),
  41646. name: "Front",
  41647. image: {
  41648. source: "./media/characters/vorrel-harroc/front.svg",
  41649. extra: 1075/1063,
  41650. bottom: 62/1137
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(10, "feet")
  41658. },
  41659. {
  41660. name: "Macro",
  41661. height: math.unit(512, "feet"),
  41662. default: true
  41663. },
  41664. {
  41665. name: "Megamacro",
  41666. height: math.unit(256, "miles")
  41667. },
  41668. {
  41669. name: "Gigamacro",
  41670. height: math.unit(4096, "miles")
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41676. {
  41677. side: {
  41678. height: math.unit(50, "feet"),
  41679. name: "Side",
  41680. image: {
  41681. source: "./media/characters/froimar/side.svg",
  41682. extra: 855/638,
  41683. bottom: 99/954
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Macro",
  41690. height: math.unit(50, "feet"),
  41691. default: true
  41692. },
  41693. ]
  41694. ))
  41695. characterMakers.push(() => makeCharacter(
  41696. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41697. {
  41698. front: {
  41699. height: math.unit(210, "miles"),
  41700. name: "Front",
  41701. image: {
  41702. source: "./media/characters/timothy/front.svg",
  41703. extra: 1007/943,
  41704. bottom: 62/1069
  41705. }
  41706. },
  41707. frontSkirt: {
  41708. height: math.unit(210, "miles"),
  41709. name: "Front (Skirt)",
  41710. image: {
  41711. source: "./media/characters/timothy/front-skirt.svg",
  41712. extra: 1007/943,
  41713. bottom: 62/1069
  41714. }
  41715. },
  41716. frontCoat: {
  41717. height: math.unit(210, "miles"),
  41718. name: "Front (Coat)",
  41719. image: {
  41720. source: "./media/characters/timothy/front-coat.svg",
  41721. extra: 1007/943,
  41722. bottom: 62/1069
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Macro",
  41729. height: math.unit(210, "miles"),
  41730. default: true
  41731. },
  41732. {
  41733. name: "Megamacro",
  41734. height: math.unit(210000, "miles")
  41735. },
  41736. ]
  41737. ))
  41738. characterMakers.push(() => makeCharacter(
  41739. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41740. {
  41741. front: {
  41742. height: math.unit(188, "feet"),
  41743. name: "Front",
  41744. image: {
  41745. source: "./media/characters/pyotr/front.svg",
  41746. extra: 1912/1826,
  41747. bottom: 18/1930
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Macro",
  41754. height: math.unit(188, "feet"),
  41755. default: true
  41756. },
  41757. {
  41758. name: "Megamacro",
  41759. height: math.unit(8, "miles")
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41765. {
  41766. side: {
  41767. height: math.unit(10, "feet"),
  41768. weight: math.unit(4500, "lb"),
  41769. name: "Side",
  41770. image: {
  41771. source: "./media/characters/ackart/side.svg",
  41772. extra: 1776/1668,
  41773. bottom: 116/1892
  41774. }
  41775. },
  41776. },
  41777. [
  41778. {
  41779. name: "Normal",
  41780. height: math.unit(10, "feet"),
  41781. default: true
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41787. {
  41788. side: {
  41789. height: math.unit(21, "feet"),
  41790. name: "Side",
  41791. image: {
  41792. source: "./media/characters/nolow/side.svg",
  41793. extra: 1484/1434,
  41794. bottom: 85/1569
  41795. }
  41796. },
  41797. sideErect: {
  41798. height: math.unit(21, "feet"),
  41799. name: "Side-erect",
  41800. image: {
  41801. source: "./media/characters/nolow/side-erect.svg",
  41802. extra: 1484/1434,
  41803. bottom: 85/1569
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Regular",
  41810. height: math.unit(12, "feet")
  41811. },
  41812. {
  41813. name: "Big Chee",
  41814. height: math.unit(21, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(7, "feet"),
  41824. weight: math.unit(250, "lb"),
  41825. name: "Front",
  41826. image: {
  41827. source: "./media/characters/nines/front.svg",
  41828. extra: 1741/1607,
  41829. bottom: 41/1782
  41830. }
  41831. },
  41832. side: {
  41833. height: math.unit(7, "feet"),
  41834. weight: math.unit(250, "lb"),
  41835. name: "Side",
  41836. image: {
  41837. source: "./media/characters/nines/side.svg",
  41838. extra: 1854/1735,
  41839. bottom: 93/1947
  41840. }
  41841. },
  41842. back: {
  41843. height: math.unit(7, "feet"),
  41844. weight: math.unit(250, "lb"),
  41845. name: "Back",
  41846. image: {
  41847. source: "./media/characters/nines/back.svg",
  41848. extra: 1748/1615,
  41849. bottom: 20/1768
  41850. }
  41851. },
  41852. },
  41853. [
  41854. {
  41855. name: "Megamacro",
  41856. height: math.unit(99, "km"),
  41857. default: true
  41858. },
  41859. ]
  41860. ))
  41861. characterMakers.push(() => makeCharacter(
  41862. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41863. {
  41864. front: {
  41865. height: math.unit(5 + 10/12, "feet"),
  41866. weight: math.unit(210, "lb"),
  41867. name: "Front",
  41868. image: {
  41869. source: "./media/characters/zenith/front.svg",
  41870. extra: 1531/1452,
  41871. bottom: 198/1729
  41872. }
  41873. },
  41874. back: {
  41875. height: math.unit(5 + 10/12, "feet"),
  41876. weight: math.unit(210, "lb"),
  41877. name: "Back",
  41878. image: {
  41879. source: "./media/characters/zenith/back.svg",
  41880. extra: 1571/1487,
  41881. bottom: 75/1646
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(5 + 10/12, "feet"),
  41889. default: true
  41890. }
  41891. ]
  41892. ))
  41893. characterMakers.push(() => makeCharacter(
  41894. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41895. {
  41896. front: {
  41897. height: math.unit(4, "feet"),
  41898. weight: math.unit(60, "lb"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/jasper/front.svg",
  41902. extra: 1450/1379,
  41903. bottom: 19/1469
  41904. }
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(4, "feet"),
  41911. default: true
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(6 + 5/12, "feet"),
  41920. weight: math.unit(290, "lb"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/tiberius-thyben/front.svg",
  41924. extra: 757/739,
  41925. bottom: 39/796
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Micro",
  41932. height: math.unit(1.5, "inches")
  41933. },
  41934. {
  41935. name: "Normal",
  41936. height: math.unit(6 + 5/12, "feet"),
  41937. default: true
  41938. },
  41939. {
  41940. name: "Macro",
  41941. height: math.unit(300, "feet")
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(5 + 6/12, "feet"),
  41950. weight: math.unit(60, "kg"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/sabre/front.svg",
  41954. extra: 738/671,
  41955. bottom: 27/765
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Teeny",
  41962. height: math.unit(2, "inches")
  41963. },
  41964. {
  41965. name: "Smol",
  41966. height: math.unit(8, "inches")
  41967. },
  41968. {
  41969. name: "Normal",
  41970. height: math.unit(5 + 6/12, "feet"),
  41971. default: true
  41972. },
  41973. {
  41974. name: "Mini-Macro",
  41975. height: math.unit(15, "feet")
  41976. },
  41977. {
  41978. name: "Macro",
  41979. height: math.unit(50, "feet")
  41980. },
  41981. ]
  41982. ))
  41983. characterMakers.push(() => makeCharacter(
  41984. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41985. {
  41986. front: {
  41987. height: math.unit(6 + 4/12, "feet"),
  41988. weight: math.unit(170, "lb"),
  41989. name: "Front",
  41990. image: {
  41991. source: "./media/characters/charlie/front.svg",
  41992. extra: 1348/1228,
  41993. bottom: 15/1363
  41994. }
  41995. },
  41996. },
  41997. [
  41998. {
  41999. name: "Macro",
  42000. height: math.unit(1700, "meters"),
  42001. default: true
  42002. },
  42003. {
  42004. name: "MegaMacro",
  42005. height: math.unit(20400, "meters")
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(6 + 3/12, "feet"),
  42014. weight: math.unit(185, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/susan-grant/front.svg",
  42018. extra: 1351/1327,
  42019. bottom: 26/1377
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(6 + 3/12, "feet"),
  42027. default: true
  42028. },
  42029. {
  42030. name: "Macro",
  42031. height: math.unit(225, "feet")
  42032. },
  42033. {
  42034. name: "Macro+",
  42035. height: math.unit(900, "feet")
  42036. },
  42037. {
  42038. name: "MegaMacro",
  42039. height: math.unit(14400, "feet")
  42040. },
  42041. ]
  42042. ))
  42043. characterMakers.push(() => makeCharacter(
  42044. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42045. {
  42046. front: {
  42047. height: math.unit(5 + 4/12, "feet"),
  42048. weight: math.unit(110, "lb"),
  42049. name: "Front",
  42050. image: {
  42051. source: "./media/characters/axel-isanov/front.svg",
  42052. extra: 1096/1065,
  42053. bottom: 13/1109
  42054. }
  42055. },
  42056. },
  42057. [
  42058. {
  42059. name: "Normal",
  42060. height: math.unit(5 + 4/12, "feet"),
  42061. default: true
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(9, "feet"),
  42070. weight: math.unit(467, "lb"),
  42071. name: "Front",
  42072. image: {
  42073. source: "./media/characters/necahual/front.svg",
  42074. extra: 920/873,
  42075. bottom: 26/946
  42076. }
  42077. },
  42078. back: {
  42079. height: math.unit(9, "feet"),
  42080. weight: math.unit(467, "lb"),
  42081. name: "Back",
  42082. image: {
  42083. source: "./media/characters/necahual/back.svg",
  42084. extra: 930/884,
  42085. bottom: 16/946
  42086. }
  42087. },
  42088. frontUnderwear: {
  42089. height: math.unit(9, "feet"),
  42090. weight: math.unit(467, "lb"),
  42091. name: "Front (Underwear)",
  42092. image: {
  42093. source: "./media/characters/necahual/front-underwear.svg",
  42094. extra: 920/873,
  42095. bottom: 26/946
  42096. }
  42097. },
  42098. frontDressed: {
  42099. height: math.unit(9, "feet"),
  42100. weight: math.unit(467, "lb"),
  42101. name: "Front (Dressed)",
  42102. image: {
  42103. source: "./media/characters/necahual/front-dressed.svg",
  42104. extra: 920/873,
  42105. bottom: 26/946
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Comprsesed",
  42112. height: math.unit(9, "feet")
  42113. },
  42114. {
  42115. name: "Natural",
  42116. height: math.unit(15, "feet"),
  42117. default: true
  42118. },
  42119. {
  42120. name: "Boosted",
  42121. height: math.unit(50, "feet")
  42122. },
  42123. {
  42124. name: "Boosted+",
  42125. height: math.unit(150, "feet")
  42126. },
  42127. {
  42128. name: "Max",
  42129. height: math.unit(500, "feet")
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42135. {
  42136. front: {
  42137. height: math.unit(22 + 1/12, "feet"),
  42138. weight: math.unit(3200, "lb"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/theo-acacia/front.svg",
  42142. extra: 1796/1741,
  42143. bottom: 83/1879
  42144. }
  42145. },
  42146. frontUnderwear: {
  42147. height: math.unit(22 + 1/12, "feet"),
  42148. weight: math.unit(3200, "lb"),
  42149. name: "Front (Underwear)",
  42150. image: {
  42151. source: "./media/characters/theo-acacia/front-underwear.svg",
  42152. extra: 1796/1741,
  42153. bottom: 83/1879
  42154. }
  42155. },
  42156. frontNude: {
  42157. height: math.unit(22 + 1/12, "feet"),
  42158. weight: math.unit(3200, "lb"),
  42159. name: "Front (Nude)",
  42160. image: {
  42161. source: "./media/characters/theo-acacia/front-nude.svg",
  42162. extra: 1796/1741,
  42163. bottom: 83/1879
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(22 + 1/12, "feet"),
  42171. default: true
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42177. {
  42178. front: {
  42179. height: math.unit(20, "feet"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/astra/front.svg",
  42183. extra: 1850/1714,
  42184. bottom: 106/1956
  42185. }
  42186. },
  42187. frontUndressed: {
  42188. height: math.unit(20, "feet"),
  42189. name: "Front (Undressed)",
  42190. image: {
  42191. source: "./media/characters/astra/front-undressed.svg",
  42192. extra: 1926/1749,
  42193. bottom: 0/1926
  42194. }
  42195. },
  42196. hand: {
  42197. height: math.unit(1.53, "feet"),
  42198. name: "Hand",
  42199. image: {
  42200. source: "./media/characters/astra/hand.svg"
  42201. }
  42202. },
  42203. paw: {
  42204. height: math.unit(1.53, "feet"),
  42205. name: "Paw",
  42206. image: {
  42207. source: "./media/characters/astra/paw.svg"
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Smallest",
  42214. height: math.unit(20, "feet")
  42215. },
  42216. {
  42217. name: "Normal",
  42218. height: math.unit(1e9, "miles"),
  42219. default: true
  42220. },
  42221. {
  42222. name: "Larger",
  42223. height: math.unit(5, "multiverses")
  42224. },
  42225. {
  42226. name: "Largest",
  42227. height: math.unit(1e9, "multiverses")
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(8, "feet"),
  42236. name: "Front",
  42237. image: {
  42238. source: "./media/characters/breanna/front.svg",
  42239. extra: 1912/1632,
  42240. bottom: 33/1945
  42241. }
  42242. },
  42243. },
  42244. [
  42245. {
  42246. name: "Smallest",
  42247. height: math.unit(8, "feet")
  42248. },
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(1, "mile"),
  42252. default: true
  42253. },
  42254. {
  42255. name: "Maximum",
  42256. height: math.unit(1500000000000, "lightyears")
  42257. },
  42258. ]
  42259. ))
  42260. characterMakers.push(() => makeCharacter(
  42261. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42262. {
  42263. front: {
  42264. height: math.unit(5 + 11/12, "feet"),
  42265. weight: math.unit(155, "lb"),
  42266. name: "Front",
  42267. image: {
  42268. source: "./media/characters/cai/front.svg",
  42269. extra: 1823/1702,
  42270. bottom: 32/1855
  42271. }
  42272. },
  42273. back: {
  42274. height: math.unit(5 + 11/12, "feet"),
  42275. weight: math.unit(155, "lb"),
  42276. name: "Back",
  42277. image: {
  42278. source: "./media/characters/cai/back.svg",
  42279. extra: 1809/1708,
  42280. bottom: 31/1840
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(5 + 11/12, "feet"),
  42288. default: true
  42289. },
  42290. {
  42291. name: "Big",
  42292. height: math.unit(15, "feet")
  42293. },
  42294. {
  42295. name: "Macro",
  42296. height: math.unit(200, "feet")
  42297. },
  42298. ]
  42299. ))
  42300. characterMakers.push(() => makeCharacter(
  42301. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42302. {
  42303. front: {
  42304. height: math.unit(5 + 6/12, "feet"),
  42305. weight: math.unit(160, "lb"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42309. extra: 1227/1174,
  42310. bottom: 37/1264
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Macro",
  42317. height: math.unit(444, "meters"),
  42318. default: true
  42319. },
  42320. ]
  42321. ))
  42322. characterMakers.push(() => makeCharacter(
  42323. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42324. {
  42325. front: {
  42326. height: math.unit(18 + 7/12, "feet"),
  42327. name: "Front",
  42328. image: {
  42329. source: "./media/characters/rex/front.svg",
  42330. extra: 1941/1807,
  42331. bottom: 66/2007
  42332. }
  42333. },
  42334. back: {
  42335. height: math.unit(18 + 7/12, "feet"),
  42336. name: "Back",
  42337. image: {
  42338. source: "./media/characters/rex/back.svg",
  42339. extra: 1937/1822,
  42340. bottom: 42/1979
  42341. }
  42342. },
  42343. boot: {
  42344. height: math.unit(3.45, "feet"),
  42345. name: "Boot",
  42346. image: {
  42347. source: "./media/characters/rex/boot.svg"
  42348. }
  42349. },
  42350. paw: {
  42351. height: math.unit(4.17, "feet"),
  42352. name: "Paw",
  42353. image: {
  42354. source: "./media/characters/rex/paw.svg"
  42355. }
  42356. },
  42357. head: {
  42358. height: math.unit(6.728, "feet"),
  42359. name: "Head",
  42360. image: {
  42361. source: "./media/characters/rex/head.svg"
  42362. }
  42363. },
  42364. },
  42365. [
  42366. {
  42367. name: "Nano",
  42368. height: math.unit(18 + 7/12, "feet")
  42369. },
  42370. {
  42371. name: "Micro",
  42372. height: math.unit(1.5, "megameters")
  42373. },
  42374. {
  42375. name: "Normal",
  42376. height: math.unit(440, "megameters"),
  42377. default: true
  42378. },
  42379. {
  42380. name: "Macro",
  42381. height: math.unit(2.5, "gigameters")
  42382. },
  42383. {
  42384. name: "Gigamacro",
  42385. height: math.unit(2, "galaxies")
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42391. {
  42392. side: {
  42393. height: math.unit(32, "feet"),
  42394. weight: math.unit(250000, "lb"),
  42395. name: "Side",
  42396. image: {
  42397. source: "./media/characters/silverwing/side.svg",
  42398. extra: 1100/1019,
  42399. bottom: 204/1304
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(32, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(6 + 6/12, "feet"),
  42416. weight: math.unit(350, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/tristan-hawthorne/front.svg",
  42420. extra: 1159/1124,
  42421. bottom: 37/1196
  42422. },
  42423. form: "labrador",
  42424. default: true
  42425. },
  42426. skunkFront: {
  42427. height: math.unit(4 + 6/12, "feet"),
  42428. weight: math.unit(120, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42432. extra: 1609/1551,
  42433. bottom: 169/1778
  42434. },
  42435. form: "skunk",
  42436. default: true
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(6 + 6/12, "feet"),
  42443. form: "labrador",
  42444. default: true
  42445. },
  42446. {
  42447. name: "Normal",
  42448. height: math.unit(4 + 6/12, "feet"),
  42449. form: "skunk",
  42450. default: true
  42451. },
  42452. ],
  42453. {
  42454. "labrador": {
  42455. name: "Labrador",
  42456. default: true
  42457. },
  42458. "skunk": {
  42459. name: "Skunk"
  42460. }
  42461. }
  42462. ))
  42463. characterMakers.push(() => makeCharacter(
  42464. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42465. {
  42466. front: {
  42467. height: math.unit(5 + 11/12, "feet"),
  42468. weight: math.unit(190, "lb"),
  42469. name: "Front",
  42470. image: {
  42471. source: "./media/characters/mizu/front.svg",
  42472. extra: 1988/1788,
  42473. bottom: 14/2002
  42474. }
  42475. },
  42476. },
  42477. [
  42478. {
  42479. name: "Normal",
  42480. height: math.unit(5 + 11/12, "feet"),
  42481. default: true
  42482. },
  42483. ]
  42484. ))
  42485. characterMakers.push(() => makeCharacter(
  42486. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42487. {
  42488. front: {
  42489. height: math.unit(1.7, "feet"),
  42490. weight: math.unit(50, "lb"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/dechroma/front.svg",
  42494. extra: 1095/859,
  42495. bottom: 64/1159
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(1.7, "feet"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42509. {
  42510. side: {
  42511. height: math.unit(30, "feet"),
  42512. name: "Side",
  42513. image: {
  42514. source: "./media/characters/veluren-thanazel/side.svg",
  42515. extra: 1611/633,
  42516. bottom: 118/1729
  42517. }
  42518. },
  42519. front: {
  42520. height: math.unit(30, "feet"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/veluren-thanazel/front.svg",
  42524. extra: 1486/636,
  42525. bottom: 238/1724
  42526. }
  42527. },
  42528. head: {
  42529. height: math.unit(21.4, "feet"),
  42530. name: "Head",
  42531. image: {
  42532. source: "./media/characters/veluren-thanazel/head.svg"
  42533. }
  42534. },
  42535. genitals: {
  42536. height: math.unit(19.4, "feet"),
  42537. name: "Genitals",
  42538. image: {
  42539. source: "./media/characters/veluren-thanazel/genitals.svg"
  42540. }
  42541. },
  42542. },
  42543. [
  42544. {
  42545. name: "Social",
  42546. height: math.unit(6, "feet")
  42547. },
  42548. {
  42549. name: "Play",
  42550. height: math.unit(12, "feet")
  42551. },
  42552. {
  42553. name: "True",
  42554. height: math.unit(30, "feet"),
  42555. default: true
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(7 + 6/12, "feet"),
  42564. weight: math.unit(500, "kg"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/arcturas/front.svg",
  42568. extra: 1700/1500,
  42569. bottom: 145/1845
  42570. }
  42571. },
  42572. },
  42573. [
  42574. {
  42575. name: "Normal",
  42576. height: math.unit(7 + 6/12, "feet"),
  42577. default: true
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42583. {
  42584. side: {
  42585. height: math.unit(6, "feet"),
  42586. weight: math.unit(2, "tons"),
  42587. name: "Side",
  42588. image: {
  42589. source: "./media/characters/vitaen/side.svg",
  42590. extra: 1157/617,
  42591. bottom: 122/1279
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Normal",
  42598. height: math.unit(6, "feet"),
  42599. default: true
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(19, "feet"),
  42608. name: "Front",
  42609. image: {
  42610. source: "./media/characters/fia-dreamweaver/front.svg",
  42611. extra: 1630/1504,
  42612. bottom: 25/1655
  42613. }
  42614. },
  42615. },
  42616. [
  42617. {
  42618. name: "Normal",
  42619. height: math.unit(19, "feet"),
  42620. default: true
  42621. },
  42622. ]
  42623. ))
  42624. characterMakers.push(() => makeCharacter(
  42625. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42626. {
  42627. front: {
  42628. height: math.unit(5 + 4/12, "feet"),
  42629. name: "Front",
  42630. image: {
  42631. source: "./media/characters/artan/front.svg",
  42632. extra: 1618/1535,
  42633. bottom: 46/1664
  42634. }
  42635. },
  42636. back: {
  42637. height: math.unit(5 + 4/12, "feet"),
  42638. name: "Back",
  42639. image: {
  42640. source: "./media/characters/artan/back.svg",
  42641. extra: 1618/1543,
  42642. bottom: 31/1649
  42643. }
  42644. },
  42645. },
  42646. [
  42647. {
  42648. name: "Normal",
  42649. height: math.unit(5 + 4/12, "feet"),
  42650. default: true
  42651. },
  42652. ]
  42653. ))
  42654. characterMakers.push(() => makeCharacter(
  42655. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42656. {
  42657. side: {
  42658. height: math.unit(182, "cm"),
  42659. weight: math.unit(1000, "lb"),
  42660. name: "Side",
  42661. image: {
  42662. source: "./media/characters/silver-dragon/side.svg",
  42663. extra: 710/287,
  42664. bottom: 88/798
  42665. }
  42666. },
  42667. },
  42668. [
  42669. {
  42670. name: "Normal",
  42671. height: math.unit(182, "cm"),
  42672. default: true
  42673. },
  42674. ]
  42675. ))
  42676. characterMakers.push(() => makeCharacter(
  42677. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42678. {
  42679. side: {
  42680. height: math.unit(6 + 6/12, "feet"),
  42681. weight: math.unit(1.5, "tons"),
  42682. name: "Side",
  42683. image: {
  42684. source: "./media/characters/zephyr/side.svg",
  42685. extra: 1433/586,
  42686. bottom: 109/1542
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(6 + 6/12, "feet"),
  42694. default: true
  42695. },
  42696. ]
  42697. ))
  42698. characterMakers.push(() => makeCharacter(
  42699. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42700. {
  42701. side: {
  42702. height: math.unit(1, "feet"),
  42703. name: "Side",
  42704. image: {
  42705. source: "./media/characters/vixye/side.svg",
  42706. extra: 632/541,
  42707. bottom: 0/632
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Normal",
  42714. height: math.unit(1, "feet"),
  42715. default: true
  42716. },
  42717. {
  42718. name: "True",
  42719. height: math.unit(1e15, "multiverses")
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(8 + 2/12, "feet"),
  42728. weight: math.unit(650, "lb"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42732. extra: 1174/1137,
  42733. bottom: 82/1256
  42734. }
  42735. },
  42736. back: {
  42737. height: math.unit(8 + 2/12, "feet"),
  42738. weight: math.unit(650, "lb"),
  42739. name: "Back",
  42740. image: {
  42741. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42742. extra: 1204/1157,
  42743. bottom: 46/1250
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Wildform",
  42750. height: math.unit(8 + 2/12, "feet"),
  42751. default: true
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(18, "feet"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/cyphin/front.svg",
  42763. extra: 970/886,
  42764. bottom: 42/1012
  42765. }
  42766. },
  42767. back: {
  42768. height: math.unit(18, "feet"),
  42769. name: "Back",
  42770. image: {
  42771. source: "./media/characters/cyphin/back.svg",
  42772. extra: 1009/894,
  42773. bottom: 24/1033
  42774. }
  42775. },
  42776. head: {
  42777. height: math.unit(5.05, "feet"),
  42778. name: "Head",
  42779. image: {
  42780. source: "./media/characters/cyphin/head.svg"
  42781. }
  42782. },
  42783. tailbud: {
  42784. height: math.unit(5, "feet"),
  42785. name: "Tailbud",
  42786. image: {
  42787. source: "./media/characters/cyphin/tailbud.svg"
  42788. }
  42789. },
  42790. },
  42791. [
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42796. {
  42797. side: {
  42798. height: math.unit(10, "feet"),
  42799. weight: math.unit(6, "tons"),
  42800. name: "Side",
  42801. image: {
  42802. source: "./media/characters/raijin/side.svg",
  42803. extra: 1529/613,
  42804. bottom: 337/1866
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(10, "feet"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42818. {
  42819. side: {
  42820. height: math.unit(9, "feet"),
  42821. name: "Side",
  42822. image: {
  42823. source: "./media/characters/nilghais/side.svg",
  42824. extra: 1047/744,
  42825. bottom: 91/1138
  42826. }
  42827. },
  42828. head: {
  42829. height: math.unit(3.14, "feet"),
  42830. name: "Head",
  42831. image: {
  42832. source: "./media/characters/nilghais/head.svg"
  42833. }
  42834. },
  42835. mouth: {
  42836. height: math.unit(4.6, "feet"),
  42837. name: "Mouth",
  42838. image: {
  42839. source: "./media/characters/nilghais/mouth.svg"
  42840. }
  42841. },
  42842. wings: {
  42843. height: math.unit(24, "feet"),
  42844. name: "Wings",
  42845. image: {
  42846. source: "./media/characters/nilghais/wings.svg"
  42847. }
  42848. },
  42849. ass: {
  42850. height: math.unit(6.12, "feet"),
  42851. name: "Ass",
  42852. image: {
  42853. source: "./media/characters/nilghais/ass.svg"
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Normal",
  42860. height: math.unit(9, "feet"),
  42861. default: true
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42867. {
  42868. regular: {
  42869. height: math.unit(16 + 2/12, "feet"),
  42870. weight: math.unit(2300, "lb"),
  42871. name: "Regular",
  42872. image: {
  42873. source: "./media/characters/zolgar/regular.svg",
  42874. extra: 1246/1004,
  42875. bottom: 124/1370
  42876. }
  42877. },
  42878. boxers: {
  42879. height: math.unit(16 + 2/12, "feet"),
  42880. weight: math.unit(2300, "lb"),
  42881. name: "Boxers",
  42882. image: {
  42883. source: "./media/characters/zolgar/boxers.svg",
  42884. extra: 1246/1004,
  42885. bottom: 124/1370
  42886. }
  42887. },
  42888. armored: {
  42889. height: math.unit(16 + 2/12, "feet"),
  42890. weight: math.unit(2300, "lb"),
  42891. name: "Armored",
  42892. image: {
  42893. source: "./media/characters/zolgar/armored.svg",
  42894. extra: 1246/1004,
  42895. bottom: 124/1370
  42896. }
  42897. },
  42898. goth: {
  42899. height: math.unit(16 + 2/12, "feet"),
  42900. weight: math.unit(2300, "lb"),
  42901. name: "Goth",
  42902. image: {
  42903. source: "./media/characters/zolgar/goth.svg",
  42904. extra: 1246/1004,
  42905. bottom: 124/1370
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Shrunken Down",
  42912. height: math.unit(9 + 2/12, "feet")
  42913. },
  42914. {
  42915. name: "Normal",
  42916. height: math.unit(16 + 2/12, "feet"),
  42917. default: true
  42918. },
  42919. ]
  42920. ))
  42921. characterMakers.push(() => makeCharacter(
  42922. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42923. {
  42924. front: {
  42925. height: math.unit(6, "feet"),
  42926. weight: math.unit(168, "lb"),
  42927. name: "Front",
  42928. image: {
  42929. source: "./media/characters/luca/front.svg",
  42930. extra: 841/667,
  42931. bottom: 102/943
  42932. }
  42933. },
  42934. },
  42935. [
  42936. {
  42937. name: "Normal",
  42938. height: math.unit(6, "feet"),
  42939. default: true
  42940. },
  42941. ]
  42942. ))
  42943. characterMakers.push(() => makeCharacter(
  42944. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42945. {
  42946. side: {
  42947. height: math.unit(7 + 3/12, "feet"),
  42948. weight: math.unit(312, "lb"),
  42949. name: "Side",
  42950. image: {
  42951. source: "./media/characters/zezo/side.svg",
  42952. extra: 1192/1067,
  42953. bottom: 63/1255
  42954. }
  42955. },
  42956. },
  42957. [
  42958. {
  42959. name: "Normal",
  42960. height: math.unit(7 + 3/12, "feet"),
  42961. default: true
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(5 + 5/12, "feet"),
  42970. weight: math.unit(170, "lb"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/mayso/front.svg",
  42974. extra: 1215/1108,
  42975. bottom: 16/1231
  42976. }
  42977. },
  42978. },
  42979. [
  42980. {
  42981. name: "Normal",
  42982. height: math.unit(5 + 5/12, "feet"),
  42983. default: true
  42984. },
  42985. ]
  42986. ))
  42987. characterMakers.push(() => makeCharacter(
  42988. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42989. {
  42990. front: {
  42991. height: math.unit(4 + 3/12, "feet"),
  42992. weight: math.unit(80, "lb"),
  42993. name: "Front",
  42994. image: {
  42995. source: "./media/characters/hess/front.svg",
  42996. extra: 1200/1123,
  42997. bottom: 16/1216
  42998. }
  42999. },
  43000. },
  43001. [
  43002. {
  43003. name: "Normal",
  43004. height: math.unit(4 + 3/12, "feet"),
  43005. default: true
  43006. },
  43007. ]
  43008. ))
  43009. characterMakers.push(() => makeCharacter(
  43010. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43011. {
  43012. front: {
  43013. height: math.unit(1.9, "meters"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/ashgar/front.svg",
  43017. extra: 1177/1146,
  43018. bottom: 99/1276
  43019. }
  43020. },
  43021. back: {
  43022. height: math.unit(1.9, "meters"),
  43023. name: "Back",
  43024. image: {
  43025. source: "./media/characters/ashgar/back.svg",
  43026. extra: 1201/1183,
  43027. bottom: 53/1254
  43028. }
  43029. },
  43030. feral: {
  43031. height: math.unit(1.4, "meters"),
  43032. name: "Feral",
  43033. image: {
  43034. source: "./media/characters/ashgar/feral.svg",
  43035. extra: 370/345,
  43036. bottom: 45/415
  43037. }
  43038. },
  43039. },
  43040. [
  43041. {
  43042. name: "Normal",
  43043. height: math.unit(1.9, "meters"),
  43044. default: true
  43045. },
  43046. ]
  43047. ))
  43048. characterMakers.push(() => makeCharacter(
  43049. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43050. {
  43051. regular: {
  43052. height: math.unit(6, "feet"),
  43053. weight: math.unit(220, "lb"),
  43054. name: "Regular",
  43055. image: {
  43056. source: "./media/characters/phillip/regular.svg",
  43057. extra: 1373/1277,
  43058. bottom: 75/1448
  43059. }
  43060. },
  43061. dressed: {
  43062. height: math.unit(6, "feet"),
  43063. weight: math.unit(220, "lb"),
  43064. name: "Dressed",
  43065. image: {
  43066. source: "./media/characters/phillip/dressed.svg",
  43067. extra: 1373/1277,
  43068. bottom: 75/1448
  43069. }
  43070. },
  43071. paw: {
  43072. height: math.unit(1.44, "feet"),
  43073. name: "Paw",
  43074. image: {
  43075. source: "./media/characters/phillip/paw.svg"
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(6, "feet"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43089. {
  43090. side: {
  43091. height: math.unit(42, "feet"),
  43092. name: "Side",
  43093. image: {
  43094. source: "./media/characters/uvula/side.svg",
  43095. extra: 683/586,
  43096. bottom: 60/743
  43097. }
  43098. },
  43099. front: {
  43100. height: math.unit(42, "feet"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/uvula/front.svg",
  43104. extra: 705/613,
  43105. bottom: 54/759
  43106. }
  43107. },
  43108. maw: {
  43109. height: math.unit(23.5, "feet"),
  43110. name: "Maw",
  43111. image: {
  43112. source: "./media/characters/uvula/maw.svg"
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Original Size",
  43119. height: math.unit(14, "inches")
  43120. },
  43121. {
  43122. name: "Human Size",
  43123. height: math.unit(6, "feet")
  43124. },
  43125. {
  43126. name: "Big",
  43127. height: math.unit(42, "feet"),
  43128. default: true
  43129. },
  43130. {
  43131. name: "Bigger",
  43132. height: math.unit(100, "feet")
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(5 + 11/12, "feet"),
  43141. name: "Front",
  43142. image: {
  43143. source: "./media/characters/lannah/front.svg",
  43144. extra: 1208/1113,
  43145. bottom: 97/1305
  43146. }
  43147. },
  43148. },
  43149. [
  43150. {
  43151. name: "Normal",
  43152. height: math.unit(5 + 11/12, "feet"),
  43153. default: true
  43154. },
  43155. ]
  43156. ))
  43157. characterMakers.push(() => makeCharacter(
  43158. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43159. {
  43160. front: {
  43161. height: math.unit(6 + 3/12, "feet"),
  43162. weight: math.unit(3.5, "tons"),
  43163. name: "Front",
  43164. image: {
  43165. source: "./media/characters/emberflame/front.svg",
  43166. extra: 1198/672,
  43167. bottom: 82/1280
  43168. }
  43169. },
  43170. side: {
  43171. height: math.unit(6 + 3/12, "feet"),
  43172. weight: math.unit(3.5, "tons"),
  43173. name: "Side",
  43174. image: {
  43175. source: "./media/characters/emberflame/side.svg",
  43176. extra: 938/527,
  43177. bottom: 56/994
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(6 + 3/12, "feet"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43191. {
  43192. side: {
  43193. height: math.unit(17.5, "feet"),
  43194. weight: math.unit(35, "tons"),
  43195. name: "Side",
  43196. image: {
  43197. source: "./media/characters/sophie-ambrose/side.svg",
  43198. extra: 1573/1242,
  43199. bottom: 71/1644
  43200. }
  43201. },
  43202. maw: {
  43203. height: math.unit(7.4, "feet"),
  43204. name: "Maw",
  43205. image: {
  43206. source: "./media/characters/sophie-ambrose/maw.svg"
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Normal",
  43213. height: math.unit(17.5, "feet"),
  43214. default: true
  43215. },
  43216. ]
  43217. ))
  43218. characterMakers.push(() => makeCharacter(
  43219. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43220. {
  43221. front: {
  43222. height: math.unit(280, "feet"),
  43223. weight: math.unit(550, "tons"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/king-mugi/front.svg",
  43227. extra: 1102/947,
  43228. bottom: 104/1206
  43229. }
  43230. },
  43231. },
  43232. [
  43233. {
  43234. name: "King Mugi",
  43235. height: math.unit(280, "feet"),
  43236. default: true
  43237. },
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43242. {
  43243. front: {
  43244. height: math.unit(64, "meters"),
  43245. name: "Front",
  43246. image: {
  43247. source: "./media/characters/nova-fox/front.svg",
  43248. extra: 1310/1246,
  43249. bottom: 65/1375
  43250. }
  43251. },
  43252. },
  43253. [
  43254. {
  43255. name: "Macro",
  43256. height: math.unit(64, "meters"),
  43257. default: true
  43258. },
  43259. ]
  43260. ))
  43261. characterMakers.push(() => makeCharacter(
  43262. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43263. {
  43264. front: {
  43265. height: math.unit(6 + 3/12, "feet"),
  43266. weight: math.unit(170, "lb"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/sam-bat/front.svg",
  43270. extra: 1601/1411,
  43271. bottom: 125/1726
  43272. }
  43273. },
  43274. back: {
  43275. height: math.unit(6 + 3/12, "feet"),
  43276. weight: math.unit(170, "lb"),
  43277. name: "Back",
  43278. image: {
  43279. source: "./media/characters/sam-bat/back.svg",
  43280. extra: 1577/1405,
  43281. bottom: 58/1635
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43295. {
  43296. front: {
  43297. height: math.unit(59, "feet"),
  43298. weight: math.unit(40000, "lb"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/inari/front.svg",
  43302. extra: 1884/1350,
  43303. bottom: 95/1979
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Gigantamax",
  43310. height: math.unit(59, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(5 + 8/12, "feet"),
  43320. name: "Front",
  43321. image: {
  43322. source: "./media/characters/elizabeth/front.svg",
  43323. extra: 1395/1298,
  43324. bottom: 54/1449
  43325. }
  43326. },
  43327. mouth: {
  43328. height: math.unit(1.97, "feet"),
  43329. name: "Mouth",
  43330. image: {
  43331. source: "./media/characters/elizabeth/mouth.svg"
  43332. }
  43333. },
  43334. foot: {
  43335. height: math.unit(1.17, "feet"),
  43336. name: "Foot",
  43337. image: {
  43338. source: "./media/characters/elizabeth/foot.svg"
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Normal",
  43345. height: math.unit(5 + 8/12, "feet"),
  43346. default: true
  43347. },
  43348. {
  43349. name: "Minimacro",
  43350. height: math.unit(18, "feet")
  43351. },
  43352. {
  43353. name: "Macro",
  43354. height: math.unit(180, "feet")
  43355. },
  43356. ]
  43357. ))
  43358. characterMakers.push(() => makeCharacter(
  43359. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43360. {
  43361. front: {
  43362. height: math.unit(5 + 2/12, "feet"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/october-gossamer/front.svg",
  43366. extra: 505/454,
  43367. bottom: 7/512
  43368. }
  43369. },
  43370. back: {
  43371. height: math.unit(5 + 2/12, "feet"),
  43372. name: "Back",
  43373. image: {
  43374. source: "./media/characters/october-gossamer/back.svg",
  43375. extra: 501/454,
  43376. bottom: 11/512
  43377. }
  43378. },
  43379. },
  43380. [
  43381. {
  43382. name: "Normal",
  43383. height: math.unit(5 + 2/12, "feet"),
  43384. default: true
  43385. },
  43386. ]
  43387. ))
  43388. characterMakers.push(() => makeCharacter(
  43389. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43390. {
  43391. front: {
  43392. height: math.unit(5, "feet"),
  43393. name: "Front",
  43394. image: {
  43395. source: "./media/characters/epiglottis/front.svg",
  43396. extra: 923/849,
  43397. bottom: 17/940
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Original Size",
  43404. height: math.unit(10, "inches")
  43405. },
  43406. {
  43407. name: "Human Size",
  43408. height: math.unit(5, "feet"),
  43409. default: true
  43410. },
  43411. {
  43412. name: "Big",
  43413. height: math.unit(25, "feet")
  43414. },
  43415. {
  43416. name: "Bigger",
  43417. height: math.unit(50, "feet")
  43418. },
  43419. {
  43420. name: "oh lawd",
  43421. height: math.unit(75, "feet")
  43422. },
  43423. ]
  43424. ))
  43425. characterMakers.push(() => makeCharacter(
  43426. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43427. {
  43428. front: {
  43429. height: math.unit(2 + 4/12, "feet"),
  43430. weight: math.unit(60, "lb"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/lerm/front.svg",
  43434. extra: 796/790,
  43435. bottom: 79/875
  43436. }
  43437. },
  43438. },
  43439. [
  43440. {
  43441. name: "Normal",
  43442. height: math.unit(2 + 4/12, "feet"),
  43443. default: true
  43444. },
  43445. ]
  43446. ))
  43447. characterMakers.push(() => makeCharacter(
  43448. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43449. {
  43450. front: {
  43451. height: math.unit(5.5, "feet"),
  43452. weight: math.unit(130, "lb"),
  43453. name: "Front",
  43454. image: {
  43455. source: "./media/characters/xena-nebadon/front.svg",
  43456. extra: 1828/1730,
  43457. bottom: 79/1907
  43458. }
  43459. },
  43460. },
  43461. [
  43462. {
  43463. name: "Tiny Puppy",
  43464. height: math.unit(3, "inches")
  43465. },
  43466. {
  43467. name: "Normal",
  43468. height: math.unit(5.5, "feet"),
  43469. default: true
  43470. },
  43471. {
  43472. name: "Lotta Lady",
  43473. height: math.unit(12, "feet")
  43474. },
  43475. {
  43476. name: "Pretty Big",
  43477. height: math.unit(100, "feet")
  43478. },
  43479. {
  43480. name: "Big",
  43481. height: math.unit(500, "feet")
  43482. },
  43483. {
  43484. name: "Skyscraper Toys",
  43485. height: math.unit(2500, "feet")
  43486. },
  43487. {
  43488. name: "Plane Catcher",
  43489. height: math.unit(8, "miles")
  43490. },
  43491. {
  43492. name: "Planet Toys",
  43493. height: math.unit(15, "earths")
  43494. },
  43495. {
  43496. name: "Stardust",
  43497. height: math.unit(0.25, "galaxies")
  43498. },
  43499. {
  43500. name: "Snacks",
  43501. height: math.unit(70, "universes")
  43502. },
  43503. ]
  43504. ))
  43505. characterMakers.push(() => makeCharacter(
  43506. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43507. {
  43508. front: {
  43509. height: math.unit(1.6, "meters"),
  43510. weight: math.unit(60, "kg"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/bounty/front.svg",
  43514. extra: 1426/1308,
  43515. bottom: 15/1441
  43516. }
  43517. },
  43518. back: {
  43519. height: math.unit(1.6, "meters"),
  43520. weight: math.unit(60, "kg"),
  43521. name: "Back",
  43522. image: {
  43523. source: "./media/characters/bounty/back.svg",
  43524. extra: 1417/1307,
  43525. bottom: 8/1425
  43526. }
  43527. },
  43528. },
  43529. [
  43530. {
  43531. name: "Normal",
  43532. height: math.unit(1.6, "meters"),
  43533. default: true
  43534. },
  43535. {
  43536. name: "Macro",
  43537. height: math.unit(300, "meters")
  43538. },
  43539. ]
  43540. ))
  43541. characterMakers.push(() => makeCharacter(
  43542. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43543. {
  43544. front: {
  43545. height: math.unit(2 + 8/12, "feet"),
  43546. weight: math.unit(15, "lb"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/mochi/front.svg",
  43550. extra: 1022/852,
  43551. bottom: 435/1457
  43552. }
  43553. },
  43554. back: {
  43555. height: math.unit(2 + 8/12, "feet"),
  43556. weight: math.unit(15, "lb"),
  43557. name: "Back",
  43558. image: {
  43559. source: "./media/characters/mochi/back.svg",
  43560. extra: 1335/1119,
  43561. bottom: 39/1374
  43562. }
  43563. },
  43564. bird: {
  43565. height: math.unit(2 + 8/12, "feet"),
  43566. weight: math.unit(15, "lb"),
  43567. name: "Bird",
  43568. image: {
  43569. source: "./media/characters/mochi/bird.svg",
  43570. extra: 1251/1113,
  43571. bottom: 178/1429
  43572. }
  43573. },
  43574. kaiju: {
  43575. height: math.unit(154, "feet"),
  43576. weight: math.unit(1e7, "lb"),
  43577. name: "Kaiju",
  43578. image: {
  43579. source: "./media/characters/mochi/kaiju.svg",
  43580. extra: 460/324,
  43581. bottom: 40/500
  43582. }
  43583. },
  43584. head: {
  43585. height: math.unit(1.21, "feet"),
  43586. name: "Head",
  43587. image: {
  43588. source: "./media/characters/mochi/head.svg"
  43589. }
  43590. },
  43591. alternateTail: {
  43592. height: math.unit(2 + 8/12, "feet"),
  43593. weight: math.unit(45, "lb"),
  43594. name: "Alternate Tail",
  43595. image: {
  43596. source: "./media/characters/mochi/alternate-tail.svg",
  43597. extra: 139/76,
  43598. bottom: 45/184
  43599. }
  43600. },
  43601. },
  43602. [
  43603. {
  43604. name: "Micro",
  43605. height: math.unit(2, "inches")
  43606. },
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(2 + 8/12, "feet"),
  43610. default: true
  43611. },
  43612. {
  43613. name: "Macro",
  43614. height: math.unit(106, "feet")
  43615. },
  43616. ]
  43617. ))
  43618. characterMakers.push(() => makeCharacter(
  43619. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43620. {
  43621. front: {
  43622. height: math.unit(5.67, "feet"),
  43623. weight: math.unit(135, "lb"),
  43624. name: "Front",
  43625. image: {
  43626. source: "./media/characters/sarel/front.svg",
  43627. extra: 865/788,
  43628. bottom: 97/962
  43629. }
  43630. },
  43631. back: {
  43632. height: math.unit(5.67, "feet"),
  43633. weight: math.unit(135, "lb"),
  43634. name: "Back",
  43635. image: {
  43636. source: "./media/characters/sarel/back.svg",
  43637. extra: 857/777,
  43638. bottom: 32/889
  43639. }
  43640. },
  43641. chozoan: {
  43642. height: math.unit(5.67, "feet"),
  43643. weight: math.unit(135, "lb"),
  43644. name: "Chozoan",
  43645. image: {
  43646. source: "./media/characters/sarel/chozoan.svg",
  43647. extra: 865/788,
  43648. bottom: 97/962
  43649. }
  43650. },
  43651. current: {
  43652. height: math.unit(5.67, "feet"),
  43653. weight: math.unit(135, "lb"),
  43654. name: "Current",
  43655. image: {
  43656. source: "./media/characters/sarel/current.svg",
  43657. extra: 865/788,
  43658. bottom: 97/962
  43659. }
  43660. },
  43661. head: {
  43662. height: math.unit(1.77, "feet"),
  43663. name: "Head",
  43664. image: {
  43665. source: "./media/characters/sarel/head.svg"
  43666. }
  43667. },
  43668. claws: {
  43669. height: math.unit(1.8, "feet"),
  43670. name: "Claws",
  43671. image: {
  43672. source: "./media/characters/sarel/claws.svg"
  43673. }
  43674. },
  43675. clawsAlt: {
  43676. height: math.unit(1.8, "feet"),
  43677. name: "Claws-alt",
  43678. image: {
  43679. source: "./media/characters/sarel/claws-alt.svg"
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Normal",
  43686. height: math.unit(5.67, "feet"),
  43687. default: true
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43693. {
  43694. front: {
  43695. height: math.unit(5500, "feet"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/alyonia/front.svg",
  43699. extra: 1200/1135,
  43700. bottom: 29/1229
  43701. }
  43702. },
  43703. back: {
  43704. height: math.unit(5500, "feet"),
  43705. name: "Back",
  43706. image: {
  43707. source: "./media/characters/alyonia/back.svg",
  43708. extra: 1205/1138,
  43709. bottom: 10/1215
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Small",
  43716. height: math.unit(10, "feet")
  43717. },
  43718. {
  43719. name: "Macro",
  43720. height: math.unit(500, "feet")
  43721. },
  43722. {
  43723. name: "Mega Macro",
  43724. height: math.unit(5500, "feet"),
  43725. default: true
  43726. },
  43727. {
  43728. name: "Mega Macro+",
  43729. height: math.unit(500000, "feet")
  43730. },
  43731. {
  43732. name: "Giga Macro",
  43733. height: math.unit(3000, "miles")
  43734. },
  43735. {
  43736. name: "Tera Macro",
  43737. height: math.unit(2.8e6, "miles")
  43738. },
  43739. {
  43740. name: "Galactic",
  43741. height: math.unit(120000, "lightyears")
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43747. {
  43748. werewolf: {
  43749. height: math.unit(8, "feet"),
  43750. weight: math.unit(425, "lb"),
  43751. name: "Werewolf",
  43752. image: {
  43753. source: "./media/characters/autumn/werewolf.svg",
  43754. extra: 2154/2031,
  43755. bottom: 160/2314
  43756. }
  43757. },
  43758. human: {
  43759. height: math.unit(5 + 8/12, "feet"),
  43760. weight: math.unit(150, "lb"),
  43761. name: "Human",
  43762. image: {
  43763. source: "./media/characters/autumn/human.svg",
  43764. extra: 1200/1149,
  43765. bottom: 30/1230
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(8, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43779. {
  43780. front: {
  43781. height: math.unit(8 + 5/12, "feet"),
  43782. weight: math.unit(825, "lb"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/cobalt-charizard/front.svg",
  43786. extra: 1268/1155,
  43787. bottom: 122/1390
  43788. }
  43789. },
  43790. side: {
  43791. height: math.unit(8 + 5/12, "feet"),
  43792. weight: math.unit(825, "lb"),
  43793. name: "Side",
  43794. image: {
  43795. source: "./media/characters/cobalt-charizard/side.svg",
  43796. extra: 1348/1257,
  43797. bottom: 58/1406
  43798. }
  43799. },
  43800. gMax: {
  43801. height: math.unit(134 + 11/12, "feet"),
  43802. name: "G-Max",
  43803. image: {
  43804. source: "./media/characters/cobalt-charizard/g-max.svg",
  43805. extra: 1835/1541,
  43806. bottom: 151/1986
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(8 + 5/12, "feet"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43820. {
  43821. front: {
  43822. height: math.unit(6 + 3/12, "feet"),
  43823. weight: math.unit(210, "lb"),
  43824. name: "Front",
  43825. image: {
  43826. source: "./media/characters/stella/front.svg",
  43827. extra: 3549/3335,
  43828. bottom: 51/3600
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(6 + 3/12, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43842. {
  43843. front: {
  43844. height: math.unit(5, "feet"),
  43845. weight: math.unit(90, "lb"),
  43846. name: "Front",
  43847. image: {
  43848. source: "./media/characters/riley-bishop/front.svg",
  43849. extra: 1450/1428,
  43850. bottom: 152/1602
  43851. }
  43852. },
  43853. },
  43854. [
  43855. {
  43856. name: "Normal",
  43857. height: math.unit(5, "feet"),
  43858. default: true
  43859. },
  43860. ]
  43861. ))
  43862. characterMakers.push(() => makeCharacter(
  43863. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43864. {
  43865. side: {
  43866. height: math.unit(8 + 2/12, "feet"),
  43867. weight: math.unit(500, "kg"),
  43868. name: "Side",
  43869. image: {
  43870. source: "./media/characters/theo-arcanine/side.svg",
  43871. extra: 1342/1074,
  43872. bottom: 111/1453
  43873. }
  43874. },
  43875. },
  43876. [
  43877. {
  43878. name: "Normal",
  43879. height: math.unit(8 + 2/12, "feet"),
  43880. default: true
  43881. },
  43882. ]
  43883. ))
  43884. characterMakers.push(() => makeCharacter(
  43885. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43886. {
  43887. front: {
  43888. height: math.unit(4, "feet"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/kali/front.svg",
  43892. extra: 1921/1357,
  43893. bottom: 70/1991
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Normal",
  43900. height: math.unit(4, "feet"),
  43901. default: true
  43902. },
  43903. {
  43904. name: "Macro",
  43905. height: math.unit(32, "meters")
  43906. },
  43907. {
  43908. name: "Macro+",
  43909. height: math.unit(150, "meters")
  43910. },
  43911. {
  43912. name: "Megamacro",
  43913. height: math.unit(7500, "meters")
  43914. },
  43915. {
  43916. name: "Megamacro+",
  43917. height: math.unit(80, "kilometers")
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43923. {
  43924. side: {
  43925. height: math.unit(5 + 11/12, "feet"),
  43926. weight: math.unit(236, "lb"),
  43927. name: "Side",
  43928. image: {
  43929. source: "./media/characters/gapp/side.svg",
  43930. extra: 775/340,
  43931. bottom: 58/833
  43932. }
  43933. },
  43934. mouth: {
  43935. height: math.unit(2.98, "feet"),
  43936. name: "Mouth",
  43937. image: {
  43938. source: "./media/characters/gapp/mouth.svg"
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Normal",
  43945. height: math.unit(5 + 1/12, "feet"),
  43946. default: true
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43952. {
  43953. front: {
  43954. height: math.unit(6, "feet"),
  43955. name: "Front",
  43956. image: {
  43957. source: "./media/characters/persephone/front.svg",
  43958. extra: 1895/1717,
  43959. bottom: 96/1991
  43960. }
  43961. },
  43962. back: {
  43963. height: math.unit(6, "feet"),
  43964. name: "Back",
  43965. image: {
  43966. source: "./media/characters/persephone/back.svg",
  43967. extra: 1868/1679,
  43968. bottom: 26/1894
  43969. }
  43970. },
  43971. casual: {
  43972. height: math.unit(6, "feet"),
  43973. name: "Casual",
  43974. image: {
  43975. source: "./media/characters/persephone/casual.svg",
  43976. extra: 1713/1541,
  43977. bottom: 76/1789
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Human Size",
  43984. height: math.unit(6, "feet")
  43985. },
  43986. {
  43987. name: "Big Steppy",
  43988. height: math.unit(600, "meters"),
  43989. default: true
  43990. },
  43991. {
  43992. name: "Galaxy Brain",
  43993. height: math.unit(1, "zettameter")
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(1.85, "meters"),
  44002. name: "Front",
  44003. image: {
  44004. source: "./media/characters/riley-foxthing/front.svg",
  44005. extra: 1495/1354,
  44006. bottom: 122/1617
  44007. }
  44008. },
  44009. frontAlt: {
  44010. height: math.unit(1.85, "meters"),
  44011. name: "Front (Alt)",
  44012. image: {
  44013. source: "./media/characters/riley-foxthing/front-alt.svg",
  44014. extra: 1572/1389,
  44015. bottom: 116/1688
  44016. }
  44017. },
  44018. },
  44019. [
  44020. {
  44021. name: "Normal Sized",
  44022. height: math.unit(1.85, "meters"),
  44023. default: true
  44024. },
  44025. {
  44026. name: "Quite Sizable",
  44027. height: math.unit(5, "meters")
  44028. },
  44029. {
  44030. name: "Rather Large",
  44031. height: math.unit(20, "meters")
  44032. },
  44033. {
  44034. name: "Macro",
  44035. height: math.unit(450, "meters")
  44036. },
  44037. {
  44038. name: "Giga",
  44039. height: math.unit(5, "km")
  44040. },
  44041. ]
  44042. ))
  44043. characterMakers.push(() => makeCharacter(
  44044. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44045. {
  44046. front: {
  44047. height: math.unit(6, "feet"),
  44048. weight: math.unit(200, "lb"),
  44049. name: "Front",
  44050. image: {
  44051. source: "./media/characters/blizzard/front.svg",
  44052. extra: 1136/990,
  44053. bottom: 136/1272
  44054. }
  44055. },
  44056. back: {
  44057. height: math.unit(6, "feet"),
  44058. weight: math.unit(200, "lb"),
  44059. name: "Back",
  44060. image: {
  44061. source: "./media/characters/blizzard/back.svg",
  44062. extra: 1175/1034,
  44063. bottom: 97/1272
  44064. }
  44065. },
  44066. sitting: {
  44067. height: math.unit(3.725, "feet"),
  44068. weight: math.unit(200, "lb"),
  44069. name: "Sitting",
  44070. image: {
  44071. source: "./media/characters/blizzard/sitting.svg",
  44072. extra: 581/485,
  44073. bottom: 90/671
  44074. }
  44075. },
  44076. frontWizard: {
  44077. height: math.unit(7.9, "feet"),
  44078. weight: math.unit(200, "lb"),
  44079. name: "Front (Wizard)",
  44080. image: {
  44081. source: "./media/characters/blizzard/front-wizard.svg"
  44082. }
  44083. },
  44084. backWizard: {
  44085. height: math.unit(7.9, "feet"),
  44086. weight: math.unit(200, "lb"),
  44087. name: "Back (Wizard)",
  44088. image: {
  44089. source: "./media/characters/blizzard/back-wizard.svg"
  44090. }
  44091. },
  44092. frontNsfw: {
  44093. height: math.unit(6, "feet"),
  44094. weight: math.unit(200, "lb"),
  44095. name: "Front (NSFW)",
  44096. image: {
  44097. source: "./media/characters/blizzard/front-nsfw.svg",
  44098. extra: 1136/990,
  44099. bottom: 136/1272
  44100. }
  44101. },
  44102. backNsfw: {
  44103. height: math.unit(6, "feet"),
  44104. weight: math.unit(200, "lb"),
  44105. name: "Back (NSFW)",
  44106. image: {
  44107. source: "./media/characters/blizzard/back-nsfw.svg",
  44108. extra: 1175/1034,
  44109. bottom: 97/1272
  44110. }
  44111. },
  44112. sittingNsfw: {
  44113. height: math.unit(3.725, "feet"),
  44114. weight: math.unit(200, "lb"),
  44115. name: "Sitting (NSFW)",
  44116. image: {
  44117. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44118. extra: 581/485,
  44119. bottom: 90/671
  44120. }
  44121. },
  44122. wizardFrontNsfw: {
  44123. height: math.unit(7.9, "feet"),
  44124. weight: math.unit(200, "lb"),
  44125. name: "Wizard (Front, NSFW)",
  44126. image: {
  44127. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44128. }
  44129. },
  44130. },
  44131. [
  44132. {
  44133. name: "Normal",
  44134. height: math.unit(6, "feet"),
  44135. default: true
  44136. },
  44137. ]
  44138. ))
  44139. characterMakers.push(() => makeCharacter(
  44140. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44141. {
  44142. front: {
  44143. height: math.unit(5 + 2/12, "feet"),
  44144. name: "Front",
  44145. image: {
  44146. source: "./media/characters/lumi/front.svg",
  44147. extra: 1328/1268,
  44148. bottom: 103/1431
  44149. }
  44150. },
  44151. back: {
  44152. height: math.unit(5 + 2/12, "feet"),
  44153. name: "Back",
  44154. image: {
  44155. source: "./media/characters/lumi/back.svg",
  44156. extra: 1381/1327,
  44157. bottom: 43/1424
  44158. }
  44159. },
  44160. },
  44161. [
  44162. {
  44163. name: "Normal",
  44164. height: math.unit(5 + 2/12, "feet"),
  44165. default: true
  44166. },
  44167. ]
  44168. ))
  44169. characterMakers.push(() => makeCharacter(
  44170. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44171. {
  44172. front: {
  44173. height: math.unit(5 + 9/12, "feet"),
  44174. name: "Front",
  44175. image: {
  44176. source: "./media/characters/aliya-cotton/front.svg",
  44177. extra: 577/564,
  44178. bottom: 29/606
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(5 + 9/12, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(2.7, "meters"),
  44195. weight: math.unit(25000, "lb"),
  44196. name: "Front",
  44197. image: {
  44198. source: "./media/characters/noah-luxray/front.svg",
  44199. extra: 1644/825,
  44200. bottom: 339/1983
  44201. }
  44202. },
  44203. side: {
  44204. height: math.unit(2.97, "meters"),
  44205. weight: math.unit(25000, "lb"),
  44206. name: "Side",
  44207. image: {
  44208. source: "./media/characters/noah-luxray/side.svg",
  44209. extra: 1319/650,
  44210. bottom: 163/1482
  44211. }
  44212. },
  44213. dick: {
  44214. height: math.unit(7.4, "feet"),
  44215. weight: math.unit(2500, "lb"),
  44216. name: "Dick",
  44217. image: {
  44218. source: "./media/characters/noah-luxray/dick.svg"
  44219. }
  44220. },
  44221. dickAlt: {
  44222. height: math.unit(10.83, "feet"),
  44223. weight: math.unit(2500, "lb"),
  44224. name: "Dick-alt",
  44225. image: {
  44226. source: "./media/characters/noah-luxray/dick-alt.svg"
  44227. }
  44228. },
  44229. },
  44230. [
  44231. {
  44232. name: "BIG",
  44233. height: math.unit(2.7, "meters"),
  44234. default: true
  44235. },
  44236. ]
  44237. ))
  44238. characterMakers.push(() => makeCharacter(
  44239. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44240. {
  44241. standing: {
  44242. height: math.unit(183, "cm"),
  44243. weight: math.unit(68, "kg"),
  44244. name: "Standing",
  44245. image: {
  44246. source: "./media/characters/arion/standing.svg",
  44247. extra: 1869/1807,
  44248. bottom: 93/1962
  44249. }
  44250. },
  44251. reclining: {
  44252. height: math.unit(70.5, "cm"),
  44253. weight: math.unit(68, "lb"),
  44254. name: "Reclining",
  44255. image: {
  44256. source: "./media/characters/arion/reclining.svg",
  44257. extra: 937/870,
  44258. bottom: 63/1000
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Colossus Size, Low",
  44265. height: math.unit(33, "meters"),
  44266. default: true
  44267. },
  44268. {
  44269. name: "Colossus Size, Mid",
  44270. height: math.unit(52, "meters")
  44271. },
  44272. {
  44273. name: "Colossus Size, High",
  44274. height: math.unit(60, "meters")
  44275. },
  44276. {
  44277. name: "Titan Size, Low",
  44278. height: math.unit(91, "meters"),
  44279. },
  44280. {
  44281. name: "Titan Size, Mid",
  44282. height: math.unit(122, "meters")
  44283. },
  44284. {
  44285. name: "Titan Size, High",
  44286. height: math.unit(162, "meters")
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(53, "meters"),
  44295. name: "Front",
  44296. image: {
  44297. source: "./media/characters/stellar-marbey/front.svg",
  44298. extra: 1913/1805,
  44299. bottom: 92/2005
  44300. }
  44301. },
  44302. back: {
  44303. height: math.unit(53, "meters"),
  44304. name: "Back",
  44305. image: {
  44306. source: "./media/characters/stellar-marbey/back.svg",
  44307. extra: 1960/1851,
  44308. bottom: 28/1988
  44309. }
  44310. },
  44311. mouth: {
  44312. height: math.unit(3.5, "meters"),
  44313. name: "Mouth",
  44314. image: {
  44315. source: "./media/characters/stellar-marbey/mouth.svg"
  44316. }
  44317. },
  44318. },
  44319. [
  44320. {
  44321. name: "Macro",
  44322. height: math.unit(53, "meters"),
  44323. default: true
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44329. {
  44330. front: {
  44331. height: math.unit(8 + 1/12, "feet"),
  44332. weight: math.unit(233, "lb"),
  44333. name: "Front",
  44334. image: {
  44335. source: "./media/characters/matsu/front.svg",
  44336. extra: 832/772,
  44337. bottom: 40/872
  44338. }
  44339. },
  44340. back: {
  44341. height: math.unit(8 + 1/12, "feet"),
  44342. weight: math.unit(233, "lb"),
  44343. name: "Back",
  44344. image: {
  44345. source: "./media/characters/matsu/back.svg",
  44346. extra: 839/780,
  44347. bottom: 47/886
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(8 + 1/12, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(4, "feet"),
  44364. weight: math.unit(148, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/thiz/front.svg",
  44368. extra: 1913/1748,
  44369. bottom: 62/1975
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(4, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44383. {
  44384. front: {
  44385. height: math.unit(7 + 6/12, "feet"),
  44386. weight: math.unit(267, "lb"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/marcel/front.svg",
  44390. extra: 1221/1096,
  44391. bottom: 76/1297
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(7 + 6/12, "feet"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44405. {
  44406. side: {
  44407. height: math.unit(42, "meters"),
  44408. name: "Side",
  44409. image: {
  44410. source: "./media/characters/flake/side.svg",
  44411. extra: 1525/1306,
  44412. bottom: 209/1734
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(42, "meters"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44426. {
  44427. dressed: {
  44428. height: math.unit(6 + 4/12, "feet"),
  44429. weight: math.unit(520, "lb"),
  44430. name: "Dressed",
  44431. image: {
  44432. source: "./media/characters/someonne/dressed.svg",
  44433. extra: 1020/1010,
  44434. bottom: 178/1198
  44435. }
  44436. },
  44437. undressed: {
  44438. height: math.unit(6 + 4/12, "feet"),
  44439. weight: math.unit(520, "lb"),
  44440. name: "Undressed",
  44441. image: {
  44442. source: "./media/characters/someonne/undressed.svg",
  44443. extra: 1019/1014,
  44444. bottom: 169/1188
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(6 + 4/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(3, "feet"),
  44461. weight: math.unit(30, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/till/front.svg",
  44465. extra: 892/823,
  44466. bottom: 55/947
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Normal",
  44473. height: math.unit(3, "feet"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44480. {
  44481. front: {
  44482. height: math.unit(9 + 8/12, "feet"),
  44483. weight: math.unit(800, "lb"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/sydney-heki/front.svg",
  44487. extra: 1360/1300,
  44488. bottom: 22/1382
  44489. }
  44490. },
  44491. back: {
  44492. height: math.unit(9 + 8/12, "feet"),
  44493. weight: math.unit(800, "lb"),
  44494. name: "Back",
  44495. image: {
  44496. source: "./media/characters/sydney-heki/back.svg",
  44497. extra: 1356/1293,
  44498. bottom: 12/1368
  44499. }
  44500. },
  44501. frontDressed: {
  44502. height: math.unit(9 + 8/12, "feet"),
  44503. weight: math.unit(800, "lb"),
  44504. name: "Front-dressed",
  44505. image: {
  44506. source: "./media/characters/sydney-heki/front-dressed.svg",
  44507. extra: 1360/1300,
  44508. bottom: 22/1382
  44509. }
  44510. },
  44511. },
  44512. [
  44513. {
  44514. name: "Normal",
  44515. height: math.unit(9 + 8/12, "feet"),
  44516. default: true
  44517. },
  44518. {
  44519. name: "Macro",
  44520. height: math.unit(500, "feet")
  44521. },
  44522. {
  44523. name: "Megamacro",
  44524. height: math.unit(3.6, "miles")
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(200, "cm"),
  44533. weight: math.unit(250, "lb"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/fowler-karlsson/front.svg",
  44537. extra: 897/845,
  44538. bottom: 123/1020
  44539. }
  44540. },
  44541. back: {
  44542. height: math.unit(200, "cm"),
  44543. weight: math.unit(250, "lb"),
  44544. name: "Back",
  44545. image: {
  44546. source: "./media/characters/fowler-karlsson/back.svg",
  44547. extra: 999/944,
  44548. bottom: 26/1025
  44549. }
  44550. },
  44551. dick: {
  44552. height: math.unit(1.92, "feet"),
  44553. weight: math.unit(150, "lb"),
  44554. name: "Dick",
  44555. image: {
  44556. source: "./media/characters/fowler-karlsson/dick.svg"
  44557. }
  44558. },
  44559. },
  44560. [
  44561. {
  44562. name: "Normal",
  44563. height: math.unit(200, "cm"),
  44564. default: true
  44565. },
  44566. {
  44567. name: "Smaller Macro",
  44568. height: math.unit(90, "m")
  44569. },
  44570. {
  44571. name: "Macro",
  44572. height: math.unit(150, "m")
  44573. },
  44574. {
  44575. name: "Bigger Macro",
  44576. height: math.unit(300, "m")
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44582. {
  44583. side: {
  44584. height: math.unit(8 + 2/12, "feet"),
  44585. weight: math.unit(1, "tonne"),
  44586. name: "Side",
  44587. image: {
  44588. source: "./media/characters/rylide/side.svg",
  44589. extra: 1318/1034,
  44590. bottom: 106/1424
  44591. }
  44592. },
  44593. sitting: {
  44594. height: math.unit(303, "cm"),
  44595. weight: math.unit(1, "tonne"),
  44596. name: "Sitting",
  44597. image: {
  44598. source: "./media/characters/rylide/sitting.svg",
  44599. extra: 1303/1103,
  44600. bottom: 36/1339
  44601. }
  44602. },
  44603. },
  44604. [
  44605. {
  44606. name: "Normal",
  44607. height: math.unit(8 + 2/12, "feet"),
  44608. default: true
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(5 + 10/12, "feet"),
  44617. weight: math.unit(160, "lb"),
  44618. name: "Front",
  44619. image: {
  44620. source: "./media/characters/pudask/front.svg",
  44621. extra: 1616/1590,
  44622. bottom: 161/1777
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Ferret Height",
  44629. height: math.unit(2 + 5/12, "feet")
  44630. },
  44631. {
  44632. name: "Canon Height",
  44633. height: math.unit(5 + 10/12, "feet"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(3 + 6/12, "feet"),
  44643. weight: math.unit(60, "lb"),
  44644. name: "Front",
  44645. image: {
  44646. source: "./media/characters/ramita/front.svg",
  44647. extra: 1402/1232,
  44648. bottom: 62/1464
  44649. }
  44650. },
  44651. dressed: {
  44652. height: math.unit(3 + 6/12, "feet"),
  44653. weight: math.unit(60, "lb"),
  44654. name: "Dressed",
  44655. image: {
  44656. source: "./media/characters/ramita/dressed.svg",
  44657. extra: 1534/1249,
  44658. bottom: 50/1584
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(3 + 6/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44672. {
  44673. front: {
  44674. height: math.unit(8, "feet"),
  44675. name: "Front",
  44676. image: {
  44677. source: "./media/characters/ark/front.svg",
  44678. extra: 772/693,
  44679. bottom: 45/817
  44680. }
  44681. },
  44682. },
  44683. [
  44684. {
  44685. name: "Normal",
  44686. height: math.unit(8, "feet"),
  44687. default: true
  44688. },
  44689. ]
  44690. ))
  44691. characterMakers.push(() => makeCharacter(
  44692. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44693. {
  44694. front: {
  44695. height: math.unit(6, "feet"),
  44696. weight: math.unit(250, "lb"),
  44697. volume: math.unit(5/8, "gallons"),
  44698. name: "Front",
  44699. image: {
  44700. source: "./media/characters/ludwig-horn/front.svg",
  44701. extra: 1782/1635,
  44702. bottom: 96/1878
  44703. }
  44704. },
  44705. back: {
  44706. height: math.unit(6, "feet"),
  44707. weight: math.unit(250, "lb"),
  44708. volume: math.unit(5/8, "gallons"),
  44709. name: "Back",
  44710. image: {
  44711. source: "./media/characters/ludwig-horn/back.svg",
  44712. extra: 1874/1729,
  44713. bottom: 27/1901
  44714. }
  44715. },
  44716. dick: {
  44717. height: math.unit(1.05, "feet"),
  44718. weight: math.unit(15, "lb"),
  44719. volume: math.unit(5/8, "gallons"),
  44720. name: "Dick",
  44721. image: {
  44722. source: "./media/characters/ludwig-horn/dick.svg"
  44723. }
  44724. },
  44725. },
  44726. [
  44727. {
  44728. name: "Small",
  44729. height: math.unit(6, "feet")
  44730. },
  44731. {
  44732. name: "Typical",
  44733. height: math.unit(12, "feet"),
  44734. default: true
  44735. },
  44736. {
  44737. name: "Building",
  44738. height: math.unit(80, "feet")
  44739. },
  44740. {
  44741. name: "Town",
  44742. height: math.unit(800, "feet")
  44743. },
  44744. {
  44745. name: "Kingdom",
  44746. height: math.unit(80000, "feet")
  44747. },
  44748. {
  44749. name: "Planet",
  44750. height: math.unit(8000000, "feet")
  44751. },
  44752. {
  44753. name: "Universe",
  44754. height: math.unit(8000000000, "feet")
  44755. },
  44756. {
  44757. name: "Transcended",
  44758. height: math.unit(8e27, "feet")
  44759. },
  44760. ]
  44761. ))
  44762. characterMakers.push(() => makeCharacter(
  44763. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44764. {
  44765. front: {
  44766. height: math.unit(5, "feet"),
  44767. weight: math.unit(50, "kg"),
  44768. name: "Front",
  44769. image: {
  44770. source: "./media/characters/biot-avery/front.svg",
  44771. extra: 1295/1232,
  44772. bottom: 86/1381
  44773. }
  44774. },
  44775. },
  44776. [
  44777. {
  44778. name: "Normal",
  44779. height: math.unit(5, "feet"),
  44780. default: true
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(6, "feet"),
  44789. name: "Front",
  44790. image: {
  44791. source: "./media/characters/kitsune-kiro/front.svg",
  44792. extra: 1270/1158,
  44793. bottom: 42/1312
  44794. }
  44795. },
  44796. frontAlt: {
  44797. height: math.unit(6, "feet"),
  44798. name: "Front-alt",
  44799. image: {
  44800. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44801. extra: 1130/1081,
  44802. bottom: 36/1166
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Smol",
  44809. height: math.unit(3, "feet")
  44810. },
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(6, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(6, "feet"),
  44823. weight: math.unit(125, "lb"),
  44824. name: "Front",
  44825. image: {
  44826. source: "./media/characters/jack-thatcher/front.svg",
  44827. extra: 1474/1370,
  44828. bottom: 26/1500
  44829. }
  44830. },
  44831. back: {
  44832. height: math.unit(6, "feet"),
  44833. weight: math.unit(125, "lb"),
  44834. name: "Back",
  44835. image: {
  44836. source: "./media/characters/jack-thatcher/back.svg",
  44837. extra: 1489/1384,
  44838. bottom: 18/1507
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Normal",
  44845. height: math.unit(6, "feet"),
  44846. default: true
  44847. },
  44848. {
  44849. name: "Macro",
  44850. height: math.unit(75, "feet")
  44851. },
  44852. {
  44853. name: "Macro-er",
  44854. height: math.unit(250, "feet")
  44855. },
  44856. ]
  44857. ))
  44858. characterMakers.push(() => makeCharacter(
  44859. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44860. {
  44861. front: {
  44862. height: math.unit(7, "feet"),
  44863. weight: math.unit(110, "kg"),
  44864. name: "Front",
  44865. image: {
  44866. source: "./media/characters/max-hyper/front.svg",
  44867. extra: 1969/1881,
  44868. bottom: 49/2018
  44869. }
  44870. },
  44871. },
  44872. [
  44873. {
  44874. name: "Normal",
  44875. height: math.unit(7, "feet"),
  44876. default: true
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44882. {
  44883. front: {
  44884. height: math.unit(5 + 5/12, "feet"),
  44885. weight: math.unit(160, "lb"),
  44886. name: "Front",
  44887. image: {
  44888. source: "./media/characters/spook/front.svg",
  44889. extra: 794/791,
  44890. bottom: 54/848
  44891. }
  44892. },
  44893. back: {
  44894. height: math.unit(5 + 5/12, "feet"),
  44895. weight: math.unit(160, "lb"),
  44896. name: "Back",
  44897. image: {
  44898. source: "./media/characters/spook/back.svg",
  44899. extra: 812/798,
  44900. bottom: 32/844
  44901. }
  44902. },
  44903. },
  44904. [
  44905. {
  44906. name: "Normal",
  44907. height: math.unit(5 + 5/12, "feet"),
  44908. default: true
  44909. },
  44910. ]
  44911. ))
  44912. characterMakers.push(() => makeCharacter(
  44913. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44914. {
  44915. front: {
  44916. height: math.unit(18, "feet"),
  44917. name: "Front",
  44918. image: {
  44919. source: "./media/characters/xeaduulix/front.svg",
  44920. extra: 1380/1166,
  44921. bottom: 110/1490
  44922. }
  44923. },
  44924. back: {
  44925. height: math.unit(18, "feet"),
  44926. name: "Back",
  44927. image: {
  44928. source: "./media/characters/xeaduulix/back.svg",
  44929. extra: 1592/1170,
  44930. bottom: 128/1720
  44931. }
  44932. },
  44933. frontNsfw: {
  44934. height: math.unit(18, "feet"),
  44935. name: "Front (NSFW)",
  44936. image: {
  44937. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44938. extra: 1380/1166,
  44939. bottom: 110/1490
  44940. }
  44941. },
  44942. backNsfw: {
  44943. height: math.unit(18, "feet"),
  44944. name: "Back (NSFW)",
  44945. image: {
  44946. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44947. extra: 1592/1170,
  44948. bottom: 128/1720
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(18, "feet"),
  44956. default: true
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44962. {
  44963. spreadWings: {
  44964. height: math.unit(20, "feet"),
  44965. name: "Spread Wings",
  44966. image: {
  44967. source: "./media/characters/fledge/spread-wings.svg",
  44968. extra: 693/635,
  44969. bottom: 26/719
  44970. }
  44971. },
  44972. front: {
  44973. height: math.unit(20, "feet"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/fledge/front.svg",
  44977. extra: 684/637,
  44978. bottom: 18/702
  44979. }
  44980. },
  44981. frontAlt: {
  44982. height: math.unit(20, "feet"),
  44983. name: "Front (Alt)",
  44984. image: {
  44985. source: "./media/characters/fledge/front-alt.svg",
  44986. extra: 708/664,
  44987. bottom: 13/721
  44988. }
  44989. },
  44990. back: {
  44991. height: math.unit(20, "feet"),
  44992. name: "Back",
  44993. image: {
  44994. source: "./media/characters/fledge/back.svg",
  44995. extra: 718/634,
  44996. bottom: 22/740
  44997. }
  44998. },
  44999. head: {
  45000. height: math.unit(5.55, "feet"),
  45001. name: "Head",
  45002. image: {
  45003. source: "./media/characters/fledge/head.svg"
  45004. }
  45005. },
  45006. headAlt: {
  45007. height: math.unit(5.1, "feet"),
  45008. name: "Head (Alt)",
  45009. image: {
  45010. source: "./media/characters/fledge/head-alt.svg"
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Small",
  45017. height: math.unit(6 + 2/12, "feet")
  45018. },
  45019. {
  45020. name: "Big",
  45021. height: math.unit(20, "feet"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "Giant",
  45026. height: math.unit(100, "feet")
  45027. },
  45028. {
  45029. name: "Macro",
  45030. height: math.unit(200, "feet")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45036. {
  45037. front: {
  45038. height: math.unit(1, "meter"),
  45039. name: "Front",
  45040. image: {
  45041. source: "./media/characters/atlas-morenai/front.svg",
  45042. extra: 1275/1043,
  45043. bottom: 19/1294
  45044. }
  45045. },
  45046. back: {
  45047. height: math.unit(1, "meter"),
  45048. name: "Back",
  45049. image: {
  45050. source: "./media/characters/atlas-morenai/back.svg",
  45051. extra: 1141/1001,
  45052. bottom: 25/1166
  45053. }
  45054. },
  45055. },
  45056. [
  45057. {
  45058. name: "Normal",
  45059. height: math.unit(1, "meter"),
  45060. default: true
  45061. },
  45062. {
  45063. name: "Magic-Infused",
  45064. height: math.unit(5, "meters")
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45070. {
  45071. front: {
  45072. height: math.unit(5, "meters"),
  45073. name: "Front",
  45074. image: {
  45075. source: "./media/characters/cintia/front.svg",
  45076. extra: 1312/1228,
  45077. bottom: 38/1350
  45078. }
  45079. },
  45080. back: {
  45081. height: math.unit(5, "meters"),
  45082. name: "Back",
  45083. image: {
  45084. source: "./media/characters/cintia/back.svg",
  45085. extra: 1260/1166,
  45086. bottom: 98/1358
  45087. }
  45088. },
  45089. frontDick: {
  45090. height: math.unit(5, "meters"),
  45091. name: "Front (Dick)",
  45092. image: {
  45093. source: "./media/characters/cintia/front-dick.svg",
  45094. extra: 1312/1228,
  45095. bottom: 38/1350
  45096. }
  45097. },
  45098. backDick: {
  45099. height: math.unit(5, "meters"),
  45100. name: "Back (Dick)",
  45101. image: {
  45102. source: "./media/characters/cintia/back-dick.svg",
  45103. extra: 1260/1166,
  45104. bottom: 98/1358
  45105. }
  45106. },
  45107. bust: {
  45108. height: math.unit(1.97, "meters"),
  45109. name: "Bust",
  45110. image: {
  45111. source: "./media/characters/cintia/bust.svg",
  45112. extra: 617/565,
  45113. bottom: 0/617
  45114. }
  45115. },
  45116. },
  45117. [
  45118. {
  45119. name: "Normal",
  45120. height: math.unit(5, "meters"),
  45121. default: true
  45122. },
  45123. ]
  45124. ))
  45125. characterMakers.push(() => makeCharacter(
  45126. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45127. {
  45128. side: {
  45129. height: math.unit(100, "feet"),
  45130. name: "Side",
  45131. image: {
  45132. source: "./media/characters/denora/side.svg",
  45133. extra: 875/803,
  45134. bottom: 9/884
  45135. }
  45136. },
  45137. },
  45138. [
  45139. {
  45140. name: "Standard",
  45141. height: math.unit(100, "feet"),
  45142. default: true
  45143. },
  45144. {
  45145. name: "Grand",
  45146. height: math.unit(1000, "feet")
  45147. },
  45148. {
  45149. name: "Conquering",
  45150. height: math.unit(10000, "feet")
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45156. {
  45157. dressed: {
  45158. height: math.unit(8 + 5/12, "feet"),
  45159. weight: math.unit(700, "lb"),
  45160. name: "Dressed",
  45161. image: {
  45162. source: "./media/characters/kiva/dressed.svg",
  45163. extra: 1102/1055,
  45164. bottom: 60/1162
  45165. }
  45166. },
  45167. nude: {
  45168. height: math.unit(8 + 5/12, "feet"),
  45169. weight: math.unit(700, "lb"),
  45170. name: "Nude",
  45171. image: {
  45172. source: "./media/characters/kiva/nude.svg",
  45173. extra: 1102/1055,
  45174. bottom: 60/1162
  45175. }
  45176. },
  45177. },
  45178. [
  45179. {
  45180. name: "Base Height",
  45181. height: math.unit(8 + 5/12, "feet"),
  45182. default: true
  45183. },
  45184. {
  45185. name: "Macro",
  45186. height: math.unit(100, "feet")
  45187. },
  45188. {
  45189. name: "Max",
  45190. height: math.unit(3280, "feet")
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45196. {
  45197. front: {
  45198. height: math.unit(6 + 8/12, "feet"),
  45199. weight: math.unit(250, "lb"),
  45200. name: "Front",
  45201. image: {
  45202. source: "./media/characters/ztragon/front.svg",
  45203. extra: 1825/1684,
  45204. bottom: 98/1923
  45205. }
  45206. },
  45207. },
  45208. [
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(6 + 8/12, "feet"),
  45212. default: true
  45213. },
  45214. {
  45215. name: "Macro",
  45216. height: math.unit(80, "feet")
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45222. {
  45223. front: {
  45224. height: math.unit(10.4, "feet"),
  45225. weight: math.unit(2, "tons"),
  45226. name: "Front",
  45227. image: {
  45228. source: "./media/characters/yesenia/front.svg",
  45229. extra: 1479/1474,
  45230. bottom: 233/1712
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(10.4, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45244. {
  45245. normal: {
  45246. height: math.unit(6 + 1/12, "feet"),
  45247. weight: math.unit(180, "lb"),
  45248. name: "Normal",
  45249. image: {
  45250. source: "./media/characters/leanne-lycheborne/normal.svg",
  45251. extra: 1748/1660,
  45252. bottom: 98/1846
  45253. }
  45254. },
  45255. were: {
  45256. height: math.unit(12, "feet"),
  45257. weight: math.unit(1600, "lb"),
  45258. name: "Were",
  45259. image: {
  45260. source: "./media/characters/leanne-lycheborne/were.svg",
  45261. extra: 1485/1432,
  45262. bottom: 66/1551
  45263. }
  45264. },
  45265. },
  45266. [
  45267. {
  45268. name: "Normal",
  45269. height: math.unit(6 + 1/12, "feet"),
  45270. default: true
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45276. {
  45277. side: {
  45278. height: math.unit(13, "feet"),
  45279. name: "Side",
  45280. image: {
  45281. source: "./media/characters/kira-tyler/side.svg",
  45282. extra: 693/393,
  45283. bottom: 58/751
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(13, "feet"),
  45291. default: true
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45297. {
  45298. front: {
  45299. height: math.unit(10.3, "feet"),
  45300. weight: math.unit(150, "lb"),
  45301. name: "Front",
  45302. image: {
  45303. source: "./media/characters/blaze/front.svg",
  45304. extra: 1378/1286,
  45305. bottom: 172/1550
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(10.3, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45319. {
  45320. side: {
  45321. height: math.unit(2, "meters"),
  45322. weight: math.unit(400, "kg"),
  45323. name: "Side",
  45324. image: {
  45325. source: "./media/characters/anu/side.svg",
  45326. extra: 506/394,
  45327. bottom: 18/524
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Humanoid",
  45334. height: math.unit(2, "meters")
  45335. },
  45336. {
  45337. name: "Normal",
  45338. height: math.unit(5, "meters"),
  45339. default: true
  45340. },
  45341. ]
  45342. ))
  45343. characterMakers.push(() => makeCharacter(
  45344. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45345. {
  45346. front: {
  45347. height: math.unit(5 + 5/12, "feet"),
  45348. weight: math.unit(170, "lb"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/synx-the-lynx/front.svg",
  45352. extra: 1893/1745,
  45353. bottom: 17/1910
  45354. }
  45355. },
  45356. side: {
  45357. height: math.unit(5 + 5/12, "feet"),
  45358. weight: math.unit(170, "lb"),
  45359. name: "Side",
  45360. image: {
  45361. source: "./media/characters/synx-the-lynx/side.svg",
  45362. extra: 1884/1740,
  45363. bottom: 39/1923
  45364. }
  45365. },
  45366. back: {
  45367. height: math.unit(5 + 5/12, "feet"),
  45368. weight: math.unit(170, "lb"),
  45369. name: "Back",
  45370. image: {
  45371. source: "./media/characters/synx-the-lynx/back.svg",
  45372. extra: 1903/1755,
  45373. bottom: 14/1917
  45374. }
  45375. },
  45376. },
  45377. [
  45378. {
  45379. name: "Normal",
  45380. height: math.unit(5 + 5/12, "feet"),
  45381. default: true
  45382. },
  45383. ]
  45384. ))
  45385. characterMakers.push(() => makeCharacter(
  45386. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45387. {
  45388. back: {
  45389. height: math.unit(15, "feet"),
  45390. name: "Back",
  45391. image: {
  45392. source: "./media/characters/nadezda-fex/back.svg",
  45393. extra: 1695/1481,
  45394. bottom: 25/1720
  45395. }
  45396. },
  45397. },
  45398. [
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(15, "feet"),
  45402. default: true
  45403. },
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(2.5, "miles")
  45407. },
  45408. {
  45409. name: "Goddess",
  45410. height: math.unit(2, "multiverses")
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45416. {
  45417. front: {
  45418. height: math.unit(216, "cm"),
  45419. name: "Front",
  45420. image: {
  45421. source: "./media/characters/lev/front.svg",
  45422. extra: 1728/1670,
  45423. bottom: 82/1810
  45424. }
  45425. },
  45426. back: {
  45427. height: math.unit(216, "cm"),
  45428. name: "Back",
  45429. image: {
  45430. source: "./media/characters/lev/back.svg",
  45431. extra: 1738/1675,
  45432. bottom: 24/1762
  45433. }
  45434. },
  45435. dressed: {
  45436. height: math.unit(216, "cm"),
  45437. name: "Dressed",
  45438. image: {
  45439. source: "./media/characters/lev/dressed.svg",
  45440. extra: 1397/1351,
  45441. bottom: 73/1470
  45442. }
  45443. },
  45444. head: {
  45445. height: math.unit(0.51, "meter"),
  45446. name: "Head",
  45447. image: {
  45448. source: "./media/characters/lev/head.svg"
  45449. }
  45450. },
  45451. },
  45452. [
  45453. {
  45454. name: "Normal",
  45455. height: math.unit(216, "cm"),
  45456. default: true
  45457. },
  45458. {
  45459. name: "Relatively Macro",
  45460. height: math.unit(80, "meters")
  45461. },
  45462. {
  45463. name: "Megamacro",
  45464. height: math.unit(21600, "meters")
  45465. },
  45466. {
  45467. name: "Megamacro+",
  45468. height: math.unit(64800, "meters")
  45469. },
  45470. ]
  45471. ))
  45472. characterMakers.push(() => makeCharacter(
  45473. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45474. {
  45475. front: {
  45476. height: math.unit(2, "meters"),
  45477. weight: math.unit(80, "kg"),
  45478. name: "Front",
  45479. image: {
  45480. source: "./media/characters/moka/front.svg",
  45481. extra: 1337/1255,
  45482. bottom: 58/1395
  45483. }
  45484. },
  45485. },
  45486. [
  45487. {
  45488. name: "Micro",
  45489. height: math.unit(15, "cm")
  45490. },
  45491. {
  45492. name: "Normal",
  45493. height: math.unit(2, "meters"),
  45494. default: true
  45495. },
  45496. {
  45497. name: "Macro",
  45498. height: math.unit(20, "meters"),
  45499. },
  45500. ]
  45501. ))
  45502. characterMakers.push(() => makeCharacter(
  45503. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45504. {
  45505. front: {
  45506. height: math.unit(9, "feet"),
  45507. weight: math.unit(240, "lb"),
  45508. name: "Front",
  45509. image: {
  45510. source: "./media/characters/kuzco/front.svg",
  45511. extra: 1593/1487,
  45512. bottom: 32/1625
  45513. }
  45514. },
  45515. side: {
  45516. height: math.unit(9, "feet"),
  45517. weight: math.unit(240, "lb"),
  45518. name: "Side",
  45519. image: {
  45520. source: "./media/characters/kuzco/side.svg",
  45521. extra: 1575/1485,
  45522. bottom: 30/1605
  45523. }
  45524. },
  45525. back: {
  45526. height: math.unit(9, "feet"),
  45527. weight: math.unit(240, "lb"),
  45528. name: "Back",
  45529. image: {
  45530. source: "./media/characters/kuzco/back.svg",
  45531. extra: 1603/1514,
  45532. bottom: 14/1617
  45533. }
  45534. },
  45535. },
  45536. [
  45537. {
  45538. name: "Normal",
  45539. height: math.unit(9, "feet"),
  45540. default: true
  45541. },
  45542. ]
  45543. ))
  45544. characterMakers.push(() => makeCharacter(
  45545. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45546. {
  45547. side: {
  45548. height: math.unit(2, "meters"),
  45549. weight: math.unit(300, "kg"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/ceruleus/side.svg",
  45553. extra: 1068/974,
  45554. bottom: 126/1194
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(16, "meters"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45568. {
  45569. front: {
  45570. height: math.unit(9, "feet"),
  45571. weight: math.unit(500, "kg"),
  45572. name: "Front",
  45573. image: {
  45574. source: "./media/characters/acouya/front.svg",
  45575. extra: 1660/1473,
  45576. bottom: 28/1688
  45577. }
  45578. },
  45579. },
  45580. [
  45581. {
  45582. name: "Normal",
  45583. height: math.unit(9, "feet"),
  45584. default: true
  45585. },
  45586. ]
  45587. ))
  45588. characterMakers.push(() => makeCharacter(
  45589. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45590. {
  45591. front: {
  45592. height: math.unit(5 + 6/12, "feet"),
  45593. weight: math.unit(195, "lb"),
  45594. name: "Front",
  45595. image: {
  45596. source: "./media/characters/vant/front.svg",
  45597. extra: 1396/1320,
  45598. bottom: 20/1416
  45599. }
  45600. },
  45601. back: {
  45602. height: math.unit(5 + 6/12, "feet"),
  45603. weight: math.unit(195, "lb"),
  45604. name: "Back",
  45605. image: {
  45606. source: "./media/characters/vant/back.svg",
  45607. extra: 1396/1320,
  45608. bottom: 20/1416
  45609. }
  45610. },
  45611. maw: {
  45612. height: math.unit(0.75, "feet"),
  45613. name: "Maw",
  45614. image: {
  45615. source: "./media/characters/vant/maw.svg"
  45616. }
  45617. },
  45618. paw: {
  45619. height: math.unit(1.07, "feet"),
  45620. name: "Paw",
  45621. image: {
  45622. source: "./media/characters/vant/paw.svg"
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Micro",
  45629. height: math.unit(0.25, "inches")
  45630. },
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(5 + 6/12, "feet"),
  45634. default: true
  45635. },
  45636. {
  45637. name: "Macro",
  45638. height: math.unit(75, "feet")
  45639. },
  45640. ]
  45641. ))
  45642. characterMakers.push(() => makeCharacter(
  45643. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45644. {
  45645. front: {
  45646. height: math.unit(30, "meters"),
  45647. weight: math.unit(363, "tons"),
  45648. name: "Front",
  45649. image: {
  45650. source: "./media/characters/ahra/front.svg",
  45651. extra: 1914/1814,
  45652. bottom: 46/1960
  45653. }
  45654. },
  45655. },
  45656. [
  45657. {
  45658. name: "Macro",
  45659. height: math.unit(30, "meters"),
  45660. default: true
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45666. {
  45667. undressed: {
  45668. height: math.unit(2, "m"),
  45669. weight: math.unit(250, "kg"),
  45670. name: "Undressed",
  45671. image: {
  45672. source: "./media/characters/coriander/undressed.svg",
  45673. extra: 1757/1606,
  45674. bottom: 107/1864
  45675. }
  45676. },
  45677. dressed: {
  45678. height: math.unit(2, "m"),
  45679. weight: math.unit(250, "kg"),
  45680. name: "Dressed",
  45681. image: {
  45682. source: "./media/characters/coriander/dressed.svg",
  45683. extra: 1757/1606,
  45684. bottom: 107/1864
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(4, "meters"),
  45692. default: true
  45693. },
  45694. {
  45695. name: "XL",
  45696. height: math.unit(6, "meters")
  45697. },
  45698. {
  45699. name: "XXL",
  45700. height: math.unit(8, "meters")
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45706. {
  45707. front: {
  45708. height: math.unit(6, "feet"),
  45709. name: "Front",
  45710. image: {
  45711. source: "./media/characters/syrinx/front.svg",
  45712. extra: 1557/1259,
  45713. bottom: 171/1728
  45714. }
  45715. },
  45716. },
  45717. [
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(6 + 3/12, "feet"),
  45721. default: true
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45727. {
  45728. front: {
  45729. height: math.unit(11 + 6/12, "feet"),
  45730. weight: math.unit(1.5, "tons"),
  45731. name: "Front",
  45732. image: {
  45733. source: "./media/characters/bor/front.svg",
  45734. extra: 1189/1109,
  45735. bottom: 170/1359
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(11 + 6/12, "feet"),
  45743. default: true
  45744. },
  45745. {
  45746. name: "Macro",
  45747. height: math.unit(32 + 9/12, "feet")
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45753. {
  45754. anthro: {
  45755. height: math.unit(9, "feet"),
  45756. weight: math.unit(2076, "lb"),
  45757. name: "Anthro",
  45758. image: {
  45759. source: "./media/characters/abacus/anthro.svg",
  45760. extra: 1540/1494,
  45761. bottom: 233/1773
  45762. }
  45763. },
  45764. pigeon: {
  45765. height: math.unit(1, "feet"),
  45766. name: "Pigeon",
  45767. image: {
  45768. source: "./media/characters/abacus/pigeon.svg",
  45769. extra: 528/525,
  45770. bottom: 46/574
  45771. }
  45772. },
  45773. },
  45774. [
  45775. {
  45776. name: "Normal",
  45777. height: math.unit(9, "feet"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45784. {
  45785. side: {
  45786. height: math.unit(6, "feet"),
  45787. name: "Side",
  45788. image: {
  45789. source: "./media/characters/delkhan/side.svg",
  45790. extra: 1884/1786,
  45791. bottom: 308/2192
  45792. }
  45793. },
  45794. head: {
  45795. height: math.unit(3.38, "feet"),
  45796. name: "Head",
  45797. image: {
  45798. source: "./media/characters/delkhan/head.svg"
  45799. }
  45800. },
  45801. },
  45802. [
  45803. {
  45804. name: "Normal",
  45805. height: math.unit(72, "feet"),
  45806. default: true
  45807. },
  45808. {
  45809. name: "Giant",
  45810. height: math.unit(172, "feet")
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45816. {
  45817. standing: {
  45818. height: math.unit(6, "feet"),
  45819. name: "Standing",
  45820. image: {
  45821. source: "./media/characters/euchidat/standing.svg",
  45822. extra: 1612/1553,
  45823. bottom: 116/1728
  45824. }
  45825. },
  45826. leaning: {
  45827. height: math.unit(6, "feet"),
  45828. name: "Leaning",
  45829. image: {
  45830. source: "./media/characters/euchidat/leaning.svg",
  45831. extra: 1719/1674,
  45832. bottom: 27/1746
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(175, "feet"),
  45840. default: true
  45841. },
  45842. {
  45843. name: "Megamacro",
  45844. height: math.unit(190, "miles")
  45845. },
  45846. {
  45847. name: "Gigamacro",
  45848. height: math.unit(190000, "miles")
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(6, "feet"),
  45857. weight: math.unit(150, "lb"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/rebecca-stack/front.svg",
  45861. extra: 1256/1201,
  45862. bottom: 18/1274
  45863. }
  45864. },
  45865. },
  45866. [
  45867. {
  45868. name: "Normal",
  45869. height: math.unit(5 + 8/12, "feet"),
  45870. default: true
  45871. },
  45872. {
  45873. name: "Demolitionist",
  45874. height: math.unit(200, "feet")
  45875. },
  45876. {
  45877. name: "Out of Control",
  45878. height: math.unit(2, "miles")
  45879. },
  45880. {
  45881. name: "Giga",
  45882. height: math.unit(7200, "miles")
  45883. },
  45884. ]
  45885. ))
  45886. characterMakers.push(() => makeCharacter(
  45887. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45888. {
  45889. front: {
  45890. height: math.unit(6, "feet"),
  45891. weight: math.unit(150, "lb"),
  45892. name: "Front",
  45893. image: {
  45894. source: "./media/characters/jenny-cartwright/front.svg",
  45895. extra: 1384/1376,
  45896. bottom: 58/1442
  45897. }
  45898. },
  45899. },
  45900. [
  45901. {
  45902. name: "Normal",
  45903. height: math.unit(6 + 7/12, "feet"),
  45904. default: true
  45905. },
  45906. {
  45907. name: "Librarian",
  45908. height: math.unit(55, "feet")
  45909. },
  45910. {
  45911. name: "Sightseer",
  45912. height: math.unit(50, "miles")
  45913. },
  45914. {
  45915. name: "Giga",
  45916. height: math.unit(30000, "miles")
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45922. {
  45923. nude: {
  45924. height: math.unit(8, "feet"),
  45925. weight: math.unit(225, "lb"),
  45926. name: "Nude",
  45927. image: {
  45928. source: "./media/characters/marvy/nude.svg",
  45929. extra: 1900/1683,
  45930. bottom: 89/1989
  45931. }
  45932. },
  45933. dressed: {
  45934. height: math.unit(8, "feet"),
  45935. weight: math.unit(225, "lb"),
  45936. name: "Dressed",
  45937. image: {
  45938. source: "./media/characters/marvy/dressed.svg",
  45939. extra: 1900/1683,
  45940. bottom: 89/1989
  45941. }
  45942. },
  45943. head: {
  45944. height: math.unit(2.85, "feet"),
  45945. name: "Head",
  45946. image: {
  45947. source: "./media/characters/marvy/head.svg"
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(8, "feet"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45961. {
  45962. front: {
  45963. height: math.unit(8, "feet"),
  45964. weight: math.unit(250, "lb"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/leah/front.svg",
  45968. extra: 1257/1149,
  45969. bottom: 109/1366
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(8, "feet"),
  45977. default: true
  45978. },
  45979. {
  45980. name: "Minimacro",
  45981. height: math.unit(40, "feet")
  45982. },
  45983. {
  45984. name: "Macro",
  45985. height: math.unit(124, "feet")
  45986. },
  45987. {
  45988. name: "Megamacro",
  45989. height: math.unit(850, "feet")
  45990. },
  45991. ]
  45992. ))
  45993. characterMakers.push(() => makeCharacter(
  45994. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45995. {
  45996. side: {
  45997. height: math.unit(13 + 6/12, "feet"),
  45998. weight: math.unit(3200, "lb"),
  45999. name: "Side",
  46000. image: {
  46001. source: "./media/characters/alvir/side.svg",
  46002. extra: 896/589,
  46003. bottom: 26/922
  46004. }
  46005. },
  46006. },
  46007. [
  46008. {
  46009. name: "Normal",
  46010. height: math.unit(13 + 6/12, "feet"),
  46011. default: true
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46017. {
  46018. front: {
  46019. height: math.unit(5 + 4/12, "feet"),
  46020. weight: math.unit(236, "lb"),
  46021. name: "Front",
  46022. image: {
  46023. source: "./media/characters/zaina-khalil/front.svg",
  46024. extra: 1533/1485,
  46025. bottom: 94/1627
  46026. }
  46027. },
  46028. side: {
  46029. height: math.unit(5 + 4/12, "feet"),
  46030. weight: math.unit(236, "lb"),
  46031. name: "Side",
  46032. image: {
  46033. source: "./media/characters/zaina-khalil/side.svg",
  46034. extra: 1537/1498,
  46035. bottom: 66/1603
  46036. }
  46037. },
  46038. back: {
  46039. height: math.unit(5 + 4/12, "feet"),
  46040. weight: math.unit(236, "lb"),
  46041. name: "Back",
  46042. image: {
  46043. source: "./media/characters/zaina-khalil/back.svg",
  46044. extra: 1546/1494,
  46045. bottom: 89/1635
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(5 + 4/12, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46059. {
  46060. side: {
  46061. height: math.unit(12, "feet"),
  46062. weight: math.unit(4000, "lb"),
  46063. name: "Side",
  46064. image: {
  46065. source: "./media/characters/terry/side.svg",
  46066. extra: 1518/1439,
  46067. bottom: 149/1667
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(12, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46081. {
  46082. front: {
  46083. height: math.unit(12, "feet"),
  46084. weight: math.unit(1500, "lb"),
  46085. name: "Front",
  46086. image: {
  46087. source: "./media/characters/kahea/front.svg",
  46088. extra: 1722/1617,
  46089. bottom: 179/1901
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Normal",
  46096. height: math.unit(12, "feet"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46103. {
  46104. demonFront: {
  46105. height: math.unit(36, "feet"),
  46106. name: "Front",
  46107. image: {
  46108. source: "./media/characters/alex-xuria/demon-front.svg",
  46109. extra: 1705/1673,
  46110. bottom: 198/1903
  46111. },
  46112. form: "demon",
  46113. default: true
  46114. },
  46115. demonBack: {
  46116. height: math.unit(36, "feet"),
  46117. name: "Back",
  46118. image: {
  46119. source: "./media/characters/alex-xuria/demon-back.svg",
  46120. extra: 1725/1693,
  46121. bottom: 70/1795
  46122. },
  46123. form: "demon"
  46124. },
  46125. demonHead: {
  46126. height: math.unit(2.14, "meters"),
  46127. name: "Head",
  46128. image: {
  46129. source: "./media/characters/alex-xuria/demon-head.svg"
  46130. },
  46131. form: "demon"
  46132. },
  46133. demonHand: {
  46134. height: math.unit(1.61, "meters"),
  46135. name: "Hand",
  46136. image: {
  46137. source: "./media/characters/alex-xuria/demon-hand.svg"
  46138. },
  46139. form: "demon"
  46140. },
  46141. demonPaw: {
  46142. height: math.unit(1.35, "meters"),
  46143. name: "Paw",
  46144. image: {
  46145. source: "./media/characters/alex-xuria/demon-paw.svg"
  46146. },
  46147. form: "demon"
  46148. },
  46149. demonFoot: {
  46150. height: math.unit(2.2, "meters"),
  46151. name: "Foot",
  46152. image: {
  46153. source: "./media/characters/alex-xuria/demon-foot.svg"
  46154. },
  46155. form: "demon"
  46156. },
  46157. demonCock: {
  46158. height: math.unit(1.74, "meters"),
  46159. name: "Cock",
  46160. image: {
  46161. source: "./media/characters/alex-xuria/demon-cock.svg"
  46162. },
  46163. form: "demon"
  46164. },
  46165. demonTailClosed: {
  46166. height: math.unit(1.47, "meters"),
  46167. name: "Tail (Closed)",
  46168. image: {
  46169. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46170. },
  46171. form: "demon"
  46172. },
  46173. demonTailOpen: {
  46174. height: math.unit(2.85, "meters"),
  46175. name: "Tail (Open)",
  46176. image: {
  46177. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46178. },
  46179. form: "demon"
  46180. },
  46181. incubusFront: {
  46182. height: math.unit(12, "feet"),
  46183. name: "Front",
  46184. image: {
  46185. source: "./media/characters/alex-xuria/incubus-front.svg",
  46186. extra: 1754/1677,
  46187. bottom: 125/1879
  46188. },
  46189. form: "incubus",
  46190. default: true
  46191. },
  46192. incubusBack: {
  46193. height: math.unit(12, "feet"),
  46194. name: "Back",
  46195. image: {
  46196. source: "./media/characters/alex-xuria/incubus-back.svg",
  46197. extra: 1702/1647,
  46198. bottom: 30/1732
  46199. },
  46200. form: "incubus"
  46201. },
  46202. incubusHead: {
  46203. height: math.unit(3.45, "feet"),
  46204. name: "Head",
  46205. image: {
  46206. source: "./media/characters/alex-xuria/incubus-head.svg"
  46207. },
  46208. form: "incubus"
  46209. },
  46210. rabbitFront: {
  46211. height: math.unit(6, "feet"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46215. extra: 1369/1349,
  46216. bottom: 45/1414
  46217. },
  46218. form: "rabbit",
  46219. default: true
  46220. },
  46221. rabbitSide: {
  46222. height: math.unit(6, "feet"),
  46223. name: "Side",
  46224. image: {
  46225. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46226. extra: 1370/1356,
  46227. bottom: 37/1407
  46228. },
  46229. form: "rabbit"
  46230. },
  46231. rabbitBack: {
  46232. height: math.unit(6, "feet"),
  46233. name: "Back",
  46234. image: {
  46235. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46236. extra: 1375/1358,
  46237. bottom: 43/1418
  46238. },
  46239. form: "rabbit"
  46240. },
  46241. },
  46242. [
  46243. {
  46244. name: "Normal",
  46245. height: math.unit(6, "feet"),
  46246. default: true,
  46247. form: "rabbit"
  46248. },
  46249. {
  46250. name: "Incubus",
  46251. height: math.unit(12, "feet"),
  46252. default: true,
  46253. form: "incubus"
  46254. },
  46255. {
  46256. name: "Demon",
  46257. height: math.unit(36, "feet"),
  46258. default: true,
  46259. form: "demon"
  46260. }
  46261. ],
  46262. {
  46263. "demon": {
  46264. name: "Demon",
  46265. default: true
  46266. },
  46267. "incubus": {
  46268. name: "Incubus",
  46269. },
  46270. "rabbit": {
  46271. name: "Rabbit"
  46272. }
  46273. }
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(7 + 5/12, "feet"),
  46280. weight: math.unit(510, "lb"),
  46281. name: "Front",
  46282. image: {
  46283. source: "./media/characters/syrup/front.svg",
  46284. extra: 932/916,
  46285. bottom: 26/958
  46286. }
  46287. },
  46288. },
  46289. [
  46290. {
  46291. name: "Normal",
  46292. height: math.unit(7 + 5/12, "feet"),
  46293. default: true
  46294. },
  46295. {
  46296. name: "Big",
  46297. height: math.unit(50, "feet")
  46298. },
  46299. {
  46300. name: "Macro",
  46301. height: math.unit(300, "feet")
  46302. },
  46303. {
  46304. name: "Megamacro",
  46305. height: math.unit(1, "mile")
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46311. {
  46312. front: {
  46313. height: math.unit(6 + 9/12, "feet"),
  46314. name: "Front",
  46315. image: {
  46316. source: "./media/characters/zeimne/front.svg",
  46317. extra: 1969/1806,
  46318. bottom: 53/2022
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(6 + 9/12, "feet"),
  46326. default: true
  46327. },
  46328. {
  46329. name: "Giant",
  46330. height: math.unit(550, "feet")
  46331. },
  46332. {
  46333. name: "Mega",
  46334. height: math.unit(3, "miles")
  46335. },
  46336. {
  46337. name: "Giga",
  46338. height: math.unit(250, "miles")
  46339. },
  46340. {
  46341. name: "Tera",
  46342. height: math.unit(1, "AU")
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(5 + 2/12, "feet"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/grar/front.svg",
  46354. extra: 1331/1119,
  46355. bottom: 60/1391
  46356. }
  46357. },
  46358. back: {
  46359. height: math.unit(5 + 2/12, "feet"),
  46360. name: "Back",
  46361. image: {
  46362. source: "./media/characters/grar/back.svg",
  46363. extra: 1385/1169,
  46364. bottom: 23/1408
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Normal",
  46371. height: math.unit(5 + 2/12, "feet"),
  46372. default: true
  46373. },
  46374. ]
  46375. ))
  46376. characterMakers.push(() => makeCharacter(
  46377. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46378. {
  46379. front: {
  46380. height: math.unit(13 + 7/12, "feet"),
  46381. weight: math.unit(2200, "lb"),
  46382. name: "Front",
  46383. image: {
  46384. source: "./media/characters/endraya/front.svg",
  46385. extra: 1289/1215,
  46386. bottom: 50/1339
  46387. }
  46388. },
  46389. nude: {
  46390. height: math.unit(13 + 7/12, "feet"),
  46391. weight: math.unit(2200, "lb"),
  46392. name: "Nude",
  46393. image: {
  46394. source: "./media/characters/endraya/nude.svg",
  46395. extra: 1247/1171,
  46396. bottom: 40/1287
  46397. }
  46398. },
  46399. head: {
  46400. height: math.unit(2.6, "feet"),
  46401. name: "Head",
  46402. image: {
  46403. source: "./media/characters/endraya/head.svg"
  46404. }
  46405. },
  46406. slit: {
  46407. height: math.unit(3.4, "feet"),
  46408. name: "Slit",
  46409. image: {
  46410. source: "./media/characters/endraya/slit.svg"
  46411. }
  46412. },
  46413. },
  46414. [
  46415. {
  46416. name: "Normal",
  46417. height: math.unit(13 + 7/12, "feet"),
  46418. default: true
  46419. },
  46420. {
  46421. name: "Macro",
  46422. height: math.unit(200, "feet")
  46423. },
  46424. ]
  46425. ))
  46426. characterMakers.push(() => makeCharacter(
  46427. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46428. {
  46429. front: {
  46430. height: math.unit(1.81, "meters"),
  46431. weight: math.unit(69, "kg"),
  46432. name: "Front",
  46433. image: {
  46434. source: "./media/characters/rodryana/front.svg",
  46435. extra: 2002/1921,
  46436. bottom: 53/2055
  46437. }
  46438. },
  46439. back: {
  46440. height: math.unit(1.81, "meters"),
  46441. weight: math.unit(69, "kg"),
  46442. name: "Back",
  46443. image: {
  46444. source: "./media/characters/rodryana/back.svg",
  46445. extra: 1993/1926,
  46446. bottom: 48/2041
  46447. }
  46448. },
  46449. maw: {
  46450. height: math.unit(0.19769417475, "meters"),
  46451. name: "Maw",
  46452. image: {
  46453. source: "./media/characters/rodryana/maw.svg"
  46454. }
  46455. },
  46456. slit: {
  46457. height: math.unit(0.31631067961, "meters"),
  46458. name: "Slit",
  46459. image: {
  46460. source: "./media/characters/rodryana/slit.svg"
  46461. }
  46462. },
  46463. },
  46464. [
  46465. {
  46466. name: "Normal",
  46467. height: math.unit(1.81, "meters")
  46468. },
  46469. {
  46470. name: "Mini Macro",
  46471. height: math.unit(181, "meters")
  46472. },
  46473. {
  46474. name: "Macro",
  46475. height: math.unit(452, "meters"),
  46476. default: true
  46477. },
  46478. {
  46479. name: "Mega Macro",
  46480. height: math.unit(1.375, "km")
  46481. },
  46482. {
  46483. name: "Giga Macro",
  46484. height: math.unit(13.575, "km")
  46485. },
  46486. ]
  46487. ))
  46488. characterMakers.push(() => makeCharacter(
  46489. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46490. {
  46491. front: {
  46492. height: math.unit(6, "feet"),
  46493. weight: math.unit(1000, "lb"),
  46494. name: "Front",
  46495. image: {
  46496. source: "./media/characters/asaya/front.svg",
  46497. extra: 1460/1200,
  46498. bottom: 71/1531
  46499. }
  46500. },
  46501. },
  46502. [
  46503. {
  46504. name: "Normal",
  46505. height: math.unit(8, "km"),
  46506. default: true
  46507. },
  46508. ]
  46509. ))
  46510. characterMakers.push(() => makeCharacter(
  46511. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46512. {
  46513. front: {
  46514. height: math.unit(3.5, "meters"),
  46515. name: "Front",
  46516. image: {
  46517. source: "./media/characters/sarzu-and-israz/front.svg",
  46518. extra: 1570/1558,
  46519. bottom: 150/1720
  46520. },
  46521. },
  46522. back: {
  46523. height: math.unit(3.5, "meters"),
  46524. name: "Back",
  46525. image: {
  46526. source: "./media/characters/sarzu-and-israz/back.svg",
  46527. extra: 1523/1509,
  46528. bottom: 132/1655
  46529. },
  46530. },
  46531. frontFemale: {
  46532. height: math.unit(3.5, "meters"),
  46533. name: "Front (Female)",
  46534. image: {
  46535. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46536. extra: 1570/1558,
  46537. bottom: 150/1720
  46538. },
  46539. },
  46540. frontHerm: {
  46541. height: math.unit(3.5, "meters"),
  46542. name: "Front (Herm)",
  46543. image: {
  46544. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46545. extra: 1570/1558,
  46546. bottom: 150/1720
  46547. },
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Normal",
  46553. height: math.unit(3.5, "meters"),
  46554. default: true,
  46555. },
  46556. {
  46557. name: "Macro",
  46558. height: math.unit(65.5, "meters"),
  46559. },
  46560. ],
  46561. ))
  46562. characterMakers.push(() => makeCharacter(
  46563. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46564. {
  46565. front: {
  46566. height: math.unit(6, "feet"),
  46567. weight: math.unit(250, "lb"),
  46568. name: "Front",
  46569. image: {
  46570. source: "./media/characters/zenimma/front.svg",
  46571. extra: 1346/1320,
  46572. bottom: 58/1404
  46573. }
  46574. },
  46575. back: {
  46576. height: math.unit(6, "feet"),
  46577. weight: math.unit(250, "lb"),
  46578. name: "Back",
  46579. image: {
  46580. source: "./media/characters/zenimma/back.svg",
  46581. extra: 1324/1308,
  46582. bottom: 44/1368
  46583. }
  46584. },
  46585. dick: {
  46586. height: math.unit(1.44, "feet"),
  46587. name: "Dick",
  46588. image: {
  46589. source: "./media/characters/zenimma/dick.svg"
  46590. }
  46591. },
  46592. },
  46593. [
  46594. {
  46595. name: "Canon Height",
  46596. height: math.unit(66, "miles"),
  46597. default: true
  46598. },
  46599. ]
  46600. ))
  46601. characterMakers.push(() => makeCharacter(
  46602. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46603. {
  46604. nude: {
  46605. height: math.unit(6, "feet"),
  46606. weight: math.unit(150, "lb"),
  46607. name: "Nude",
  46608. image: {
  46609. source: "./media/characters/shavon/nude.svg",
  46610. extra: 1242/1096,
  46611. bottom: 98/1340
  46612. }
  46613. },
  46614. dressed: {
  46615. height: math.unit(6, "feet"),
  46616. weight: math.unit(150, "lb"),
  46617. name: "Dressed",
  46618. image: {
  46619. source: "./media/characters/shavon/dressed.svg",
  46620. extra: 1242/1096,
  46621. bottom: 98/1340
  46622. }
  46623. },
  46624. },
  46625. [
  46626. {
  46627. name: "Macro",
  46628. height: math.unit(255, "feet"),
  46629. default: true
  46630. },
  46631. ]
  46632. ))
  46633. characterMakers.push(() => makeCharacter(
  46634. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46635. {
  46636. front: {
  46637. height: math.unit(6, "feet"),
  46638. name: "Front",
  46639. image: {
  46640. source: "./media/characters/steph/front.svg",
  46641. extra: 1430/1330,
  46642. bottom: 54/1484
  46643. }
  46644. },
  46645. },
  46646. [
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(6, "feet"),
  46650. default: true
  46651. },
  46652. ]
  46653. ))
  46654. characterMakers.push(() => makeCharacter(
  46655. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46656. {
  46657. front: {
  46658. height: math.unit(9, "feet"),
  46659. weight: math.unit(400, "lb"),
  46660. name: "Front",
  46661. image: {
  46662. source: "./media/characters/kil'aman/front.svg",
  46663. extra: 1210/1159,
  46664. bottom: 109/1319
  46665. }
  46666. },
  46667. head: {
  46668. height: math.unit(2.14, "feet"),
  46669. name: "Head",
  46670. image: {
  46671. source: "./media/characters/kil'aman/head.svg"
  46672. }
  46673. },
  46674. maw: {
  46675. height: math.unit(1.21, "feet"),
  46676. name: "Maw",
  46677. image: {
  46678. source: "./media/characters/kil'aman/maw.svg"
  46679. }
  46680. },
  46681. foot: {
  46682. height: math.unit(1.7, "feet"),
  46683. name: "Foot",
  46684. image: {
  46685. source: "./media/characters/kil'aman/foot.svg"
  46686. }
  46687. },
  46688. dick: {
  46689. height: math.unit(2.1, "feet"),
  46690. name: "Dick",
  46691. image: {
  46692. source: "./media/characters/kil'aman/dick.svg"
  46693. }
  46694. },
  46695. },
  46696. [
  46697. {
  46698. name: "Normal",
  46699. height: math.unit(9, "feet")
  46700. },
  46701. {
  46702. name: "Canon Height",
  46703. height: math.unit(10, "miles"),
  46704. default: true
  46705. },
  46706. {
  46707. name: "Maximum",
  46708. height: math.unit(6e9, "miles")
  46709. },
  46710. ]
  46711. ))
  46712. characterMakers.push(() => makeCharacter(
  46713. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46714. {
  46715. front: {
  46716. height: math.unit(90, "feet"),
  46717. weight: math.unit(675000, "lb"),
  46718. name: "Front",
  46719. image: {
  46720. source: "./media/characters/qadan/front.svg",
  46721. extra: 1012/1004,
  46722. bottom: 78/1090
  46723. }
  46724. },
  46725. back: {
  46726. height: math.unit(90, "feet"),
  46727. weight: math.unit(675000, "lb"),
  46728. name: "Back",
  46729. image: {
  46730. source: "./media/characters/qadan/back.svg",
  46731. extra: 1042/1031,
  46732. bottom: 55/1097
  46733. }
  46734. },
  46735. armored: {
  46736. height: math.unit(90, "feet"),
  46737. weight: math.unit(675000, "lb"),
  46738. name: "Armored",
  46739. image: {
  46740. source: "./media/characters/qadan/armored.svg",
  46741. extra: 1047/1037,
  46742. bottom: 48/1095
  46743. }
  46744. },
  46745. },
  46746. [
  46747. {
  46748. name: "Normal",
  46749. height: math.unit(90, "feet"),
  46750. default: true
  46751. },
  46752. ]
  46753. ))
  46754. characterMakers.push(() => makeCharacter(
  46755. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46756. {
  46757. front: {
  46758. height: math.unit(6, "feet"),
  46759. weight: math.unit(225, "lb"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/brooke/front.svg",
  46763. extra: 1050/1010,
  46764. bottom: 66/1116
  46765. }
  46766. },
  46767. back: {
  46768. height: math.unit(6, "feet"),
  46769. weight: math.unit(225, "lb"),
  46770. name: "Back",
  46771. image: {
  46772. source: "./media/characters/brooke/back.svg",
  46773. extra: 1053/1013,
  46774. bottom: 41/1094
  46775. }
  46776. },
  46777. dressed: {
  46778. height: math.unit(6, "feet"),
  46779. weight: math.unit(225, "lb"),
  46780. name: "Dressed",
  46781. image: {
  46782. source: "./media/characters/brooke/dressed.svg",
  46783. extra: 1050/1010,
  46784. bottom: 66/1116
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "Canon Height",
  46791. height: math.unit(500, "miles"),
  46792. default: true
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46798. {
  46799. front: {
  46800. height: math.unit(6 + 2/12, "feet"),
  46801. weight: math.unit(210, "lb"),
  46802. name: "Front",
  46803. image: {
  46804. source: "./media/characters/wubs/front.svg",
  46805. extra: 1345/1325,
  46806. bottom: 70/1415
  46807. }
  46808. },
  46809. back: {
  46810. height: math.unit(6 + 2/12, "feet"),
  46811. weight: math.unit(210, "lb"),
  46812. name: "Back",
  46813. image: {
  46814. source: "./media/characters/wubs/back.svg",
  46815. extra: 1296/1275,
  46816. bottom: 58/1354
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Normal",
  46823. height: math.unit(6 + 2/12, "feet"),
  46824. default: true
  46825. },
  46826. {
  46827. name: "Macro",
  46828. height: math.unit(1000, "feet")
  46829. },
  46830. {
  46831. name: "Megamacro",
  46832. height: math.unit(1, "mile")
  46833. },
  46834. ]
  46835. ))
  46836. characterMakers.push(() => makeCharacter(
  46837. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46838. {
  46839. front: {
  46840. height: math.unit(4, "feet"),
  46841. weight: math.unit(120, "lb"),
  46842. name: "Front",
  46843. image: {
  46844. source: "./media/characters/blue/front.svg",
  46845. extra: 1636/1525,
  46846. bottom: 43/1679
  46847. }
  46848. },
  46849. back: {
  46850. height: math.unit(4, "feet"),
  46851. weight: math.unit(120, "lb"),
  46852. name: "Back",
  46853. image: {
  46854. source: "./media/characters/blue/back.svg",
  46855. extra: 1660/1560,
  46856. bottom: 57/1717
  46857. }
  46858. },
  46859. paws: {
  46860. height: math.unit(0.826, "feet"),
  46861. name: "Paws",
  46862. image: {
  46863. source: "./media/characters/blue/paws.svg"
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Micro",
  46870. height: math.unit(3, "inches")
  46871. },
  46872. {
  46873. name: "Normal",
  46874. height: math.unit(4, "feet"),
  46875. default: true
  46876. },
  46877. {
  46878. name: "Femenine Form",
  46879. height: math.unit(14, "feet")
  46880. },
  46881. {
  46882. name: "Werebat Form",
  46883. height: math.unit(18, "feet")
  46884. },
  46885. ]
  46886. ))
  46887. characterMakers.push(() => makeCharacter(
  46888. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46889. {
  46890. female: {
  46891. height: math.unit(7 + 4/12, "feet"),
  46892. weight: math.unit(243, "lb"),
  46893. name: "Female",
  46894. image: {
  46895. source: "./media/characters/kaya/female.svg",
  46896. extra: 975/898,
  46897. bottom: 34/1009
  46898. }
  46899. },
  46900. herm: {
  46901. height: math.unit(7 + 4/12, "feet"),
  46902. weight: math.unit(243, "lb"),
  46903. name: "Herm",
  46904. image: {
  46905. source: "./media/characters/kaya/herm.svg",
  46906. extra: 975/898,
  46907. bottom: 34/1009
  46908. }
  46909. },
  46910. },
  46911. [
  46912. {
  46913. name: "Normal",
  46914. height: math.unit(7 + 4/12, "feet"),
  46915. default: true
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46921. {
  46922. female: {
  46923. height: math.unit(9 + 4/12, "feet"),
  46924. weight: math.unit(398, "lb"),
  46925. name: "Female",
  46926. image: {
  46927. source: "./media/characters/kassandra/female.svg",
  46928. extra: 908/839,
  46929. bottom: 61/969
  46930. }
  46931. },
  46932. intersex: {
  46933. height: math.unit(9 + 4/12, "feet"),
  46934. weight: math.unit(398, "lb"),
  46935. name: "Intersex",
  46936. image: {
  46937. source: "./media/characters/kassandra/intersex.svg",
  46938. extra: 908/839,
  46939. bottom: 61/969
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(9 + 4/12, "feet"),
  46947. default: true
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(3, "meters"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/amy/front.svg",
  46959. extra: 1380/1343,
  46960. bottom: 70/1450
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(3, "meters"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/amy/back.svg",
  46968. extra: 1380/1347,
  46969. bottom: 66/1446
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(3, "meters"),
  46977. default: true
  46978. },
  46979. ]
  46980. ))
  46981. characterMakers.push(() => makeCharacter(
  46982. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46983. {
  46984. side: {
  46985. height: math.unit(47, "cm"),
  46986. weight: math.unit(10.8, "kg"),
  46987. name: "Side",
  46988. image: {
  46989. source: "./media/characters/alphaschakal/side.svg",
  46990. extra: 1058/568,
  46991. bottom: 62/1120
  46992. }
  46993. },
  46994. back: {
  46995. height: math.unit(78, "cm"),
  46996. weight: math.unit(10.8, "kg"),
  46997. name: "Back",
  46998. image: {
  46999. source: "./media/characters/alphaschakal/back.svg",
  47000. extra: 1102/942,
  47001. bottom: 185/1287
  47002. }
  47003. },
  47004. head: {
  47005. height: math.unit(28, "cm"),
  47006. name: "Head",
  47007. image: {
  47008. source: "./media/characters/alphaschakal/head.svg",
  47009. extra: 696/508,
  47010. bottom: 0/696
  47011. }
  47012. },
  47013. paw: {
  47014. height: math.unit(16, "cm"),
  47015. name: "Paw",
  47016. image: {
  47017. source: "./media/characters/alphaschakal/paw.svg"
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "Normal",
  47024. height: math.unit(47, "cm"),
  47025. default: true
  47026. },
  47027. {
  47028. name: "Macro",
  47029. height: math.unit(340, "cm")
  47030. },
  47031. ]
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47035. {
  47036. front: {
  47037. height: math.unit(36, "earths"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/ecobyss/front.svg",
  47041. extra: 1282/1215,
  47042. bottom: 11/1293
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(36, "earths"),
  47047. name: "Back",
  47048. image: {
  47049. source: "./media/characters/ecobyss/back.svg",
  47050. extra: 1291/1222,
  47051. bottom: 8/1299
  47052. }
  47053. },
  47054. },
  47055. [
  47056. {
  47057. name: "Normal",
  47058. height: math.unit(36, "earths"),
  47059. default: true
  47060. },
  47061. ]
  47062. ))
  47063. characterMakers.push(() => makeCharacter(
  47064. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47065. {
  47066. front: {
  47067. height: math.unit(12, "feet"),
  47068. name: "Front",
  47069. image: {
  47070. source: "./media/characters/vasuk/front.svg",
  47071. extra: 1326/1207,
  47072. bottom: 64/1390
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(12, "feet"),
  47080. default: true
  47081. },
  47082. ]
  47083. ))
  47084. characterMakers.push(() => makeCharacter(
  47085. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47086. {
  47087. side: {
  47088. height: math.unit(100, "feet"),
  47089. name: "Side",
  47090. image: {
  47091. source: "./media/characters/linneaus/side.svg",
  47092. extra: 987/807,
  47093. bottom: 47/1034
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Macro",
  47100. height: math.unit(100, "feet"),
  47101. default: true
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(8, "feet"),
  47110. weight: math.unit(1200, "lb"),
  47111. name: "Front",
  47112. image: {
  47113. source: "./media/characters/nyterious-daligdig/front.svg",
  47114. extra: 1284/1094,
  47115. bottom: 84/1368
  47116. }
  47117. },
  47118. back: {
  47119. height: math.unit(8, "feet"),
  47120. weight: math.unit(1200, "lb"),
  47121. name: "Back",
  47122. image: {
  47123. source: "./media/characters/nyterious-daligdig/back.svg",
  47124. extra: 1301/1121,
  47125. bottom: 129/1430
  47126. }
  47127. },
  47128. mouth: {
  47129. height: math.unit(1.464, "feet"),
  47130. name: "Mouth",
  47131. image: {
  47132. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47133. }
  47134. },
  47135. },
  47136. [
  47137. {
  47138. name: "Small",
  47139. height: math.unit(8, "feet"),
  47140. default: true
  47141. },
  47142. {
  47143. name: "Normal",
  47144. height: math.unit(15, "feet")
  47145. },
  47146. {
  47147. name: "Macro",
  47148. height: math.unit(90, "feet")
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47154. {
  47155. front: {
  47156. height: math.unit(7 + 4/12, "feet"),
  47157. weight: math.unit(252, "lb"),
  47158. name: "Front",
  47159. image: {
  47160. source: "./media/characters/bandel/front.svg",
  47161. extra: 1946/1775,
  47162. bottom: 26/1972
  47163. }
  47164. },
  47165. back: {
  47166. height: math.unit(7 + 4/12, "feet"),
  47167. weight: math.unit(252, "lb"),
  47168. name: "Back",
  47169. image: {
  47170. source: "./media/characters/bandel/back.svg",
  47171. extra: 1940/1770,
  47172. bottom: 25/1965
  47173. }
  47174. },
  47175. maw: {
  47176. height: math.unit(2.15, "feet"),
  47177. name: "Maw",
  47178. image: {
  47179. source: "./media/characters/bandel/maw.svg"
  47180. }
  47181. },
  47182. stomach: {
  47183. height: math.unit(1.95, "feet"),
  47184. name: "Stomach",
  47185. image: {
  47186. source: "./media/characters/bandel/stomach.svg"
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(7 + 4/12, "feet"),
  47194. default: true
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(10 + 5/12, "feet"),
  47203. weight: math.unit(773.5, "kg"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/zed/front.svg",
  47207. extra: 987/941,
  47208. bottom: 52/1039
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Short",
  47215. height: math.unit(5 + 4/12, "feet")
  47216. },
  47217. {
  47218. name: "Average",
  47219. height: math.unit(10 + 5/12, "feet"),
  47220. default: true
  47221. },
  47222. {
  47223. name: "Mini-Macro",
  47224. height: math.unit(24 + 9/12, "feet")
  47225. },
  47226. {
  47227. name: "Macro",
  47228. height: math.unit(249, "feet")
  47229. },
  47230. {
  47231. name: "Mega-Macro",
  47232. height: math.unit(12490, "feet")
  47233. },
  47234. {
  47235. name: "Giga-Macro",
  47236. height: math.unit(24.9, "miles")
  47237. },
  47238. {
  47239. name: "Tera-Macro",
  47240. height: math.unit(24900, "miles")
  47241. },
  47242. {
  47243. name: "Cosmic Scale",
  47244. height: math.unit(38.9, "lightyears")
  47245. },
  47246. {
  47247. name: "Universal Scale",
  47248. height: math.unit(138e12, "lightyears")
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(1561, "inches"),
  47257. name: "Front",
  47258. image: {
  47259. source: "./media/characters/ivan/front.svg",
  47260. extra: 1126/1071,
  47261. bottom: 26/1152
  47262. }
  47263. },
  47264. back: {
  47265. height: math.unit(1561, "inches"),
  47266. name: "Back",
  47267. image: {
  47268. source: "./media/characters/ivan/back.svg",
  47269. extra: 1134/1079,
  47270. bottom: 30/1164
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Normal",
  47277. height: math.unit(1561, "inches"),
  47278. default: true
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47284. {
  47285. front: {
  47286. height: math.unit(5 + 7/12, "feet"),
  47287. weight: math.unit(150, "lb"),
  47288. name: "Front",
  47289. image: {
  47290. source: "./media/characters/robin-arctic-hare/front.svg",
  47291. extra: 1148/974,
  47292. bottom: 20/1168
  47293. }
  47294. },
  47295. },
  47296. [
  47297. {
  47298. name: "Normal",
  47299. height: math.unit(5 + 7/12, "feet"),
  47300. default: true
  47301. },
  47302. ]
  47303. ))
  47304. characterMakers.push(() => makeCharacter(
  47305. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47306. {
  47307. side: {
  47308. height: math.unit(5, "feet"),
  47309. name: "Side",
  47310. image: {
  47311. source: "./media/characters/birch/side.svg",
  47312. extra: 985/796,
  47313. bottom: 111/1096
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(5, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(4, "feet"),
  47330. name: "Front",
  47331. image: {
  47332. source: "./media/characters/rasp/front.svg",
  47333. extra: 561/478,
  47334. bottom: 74/635
  47335. }
  47336. },
  47337. },
  47338. [
  47339. {
  47340. name: "Normal",
  47341. height: math.unit(4, "feet"),
  47342. default: true
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47348. {
  47349. front: {
  47350. height: math.unit(4 + 6/12, "feet"),
  47351. name: "Front",
  47352. image: {
  47353. source: "./media/characters/agatha/front.svg",
  47354. extra: 947/933,
  47355. bottom: 42/989
  47356. }
  47357. },
  47358. back: {
  47359. height: math.unit(4 + 6/12, "feet"),
  47360. name: "Back",
  47361. image: {
  47362. source: "./media/characters/agatha/back.svg",
  47363. extra: 935/922,
  47364. bottom: 48/983
  47365. }
  47366. },
  47367. },
  47368. [
  47369. {
  47370. name: "Normal",
  47371. height: math.unit(4 + 6 /12, "feet"),
  47372. default: true
  47373. },
  47374. {
  47375. name: "Max Size",
  47376. height: math.unit(500, "feet")
  47377. },
  47378. ]
  47379. ))
  47380. characterMakers.push(() => makeCharacter(
  47381. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47382. {
  47383. side: {
  47384. height: math.unit(30, "feet"),
  47385. name: "Side",
  47386. image: {
  47387. source: "./media/characters/roggy/side.svg",
  47388. extra: 909/643,
  47389. bottom: 63/972
  47390. }
  47391. },
  47392. lounging: {
  47393. height: math.unit(20, "feet"),
  47394. name: "Lounging",
  47395. image: {
  47396. source: "./media/characters/roggy/lounging.svg",
  47397. extra: 643/479,
  47398. bottom: 145/788
  47399. }
  47400. },
  47401. handpaw: {
  47402. height: math.unit(13.1, "feet"),
  47403. name: "Handpaw",
  47404. image: {
  47405. source: "./media/characters/roggy/handpaw.svg"
  47406. }
  47407. },
  47408. footpaw: {
  47409. height: math.unit(15.8, "feet"),
  47410. name: "Footpaw",
  47411. image: {
  47412. source: "./media/characters/roggy/footpaw.svg"
  47413. }
  47414. },
  47415. },
  47416. [
  47417. {
  47418. name: "Menacing",
  47419. height: math.unit(30, "feet"),
  47420. default: true
  47421. },
  47422. ]
  47423. ))
  47424. characterMakers.push(() => makeCharacter(
  47425. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47426. {
  47427. front: {
  47428. height: math.unit(5 + 7/12, "feet"),
  47429. weight: math.unit(135, "lb"),
  47430. name: "Front",
  47431. image: {
  47432. source: "./media/characters/naomi/front.svg",
  47433. extra: 1209/1154,
  47434. bottom: 129/1338
  47435. }
  47436. },
  47437. back: {
  47438. height: math.unit(5 + 7/12, "feet"),
  47439. weight: math.unit(135, "lb"),
  47440. name: "Back",
  47441. image: {
  47442. source: "./media/characters/naomi/back.svg",
  47443. extra: 1252/1190,
  47444. bottom: 23/1275
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(5 + 7 /12, "feet"),
  47452. default: true
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47458. {
  47459. side: {
  47460. height: math.unit(35, "meters"),
  47461. name: "Side",
  47462. image: {
  47463. source: "./media/characters/kimpi/side.svg",
  47464. extra: 419/382,
  47465. bottom: 63/482
  47466. }
  47467. },
  47468. hand: {
  47469. height: math.unit(8.96, "meters"),
  47470. name: "Hand",
  47471. image: {
  47472. source: "./media/characters/kimpi/hand.svg"
  47473. }
  47474. },
  47475. },
  47476. [
  47477. {
  47478. name: "Normal",
  47479. height: math.unit(35, "meters"),
  47480. default: true
  47481. },
  47482. ]
  47483. ))
  47484. characterMakers.push(() => makeCharacter(
  47485. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47486. {
  47487. front: {
  47488. height: math.unit(4 + 4/12, "feet"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/pepper-purrloin/front.svg",
  47492. extra: 1141/1024,
  47493. bottom: 21/1162
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(4 + 4/12, "feet"),
  47501. default: true
  47502. },
  47503. ]
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47507. {
  47508. front: {
  47509. height: math.unit(6 + 2/12, "feet"),
  47510. name: "Front",
  47511. image: {
  47512. source: "./media/characters/raphael/front.svg",
  47513. extra: 1101/962,
  47514. bottom: 59/1160
  47515. }
  47516. },
  47517. },
  47518. [
  47519. {
  47520. name: "Normal",
  47521. height: math.unit(6 + 2/12, "feet"),
  47522. default: true
  47523. },
  47524. ]
  47525. ))
  47526. characterMakers.push(() => makeCharacter(
  47527. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47528. {
  47529. front: {
  47530. height: math.unit(6, "feet"),
  47531. weight: math.unit(150, "lb"),
  47532. name: "Front",
  47533. image: {
  47534. source: "./media/characters/victor-williams/front.svg",
  47535. extra: 1894/1825,
  47536. bottom: 67/1961
  47537. }
  47538. },
  47539. },
  47540. [
  47541. {
  47542. name: "Normal",
  47543. height: math.unit(6, "feet"),
  47544. default: true
  47545. },
  47546. ]
  47547. ))
  47548. characterMakers.push(() => makeCharacter(
  47549. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47550. {
  47551. front: {
  47552. height: math.unit(5 + 8/12, "feet"),
  47553. weight: math.unit(150, "lb"),
  47554. name: "Front",
  47555. image: {
  47556. source: "./media/characters/rachel/front.svg",
  47557. extra: 1902/1787,
  47558. bottom: 46/1948
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Base Height",
  47565. height: math.unit(5 + 8/12, "feet"),
  47566. default: true
  47567. },
  47568. {
  47569. name: "Macro",
  47570. height: math.unit(200, "feet")
  47571. },
  47572. {
  47573. name: "Mega Macro",
  47574. height: math.unit(1, "mile")
  47575. },
  47576. {
  47577. name: "Giga Macro",
  47578. height: math.unit(1500, "miles")
  47579. },
  47580. {
  47581. name: "Tera Macro",
  47582. height: math.unit(8000, "miles")
  47583. },
  47584. {
  47585. name: "Tera Macro+",
  47586. height: math.unit(2e5, "miles")
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47592. {
  47593. front: {
  47594. height: math.unit(6.5, "feet"),
  47595. name: "Front",
  47596. image: {
  47597. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47598. extra: 860/819,
  47599. bottom: 307/1167
  47600. }
  47601. },
  47602. back: {
  47603. height: math.unit(6.5, "feet"),
  47604. name: "Back",
  47605. image: {
  47606. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47607. extra: 880/837,
  47608. bottom: 395/1275
  47609. }
  47610. },
  47611. sleeping: {
  47612. height: math.unit(2.79, "feet"),
  47613. name: "Sleeping",
  47614. image: {
  47615. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47616. extra: 465/383,
  47617. bottom: 263/728
  47618. }
  47619. },
  47620. maw: {
  47621. height: math.unit(2.52, "feet"),
  47622. name: "Maw",
  47623. image: {
  47624. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Normal",
  47631. height: math.unit(6.5, "feet"),
  47632. default: true
  47633. },
  47634. ]
  47635. ))
  47636. characterMakers.push(() => makeCharacter(
  47637. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47638. {
  47639. front: {
  47640. height: math.unit(5, "feet"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/nova-nerium/front.svg",
  47644. extra: 1548/1392,
  47645. bottom: 374/1922
  47646. }
  47647. },
  47648. back: {
  47649. height: math.unit(5, "feet"),
  47650. name: "Back",
  47651. image: {
  47652. source: "./media/characters/nova-nerium/back.svg",
  47653. extra: 1658/1468,
  47654. bottom: 257/1915
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Normal",
  47661. height: math.unit(5, "feet"),
  47662. default: true
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(5 + 4/12, "feet"),
  47671. name: "Front",
  47672. image: {
  47673. source: "./media/characters/ashe-pyriph/front.svg",
  47674. extra: 1935/1747,
  47675. bottom: 60/1995
  47676. }
  47677. },
  47678. },
  47679. [
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(5 + 4/12, "feet"),
  47683. default: true
  47684. },
  47685. ]
  47686. ))
  47687. characterMakers.push(() => makeCharacter(
  47688. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47689. {
  47690. front: {
  47691. height: math.unit(8.7, "feet"),
  47692. name: "Front",
  47693. image: {
  47694. source: "./media/characters/flicker-wisp/front.svg",
  47695. extra: 1835/1613,
  47696. bottom: 449/2284
  47697. }
  47698. },
  47699. side: {
  47700. height: math.unit(8.7, "feet"),
  47701. name: "Side",
  47702. image: {
  47703. source: "./media/characters/flicker-wisp/side.svg",
  47704. extra: 1841/1642,
  47705. bottom: 336/2177
  47706. },
  47707. default: true
  47708. },
  47709. maw: {
  47710. height: math.unit(3.35, "feet"),
  47711. name: "Maw",
  47712. image: {
  47713. source: "./media/characters/flicker-wisp/maw.svg",
  47714. extra: 2338/1506,
  47715. bottom: 0/2338
  47716. }
  47717. },
  47718. ovipositor: {
  47719. height: math.unit(4.95, "feet"),
  47720. name: "Ovipositor",
  47721. image: {
  47722. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47723. }
  47724. },
  47725. egg: {
  47726. height: math.unit(0.385, "feet"),
  47727. weight: math.unit(2, "lb"),
  47728. name: "Egg",
  47729. image: {
  47730. source: "./media/characters/flicker-wisp/egg.svg"
  47731. }
  47732. },
  47733. },
  47734. [
  47735. {
  47736. name: "Normal",
  47737. height: math.unit(8.7, "feet"),
  47738. default: true
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47744. {
  47745. side: {
  47746. height: math.unit(11, "feet"),
  47747. name: "Side",
  47748. image: {
  47749. source: "./media/characters/faefnul/side.svg",
  47750. extra: 1100/1007,
  47751. bottom: 0/1100
  47752. }
  47753. },
  47754. },
  47755. [
  47756. {
  47757. name: "Normal",
  47758. height: math.unit(11, "feet"),
  47759. default: true
  47760. },
  47761. ]
  47762. ))
  47763. characterMakers.push(() => makeCharacter(
  47764. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47765. {
  47766. front: {
  47767. height: math.unit(6 + 2/12, "feet"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/shady/front.svg",
  47771. extra: 502/461,
  47772. bottom: 9/511
  47773. }
  47774. },
  47775. kneeling: {
  47776. height: math.unit(4.6, "feet"),
  47777. name: "Kneeling",
  47778. image: {
  47779. source: "./media/characters/shady/kneeling.svg",
  47780. extra: 1328/1219,
  47781. bottom: 117/1445
  47782. }
  47783. },
  47784. maw: {
  47785. height: math.unit(2, "feet"),
  47786. name: "Maw",
  47787. image: {
  47788. source: "./media/characters/shady/maw.svg"
  47789. }
  47790. },
  47791. },
  47792. [
  47793. {
  47794. name: "Nano",
  47795. height: math.unit(1, "mm")
  47796. },
  47797. {
  47798. name: "Micro",
  47799. height: math.unit(12, "mm")
  47800. },
  47801. {
  47802. name: "Tiny",
  47803. height: math.unit(3, "inches")
  47804. },
  47805. {
  47806. name: "Normal",
  47807. height: math.unit(6 + 2/12, "feet"),
  47808. default: true
  47809. },
  47810. {
  47811. name: "Big",
  47812. height: math.unit(15, "feet")
  47813. },
  47814. {
  47815. name: "Macro",
  47816. height: math.unit(150, "feet")
  47817. },
  47818. {
  47819. name: "Titanic",
  47820. height: math.unit(500, "feet")
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(12, "feet"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/fenrir/front.svg",
  47832. extra: 968/875,
  47833. bottom: 22/990
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Big",
  47840. height: math.unit(12, "feet"),
  47841. default: true
  47842. },
  47843. ]
  47844. ))
  47845. characterMakers.push(() => makeCharacter(
  47846. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47847. {
  47848. front: {
  47849. height: math.unit(5 + 4/12, "feet"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/makar/front.svg",
  47853. extra: 1181/1112,
  47854. bottom: 78/1259
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Normal",
  47861. height: math.unit(5 + 4/12, "feet"),
  47862. default: true
  47863. },
  47864. ]
  47865. ))
  47866. characterMakers.push(() => makeCharacter(
  47867. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47868. {
  47869. front: {
  47870. height: math.unit(5 + 7/12, "feet"),
  47871. name: "Front",
  47872. image: {
  47873. source: "./media/characters/callow/front.svg",
  47874. extra: 1482/1304,
  47875. bottom: 23/1505
  47876. }
  47877. },
  47878. back: {
  47879. height: math.unit(5 + 7/12, "feet"),
  47880. name: "Back",
  47881. image: {
  47882. source: "./media/characters/callow/back.svg",
  47883. extra: 1484/1296,
  47884. bottom: 25/1509
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Micro",
  47891. height: math.unit(3, "inches"),
  47892. default: true
  47893. },
  47894. {
  47895. name: "Normal",
  47896. height: math.unit(5 + 7/12, "feet")
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47902. {
  47903. front: {
  47904. height: math.unit(6 + 2/12, "feet"),
  47905. name: "Front",
  47906. image: {
  47907. source: "./media/characters/natel/front.svg",
  47908. extra: 1833/1692,
  47909. bottom: 166/1999
  47910. }
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Normal",
  47916. height: math.unit(6 + 2/12, "feet"),
  47917. default: true
  47918. },
  47919. ]
  47920. ))
  47921. characterMakers.push(() => makeCharacter(
  47922. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47923. {
  47924. front: {
  47925. height: math.unit(1.75, "meters"),
  47926. name: "Front",
  47927. image: {
  47928. source: "./media/characters/misu/front.svg",
  47929. extra: 1690/1558,
  47930. bottom: 234/1924
  47931. }
  47932. },
  47933. back: {
  47934. height: math.unit(1.75, "meters"),
  47935. name: "Back",
  47936. image: {
  47937. source: "./media/characters/misu/back.svg",
  47938. extra: 1762/1618,
  47939. bottom: 146/1908
  47940. }
  47941. },
  47942. frontNude: {
  47943. height: math.unit(1.75, "meters"),
  47944. name: "Front (Nude)",
  47945. image: {
  47946. source: "./media/characters/misu/front-nude.svg",
  47947. extra: 1690/1558,
  47948. bottom: 234/1924
  47949. }
  47950. },
  47951. backNude: {
  47952. height: math.unit(1.75, "meters"),
  47953. name: "Back (Nude)",
  47954. image: {
  47955. source: "./media/characters/misu/back-nude.svg",
  47956. extra: 1762/1618,
  47957. bottom: 146/1908
  47958. }
  47959. },
  47960. frontErect: {
  47961. height: math.unit(1.75, "meters"),
  47962. name: "Front (Erect)",
  47963. image: {
  47964. source: "./media/characters/misu/front-erect.svg",
  47965. extra: 1690/1558,
  47966. bottom: 234/1924
  47967. }
  47968. },
  47969. maw: {
  47970. height: math.unit(0.47, "meters"),
  47971. name: "Maw",
  47972. image: {
  47973. source: "./media/characters/misu/maw.svg"
  47974. }
  47975. },
  47976. head: {
  47977. height: math.unit(0.35, "meters"),
  47978. name: "Head",
  47979. image: {
  47980. source: "./media/characters/misu/head.svg"
  47981. }
  47982. },
  47983. rear: {
  47984. height: math.unit(0.47, "meters"),
  47985. name: "Rear",
  47986. image: {
  47987. source: "./media/characters/misu/rear.svg"
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(1.75, "meters")
  47995. },
  47996. {
  47997. name: "Not good for the people",
  47998. height: math.unit(42, "meters")
  47999. },
  48000. {
  48001. name: "Not good for the neighborhood",
  48002. height: math.unit(135, "meters")
  48003. },
  48004. {
  48005. name: "Bit bigger problem",
  48006. height: math.unit(380, "meters"),
  48007. default: true
  48008. },
  48009. {
  48010. name: "Not good for the city",
  48011. height: math.unit(1.5, "km")
  48012. },
  48013. {
  48014. name: "Not good for the county",
  48015. height: math.unit(5.5, "km")
  48016. },
  48017. {
  48018. name: "Not good for the state",
  48019. height: math.unit(25, "km")
  48020. },
  48021. {
  48022. name: "Not good for the country",
  48023. height: math.unit(125, "km")
  48024. },
  48025. {
  48026. name: "Not good for the continent",
  48027. height: math.unit(2100, "km")
  48028. },
  48029. {
  48030. name: "Not good for the planet",
  48031. height: math.unit(35000, "km")
  48032. },
  48033. {
  48034. name: "Just no",
  48035. height: math.unit(8.5e18, "km")
  48036. },
  48037. ]
  48038. ))
  48039. characterMakers.push(() => makeCharacter(
  48040. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48041. {
  48042. front: {
  48043. height: math.unit(6.5, "feet"),
  48044. name: "Front",
  48045. image: {
  48046. source: "./media/characters/poppy/front.svg",
  48047. extra: 1878/1812,
  48048. bottom: 43/1921
  48049. }
  48050. },
  48051. feet: {
  48052. height: math.unit(1.06, "feet"),
  48053. name: "Feet",
  48054. image: {
  48055. source: "./media/characters/poppy/feet.svg",
  48056. extra: 1083/1083,
  48057. bottom: 87/1170
  48058. }
  48059. },
  48060. },
  48061. [
  48062. {
  48063. name: "Human",
  48064. height: math.unit(6.5, "feet")
  48065. },
  48066. {
  48067. name: "Default",
  48068. height: math.unit(300, "feet"),
  48069. default: true
  48070. },
  48071. {
  48072. name: "Huge",
  48073. height: math.unit(850, "feet")
  48074. },
  48075. {
  48076. name: "Mega",
  48077. height: math.unit(8000, "feet")
  48078. },
  48079. {
  48080. name: "Giga",
  48081. height: math.unit(300, "miles")
  48082. },
  48083. ]
  48084. ))
  48085. characterMakers.push(() => makeCharacter(
  48086. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48087. {
  48088. bipedal: {
  48089. height: math.unit(7, "feet"),
  48090. name: "Bipedal",
  48091. image: {
  48092. source: "./media/characters/zener/bipedal.svg",
  48093. extra: 874/805,
  48094. bottom: 109/983
  48095. }
  48096. },
  48097. quadrupedal: {
  48098. height: math.unit(4.64, "feet"),
  48099. name: "Quadrupedal",
  48100. image: {
  48101. source: "./media/characters/zener/quadrupedal.svg",
  48102. extra: 638/507,
  48103. bottom: 190/828
  48104. }
  48105. },
  48106. cock: {
  48107. height: math.unit(18, "inches"),
  48108. name: "Cock",
  48109. image: {
  48110. source: "./media/characters/zener/cock.svg"
  48111. }
  48112. },
  48113. },
  48114. [
  48115. {
  48116. name: "Normal",
  48117. height: math.unit(7, "feet"),
  48118. default: true
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48124. {
  48125. nude: {
  48126. height: math.unit(5 + 6/12, "feet"),
  48127. name: "Nude",
  48128. image: {
  48129. source: "./media/characters/charlie-dog/nude.svg",
  48130. extra: 768/734,
  48131. bottom: 26/794
  48132. }
  48133. },
  48134. dressed: {
  48135. height: math.unit(5 + 6/12, "feet"),
  48136. name: "Dressed",
  48137. image: {
  48138. source: "./media/characters/charlie-dog/dressed.svg",
  48139. extra: 768/734,
  48140. bottom: 26/794
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(5 + 6/12, "feet"),
  48148. default: true
  48149. },
  48150. ]
  48151. ))
  48152. characterMakers.push(() => makeCharacter(
  48153. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48154. {
  48155. front: {
  48156. height: math.unit(6 + 4/12, "feet"),
  48157. name: "Front",
  48158. image: {
  48159. source: "./media/characters/ir'istrasz/front.svg",
  48160. extra: 1014/977,
  48161. bottom: 65/1079
  48162. }
  48163. },
  48164. back: {
  48165. height: math.unit(6 + 4/12, "feet"),
  48166. name: "Back",
  48167. image: {
  48168. source: "./media/characters/ir'istrasz/back.svg",
  48169. extra: 1024/992,
  48170. bottom: 34/1058
  48171. }
  48172. },
  48173. },
  48174. [
  48175. {
  48176. name: "Normal",
  48177. height: math.unit(6 + 4/12, "feet"),
  48178. default: true
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48184. {
  48185. front: {
  48186. height: math.unit(5 + 8/12, "feet"),
  48187. name: "Front",
  48188. image: {
  48189. source: "./media/characters/dee-ditto/front.svg",
  48190. extra: 1874/1785,
  48191. bottom: 68/1942
  48192. }
  48193. },
  48194. back: {
  48195. height: math.unit(5 + 8/12, "feet"),
  48196. name: "Back",
  48197. image: {
  48198. source: "./media/characters/dee-ditto/back.svg",
  48199. extra: 1870/1783,
  48200. bottom: 77/1947
  48201. }
  48202. },
  48203. },
  48204. [
  48205. {
  48206. name: "Normal",
  48207. height: math.unit(5 + 8/12, "feet"),
  48208. default: true
  48209. },
  48210. ]
  48211. ))
  48212. characterMakers.push(() => makeCharacter(
  48213. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48214. {
  48215. front: {
  48216. height: math.unit(7 + 6/12, "feet"),
  48217. name: "Front",
  48218. image: {
  48219. source: "./media/characters/fey/front.svg",
  48220. extra: 995/979,
  48221. bottom: 30/1025
  48222. }
  48223. },
  48224. back: {
  48225. height: math.unit(7 + 6/12, "feet"),
  48226. name: "Back",
  48227. image: {
  48228. source: "./media/characters/fey/back.svg",
  48229. extra: 1079/1008,
  48230. bottom: 5/1084
  48231. }
  48232. },
  48233. dressed: {
  48234. height: math.unit(7 + 6/12, "feet"),
  48235. name: "Dressed",
  48236. image: {
  48237. source: "./media/characters/fey/dressed.svg",
  48238. extra: 995/979,
  48239. bottom: 30/1025
  48240. }
  48241. },
  48242. },
  48243. [
  48244. {
  48245. name: "Normal",
  48246. height: math.unit(7 + 6/12, "feet"),
  48247. default: true
  48248. },
  48249. ]
  48250. ))
  48251. characterMakers.push(() => makeCharacter(
  48252. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48253. {
  48254. standing: {
  48255. height: math.unit(17, "feet"),
  48256. name: "Standing",
  48257. image: {
  48258. source: "./media/characters/aster/standing.svg",
  48259. extra: 1798/1598,
  48260. bottom: 117/1915
  48261. }
  48262. },
  48263. },
  48264. [
  48265. {
  48266. name: "Normal",
  48267. height: math.unit(17, "feet"),
  48268. default: true
  48269. },
  48270. {
  48271. name: "Homewrecker",
  48272. height: math.unit(95, "feet")
  48273. },
  48274. {
  48275. name: "Planet Devourer",
  48276. height: math.unit(1008000, "miles")
  48277. },
  48278. ]
  48279. ))
  48280. characterMakers.push(() => makeCharacter(
  48281. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48282. {
  48283. front: {
  48284. height: math.unit(6 + 5/12, "feet"),
  48285. weight: math.unit(265, "lb"),
  48286. name: "Front",
  48287. image: {
  48288. source: "./media/characters/devon-childs/front.svg",
  48289. extra: 1795/1721,
  48290. bottom: 41/1836
  48291. }
  48292. },
  48293. side: {
  48294. height: math.unit(6 + 5/12, "feet"),
  48295. weight: math.unit(265, "lb"),
  48296. name: "Side",
  48297. image: {
  48298. source: "./media/characters/devon-childs/side.svg",
  48299. extra: 1812/1738,
  48300. bottom: 30/1842
  48301. }
  48302. },
  48303. back: {
  48304. height: math.unit(6 + 5/12, "feet"),
  48305. weight: math.unit(265, "lb"),
  48306. name: "Back",
  48307. image: {
  48308. source: "./media/characters/devon-childs/back.svg",
  48309. extra: 1808/1735,
  48310. bottom: 23/1831
  48311. }
  48312. },
  48313. hand: {
  48314. height: math.unit(1.464, "feet"),
  48315. name: "Hand",
  48316. image: {
  48317. source: "./media/characters/devon-childs/hand.svg"
  48318. }
  48319. },
  48320. foot: {
  48321. height: math.unit(1.6, "feet"),
  48322. name: "Foot",
  48323. image: {
  48324. source: "./media/characters/devon-childs/foot.svg"
  48325. }
  48326. },
  48327. },
  48328. [
  48329. {
  48330. name: "Micro",
  48331. height: math.unit(7, "cm")
  48332. },
  48333. {
  48334. name: "Normal",
  48335. height: math.unit(6 + 5/12, "feet"),
  48336. default: true
  48337. },
  48338. {
  48339. name: "Macro",
  48340. height: math.unit(154, "feet")
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(6, "feet"),
  48349. weight: math.unit(180, "lb"),
  48350. name: "Front",
  48351. image: {
  48352. source: "./media/characters/lydemox-vir/front.svg",
  48353. extra: 1632/1435,
  48354. bottom: 58/1690
  48355. }
  48356. },
  48357. frontSFW: {
  48358. height: math.unit(6, "feet"),
  48359. weight: math.unit(180, "lb"),
  48360. name: "Front (SFW)",
  48361. image: {
  48362. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48363. extra: 1632/1435,
  48364. bottom: 58/1690
  48365. }
  48366. },
  48367. back: {
  48368. height: math.unit(6, "feet"),
  48369. weight: math.unit(180, "lb"),
  48370. name: "Back",
  48371. image: {
  48372. source: "./media/characters/lydemox-vir/back.svg",
  48373. extra: 1593/1408,
  48374. bottom: 31/1624
  48375. }
  48376. },
  48377. paw: {
  48378. height: math.unit(1.85, "feet"),
  48379. name: "Paw",
  48380. image: {
  48381. source: "./media/characters/lydemox-vir/paw.svg"
  48382. }
  48383. },
  48384. dick: {
  48385. height: math.unit(1.8, "feet"),
  48386. name: "Dick",
  48387. image: {
  48388. source: "./media/characters/lydemox-vir/dick.svg"
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Macro",
  48395. height: math.unit(100, "feet"),
  48396. default: true
  48397. },
  48398. {
  48399. name: "Teramacro",
  48400. height: math.unit(1, "earth")
  48401. },
  48402. {
  48403. name: "Planetary",
  48404. height: math.unit(20, "earths")
  48405. },
  48406. ]
  48407. ))
  48408. characterMakers.push(() => makeCharacter(
  48409. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48410. {
  48411. front: {
  48412. height: math.unit(15 + 8/12, "feet"),
  48413. weight: math.unit(1237, "kg"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/mia/front.svg",
  48417. extra: 1573/1446,
  48418. bottom: 58/1631
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Small",
  48425. height: math.unit(9 + 5/12, "feet")
  48426. },
  48427. {
  48428. name: "Normal",
  48429. height: math.unit(15 + 8/12, "feet"),
  48430. default: true
  48431. },
  48432. ]
  48433. ))
  48434. characterMakers.push(() => makeCharacter(
  48435. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48436. {
  48437. front: {
  48438. height: math.unit(10 + 6/12, "feet"),
  48439. weight: math.unit(1.3, "tons"),
  48440. name: "Front",
  48441. image: {
  48442. source: "./media/characters/mr-graves/front.svg",
  48443. extra: 1779/1695,
  48444. bottom: 198/1977
  48445. }
  48446. },
  48447. },
  48448. [
  48449. {
  48450. name: "Normal",
  48451. height: math.unit(10 + 6 /12, "feet"),
  48452. default: true
  48453. },
  48454. ]
  48455. ))
  48456. characterMakers.push(() => makeCharacter(
  48457. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48458. {
  48459. dressedFront: {
  48460. height: math.unit(5 + 8/12, "feet"),
  48461. weight: math.unit(125, "lb"),
  48462. name: "Dressed (Front)",
  48463. image: {
  48464. source: "./media/characters/jess/dressed-front.svg",
  48465. extra: 1176/1152,
  48466. bottom: 42/1218
  48467. }
  48468. },
  48469. dressedSide: {
  48470. height: math.unit(5 + 8/12, "feet"),
  48471. weight: math.unit(125, "lb"),
  48472. name: "Dressed (Side)",
  48473. image: {
  48474. source: "./media/characters/jess/dressed-side.svg",
  48475. extra: 1204/1190,
  48476. bottom: 6/1210
  48477. }
  48478. },
  48479. nudeFront: {
  48480. height: math.unit(5 + 8/12, "feet"),
  48481. weight: math.unit(125, "lb"),
  48482. name: "Nude (Front)",
  48483. image: {
  48484. source: "./media/characters/jess/nude-front.svg",
  48485. extra: 1176/1152,
  48486. bottom: 42/1218
  48487. }
  48488. },
  48489. nudeSide: {
  48490. height: math.unit(5 + 8/12, "feet"),
  48491. weight: math.unit(125, "lb"),
  48492. name: "Nude (Side)",
  48493. image: {
  48494. source: "./media/characters/jess/nude-side.svg",
  48495. extra: 1204/1190,
  48496. bottom: 6/1210
  48497. }
  48498. },
  48499. organsFront: {
  48500. height: math.unit(2.83799342105, "feet"),
  48501. name: "Organs (Front)",
  48502. image: {
  48503. source: "./media/characters/jess/organs-front.svg"
  48504. }
  48505. },
  48506. organsSide: {
  48507. height: math.unit(2.64225290474, "feet"),
  48508. name: "Organs (Side)",
  48509. image: {
  48510. source: "./media/characters/jess/organs-side.svg"
  48511. }
  48512. },
  48513. digestiveTractFront: {
  48514. height: math.unit(2.8106580871, "feet"),
  48515. name: "Digestive Tract (Front)",
  48516. image: {
  48517. source: "./media/characters/jess/digestive-tract-front.svg"
  48518. }
  48519. },
  48520. digestiveTractSide: {
  48521. height: math.unit(2.54365045014, "feet"),
  48522. name: "Digestive Tract (Side)",
  48523. image: {
  48524. source: "./media/characters/jess/digestive-tract-side.svg"
  48525. }
  48526. },
  48527. respiratorySystemFront: {
  48528. height: math.unit(1.11196233456, "feet"),
  48529. name: "Respiratory System (Front)",
  48530. image: {
  48531. source: "./media/characters/jess/respiratory-system-front.svg"
  48532. }
  48533. },
  48534. respiratorySystemSide: {
  48535. height: math.unit(0.89327966297, "feet"),
  48536. name: "Respiratory System (Side)",
  48537. image: {
  48538. source: "./media/characters/jess/respiratory-system-side.svg"
  48539. }
  48540. },
  48541. urinaryTractFront: {
  48542. height: math.unit(1.16126356186, "feet"),
  48543. name: "Urinary Tract (Front)",
  48544. image: {
  48545. source: "./media/characters/jess/urinary-tract-front.svg"
  48546. }
  48547. },
  48548. urinaryTractSide: {
  48549. height: math.unit(1.20910039627, "feet"),
  48550. name: "Urinary Tract (Side)",
  48551. image: {
  48552. source: "./media/characters/jess/urinary-tract-side.svg"
  48553. }
  48554. },
  48555. reproductiveOrgansFront: {
  48556. height: math.unit(0.48422591566, "feet"),
  48557. name: "Reproductive Organs (Front)",
  48558. image: {
  48559. source: "./media/characters/jess/reproductive-organs-front.svg"
  48560. }
  48561. },
  48562. reproductiveOrgansSide: {
  48563. height: math.unit(0.61553314481, "feet"),
  48564. name: "Reproductive Organs (Side)",
  48565. image: {
  48566. source: "./media/characters/jess/reproductive-organs-side.svg"
  48567. }
  48568. },
  48569. breastsFront: {
  48570. height: math.unit(0.47690395121, "feet"),
  48571. name: "Breasts (Front)",
  48572. image: {
  48573. source: "./media/characters/jess/breasts-front.svg"
  48574. }
  48575. },
  48576. breastsSide: {
  48577. height: math.unit(0.30556998307, "feet"),
  48578. name: "Breasts (Side)",
  48579. image: {
  48580. source: "./media/characters/jess/breasts-side.svg"
  48581. }
  48582. },
  48583. heartFront: {
  48584. height: math.unit(0.53011022622, "feet"),
  48585. name: "Heart (Front)",
  48586. image: {
  48587. source: "./media/characters/jess/heart-front.svg"
  48588. }
  48589. },
  48590. heartSide: {
  48591. height: math.unit(0.51790695213, "feet"),
  48592. name: "Heart (Side)",
  48593. image: {
  48594. source: "./media/characters/jess/heart-side.svg"
  48595. }
  48596. },
  48597. earsAndNoseFront: {
  48598. height: math.unit(0.29385483995, "feet"),
  48599. name: "Ears and Nose (Front)",
  48600. image: {
  48601. source: "./media/characters/jess/ears-and-nose-front.svg"
  48602. }
  48603. },
  48604. earsAndNoseSide: {
  48605. height: math.unit(0.18109658741, "feet"),
  48606. name: "Ears and Nose (Side)",
  48607. image: {
  48608. source: "./media/characters/jess/ears-and-nose-side.svg"
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Normal",
  48615. height: math.unit(5 + 8/12, "feet"),
  48616. default: true
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48622. {
  48623. front: {
  48624. height: math.unit(6, "feet"),
  48625. weight: math.unit(6.64467e-7, "grams"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/wimpering/front.svg",
  48629. extra: 597/587,
  48630. bottom: 34/631
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Micro",
  48637. height: math.unit(0.4, "mm"),
  48638. default: true
  48639. },
  48640. ]
  48641. ))
  48642. characterMakers.push(() => makeCharacter(
  48643. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48644. {
  48645. front: {
  48646. height: math.unit(5 + 2/12, "feet"),
  48647. weight: math.unit(110, "lb"),
  48648. name: "Front",
  48649. image: {
  48650. source: "./media/characters/keltre/front.svg",
  48651. extra: 1099/1057,
  48652. bottom: 22/1121
  48653. }
  48654. },
  48655. back: {
  48656. height: math.unit(5 + 2/12, "feet"),
  48657. weight: math.unit(110, "lb"),
  48658. name: "Back",
  48659. image: {
  48660. source: "./media/characters/keltre/back.svg",
  48661. extra: 1095/1053,
  48662. bottom: 17/1112
  48663. }
  48664. },
  48665. dressed: {
  48666. height: math.unit(5 + 2/12, "feet"),
  48667. weight: math.unit(110, "lb"),
  48668. name: "Dressed",
  48669. image: {
  48670. source: "./media/characters/keltre/dressed.svg",
  48671. extra: 1099/1057,
  48672. bottom: 22/1121
  48673. }
  48674. },
  48675. winter: {
  48676. height: math.unit(5 + 2/12, "feet"),
  48677. weight: math.unit(110, "lb"),
  48678. name: "Winter",
  48679. image: {
  48680. source: "./media/characters/keltre/winter.svg",
  48681. extra: 1099/1057,
  48682. bottom: 22/1121
  48683. }
  48684. },
  48685. head: {
  48686. height: math.unit(1.61 * 0.86, "feet"),
  48687. name: "Head",
  48688. image: {
  48689. source: "./media/characters/keltre/head.svg",
  48690. extra: 534/421,
  48691. bottom: 0/534
  48692. }
  48693. },
  48694. hand: {
  48695. height: math.unit(1.3 * 0.86, "feet"),
  48696. name: "Hand",
  48697. image: {
  48698. source: "./media/characters/keltre/hand.svg"
  48699. }
  48700. },
  48701. foot: {
  48702. height: math.unit(1.8 * 0.86, "feet"),
  48703. name: "Foot",
  48704. image: {
  48705. source: "./media/characters/keltre/foot.svg"
  48706. }
  48707. },
  48708. },
  48709. [
  48710. {
  48711. name: "Fine",
  48712. height: math.unit(1, "inch")
  48713. },
  48714. {
  48715. name: "Dimnutive",
  48716. height: math.unit(4, "inches")
  48717. },
  48718. {
  48719. name: "Tiny",
  48720. height: math.unit(1, "foot")
  48721. },
  48722. {
  48723. name: "Small",
  48724. height: math.unit(3, "feet")
  48725. },
  48726. {
  48727. name: "Normal",
  48728. height: math.unit(5 + 2/12, "feet"),
  48729. default: true
  48730. },
  48731. ]
  48732. ))
  48733. characterMakers.push(() => makeCharacter(
  48734. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48735. {
  48736. front: {
  48737. height: math.unit(6 + 2/12, "feet"),
  48738. name: "Front",
  48739. image: {
  48740. source: "./media/characters/nox/front.svg",
  48741. extra: 1917/1830,
  48742. bottom: 74/1991
  48743. }
  48744. },
  48745. back: {
  48746. height: math.unit(6 + 2/12, "feet"),
  48747. name: "Back",
  48748. image: {
  48749. source: "./media/characters/nox/back.svg",
  48750. extra: 1896/1815,
  48751. bottom: 21/1917
  48752. }
  48753. },
  48754. head: {
  48755. height: math.unit(1.1, "feet"),
  48756. name: "Head",
  48757. image: {
  48758. source: "./media/characters/nox/head.svg",
  48759. extra: 874/704,
  48760. bottom: 0/874
  48761. }
  48762. },
  48763. tattoo: {
  48764. height: math.unit(0.729, "feet"),
  48765. name: "Tattoo",
  48766. image: {
  48767. source: "./media/characters/nox/tattoo.svg"
  48768. }
  48769. },
  48770. },
  48771. [
  48772. {
  48773. name: "Normal",
  48774. height: math.unit(6 + 2/12, "feet")
  48775. },
  48776. {
  48777. name: "Gigamacro",
  48778. height: math.unit(2, "earths"),
  48779. default: true
  48780. },
  48781. {
  48782. name: "Cosmic",
  48783. height: math.unit(867, "yottameters")
  48784. },
  48785. ]
  48786. ))
  48787. characterMakers.push(() => makeCharacter(
  48788. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48789. {
  48790. front: {
  48791. height: math.unit(6, "feet"),
  48792. weight: math.unit(150, "lb"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/caspian/front.svg",
  48796. extra: 1443/1359,
  48797. bottom: 0/1443
  48798. }
  48799. },
  48800. back: {
  48801. height: math.unit(6, "feet"),
  48802. weight: math.unit(150, "lb"),
  48803. name: "Back",
  48804. image: {
  48805. source: "./media/characters/caspian/back.svg",
  48806. extra: 1379/1309,
  48807. bottom: 0/1379
  48808. }
  48809. },
  48810. head: {
  48811. height: math.unit(0.9, "feet"),
  48812. name: "Head",
  48813. image: {
  48814. source: "./media/characters/caspian/head.svg",
  48815. extra: 692/492,
  48816. bottom: 0/692
  48817. }
  48818. },
  48819. headAlt: {
  48820. height: math.unit(0.95, "feet"),
  48821. name: "Head (Alt)",
  48822. image: {
  48823. source: "./media/characters/caspian/head-alt.svg",
  48824. extra: 668/508,
  48825. bottom: 0/668
  48826. }
  48827. },
  48828. hand: {
  48829. height: math.unit(0.8, "feet"),
  48830. name: "Hand",
  48831. image: {
  48832. source: "./media/characters/caspian/hand.svg"
  48833. }
  48834. },
  48835. paw: {
  48836. height: math.unit(0.95, "feet"),
  48837. name: "Paw",
  48838. image: {
  48839. source: "./media/characters/caspian/paw.svg"
  48840. }
  48841. },
  48842. },
  48843. [
  48844. {
  48845. name: "Normal",
  48846. height: math.unit(162, "feet"),
  48847. default: true
  48848. },
  48849. ]
  48850. ))
  48851. characterMakers.push(() => makeCharacter(
  48852. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  48853. {
  48854. front: {
  48855. height: math.unit(6, "feet"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/myra-aisling/front.svg",
  48859. extra: 1268/1166,
  48860. bottom: 73/1341
  48861. }
  48862. },
  48863. back: {
  48864. height: math.unit(6, "feet"),
  48865. name: "Back",
  48866. image: {
  48867. source: "./media/characters/myra-aisling/back.svg",
  48868. extra: 1249/1149,
  48869. bottom: 79/1328
  48870. }
  48871. },
  48872. dressed: {
  48873. height: math.unit(6, "feet"),
  48874. name: "Dressed",
  48875. image: {
  48876. source: "./media/characters/myra-aisling/dressed.svg",
  48877. extra: 1290/1189,
  48878. bottom: 47/1337
  48879. }
  48880. },
  48881. hand: {
  48882. height: math.unit(1.1, "feet"),
  48883. name: "Hand",
  48884. image: {
  48885. source: "./media/characters/myra-aisling/hand.svg"
  48886. }
  48887. },
  48888. paw: {
  48889. height: math.unit(1.23, "feet"),
  48890. name: "Paw",
  48891. image: {
  48892. source: "./media/characters/myra-aisling/paw.svg"
  48893. }
  48894. },
  48895. },
  48896. [
  48897. {
  48898. name: "Normal",
  48899. height: math.unit(160, "feet"),
  48900. default: true
  48901. },
  48902. ]
  48903. ))
  48904. characterMakers.push(() => makeCharacter(
  48905. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  48906. {
  48907. front: {
  48908. height: math.unit(6, "feet"),
  48909. name: "Front",
  48910. image: {
  48911. source: "./media/characters/tenley-sidero/front.svg",
  48912. extra: 1365/1276,
  48913. bottom: 47/1412
  48914. }
  48915. },
  48916. back: {
  48917. height: math.unit(6, "feet"),
  48918. name: "Back",
  48919. image: {
  48920. source: "./media/characters/tenley-sidero/back.svg",
  48921. extra: 1383/1283,
  48922. bottom: 35/1418
  48923. }
  48924. },
  48925. dressed: {
  48926. height: math.unit(6, "feet"),
  48927. name: "Dressed",
  48928. image: {
  48929. source: "./media/characters/tenley-sidero/dressed.svg",
  48930. extra: 1364/1275,
  48931. bottom: 42/1406
  48932. }
  48933. },
  48934. head: {
  48935. height: math.unit(1.47, "feet"),
  48936. name: "Head",
  48937. image: {
  48938. source: "./media/characters/tenley-sidero/head.svg",
  48939. extra: 610/490,
  48940. bottom: 0/610
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Normal",
  48947. height: math.unit(154, "feet"),
  48948. default: true
  48949. },
  48950. ]
  48951. ))
  48952. characterMakers.push(() => makeCharacter(
  48953. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  48954. {
  48955. front: {
  48956. height: math.unit(5, "inches"),
  48957. name: "Front",
  48958. image: {
  48959. source: "./media/characters/mallory/front.svg",
  48960. extra: 1919/1678,
  48961. bottom: 29/1948
  48962. }
  48963. },
  48964. hand: {
  48965. height: math.unit(0.73, "inches"),
  48966. name: "Hand",
  48967. image: {
  48968. source: "./media/characters/mallory/hand.svg"
  48969. }
  48970. },
  48971. paw: {
  48972. height: math.unit(0.68, "inches"),
  48973. name: "Paw",
  48974. image: {
  48975. source: "./media/characters/mallory/paw.svg"
  48976. }
  48977. },
  48978. },
  48979. [
  48980. {
  48981. name: "Small",
  48982. height: math.unit(5, "inches"),
  48983. default: true
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  48989. {
  48990. naked: {
  48991. height: math.unit(6, "feet"),
  48992. name: "Naked",
  48993. image: {
  48994. source: "./media/characters/mab/naked.svg",
  48995. extra: 1855/1757,
  48996. bottom: 208/2063
  48997. }
  48998. },
  48999. outside: {
  49000. height: math.unit(6, "feet"),
  49001. name: "Outside",
  49002. image: {
  49003. source: "./media/characters/mab/outside.svg",
  49004. extra: 1855/1757,
  49005. bottom: 208/2063
  49006. }
  49007. },
  49008. party: {
  49009. height: math.unit(6, "feet"),
  49010. name: "Party",
  49011. image: {
  49012. source: "./media/characters/mab/party.svg",
  49013. extra: 1855/1757,
  49014. bottom: 208/2063
  49015. }
  49016. },
  49017. },
  49018. [
  49019. {
  49020. name: "Normal",
  49021. height: math.unit(165, "feet"),
  49022. default: true
  49023. },
  49024. ]
  49025. ))
  49026. characterMakers.push(() => makeCharacter(
  49027. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49028. {
  49029. front: {
  49030. height: math.unit(12, "feet"),
  49031. weight: math.unit(4000, "lb"),
  49032. name: "Front",
  49033. image: {
  49034. source: "./media/characters/winter/front.svg",
  49035. extra: 1286/943,
  49036. bottom: 112/1398
  49037. }
  49038. },
  49039. frontNsfw: {
  49040. height: math.unit(12, "feet"),
  49041. weight: math.unit(4000, "lb"),
  49042. name: "Front (NSFW)",
  49043. image: {
  49044. source: "./media/characters/winter/front-nsfw.svg",
  49045. extra: 1286/943,
  49046. bottom: 112/1398
  49047. }
  49048. },
  49049. dick: {
  49050. height: math.unit(3.79, "feet"),
  49051. name: "Dick",
  49052. image: {
  49053. source: "./media/characters/winter/dick.svg"
  49054. }
  49055. },
  49056. },
  49057. [
  49058. {
  49059. name: "Big",
  49060. height: math.unit(12, "feet"),
  49061. default: true
  49062. },
  49063. ]
  49064. ))
  49065. characterMakers.push(() => makeCharacter(
  49066. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49067. {
  49068. front: {
  49069. height: math.unit(4.1, "inches"),
  49070. name: "Front",
  49071. image: {
  49072. source: "./media/characters/alto/front.svg",
  49073. extra: 736/627,
  49074. bottom: 90/826
  49075. }
  49076. },
  49077. },
  49078. [
  49079. {
  49080. name: "Normal",
  49081. height: math.unit(4.1, "inches"),
  49082. default: true
  49083. },
  49084. ]
  49085. ))
  49086. characterMakers.push(() => makeCharacter(
  49087. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49088. {
  49089. sitting: {
  49090. height: math.unit(3, "feet"),
  49091. name: "Sitting",
  49092. image: {
  49093. source: "./media/characters/ratstrid-v/sitting.svg",
  49094. extra: 355/310,
  49095. bottom: 136/491
  49096. }
  49097. },
  49098. },
  49099. [
  49100. {
  49101. name: "Normal",
  49102. height: math.unit(3, "feet"),
  49103. default: true
  49104. },
  49105. ]
  49106. ))
  49107. //characters
  49108. function makeCharacters() {
  49109. const results = [];
  49110. characterMakers.forEach(character => {
  49111. results.push(character());
  49112. });
  49113. return results;
  49114. }